html,
body,
#__next{
    background: #0A0D18;
}

body{
    margin: 0;
    overflow-x: hidden;
}

.is-hidden{
    display: none !important;
}

#vix-loader{
    position: fixed;
    inset: 0;
    background: #0A0D18;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity .25s ease;
}

.vix-spinner{
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #ff6a00;
    border-right-color: #ff6a00;
    border-bottom-color: #ff6a00;
    animation: vixSpin .9s linear infinite;
}

@keyframes vixSpin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

html.vix-loading,
html.vix-loading body{
    overflow: hidden;
}

@media (max-width: 639px){
    #plan-section #plan-mensual,
    #plan-section #plan-anual{
        overflow: visible !important;
    }

    #plan-section button[data-testid^="card_"]{
        height: auto !important;
    }
}

@media (max-width: 413px){
    .checkout-width{
        width: 100% !important;
        max-width: 100% !important;
    }
}
