.feedback-btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 30px;
    gap: 10px;

    width: auto;
    height: auto;

    border-radius: 15px;
    border: 0;
}

.feedback-modal-dialog{
    display: flex;
    
}

.feedback-modal-content{
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 50px;
    border: 0px;
    border-radius: 38px;
}
.feedback-form{
    display: flex;
}
.feedback-modal-whole{
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.feedback-close{
    position: absolute;
    right: 40px;
    text-decoration: none;
    font-size: 35px;
}

.feedback-modal-header {
    position: static;
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    order: 0;
    flex-grow: 0;
    align-self: stretch;
    text-align: center;
}

.feedback-modal-title{
    position: static;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    color: #499ce4;
    align-self: stretch;

}

.feedback-modal-body{
    position: static;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    margin: 0;
}

.feedback-modal-body p{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    /* color: #4B4B4B; */
    margin-bottom: 10px;
    /* display: flex; */
    align-self: stretch;
}

.feedback-a{
    font-weight: 400;
    margin: 0;
    padding-top: 10px;
}

.feedback-a:hover{
    color: #007bff;
    cursor: pointer;
    
}

.feedback-questions{
    display: flex;
    flex-direction: column;
}

.feedback-h3{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
}

.feedback-questions ul{
    text-decoration: none;
    list-style: none;
    padding: 10px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.feedback-questions ul li, .feedback-questions .insideother{
    font-weight: 400;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    padding: 0px;
    gap: 10px;
}

.feedback-questions .others{
    display: flex;
    align-self: stretch;
    justify-content: space-between;
    flex-direction: column;
}

.feedback-textarea {
    display: flex;
    flex-wrap: wrap;
    width: 320px;
    height: 85px;
    background: #eaeaea;
    border-radius: 16px;
    resize: none;
    align-self: stretch;
    border: 0px;
    padding: 10px;
    margin-left: 20px;
    outline: 0;
  }

  @media (max-width: 500px){
.feedback-textarea {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
}

.feedback-textarea:hover{
    cursor: pointer;

}

.feedback-textarea:focus{
    background: #D9D9D9;

}

.feedback-questions .feedback-rating{
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 0px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.feedback-questions .feedback-rate{
    display: flex;
    flex-direction: row;
    align-self: stretch;
    justify-content: space-between;
}

.feedback-questions .feedback-rate p{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}



.feedback-modal-footer .btn {

    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-decoration:none;
}

.feedback-modal-footer{
    display: flex;
    align-self: stretch;
    justify-content: space-between;
    border: 0;
}

.feedback-modal-footer.step-1{
    flex-direction: column;
}


.feedback-questions label{
    display: flex;
    align-self: stretch;
    margin: 0px;
    justify-content: center;
    align-items: center;
}

.feedback-questions label:hover{
 cursor: pointer;
}

.feedback-questions input[type=radio],.feedback-questions input[type=checkbox]{
    border-radius: 50%;
    width: 15px;
    height: 15px;
    outline: 2px solid #737373;
    background-color: #ffffff;
    -webkit-appearance: none; /*to disable the default appearance of radio button*/
    -moz-appearance: none;
}

.feedback-questions input[type=checkbox]{
    border-radius: 3px;

}

.feedback-questions input[type=radio]:hover, .feedback-questions input[type=checkbox]:hover{
    outline: 2px solid rgba(90, 169, 255, 0.5);
    box-shadow: inset 0 0 0 6px rgba(90, 169, 255, 0.5);
    background-color: #ffffff;
    border: 2px solid #ffffff;
    cursor: pointer;
    /* transition-delay: 1s ease; */
}

.feedback-questions input[type="radio"]:checked,.feedback-questions input[type=checkbox]:checked {
    outline: 2px solid #007bff;
    box-shadow: inset 0 0 0 6px #007bff;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    /* transition-delay: 1s ease; */
  }
 
  .feedback-questions input[type="radio"]:hover ~ span:first-of-type ,
  .feedback-questions input[type=checkbox]:hover ~ span:first-of-type{
    color: white;
  } 


  .feedback-questions input[type="radio"]:checked ~ span:first-of-type ,
  .feedback-questions input[type=checkbox]:checked ~ span:first-of-type{
    color: white;
  }

  
  .feedback-questions label span:first-of-type {
    position: absolute;
    display: flex;
    font-size: 10px;
    color: #007bff;
    justify-content: center;
    align-items: center;
  }

  .required{
    color: hsl(11, 100%, 66%);
    font-weight: 300;
    display: none;
}

.feedback-step {
    display: none;
  }
  
.feedback-step.active {
    display: block;
  }


.modal-backdrop{
    background-color: rgb(0 0 0 / 50%);
}