@charset "UTF-8";

.no-scroll {
    overflow: hidden !important;
}
/*
:root{
    --g44-primary-color: #C2B697;
    --g44-secondary-color: #a3977a;
    --g44-white-color: #fff;
}
*/

.cookie-consent-container {
    border: none;
    padding: 0;
    background: none;
    position: fixed;
    z-index: 9999;
    outline: none;
    /* display: none; */
}

.cookie-consent-container.hidden {
    display: none;
}

.cookie-consent-container::backdrop {
    background-color: rgba(0, 0, 0, 0.35);
    transition: opacity .4s ease;
    backdrop-filter: blur(2px) contrast(100%);
    -webkit-backdrop-filter: blur(2px) contrast(100%);
}

.modal-overlay {
    display: none;
}

body .cookie-consent-banner-open {
    z-index: 9998;
    position: fixed;
    line-height: 1;
    left: 10px;
    bottom: 10px;
    opacity: .7;
    margin: 0;
    padding: 8px 8px !important;
    display: flex;
    align-items: center;
    background-color: var(--g44-primary-color) !important;
    border: 2px solid var(--g44-primary-color) !important;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s ease;
}

body .cookie-consent-banner-open svg {
    width:22px;
	height:auto;
    fill: var(--g44-white-color) !important;
}

body .cookie-consent-banner-open:hover {
    opacity: 1;
}

.cookie-consent-banner-open.hidden {
    transform: translateX(-50px);
    opacity: 0 !important;
    pointer-events: none;
}

.cookie-consent-banner {
    display: flex;
    outline: none;
    line-height: 1.3em;
    flex-direction: column;
    justify-content: flex-start;
    padding: 25px;
    box-sizing: border-box;
    /* width: calc(100% - 40px); */
    max-width: 770px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background-color: #fff;
    /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); */
    border-radius: 15px;
    font-family: inherit;
    color: var(--g44-black-color);
    margin: auto;
    transition: transform .4s ease, opacity .4s ease;
}

.cookie-consent-container.hidden .cookie-consent-banner {
    transform: translateY(50px);
    opacity: 0;
}

.cookie-consent-banner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 45px;
    margin: 0;
    width: 45px;
    padding: 5px !important;
    background: none;
    border: 0 !important;
    color: var(--g44-black-color);
    border-radius: 10px;
    cursor: pointer;
    line-height: 45px;
    transition: opacity .2s ease;
}
.cookie-consent-banner-close svg {
    width:35px;
	height:auto;
}

.cookie-consent-banner-close:hover {
    opacity: .5;
}

.cookie-consent-banner-close.hidden {
    display: none;
}

body .cookie-consent-banner h3 {
    font-size: 1.5em;
    line-height: 1.3em;
    font-weight: 400;
    margin: 0 0 .5em;
}

.cookie-consent-banner p {
    text-align: justify;
    margin: 0 0 .5em;
}

.cookie-consent-banner a{
	font-size:1em !important;
}

.cookie-consent-time {
    font-size: .75em;
    line-height: 1.3em;
    background-color: #eee;
    padding: 5px;
    margin-top: 0.5em;
    border-radius: 0;
}

.cookie-consent-banner .cookie-consent-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    margin-top: 1em;
    border: 1px solid #ccc;
    border-radius: 0;
    overflow: hidden;
}

.cookie-consent-banner label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    padding: 20px 10px;
    font-size: .9em;
    font-weight: 500;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
    margin: 0;
}

.cookie-consent-banner label:last-child {
    border-right: none;
}

.toggle input[type=checkbox] {
    appearance: none;
    /* display: grid; */
    position: relative;
    width: 4.5em;
    height: 2em;
    font-size: 16px !important;
    padding: 0.2em;
    border-radius: 1.5em !important;
    line-height: 1;
    background-color: #707070;
    cursor: pointer;
    margin: 0;
    box-sizing: content-box;
    transition: background .3s ease, box-shadow .3s ease;
}

.toggle input[type=checkbox]:hover {
    background-color: #559360;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.55);
}

.toggle input[type=checkbox]:after {
    content: "";
	background:url(images/x.svg) no-repeat;
	background-position:right center;
	background-size:contain;
    display: block;
    position: absolute;
    z-index: 1;
    width: 2.3em;
	height:1em;
    font-size: 2em;
    letter-spacing: .25em;
    color: #fff;
}
.toggle input[type=checkbox]:checked:after {
	background:url(images/check.svg) no-repeat;
	background-position:left center;
	background-size:contain;
}

.toggle input[type=checkbox]:before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 2em;
    height: 2em;
    background: #fff;
    border-radius: 1.5em;
    transition: transform cubic-bezier(.3, 1.5, .7, 1) .3s;
}

.toggle input[type=checkbox]:checked {
    background-color: #4cd964;
}

.toggle input[type=checkbox]:checked:before {
    transform: translateX(2.5em);
}

.toggle input[type=checkbox]:disabled {
    background-color: #7da083;
    box-shadow: none;
}

.cookie-consent-banner .cookie-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    margin-top: 25px;
    gap: 10px;
}

.cookie-consent-banner .cookie-consent-buttons button {
    padding: 15px 15px;
    margin: 0;
    flex-grow: 1;
    line-height: 1;
    font-size: 0.9em;
    letter-spacing: normal;
    text-transform: none;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    transition: all .2s ease;
}

.cookie-consent-banner .cookie-consent-buttons .button {
    background: var(--g44-primary-color);
    border: 2px solid var(--g44-primary-color);
    color: var(--g44-white-color);
}

.cookie-consent-banner .cookie-consent-buttons .button.outlined {
    background: #fff;
    border: 2px solid var(--g44-primary-color);
    color: var(--g44-primary-color);
}

.cookie-consent-banner .cookie-consent-buttons .button.reject-all {

}

.cookie-consent-banner .cookie-consent-buttons .button:hover {
    background: var(--g44-secondary-color);
    border: 2px solid var(--g44-secondary-color);
    color: var(--g44-white-color);
}



@media (max-width: 780px) {
    .cookie-consent-container {
        margin-bottom:0px;
        max-width: 100%;
    }
    .cookie-consent-banner {
        padding: 15px;
        width: 100%;
        max-width: none;
        border-radius: 0;
        bottom:0px;
    }

	.cookie-consent-banner-close svg {
		width: 30px;
		height: auto;
	}

    body .cookie-consent-banner h3 {
        font-size: 1.1em;
        margin: 0 0 .75em;
    }

    .cookie-consent-banner p{
        font-size: .8em !important;
    }

    .cookie-consent-banner label {
        font-size: .8em;
        padding: 10px;
    }

	.cookie-consent-banner .cookie-consent-options,
	.cookie-consent-banner .cookie-consent-buttons {
		margin-top: 15px;
	}
}

@media (max-width: 480px) {
    .cookie-consent-banner .cookie-consent-buttons button {
        flex-basis: 100%;
        padding: 12px;
    }
	
	#cookie-consent-btn-accept-all{
		padding:12px;
	}
	
	#cookie-consent-btn-reject-all{
		flex-basis:15%;
	}
	#cookie-consent-btn-accept-some{
		flex-basis:40%;
	}
}

@media (max-width: 460px) {
	body .cookie-consent-banner label {
		font-size: 0.6em;
		padding: 10px 0;
		gap: 3px;
		line-height: 1.1em;
	}
	body .toggle input[type=checkbox] {
		font-size: 8px !important;
	}
}