﻿/* STAR RATING */

@font-face {
    font-family: Barlow-BoldItalic;
    src: url('../Fonts/Barlow-BoldItalic.ttf');
}

@font-face {
    font-family:Barlow-Medium;
    src: url('../Fonts/Barlow-Medium.ttf');
}

@font-face {
    font-family: Barlow-Regular;
    src: url('../Fonts/Barlow-Regular.ttf');
}

@font-face {
    font-family: Barlow-SemiBold;
    src: url('../Fonts/Barlow-SemiBold.ttf');
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .clearfix {
    clear: both;
  }
  main{
      background-color: #fff;
      font-family: 'Barlow', sans-serif;
      max-width: 750px;
      width: 99%;
      padding: 15px;
      margin: 0 auto;
  }
  .text-center {
    text-align: center;
  }
  
  a {
    /*color: tomato;*/
    text-decoration: none;
  }
  
  a:hover {
    color: #2196f3;
  }
  
  pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .line {
    background: #908c8c;
    height: 3px;
    width: 48%;
    margin: 8px auto;
    display: flex;
    margin-bottom: 15px;
}
  /* LOGO */
  .logo{
      margin: 0 auto;
      text-align: center;
  }
  .logo-img{
    width: 300px;
    text-align: center;
    margin: 20px auto 25px auto;
  }
  .header {
    padding: 20px 0;
    position: relative;
    margin-bottom: 10px;
  }
  
  .header:after {
    content: "";
    display: block;
    height: 1px;
    background: #eee;
    position: absolute;
    left: 30%;
    right: 30%;
  }
  
  .header h2 {
    font-size: 3em;
    font-weight: 300;
    margin-bottom: 0.2em;
  }
  
  .header p {
    font-size: 14px;
  }
  
  /* MAIN SECTION */
  .hero-main-img{
      width: 100%;
  }
  .hero-img{
      width: 620px;     /*changes by Vikas on 16-Feb-2022 for CR : CUSTSERV/2021/2374*/
  }

  /* MAIN SECTION TEXT */
  .hero-main-text{
    width: 80%;
    margin: auto;
    transform: translateY(-40px);       /*changes by Vikas on 16-Feb-2022 for CR : CUSTSERV/2021/2374*/
    background: #fff;
    padding: 15px 40px 0 40px;
  }
  .hero-text{
      margin-bottom: 0;
  }
  p.hero-text{
      font-family: 'Barlow-Medium';
      font-weight: 400;
      line-height: 34px;
      font-size: 24px;
      color: #3b3b3b;
      text-align: center;
      margin: auto 0;
  }
  /* Rating Star */
  .rating-stars.text-center h3{
    font-family: Barlow-SemiBold;
    font-size: 28px;
    /*font-weight: 700;*/               /*changes by Vikas on 16-Feb-2022 for CR : CUSTSERV/2021/2374*/  
    width: 70%;
    line-height: 32px;
    color: #3b3b3b;
    margin: 0 auto;
  }
  #a-footer {
    margin: 20px 0;
  }
  
  .new-react-version {
    padding: 20px 20px;
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
  }
  
  .new-react-version .react-svg-logo {
    text-align: center;
    max-width: 60px;
    margin: 20px auto;
    margin-top: 0;
  }
  
  .success-box {
    margin: 50px 0;
    padding: 10px 10px;
    border: 1px solid #eee;
    background: #f9f9f9;
  }
  
  .success-box img {
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
  }
  
  .success-box > div {
    vertical-align: top;
    display: inline-block;
    color: #888;
  }
  
  /* Rating Star Widgets Style */
  .rating-stars ul {
    list-style-type: none;
    padding: 0;
  
    -moz-user-select: none;
    -webkit-user-select: none;
  }
  .rating-stars ul > li.star {
    display: inline-block;
  }
  
  /* Idle State of the stars */
  .rating-stars ul > li.star > i.fa {
    font-size: 4.5em; /* Change the size of the stars */
    color: #ccc; /* Color on idle state */
  }
  .rating-stars ul > li.star > img{
    width: 5rem;
    filter: grayscale(100%);
    cursor: pointer;
    transition: all 0.65s;

    filter: grayscale(100%) contrast(120%);
  /* box-shadow: 5x 5px 25px 0 rgba(0,0,0,.2); */
  display: block;
  transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin-top: -10px;
  }

  .rating.rating-5 i{
    cursor: pointer;
  }
  .excellent.rating-stars ul > li.star > i.fa {
    font-size: 3em;
  }
  /* Hover state of the stars */
  .rating-stars ul > li.star.hover > i.fa {
    color: #ffcc36;
  }
  .rating-stars ul > li.star:hover > img{
    transition: all 0.65s;
	transform: scale(.7) rotateY(360deg);
  filter: grayscale(50%);
  /* box-shadow: 1px 1px 10px 0 rgba(0,0,0,.1); */
  
  
  }
  .rating-stars ul > li.star.hover > img {
    filter: grayscale(50%);
  }
  .rating-stars.excellent ul > li.star.hover > i.fa {
    color: #ffcc36;
  }
  
  /* Selected state of the stars */
  .rating-stars ul > li.star.selected > i.fa {
    color: #ff912c;
    box-shadow: 0 0 15px #0b50a1;
  }
  .rating-stars ul > li.star.selected > img {
    filter: grayscale(0%);
    transform: scale(1);

   
  }
  .rating-stars ul > li.star.selected:hover > img {
    
    transform: scale(.7);

   
  }
  .rating-stars.excellent ul > li.star.selected > i.fa{
    color: #ff912c;
  }
  .rating-stars.excellent h2{
      font-family: Barlow-BoldItalic;
      color: #0d49a1;
      /*font-weight: 700;*/         /*changes by Vikas on 16-Feb-2022 for CR : CUSTSERV/2021/2374*/
      font-size: 40px;
      list-style: 1.2;
      text-transform: uppercase;
      margin: .4rem auto .8rem auto;
  }
  .rating-stars.excellent h3{
    font-family: Barlow-SemiBold;
    font-size: 28px;
    line-height: 32px;
    color: #3b3b3b;
    width: 90%;
    text-align: center;
    text-transform: none;
  }
  .rating-stars.excellent .line{
      width:28%;
  }
  /* SMILE */
  .smile.stars{
      margin: 1.8rem 0;
  }

  .rating-wrapper {
    max-width: 100%;
    margin: 5px auto;
    background: #fff;
    /* padding: 1em; */
    border-radius: 3px;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
  }
  /* .rating-wrapper .rating-label {
    text-align: center;
    font-weight: 700;
    display: block;
  } */
  .rating-wrapper .ratingItemList {
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 1em 0;
  }
  .rating-wrapper input.rating {
    display: none;
  }
  .rating-wrapper label.rating {
    padding: 5px 3px;
    font-size: 32px;
    opacity: 0.7;
    filter: grayscale(1);
    cursor: pointer;
    
  }
  .rating-wrapper label.rating:hover {
    filter: grayscale(0.84);
    transform: scale(1.1);
    transition: 100ms ease;
  }
  .rating-wrapper input.rating:checked + label.rating {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
  }
  
  
  .disputelab_logo {
    width: 140px;
    position: absolute;
    top: 1em;
    left: 50%;
    margin-left: -70px;
  }
  /* ASSIST */
 
  .ratingItemList .rating:hover{
    animation: up-and-down 2s ease-in-out infinite alternate;
  }
  @keyframes up-and-down {
    0% {
      transform: translate(0%, -5%);
    }
    100% {
      transform: translate(0%, -10%);
    }
  }
  
  .r1{
    background-image: url('../img/1.png');
  }
  .r2{
    background-image: url('../img/2.png');
  }
  .r3{
    background-image: url('../img/3.png');
  }
  .r4{
    background-image: url('../img/4.png');
  }
  .r5{
    background-image: url('../img/5.png');
  }
  .r6{
    background-image: url('../img/6.png');
  }
  .r7{
    background-image: url('../img/7.png');
  }
  .r8{
    background-image: url('../img/8.png');
  }
  .r9{
    background-image: url('../img/9.png');
  }
  .r10{
    background-image: url('../img/10.png');
  }
  
  

  /* BUTTON */

  
  .submit{
    background: #0badda;
    padding: 8px 62px;
    font-size: 22px;
    /* margin-top: 20px; */
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 12px;
    border: 2px solid #0badda;
    font-family: Barlow-SemiBold;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .submit:hover{
    /* transform: translateY(-8px); */
    background-color: #fff;
    /* letter-spacing: 1px; */
    color: #0badda;
    border: 2px solid #0badda;
  }
 .foot_sec p{
    font-family:Barlow-Medium;
    font-size: 12px;
    line-height: 20px;
    color: #3b3b3b;
    text-align: center;
    margin: 0 auto;
 }
 .foot_sec p span{
     color: #0d49a1;;
 }
 .foot_icon{
     margin: .7rem 0;
     display: flex;
     justify-content: center;
 }
 .foot_icon img{
    background-color: #8e908f;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    margin: 0 0.4rem;
    text-align: center;
 }
 /* .foot_icon i:before, .foot_icon i:before{
     font-size: 18px;
    line-height: 1.4;
     color: #fff;
    
     
 } */
 .fa-star{
   /* content: ''; */
   height: 35px;
   width: 25px;
   background-image: url('../img/star.png') ;
   background-repeat: no-repeat;
   background-size: cover;
   /* background-color: #fff200; */
   z-index: 1;

 }
 .rating-no{
  display: block;
  width: 2rem;
  margin: 0.4rem auto;
  font-size: 1.2rem;
 }

 .em, .em-svg {
height: 1.5em;
width: 1.5em;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
display: inline-block;
vertical-align: middle;
}
 
 /* responsive */
 @media screen and (max-width: 575px) {
   main{
     padding: 0 5px;
   }
  .hero-img {
    width: 99%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-main-text {
    width: 90%;
  }
  p.hero-text{
    line-height: 1.4;
    font-size: 20px;
  }
  .rating-stars.text-center h3 {
    font-size: 24px;
    width: 75%;
  }
  .rating-wrapper .ratingItemList {
    width: 75%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0 2rem;
}
.smile .rating-wrapper .rating-label .ratingItemList label{
  width: 13%;
}
}

@media screen and (max-width: 530px) {
  .hero-img {
    width: 100%;
  }
  .rating-stars.text-center h3 {
    width: 95%;
  }
  .rating-wrapper .ratingItemList {
    width: 80%;
  }
  .rating-no{
    width: auto;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 490px) {
.smile .rating-wrapper .rating-label .ratingItemList label{
  display: flex;
    flex-direction: column;
    justify-content: center;
}
.rating-no{
  width: 85%;
  margin-right: 0;
}
}
@media screen and (max-width: 487px) {
  .smile .rating-wrapper .rating-label .ratingItemList label{
    width: 10%;
  }
  .rating-no{
    width: 100%;
    margin-right: 0.4rem;
    margin-left:  0.4rem;
  }
 
}
@media screen and (max-width: 480px) {
  .hero-main-text{
    padding: 15px 20px 0 20px;
  }
  .rating-stars ul > li.star > i.fa {
    font-size: 4em;
  }
  .rating-stars ul > li.star > img{
    width: 4em;
  }
  .rating-wrapper .ratingItemList {
    width: 80%;
    gap: 0 1rem;
}

.smile .rating-wrapper .rating-label .ratingItemList label{
  width: 15%;
}
.rating-no {
  width: auto;
}
}
@media screen and (max-width: 440px) {
  .rating-stars ul > li.star > img{
    width: 3.5em;
  }
}
@media screen and (max-width: 425px) {
  .hero-main-text{
    transform: translateY(-30px);
  }
  p.hero-text {
    line-height: 1.3;
    font-size: 18px;
}
.rating-stars.text-center h3{
  width: 100%;
  font-size: 22px;
}

.rating-stars ul > li.star > i.fa {
  font-size: 3em;
}
.rating-wrapper .ratingItemList {
  width: 90%;
}
}

@media screen and (max-width: 375px) {
  p.hero-text {
    line-height: 1.4;
    font-size: 16px;
}
.rating-stars.text-center h3{
  font-size: 20px;
}
.rating-wrapper .ratingItemList {
  width: 100%;
  gap: 0;
}

.smile .rating-wrapper .rating-label .ratingItemList label{
  width: 20%;
  justify-content: center;
  align-items: center;
}
.smile .rating-wrapper .rating-label .ratingItemList label i{
  width: 1em;
  height: 1em;
}
.rating-no {
  width: 35%;
}
}

@media screen and (max-width: 320px) {
  .hero-main-text {
    padding: 10px 7px;
}
.rating-stars.text-center h3 {
  font-size: 17px;
  line-height: 1.4;
}
.rating-stars ul > li.star > img{
  width: 2.5em;
}
.rating-wrapper label.rating{
  font-size: 28px;
}
}