/* Ammina CSS ouline file */
/*reviews */
  .kp-reviews-item {
    border-top: 1px solid #e5e5e5;
  }
  .kp-reviews-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 0;
  }
  .kp-reviews-item-body {
    padding: 15px 127px 29px 22px;
    color: #666;
  }

  /*end reviews */
  /*form*/
  .kp-reviews-form .column-50.pl-30{
    padding-left: 30px;
  }
  .kp-reviews-form label {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    font-family: 'Open Sans';
  }
  .kp-reviews-form .form-group label:not(.rating label) {
    margin-bottom: 2px;
    display: block;
  }
  .kp-reviews-form textarea,
  .kp-reviews-form input[type="email"],
  .kp-reviews-form input[type="text"] {
    width: 100%;
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    outline: none;
    padding: 10px;
  }
  .kp-reviews-form input[type="email"],
  .kp-reviews-form input[type="text"] {
    height: 38px;
    margin-bottom: 12px;
  }
  .kp-textarea-wrap{
    margin-left: 30px;
  }
  .kp-reviews-form textarea{
    height: 195px;
    resize:none;
  }
  /*end form*/

  /**/
  .rating {
    float:left;
    border: none;
    height: 45px;
  }

  /* :not(:checked) is a filter, so that browsers that don’t support :checked don’t
     follow these rules. Every browser that supports :checked also supports :not(), so
     it doesn’t make the test unnecessarily selective */
  .rating:not(:checked) > input {
    position:absolute;
    /*top:-9999px;*/
    opacity: 0;
    /*     clip:rect(0,0,0,0); */
  }

  .rating:not(:checked) > label {
    float:right;
    /*width:1em;*/
    /*padding:0 .1em;*/
    /*overflow:hidden;*/
    /*white-space:nowrap;*/
    /*cursor:pointer;*/
    /*font-size:200%;*/
    /*line-height:1.2;*/
    /*color: gainsboro;*/
  }

  .rating:not(:checked) > label:before {
    /*     content: '★ '; */
    content: ' ';
    width: 43px;
    height: 45px;
    display: inline-block;
    margin-right: 7px;
    cursor: pointer;
    background: url('/local/templates/cosmetics2015/images/card/star-gray.svg') no-repeat 50% 0 / contain;
  }

  .rating > input:checked ~ label:before {
    background: url('/local/templates/cosmetics2015/images/card/star.svg') no-repeat 50% 0 / contain;
  }

  .rating:not(:checked) > label:hover:before,
  .rating:not(:checked) > label:hover ~ label:before {
    background: url('/local/templates/cosmetics2015/images/card/star.svg') no-repeat 50% 0 / contain;
  }

  /*.rating > input:checked + label:hover,*/
  /*.rating > input:checked + label:hover ~ label,*/
  /*.rating > input:checked ~ label:hover,*/
  /*.rating > input:checked ~ label:hover ~ label,*/
  /*.rating > label:hover ~ input:checked ~ label {*/
  /*  color: #ea0;*/
  /*}*/

  /*.rating > label:active {*/
  /*  position:relative;*/
  /*  top:2px;*/
  /*  left:2px;*/
  /*}*/

  .kp-reviews-footer{
    display: flex;
    margin: 30px 0 21px;
  }
  .kp-reviews-reset,
  .kp-reviews-submit {
    height: 50px;
    line-height: 50px;
    width: 276px;
    max-width: 100%;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-family: "Open Sans",sans-serif;
    font-weight: bold;
    transition: all .35s ease;
    cursor: pointer;
  }
  .kp-reviews-submit{
    background: #8fba00;
    color: #fff;
    margin-right: 20px;
  }
  .kp-reviews-reset{
    color: #666;
    border: 2px solid #e5e5e5;
  }
  .kp-agreement{
    display: block;
  }
  .kp-agreement span{
    /*color: #666;*/
    /*margin-left: 11px;*/
  }

  /*checkbox*/
  .kp-checkbox {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .kp-checkbox input {
    position: absolute;
    left: 0;
    top: 4px;
    opacity: 0;
    cursor: pointer;
    height: 17px;
    width: 17px;
  }
  .kp-checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border: 2px solid #8FBA00;
    border-radius: 3px;
    pointer-events: none;
  }
  .kp-checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .kp-checkbox input:checked ~ .kp-checkmark:after {
    display: block;
  }
  .kp-checkbox .kp-checkmark:after {
    left: 4px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid #8FBA00;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /*end checkbox*/

  /**/