.survey-card {
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 0px 8px rgba(0,0,0,0.07);
}

.survey-card-header {
    width: 100%;
    height: 68px;
    z-index: 6;
    box-sizing: border-box;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    padding: 4% 2%;
    overflow: hidden;
}

.survey-card-header-title {
    font-size: 1rem;
    color: #ffffff;
    padding: 0;
    margin: 0;
}

.survey-card-body {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 5;
    /* border: 1px solid #e2e2e1; */
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 20px 0%;
}

.survey-card-question-container {
    margin-bottom: 30px;
    text-align: center;
    text-justify: inter-word;
}

.survey-card-question {
    padding: 0 5%;
}

.radios-list-item{
    list-style-type: none;
    border-bottom: 1px solid #d1d1d1;
}

.radios-list-item:checked{
    background: #d7d7d7;
}

.radios-list-item:first-of-type{
  border-top: 1px solid #d1d1d1;
}

.radios-list-label{
    padding: 5px 10%;
    display: flex;
    align-items: center;
}

.radios-list-input {
    margin-right: 10px;
}

.labels-content {
    display: flex;
    justify-content: space-between;
    padding: 0px 6%;
}

    /* style range */
    #tickmarks {
        --list-length: 13;
    }
    input[type=range] {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    /* style datalist */
    input[type=range] + datalist {
        display: block;
        margin-top: -4px;
    }
    input[type=range] + datalist option {
        display: inline-block;
        width: calc((100% - 12px) / (var(--list-length) - 1));
        text-align: center;
    }
    input[type=range] + datalist option:first-child {
        width: calc((100% - 12px) / ((var(--list-length) - 1) * 2) + 15px);
        text-align: left;
    }
    input[type=range] + datalist option:last-child {
        width: calc((100% - 12px) / ((var(--list-length) - 1) * 2) + 15px);
        text-align: right;
    }

@media (max-width: 390px) {
  #tickmarks {
    --list-length: 14;
  }
}

.const {
    --animation-time: 4s;
}

.check {
    transition: all 0.5s ease-in;
    left: 0px;
    top: 0px;
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba( 5, 20, 31, 0.6 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 10px );
    border: 1px solid rgba(128, 9, 9, 0.18);
    overflow: hidden;
}

.check-hide {
    transition: display 0.4s ease-in-out;
    opacity: 0;
}

.display-check {
    z-index: 1;
    display: flex;justify-content: center; height: 100%;
}