/* Шаблон 1 */
* {
    font-family: 'Montserrat';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 100%;
}
button, a, input {
    font-family: 'Montserrat';
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    line-height: 100%;
}
.custom-checkbox-container {
    margin-bottom: 3px;
}
.custom-checkbox {
    display: block;
    width: 20px;
    height: 20px;
}
.custom-checkbox > span {
    user-select: none;
}

.custom-checkbox > span {
    display: none;
}

.custom-checkbox.checked > span {
    display: inherit;
}
.btn-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.quiz {
    width: 360px;
    height: 800px;
    overflow: hidden;
    padding: 45px 15px;
    background-color: #fff;
    margin: 0 auto;
}
.quiz__item {
    width: 100%;
    height: 100%;
    display: none;
}
.quiz__item.active {
    display: block;
}
.quiz__item-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 19px;
    position: relative;
    margin-bottom: 50px;
}
.quiz__item-btn-back {
    cursor: pointer;
}
.quiz__item-btn-back-img {
}
.quiz__item-step-block {
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    color: #1D5F84;
}
.quiz__item-total-steps,
.quiz__item-step-current{
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}
.quiz__item-step-current {
    background: linear-gradient(127.95deg, #20BCFF 14.6%, #7C58FE 90.45%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.quiz__item-top-scale {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #C9C9C9;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.quiz__item-top-inner-scale {
    height: inherit;
    width: 20px;
    background: linear-gradient(127.95deg, #20BCFF 14.6%, #7C58FE 90.45%);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.quiz__item-title {
    font-size: 24px;
    font-weight: 700;
    color: #1D5F84;
    text-align: center;
    margin: 30px 0;
}

.quiz__item-description {
    font-size: 16px;
    font-weight: 600;
    color: #1D5F84;
    text-align: center;
    margin: 30px 0;
}

.quiz__item-btn-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.quiz__item-btn-item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 80px;
    padding: 15px 17px;
    background: #fff;
    z-index: 1;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}
.quiz__item-btn-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 80px;
    background: linear-gradient(127.95deg, #20BCFF 14.6%, #7C58FE 90.45%);
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
    transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    z-index: -2;
}
.quiz__item-btn-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 326px;
    height: 76px;
    background: #fff;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
    transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    z-index: -1;
}
.quiz__item-btn-img {
    width: 45px;
    height: 45px;
}
.quiz__item-btn-text {
    color: #1D5F84;
    width: 210px;
    font-size: 16px;
    font-weight: 600;
}
.custom-checkbox-container {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.quiz__btn-simple {
    justify-content: center;
    height: 50px;
    background: linear-gradient(127.95deg, #20BCFF 14.6%, #7C58FE 90.45%);
}
.quiz__btn-simple::after,
.quiz__btn-simple::before {
    display: none;
}
.quiz__btn-simple .quiz__item-btn-text {
    color: #fff;
}
.quiz__input-def-label {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.quiz__input-def {
    width: 100%;
    color: #000;
    font-weight: 300;
    font-size: 15px;
    padding: 16px 35px 16px 15px;
    border: 1px solid #BCBCBC;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.quiz__input-def:focus-visible {
    outline: 1px solid #000;
}
.quiz__input-def-info {
    color: #000;
    font-weight: 300;
    font-size: 15px;
    position: absolute;
    top: 48%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.quiz__item-title--fin {
    margin-bottom: 12px;
}
.quiz__item-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}
.quiz__input-def:focus-visible {
    border: 1px solid #000;
    outline: none;
}
button:disabled {
    opacity: 0.6;
}
.error-text {
    text-align: center;
    margin-top: 10px;
    color: #f32929;
    font-weight: 600;
    font-size: 15px;
}
.quiz__input-def.input-error {
    border: 1px solid #f32929;
}
/* Шаблон 1 */