@import "fonts/Montserrat/Montserrat.css";

.question-container .ls-label-question {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.25px;
    text-align: left;
}
.group-container .group-title {
    font-family: Montserrat;
    font-size: 23px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
}

.list-dropdown .question-title-container {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4000000059604645px;
    text-align: left;
}

.radio-item label {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4000000059604645px;
    text-align: left;
}

.ls-answers label, .answer-item label, .control-label {
    color: black;
}


.ls-answers .list-unstyled {
    list-style-type: none; /* Removes the default list-style */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    display: flex; /* Aligns items in a row */
    justify-content: space-around; /* Distributes space around items */
    margin-top: 35px;
}

.ls-answers .list-unstyled li {
    display: flex; /* Displays li content (input + label) in a column */
    flex-direction: column; /* Stacks them vertically */
    align-items: center; /* Centers the items horizontally */
    justify-content: center; /* Centers the items vertically */
}

.radio-item {
    padding-left: 0px;
}
.radio-item label {
    padding-left: 0px;
}

.radio-item label::before {
    content: "";
    display: block;
    position: relative;
    left: 50%;
    top: -25%;
    height: 19px;
    width: 19px;
    border-radius: 50%;
    transform: translateX(50%);
    transition: border 0.15s ease-in-out;
}

.radio-item label::after {
    content: " ";
    display: block;
    position: absolute;
    left:50%;
    top: -18%;
    width: 9px;
    height: 9px;
    margin-top: 2px;
    border-radius: 50%;
    transform: scale(0, 0) translateX(83%);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio-item input[type=radio]:checked + label::after {
    transform: scale(1, 1) translateX(140%);
}


.question-valid-container {
    min-height: 10px;
    display:none;
}
.question-help-container {
    display:none;
}


.btn-lg{
    height: 28px;
    min-height: 28px;
    padding-left:8px;
    padding-right: 8px;
    padding-bottom: 0px;
    padding-top:0px;
    border-radius: 5px;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.25px;
    text-align: left;

}


.radio-item label::after {
    background-color: #6d95e4;
}

input[type=radio] .styled:checked + label::before {
    color: #fff;
}

input[type=radio] .styled:checked + label::after {
    color: #fff;
}

.radio-item input[type=radio] + label::after {
    background-color: #6d95e4;
}

.radio-item input[type=radio]:checked + label::before {
    border-color: #6d95e4;
}

.radio-item input[type=radio]:checked + label::after {
    background-color: #6d95e4;
}
