/* custom cookie popup banner styles */

.custom-cookie-outer {
	position: fixed;
	top: 50%;
	left: 50%;
	background: #fff;
	box-shadow: 7.5px 0 7.5px rgba(0, 0, 0, .15);
	max-width: 280px;
	width: 100%;
	padding: 15px;
	text-align: center;
	color: #000;
	border: 1px solid rgb(171, 208, 55);
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 999999;
	-webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
	transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}

.custom-cookie-outer.show {
	opacity: 1;
	visibility: visible;
}

.custom-cookie-outer p:last-child {
	margin-bottom: 0;
}

.custom-cookie-outer a {
	color: inherit;
	text-decoration: underline;
}

.custom-cookie-outer a:hover {
	text-decoration: none;
}

.custom-cookie-outer .btn.btn-custom-cookie-accept.hs-text {
	margin-top: .9375rem;
	padding: .1875rem .625rem;
	font-size: .75rem;
	min-height: 1.875rem;
	min-width: 5.3125rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: none;
    margin-inline: 0;
    background: rgb(171, 208, 55);
    color: #fff;
}

.custom-cookie-outer .btn.btn-custom-cookie-accept:not(.hs-text) {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 20px;
	height: 20px;
	padding: 0;
	font-size: 7px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	cursor: pointer;
	min-width: 0;
	min-height: 0;
}

/* .custom-cookie-outer .btn.btn-custom-cookie-accept:not(.hs-text):not(.disabled):hover {
	background: #d2232a;
	border-color: #d2232a;
	color: #fff;
} */

.custom-cookie-outer .btn.btn-custom-cookie-accept:not(.hs-text) .icon-close {
	line-height: 0;
}

.custom-cookie-outer .btn-holder:has(.hs-text) {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    border-radius: 0 !important;
}

@media (min-width: 768px) {
    .custom-cookie-outer {
		left: 10px;
		bottom: 10px;
		top: auto;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		padding: 20px;
		box-shadow: 10px 0 10px rgba(0, 0, 0, .15);
		max-width: 320px;
	}

	.custom-cookie-outer .btn.btn-custom-cookie-accept.hs-text {
		padding: 5px 15px;
		font-size: 14px;
		margin-top: 20px;
		min-height: 40px;
		min-width: 120px;
	}

	.custom-cookie-outer .btn.btn-custom-cookie-accept:not(.hs-text) {
		top: -10px;
		right: -10px;
		width: 25px;
		height: 25px;
		font-size: 10px;
	}
}