.cookie-popup {
			position: fixed;
			z-index: 99999;
			bottom: 0;
			left: 0;			
			overflow: auto;
			padding: 24px;
			max-height: 100vh;
			max-width:  740px;
		}

		@media (max-width:1439.98px) {
			.cookie-popup {
				padding: 10px;
			}
		}

		.cookie-content {
			width: 100%;
			padding: 20px;
			border-radius: 10px;
			box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.5);
			background: #EDEDED;
		}

		@media (min-width:991.98px) {
			.cookie-content {
				display: flex;
			}
		}

		.cookie-icon {
			width: 98px;
			height: 98px;
			object-fit: contain;
			flex-shrink: 0;
			margin-right: 23px;
			margin-bottom: 0px;
		}

		@media (max-width: 1439.98px) {
			.cookie-icon {
				margin-right: 15px;
				width: 70px;
				height: 70px;
			}
		}

		@media (max-width: 991.98px) {
			.cookie-icon {
				margin-right: 0px;
				margin-bottom: 10px;
			}
		}

		.cookie-text {
			flex-grow: 1;
		}

		.cookie-text p {
			
			font-weight: 400;
			font-size: 13px;
			line-height: 1.6;
			color: #000;
			margin: 0;
		}

		.cookie-text p strong {
			font-weight: 700;
			color: #fff;
			display: inline-block;
			margin-bottom: 5px;
		}
		.cookie-text p a  {
			color: #00A7DA;
			text-decoration:  underline;
		}

		.cookie-buttons {
			display: flex;
			flex-direction: column;
			width: 100%;
		}

		@media (min-width:991.98px) {
			.cookie-buttons {
				max-width: 185px;
				margin-left: 30px;
			}
		}

		@media (min-width:991.98px) and (max-width: 1439.98px) {
			.cookie-buttons {
				max-width: 220px;
			}
		}

		@media (max-width: 991.98px) {
			.cookie-buttons {
				margin-top: 10px;
			}
		}

		.cookie-btn {
			display: flex;
			align-items: center;
			justify-content: center;
			font-family: "Open Sans", sans-serif;
			font-weight: 600;
			font-size: 14px;
			background-color:  #fff;
			letter-spacing: 0.03em;			
			border-radius: 5px;
			min-height: 40px;
			cursor: pointer;
			border:  none;
			outline:  none;
		}
		.cookie-btn:hover  {
			background: #00A7DA;
			color: #fff;
			text-decoration:  none;
		}

		@media (max-width:1439.98px) {
			.cookie-btn {
				font-size: 14px;
			}
		}

		@media (any-hover: hover) {
			.cookie-btn:hover {
				opacity: 0.9;
			}
		}

		.cookie-btn.accept {
			background: #00A7DA;
			color: #fff;
			margin-bottom: 10px;
			border:  none;
		}

		.settings {
			
			color: #000;
			text-decoration: none;
			text-align: center;
		}