﻿/* ----     CONTENT/BODY      ------------------------------------------------------------------------------------------------------------------------------ */

.d-flex-center{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.row {
    width: 100%;
    margin: 0;
}

#site_wrapper {
    overflow: hidden;
}

.standard div[itemprop=articleBody] hero, .standard div[itemprop=articleBody] section {
    overflow: hidden;
}

[id] {
    scroll-margin-top: 4rem;
}

.unobserved {
    position: relative;
    --transition-time: 0.6s;
    will-change: transform, opacity;
}

    /* Fade */
    .unobserved.fade {
        opacity: 0;
        transition: all var(--transition-time) ease-out;
    }
    /* Fade Up (dal basso) */
    .unobserved.fade-up {
        opacity: 0;
        transform: translateY(50px);
        transition: all var(--transition-time) ease-out;
    }
    /* Fade Left (da sinistra) */
    .unobserved.fade-left {
        opacity: 0;
        transform: translateX(-100px);
        transition: all var(--transition-time) ease-out;
    }
    /* Fade Right (da destra) */
    .unobserved.fade-right {
        opacity: 0;
        transform: translateX(100px);
        transition: all var(--transition-time) ease-out;
    }

    /* Zoom In (ingrandimento) */
    .unobserved.zoom-in {
        opacity: 0;
        transform: scale(0.8);
        transition: all var(--transition-time, 0.5s) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

.observed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.standard {
    --color-1: #f98c06; /*arancione*/
    --color-2: #1d283a; /*blu scuro*/
    --color-3: #0f1729; /*blu scurissimo*/
    --color-4: #f8fafc; /*bianco*/
    --color-5: #fffc; /*bianco più scuro*/
    --color-6: #97a3b5; /*bianco scurissimo*/
    --color-7: #3c83f6; /*blu chiaro*/
    --color-8: #3c83f61a; /*blu chiaro trasparente*/
    --color-9: #f98c0633; /*arancione trasparente*/
    --color-10: #1fad53; /*verde*/

    --highlight: var(--color-1);
    --radius-1: 16px;
    --radius-2: 5px;
    --radius-3: 10px;
    --gap: 1rem;
}

    .standard .bg-1 {
        background-color: var(--color-1);
    }

    .standard .bg-2 {
        background-color: var(--color-2);
        color: var(--color-4);
    }

    .standard .bg-3 {
        background-color: var(--color-3);
        color: var(--color-4);
    }

    .standard .bg-4 {
        background-color: var(--color-4);
        color: #000000;
    }

    .standard .bg-5 {
        background-color: var(--color-5);
        color: #000000;
    }

    .standard .bg-6 {
        background-color: var(--color-6);
    }

    .standard .bg-7 {
        background-color: var(--color-7);
    }

    .standard .bg-8 {
        background-color: var(--color-8);
    }

    .standard .bg-9 {
        background-color: var(--color-9);
    }

    .standard .bg-10 {
        background-color: var(--color-10);
    }

    .standard .bgg-1 {
        background: linear-gradient(135deg, var(--color-3), var(--color-2));
        color: var(--color-4);
    }

    .standard .color-1 {
        color: var(--color-1);
    }

    .standard .color-2 {
        color: var(--color-2);
    }

    .standard .color-3 {
        color: var(--color-3);
    }

    .standard .color-4 {
        color: var(--color-4);
    }

    .standard .color-5 {
        color: var(--color-5);
    }

    .standard .color-6 {
        color: var(--color-6);
    }

    .standard .color-7 {
        color: var(--color-7);
    }

    .standard .color-8 {
        color: var(--color-8);
    }

    .standard .color-9 {
        color: var(--color-9);
    }

    .standard .color-10 {
        color: var(--color-10);
    }

    .standard hero, .standard .hero {
        display: block;
        --bg-image: url('https://protrack.studio/images/Sfondo_ProTRACK_Tramonto.jpg');
        background: linear-gradient(90deg, var(--color-3) 50%, transparent), var(--bg-image);
        background-size: cover;
        background-position: center center;
    }

@media screen and (max-width: 767px) {
    .standard hero, .standard .hero {
        display: block;
        background: linear-gradient( 168deg, transparent -90%, var(--color-3) 45%, transparent 150%), var(--bg-image);
        background-size: cover;
        background-position: center center;
    }
}

.standard hero > .container, .standard .hero > .container {
    min-height: 450px;
}

.standard hero h1, .standard .hero h1 {
    color: var(--color-4);
}

.standard hero p, .standard .hero p {
    color: var(--color-5);
}

.standard .colored {
    color: var(--highlight);
}

.standard .cage {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 1200px;
    max-width: 95%;
    padding: 2.5rem;
}

@media screen and (max-width: 992px) {
    .standard .cage {
        padding: 3rem 1rem;
    }
}

.standard h1, .standard h2 {
    line-height: 1;
    font-weight: 700;
}

.standard h3 {
    font-weight: 700;
}

.standard h4 {
    margin-bottom: 0;
}

.standard p, .standard .p {
    line-height: 1.35;
    margin-bottom: 0;
    font-size: 18px;
}

@media screen and (min-width: 992px) {
    .standard h1, .standard h2 {
        font-size: 55px;
    }

    .standard h3 {
        font-size: 40px;
    }

    .standard p, .standard .p {
        font-size: 19px;
    }
}

@media screen and (min-width: 1200px) {
    .standard h1, .standard h2 {
        font-size: 68px;
    }

    .standard h3 {
        font-size: 45px;
    }

    .standard p, .standard .p {
        font-size: 20px;
    }
}

.standard img {
    border-radius: var(--radius-1);
    max-height: 450px;
    object-fit: contain;
}

.standard strong {
    font-weight: 600;
}

.standard .box, .standard .p2 {
    font-size: 16px;
}

.standard .box, .standard .p3 {
    font-size: 14px;
}

.standard .box {
    padding: 1.5rem;
    border-radius: var(--radius-1);
    border: 1px solid #ffffff21;
    position: relative;
    margin: 0;
    --border-color: #e1e7ef;
}

    .standard .box:not([class*='bg-']) {
        background-color: #ffffff0d;
    }

    .standard .box:not([class*='col-']), .row {
        width: 100%;
    }

    .standard .box img {
        width: 100%;
        height: 270px !important;
        object-fit: cover;
        object-position: top;
    }

    .standard .box p {
        font-size: inherit !important;
    }

.standard .grid {
    gap: var(--gap);
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .standard .grid .col-lg-3 {
        width: calc(25% - var(--gap));
    }

    .standard .grid .col-lg-4 {
        width: calc(33.33333333% - var(--gap));
    }

    .standard .grid .col-lg-6 {
        width: calc(50% - var(--gap));
    }
}

.standard .bg-4 .box, .standard .bg-5 .box {
    border-color: var(--border-color);
    background-color: transparent;
}

.standard .box .hr-top {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

.standard .label {
    border-radius: var(--radius-2);
    width: fit-content;
    padding: 0.3rem 0.8rem;
    font-weight: 600;
    font-size: 14px;
    margin-right: 0.7rem;
    margin-bottom: 0.7rem;
    text-decoration: none;
}

.standard .circle {
    padding: 0;
    border-radius: 100%;
    --size: 40px;
    width: var(--size);
    height: var(--size);
}

    .standard .circle:not([class*='bg-']) {
        background-color: #3c83f61a;
    }

.standard .box .circle.step {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -150%);
}

.standard hr.step {
    position: absolute;
    top: -8.5%;
    left: 50%;
    transform: translate(-50%, -150%);
    margin: 0;
    border: 0;
    height: 2px;
    width: 100%;
}

.standard .box:first-child hr.step {
    background: linear-gradient(90deg, transparent 50%, var(--color-1) 50%);
}

.standard .box:nth-child(2) hr.step {
    background: var(--color-1);
    width: 112%;
}

.standard .box:nth-child(3) hr.step {
    background: linear-gradient(90deg, var(--color-1) 50%, transparent 50%);
}

.standard .radius-1 {
    border-radius: var(--radius-1);
}

.standard .radius-2 {
    border-radius: var(--radius-2);
}

.fw-300 {
    font-weight: 300 !important;
}

.standard .google {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 01-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z' fill='%234285F4'/%3E%3Cpath d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z' fill='%2334A853'/%3E%3Cpath d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z' fill='%23FBBC05'/%3E%3Cpath d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z' fill='%23EA4335'/%3E%3C/svg%3E");
}

.standard .check-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .standard .check-list li {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
    }

        .standard .check-list li::before {
            content: "";
            display: inline-block;
            width: 28px;
            height: 28px;
            margin-right: 1rem;
            background-color: rgba(255, 136, 0, 0.15);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8800' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: 16px;
            background-position: center;
            background-repeat: no-repeat;
            flex-shrink: 0;
        }

.standard .cta {
    border-radius: var(--radius-2);
    padding: 0.7rem;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    width: fit-content;
    cursor: pointer;
}

.standard input, .standard textarea {
    background-color: var(--color-2);
    color: var(--color-4);
    border-radius: var(--radius-3);
    margin: 0;
    padding: 0.8rem 1rem;
    border: 1px solid #ffffff59;
    outline-color: var(--color-7);
}

.standard textarea {
    resize: none;
    height: 130px;
}

    .standard input:focus-visible, .standard textarea:focus-visible {
        outline: none !important;
        /*border: 2px solid var(--color-7);*/
    }

.standard p a, .standard .p a {
    color: inherit !important;
    text-decoration: none;
    transition: 0.3s;
}

    .standard p a:hover, .standard .p a:hover {
        color: var(--color-4) !important;
        text-decoration: underline;
    }

.standard ul.list-style-none {
    list-style: none;
    padding: 0;
}

    .standard ul.list-style-none li {
        margin-bottom: 0.2rem;
    }

.standard strong {
    display: block;
}

.standard footer hr {
    border-bottom: 1px solid var(--color-6);
    border-top: 0;
    margin: 1.8rem 0;
    width: 100%;
    opacity: 0.5;
}

.mt-6 {
    margin-top: 5rem !important;
}




/* ----     HEADER      ------------------------------------------------------------------------------------------------------------------------------ */

#content {
    padding-top: 0px !important;
}

.standard .custom {
    display: contents;
}

.standard a {
    cursor: pointer;
}

body.standard.standard-mobile-menu-opened {
    overflow: hidden !important;
}

body.standard #mobileToggledMenu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    padding: 5rem 3rem;
    animation: fadeUp 1 0.45s ease-out;
}

@keyframes fadeUp {
    0% {
        transform: translateY(100vh);
    }

    100% {
        transform: translateY(0vh);
    }
}

body.standard:not(.standard-mobile-menu-opened) #mobileToggledMenu {
    display: none;
}

body.standard #mobileToggledMenu ul {
    flex-direction: column;
    font-size: 26px;
}

body.standard header #toggleMobileMenu {
    transition: 0.3s;
}

    body.standard header #toggleMobileMenu i {
        /*transform: scale(1.8);*/
        font-size: 35px;
    }

body.standard.standard-mobile-menu-opened header #toggleMobileMenu i:before {
    content: "\f00d";
}

body.standard.standard-mobile-menu-opened .app-header a:not(#toggleMobileMenu) {
    opacity: 0;
    pointer-events: none;
}

body.standard #appHeader.app-header a:hover {
    color: var(--color-4) !important;
}

body.standard .dropdown {
    --icon-font-size: 14px;
}

    body.standard .dropdown .dropdown-body {
        display: none !important;
        padding: 0 1rem;
    }

    body.standard .dropdown.opened .dropdown-body {
        display: flex !important;
    }

    body.standard .dropdown .dropdown-head:after {
        font-family: "Font Awesome 6 Pro";
        content: "\f078";
        margin-left: 0.2rem;
        font-size: var(--icon-font-size);
        position: relative;
        top: -1px;
    }

    body.standard .dropdown.opened .dropdown-head:after {
        font-family: "Font Awesome 6 Pro";
        content: "\f077";
        margin-left: 0.2rem;
        font-size: var(--icon-font-size);
    }

    body.standard .dropdown.position-relative.opened .dropdown-body {
        position: absolute;
        width: 200px;
        background-color: var(--color-4);
        display: flex;
        flex-direction: column;
        text-align: start;
        padding: 0.6rem;
        border-radius: var(--radius-3);
        box-shadow: 0px 0px 3px var(--color-6);
        top: 2rem;
    }

        body.standard .dropdown.position-relative.opened .dropdown-body > a {
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-3);
        }

            body.standard .dropdown.position-relative.opened .dropdown-body > a:hover {
                background-color: var(--color-8);
            }

body.standard.standard-mobile-menu-opened .dropdown .dropdown-head:after {
    margin-left: 0.5rem !important;
    --icon-font-size: 17px !important;
}


.standard header.header-lg {
    position: sticky;
    top: 0px;
    z-index: 9999990;
    width: 100%;
    box-shadow: 0 0px 4px var(--color-6);
}

    .standard header.header-lg ul li {
        margin-bottom: 0;
    }

.standard header .cage {
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    color: #48566a;
}

.standard header ul {
    font-weight: 600;
}

.standard header .p a {
    outline: none !important;
}

    .standard header .p a:hover {
        color: #000000 !important;
        text-decoration: none !important;
    }

.standard .app-header {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 99999999;
    --gap: 0.8rem;
    padding: 0.8rem 0;
    box-shadow: 0 0px 4px var(--color-6);
}

    .standard .app-header tr {
        vertical-align: bottom;
    }

        .standard .app-header tr td, .standard .app-header .grid > a {
            --n-elements: 5;
            width: calc(calc(100% / var(--n-elements)) - var(--gap));
        }

            .standard .app-header tr td a, .standard .app-header .grid > a {
                display: flex;
                flex-wrap: wrap;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 0 0.2rem;
                font-size: 14px;
                height: 100%;
                font-weight: 600;
            }

                .standard .app-header tr td a:focus, .standard .app-header > a:focus {
                    color: inherit !important;
                }

                .standard .app-header tr td a svg, .standard .app-header tr td a i, .standard .app-header .grid > a svg, .standard .app-header .grid > a i {
                    font-size: 21px;
                    margin-bottom: 0.2rem;
                    color: inherit !important;
                }

body.standard.standard-mobile-menu-opened .app-header {
    box-shadow: none;
}



/* ----     FOOTER      ------------------------------------------------------------------------------------------------------------------------------ */

@media screen and (max-width:767px) {
    .standard footer {
        margin-bottom: 78px;
    }
}



/* ----     STRIPE CART      ------------------------------------------------------------------------------------------------------------------------------ */
.shopping-cart-menu-voice {
    position: relative;
    color: #ffffff;
    padding: 0.2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    width: fit-content;
}

    .shopping-cart-menu-voice span {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-25%, 17%);
        font-size: 10px;
        background-color: #e94167;
        color: #ffffff;
        border: 2px solid #ffffff;
        --cart-num-size: 17px;
        width: var(--cart-num-size);
        height: var(--cart-num-size);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .shopping-cart-menu-voice i {
        font-size: 26px;
    }

.shopping-cart-sidebar-container {
    background-color: #0000005c;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99999999;
}

.shopping-cart-sidebar {
    box-shadow: 0 0 12px #0000003b;
    background-color: #f5f8fa;
    color: #000000;
    flex: 0 0 auto;
    --width: 400px;
    width: var(--width);
    max-width: 100%;
    height: 100%;
    order: 1;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    animation: shoppingCartIn 1 0.3s;
    --header-height: calc(45px + 1rem);
    --body-height: 35px;
    --footer-height: calc(250px + 1.5rem);
    --highlight-color: #ee335b;
    padding: 1rem 0.5rem;
}

@keyframes shoppingCartIn {
    0% {
        position: relative;
        left: var(--width);
    }

    100% {
        position: relative;
        left: 0;
    }
}

.shopping-cart-sidebar .cart-header {
    font-size: 28px;
    font-weight: 700;
    height: var(--header-height);
    padding: 0.5rem 0.7rem 0.5rem 1.5rem;
}

    .shopping-cart-sidebar .cart-header i {
        cursor: pointer;
        color: #adadadf0;
        font-size: 30px;
        padding: 0.3rem;
    }

        .shopping-cart-sidebar .cart-header i:hover {
            color: var(--highlight-color);
        }

.shopping-cart-sidebar .cart-footer {
    height: var(--footer-height);
    padding: 0.5rem 1.5rem;
}

    .shopping-cart-sidebar .cart-footer #stripeCartCheckoutBtn, .shopping-cart-sidebar .cart-footer .cart-btn-2 {
        height: fit-content;
        padding: 0.7rem 1.2rem;
        font-weight: 500;
        transition: 0.4s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-decoration: none !important;
        cursor: pointer !important;
        background-color: #ee335b !important;
        color: #ffffff !important;
        border-radius: 6px;
        font-size: 22px;
        user-select: none;
        border: 2px solid transparent;
    }

    .shopping-cart-sidebar .cart-footer .cart-btn-2 {
        background-color: transparent !important;
        color: #ee335b !important;
        border: 2px solid #ee335b;
    }

        .shopping-cart-sidebar .cart-footer #stripeCartCheckoutBtn:hover:enabled, .shopping-cart-sidebar .cart-footer .cart-btn-2:hover:enabled {
            background-color: #33A1FD !important;
            color: #ffffff !important;
            border-color: transparent !important;
        }

    .shopping-cart-sidebar .cart-footer .cart-btn:disabled {
        opacity: 0.3;
    }

.shopping-cart-sidebar .cart-body {
    overflow-y: auto;
    height: calc(100% - var(--header-height) - var(--footer-height));
    padding: 0 0.3rem;
}

    .shopping-cart-sidebar .cart-body .cart-product {
        height: fit-content;
        padding: 0.8rem 1rem;
        width: 100%;
        border-top: 1px solid #adadadf0;
    }

        .shopping-cart-sidebar .cart-body .cart-product:hover {
            background-color: #edf2f5;
        }

    .shopping-cart-sidebar .cart-body .empty-cart {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #414040;
        pointer-events: none;
    }

    .shopping-cart-sidebar .cart-body .cart-product .product-name {
        font-size: 18px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: start;
        color: #46485d;
        font-weight: 500;
        line-height: 1.2;
    }

    .shopping-cart-sidebar .cart-body .cart-product .product-image {
        padding: 0;
        margin: 0 0.8rem 0 0;
        border-radius: 8px;
        --img-size: 50px;
        width: var(--img-size);
        height: var(--img-size);
        object-fit: cover;
    }

    .shopping-cart-sidebar .cart-body .cart-product .product-price {
        margin: 0.2rem 0 0;
        font-weight: 600;
        color: #000000;
        font-size: 17px;
    }

    .shopping-cart-sidebar .cart-body .cart-product .product-actions {
        margin: 0;
        color: #686b8c;
        font-weight: 600;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

        .shopping-cart-sidebar .cart-body .cart-product .product-actions i {
            cursor: pointer;
            transition: 0.3s;
            margin: auto 0.5rem;
            font-size: 18px;
        }

            .shopping-cart-sidebar .cart-body .cart-product .product-actions i.remove:hover {
                color: var(--highlight-color);
            }

.shopping-cart-sidebar .cart-footer .cart-subtotal {
    line-height: 1.15;
    font-size: 16px;
    color: #46485d;
    font-weight: 500;
    height: fit-content;
}

.shopping-cart-sidebar .cart-footer .cart-total {
    line-height: 1.15;
    color: #000000;
    font-weight: 600;
    font-size: 23px;
    border-top: 1px solid #adadadf0;
    padding-top: .5rem;
    height: fit-content;
}

.cart-success {
    font-size: 22px;
    color: #069506 !important;
    font-weight: 600;
    background-color: #e8fff1 !important;
}

    .cart-success > .container {
        color: inherit !important;
        font-size: inherit !important;
    }

    .cart-success i {
        color: #069506;
        font-size: 50px;
        margin-right: 1rem;
        animation: cartSuccessIcon 1 1.5s;
    }

@keyframes cartSuccessIcon {
    0%,20% {
        transform: rotate(0deg) scale(0);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

#dj-megamenu129offcanvas ul .shopping-cart-menu-voice {
    padding: 0.2rem 1rem;
}

    #dj-megamenu129offcanvas ul .shopping-cart-menu-voice > div:first-child {
        color: #444444;
        font-size: 19px;
        font-weight: 500;
        margin: 0;
    }

    #dj-megamenu129offcanvas ul .shopping-cart-menu-voice i {
        font-size: 26px;
    }

    #dj-megamenu129offcanvas ul .shopping-cart-menu-voice span {
        transform: translate(-38%, -20%);
        font-size: 12px;
        --cart-num-size: 18px;
    }

@media screen and (max-width: 767px) {
    .shopping-cart-sidebar {
        --width: 100%;
    }
}

#shoppingCartChooseCheckout {
    background-color: #ebf6ff;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99999999;
}

    #shoppingCartChooseCheckout .choose-checkout {
        background-color: #ffffff;
        padding-top: 0;
        border-radius: 7px;
        font-size: 23px;
        overflow: hidden;
        box-shadow: 0 0 5px #0000000f;
    }

        #shoppingCartChooseCheckout .choose-checkout button {
            width: auto;
            min-width: 100px;
            border: 0;
            padding: 0.6rem 1rem;
            border-radius: 7px;
            margin: 0.5rem 0;
            background-color: var(--bs-fuchsia);
            color: #ffffff;
            font-weight: 600;
            transition: 0.3s;
        }

            #shoppingCartChooseCheckout .choose-checkout button:hover, #shoppingCartChooseCheckout .choose-checkout button:focus-within {
                box-shadow: inset 0 0 80px #0000003d;
            }

        #shoppingCartChooseCheckout .choose-checkout .choose-checkout-title {
            font-size: 28px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        #shoppingCartChooseCheckout .choose-checkout i.fa-xmark {
            opacity: 0.5;
            cursor: pointer;
            transition: 0.3s;
        }

            #shoppingCartChooseCheckout .choose-checkout i.fa-xmark:hover {
                opacity: 1;
                color: #ffffff;
            }

.field-container {
    margin: .5rem;
    background-color: #f5f9f8;
    color: #000000;
    box-shadow: 0 0 5px #00000014;
    border-radius: 4px;
    padding: 0;
}

    .field-container input, .field-container select {
        background-color: transparent;
        border: 0;
        outline: 0;
        box-shadow: none;
        padding: .7rem .5rem;
        width: calc(100% - 40px);
        margin: 0 !important;
        color: inherit;
    }

        .field-container input[type=radio] {
            width: fit-content;
            margin: 0.5rem !important;
        }

    .field-container label {
        width: unset !important;
    }

    .field-container select {
        margin-right: .5rem !important;
    }

    .field-container i {
        opacity: .5;
        width: 40px;
        padding: 0;
        height: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

.cursor-pointer {
    cursor: pointer;
}

#stripeCartFormCheckoutBtn[disabled] {
    opacity: 0.5;
    box-shadow: none !important;
}

@media (min-width: 992px) {
    #shoppingCartChooseCheckout .col-lg-11 {
        width: calc(41.66666667% + 41.66666667% + 1rem);
    }
}

@media screen and (max-width:991px) {
    .shopping-cart-menu-voice i {
        font-size: 33px;
    }
    .shopping-cart-menu-voice span {
        font-size: 17px;
        --cart-num-size: 23px;
        transform: translate(-30%, -29%);
    }

    #bigCartIcon.shopping-cart-menu-voice i {
        font-size: 24px;
    }
    #bigCartIcon.shopping-cart-menu-voice span {
        font-size: 12px;
        --cart-num-size: 17px;
        transform: translate(-26%, 21%);
    }
}