/* Navbar container */
.new_navbar {
    overflow: hidden;
    background-color: #000;
    z-index: 160;
}

/* Links inside the navbar */
.new_navbar a {
    float: right;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 20px 16px;
    text-decoration: none;
    font-weight: 500;
}

/* The dropdown container */
.dropdown_container {
    float: right;
    overflow: hidden;
}

/* Dropdown button */
.dropdown_container .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 20px 16px;
    background-color: inherit;
    font-weight: 500;
    /* Important for vertical align on mobile phones */
    margin: 0;
    /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.new_navbar a:hover,
.dropdown_container:hover .dropbtn {
    background-color: #12d813;
    color: #000;
}

/* Dropdown content (hidden by default) */
.dropdown_content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

/* Links inside the dropdown */
.dropdown_content a {
    background: black;
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin-bottom: 1px;
    display: flex;
    font-weight: 500;
}

.dropdown_content a.disabled {
    color: grey;
    pointer-events: none;
}

/* Add a grey background color to dropdown links on hover */
.dropdown_content a:hover {
    background-color: red;
}

.dropdown_content a .menu-link-date {
    width: 100px;
}

/* Show the dropdown menu on hover */
.dropdown_container:hover .dropdown_content{
    display: block;
}

.red {
    color: red;
}
#countdown {
    position: relative;
    z-index: -1;
}
#countdown:before {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
    border: solid 2px #12d813;
}
.content-wrapper.c-alt {
    background-color: #d5d8df;
}
.number-style {
    background-color: #12d813;
    display: flex;
    aspect-ratio: 1;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #000;
    margin-right: 20px;
    flex: 0 0;
    flex-basis: 40px;
}
b {
    font-weight: 900 !important;
}

.locked {
    pointer-events: none;
}
script + span.locked {
    pointer-events: none;
}
script + span.locked::after {
    font-family: 'FontAwesome';
    content: '\f023';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000a;
    z-index: 22;
    color: #fff;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-check-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    font-family: 'Lato', Arial, sans-serif;
}