/* Show cookie banner btn */
.scc_show {
    position: fixed;
    z-index: 100;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--scc-theme-color);
    border-radius: 50%;
    border: 2px solid var(--scc-theme-color);
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	animation: all .4s ease-in;
}
.scc_show svg {
    fill: var(--scc-theme-color);
	width: 32px;
	height: 32px;
}
.scc_show:hover,
.scc_show:has(+ .scc_mask.active) {
    background: var(--scc-theme-color);
}
.scc_show:hover svg,
.scc_show:has(+ .scc_mask.active) svg {
    fill: #fff;
}
.scc_show:active {
    transform: scale(0.9);
}
@media (max-width: 767px) {
    .scc_show {
        bottom: 10px;
        left: 10px;
        width: 45px;
        height: 45px;
    }
    .scc_show svg {
        width: 30px;
        height: 30px;
    }
}
/* The mask */

.scc_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: 0.7s;
}

/* The Content */

.scc_modal {
    position: fixed;
    bottom: 0%;
    left: 50%;
    width: 900px;
    max-width: 80%;
    height: auto;
    max-height: 80%;
    background: #fff;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-out;
    transform: translateY(45px) translateX(-50%);
    overflow: auto;
    border-radius: 3px;
}

.scc_modal button:hover, 
.scc_modal button:focus,
.scc_show:focus {
    background-color: var(--scc-theme-color);
}

.scc_modal::-webkit-scrollbar {
    width: 5px;
}
 
.scc_modal::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
.scc_modal::-webkit-scrollbar-thumb {
    background-color: var(--scc-theme-color);
    outline: 1px solid var(--scc-theme-color);
}
.scc_banner {
    box-sizing: border-box;
    padding: 20px;
    width: auto;
    height: auto;
}
@media (max-width: 767px) {
    .scc_banner {
        padding: 25px 0;
    }
}
.scc_banner_content, .scc_tab {
    font-size: 14px;
}
.scc_banner_header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    gap: 15px;
    padding: 0 20px;
}
.scc_banner_header h2 {
    margin-bottom: 0px;
    font-size: 26px;
}
@media(max-width: 767px) {
    .scc_banner_header h2 {
        font-size: 24px;
    }
}
.scc_shortcut_buttons,
.scc_banner_footer,
.scc_banner_content {
    padding: 20px;
}
.scc_banner_footer {
    background: #f4f4f4;
    margin-top: 20px;
}

.scc_tabs {
	display: flex;
	flex-wrap: wrap;
}
.scc_tabs label.scc_tab_label {
	order: 1;
	display: flex;
    flex: 0 1 auto;
    white-space: nowrap;
    align-items: center;
    gap: 7px;
	padding: 10px 25px;
    border-right: 1px solid #fff;
	cursor: pointer;
    background: var(--scc-tabs-theme-color);
    font-size: 12px;
    font-weight: bold;
    transition: background ease 0.2s;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media(min-width: 768px) and (max-width: 992px) {
    .scc_tabs label.scc_tab_label {
        padding: 10px 20px;
    }
}
.scc_tabs label.scc_tab_label svg {
    width: 20px;
    height: auto;
}
@media(min-width: 768px) {
    .scc_tabs label.scc_tab_label svg {
        display: none;
    }
}
.scc_tabs .scc_tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    border-top: 1px solid var(--scc-tabs-theme-color);
    padding: 20px 0;
}
.scc_tabs .scc_tab a {
    color: var(--scc-tabs-theme-color);
    text-decoration: underline;
    font-weight: 600;
}
.scc_tabs input.scc_tab_radio {
	display: none;
}
.scc_tabs input.scc_tab_radio:checked + label.scc_tab_label {
	background: #fff;
    color: #000;
}
.scc_tabs input.scc_tab_radio:checked + label.scc_tab_label + .scc_tab {
	display: block;
}

@media (max-width: 767px) {
    .scc_tabs .scc_tab,
    .scc_tabs label.scc_tab_label {
        order: initial;
    }
    .scc_tabs label.scc_tab_label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}

.scc_btn {
    border: 0;
    padding: 15px 30px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    background-color: var(--scc-theme-color);
    color: #fff;
    text-decoration: none;
}
.scc_btn:hover {
    color: #fff;
}
.scc_allow_all,
.scc_allow_all:hover {
    color: var(--scc-allow-button-text-color);
}
.scc_deny_all,
.scc_deny_all:hover {
    color: var(--scc-deny-button-text-color);
}
.scc_allow_all.filled {
    background-color: var(--scc-allow-button-color);
    border: 2px solid var(--scc-allow-button-border-color);
}
.scc_allow_all.outline {
    border: 2px solid var(--scc-allow-button-border-color);
    background-color: transparent;
}
.scc_deny_all.filled {
    background-color: var(--scc-deny-button-color);
    border: 2px solid var(--scc-deny-button-border-color);
}
.scc_deny_all.outline {
    border: 2px solid var(--scc-deny-button-border-color);
    background-color: transparent;
}
.policies_links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 20px;
    gap: 20px;
}
@media (max-width: 767px) {
    .policies_links {
        align-items: flex-start;
    }
    .policies_links a {
        font-size: 10px;
    }
}
.scc_link {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: underline;
}
.scc_link.with_icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
@media (max-width: 767px) {
    .scc_link.with_icon {
        padding-bottom: 20px;
    }
}
.scc_link.with_icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    transform: rotate(0deg);
    transition: transform .4s ease-in;
}
.scc_link.with_icon.active svg {
    transition: transform .4s ease-in;
    transform: rotate(180deg);
}

.scc_link:hover {
    text-decoration: underline;
}
  
.scc_mask.active {
    visibility: visible;
    opacity: 1;
}
  
.scc_mask.active + .scc_modal {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}

.scc_shortcut_buttons {
    display: flex;
    gap: 30px;
    justify-content: start;
    align-items: baseline;
    padding-top: 0;
    padding-bottom: 0;
}
@media (max-width: 767px) {
    .scc_shortcut_buttons {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

.scc_cookie_options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.scc_cookie_options input{
    display: none;  
}
.scc_cookie_options .scc_cookie_option {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.scc_cookie_options .scc_cookie_title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
}
.scc_cookie_options span {
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 15px;
    margin: 16px 0 0;
}
.scc_cookie_options label {
    width: 52px;
    height: 26px;
    box-sizing: border-box;
    border: 2px solid;
    float: left;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: .3s ease;
}
.scc_cookie_options input[type=checkbox]:checked + label {
    background: var(--scc-tabs-theme-color);
}
.scc_cookie_options input[type=checkbox]:checked + label:before {
    left: 28px;
}
.scc_cookie_options label:before {
    transition: .3s ease;
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    background: white;
    left: 4px;
    top: 3px;
    box-sizing: border-box;
    border: 2px solid;
    color: black;
    border-radius: 100px;
}

.scc_save {
    background-color: var(--scc-tabs-theme-color);
}


/* Close Button */
.scc_save_btn_wrap {
    display: flex;
}
@media (max-width: 767px) {
    .scc_save_btn_wrap {
        margin-top: 20px;
    }
}
.scc_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 30px;
    background: var(--scc-theme-color);
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}