*,
*::after,
*::before {
    box-sizing: border-box;
}

*:has(> [data-flux-main]) {
    display: block;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    background-color: #0f0f0f;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/*.container-fluid,*/
/*.row {*/
/*    width: 100%;*/
/*    max-width: 100vw;*/
/*}*/

a,
a:hover {
    text-decoration: none;
}

.bg-dark-blue {
    background-color: #1b2991;
}
.bg-black {
    background-color: #0f0f0f;
}
.bg-blue {
    background-color: #2f80ed;
}
.bg-pink {
    background-color: #ff00cc;
}
.bg-voilet {
    background-color: #7900ff;
}
.bg-red {
    background-color: #f12711;
}
.bg-yellow {
    background-color: #fbff00;
}
.bg-dark-yellow {
    background-color: #f5af19;
}
.bg-green {
    background-color: #64f38c;
}
.bg-dark-green {
    background-color: #327a46;
}
.bg-light-green {
    background-color: #49ff00;
}

.bg-gradient-1 {
    background: #1b2991;
    background: -webkit-linear-gradient(to right, #1b2991, #f12711, #ff00cc);
    background: linear-gradient(to right, #1b2991, #f12711, #ff00cc);
}

.bg-gradient-2 {
    background: #2f80ed;
    background: -webkit-linear-gradient(to right, #2f80ed, #64f38c);
    background: linear-gradient(to right, #2f80ed, #64f38c);
}

.bg-gradient-3 {
    background: #f12711;
    background: -webkit-linear-gradient(to right, #f12711, #f5af19);
    background: linear-gradient(to right, #f12711, #f5af19);
}

.bg-gradient-4 {
    background: #7900ff;
    background: -webkit-linear-gradient(to right, #7900ff, #ff00cc);
    background: linear-gradient(to right, #7900ff, #ff00cc);
}

.bg-gradient-animated {
    background: -webkit-linear-gradient(
        -45deg,
        #7900ff,
        #ff00cc,
        #f12711,
        #f5af19,
        #2f80ed,
        #64f38c,
        #f12711,
        #ff00cc
    );
    background: linear-gradient(
        -45deg,
        #7900ff,
        #ff00cc,
        #f12711,
        #f5af19,
        #2f80ed,
        #64f38c,
        #f12711,
        #ff00cc
    );
    background-size: 400% 400%;
    animation: gradient 25s ease infinite;
    height: 100%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text-dark-blue {
    color: #1b2991;
}
.text-black {
    color: #0f0f0f;
}
.text-blue {
    color: #2f80ed;
}
.text-pink {
    color: #ff00cc;
}
.text-voilet {
    color: #7900ff;
}
.text-red {
    color: #f12711;
}
.text-yellow {
    color: #fbff00;
}
.text-dark-yellow {
    color: #f5af19;
}
.text-green {
    color: #64f38c;
}
.text-dark-green {
    color: #327a46;
}
.text-light-green {
    color: #49ff00;
}

.text-shadow {
    text-shadow: 1px 1px 0 #969696b9, 1px 5px 5px #aba8a893;
}

.text-gradient-1 {
    background: -webkit-linear-gradient(#1b2991, #f12711, #ff00cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
    background: -webkit-linear-gradient(#2f80ed, #64f38c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-3 {
    background: -webkit-linear-gradient(#f12711, #f5af19);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-4 {
    background: -webkit-linear-gradient(#7900ff, #ff00cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-animated-hue {
    background: -webkit-linear-gradient(
        92deg,
        #7900ff,
        #ff00cc,
        #f12711,
        #f5af19,
        #2f80ed,
        #64f38c,
        #f12711,
        #ff00cc
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 10s infinite;
}

@-webkit-keyframes hue {
    from {
        -webkit-filter: hue-rotate(0deg);
    }
    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}

.text-gradient-animated-slide {
    background: -webkit-linear-gradient(
        92deg,
        #7900ff,
        #ff00cc,
        #f12711,
        #f5af19,
        #2f80ed,
        #64f38c,
        #f12711,
        #ff00cc
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: slide 10s infinite;
}

@keyframes slide {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.rounded-md {
    border-radius: 0.5rem;
}
.rounded-lg {
    border-radius: 1rem;
}

.border-dark-blue {
    border-color: #1b2991 !important;
}
.border-black {
    border-color: #0f0f0f !important;
}
.border-blue {
    border-color: #2f80ed !important;
}
.border-pink {
    border-color: #ff00cc !important;
}
.border-voilet {
    border-color: #7900ff !important;
}
.border-red {
    border-color: #f12711 !important;
}
.border-yellow {
    border-color: #fbff00 !important;
}
.border-dark-yellow {
    border-color: #f5af19 !important;
}
.border-green {
    border-color: #64f38c !important;
}
.border-dark-green {
    border-color: #327a46 !important;
}
.border-light-green {
    border-color: #49ff00 !important;
}

.border-gray {
    border-color: #d5dcd1 !important;
}

.border-1 {
    border-width: 1px !important;
}
.border-2 {
    border-width: 3px !important;
}
.border-3 {
    border-width: 5px !important;
}
.border-4 {
    border-width: 7px !important;
}
.border-5 {
    border-width: 9px !important;
}

.fw-100 {
    font-weight: 100;
}
.fw-200 {
    font-weight: 200;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
    letter-spacing: 1px;
}
.fw-800 {
    font-weight: 800;
    letter-spacing: 2px;
}
.fw-900 {
    font-weight: 900;
    letter-spacing: 2px;
}
.fw-1000 {
    font-weight: 1000;
    letter-spacing: 2px;
}

.text-capitalize {
    text-transform: capitalize;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-lowercase {
    text-transform: lowercase;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fs-32 {
    font-size: 32px;
}

.fs-34 {
    font-size: 34px;
}

.fs-36 {
    font-size: 36px;
}

.box-shadow {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.345);
}

.h-250px {
    height: 100%;
    max-height: 250px;
    overflow-y: auto;
}

.h-250px::-webkit-scrollbar {
    width: 7px;
}
.h-250px::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.345);
}

.cursor-pointer {
    cursor: pointer;
}

.table {
    width: 100%;
}

.table-bordered,
.table-bordered th,
.table-bordered td {
    border: 1px solid #ffffff;
    border-collapse: collapse;
}

.table tr,
.table th,
.table td {
    padding: 0;
}

.table.theme-table tr,
.table.theme-table th,
.table.theme-table td {
    line-height: 14px;
}

.table th,
.table td {
    text-align: center;
    vertical-align: middle;
}

.float-buttons-container {
    width: 100%;
    max-width: 100vw;
}

.page-refresh {
    position: fixed;
    bottom: 20px;
    right: 30px;
    outline: none;
}
.page-refresh:focus {
    outline: none;
}
.page-home {
    position: fixed;
    bottom: 70px;
    right: 30px;
    outline: none;
}

.auth-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    width: 100%;
    max-width: 25rem;
    height: 100%;
}

.dashboard-panel {
    display: grid;
    grid-template-columns: 100%;
}

.dashboard-panel .d-sidebar,
.dashboard-panel .d-body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.dashboard-panel .d-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(15, 15, 15, 0.2);
    z-index: 9999;
}

.dashboard-panel .d-sidebar .d-sidebar-wrapper {
    width: 14rem;
    height: 100%;
    box-shadow: 2px 0 5px 5px rgba(15, 15, 15, 0.15);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
}

.dashboard-panel.show .d-sidebar {
    display: block;
}

.dashboard-panel.hide .d-sidebar {
    display: none;
}

.dashboard-panel .d-body .d-navbar {
    width: 100%;
    min-height: 4rem;
    padding: 1rem;
}
.dashboard-panel .d-body .d-main {
    width: 100%;
    min-height: calc(100vh - 4rem);
    padding: 1rem;
}

.d-sidebar-wrapper .d-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}
.d-sidebar-wrapper .d-sidebar-nav .d-sidebar-nav-item {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0.25rem 0;
    border: none;
}
.d-sidebar-wrapper .d-sidebar-nav .d-sidebar-nav-item .d-sidebar-nav-link {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    color: #ffffff;
    border-radius: 0.125rem;
    padding: 0.25rem;
    transition: all 0.25s ease-in-out;
    border: none;
    font-size: 1rem;
    font-weight: bold;
}
.d-sidebar-wrapper
    .d-sidebar-nav
    .d-sidebar-nav-item
    .d-sidebar-nav-link:hover {
    background-color: rgba(47, 128, 237, 0.15);
}
.d-sidebar-wrapper
    .d-sidebar-nav
    .d-sidebar-nav-item
    .d-sidebar-nav-link.active {
    background-color: #2f80ed;
    transition: all 0.25s ease-in-out;
}

@media (min-width: 992px) {
    .dashboard-panel {
        grid-template-columns: 14rem auto;
    }
    .dashboard-panel .d-sidebar {
        display: block;
        position: relative;
        width: 14rem;
    }

    .dashboard-panel .d-sidebar .d-sidebar-wrapper {
        width: 14rem;
        height: 100%;
        box-shadow: 2px 0 5px 5px rgba(15, 15, 15, 0.15);
        overflow-x: hidden;
        overflow-y: auto;
        padding: 1rem;
    }

    .dashboard-panel.show {
        grid-template-columns: 14rem auto;
    }

    .dashboard-panel.hide {
        grid-template-columns: 100%;
    }

    .dashboard-panel.show .d-sidebar {
        display: block;
    }

    .dashboard-panel.hide .d-sidebar {
        display: none;
    }
}

.p-05 {
    padding: 0.5rem;
}
.gap-05 {
    gap: 0.5rem;
}

.min-height-200 {
    height: 200px;
}
.draw-container {
    width: 100%;
    max-width: 400px;
    padding: 0.25rem;
}

.draw-input {
    border: #2f80ed solid 2px;
    width: 50%;
    height: 3.5rem;
    font-size: 1.5rem;
}

.draw-input:focus,
.draw-input.active {
    border-color: #f5af19;
}

.lock-time {
    background-color: rgb(255, 255, 255, 0.325);
    padding: 0.25rem;
    font-size: 1.2rem;
}

.lock-time-separater {
    font-size: 1.2rem;
    opacity: 1;
    animation: pulse 1s linear infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.today-result {
    position: fixed;
    top: 5rem;
    right: 0.01rem;
    z-index: 999;
}

.draw-detail {
    position: fixed;
    top: 7.5rem;
    right: 0.01rem;
    z-index: 999;
}

.draw-type {
    position: fixed;
    top: 10rem;
    right: 0.01rem;
    outline: none;
    border: none;
    font-size: 0.95rem;
    z-index: 999;
}

.keyboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0.5rem;
    justify-items: center;
}

.keyboard .key {
    width: 100%;
    height: 100%;
    align-self: center;
    outline: none;
    user-select: none;
    border: none;
    border-radius: 0.125rem;
    box-shadow: 3px 3px 0 0 #f5af19;
    font-size: 1.8rem;
    font-weight: bold;
}
.keyboard .key:disabled {
    opacity: 0.5;
}

.my-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: none;
}

.my-table th,
.my-table td {
    border: 1px solid #0f0f0f;
    padding: 0.25rem;
    white-space: nowrap;
    color: #0f0f0f;
}
.my-table thead th {
    font-weight: bold;
}
.my-table thead td {
    font-weight: 600;
}

.my-table thead th {
    vertical-align: bottom;
}

.calculator-container {
    width: 100%;
    max-width: 500px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 20px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}

.input {
    width: 330px;
    border: 1px solid #ddd;
    border-radius: 1px;
    height: 60px;
    padding-right: 15px;
    padding-top: 11px;
    text-align: right;
    font-size: 1.5rem;
    overflow-x: auto;
    transition: all 0.2s ease-in-out;
}

.input:hover {
    border: 1px solid #bbb;
    -webkit-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.operators {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.operators div {
    display: inline-block;
    border: 1px solid #bbb;
    border-radius: 1px;
    width: 80px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background-color: #ddd;
    width: 70px;
    transition: border-color 0.2s ease-in-out, background-color 0.2s,
        box-shadow 0.2s;
}

.operators div:hover {
    background-color: #ddd;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    border-color: #aaa;
}

.operators div:active {
    font-weight: bold;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.leftPanel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
}
.numbers {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.numbers div {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 1px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    width: 70px;
    transition: border-color 0.2s ease-in-out, background-color 0.2s,
        box-shadow 0.2s;
}

.numbers div:hover {
    background-color: #f1f1f1;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    border-color: #bbb;
}

.numbers div:active {
    font-weight: bold;
}

div.equal {
    display: inline-block;
    border: 1px solid #3079ed;
    border-radius: 1px;
    text-align: center;
    padding: 102px 10px;
    vertical-align: top;
    cursor: pointer;
    color: #fff;
    background-color: #4d90fe;
    width: 70px;
    transition: all 0.2s ease-in-out;
}

div.equal:hover {
    background-color: #307cf9;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    border-color: #1857bb;
}

div.equal:active {
    font-weight: bold;
}

table.draw-table {
    white-space: nowrap !important;
}
table.draw-table th,
table.draw-table td {
    padding: 0 8px;
}

.video-container,
.video-container video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width: 576px) {
    .video-container,
    .video-container video {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
}

@media (min-width: 768px) {
    .video-container,
    .video-container video {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }
}

@media (min-width: 992px) {
    .video-container,
    .video-container video {
        width: 100%;
        height: 480px;
        object-fit: cover;
    }
}

@media (min-width: 1200px) {
    .video-container,
    .video-container video {
        width: 100%;
        height: 520px;
        object-fit: cover;
    }
}

.text-blinker {
    color: #85cb19;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        color: #100d96;
    }
}

.ank-column th,
.ank-column td {
    width: 30px !important;
}

.result-table.table-bordered .border-1 {
    border: 1px solid #e3e6f0 !important;
}

.result-table.table-bordered .border-t-1 {
    border-top: 1px solid #e3e6f0 !important;
}

.result-table.table-bordered .border-b-1 {
    border-bottom: 1px solid #e3e6f0 !important;
}

.result-table.table-bordered .border-e-1 {
    border-right: 1px solid #e3e6f0 !important;
}

.result-table.table-bordered .border-l-1 {
    border-left: 1px solid #e3e6f0 !important;
}
