:root {
	--cookieadmin-primary-color: #001d39;
	--cookieadmin-primary-hover-color: #985e23;
	
	--cookieadmin-secondary-color: #0046b2;
	--cookieadmin-secondary-hover-color: #0065ff;
	
	--cookieadmin-txcolor: #0f172a;
	
	--cookieadmin-green-txtcolor: #3a8356;
	--cookieadmin-warning-txtcolor: #9c7930;
	--cookieadmin-red-txtcolor: #b55355;
	
	--cookieadmin-green-color: #15a448;
	--cookieadmin-warning-color: #e9b306;
	--cookieadmin-red-color: #dd2727;
}

/* Header */
.cookieadmin-metabox-holder{
	background-color: #ffffff;
	padding: 10px;
	margin-top:20px;
	min-height: 90vh;
	display: flex;
	flex-direction: column;
}

/* Footer */
.cookieadmin-twitter{
	border: 1px solid #E2E8F0;
	padding: 10px;
	border-radius: 1px;
	width:40%;
	background:#FFF;
	padding:15px;
	margin:auto;
}

.cookieadmin-footer{
	padding: 10px;
}

.cookieadmin-twitter > span{
	font-size:16px;
	font-weight:600;
}

.cookieadmin-twitter > input{
	margin-top:10px;
	float:right;
}

/* Buttons */
.cookieadmin-btn{	
display: inline-flex;
outline: 0;
text-align: center;
cursor: pointer;
padding: 5px 10px 6px 10px;
border-radius: 3px;
border: 1px solid transparent;
transition: background .3s ease, border-color .3s ease;
font-weight: 600;
font-size: 13px;
text-decoration: none;
gap: 8px;
align-items:center;
justify-content:center;
}

.cookieadmin-btn-primary{
background: var(--cookieadmin-primary-color);
border-color: var(--cookieadmin-primary-color);
color: #fff;
}

.cookieadmin-btn-primary:hover{
background: var(--cookieadmin-primary-hover-color);
border-color: var(--cookieadmin-primary-hover-color);
}

.cookieadmin-btn-secondary{
background: var(--cookieadmin-secondary-color);
border-color: var(--cookieadmin-secondary-color);
color: #fff;
}

.cookieadmin-btn-secondary:hover{
background: var(--cookieadmin-secondary-hover-color);
border-color: var(--cookieadmin-secondary-hover-color);
}

.cookieadmin-btn-transparent{
background-color:transparent;
color: currentcolor;
}

.cookieadmin-btn-transparent:active{
	outline:0;
}

/* Buttons End */

/* Dashboard Overview page css */

.cookieadmin-postbox-container{
	flex:1;
}

.cookieadmin-postbox-container h2{
	display: flex;
	align-items: center;
	gap:10px;
	padding: 0 0 15px 0;
	border-bottom: 1px solid #e0e0e0;
	font-size:1.3rem;
	line-height:2rem;
}

.cookieadmin-uppercase{
text-transform: uppercase;
}

.cookieadmin-admin-row{
display:flex;
gap: 10px;
margin-bottom: 20px;
}

.cookieadmin-admin-row .cookieadmin-is-block{
border: 1px solid #E2E8F0;
padding: 10px;
width: 100%;
border-radius:1px;
}

.cookieadmin-admin-row .cookieadmin-is-block-25{
border: 1px solid #E2E8F0;
padding: 10px;
width: 25%;
border-radius:1px;
}

.cookieadmin-stats-name{
margin-bottom:5px;
font-size:16px;
font-weight:600;
}

.cookieadmin-stat-status-indicator{
border-radius:50%;
width: 12px;
height:12px;
background-color: #e2e2e2;
margin-right: 10px;
}

.cookieadmin-stats-number{
font-size:1.5rem;
line-height:2.5rem;
}

.cookieadmin-block-link{
display:inline-flex;
font-size: 12px;
font-weight:400;
color: blue;
cursor:pointer;
}

.cookieadmin-block-link > a{
text-decoration:none;
}

.cookieadmin-green{
color: var(--cookieadmin-green-color);
}

.cookieadmin-red{
color: var(--cookieadmin-red-color);
}

.view_column {
	float: left;
	width: 25%;
	padding: 0 15px;
	box-sizing: border-box;
}

/* Clear floats after the columns */
.view_row:after {
	content: "";
	display: table;
	clear: both;
}

.view_row{
	margin: 15px 0px;
}

/* Style the counter cards */
.card {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	text-align: center;
	background-color: #9ec1c0;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	margin: 5px;
	min-width: 220px;
}

.view_icon {font-size:50px;}

/* Dashboard Overview page css End */


/*  Consent page css */

.cookieadmin-postbox-container { 
	max-width: 92vw;
	float: unset;
	margin: 10px;
}

label, input {
	padding: 5px;
	margin-right: 5px;
	font-size: 15px;
}

label{
	font-weight: 501;
}

.cookieadmin_bottom{
	bottom:20px;
}

.cookieadmin_top{
	top: 20px;
}

.cookieadmin_right{
	right: 15px;
}

.cookieadmin_left{
	left:15px;
}

.hide{
	display:none;
}

.title{
	text-align: center;
	color: black;
	font-weight: 600;
	font-size: 20px;
	margin: 2px;
}

/* Modal animations  */
@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideSide {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* Modal animations Ends */

.cookieadmin_consent-header{
	display: flex;
	background: #12625f4d;
	color: black;
	padding: 12px;
	box-sizing: border-box;
	margin: 4px;
	align-items: center;
	justify-content: space-between;
}

.cookieadmin_consent-contents {
	display: flex;
	margin: 0px 5px;
}

.cookieadmin_consent_settings {
	display: flex;
	width: 100%;
	flex-direction: column;
	background: #ffffff;
	/*margin-left: -3px;*/
}

.law {
	padding: 20px;
	background: aliceblue;
	margin: 10px;
	height: fit-content;
	font-size: 14px;
	font-family: sans-serif;
}

.cookieadmin-contents {
	width: 100%;
}

.cookieadmin-setting {
	display: flex;
	padding: 6px 0px;
	justify-content: flex-start;
}

.cookieadmin-setting-head {
	width: 100%;
	padding: 5px;
	align-content: center;
}

.cookieadmin-setting-contents {
	align-items: baseline;
	padding: 5px;
	margin: 5px;
}

.cookieadmin-setting-results {
	align-items: baseline;
	padding: 5px;
	margin: 5px;
	width: 80%;
}

input[type="color"] {
	border: 0px;
	padding: 0px;
	margin: 0px;
}

.cookieadmin-color-holder{
	max-width: 110px;
}

.cookieadmin-title {
	font-size:16px;
	font-weight:600;
	padding: 10px;
	margin: 5px;
	min-width: 15%;
}

.cookieadmin-color-input{
	border: 1px solid;
	margin: 0px;
	margin-left: -8px;
	max-width: 75%;
}

.cookieadmin-vertical{
	display: flex;
	flex-direction: column;
	margin: 2px 30px 2px 0px;
}

.cookieadmin-horizontal{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.cookieadmin-input{
	padding-right: 20px;
}

.cookieadmin-collapsible-notice{
	padding: 9px;
	display: none;
	background-color: #ffffc6;
	font-size: 14px;
	border-radius: 4px;
	max-width: fit-content;
	margin: auto;
}

.cookieadmin-collapsible-notice:before{
	content: "\1F6C8  ";
}

.cookieadmin-policy-gens{
	justify-content: space-evenly;
}

.cookieadmin-cookie-scan, .cookieadmin-consent-logs{
	justify-content: end;
}

.cookieadmin-setting-colors{
	justify-content: space-between;
}

.cookieadmin-buttons{
	flex: auto;
	justify-content: space-between;
	margin: 5px;
}

.cookieadmin-button{
	padding: 5px;
	row-gap: 5px;
}

.cookieadmin-button-color{
	justify-content: space-between;
	min-width: 34%;
}


/* Dashboard Consent page css End*/


/* Website consent box  */

.cookieadmin_law_container{
	position: fixed;
	width: 330px;
	box-sizing: border-box;
	z-index: 99999;
	display: none;
}

.cookieadmin_consent_btns{
	align-content: center;
	display: flex;
	justify-content: space-evenly;
}

.cookieadmin_box{
	/*position: fixed;*/
	width: 330px;
	box-sizing: border-box;
	display: none;
}

.cookieadmin_notice_group{
	display: flex;
}

.cookieadmin_popup{
	position: fixed;
	width: 330px;
	box-sizing: border-box;
	z-index: 9999999;
	display: none;
}

.cookieadmin_consent_inside{
	color: black;
	background-color: #FFFFFF;
	border: 1px solid #f4f4f4;
	padding:15px;
	border-radius: 4px;
	box-shadow:1px 3px 10px rgba(0, 0, 0, 0.2);
}

#cookieadmin_notice_title{
	font-weight: 601;
	margin: 0px;
	padding-left: 5px;
}

.cookieadmin_notice_con{
	font-size: initial;
	padding: 0px 6px;
	flex: 1;
}

.cookieadmin_cookie_modal{
	display: none;
	flex-direction: column;
	position: fixed;
	max-height: 80vh;
	background-color: #FFFFFF;
	border: 1px solid #F4F4F4;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	z-index: 999999;
}

.cookieadmin_center{
	top: 10%;
	left: 22%;
	max-width: 60vw;
}

.cookieadmin_side{
	flex-direction: column;
	position: fixed;
	width: 35vw;
	bottom: 0px;
	animation: 0.5s ease-out forwards slideSide;
	max-height: 100vh;
	left: 0px;
	top: 0px;
	border-radius: 0px;
}

.cookieadmin_down{
	position: fixed;
	max-width: 100%;
	max-height: 55vh;
	bottom: 0px;
	animation: 0.5s ease-out forwards slideUp;
}

.cookieadmin_modal_overlay{
	display: none; 
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); 
	z-index: 1000;
}

.cookieadmin_mod_head{
	display: flex;
	justify-content: space-between;
}

.cookieadmin_mod_head, .cookieadmin_wrapper{
	padding: 20px;
	border-bottom: 1px solid #F4F4F4;
}

.cookieadmin_close_pref{
	background: none;
	border: none;
	align-self: baseline;
	color: gray;
	cursor: pointer;
}

.cookieadmin_preference_title{
	font-size: 20px;
	font-weight: 801;
}

.preference_details{
	padding: 0px 10px;
}

.cookieadmin_preference{
	overflow: hidden;
	height: 83px;
	font-size: 15px;
}

.cookieadmin_showmore{
	background: none;
	border: none;
	color: #1863dc;
	padding: 0px;
}

.cookieadmin_details_wrapper{
	padding: 15px;
	height: calc(100% - 6%);
	overflow: auto;
}

.cookieadmin_types{
	padding: 10px 10px;
	border-top: 1px solid #000000;
}

.cookieadmin_header{
	display: flex;
	justify-content: space-between;
}

.cookieadmin_remark{
	display:none;
	justify-self:right;
}

.act{
	display: inline;
	color: #1863dc;
}

.cookieadmin-nece-cookies{
	display:none;
	padding:1px;
	border-radius: 10px;
	margin: 0px 20px;
	margin-right: 4rem;
	font-size: smaller;
	font-size: 1rem;
	text-align: center;
}

.cookieadmin_desc{
	padding:5px 20px;
	font-size: 15px;
	padding-right: 4rem;
}

.cookieadmin_footer{
	width: 100%;
	left: 0px;
	padding: 15px;
	flex-wrap: wrap;
}

.cookieadmin_btn{
	background-color: transparent;
	border: 1px solid gray;
	color: #1863dc;
	padding: 0.4rem 0.9rem;
	border-radius: 4px;
	margin: 2px 5px;
	cursor: pointer;
}

.cookieadmin_btn:hover{
	opacity: 0.8;
}

.btn_accept{
	color: #ffffff;
	background-color: #1863dc;
	border-color: rgb(24, 99, 220);
}

.show_pref_cookies{
	cursor: pointer;
}

.pl0{
	padding-left:0px;
}

.cookieadmin_re_consent{
	display: none;
	position: fixed;
	bottom: 15px;
	left: 15px;
	background: linear-gradient(to left, rgb(0, 51, 204) 0%, rgb(102, 102, 255) 100%);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	cursor: pointer;
	border: 0px;
	z-index: 99999;
}

.cookieadmin-manager-cookie-scan, .cookieadmin-manager-consent-logs, .cookieadmin-manager-cookie-categorize{
	flex-wrap: wrap;
	justify-content: space-between;
}

.cookieadmin-manager-result{
	padding: 10px;
	width: 100%;
}

.cookieadmin-consent-logs-pagination{
	padding: 15px;
	margin: 5px;
	width: 100%;
}

.cookieadmin-logs-paginate{
	font-size: 2em;
	text-decoration:none;
}

.cookieadmin-icon{
	height: 60px;
	display: inline-block;
}

.cookieadmin-logo{
	width: 250px;
	display: inline-block;
}

.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,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: 0.85rem;
}

.cookieadmin-cookie-duration > b {
  font-weight: bold;
}

.cookieadmin-cookie-description {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.cookieadmin-cookie-tags {
  display: flex;
  gap: 8px;
}

.cookieadmin-tag {
  background: #e0e0e0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #333;
}

.cookieadmin-tag.active {
  background: #000;
  color: #fff;
}

.cookieadmin_edit_icon, .cookieadmin_delete_icon{
	margin: 2px;
}

.cookieadmin_edit_icon:hover {
	color : blue !important;
	font-size: 22px !important;
}

.cookieadmin_delete_icon:hover {
	color : red !important;
	font-size: 22px;
}

/* Website consent box End*/





/* Checkbox switch Start */

.cookieadmin_toggle, .cookieadmin_toggle_disabled {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 11px;
}

/* Hide the checkbox input */
.cookieadmin_toggle input {
	display: none;
}

/* Describe slider's look and position. */
.cookieadmin_slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: gray;
	transition: .4s;
	border-radius: 34px;
}

/* Describe the white ball's location 
  and appearance in the slider. */
.cookieadmin_slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: 3.2px;
	bottom: 3.2px;
	background-color: white;
	transition: .2s;
	border-radius: 50%;
}

/* Modify the slider's background color to 
  green once the checkbox has been selected. */
input:checked+.cookieadmin_slider {
	background-color: #3582c4;
}

/* When the checkbox is checked, shift the 
  white ball towards the right within the slider. */
input:checked+.cookieadmin_slider:before {
	transform: translateX(13px);
}

input:disabled+.cookieadmin_slider {
	background-color: #3582c4;
}
input:disabled+.cookieadmin_slider:before {
	transform: translateX(13px);
}

/* Checkbox switch End */


 /* --- Modal Styles Start --- */

/* The Modal Overlay/Backdrop */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none; /* Initially hidden */
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* The Modal Container */
.modal-container {
	background-color: #ffffff;
	border-radius: 4px;
	width: 100%;
	max-width: 600px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* When the modal is active */
.modal-overlay.active {
	display: flex;
}

/* Modal Header */
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1d2327;
}

.modal-close-btn {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #50575e;
}

/* Modal Body (the form) */
.modal-body {
	padding: 24px;
}

.form-group {
	margin-bottom: 20px;
	display: grid;
	grid-template-columns: 120px 1fr; /* Label and Input alignment */
	align-items: center;
	gap: 16px;
}

.form-group label {
	font-weight: 500;
	color: #1d2327;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 95%;
	padding: 8px 12px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box; /* Important for padding and width */
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
	align-self: flex-start; /* Align textarea with top of label */
}

/* Modal Footer */
.modal-footer {
	display: flex;
	justify-content: flex-start;
	padding: 16px 24px;
	border-top: 1px solid #e0e0e0;
	background-color: #f6f7f7;
}

.btn {
	padding: 8px 16px;
	border-radius: 4px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	margin-right: 10px;
}

.btn-primary {
	background-color: #007cba;
	color: white;
	border-color: #007cba;
}

.btn-secondary {
	background-color: #f6f7f7;
	color: #007cba;
	border-color: #007cba;
}

/* --- Modal Styles End --- */

/* Table */

.cookieadmin-table{
	padding: 2px;
	font-size: 14px;
	text-align: left;
	width: 100%;
	table-layout: fixed;
	word-wrap: anywhere;
	border-collapse: collapse;
	border-spacing: 0;
}

.cookieadmin-table tbody{
	border-radius: 8px;
	overflow: hidden;
	display: table-row-group;
	border: 1px solid #ddd;
}

table.cookieadmin-table thead{
	background-color: #263544;
	color: #ffffff;
	font-weight: 500 !important;
	padding: 0px;
	border: 1px solid #ddd;
}

table.cookieadmin-table th{
	padding: 10px 10px;
}

table.cookieadmin-table td{
	background: white;
	padding: 10px;
	border-bottom: 1px solid #ddd;
	line-height: 1.5;
}

/* Table End */

/* Badges End */

.cookieadmin-badge{
	display: inline-block;
	padding: 3px 10px 5px 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.1;
	border-radius: 1rem;
	color: #000;
	border: 1px solid #000;
	background-color: #fff;
}

.cookieadmin-success{
	color: #06923E;
	border: 1px solid #16C47F;
	background-color: #eefef4;
}

.cookieadmin-warning{
	color: #b49046;
	border: 1px solid #b49046;
	background-color: #fffbe8;
}

.cookieadmin-danger{
	color: #ED3500;
	border: 1px solid #E55050;
	background-color: #fef2f2;
}

.cookieadmin-info{
	color: #4682A9;
	border: 1px solid #5EABD6;
	background-color: #f0fbff;
}

/* Badges End */

.cookieadmin-cookie-categorized tbody > tr:first-child td::before {
	content: "⮟";
	position: relative;
	float: right;
	font-size: 17px;
}

.cookieadmin-cookie-categorized tbody:not(:first-of-type)::after {
	content: "";
	display: table-row;
	height: 30px; /* This is your gap */
}

.cookieadmin-cookie-categorized tbody > tr:first-child td {
	font-weight: bold !important;
	padding: 15px !important;
	cursor: pointer;
	background: #EFEFEF !important;
}

.cookieadmin-cookie-categorized tbody:is(.collapsed) > tr:first-child td::before {
	transform: rotate(90deg); /* expanded */
}

.cookieadmin-empty-row td {
	text-align: center;
	font-style: italic;
	background-color: #f5f5f5;
	opacity: 0.8;
	pointer-events: none; /* feels disabled */
}

.cookieadmin_dialog_modal_close_btn{
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	font-size: 24px;
	font-weight: bold;
}

/* --- Auto Categorize Cookies End --- */



/* --- Override Dashicons Start --- */
.dashicons {
	cursor: pointer;
}
/* --- Override Dashicons End --- */


