/*
    STEP COLORS
*/
.step_blue .nav-list > li > a {
    color: #56cbf5;
}

.step_green .nav-list > li > a {
    color: #4CB15F;
}

.step_purp .nav-list > li > a {
    color: #9B7FBA;
}

.step_yellow .nav-list > li > a {
    color: #F5C213;
}

/*
    SIDEBAR
*/

.steps_items {
    position: relative;
}

body .buttons {
    bottom: 3px;
    left: 3px;
    right: 3px;
    width: auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px dashed #003d68;
    padding: 20px 30px;
}

.sidebar,
.step {
    max-height: calc(100vh - 40px);
    overflow: auto;  
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #cccccc; 
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #003D68;
}

.nav-list > li {
    border-top: 1px dashed #003D68;
}

.nav-list > li:nth-child(1) {
    border-top: none;
}

.nav-list > li > a {
    display: block;
    padding: 5px 15px;
}

.submenu {
    padding-bottom: 10px;
    padding-top: 10px;
    border-top: 1px dashed #003D68;
    line-height: 1.5;
}

.submenu li {
    padding-left: 30px;
}

.submenu li.current-category a {
    text-decoration: underline;
    color: #003d68;
    font-weight: 700;
}

.nav-list > li.current-section > a {
    background-color: #003d68;
    color: #fff;
}

/* .product-box {

} */

.product-box-title {
    padding: 5px 15px;
    background-color: #003d68;
    color: #fff;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    border-bottom: 1px dashed #003D68;
}

.product-image {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

.product-image img {
    display: block;
    width: 45px;
    height: 45px;
    object-fit: cover;
    object-position: center;
}

.product-title {
    flex: 1;
}

.product-price {
    font-weight: 700;
    font-size: 16px;
    color: #003d68;
}

.product-details {
    display: block;
    text-align: center;
    padding: 5px 15px;
    font-weight: 700;
    color: #003d68;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.product-details:hover {
    background-color: #003d68;
    color: #fff;
}


/*
    RESPONSIVE
    @media (max-width: 1500px)
    @media (max-width: 1199px)
    @media (max-width: 910px)
    @media (max-width: 767px)
    @media (max-width: 575x)
*/

.mob-menu-button,
.sidebar-overlay {
    display: none;
}

@media (max-width: 910px) {
    .test {
        overflow: hidden;
    }
    .mob-menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        position: fixed;
        z-index: 15;
        cursor: pointer;
        top: 23px;
        left: 18px;
        background-color: rgba(255, 255, 255, 0.9);
    }
    .mob-menu-button span {
        display: block;
        position: relative;
        width: 25px;
        height: 2px;
        background-color: #003D68;
    }
    .mob-menu-button span:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        background-color: inherit;
        top: -7px;
        transition: top 0.3s ease;
    }

    .mob-menu-button span:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        background-color: inherit;
        bottom: -7px;
        transition: bottom 0.3s ease;
    }

    .mob-menu-button.active,
    .mob-menu-button.active span {
        background-color: transparent;
    }

    .mob-menu-button.active span:before,
    .mob-menu-button.active span:after {
        background-color: #fff;
        top: 0;
        bottom: 0;
        transition: transform 0.3s ease;
    }

    .mob-menu-button.active span:before {
        transform: rotate(-45deg);
    }

    .mob-menu-button.active span:after {
        transform: rotate(45deg);
    }

    body .sidebar {
        width: 50%;
        position: fixed;
        right: 15px;
        top: 20px;
        bottom: 20px;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: all 0.3s ease;
        z-index: 10;
    }

    .sidebar-overlay {
        content: '';
        position: fixed;
        display: block;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
        pointer-events: none;
        opacity: 0;
        transition: all 0.3s ease;
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.75);
    }

    body .sidebar.active,
    .sidebar-overlay.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: all;
    }

}

@media (max-width: 575px) {
   body .sidebar {
        width: auto;
        left: 60px;
   } 

   .mob-menu-button {
        width: 40px;
        height: 40px;
    }
}


.steps .step .check-items h2{
    color: #003D68;
    margin-bottom: 25px;
    line-height: 1.2;
}
.buttons .btn.show-products {
    display: none;
}