.select-payment-duration{
    display: flex;
    position: relative;
    align-items: center;
}
.reduction{
    position: absolute;
    left: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bc8d00;
}
.reduction-content{
    position: absolute;
    left: 60px;
    width: 240px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.arrow-btn {
    position: relative;
    width: 80px;
    transform: rotate(-24deg);
}

.switch {
    position: relative;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    position: absolute;
    width: 240px;
    height: 50px;
    background-color: #ccc;
    cursor: pointer;
    border-radius: 34px;
    transition: background-color 0.2s;
}

.toggle-label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    width: 120px;
    height: 43px;
    background: var(--primary-dark);
    border-radius: 20px;
    transform: translateY(-50%);
    transition: transform 0.2s;
}

.toggle-checkbox:checked + .toggle-label {
    background: var(--primary-dark);
}

.toggle-checkbox:checked + .toggle-label:before {
    transform: translateY(-50%) translateX(112px);
    background-color: #F97366;
}

.toggle-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    transition: color 0.2s;
}

.toggle-text:first-child {
    text-align: center;
    left: 4px;
    width: 120px;
    color: #ffffff;
}

.toggle-text:last-child {
    text-align: center;
    right: 4px;
    width: 120px;
    color: white;
}

.toggle-checkbox:checked + .toggle-label .toggle-text:first-child {
    color: white;
}

.toggle-checkbox:checked + .toggle-label .toggle-text:last-child {
    color: white;
}
.small-switch  {

    height: 40px !important;

}
.small-switch .toggle-label {
    width: 160px;
    height: 33px;
    border-radius: 17px;
}

.small-switch .toggle-label:before {
    width: 80px;
    height: 29px;
    border-radius: 14.5px;
}

.small-switch .toggle-text {
    font-size: 12px;
}

.small-switch .toggle-text:first-child {
    left: 2px;
    width: 80px;
}

.small-switch .toggle-text:last-child {
    right: 2px;
    width: 80px;
}

.small-switch .toggle-checkbox:checked + .toggle-label:before {
    transform: translateY(-50%) translateX(74px);
}
@media all and (max-width: 815px) {
    .reduction{
        position: absolute;
        display: flex;
        left: 10px;
        top: 70px;
    }
    .arrow-btn {
        position: relative;
        transform: rotate(35deg);
    }
    .reduction-content{
        left: -60px;
        top: 35px;
    }
}