.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 30px;
    overflow: visible;
}

.slider:focus {
    outline: none;
}

.feedback-slider-div input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
    /* background: -webkit-linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%); */
    border: 2px solid #E0DFE0;
    border-radius: 10px;
}

_::-webkit-full-page-media,
_:future,
 :root {
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
}

.feedback-slider-div input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 2px solid #E0DFE0;
    height: 20px;
    width: 20px;
    border-radius: 7px;
    background: #0085FF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5.6px;
    border-radius: 50%;
}

.feedback-slider-div input[type=range]:focus::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
}

.feedback-slider-div input[type=range]::-moz-range-track {
    width: 100%;
    height: 10.8px;
    cursor: pointer;
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
    border: 2px solid #E0DFE0;
    border-radius: 10px;
}

.feedback-slider-div input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 2px solid #E0DFE0;
    height: 16px;
    width: 16px;
    border-radius: 7px;
    background: #0085FF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6px;
    border-radius: 50%;
}

.feedback-slider-div input[type=range]::-ms-track {
    width: 100%;
    height: 10.8px;
    cursor: pointer;
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
    border: 2px solid #E0DFE0;
    border-radius: 10px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.feedback-slider-div input[type=range]::-ms-fill-lower {
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
    border: 2px solid #E0DFE0;
    border-radius: 10px;
}

.feedback-slider-div input[type=range]::-ms-fill-upper {
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
    border: 2px solid #E0DFE0;
    border-radius: 10px;
}

.feedback-slider-div input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 2px solid #E0DFE0;
    height: 16px;
    width: 16px;
    border-radius: 7px;
    background: #0085FF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: 0px;
    border-radius: 50%;
}

.feedback-slider-div input[type=range]:focus::-ms-fill-lower {
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
}

.feedback-slider-div input[type=range]:focus::-ms-fill-upper {
    background: linear-gradient(90deg, #DFF0FF 0%, #168FFF 98.29%);
}

.feedback-slider-div input[type=range]:focus::-ms-tooltip {
    visibility: hidden;
}
        @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');


.chatbot-feedback-div {
    width: 90%;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    box-sizing: border-box;
    border-radius: 4px;
    margin: 40px auto;
    position: relative !important;
    margin-top: 50%;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 25%) !important;
    height: 13em;
    overflow: hidden;
}

.chatbot-feedback-div .feedback-heading-div {
    font-weight: bold;
    font-size: 15px;
    color: #2D2D2D;
    padding: 6px 0px 8px 8px;
}

.chatbot-feedback-div .feedback-emoji-div {
    width: 100%;
    clear: both;
    display: flex;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* justify-content: -moz-space-around;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-justify-content: space-around; */
    margin-top: 5px;
    margin-bottom: 5px;
    height: max-content;
}

.chatbot-feedback-div .feedback-emoji-div div {
    -webkit-box-flex: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;
    /* OLD - Firefox 19- */
    width: 25%;
    /* For old syntax, otherwise collapses. */
    -webkit-flex: 1;
    /* Chrome */
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
    text-align: center;
}

.chatbot-feedback-div .feedback-emoji-div img {
    width: 52px;
    height: 52px;
    transition: width .6s, height .6s;
    cursor: pointer;
}

.feedback-slider-div {
    margin: 0px 10px;
    /* text-align: center; */
    position: relative;
}

.feedback-textarea {
    margin: 26px 10px 10px 10px;
}

.feedback-textarea textarea {
    width: 100%;
    height: 95px;
    background: #FDFDFD;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 5px;
    resize: none;
    outline: none;
    padding: 8px;
    color: #000;
    font-weight: normal;
    font-size: 13px;
    letter-spacing: -0.02em;
    overflow: hidden;
    font-family: Silka !important;
}

.feedback-textarea textarea::placeholder {
    color: #D9D9D9;
}

.feedback-textarea textarea:-ms-input-placeholder {
    color: #D9D9D9 !important;
}

.feedback-button-div {
    text-align: right;
    margin-right: 10px;
    /* margin-top: 10px; */
}

.feedback-button-div #no-thanks-btn {
    width: 95px;
    height: 34px;
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: normal;
    font-size: 13px;
    text-align: center;
    color: #0085FF;
    background: transparent;
    font-family: 'Silka' !important;
    margin-bottom: 8px;
}

.feedback-button-div #submit-btn {
    width: 95px;
    height: 34px;
    font-weight: normal;
    font-size: 13px;
    text-align: center;
    color: #FFFFFF;
    background: #0085FF;
    border-radius: 90px;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Silka' !important;
}

#append-feedback-value {
    font-weight: bold;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: #0085FF;
}
#feedback-value{
    padding: unset !important;
}
.range-value {
    position: absolute;
    top: 90%;
}

.range-value span {
    width: 120px;
    text-align: center;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    font-weight: normal;
    font-size: 13px;
    color: #0085FF;
}

.feedback-form-container {
  max-width: 376px;
  background: #fff;
  border: 3px solid #E6E6E6;
  box-sizing: border-box;
  border-radius: 6px;
  margin: auto;
  padding: 0px 12px 0px 12px;
  box-shadow: 0px 0px 25px rgb(0 0 0 / 25%);
  margin-top: 70px;
  margin-left: 20px;
  height: unset !important;
}

.smile-container {
   text-align: center;
   margin-top: 20px;
}

.value-feedback-text {
   font-weight: 500;
   font-size: 17px;
   color: black;
   margin: 20px 0px 8px 0px;
   margin-top: 25px;
}

.complete-form-text {
   font-weight: 500;
   font-size: 12px;
   line-height: 14px;
   color: black;
}

.feedback-checkbox-container {
   display: flex;
   flex-direction: column;
}

.feedback-checkbox-container label span {
   margin-top: 12px;
}

.feedback-checkbox-container [type="checkbox"].filled-in:not(:checked)+span:not(.lever):after {
   height: 18px;
   width: 18px;
   border: 3px solid #0085FF;
   border-radius: 3px;
}

/*.feedback-checkbox-container [type="checkbox"]+span:not(.lever) {
   position: relative;
   padding-left: 28px;
   cursor: pointer;
   display: inline-block;
   height: 25px;
   line-height: 1.5;
   font-weight: normal;
   font-size: 12px;
   color: #2D2D2D;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}*/

/* .feedback-checkbox-container [type="checkbox"].filled-in:checked+span:not(.lever):after {
   width: 18px;
   height: 18px;
   border: 2px solid #0085FF;
   background-color: #0085FF;
}
*/
.feedback-checkbox-container [type="checkbox"]+span:not(.lever):before {
        border: 1.5px solid #0085FF;
        border-radius: 3px !important;
        height: 18px !important;
        width: 18px !important;
}

.feedback-checkbox-container [type="checkbox"].filled-in:checked+span:not(.lever):before {
   width: 18px;
   height: 18px;
   border: 2px solid #0085FF;
   background-color: #0085FF;
}


.text-area-feedback textarea {
   width: 100%;
   height: 89px;
   border: 1.5px solid #D9D9D9;
   box-sizing: border-box;
   border-radius: 5px;
   margin: 20px 0px 15px 0px;
   padding: 8px;
   outline: none;
   background: #FDFDFD;
   color: #000;
   font-size: 13px;
   font-family: 'Silka' !important;
}

.text-area-feedback textarea::placeholder {
   font-weight: normal;
   font-size: 13px;
   color: #2D2D2D;
}

.text-area-feedback textarea:-ms-input-placeholder {
   color: #2D2D2D !important;
   font-weight: normal;
   font-size: 13px;
}

.contact-details-text {
   font-weight: 500;
   font-size: 13px;
   color: black;
}

.enter-detail-div {
   width: 100%;
   height: 35px;
   border: 1.5px solid #D9D9D9;
   box-sizing: border-box;
   border-radius: 90px;
   display: flex;
   align-items: center;
   overflow: hidden;
   margin-top: 15px;
}

.enter-detail-div svg {
   margin: 0px 12px;
}

.enter-detail-div input {
   border: none !important;
   padding: 0px 16px 0px 2px !important;
   -moz-appearance: textfield;
   appearance: textfield !important;
   font-size: 13px;
}

.feedback-submit-btn {
   display: flex;
   flex-direction: row;
   justify-content: flex-end;
   margin-top: 28px;
   padding-bottom: 10px !important;
}

.feedback-submit-btn .submit-btn {
   width: 90px;
   height: 34px;
   font-style: normal;
   font-weight: 500;
   font-size: 13px;
   text-align: center;
   color: #FFFFFF;
   background: #0085FF;
   border-radius: 90px;
   border: none;
   outline: none;
   margin-left: 20px;
}

.feedback-submit-btn .cancel-btn {
   font-weight: 500;
   font-size: 13px;
   text-align: center;
   color: #0085FF;
   border: none;
   outline: none;
   background: transparent;
}

.feedback-heading-div{
  border-bottom: 1px solid lightgrey !important;
  margin: 10px;
  margin-bottom: 15px;
}

.feedback-heading-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.feedback-heading-1 {
    color: #0254d7;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    margin-top: 0px;
}

.feedback-heading-2 {
    font-size: 18px;
    color: #4d4d4d;
    letter-spacing: 1px;
    margin-top: 0px;
}

.feedback-close {
    position: absolute;
    float: right;
    right: 15px;
    top: 18px;
    cursor: pointer;
}

#feedback_phone_number::placeholder{
        color: lightgrey !important;
    }
#feedback_email_id::placeholder{
    color: lightgrey !important;
}
#demoter_feedback_text_area::placeholder{
    color: lightgrey !important;
}
#chatbot_feedback_comment_box::placeholder{
    color: lightgrey !important;
}

@media screen and (max-width: 415px) {
    .feedback-form-container {
        max-width: 97%;
        margin-left: 5px !important;
    }
}

.feedback-checkbox-container label {
    width: fit-content;
    width: -moz-fit-content;
}