/* COOKIE BANNER */

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 50%;
            padding: 20px;
            background-color: #5d5d5d;
            box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
			z-index:1000;
			margin: 250px 420px;
			border: solid 2px #E5E5E5;
        }

		@media screen and (max-width: 460px) {
		.cookie-banner {
			margin: 0px 0px;
	
		}}


        .cookie-banner button {
            margin: 5px;
            padding: 10px 20px;
            background-color: #000;
            color: white;
            border: none;
            cursor: pointer;
        }

        .cookie-banner button.reject {
            background-color: #333;
        }

        .reset-image {
            position: fixed;
            bottom: 10px;
            left: 10px;
            width: 40px;
            height: 40px;
            cursor: pointer;
        }
		@media screen and (max-width: 414px) {
		.cookie-banner {
			width: 100% !important;
			
		}}
		
		.cookie-bg {
		background: #000 !important;
		margin: 0 0 0em 0;
	
		}
		
		
/*COOKIE INFO*/

.cookie-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.cookie-lightbox.show {
  display: block;
}

.cookie-lightbox-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  overflow-y: auto;
  max-height: 90vh;
}

@media screen and (max-width: 460px) {
.cookie-lightbox-content {
    margin: 40% auto;
    max-width: 400px;
    width: 100%;
    position: relative;
}
}

.cookie-lightbox-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

.cookie-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 20px !important;
  background-color: #5d5d5d;
  font-size: 15px !important;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid #ccc !important;
  padding: 10px !important;
  text-align: left !important;
  vertical-align: top !important;
}

.cookie-table th {
  background-color: #5d5d5d !important;
}