/*** Begin Font ***/
@font-face {
	font-family: AsbaBody;
	src: url(../fonts/WixMadeforDisplay-Regular.ttf);
}
@font-face {
	font-family: AsbaTitle;
	src: url(../fonts/VarelaRound-Regular.ttf);
}
/*** End Font ***/
/*** Begin Global Style ***/
body{
	margin: 0;
	text-decoration: inherit;
	height: 100%;
}
*,
::before,
::after {
	box-sizing: border-box;
}
:root {
	--gold: #d4c600;
	--gibe-green: #c2d11f;
	--white:#ffffff;
    --black:#000000;
	--primary-color:var(--black);
	--secondary-color:var(--gibe-green);
	--dark-bg:#212121;
	--light-effect:#f5f5f5;
	--light-header-hover:#363636;
	--dark-header-hover:#404040;
	--border-color:#e0e0e0;
	--subtext:#b3b3b3;
	--green: #69a82a;
	--yellow: #e6ba37;
	--red: #ba4a2f;
	--footer: #616161;
	--star: #ffd700;
}
.secondaryColor {
	background-color: var(--secondary-color);
}
.background-green {
	background-color: var(--green);
}
.background-yellow {
	background-color: var(--yellow);
}
.background-red {
	background-color: var(--red);
}
p,
div {
  font-family: AsbaBody;
}
.hidden {
	display: none;
}
.none{
	display:none;
}
i {
	font-size: 1.5rem;
}
p {
	margin: 0;
}
.show {
	display: block !important;
}
#myChart {
	margin-top: 10px;
}
.mobile {
	display: none;
}
.mobile-form {
	width: 100%;
}
.big-device {
	display: flex;
}
.settings-form {
	display: flex;
	flex-direction: column;
}
.language-content {
	display: none;
}
.checkbox-accent {
	accent-color: var(--secondary-color);
	height: 30px;
	width: 30px;
}
.checkbox-text {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.total-button {
	width: 100%;
}
.single-button {
	width: 90%;
}
.double-button {
	width: 40%;
}
.link-no-style {
	text-decoration: none;
	color: var(--black);
}
.ssmanager {
	background-color: var(--gold);
}
.popup {
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.popup .popuptext {
	visibility: hidden;
	width: 160px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 8px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -80px;
}
.popup .popuptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}
.popup .show {
	visibility: visible;
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
	from {opacity: 0;} 
	to {opacity: 1;}
}
@keyframes fadeIn {
	from {opacity: 0;}
	to {opacity:1 ;}
}
.content-truncate {
	width: 90%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin: 0;
	text-align: justify;
}
.truncate{
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.responsive-text-truncate {
	display: table;
	table-layout: fixed;
	width: 100%;
}
/*** End Global Style ***/




/*** Begin Srollbar ***/
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: #e3e3e3;
}
::-webkit-scrollbar-thumb:hover {
	background: #555;
}
::-webkit-scrollbar-thumb {
	background: #888;
}
/*** End Scrollbar ***/



/*** Begin Input Style ***/
.input {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
	min-width: 100px;
}
.input-select {
	min-height: 30px;
	font-family: AsbaBody;
	padding: 7px;
	border: 1px solid #ccc;
	margin-right: 5px;
}
.dropzone {
	border: 1px dashed grey !important;
}
.pageLayout-input-content {
	display: flex;
	flex-direction: row;
	min-height: 100%;
}
.new-input-container {
	width: 75%;
}
.new-input-container-background {
	margin: 0 15%;
}
.new-input-container-blog-background {
	margin: 0;
	padding-right: 2.5rem;
}
.new-utilities-container {
	width:25%;
	border-left: 1px solid #e0e0e0;
}
.new-utilities-accordion {
	background-color: var(--light-effect);
	color: #5e5e5e;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	font-weight: 600;
}
.accordion-icon {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}
.accordion-button-icon {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.new-utilities-accordion-double-button {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.new-utilities-accordion-content {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.new-utilities-accordion-content-details {
	width: 90%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 10px;
}
.new-utilities-accordion-text {
	margin: 5px 0;
}
.contacts-icon {
	margin-right: 5px;
}
.new-title {
	width: 100%;
	margin: 0;
	padding: 19px 0;
	font-family: inherit;
	color: inherit;
	border-color: transparent;
	font-size: 2.44em;
	font-weight: 700;
	line-height: 1.4;
	resize: none;
	height: 95px;
	overflow: hidden;
	outline: 0px none transparent;
}
.new-title::placeholder,
.new-title::-ms-input-placeholder{
	color: #5e5e5e;
}
.photo-preview {
	position: relative;
	float: left;
	width: 50%;
	height: 400px;
	margin: 1rem 0;
	display: flex;
	box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 1%), 0px 8px 10px 1px rgb(0 0 0 / 1%), 0px 3px 14px 2px rgb(0 0 0 / 10%);
	background-color: var(--white);
	border-radius: 0.375rem;
}
.photo-details-container {
	width: 50%;
	height: 400px;
	position: relative;
	margin: 1rem 0 0 1rem;
	border-radius: 0.375rem;
	box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 1%), 0px 8px 10px 1px rgb(0 0 0 / 1%), 0px 3px 14px 2px rgb(0 0 0 / 10%);
	background-color: var(--white);
	display: flex;
	flex-direction: column;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
	.container{
		padding: 2.5rem !important;
	}
	.pageLayout-input-content {
		flex-direction: column;
	}
	.new-input-container {
		width: 100%;
	}
	.new-input-container-background {
		margin: 0;
	}
	.new-input-container-blog-background {
		padding-right: 0;
	}
	.new-utilities-container {
		width: 100%;
		margin-top: 20px;
		border-left: none;
	}
	.photo-preview {
		width: 100%;
	}
	.photo-details-container {
		width: 100%;
		margin: 0;
	}
}
/*** End input style ***/


/*** Begin dataTables ***/
div.dtsp-panesContainer{
    padding: 0 10px 20px 10px;
    border-bottom: 2px solid var(--black) !important;
}
div.dtsp-topRow.dtsp-bordered{
	background-color: white;
}
.dataTable{
	width: 100% !important;
	border-collapse: collapse !important;
}
.dataTables_wrapper{
	width: 100%;
}
.action{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 10px;
}
.dataTables_length,
.dataTables_filter {
	margin: 10px 0;
}
.fc .fc-button-primary {
	background-color: var(--secondary-color) !important;
	border-color: var(--secondary-color) !important;
	color: var(--black) !important;
}
/*** End dataTables ***/



/*** Begin Select2 ***/
.select2-container--default .select2-selection--multiple{
	border: 1px solid #ccc !important;
	border-radius: 0 !important;
	margin: 4px 0 8px 0;
}
.select2-container .select2-search--inline .select2-search__field{
	margin: 8px 18px !important;
	height: 19px !important;
	font-family: AsbaBody !important;
}
/*** End Select2 ***/



/*** Begin Error Management ***/
.security-modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 20%;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
	.security-modal-content {
		width: 80%;
	}
}
.security-button {
	min-height: 50px;
	margin: 10px 0;
	border: none;
	font-weight: bold;
	font-family: AsbaBody;
	border-radius: 3px;
	cursor: pointer;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 14px;
}
.security-button-action {
	background-color: var(--red);
}
/*** Begin Error Management ***/



/*** Begin Login Page ***/
.login-body {
	width: 100vh;
	height: 100vh;
	margin: 0;
	background-color: #c2d11f;
}
.login-container {
	padding: 2.5rem !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50vh;
	height: 60vh;
	background-color: var(--white);
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 20px;
}
.login-container-logo {
	width: 100%;
	height: 30%;
}
.login-logo {
	max-width:100%;
	-webkit-filter: invert(100%);
	filter: invert(100%);
}
.login-container-form {
	width: 100%;
	height:50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.login-form-container {
	width:100%;
	display: flex;
	flex-direction: column;
}
.login-container-action {
	width: 100%;
	height: 20%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
/*** End Login Page ***/



/*** Begin Nav ***/
.nav {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	background-color: var(--dark-bg);
	box-shadow: 0 2px 4px rgb(0 0 0 / 50%);
	height: 4.5rem;
	display: flex;
	align-items: center;
}
.nav-container {
	display: flex;
	align-items: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.nav-brand {
	margin-right: auto !important;
}
.nav-brand-logo-container,
.nav-brand-logo {
	height: 4rem;
}
.nav-items-container {
	display:flex !important;
	margin-right:0 !important;
	align-items:center !important;
}
.nav-items-info {
	display: flex !important;
	flex-direction: row;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	margin-right: 2rem;
}
.nav-item {
	list-style:none;
}
.nav-link {
	color:#fff;
	font-style: normal;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
}
.nav-iems-utls {
	display:flex !important;
}
.nav-item-messages {
	position: absolute;
	float: right;
	top: 20px;
	right: 170px;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	background-color: var(--red);
}
.nav-item-notitication {
	position: absolute;
	float: right;
	top: 20px;
	right: 100px;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	background-color: var(--red);
}
.nav-item-dropdown,
.nav-items-info {
	display:none !important;
}
.nav-iems-utls-dropdown {
	right: 1rem;
	left: auto;
	top: 100%;
	box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
	position: absolute;
	z-index: 6;
	max-width: 17.3rem;
	min-width: 20rem;
	padding: 0;
	margin: 0;
	font-size: 1rem;
	text-align: left;
	list-style: none;
	background-color: #fff;
	border-radius: 0.25rem;
	display: none;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-right: 1rem !important;
	margin-top: 1rem !important;
}
.nav-item-dropdown-header {
	font-weight: 500 !important;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
	display: block;
	padding: 0.5rem 1rem;
	margin-bottom: 0;
	font-size: 0.875rem;
	white-space: nowrap;
	margin-top: 0;
}
.nav-item-dropdown-divider {
	background-color: currentColor;
	opacity: 0.25;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.nav-item-dropdown-unread {
	height: auto;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	overflow: hidden;
	align-items: center;
	display: flex;
	color: #212121;
	background-color: #fff;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	text-decoration: none;
}
.nav-item-dropdown-container {
	margin-right: 0.5rem !important;
	justify-content: flex-end !important;
	width: 100% !important;
	display: flex;
	align-items: center;
}
.nav-item-dropdown-content {
	margin-right: 0.5rem !important;
	display: inline-block !important;
}
.nav-item-dropdown-text-container {
	margin-right: 0.5rem !important;
}
.nav-item-dropdown-content-text {
	font-size: 0.875rem;
	width: 18rem;
	white-space: normal;
}
.nav-item-dropdown-container-text {
	font-size: 0.875rem;
	white-space: normal;
}
.nav-item-dropdown-container-subtext {
	color: #757575;
	font-size: 0.75rem;
}
.nav-item-dropdown-vwall {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	overflow: hidden;
	align-items: center;
	display: flex;
	padding-right: 1rem;
	text-decoration: none;
}
.nav-dropdown-menu {
	right: 1rem;
	left: auto;
	top: 100%;
	box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
	margin-top: 1rem !important;
	position: absolute;
	z-index: 1000;
	min-width: 7rem;
	padding: 0.5rem 0;
	margin: 0;
	font-size: 1rem;
	color: #424242;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border-radius: 0.25rem;
	border: none;
	max-width: 17.5rem;
	display: none;
}
.nav-item-dropdown-user {
	overflow: hidden;
	height: 3rem;
	align-items: center;
	display: flex;
	padding: 0 1rem;
	clear: both;
	font-weight: 500;
	color: #212121;
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}
.fst-btn {
	margin-right: 1rem !important;
}
.nav-item-dropdown-icon {
	margin-right: 1.25rem;
    margin-left: 0.5rem;
}
@media (min-width:576px) {
	.nav-item-dropdown,
	.nav-items-info{
		display: block !important;
	}
}
.nav-btn {
	margin-right: 1rem;
	margin-left: 1rem;
	padding: calc(0.5rem + 1px);
	color:#fff;
	background-color: transparent;
	border: 1px solid transparent;
	cursor: pointer;
	width: 44px;
    height: 44px;
}
.AsbaLink:hover,
.space:hover {
	background-color: var(--light-effect);
}
.nav-item-dropdown-unread:hover {
	background-color: var(--light-effect);
}
.nav-btn:hover {
	border-radius: 100%;
	background-color: var(--light-header-hover);
}
/*** End Nav ***/



/*** Begin Page Layout ***/
#pageLayout{display:flex;}



/*** Begin Page Layout sidenav ***/
.abs-features{
	width: 60px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
    height: 100%;
	background-color: var(--light-effect);
	border-right: 1px solid var(--border-color) !important;
	padding-top: 4.5rem;
}
#pageLayout-nav{
	width:280px;
	flex-basis: 280px;
	flex-shrink: 0;
	transform: translateX(-220px);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 7;
	height: 100%;
}
@media (min-width: 992px) {
	#pageLayout-nav {
		transform: translateX(60px);
	}
}
@media (min-width: 992px) {
	.menu-toggle #pageLayout-nav {
		transform: translateX(-220px);
	}
}
@media (max-width: 991px) {
	.menu-toggle #pageLayout-nav {
		transform: translateX(60px);
	}
}
.pageLayout-accordion {
	padding-top: 4.5rem;
	color: #616161;
	display: flex;
	flex-direction: column;
	height: 100%;
	flex-wrap: nowrap;
	border-right: 1px solid #e0e0e0 !important;
}
.Layout-menu {
	overflow-y: auto;
	background-color: var(--white);
	height: 100%;
}
.Layout-nav {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.Layout-menu-heading {
	padding-top: 2.3rem;
	padding-right: 1.5rem;
	padding-bottom: 0.70rem;
	padding-left: 1.5rem;
	font-size: 1.1rem;
	color: #212121;
}
.Layout-nav-link-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.Layout-nav-link {
	width: 85%;
	display: flex;
	align-items: center;
	padding-top: 0.7rem;
	padding-right: 1.5rem;
	padding-bottom: 0.7rem;
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.95rem;
	line-height: 1;
	overflow: hidden;
	color: #616161;
	text-decoration: none;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 600;
}
.Layout-nav-link-icon {
	height: 100%;
	color: #777;
	float: right;
	margin-left: 5px;
	cursor: pointer;
}
.Layout-nav-submenu-container {
	width: 100%;
}
.Layout-nav-sublink {
	display: flex;
	align-items: center;
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
	padding-left: 4rem;
	position: relative;
	font-size: 0.95rem;
	line-height: 1;
	overflow: hidden;
	color: #616161;
	text-decoration: none;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 600;
}
.active {
	color: var(--black);
}
.active-background {
	background-color: var(--light-effect);
}
.Layout-nav-link-icon {
	margin-right: 1rem;
}
.Layout-nav-link-container:hover {
	background-color:#f5f5f5;
}
.Layout-menu-divider {
	display: block;
	height: 0px;
	border-top-style: solid;
	border-top-width: 1px;
	margin-top: 2.3rem;
	margin-bottom: 0;
}
/*** End Layout sidenav ***/



/*** Begin Layout Content ***/
#pageLayout-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	flex-grow: 1;
	min-height: calc(100vh);
	margin-left: -340px;
	padding-left: 340px;
}
@media (min-width: 992px) {
	#pageLayout-content {
		margin-left: 0;
		transition: margin 0.15s ease-in-out;
	}
}
@media (min-width: 992px) {
	.menu-toggle #pageLayout-content {
		margin-left: -280px;
		transition: margin 0.15s ease-in-out;
	}
}
@media (max-width: 991px) {
	.menu-toggle #pageLayout-content::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		z-index: 6;
		opacity: 0.5;
		transition: opacity 0.3s ease-in-out;
	}
}
/*** End Layout Content ***/



/*** Begin Header ***/
.header{display: block;min-height: 2rem;}
/*** End Header ***/



/*** Begin Container ***/
.container{
	padding: 2.5rem !important;
	width:100%;
    height:100%;
	margin-right:auto;
	margin-left:auto;
    background-color:var(--white);
}
.container-nopadding{
	padding: 2.5rem 0 0 2.5rem;
	width:100%;
    height:100%;
	margin-right:auto;
	margin-left:auto;
    background-color:var(--white);
}
.container-button{
	min-height: 30px;
    margin: 10px 0;
    background-color: var(--secondary-color);
    border: none;
    font-weight: bold;
    font-family: AsbaBody;
    border-radius: 3px;
	cursor: pointer;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 14px;
}
.container-button-delete{
	min-height: 30px;
    margin: 10px 0;
    background-color: var(--red);
	color: var(--black);
    border: none;
    font-weight: bold;
    font-family: AsbaBody;
    border-radius: 3px;
	cursor: pointer;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
}
.chart{
	width: 100%;
}
.container-button-link {
	color: var(--primary-color);
	text-decoration: none;}
.container-action {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px 0 10px;
	border-bottom: 2px solid var(--black) !important;
}
.container-action-mode {
	padding: calc(0.5rem + 1px);
	background-color: transparent;
	border: 1px solid transparent;
	cursor: pointer;
}
.container-mode {
	display: flex;
}
.mode-active {
	background-color: var(--secondary-color);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.container-action-form {
	margin-block-end: 0;
	width: 100%;display: flex;
	align-items: center;
	justify-content: space-between;
}
.container-filter {
	display: flex;
	align-items: center;}
.filter-icon {
	color: var(--black);
}
.page-title {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.page-title-divider{
	font-size: 45px;
	color: #777;
	font-weight: lighter;
	margin: 0 10px;
}
.page-subtitle {
	color: #777;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
	.page-title{
		flex-direction: column;
		align-items: flex-start;
	}
	.page-title-divider{
		display: none;
	}
}
/*** End Container ***/



/*** Begin General Table Style ***/
.table-list {
	width: 100%;
	border-collapse: collapse;
}
td {
	border: 1px solid #00000094;
	max-width: 500px;
	text-align: justify;
	overflow-wrap: break-word;
}
.td-data {
	min-width: 90px;
}
th, td {
	padding: 8px;
	border-left: none;
	border-right: none;
}
th {
	text-align: left;
	background-color: var(--secondary-color);
	color: var(--primary-color);
}
.table-icon {
	font-size:1.3rem;
	color: var(--black);
}
.media-name-container {
	display: flex;
	align-items: center;
}
.newsletter-model-name {
	text-decoration: none;
	font-weight: 600;
	color: var(--black);
}
.table-media-img {
	display: flex;
	width: 70px;
	height: 70px;
	object-fit: cover;
	margin-right: 10px;
}
.table-media-avatar{
	width: 3rem;
	height: 3rem;
	object-fit: cover;
	margin-right: 10px;
}
.grid-column-img-container {
	position: relative;
	width: 100%;
	height: 100%;
}
.thumbnail{
	width: 100%;
	height: 100%;
	display: flex;
}
.thumbnail-img{
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.container-table {
	width: 100%;
}
.new-object {
	width: 100%;
    margin: 0;
    padding: 12px 0;
    font-family: inherit;
    color: inherit;
    border-color: transparent;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 0.1;
    resize: none;
    height: 35px;
    overflow: hidden;
    outline: 0px none transparent;
}
.button-icon{ cursor: pointer; }
.red { color: var(--red); }
.green { color: var(--green); }
.yellow { color: var(--yellow); }
.dashboard-container-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}
div.dataTables_scrollHead table {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
div.dataTables_scrollHead th:first-child {
	border-top-left-radius: 6px;
}
div.dataTables_scrollHead th:last-child {
	border-top-right-radius: 6px;
}
.dashboard-container-table-thead {
	background-color: var(--secondary-color);
	width: 100%;
}
/*** End General Table Style ***/



/*** Begin Blog ***/
.blog-banner-img-container{
	margin: 10px 0;
}
.blog-banner-img{
	width: 12rem;
	height: 8rem;
	object-fit: cover;
}
.new-category-display{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

/*** Begin Blog Comments ***/
.last-comments-container {
	list-style: none;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-left: 0;
	max-height: 450px;
	max-width: 100%;
}
.space {
	border-left: 3px solid var(--secondary-color);
	margin: 7px 0;
}
.last-comments-comment {
	height: auto;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	overflow: hidden;
	align-items: center;
	display: flex;
	color: #212121;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	text-decoration: none;
}
.last-comments-text-container {
	margin-right: 0.5rem !important;
}
.last-comments-text {
	font-size: 0.875rem;
}
.last-comments-photo {
	width: 3rem;
	height: 3rem;
	object-fit: cover;
	margin-right: 10px;
}
.last-comments-header {
	width:100%;
	display: flex;
	flex-direction: column;
}
.last-comments-subtext {
	font-size: 0.875rem;
	color: #757575;
}
/*** End Blog comments ***/
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
	.container-action-select {
		height: 30px;
		margin: 5px 0;
	}
	.container-nopadding {
		padding: 2.5rem;
	}
	.container-action {
		flex-direction: column;
	}
	.container-action-form {
		flex-direction: column;
		align-items: stretch;
	}
	.container-filter {
		display: flex;
		align-items: stretch;
		flex-direction: column;
	}
	.container-search {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
	.container-table {
		width: 100%;
		overflow-y: auto;
	}
}
/*** End Blog ***/



/*** Begin Newsletter ***/
.newsletter-body {
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #c2d11f;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
}
.newsletter-container {
	padding: 2.5rem !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 70%;
	background-color: #ffffff;
	margin: auto;
	position: relative;
	top: 100px;
	border-radius: 20px;
}
.progOption,
.dataOption{
	display: none;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.newsletter-model-card-container{
	padding:20px;
}
.newsletter-model-card{
	border: 1px solid grey;
	border-radius: 10px;
	width: 100%;
	aspect-ratio: 1 / 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.newsletter-model-card-image{
	display: flex;
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
.star-icon{
	color: var(--star);
}
/*** End Newsletter ***/



/*** Begin Event ***/
#calendar-container {
	position: fixed;
	height:100%;
}
.event-details-mini {
	padding: 0 20px 0 0;
}
.fc-col-header {
	width: 100%;
}
.cl-container {
	width: 100%;
	height: 70vh;
	display: flex;
	align-items: center;
}
.cl-container-mobile {
	width: 100%;
	display: none;
	align-items: center;
	padding: 20px;
	margin-top: 20px;
}
.new-short {
	display:flex;
	float:left;
	width:25%;
	height: 100%;
	padding-top: 4rem;
	flex-direction: column;
}
.event-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
.event-title-container {
	margin-left: 10px;
}
.event-info-container {
	width: 80%;
}
.event-details-container {
	width: 100%;
	position: relative;
	margin: 5px 0;
	border-radius: 0.375rem;
	box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 1%), 0px 8px 10px 1px rgb(0 0 0 / 1%), 0px 3px 14px 2px rgb(0 0 0 / 10%);
	background-color: var(--white);
	display: flex;
	flex-direction: column;
}
.event-cover {
	position: relative;
	float: left;
	width: 100%;
	height: 400px;
	margin: 1rem 0;
	display: flex;
	box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 1%), 0px 8px 10px 1px rgb(0 0 0 / 1%), 0px 3px 14px 2px rgb(0 0 0 / 10%);
	background-color: var(--white);
	border-radius: 0.375rem;
}
.event-cover-img {
	width: 100%;
	height: 100%;
	border-radius: calc(0.375rem - 0px);
	object-position: 50% 50%;
	object-fit: cover;
}
.cover-image-file-upload {
	width: fit-content;
	position: relative;
	padding: 0.25rem 0.5rem;
	margin-left: 5px;
	border-radius: 0.25rem;
	border: 1px solid var(--light-effect);
	background-color: rgba(0, 0, 0, .9);
	opacity: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: .8333333333rem;
	color: #fff;
  }
.cover-image-file-input {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.25rem 0.5rem;
	margin-left: 1rem;
	margin-top: 1rem;
	border-radius: 0.25rem;
	border: 1px solid var(--light-effect);
	background-color: rgba(0,0,0,.9);
	opacity: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: .8333333333rem;
	color: #fff;
}
.new-event-left-column {
	width: 68%;
	float: left;
	display: flex;
	flex-direction: column;
}
.new-event-right-column {
	width: 30%;
	position: sticky;
	top: 5.3125rem;
	float: left;
	display: flex;
	flex-direction: column;
}
.event-header {
	width: 100%;
	position: relative;
	padding: 10px;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border-top-left-radius: 0.375rem;
	border-top-right-radius: 0.375rem;
}
.event-details {
	padding: 20px;
}
.event-details-multiple {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.event-detail-double {
	width: 48%;
	display: flex;
	flex-direction: column;
}
.event-detail-triple {
	width: 30%;
	display: flex;
	flex-direction: column;
}
.event-btn-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.prOptBtn {
	margin-right: 10px;
}
.pricing-options {
	overflow-x: auto;
}
.photoDrop {
	width: 100%;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.photoDropStyle {
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	border: 1px dashed grey;
	border-radius: 0.375rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.event-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.event {
	width: 100%;
    display: flex;
    justify-content: flex-start;
}
.event-img-container {
	display: flex;
    float: left;
    width: 20%;
    justify-content: center;
    align-items: center;
}
.event-img {
	width: calc(100%);
    height: calc(100%);
    object-fit: cover;
}
.event-info {
	float: left;
	width: 32%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px 0;
	margin-left: 10px
}
.event-title {
	display: flex;
	flex-direction: row;
	text-decoration: none;
}
.event-name {
	margin-right: 10px;
	font-size: 1.125rem !important;
	font-weight: bold;
	color: #2c7be5;
}
.event-status {
	font-weight: bold;
	padding: 0 10px;
	border-radius: 100px;
	text-align: center;
}
.event-organization {
	font-size: .9333333333rem !important;
	margin-bottom: 0.25rem !important;
	margin-top: 0;
	color: #5d6776;
}
.event-detail {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.spacer {
	width: 100%;
	margin: 20px 0;
}
.event-text {
	display: flex;
	flex-direction: row;
}
.table-action-container {
	display: flex;
	flex-direction: row;
}
.table-submit {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
	.cl-container-mobile {
		display: flex;
	}
	.fc,
	.fc-toolbar,
	.event,
	.event-container,
	.event-detail {
		flex-direction: column;
	}
	.event-title-container {
		margin-top: 10px;
	}
	.event-img-container,
	.event-info-container,
	.event-details-container,
	.event-info,
	.new-event-right-column,
	.new-event-left-column {
		width: 100%;
	}
	.big-device {
		display: none;
	}
}
/*** End Event ***/



/*** Begin Marketing ***/
.calendar-container{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	justify-content: space-between;
}
.published-card {
	display: inline-block;
	border-radius: 7px;
	border: 1px solid;
	font-family: inherit;
	text-align: center;
	font-size: 13px;
	cursor: pointer;
	vertical-align:middle
}
.green-card {
	background: var(--green);
	color: var(--white);
	border-color: var(--green);
}
.red-card {
	background: var(--red);
	color: var(--white);
	border-color: var(--red);
}
.white-card {
	background:var(--white);
	color: var(--black);
	border-color:var(--black);
}
.modal-marketing-img {
	height: 200px;
}
/*** End Marketing ***/



/*** Begin Card ***/
.dashboard-row-card {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
.dashboard-card {
	width: 18%;
	height: 100px;
	padding: 0 20px;
	border-radius: 2%;
	border-left: 5px solid var(--secondary-color);
	margin-bottom: 3rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.dashboard-card-text {
	width: 60%;
	float: left;
	position: relative;
	height: 20%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: -25px;
}
.dashboard-card-title {
	margin: 0;
	line-height: 1rem;
	font-weight: 200;
	color: var(--black);
	font-size: 1.875rem;
	margin-bottom: 10px;
	font-family: AsbaTitle;
}
.dashboard-card-subtitle {
	margin: 0;
	line-height: 1rem;
	font-size: 1.1rem;
	font-weight: 200;
	font-family: AsbaBody;
}
.dashboard-card-icon {
	position: relative;
	float: left;
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: flex-end;
}
.card-icon-round {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	background-color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-icon {
	color: var(--white);
}
/*** End Card ***/



/*** Begin General Container Style ***/
.dashboard-container {
	border: 1px solid var(--light-border);
	position: relative;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;
}
.max {
	width: 100%;
}
.small {
	width: 40%;
}
.medium {
	width: 55%;
}
@media screen and (max-width:800px) {
	.dashboard-row-card {
		flex-direction: column;
	}
	.small {
		width: 100%;
	}
	.medium {
		width: 100%;
	}
	.dashboard-card {
		width: 100%;
		margin-bottom: 30px;
	}
}
.dashboard-container-header {
	width: 100%;
	color: var(--black);
	padding-bottom: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	border-bottom: 1px solid var(--black);
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.dashboard-container-filter {
	width: 90%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.dashboard-container-footer {
	width: 100%;
	padding: 10px;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
/*** End General Container Style ***/



/*** Begin General Modal Style ***/
.modal {
	display: none;
	position: fixed;
	z-index: 8;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}
.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}
.close {
	color: #aaaaaa;
	position: relative;
	float: right;
}
.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
/*** End General Modal Style ***/



/*** Begin Library Media ***/
.gallery-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(10vw, 1fr));
}
.gallery-image {
	display: flex;
	object-fit: cover;
	padding: 5px;
	width: 10vw;
	height: 10vw;
}
.grid[data-columns="1"] .inner:nth-child(1n+1) {
	clear: left;
	width: 100%;
}
.grid[data-columns="2"] .inner:nth-child(2n+1) {
	clear: left;
	width: 50%;
}
.grid[data-columns="3"] .inner:nth-child(3n+1) {
	clear: left;
	width: 33.3333%;
}
.grid[data-columns="4"] .inner:nth-child(4n+1) {
	clear: left;
	width: 25%;
}
.grid[data-columns="5"] .inner:nth-child(5n+1) {
	clear: left;
	width: 20%;
}
.grid[data-columns="6"] .inner:nth-child(6n+1) {
	clear: left;
	width: 16.666%;
}
.grid[data-columns="7"] .inner:nth-child(7n+1) {
	clear: left;
	width: 14.285%;
}
.grid[data-columns="8"] .inner:nth-child(8n+1) {
	clear: left;
	width: 12.5%;
}
.grid[data-columns="9"] .inner:nth-child(9n+1) {
	clear: left;
	width: 11.111%;
}
.grid[data-columns="1"] .inner {
	width: 100%;
}
.grid[data-columns="2"] .inner {
	width: 50%;
}
.grid[data-columns="3"] .inner {
	width: 33.3333%;
}
.grid[data-columns="4"] .inner {
	width: 25%;
}
.grid[data-columns="5"] .inner {
	width: 20%;
}
.grid[data-columns="6"] .inner {
	width: 16.666%;
}
.grid[data-columns="7"] .inner {
	width: 14.285%;
}
.grid[data-columns="8"] .inner {
	width: 12.5%;
}
.grid[data-columns="9"] .inner {
	width: 11.111%;
}
.inner {
    float: left;
}
.image {
	display: flex;
	object-fit: cover;
	padding: 5px;
	width: 10vw;
	height: 10vw;
}
.media-name {
	text-decoration: none;
	font-weight: 600;
	color: var(--black);
	display: flex;
	align-items: center;
}
.slider {
	appearance: none;
	height: 1.5rem;
	width: 2.5rem;
	background-color: var(--white);
	position: relative;
	border:1px solid var(--black);
	border-radius: .2em;
	cursor: pointer;
}
.slider::before {
	content: '';
	display: block;
	height: 1.5em;
	width: 1.5em;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: calc(1.5em/2 + 0.1em);
	background-color: var(--false);
	border-radius: .2em;
	transition: .3s ease;
}
.slider:checked::before {
	background-color: var(--true);
	left: calc(100% - (1.5em/2 + 0.1em));
}
@media only screen and (max-width:799px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill,minmax(30vw, 1fr));
	}
	.gallery-image {
		width: 30vw;
		height: 30vw;
	}
	.image {
		width: 100%;
		height: 30vw;
	}
}
@media only screen and (min-width:800px) and (max-width:999px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill,minmax(22vw, 1fr));
	}
	.gallery-image {
		width: 22vw;
		height: 22vw;
	}
	.image {
		width: 100%;
		height: 22vw;
	}
}
@media only screen and (min-width:1000px) and (max-width:1199px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill,minmax(14vw, 1fr));
	}
	.gallery-image {
		width: 14vw;
		height: 14vw;
	}
	.image {
		width: 100%;
		height: 14vw;
	}
}
@media only screen and (min-width:1200px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill,minmax(10vw, 1fr));
	}
	.gallery-image {
		width: 10vw;
		height: 10vw;
	}
	.image {
	width: 100%;
	height: 10vw;
	}
}
.library-multiple-upload{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.switch{
	--false: #c2d11f;
	--true: #1c9cd9;
	display: flex;
	flex-direction: row;
	align-items: center;
}

/*** Begin Description Modal ***/
.modal-content-container {
	width: 100%;
	display: flex;
	flex-direction: row;
}
.media-container {
	width: 70%;
	float: left;
}
#modal-img {
	margin: 10px;
	max-height: 70vh;
	aspect-ratio: 4/4;
	object-fit: cover;
}
.description-container {
	width: 30%;
	float: left;
}
.modal-link {
	display: flex;
	flex-direction: row;
}
.modal-link-divider {
	margin: 0 10px;
}
#modal_delete {
	color: red;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
	.modal-content-container {
		flex-direction: column;
	}
	.description-container,
	.media-container {
		width: 100%;
	}
}
/*** End Description Modal ***/
/*** End Media Library ***/



/*** Begin Settings ***/
/*** Begin Password Requirements ***/
#message {
	display: block;
	color: var(--black);
	position: relative;
	padding: 20px;
	margin-top: 10px;
}
#message p {
	padding: 10px 35px;
	font-size: 18px;
}
.valid {
	color: var(--green);
}
.valid:before {
	position: relative;
	left: -35px;
	content: "✔";
}
.invalid {
	color: var(--red);
}
.invalid:before {
	position: relative;
	left: -35px;
	content: "✖";
}
/*** End Password Requirements ***/

/*** Begin Iubenda Solutions ***/
.iubenda-modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 50%;
}
.iubenda-container {
	max-width: 100%;
	margin: 0 50px;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(50%, 1fr));
}
.iubenda-solution {
	max-width: 100%;
	margin: 50px;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.iubenda-solutions-presentation {
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 50px;
}
.iubenda-help-container {
	width: 100%;
	position:relative;
}
.iubenda-help {
	background-color: #ddd;
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	border-radius: 100%;
	padding: 5px;
	position: absolute;
	top: 15px;
	right: 15px;
	text-decoration: none;
}
.iubenda-solution-name {
	font-size: 1rem;
	font-weight: bold;
}
.iubenda-solutions-action {
	max-width: 100%;
	border-top: 1px solid #ddd;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.iubenda-activation-switch {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.iubenda-switch-status {
	font-size: 1rem;
	font-weight: bold;
	margin-left: 10px;
}
.iubenda-button {
	background-color: #ddd;
	color: #616060;
	border-radius: 20px;
	width: auto;
	padding: 10px;
	font-weight: bold;
	border: 1px solid #ddd;
	cursor: pointer;
}
.iubenda-toggle-switch {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 40px;
	cursor: pointer;
}
.iubenda-toggle-switch input[type="checkbox"] {
	display: none;
}
.iubenda-toggle-switch-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ddd;
	border-radius: 20px;
	box-shadow: inset 0 0 0 2px #ccc;
	transition: background-color 0.3s ease-in-out;
}
.iubenda-step {
	display: flex;
	flex-direction: row;
	margin: 20px 0;
}
.iubenda-step-number {
	border: 2px solid var(--black);
	border-radius: 100%;
	font-weight: 900;
}
.iubenda-step-text {
	font-weight: 900;
	margin-left: 5px;
}
.iubenda-textarea {
	width: 100%;
	height: 100px;
	resize: none;
	border: 1px solid var(--black);
	border-radius: 5px;
}
.iubenda-toggle-switch-handle {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 30px;
	height: 30px;
	background-color: var(--white);
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-in-out;
}
.iubenda-toggle-switch {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 40px;
}
.iubenda-toggle-switch input[type="checkbox"] {
	display: none;
}
.iubenda-toggle-switch-background {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0px;
	border-radius: 30px;
	transition: background-color 0.3s ease-in-out;
	box-shadow: inset 0 0 0 2px #ccc;
}
.iubenda-toggle-switch-background:before {
	position: absolute;
	content: "";
	border-radius: 50%;
	top: 5px;
	left: 5px;
	bottom: 0;
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-in-out;
	width: 30px;
	height: 30px;
}
.input-c:checked + .iubenda-toggle-switch-background:before {
	transform: translateX(40px);
}
.input-c:checked + .iubenda-toggle-switch-background {
	background-color: #05c46b;
	box-shadow: inset 0 0 0 2px #04b360;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
	.iubenda-modal-content {
		width: 90%;
	}
	.iubenda-container {
		margin: 0;
		grid-template-columns: repeat(auto-fit,minmax(100%, 1fr));
	}
	.iubenda-solution {
		margin: 10px;
	}
}
/*** End Iubenda Solutions ***/
/*** End Settings ***/



/*** Begin Plugin ***/
/*** Begin Portfolio ***/
.image-file-input {
	position: relative;
	width: fit-content;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	border: 1px solid var(--light-effect);
	background-color: rgba(0, 0, 0, .9);
	opacity: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: .8333333333rem;
	color: var(--white);
}
.primary-button {
	color: var(--white);
	cursor: pointer;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: 0.05rem;
	border: 1px solid #0E1822;
	padding: 0.8rem 2.1rem;
	background-color: #0E1822;
	background-size: 200%;
	background-position: 200%;
	background-repeat: no-repeat;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-webkit-transition-property: background-position, border, color;
	transition-property: background-position, border, color;
	display: flex;
	justify-content: center;
}

.primary-button:hover {
	border: 1px solid #FF4655;
	color: white;
	background-position: 40%;
}
.shape {
	fill: #0E1822;
}
/*** End Portfolio ***/
/*** End Plugin ***/



/*** Begin Footer ***/
/*** Begin Layout Sidenav Footer ***/
.Layout-footer {
	background-color: #f5f5f5;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	border-top: 1px solid #e0e0e0 !important;
    min-height:74px;
}
.Layout-footer-align-items {
	display:flex !important;
	align-items:center !important;
}
.Layout-nav-photo {
	display: flex;
	width: 50px;
	height: 50px;
	object-fit: cover;
}
.footer-signature {
	margin-left: 1rem !important;
}
.caption {
	font-size: 0.75rem;
	line-height: 1.25rem;
	letter-spacing: 0.0333333333em;
	color: #616161;
}
.signature {
	letter-spacing: 0.0178571429em;
	font-size: 0.875rem;
	font-weight: 500 !important;
	color: #616161;
}
/*** End Layout Sidenav Footer ***/

/*** Begin Layout Content Footer ***/
.Layout-content-footer {
	height: 40px;
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
	border-top: 1px solid var(--border-color) !important;
	background-color: var(--light-effect);
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-container {
	padding-right: 2.5rem !important;
	padding-left: 2.5rem !important;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	width: 100%;
	bottom: 0;
	align-items: center;
}
.footer-link {
	color: var(--footer);
	text-decoration: none;
}
/*** End Layout Content Footer ***/
/*** End Footer ***/