
.plan-switch,
.month-switch {
    background: #ECECEC;
    border-radius: 30px;
    height: 40px;
}

.plan-btn,
.month-btn {
    border: none;
    background: transparent;
    border-radius: 30px;
    /*font-size: 14px;*/
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 28px;
    line-height: 1;
}

.plan-btn.active,
.month-btn.active {
    background: var(--primary);
    color: var(--white);
}

/*for wizard*/
ul.wizard,
ul.wizard li {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
}

ul.wizard {
    direction: rtl;
}

ul.wizard li {
    flex-direction: column;
    align-items: center;
    position: relative;
}

ul.wizard li::before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    text-align: center;
    line-height: 0.5em;
    border-radius: 50%;
    background: #c1c1c1;
    cursor: pointer;
}

ul.wizard li ~ li::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 50%;
    height: 2px;
    background-color: #c1c1c1;
    top: calc(0.75em - 9px);
    z-index: -1;
}

ul.wizard li.completed ~ li::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 50%;
    height: 2px;
    background-color: #c1c1c1;
    top: 3px;
    z-index: -1;
}

ul.wizard li.active::before {
    background: var(--auxan);
    color: white;
    font-size: 21px;
}

ul.wizard li.active::after {
    background: var(--auxan);
    color: white;
}

ul.wizard span {
    color: #333;
    font-size: 12px;
    word-break: break-all;
}

ul.wizard li.completed::before {
    background: var(--auxan);
    color: #333;
}

ul.wizard li.completed span {
    color: #000;
}

ul.wizard li.completed + li::after {
    background: var(--auxan);
}

ul.wizard li.completed::after {
    background: var(--auxan);
    font-size: 21px;
}

.credit-detail {
    /*height: 165px;*/
    background-color: #F0F0F0;
}

.contracts-items,
.licences-items {
    height: 45px;
    background-color: #F0F0F0;
}

.accordion-item {
    border: 1px solid;
}

/*responsive for mobile */
/* Small phones */
@media (max-width: 375px) {
    .attention {
        height: 86px;
    }
}

/*phone pro*/
@media (max-width: 575.98px) {
    .contracts-wrapper,
    .contain-wrapper {
        max-width: 93vw;
    }

    .attention {
        height: 86px;
    }

    .slider-wrapper {
        max-width: 530px;
    }

    ul.wizard li.active::after {
        background: var(--auxan);
        color: white;
        font-size: 9px;
        top: 3px;
    }

    ul.wizard li.active::before {
        background: var(--auxan);
        color: white;
        font-size: 12px;

    }

    ul.wizard li::before {
        width: 6px;
        height: 6px;
        line-height: 0.5em;
    }

}

/* Tablets */
@media (min-width: 768px) {
    .month-btn {
        font-size: 16px;
    }

    .slider-wrapper {
        max-width: 730px;
    }
}

.contain-contracts,
.contain-licences {
    overflow: hidden;
}

h3 {
    font-size: 16px;
}

.slider-container {
    display: flex;
    align-items: center;
    direction: rtl;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.3s ease;
}

.slider div {
    text-align: start;
    color: gray;
    font-size: 16px;
    /*padding: 10px 15px;*/
    flex-shrink: 0;
}

.slider div.active {
    font-weight: bold;
    font-size: 20px;
    color: black;
}

/* desktop → 3 slides */
@media (min-width: 601px) {
    .slider-wrapper {
        width: calc(var(--slide-width));
    }

    .slider-container #left {
        left: -55px;
    }

    .slider-container #right {
        right: -55px;
    }
}

/* mobile → 1 slide */
@media (max-width: 600px) {
    /*.slider-wrapper {*/
    /*    width: var(--slider-width);*/
    /*}*/

    .call-btn {
        padding: 10px !important;
    }

    .slider div span {
        font-size: 17px;
    }
}

