.index-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 0 1px 0.5px rgb(204 204 204);
}
.index-header .desktop {
    height: 70px;
    padding: 10px 0;
    margin: 0 auto;
    width: 96.5%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.index-header .desktop .img {
    width: 15.8%;
    padding: 10px;
}

.index-header .desktop .links {
    width: 45.2%;
    padding: 0 15px;
}

.index-header .desktop .links a {
    width: auto;
    text-decoration: none;
    padding: 0 5px;
    margin: 0 5px;
    color: #6A6A6A;
    font-weight: 500;
    font-size: 16px;
    border-top: solid 3px #fff;
    text-align: center;
}

.index-header .desktop .links a:hover {
    color: #6A6A6A;
    font-weight: bolder;
}

.index-header .desktop .links a.active {
    color: #31d1ab;
    border-top: solid 3px #31d1ab;
}

.index-header .desktop .links a.active:hover {
    color: #31d1ab;
    font-weight: 600;
}

.index-header .desktop .buttons {
    width: 39%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 10px;
    text-align: right;
}

.index-header .desktop .buttons a {
    width: auto;
    text-decoration: none;
    color: #6A6A6A;
    font-size: 16px;
    font-weight: 600;
}

.index-header .desktop .buttons a span {
    font-size: 16px;
    font-weight: 500;
}

.index-header .desktop .buttons a img {
    margin: 0 5px !important;
    width: 19px;
    height: 19px;
}

.index-header .desktop .buttons .begin-free {
    padding: 6px 24px;
    color: white;
    font-size: 16px;
    background-color: #2f4050;
    border: solid;
    border-color: #2f4050;
    border-radius: 5px;
    border-width: 2px;
    margin-left: 10px;

    overflow: hidden;
    transition: 0.2s transform ease-in-out;
    will-change: transform;
}

.index-header .desktop .buttons .begin-free h5 {
    width: auto;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.index-header .desktop .buttons .begin-free:hover {
    color: white;
    border: solid;
    border-color: #31d1ab;
}

.index-header .desktop .buttons .begin-free::before {
    width: 178.64px;
    height: 37px;
    display: block;
    background-color: #31d1ab;
    color: #31d1ab;
    border: solid;
    border-radius: 0;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}
.index-header .desktop .buttons .begin-free::before {
    transform: translate(-100%, 100%);
}
.index-header .desktop .buttons .begin-free:hover::before {
    transform: translate(0, 0);
}

.index-header .mobile {
    display: none;
}

.menu-sand-mobile {
    display: none;
}

/* mini cart */

.action-mini-cart {
    width: 30px;
    text-align: right;
    display: flex;
    flex-direction: column-reverse;
}

.action-mini-cart .toggle-mini-cart {
    position: relative;
    padding: 0;
    border: none;
    background-color: #fff;
}
.action-mini-cart .toggle-mini-cart:hover {
    position: relative;
    padding: 0;
    border: none;
    background-color: #fff;
}

.action-mini-cart .toggle-mini-cart:focus {
    position: relative;
    padding: 0;
    border: none;
    background-color: #fff;
}

.action-mini-cart .toggle-mini-cart span {
    display: block;
    width: 20px;
    height: 20px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background-color: red;
    border-radius: 50%;
    padding: 3px 0 0;
    transform: translate(8px,-8px);
    position: absolute;
    top: 0;
    right: 0;
}

.action-mini-cart .toggle-mini-cart i {
    font-style: normal;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.action-mini-cart .toggle-mini-cart img:not(:root) {
    overflow: hidden;
}

.products-from-car {
    width: 30%;
    position: fixed;
    top: 0;
    right: -40%;
    height: 100vh;
    background-color: #fff;
    z-index: 99999;
    display: block;
    flex-direction: column;
    transition: .6s;
}

.products-from-car.show {
    right: 0;
    transition: .6s;
}

.products-from-car .section {
    width: 100%;
    max-height: 100vh;
    padding: 10% 0 0 5%;
    overflow: hidden;
    overflow-y: auto;
}
.products-from-car .section .header {
    display: flex;
    justify-content: start;
    align-items: center;
}
.products-from-car .section .header .header-title{
    width: 80%;
    color: #2f4050;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}
.products-from-car .section .header .close {
    cursor: pointer;
    width: 20%;
    text-align: center;
}
.products-from-car .section .header .close span {
    color: #2f4050;
    font-weight: 700;
    font-size: 1.5rem;
}

.products-from-car .section .products {
    display: flex;
    flex-direction: column;
    margin: 0 8% 0 0;
}

.products-from-car .section .products .product{
    position: relative;
    margin: 20px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.products-from-car .section .products .product:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin: 15px 0 0;
}
.products-from-car .section .products .product .image {
    max-height: 80px;
    width: 80px;
    height: auto;
    text-align: center;
}
.products-from-car .section .products .product .image img {
    width: 100%;
    user-select: none;
    pointer-events: none;
    border: 0;
}
.products-from-car .section .products .product .details {
    width: calc(100% - 80px);
    padding: 0 0 0 3%;
}
.products-from-car .section .products .product .details .product-title {
    padding-right: 9%;
}
.products-from-car .section .products .product .details .product-title h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}
.products-from-car .section .products .product .details .product-desccription {
    font-size: 11px;
    font-weight: 400;
    color: #777;
    margin: .5rem 0 .5rem 0;
}
.products-from-car .section .products .product .details .product-action {
    margin: 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.products-from-car .section .products .product .details .product-action .action {
    display: flex;
    justify-content: start;
    align-items: center;
}
.products-from-car .section .products .product .details .product-action .action .quantity {
    width: 50px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    border-radius: 0;
    outline: none;
    border: none;
    background-color: transparent;
    line-height: normal;
    margin: 0;
    padding: 0;
}
.products-from-car .section .products .product .details .product-action .action .reduce, .products-from-car .section .products .product .details .product-action .action .incrase {
    display: block;
    width: 32px;
    height: 32px;
    background-color: #31d1ab;
    border-radius: 50%;
    transition: background-color .3s cubic-bezier(.645,.045,.355,1);
    position: relative;
    border: none;
}
.products-from-car .section .products .product .details .product-action .action .reduce:hover {
    background-color: #2f4050;
}
.products-from-car .section .products .product .details .product-action .action .incrase:hover {
    background-color: #2f4050;
}
.products-from-car .section .products .product .details .product-action img {
    width: 15px;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}
.products-from-car .section .products .product .details .product-action .product-price span {
    font-weight: 600;
    font-size: 21px;
}
.products-from-car .section .products .product .remove-from-cart {
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #fff;
    transition: opacity .3s cubic-bezier(0.645,0.045,0.355,1);
    position: absolute;
    top: -6%;
    right: 0;
    padding: 0;
    margin: 0;
    border: none;
}
.products-from-car .section .products .product .remove-from-cart:hover {
    background-color: transparent;
}
.products-from-car .section .products .product .remove-from-cart img {
    /*width: 100%;*/
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.products-from-car .section .order-details {
    display: flex;
    flex-direction: column;
    margin: 0 8% 0 0;
}
.products-from-car .section .order-details .header {
    margin: 8% 0 0 0;
    padding: 0 0 6% 0;
    width: 100%;
    border-bottom: solid 1px #31d1ab;
}
.products-from-car .section .order-details .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5% 0 5% 0;
}
.products-from-car .section .order-details .continue-order {
    padding: 5%;
}
.products-from-car .section .order-details .continue-order button {
    width: 100%;
    border: none;
    background-color: #31d1ab;
    border-radius: 5px;
}
.products-from-car .section .order-details .continue-order button h5 {
    color: #fff;
    margin: 0;
    padding: 0.5rem 1rem;
}

@media (max-width: 1036px) {
    .index-header .desktop {
        display: none;
    }
    .index-header .mobile {
        height: auto;
        padding: 10px 0;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        padding-left: 13px;
        padding-right: 15px;
    }

    .index-header .mobile .menu {
        width: 12%;
    }

    .index-header .mobile .menu a img {
        width: 24px;
        height: 24px;
    }

    .index-header .mobile .menu i {
        font-size: 25px;
    }

    .index-header .mobile .menu i.bi::before {
        font-weight: 600 !important;
    }

    .index-header .mobile .menu i.bi-list::before {
        color: #385064;
    }

    .index-header .mobile .menu i.bi-x::before {
        color: #385064;
    }

    .index-header .mobile .img {
        width: auto;
    }

    .index-header .mobile .img img {
        width: 240px;
    }

    .index-header .mobile .buttons {
        width: 47%;
        text-align: right;
        display: flex;
        justify-content: flex-end;
    }

    .index-header .mobile .buttons a {
        width: auto;
        padding: 2px 8px;
        text-decoration: none;
        background-color: #385064;
        border: solid;
        border-width: 2px;
        border-color: #385064;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        border-radius: 3px;
        display: flex;
        justify-items: center;
    }

    .menu-sand-mobile {
        display: block;
        width: 100%;
        position: fixed;
        top: 0;
        left: -101%;
        transition: .6s;
        z-index: 9999;
        max-height: 100vh;
        background-color: transparent;
    }

    .menu-sand-mobile.show {
        left: 0;
        transition: .6s;
    }
    .menu-sand-mobile .content {
        width: 100%;
        margin: 0;
        padding: 0;
        height: 100vh;
        overflow: hidden;
        overflow-y: auto;
    }
    .menu-sand-mobile .content .modules {
        background: #385064;
        padding: 10px 20px;
    }
    .menu-sand-mobile .content .modules h4 {
        margin: 0;
        padding: 0;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
    }

    .menu-sand-mobile .content .items {
        display: flex;
        justify-content: start;
        align-items: center;
        background: #fff;
        padding: 10px 20px;
    }

    .menu-sand-mobile .content .items-blank {
        height: 22.5px;
        background: #fff;
    }

    .menu-sand-mobile .content .items img {
        height: 25px;
        width: 25px;
        margin: 0 10px 0 0;
    }

    .menu-sand-mobile .content .items h5 {
        margin: 0;
        padding: 0;
        font-size: 15px;
        font-weight: 700;
        color: #494c4f;
    }

    /* mini cart */

    .action-mini-cart {
        width: 30px;
        text-align: right;
        height: auto;
        display: block;
        flex-direction: column-reverse;
    }

    .action-mini-cart .toggle-mini-cart {
        position: relative;
        top: 5px;
        right: 3px;
        padding: 0;
        border: none;
    }
    .action-mini-cart .toggle-mini-cart:hover {
        position: relative;
        padding: 0;
        border: none;
        background-color: #fff;
    }

    .action-mini-cart .toggle-mini-cart:focus {
        position: relative;
        padding: 0;
        border: none;
        background-color: #fff;
    }

    .action-mini-cart .toggle-mini-cart span {
        display: block;
        width: 20px;
        height: 20px;
        font-weight: 700;
        font-size: 12px;
        color: #fff;
        text-align: center;
        background-color: red;
        border-radius: 50%;
        padding: 3px 0 0;
        transform: translate(8px,-8px);
        position: absolute;
        top: 3px;
        right: 1px;
    }

    .action-mini-cart .toggle-mini-cart i {
        font-style: normal;
        transform: translate(-50%,-50%);
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .action-mini-cart .toggle-mini-cart img:not(:root) {
        overflow: hidden;
    }
    .products-from-car {
        width: 100%;
        position: fixed;
        top: 0;
        right: -101%;
        height: 100vh;
        background-color: #fff;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        transition: .6s;
    }
    .products-from-car.show {
        right: 0;
        transition: .6s;
    }
    .products-from-car .section {
        width: 100%;
        padding: 10% 0 0 5%;
        overflow: hidden;
        overflow-y: scroll;
    }
    .products-from-car .section .header {
        display: flex;
        justify-content: start;
        align-items: center;
    }
    .products-from-car .section .header .header-title{
        width: 80%;
        color: #2f4050;
        text-align: left;
        font-weight: 700;
        font-size: 1.1rem;
        margin: 0;
    }
    .products-from-car .section .header .close {
        cursor: pointer;
        width: 20%;
        text-align: center;
    }
    .products-from-car .section .header .close span {
        color: #2f4050;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .products-from-car .section .products {
        display: flex;
        flex-direction: column;
        margin: 0 8% 0 0;
    }

    .products-from-car .section .products .product{
        position: relative;
        margin: 20px 0 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .products-from-car .section .products .product:after{
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: #eee;
        margin: 15px 0 0;
    }
    .products-from-car .section .products .product .image {
        max-height: 80px;
        width: 80px;
        height: auto;
        text-align: center;
    }
    .products-from-car .section .products .product .image img {
        width: 100%;
        user-select: none;
        pointer-events: none;
        border: 0;
    }
    .products-from-car .section .products .product .details {
        width: calc(100% - 80px);
        padding: 0 0 0 3%;
    }
    .products-from-car .section .products .product .details .product-title {
        padding-right: 9%;
    }
    .products-from-car .section .products .product .details .product-title h4 {
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
        margin: 0;
    }
    .products-from-car .section .products .product .details .product-desccription {
        font-size: 11px;
        font-weight: 400;
        color: #777;
        margin: .5rem 0 .5rem 0;
    }
    .products-from-car .section .products .product .details .product-action {
        margin: 15px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .products-from-car .section .products .product .details .product-action .action {
        display: flex;
        justify-content: start;
        align-items: center;
    }
    .products-from-car .section .products .product .details .product-action .action .quantity {
        width: 50px;
        font-weight: 700;
        font-size: 20px;
        text-align: center;
        border-radius: 0;
        outline: none;
        border: none;
        background-color: transparent;
        line-height: normal;
        margin: 0;
        padding: 0;
    }
    .products-from-car .section .products .product .details .product-action .action .reduce, .products-from-car .section .products .product .details .product-action .action .incrase {
        display: block;
        width: 32px;
        height: 32px;
        background-color: #31d1ab;
        border-radius: 50%;
        transition: background-color .3s cubic-bezier(.645,.045,.355,1);
        position: relative;
        border: none;
    }
    .products-from-car .section .products .product .details .product-action .action .reduce:hover {
        background-color: #2f4050;
    }
    .products-from-car .section .products .product .details .product-action .action .incrase:hover {
        background-color: #2f4050;
    }
    .products-from-car .section .products .product .details .product-action img {
        width: 15px;
        transform: translate(-50%,-50%);
        position: absolute;
        top: 50%;
        left: 50%;
    }
    .products-from-car .section .products .product .details .product-action .product-price span {
        font-weight: 600;
        font-size: 21px;
    }
    .products-from-car .section .products .product .remove-from-cart {
        display: inline-block;
        /*width: 20px;*/
        height: 20px;
        transition: opacity .3s cubic-bezier(0.645,0.045,0.355,1);
        position: absolute;
        top: -6%;
        right: 0;
        padding: 0;
        margin: 0;
        border: none;
    }
    .products-from-car .section .products .product .remove-from-cart img {
        /*width: 100%;*/
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }
    .products-from-car .section .order-details {
        display: flex;
        flex-direction: column;
        margin: 0 8% 0 0;
    }
    .products-from-car .section .order-details .header {
        margin: 8% 0 0 0;
        padding: 0 0 6% 0;
        width: 100%;
        border-bottom: solid 1px #31d1ab;
    }
    .products-from-car .section .order-details .total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 5% 0 5% 0;
    }
    .products-from-car .section .order-details .continue-order {
        padding: 5%;
    }
    .products-from-car .section .order-details .continue-order button {
        width: 100%;
        border: none;
        background-color: #31d1ab;
        border-radius: 5px;
    }
    .products-from-car .section .order-details .continue-order button h5 {
        color: #fff;
        margin: 0;
    }

}

.p-10-px {
    padding: 10px;
}
