	@media (min-width: 1200px) {
    	.container {
        	max-width: 1140px;
    	}
	}

	  .cookie-banner  .container {
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	  }
	  
	  .cookie-banner h3 {
		  /*font-size: 24px;
		  line-height: 32px;*/
		  font-size: 20px;
		  line-height: 28px;
		  font-weight: 700;
		  font-style: normal;
	      margin-bottom: .5rem;
	  }
	  
.cookie-banner p {
    /*line-height: 26px;*/
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 1rem !important;
	width: 75%;
}

@media (min-width: 768px) {
    .align-items-md-center {
        -ms-flex-align: center!important;
        align-items: center !important;
    }
}
@media (min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction: row!important;
        flex-direction: row !important;
    }
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex !important;
}

	  .text-white {
		color: #fff !important;
	  }
	  .cookie-banner {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		border-top: 7px solid #fff;
		background-color: rgba(0,0,0,0.7);
		/*padding: 30px 0;*/
		padding: 16px 0;
	  }

	  .cookie-banner p {
		line-height: 26px;
		margin-bottom: 1rem !important;
		font-family: "Poppins", Arial, sans-serif;
	  }

	  .cookie-banner p a {
		text-decoration: underline;
	  }

	  .cookie-banner .btn {
		font-family: "Poppins", Arial, sans-serif;
		font-size: 13px;
		font-weight: normal;
		padding: 12px 24px;
	  }

	  .cookie-banner .btn-primary {
		background-color: #005b92;
		border-color: #00847F #00847F #006699;          
		border-radius: 0.25rem;
	  }
	  .cookie-banner .btn-primary:hover {
		background-color: #00a1f2;
	  }
	  .cookie-banner .btn-link,
	  .cookie-banner .btn-link:hover {
		color: #fff;
	  }
	  .modal-content {
		font-family: "Poppins", Arial, sans-serif;
	  }
	  .modal-body a {
		text-decoration: underline;
	  }
	  .modal-content a:hover {
		text-decoration: none;
	  }
	  .modal-backdrop {
		z-index: 2500;
	  }
	  
@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}
.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important;
}
	  
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
	overflow: scroll;
}

.modal-dialog {
    position: relative;
    width: 90%;
    max-width: 650px;
    background: #fff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    animation: modalFade .25s ease;
	top: 125px;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.modal-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #b38b59;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}


.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
	
	text-decoration: none;

    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}