/* Cookie MSG */
.cookie__msg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: black;
    display: none;
    z-index: 100;
    border-top: 1px solid black;
}

.cookie__msg p {
    margin: 0;
    color: white;
    text-align: center;
    font-size: 13px;
}

.cookie__msg button {
    border: none;
    font-size: 13px;
    color: #fff;
    padding: 6px 20px;
    border-radius: 2px !important;
}

.cookie__msg button:hover {
    color: black;
    background: white !important;
}

.cookie_msg_disable {
    display: none !important;
    /* opacity: 0.5; */
}

/* Cookie MSG */

/*  COOKIE POP   */
#cookie-pop .modal-content {
    max-width: 850px;
}

#cookie-pop .modal-dialog {
    max-width: 850px;
}

#cookie-pop .modal-header .logo img {
    height: 40px
}

#cookie-pop .powered-by p {
    color: #999;
    font-size: 12px;
}

#cookie-pop .main-tabs {}

#cookie-pop .main-tabs ul {
    display: flex;
    justify-content: space-between;
    padding-left: 0;
}

#cookie-pop .main-tabs ul li {
    text-align: center;
    width: 100%;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e9ecef;
    transition: ease all 0.1s;
}

#cookie-pop .modal-body {
    padding: 6px 0;
    min-height: 250px;
}

#cookie-pop .main-tabs ul li:hover {
    border-color: #1032CF;
    color: #1032CF;
    border-width: 3px;
}

#cookie-pop .modal-header {
    padding-bottom: 22px;
    /* background: black; */
}

#cookie-pop .cookie-footer ul {
    display: flex;
}

#cookie-pop .cookie-footer ul li button {
    width: 100%;
    border: 2px solid #1032CF;
    background: transparent;
    border-radius: 3px;
    height: 55px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
}

#cookie-pop .cookie-footer ul {
    display: flex;
    justify-content: space-around;
}

.cookie-footer {
    padding: 8px 20px;
}

#cookie-pop .cookie-footer ul li {
    width: 100%;
}

#cookie-pop .cookie-footer ul li:nth-child(2) {
    margin: 0 5px;
}

#cookie-pop .cookie-footer ul li:nth-child(3) {
    background: #1032CF;
    font-weight: 600;
}

#cookie-pop .cookie-footer ul li:nth-child(3) button {
    color: #ffffff;
}

#cookie-pop .main-tabs ul li.active {
    border-color: #1032CF;
    color: #1032CF;
    border-width: 3px;
}

#cookie-pop .tabs-body .tabs {
    display: none;
}

#cookie-pop .tabs-body .tabs.active {
    display: block;
}

#cookie-pop .tabs-body {
    padding: 16px 35px;
    padding-top: 25px;
}

#cookie-pop .tabs-body p {
    font-size: 14px;
    line-height: 24px;
    color: #888;
    font-family: Roboto, sans-serif;
}

#cookie-pop .tabs-body h6 {
    margin-bottom: 8px;
}

/* CHECKBOXES */
:root {
    --body: #fafafa;
    --text-default: #1d1d1f;
    --text-secondary: #86868b;
}

@media (prefers-color-scheme: light) {
    :root {
        --body: #fafafa;
        --text-default: #1d1d1f;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --body: #161616;
        --text-default: #f5f5f7;
    }
}

/* Checkbox Styles */
.checkbox_buttons input[type="checkbox"] {
    -webkit-appearance: none;
    outline: none;
    position: relative;
    height: 40px;
    width: 75px;
    border: 3px solid var(--body);
    border-radius: 2.5rem;
    cursor: pointer;
    box-shadow: 9px 9px 16px rgba(189, 189, 189, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5), inset 10px 10px 15px -10px #c3c3c3, inset -10px -10px 15px -10px #fff;
    /* Toggle Indicator */
    /* Label */
    /* Checked Styles */
}

@media (prefers-color-scheme: light) {
    .checkbox_buttons input[type="checkbox"] {
        box-shadow: none;
        background: #a0a0a0;
    }
}

@media (prefers-color-scheme: dark) {
    .checkbox_buttons input[type="checkbox"] {
        box-shadow: -8px -4px 8px 0px rgba(255, 255, 255, 0.05), 8px 4px 12px 0px rgba(0, 0, 0, 0.5), inset -4px -4px 4px 0px rgba(255, 255, 255, 0.05), inset 4px 4px 4px 0px rgba(0, 0, 0, 0.5);
    }
}

.checkbox_buttons input[type="checkbox"]::before {
    content: "";
    height: 25px;
    width: 25px;
    background-color: var(--body);
    position: absolute;
    margin: auto;
    top: 0;
    left: 4px;
    bottom: 0;
    border-radius: 50%;
    box-shadow: 7px 7px 15px #c3c3c3, 9px 9px 16px rgba(189, 189, 189, 0.6);
    transition: 0.15s;
}

@media (prefers-color-scheme: light) {
    .checkbox_buttons input[type="checkbox"]::before {
        box-shadow: none;
        background: #ebebeb;
    }
}

@media (prefers-color-scheme: dark) {
    .checkbox_buttons input[type="checkbox"]::before {
        box-shadow: -8px -4px 8px 0px rgba(255, 255, 255, 0.05), 8px 4px 12px 0px rgba(0, 0, 0, 0.5);
    }
}

.checkbox_buttons input[type="checkbox"]::after {
    content: "Off";
    position: absolute;
    font-size: 15px;
    top: 6px;
    color: #f5f5f7;
    font-family: "SF Pro Text", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    letter-spacing: 0.004em;
    left: 36px;
}

.checkbox_buttons input[type="checkbox"]:checked {
    background: #0071e3;
}

@media (prefers-color-scheme: light) {
    .checkbox_buttons input[type="checkbox"]:checked {
        box-shadow: 9px 9px 16px rgba(189, 189, 189, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5), inset 10px 10px 15px -10px #1032CE, inset -10px -10px 15px -10px #0047b9;
    }
}

.checkbox_buttons input[type="checkbox"]:checked::before {
    box-shadow: none;
    right: -31px;
}

.checkbox_buttons input[type="checkbox"]:checked::after {
    content: "On";
    left: 12px;
    color: #f5f5f7;
    top: 6px;
}

.checkbox_buttons ul {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.checkbox_buttons li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #e9ecef;
    padding: 12px 0;
}

.radio_wrapper label {
    font-weight: 500;
}

.checkbox_buttons input[type="checkbox"]:checked:before {
    background: #ffffff;
}

div#actions ul {
    list-style-type: disclosure-closed;
    margin-left: 15px;
    margin: 0;
    padding-left: 0 !important;
}

div#actions ul li {
    color: #888;
    font-size: 15px;
    padding-bottom: 11px;
}

div#actions ul li {
    color: #888;
    font-size: 15px;
    padding-bottom: 10px;
}

#cookie-pop .accordion-header button {
    color: #000;
    font-weight: 600;
    padding: 15px 20px !important;
    background: #f0f0f8;
    font-size: 17px;
    width: 100%;
    text-align: left;
    position: relative;
    padding-bottom: 6px;
    box-shadow: none;
    border-radius: 0;
}

#cookie-pop .accordion-header {
    border-bottom: 0;
    background-color: rgb(255 255 255 / 3%);
}

#cookie-pop .accordion-body {
    font-size: 14px;
    color: #888;
}

#cookie-pop .accordion-header button:before {
    border-style: solid;
    border-width: 0.15em 0.15em 0 0;
    content: "";
    display: inline-block;
    height: 0.5em;
    margin-right: 1.875em;
    position: relative;
    top: 20px;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 0.5em;
    position: absolute;
    right: -10px;
}

#cookie-pop .accordion-header button.collapsed:before {
    transform: rotate(-225deg);
}

.radio_wrapper.nes input[type="checkbox"]::before {
    box-shadow: none;
    background: #ebebeb;
}

.radio_wrapper.nes input[type="checkbox"]:checked:after {
    left: 9px;
}

#cookie-pop .accordion-header button:after {
    display: none;
}

.radio_wrapper.nes input[type="checkbox"] {
    box-shadow: none;
    background: #a0a0a0;
    cursor: not-allowed;
}

.radio_wrapper.nes input[type="checkbox"]::after {
    color: #f5f5f7;
    content: "On";
    left: 11px;
}

.radio_wrapper.nes input[type="checkbox"]:before {
    right: -33px !important;
}

#cookie-pop .cookie-footer ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none;
}

#cookie-pop .card-header .btn {
    animation: none;
    position: relative;
}

#cookie-pop .card-header .btn::before {
    content: "\f068";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 20px;
}

#cookie-pop .card-header .collapsed.btn::before {
    content: "\f067";
}

#cookie-accordionSt1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#cookie-pop .accordion-item {
    border: none;
    border-radius: 0 !important;
}

@media(max-width: 490px) {

    #cookie-pop .main-tabs ul li,
    .checkbox_buttons,
    .cookie-footer ul li:nth-child(2) {
        display: none;
    }

    #cookie-pop .tabs-body {
        padding-top: 0;
    }

    #cookie-pop .cookie-footer ul li button {
        height: 34px;
        font-size: 13px;
    }

    #cookie-pop .modal-header .logo img {
        width: 135px;
    }

    .powered-by img {
        width: 73px;
    }

    #cookie-pop .powered-by p {
        font-size: 9px;
    }

    #cookie-pop .tabs-body p {
        font-size: 13px;
        line-height: 21px;
    }

    #cookie-pop .modal-header {
        padding: 0 36px;
        padding-top: 26px;
    }
}

/*  COOKIE POP   */