   .iti--separate-dial-code .iti__selected-flag{
      background-color: #fff0 !important;
   }
  	body{
  		font-family: "Barlow", serif;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-image: radial-gradient(#ffffff40, #ffffff), url(main-bg.jpg);
        background-size: cover;
  	}
   input:focus {
    outline: none;
    border: none;
}
  	label{
  		font-weight: 400;
  	}
   .iti{
      width: 100%;
   }
   .mandatory-indication{
      color: #ce0000;
   }
  	.feedback-container{
        border-radius: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 30px;
        border: 1px solid #dedede;
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
        background: #ffffffb8;
        box-shadow: 0px 0px 10px #afafaf;
  	}
  	.feedback-header{
  		color: #fff;
  		width: 100%;
  		text-align: center;
  		padding: 40px;
		background: linear-gradient(90deg, rgb(92 60 56) 0%, rgb(105 68 68) 51%, rgb(92 60 58) 100%);
		border-radius: 10px;
		margin-bottom: 20px;
        box-shadow: 0px 0px 10px #61403fd4;
  	}
  	.feedback-header h2{
  		margin:0px;
      color: #e3e3e3;
  	}

.radio-btn {
	margin: 0px !important;
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 25px;
    height: 25px;
    margin-right: 15px !important;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.checkbox-btn{
   margin: 0px !important;
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 25px;
    height: 25px;
    margin-right: 15px !important;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 20%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.checkbox-btn:checked {
    box-shadow: 0px 0px 0px 4px #999191;
    background-color: #664343;
    content: "✔";
}

.radio-btn:checked {
    box-shadow: 0px 0px 0px 4px #999191;
    background-color: #664343;
}

.form-heading{
	margin-bottom: 20px;
}
.radio-btn:focus{
    outline: none !important;
 }


.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 150px;
  position: relative;
}

.rating-0 {
  filter: grayscale(100%);
}

.rating > input {
  display: none;
}

.rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("star-muted.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: .3s;
}

.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
  background-image: url("star-view.png");
}


.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url("star-view.png");
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after{
  content: "";
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .3s;
}

.emoji > svg {
  margin: 15px 0; 
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

#rating-1:checked ~ .emoji-wrapper > .emoji { transform: translateY(-100px); }
#rating-2:checked ~ .emoji-wrapper > .emoji { transform: translateY(-200px); }
#rating-3:checked ~ .emoji-wrapper > .emoji { transform: translateY(-300px); }
#rating-4:checked ~ .emoji-wrapper > .emoji { transform: translateY(-400px); }
#rating-5:checked ~ .emoji-wrapper > .emoji { transform: translateY(-500px); }

.feedback {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

.form-control-custom{
	height: 50px;
    width: 100%;
    border-bottom: 1px solid #dedede !important;
    border: transparent;
   background: #fff0;
}

.radio-btn-container{
   display: flex;
   align-items: center;
   margin-bottom: 10px;
}


.Submit-btn{
    background: linear-gradient(90deg, rgb(92 60 56) 0%, rgb(105 68 68) 51%, rgb(92 60 58) 100%);
    border: navajowhite;
    width: 100%;
    padding: 10px;
    border: 2px solid #dedede;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #61403fd4;
    color: #fff;
}
.btn-error{
   background: linear-gradient(163deg, rgb(89 89 89) 0%, rgb(255 255 255) 51%, rgb(89 89 89) 100%);
}
.field-error{
   border-bottom: 1px solid #ff7979 !important;
   color: #ff7979;
}
.field-success{
   border-bottom: 1px solid #36d184 !important;
   color: #36d184;
}
/*RESPONSIVE*/
@media screen and (max-width: 480px) {
    .form-control-custom{
    	height: 45px;
    }
    .feedback-header{
         padding: 25px;
    }
    .feedback-container{
      padding: 15px;
    }
    .radio-btn{
      width: 20px;
      height: 20px;
    }
}