/* range - progress width and height  */
.range-answer input[type="range"] {
    min-width: 18vw;
    width: 100%;
    height: 1em;
    border-radius: 3em;
    margin-bottom: 2em;
    background-color: #bfbebe1a;
    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}

/* range circle thumb */
.range-answer input[type="range"]::-webkit-slider-thumb
  {
    -webkit-appearance: none;
    appearance: none;
    width: 23px;
    height: 23px;
    background: #457afe;
    border-radius: 22em;
    cursor: pointer;
    outline: none;
}


.range-answer input[type="range"]::-moz-range-thumb  {
    -webkit-appearance: none;
    appearance: none;
    width: 23px;
    height: 23px;
    background: #457afe;
    border-radius: 22em;
    cursor: pointer;
    outline: none;
}


/* Grid View */
.mr-answer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
}

.mr-answer-grid > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-ans-btn {   
    max-width: 160px;
    height: fit-content;
    text-align: center;
}

.top-ans-btn {
    max-width: 250px;
    height: fit-content;
    text-align: center;
    background-color: #bfbebe1a;
    border-radius: 9px;
    margin-bottom: 30px;
}

.mr-ans-btn,
.mr-btn-top {
    display: flex;
    margin-left: 0.8em;
    margin-right: 0.8em;
    margin-bottom: 1em;
    margin-top: 0.5em;
}


.mr-btn {
    display: none;
    text-align: center;
    padding: 15px;
    background-color: #bfbebe1a;
    border-radius: 9px;
    justify-content: center;
    line-height: 1.3;
}

.mr-btn-top {
    display: none;
}
.mr-slide-1 {
    grid-area: 1 / 1 / 2 / 2;
}
.mr-slide-2 {   
    width: 150px;
    grid-area: 1 / 2 / 2 / 3;
}

/*  */
@media only screen and (max-width: 576px){

    .mr-answer-grid {
        grid-column-gap: 0px;
        padding-left: 30px;
        padding-right: 30px;
        max-width: 390px;
    }
    
    .range-sm {
        padding: 0px!important;
        padding-top: 15px;
        max-height: 70vh;
    }

    input[type="range"] {
        width: 90%;
        min-width: 18vw;
        outline: none;
    }

    .range-answer input[type="range"] {
        margin-bottom: 1.8em;
    }
    .mr-slide-1 {
        width: auto;
        
    }
    .mr-slide-2 {   
        width: auto;
       
    }
    
    .ls {
        flex: 1;
        overflow: auto;
    }

    .vac-txt {
        max-width: 100%;
    }

    .side-ans-btn {
        display: none !important;
    }

    .mr-btn-top {
        width: 250px;
        display: block;
        text-align: center;
        margin-bottom: 0.8em;
        margin-top: 0.8em;
        margin-right: 0.5em;
        margin-left: 0.5em;
        justify-content: center;
    }

    .range-answer input[type="range"]::-webkit-slider-thumb
    {
        width: 28px;
        height: 28px;
    }

    .range-answer input[type="range"]::-moz-range-thumb  {
        width: 28px;
        height: 28px;

    }
}
