:root {
    --bs-dark: #364156;
}

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

.th-white {
    font-size: 0.65rem;
    border-right: 1px solid rgb(120, 129, 142);
    color: rgb(255, 255, 255);
    text-align: left !important;
}

.digitGroup input {
    width: 30px;
    height: 40px;
    border: none;
    border-radius: 4px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    color: var(--bs-dark);
    margin: 0 2px;
    background-color: #DFDFDF;
}

.btn-custom{
    box-shadow: none !important;
    transition: all 0.3s ease-out;
}

.dt-info{
    padding-left: 0.5rem;
}

.digitGroup input:focus {
    outline: none;
    border-width: 2px;
    border-color: var(--bs-dark);
}

.digitGroup .splitter {
    padding: 0 5px;
    color: var(--bs-dark);
    font-size: 24px;
}

.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    /* or 100% if used inside another container */
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.circle {
    --circle-size: 40px;
    position: fixed;
    height: var(--circle-size);
    width: var(--circle-size);
    border: 1px solid white;
    border-radius: 100%;
    top: calc(var(--circle-size) / 2 * -1);
    left: calc(var(--circle-size) / 2 * -1);
    pointer-events: none;
    transition: all 0.1s ease-out;
}

.pulse{
    --circle-size: 60px;
}

.orbit-container{
    transition: width 0.2s ease-out, height 0.2s ease-out;
}

.table-custom-style{
    border-radius: 8px !important;
    overflow: hidden;
}

.dt-layout-cell.dt-end{
    padding: 0 !important;
}

.custom-scrollbar-hide {
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
}

.custom-scrollbar-hide::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

.custom-scrollbar-hide::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar-hide::-webkit-scrollbar-thumb {
    background: #7F7F7F;
    border-radius: 1rem;
    transition: background 0.3s ease;
}

.custom-scrollbar-hide::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

.custom-scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

.custom-scrollbar-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.bg-icon {
    background-color: var(--bs-icon-bg) !important;
}

.progress{
    transition: all 0.2s ease-in;
}

.fixed-plugin-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    transition: all 0.2s ease-out;
}


.digitGroup input.blink {
    box-shadow: 0 0 6px rgba(54,65,86,0.6), 0 0 10px rgba(54,65,86,0.4);
    animation: smoothOpacity 3s ease-in-out infinite;
}

@keyframes smoothOpacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


.digit-t{
    transition: all 0.2s ease-out;
}
















