.cookie-consent-overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
	width:890px;
	
    padding-top: 40px;
	@media (max-width: 1400px){
		width:750px
	}
	@media (max-width: 768px){
		width:calc(100% - 40px)
	}
	
	@media (max-height: 700px) {
		height: 100%;
		max-height: 532px;}
		
		@media (max-width: 600px){
		max-height: 100%;
		height: 100%;
	}
}

.cookie-consent-box {
    width: 60%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    padding: 25px;
    position: relative;
    overflow: auto;
	height:100%;
}
.cookie-consent-box .banner-title{
	font-size: 20px;
    margin-top:0;
	font-weight:bold;
	margin-bottom: 20px;
}
.cookie-consent-box p {
	font-size: 18px; 
	
	@media (min-width: 1400px){
		padding-right: 126px
	}
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    margin: 24px 0 0 0;
    //align-items: center;
	gap:24px;
	
}
.check-disabled { opacity:.6}

.cookie-option .sub-heading { display:block; margin-bottom:4px}

.cookie-buttons {
    display: flex;    
    margin-top: 24px;
	gap:24px;
}

.cookie-buttons .btn-primary {
    background: #0d6efd !important;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    cursor: pointer;
	
	font-family: gothammedium;
	text-transform: uppercase;
}

.cookie-buttons .btn-secondary {
    background: white !important;
    color: #0d6efd !important;
    border: 2px solid #0d6efd !important;
    border-radius: 25px;
    padding: 10px 25px;
    cursor: pointer;
	
	font-family: gothammedium;
	text-transform: uppercase;
}

.cookie-buttons .btn-primary:hover, 
.cookie-buttons .btn-secondary:hover  {background:#000050; color:#fff}

/* Toggle */

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background: #ccc;
    top:0;
    left:0;
    right:0;
    bottom:0;
    transition:.4s;
    border-radius:24px;
}

.slider:before{
    position:absolute;
    content:"";
    width:18px;
    height:18px;
    left:3px;
    bottom:3px;
    background:white;
    transition:.4s;
    border-radius:50%;
}

input:checked + .slider{
    background:#0d6efd;
}

input:checked + .slider:before{
    transform:translateX(22px);
}

/* .cookie-banner{ */
    /* position:fixed; */
    /* bottom:20px; */
    /* right:20px; */
	/* width:560px !important; */
	/* max-height:260px; */
    
    /* padding:25px; */
    /* z-index:999999; */
/* } */


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
	width:690px;
	border-radius:8px;
	box-shadow:0 10px 30px rgba(0,0,0,.25);
	padding:30px;
    
	background:#fff;
	overflow:auto;
	/* @media (max-width: 1400px){ */
		/* width:750px */
	/* } */
	@media (max-width: 768px){
		width:calc(100% - 40px)
	}
	
	 @media (max-height: 350px) { 
		 height: calc(100% - 40px); 
		 /* max-height: 532px;}  */
}
		/* @media (max-width: 600px){ */
		/* max-height: 100%; */
		/* height: 100%; */
	/* } */
}


.cookie-banner-content .banner-title{
	font-size: 20px;
    margin-top:0;
	font-weight:bold;
	margin-bottom: 20px;
}

.cookie-banner-content p{
	font-size:18px;
    line-height:1.4;
}
.cookie-banner-content a{
	cursor: pointer;
	text-decoration:underline
}
.cookie-banner-content a:hover{
	text-decoration: none;
	color: #3c3c3c;
	}



