/***************PAGE****************/
:root {
    --color-bg-status-0: #388afd99;
    --color-bg-status-1: #73af5599;
    --color-bg-status-2: #ff343499;
    --color-bg-status-3: #ffc10799;
    --color-status-0: #2f81f7;
    --color-status-1: #578541;
    --color-status-2: #da0000;
    --color-status-3: #ff8b07;
}

#content,
#list-match,
#delta-page-body {
    height: 100%;
}

#page-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#filter-container {
    height: 100%;
    width: 35%
}

#results-container {
    height: 100%;
    width: 65%;
}

/***********FILTER REGION***********/

#select-region {
    /*     height: 30%;
 */
}

/* select first level */
#select-region .region {
    padding-left: 15px;
}


/* select second level */
#select-region .division {
    padding-left: 30px;
}

/* select third level */
#select-region .state {
    padding-left: 45px;
}


#select-region .disabled:hover {
    cursor: not-allowed;
}

.form-group {
    display: flex;
    margin-bottom: 15px !important;
}

.dropdown-select.wide {
    width: 100% !important;
}

/**********POP UP DISABLED***********/
.popup {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1;
}

#select-region .disabled {
    pointer-events: visible !important;
}

/************************************/

/* #basic-data-table_wrapper button {
    display: none;
} */


.stuck-warning {
    /* do a better style for a transparent orange box */
    background-color: var(--color-bg-status-3);
    padding: 10px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    z-index: 1;
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-status-3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

/***********BLUR***********/
.even-hidden {
    filter: blur(4px);
    /* make the text unselectable */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#premiumPopup {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 200px;
    /* Set the width according to your content */
    transition: all 0.3s ease-in-out;
}

#buyPremiumBtn {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

#buyPremiumBtn:hover {
    background-color: #45a049;
}

/************************************************/

#progress-checkmark {
    width: 5vh;
    height: 5vh;
}


/*********************************************************/
/********************ANIMATED TICK************************/
/*********************************************************/

.animated-checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}

.animated-checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}

.animated-checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none
    }

    50% {
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142
    }
}

/*********************************************************/

.dt-button {
    padding: 10px;
}