@import './fonts/stylesheet.css';

body {
    background: #090F1E;
    overflow-x: hidden;
}

body.modal {
    overflow: hidden;
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Lufga';
}

@keyframes shine {
    to {
        background-position-x: -500%;
    }
}  

.container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.container .page {
    width: calc(100vw - 40px);
    padding: 0px 20px;
    max-width: 1380px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 800px) {
    .container {
        margin-top: 0px;
    }

    .container .page {
        width: calc(100vw - 30px) !important;
        padding: 0px 15px !important;
    }
}

@media (max-width: 1024px) {
    .page-container {
        padding-bottom: 80px;
    }
}

*::-webkit-scrollbar {
  width: 3px;               
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);       
}

*::-webkit-scrollbar-thumb {
  background-color: #7842F3;  
}

.blue-button {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(97.97deg, #4FACFE 0.49%, #4FACFE 36.66%, #71BDFF 50.41%, #6BBAFF 52.96%, #4FACFE 64.67%, #4FACFE 102.37%);
    background-size: 500%;
    animation: 10s shine linear infinite;
    box-shadow: 0px 0px 32.1px -2px rgb(54 183 243 / 10%);
    transition: all 300ms;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    opacity: 1;
    cursor: pointer;
}

.gray-button {
    height: 50px;
    display: flex;
    align-items: center;
    width: 200px;
    width: 100%;
    border-radius: 14px;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    background: #161C2D;
    font-size: 14px;
    font-weight: 500;
    transition: all 300ms;
    cursor: pointer;
    gap: 4px;
}

.green-button {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(94deg, #59EF79 1%, #59EF79 35%, #9CFFB1 51%, #59EF79 67.5%, #59EF79 100%);
    background-size: 500%;
    animation: 10s shine linear infinite;
    box-shadow: 0px 25px 32.1px -15px rgba(39, 214, 182, 0.10);
    transition: all 300ms;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    opacity: 1;
    cursor: pointer;
}

.white-button {
    border-radius: 14px;
    background: #FFF;
    height: 50px;
    padding: 0px 40px;
    line-height: 50px;
    color: #2F6CEA;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: scale(1);
    transition: all 300ms;
}

.purple-button {
    border-radius: 14px;
    background: linear-gradient(94deg, #B979FF 1%, #B979FF 26.5%, #D4ADFF 51%, #B979FF 72%, #B979FF 100%);
    background-size: 500%;
    animation: 10s shine linear infinite;
    height: 50px;
    padding: 0px 40px;
    line-height: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: scale(1);
    transition: all 300ms;
}

.blue-button.inactive, .green-button.inactive, .white-button.inactive, .purple-button.inactive, .gray-button.inactive {
    opacity: 0.8;
}

.blue-button:hover {
    box-shadow: 0px 0px 32.1px -2px rgb(54 183 243 / 30%);
    transition: all 300ms;
}

.green-button:hover {
    box-shadow: 0px 25px 32.1px -15px rgba(39, 214, 182, 0.30);
    transition: all 300ms;
}

.purple-button:hover {
    box-shadow: 0px 25px 32.1px -15px rgba(150, 85, 255, 0.3);
    transition: all 300ms;
}

.white-button:hover {
    transform: scale(1.03);
    transition: all 300ms;
}

.blue-button .button-dots, .green-button .button-dots, .reset .button-dots,  .white-button .button-dots, .purple-button .button-dots, .gray-button .button-dots {
    display: flex;
    gap: 6px;
}

.blue-button .button-dots .dot, .green-button .button-dots .dot, .purple-button .button-dots .dot, .gray-button .button-dots .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.white-button .button-dots .dot {
    width: 6px;
    height: 6px;
    background: #2F6CEA;
    border-radius: 50%;
}

.reset .button-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.blue-button .button-dots .dot:nth-child(1), 
.green-button .button-dots .dot:nth-child(1), 
.purple-button .button-dots .dot:nth-child(1), 
.reset .button-dots .dot:nth-child(1),
.white-button .button-dots .dot:nth-child(1),
.gray-button .button-dots .dot:nth-child(1) {
    animation: 1s button-dot linear infinite;
}

.blue-button .button-dots .dot:nth-child(2),
.green-button .button-dots .dot:nth-child(2), 
.purple-button .button-dots .dot:nth-child(2), 
.reset .button-dots .dot:nth-child(2),
.white-button .button-dots .dot:nth-child(2),
.gray-button .button-dots .dot:nth-child(2) {
    animation: 1s button-dot linear infinite;
    animation-delay: 0.33s;
}

.blue-button .button-dots .dot:nth-child(3), 
.green-button .button-dots .dot:nth-child(3), 
.reset .button-dots .dot:nth-child(3), 
.purple-button .button-dots .dot:nth-child(3), 
.white-button .button-dots .dot:nth-child(3),
.gray-button .button-dots .dot:nth-child(3) {
    animation: 1s button-dot linear infinite;
    animation-delay: 0.66s;
}

.button.cashapp-pay {
    width: calc(100% - 30px);
    height: 15px;
    padding: 15px;
    background: rgb(65 226 102);
    border-radius: 14px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
     /* 200% */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.button.cashapp-pay.chime {
    background: rgb(30 198 118) !important;
}

@keyframes button-dot {
    0% {transform: translate(0px, -2px);}
    50% {transform: translate(0px, 2px);}
    100% {transform: translate(0px, -2px);}
}

@keyframes button-dot-reverse {
    0% {transform: translate(0px, 2px);}
    50% {transform: translate(0px, -2px);}
    100% {transform: translate(0px, 2px);}
}

.updating {
    opacity: 0.8;
    cursor: no-drop;
    animation: 1.5s update-animation linear infinite;
}

@keyframes update-animation {
    0% {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}

.live-operator {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 10;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(253deg, #635FF5 -17.61%, #892AF1 99.54%);
    box-shadow: 0px 0px 32.1px -2px rgba(128, 55, 242, 0.50);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-operator svg {
    fill: #fff;
    stroke: #fff;
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

@media(max-width: 1024px) {
    .live-operator {
        display: none;
    }
}

.intercom-lightweight-app-launcher {
    bottom: 90px !important;
    right: 15px !important;
}

.intercom-lightweight-app {
    z-index: 10 !important;
}