:root {
    --dark-color: #323A45;
    --color-fff: #FFFFFF;
    --color-100: #F0F0F0;
    --color-200: #EEEEEE;
    --color-300: #E0E0E0;
    --color-400: #BDBDBD;
    --color-500: #555555;
    --color-600: #757575;
    --color-700: #616161;
    --color-800: #424242;
    --color-900: #212121;
    --color-000: #000000;
    --border-color: #f0f0f0;
    --card-color: #ffffff;
    --body-color: #f9fbfd;
    --white-color: #ffffff;
    --sidebar-color: #fcfcfc;
    --text-color: #212529;
    --svg-color: #76808F;
    --hc-font-color: #555555;
    --hc-bg-color: #f0f0f0;
    --primary-color: #0d6efd;
    --secondary-color: #f7b36b;
    --chart-color1: #6aab9c;
    --chart-color2: #f7b36b;
    --chart-color3: #97B0AA;
    --chart-color4: #4D6E94;
    --chart-color5: #81A1CA;
    --buy-color: #0ecb81;
    --sell-color: #f6465d;
    --theme-primary: #512da8;
    --theme-primary-dark: #1a1f2e;
}

*:focus {
    box-shadow: none !important;
}

a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover,
a:focus {
    color: var(--theme-primary-dark);
    text-decoration: underline;
}

a:active {
    color: var(--theme-primary);
    opacity: 0.8;
}

body {
    font-family: "Poppins", sans-serif;
    -moz-transition: ease 0.1s;
    -o-transition: ease 0.1s;
    -webkit-transition: ease 0.1s;
    transition: ease 0.1s;
    background-color: var(--body-color);
    color: var(--color-500);
    font-weight: 400;
    font-size: 15px
}

.accordion-button:not(.collapsed) {
    color: var(--theme-primary);
}

.active > .page-link {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.active > .page-link:hover {
    color: white;
}

.annotated-card {
    max-width: 420px;
}

/* Generic annotation */
.annotation {
    position: absolute;
    font-size: 12px;
    color: #333;
}

.annotation .label {
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    white-space: nowrap;
}

/* Arrow line */
.annotation .arrow {
    position: absolute;
    width: 40px;
    height: 1px;
    background: #333;
}

/* Title annotation */
.title-note {
    top: 10px;
    left: -120px;
}

.title-note .arrow {
    top: 50%;
    left: 100%;
}

/* Date annotation */
.date-note {
    top: 69px;
    left: -120px;
}

.date-note .arrow {
    top: 50%;
    left: 100%;
}

/* Odds annotation */
.odds-note {
    top: 66px;
    right: -110px;
}

.odds-note .arrow {
    top: 50%;
    right: 100%;
}

@keyframes pulse-line {
    0% {
        transform: scaleX(0.3);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0.3);
        opacity: 0.3;
    }
}

.annotation .arrow {
    transform-origin: left center;
    animation: pulse-line 1.4s ease-in-out infinite;
}

.status-note {
    top: 6px;
    right: -130px;
}

.status-note .arrow {
    top: 50%;
    right: 100%;
    width: 50px;
}

.bg-theme {
    background-color: var(--theme-primary);
}

.border-primary-theme {
    border-color: var(--theme-primary);
}

.btn-theme {
    color: #fff;
    background-color: var(--theme-primary);
    border: 1px solid var(--theme-primary);
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-theme:hover {
    background-color: var(--theme-primary-dark);
    border-color: var(--theme-primary-dark);
    color: #ffffff;
}

.btn-theme-outline {
    color: var(--theme-primary);
    background-color: transparent;
    border: 1px solid var(--theme-primary);
}

.btn-theme-outline:hover {
    background-color: var(--theme-primary);
    color: #fff;
}

.code {
    font-size: 1.25rem;
}

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

.gauge-container {
    width: 100%;
    height: 120px;
    position: relative;
}

.gauge {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
}

.gsi-material-button {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none;
    background-color: WHITE;
    background-image: none;
    border: 1px solid #747775;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #1f1f1f;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    max-width: 400px;
    min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.gsi-material-button:disabled {
    cursor: default;
    background-color: #ffffff61;
    border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #303030;
    opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
    background-color: #303030;
    opacity: 8%;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 10px rgba(33, 37, 41, 0.15);
    background-color: var(--card-color);
    border-color: var(--theme-primary);
    color: var(--text-color)
}

.input-2-digit {
    width: 6ch !important;
}

.integrations .card {
    cursor: pointer;
}

.integrations .card:hover {
    border-color: var(--theme-primary);
}

.lp-menu {
    background-color: #f9fbfd;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 3px 6px rgba(220, 232, 234, 0.45);
}

.hero-text h1 {
    color: var(--theme-primary-dark);
    font-size: 48px;
    line-height: 75px;
}

.navbar-nav .nav-link {
    position: relative;
    text-decoration: none !important;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    /* A gradient of mystical violet and gold */
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    box-shadow: 0px 0px 8px rgba(168, 85, 247, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: #6366f1 !important;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.page-link {
    color: var(--theme-primary);
}

.page-link:hover, .page-link:active, .page-link:focus {
    color: var(--theme-primary);
    text-decoration: none;
}

.pricing-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
    border-color: var(--theme-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.pricing-header {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.section {
    padding: 80px 0;
}

.section.footer {
    background-color: #e9ecef;
}

.section.footer .footer-bottom {
    border-top: 1px solid var(--color-400);
}

.user-message {
    text-align: right;
    margin-bottom: 10px;
}

.oracle-message {
    text-align: left;
    margin-bottom: 10px;
}

#user-input:focus {
    border-color: var(--theme-primary);
}

.user-message .message,
.oracle-message .message {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 80%;
}

.user-message .message {
    background-color: var(--theme-primary);
    color: white;
    cursor: pointer;
}

.oracle-message .message {
    background-color: #e9ecef;
    color: #212529;
    cursor: pointer;
}

.oracle-message .message.copied {
    color: green;
    font-weight: bold;
}

.progress-bar {
    transition: width 1s ease-in-out;
}

.transition-hover {
    transition: transform 0.2s;
    display: block;
}

.transition-hover:hover {
    transform: translateY(-3px);
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-theme {
    color: var(--theme-primary);
}

.ticket-cutout-left, .ticket-cutout-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #f8f9fa;
    border-radius: 50%;
    z-index: 2;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ticket-cutout-left {
    left: -12px;
}

.ticket-cutout-right {
    right: -12px;
}

.ticket-id-note {
    top: 6px;
    left: -120px;
}

.ticket-id-note .arrow {
    top: 50%;
    left: 100%;
    width: 50px;
}

.status-stamp {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0px 15px;
    border: 4px solid;
    border-radius: 8px;
    opacity: 0.5;
    transform: rotate(-15deg);
    user-select: none;
    pointer-events: none;
    font-family: 'Courier New', Courier, monospace;
}

.status-stamp.won {
    color: #198754;
    border-color: #198754;
}

.status-stamp.lost {
    color: #dc3545;
    border-color: #dc3545;
}

.ticket-tag {
    font-size: .9rem;
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .annotation {
        display: none;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}