.course-content {
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
}


.course-content>ul li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

/*course-content>ul li::before {
    display: none;
}*/

.course-content .test-inf-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.course-content .test-inf_item {
    color: var(--dark-grey);
    font-size: 1.125rem;
    font-weight: 700;
	 display: flex;
	align-items:center;
}
.course-content .test-inf-list :before{
  display: none;
}
.statistic-item {
    font-weight: 500;
}

.questions {
    color: #757575;
    font-size: 0.875rem;
    font-weight: 500;
}

.pagination-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px 3px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
}

.pagination-list__item {
    width: 43px;
    height: 19px;
    background: var(--grey);
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
}

.pagination-list__item:hover {
    background-color: var(--dark-grey);
}

.prev_stage {
    background: var(--green);
}

.current_stage {
    background: var(--dark-blue);
}

.current_stage:hover {
    background: var(--dark-blue);
}

.test-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.timer {
    color: var(--dark-grey);
    font-size: 1.125rem;
    font-weight: 700;
}

.course-btns {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.course-btns .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    line-height: 17px;
}

.course-btns .prev {
    border: 0;
    background: transparent;
    font-weight: 500;
    padding: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.btn[type="submit"] {
    display: none;
}

.steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.step {
    display: none;
    width: 100%;
}

.step_active {
    display: block;
}

.course-content .step-title {
    color: var(--dark-grey);
    font-size: 1.125rem;
    font-weight: 700;
}

.step-desc {
    color: var(--dark-grey);
    font-size: 1.125rem;
    font-weight: 500;
}

.list-options {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.list-options__item {
    color: var(--dark-grey);
    font-size: 1.125rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.checkbox-label {
    margin-top: 5px;
}

.checkbox {
    width: 22px;
    height: 22px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.switch-checkbox {
    position: relative;
    border-radius: 4px;
    border: 1px solid var(--grey-very-light);
    height: 22px;
    width: 22px;
    cursor: pointer;
    display: block;
    -webkit-transition: .3s all linear;
    -o-transition: .3s all linear;
    transition: .3s all linear;
    pointer-events: none;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.switch-checkbox::after {
    content: '';
    display: block;
    width: inherit;
    height: inherit;
    -webkit-transition: .3s all linear;
    -o-transition: .3s all linear;
    transition: .3s all linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: inherit;
    border-radius: inherit;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 22px;
    height: 22px;
    background: url('../img/icon/check.svg') no-repeat center var(--white);
}

.checkbox:checked~.switch-checkbox::after {
    content: '';
    background: url('../img/icon/check.svg') no-repeat center var(--dark-blue);
}

.input {
    max-width: 366px;
    width: 100%;
    height: 60px;
    border-radius: var(--border-radius);
    border: 1px solid var(--grey-very-light);
    padding-left: 15px;
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 25px;
    font-weight: 500;
}

.input::-moz-placeholder {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.input::-webkit-input-placeholder {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.input:-ms-input-placeholder {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.input::-ms-input-placeholder {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.input::placeholder {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.select-wrap {
    max-width: 366px;
    width: 100%;
    position: relative;
}


.select-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 18px;
    height: 18px;
    background: url("../img/icon/triangle-light-grey.svg") no-repeat center;
    z-index: 3;
}

.select-wrap::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 11px;
    right: 15px;
    width: 18px;
    height: 18px;
    background: url("../img/icon/triangle-light-grey.svg") no-repeat center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    z-index: 3;
}

select {
    max-width: 366px;
    width: 100%;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #CFCFCF;
    padding-left: 15px;
    color: #424242;
    font-size: 1rem;
    line-height: 25px;
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    background: #FFF;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select option {
    border-radius: 12px;
    border: 1px solid #CFCFCF !important;
    padding-left: 15px;
    color: #424242;
    font-size: 1rem;
    line-height: 25px;
    font-weight: 500;
    height: 60px;
    outline: none;
    border: none;
    background: #FFF;
}

select:hover {
    background-color: #ebebeb;
}

select::picker-icon {
    opacity: 0;
    display: none;
}

option::checkmark {
    display: none;
    opacity: 0;
}

.list-option_variation .list-options__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    gap: 30px;
}

.selected {
    display: none;
}

.images-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}
.flex--center{
	justify-content:center;
}