.cookieadmin_bottom {
	bottom: 20px;
}

.cookieadmin_top {
	top: 20px;
}

.cookieadmin_right {
	right: 15px;
}

.cookieadmin_left {
	left: 15px;
}

.cookieadmin_box {
	width: 25%;
	box-sizing: border-box;
	display: none;
}

.cookieadmin_notice_group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

.cookieadmin_center {
	top: 10%;
	left: 22%;
	max-width: 60vw;
}

.cookieadmin_side {
	flex-direction: column;
	position: fixed;
	width: 35vw;
	bottom: 0px;
	animation: .5s ease-out forwards cookieadmin_slideSide;
	max-height: 100vh;
	left: 0px;
	top: 0px;
	border-radius: 0px;
}

.cookieadmin_down {
	position: fixed;
	max-width: 100%;
	max-height: 55vh;
	bottom: 0px;
	animation: .5s ease-out forwards cookieadmin_slideUp;
}

.cookieadmin_modal_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 1000;
}

.cookieadmin_footer {
	left: 0px;
	padding: 15px;
	flex-wrap: wrap;
	width: 100%;
}

button.cookieadmin_re_consent {
	display: none;
	position: fixed;
	bottom: 15px;
	left: 15px;
	background-color: #374fd4;
	height: 50px;
	width: 50px;
	border-radius: 50% !important;
	cursor: pointer;
	border: 0px;
	z-index: 99999;
	padding: 5px !important;
	box-shadow: -4px 5px 10px rgba(0, 0, 0, .4);
	align-items: center;
	justify-content: center;
}

.cookieadmin-cookie-card {
	background: ghostwhite;
	border-radius: 10px;
	padding: 16px;
	font-family: "Open Sans", "Segoe UI", sans-serif;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
	margin: 10px auto;
	text-align: left;
}

.cookieadmin-cookie-header {
	display: flex;
	justify-content: space-between;
	font-size: 1rem;
	margin-bottom: 6px;
}

.cookieadmin-cookie-name {
	font-weight: bold;
	color: #333;
}

.cookieadmin-cookie-duration {
	font-size: .85rem;
}

.cookieadmin-cookie-duration > b {
	font-weight: bold;
}

.cookieadmin-cookie-description {
	font-size: .9rem;
	margin-bottom: 12px;
}

.cookieadmin-cookie-tags {
	display: flex;
	gap: 8px;
}

.cookieadmin-tag {
	background: #e0e0e0;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: .75rem;
	color: #333;
}

.cookieadmin-poweredby a img {
	height: 15px;
}

.cookieadmin_policy_link_box {
	display: flex;
	justify-content: space-around;
	font-size: 13px;
	flex-wrap: wrap;
}

.cookieadmin_modal_policy_link_box {
	display: flex;
	gap: 5px;
	font-size: 13px;
	flex-wrap: wrap;
}

@media (max-width: 767px) {
	.cookieadmin_center {
		top: 10%;
		left: 5%;
		max-width: 90vw;
	}
	
	.cookieadmin_side {
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.cookieadmin_box {
		width: 45%;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.cookieadmin_box {
		width: 35%;
	}
}

@media (min-width: 1200px) and (max-width: 1360px) {
	.cookieadmin_box {
		width: 30%;
	}
}

@media (min-width: 768px) {
	.cookieadmin_notice_group {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

@media (max-width:480px) {}