@import "https://unpkg.com/open-props/easings.min.css"; /* transition easings for navbar color mode switch */

/* || COMMON STYLES || */
html {
	min-width: 320px;
	overflow-x: auto;
	scroll-behavior: smooth;
}
body {
	background-color: #ebebeb;
	color: #8c8c8c;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI',
		Roboto, 'Helvetica Neue', Arial, sans-serif;
}
body[data-theme='dark'] {
	background-color: #191919;
	color: #bfbfbf;
}
body[data-transition] {
	transition: background-color 0.2s, background-image 0.2s;
}
body *[href],
body *[onclick],
body *[data-target] {
	cursor: pointer;
}

/* TODO: Do not delete, commented out to use bootstraps default dark blue color when hovered over */
/* body [href]:not(.btn):not(.bootlink):hover,
body [onclick]:not(.btn):not(.bootlink):hover,
body [data-target]:not(.btn):not(.bootlink):hover {
	color: #727272;
}
body[data-theme='dark'] [href]:not(.btn):not(.bootlink):hover,
body[data-theme='dark'] [onclick]:not(.btn):not(.bootlink):hover,
body[data-theme='dark'] [data-target]:not(.btn):not(.bootlink):hover {
	color: #ffffff;
}
body[data-theme='dark'] #editor-container [href]:not(.btn):hover,
body[data-theme='dark'] .mm-content [href]:not(.btn):hover {
	color: #727272;
} */
.link-light {
	color: #8c8c8c;
	text-shadow: none;
}
.link-light:hover {
	color: #727272;
}
.link-dark {
	color: #bfbfbf;
	text-shadow: none;
}
.link-dark:hover {
	color: #ffffff;
}
.link-modal {
	color: #212529 !important;
}
.link-modal:hover {
	color: #727272 !important;
}
.close.link-light,
.close.link-light:not(:disabled):not(.disabled):hover,
.close.link-dark,
.close.link-dark:not(:disabled):not(.disabled):hover {
	opacity: 1;
}
body:not([data-theme='dark']) .d-dark,
body[data-theme='dark'] .d-light {
	display: none !important;
}

/* MODIFIERS */
.center-div {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	margin: auto;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	min-height: 85vh;
	box-sizing: border-box;
}
.center-div::before,
.center-div::after {
	display: block;
	content: '';
	width: 100%;
	-ms-flex-positive: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p.lead {
	text-align: center;
}
.text-1 {
	font-size: 0.75rem;
}
.text-2 {
	font-size: 0.875rem;
}
.text-3 {
	font-size: 1rem;
}
.text-4 {
	font-size: 1.25rem;
}
.text-5 {
	font-size: 1.5rem;
}

.m-n0 {
	margin: -0.08rem !important;
}
.mt-n0,
.my-n0 {
	margin-top: -0.08rem !important;
}
.mr-n0,
.mx-n0 {
	margin-right: -0.08rem !important;
}
.mb-n0,
.my-n0 {
	margin-bottom: -0.08rem !important;
}
.ml-n0,
.mx-n0 {
	margin-left: -0.08rem !important;
}

@media (min-width: 576px) {
	.m-sm-n0 {
		margin: -0.08rem !important;
	}
	.mt-sm-n0,
	.my-sm-n0 {
		margin-top: -0.08rem !important;
	}
	.mr-sm-n0,
	.mx-sm-n0 {
		margin-right: -0.08rem !important;
	}
	.mb-sm-n0,
	.my-sm-n0 {
		margin-bottom: -0.08rem !important;
	}
	.ml-sm-n0,
	.mx-sm-n0 {
		margin-left: -0.08rem !important;
	}
}

@media (min-width: 768px) {
	.m-md-n0 {
		margin: -0.08rem !important;
	}
	.mt-md-n0,
	.my-md-n0 {
		margin-top: -0.08rem !important;
	}
	.mr-md-n0,
	.mx-md-n0 {
		margin-right: -0.08rem !important;
	}
	.mb-md-n0,
	.my-md-n0 {
		margin-bottom: -0.08rem !important;
	}
	.ml-md-n0,
	.mx-md-n0 {
		margin-left: -0.08rem !important;
	}
}

@media (min-width: 992px) {
	.m-lg-n0 {
		margin: -0.08rem !important;
	}
	.mt-lg-n0,
	.my-lg-n0 {
		margin-top: -0.08rem !important;
	}
	.mr-lg-n0,
	.mx-lg-n0 {
		margin-right: -0.08rem !important;
	}
	.mb-lg-n0,
	.my-lg-n0 {
		margin-bottom: -0.08rem !important;
	}
	.ml-lg-n0,
	.mx-lg-n0 {
		margin-left: -0.08rem !important;
	}
}

@media (min-width: 1200px) {
	.m-xl-n0 {
		margin: -0.08rem !important;
	}
	.mt-xl-n0,
	.my-xl-n0 {
		margin-top: -0.08rem !important;
	}
	.mr-xl-n0,
	.mx-xl-n0 {
		margin-right: -0.08rem !important;
	}
	.mb-xl-n0,
	.my-xl-n0 {
		margin-bottom: -0.08rem !important;
	}
	.ml-xl-n0,
	.mx-xl-n0 {
		margin-left: -0.08rem !important;
	}
}

.no-hover {
	pointer-events: none;
}

/* CONTAINERS */
.w-20 {
	width: 20% !important;
}
.w-40 {
	width: 40% !important;
}
.w-60 {
	width: 60% !important;
}
.w-80 {
	width: 80% !important;
}
.h-20 {
	height: 20% !important;
}
.h-40 {
	height: 40% !important;
}
.h-60 {
	height: 60% !important;
}
.h-80 {
	height: 80% !important;
}
.w-75px {
	width: 75px;
}
.w-100px {
	width: 100px;
}
.w-125px {
	width: 125px;
}
.w-150px {
	width: 150px;
}
.mw-75px {
	max-width: 75px;
}
.mw-100px {
	max-width: 100px;
}
.mw-125px {
	max-width: 125px;
}
.mw-150px {
	max-width: 150px;
}
.mw-360px {
	max-width: 360px;
}
.mw-540px {
	max-width: 540px;
}
.mw-720px {
	max-width: 720px;
}
.mw-960px {
	max-width: 960px;
}

@media (min-width: 576px) {
	.w-sm-20 {
		width: 20% !important;
	}
	.w-sm-25 {
		width: 25% !important;
	}
	.w-sm-40 {
		width: 40% !important;
	}
	.w-sm-50 {
		width: 50% !important;
	}
	.w-sm-60 {
		width: 60% !important;
	}
	.w-sm-75 {
		width: 75% !important;
	}
	.w-sm-80 {
		width: 80% !important;
	}
	.w-sm-100 {
		width: 100% !important;
	}
	.w-sm-auto {
		width: auto !important;
	}
	.h-sm-20 {
		height: 20% !important;
	}
	.h-sm-25 {
		height: 25% !important;
	}
	.h-sm-40 {
		height: 40% !important;
	}
	.h-sm-50 {
		height: 50% !important;
	}
	.h-sm-60 {
		height: 60% !important;
	}
	.h-sm-75 {
		height: 75% !important;
	}
	.h-sm-80 {
		height: 80% !important;
	}
	.h-sm-100 {
		height: 100% !important;
	}
	.h-sm-auto {
		height: auto !important;
	}
	.w-sm-75px {
		width: 75px;
	}
	.w-sm-100px {
		width: 100px;
	}
	.w-sm-125px {
		width: 125px;
	}
	.w-sm-150px {
		width: 150px;
	}
	.mw-sm-75px {
		max-width: 75px;
	}
	.mw-sm-100px {
		max-width: 100px;
	}
	.mw-sm-125px {
		max-width: 125px;
	}
	.mw-sm-150px {
		max-width: 150px;
	}
	.mw-sm-360px {
		max-width: 360px;
	}
	.mw-sm-540px {
		max-width: 540px;
	}
	.mw-sm-720px {
		max-width: 720px;
	}
}

@media (min-width: 576px) {
	.w-initial-md {
	width: initial !important; 
	}
}	

@media (min-width: 768px) {
	.w-md-20 {
		width: 20% !important;
	}
	.w-md-25 {
		width: 25% !important;
	}
	.w-md-40 {
		width: 40% !important;
	}
	.w-md-50 {
		width: 50% !important;
	}
	.w-md-60 {
		width: 60% !important;
	}
	.w-md-75 {
		width: 75% !important;
	}
	.w-md-80 {
		width: 80% !important;
	}
	.w-md-100 {
		width: 100% !important;
	}
	.w-md-auto {
		width: auto !important;
	}
	.h-md-20 {
		height: 20% !important;
	}
	.h-md-25 {
		height: 25% !important;
	}
	.h-md-40 {
		height: 40% !important;
	}
	.h-md-50 {
		height: 50% !important;
	}
	.h-md-60 {
		height: 60% !important;
	}
	.h-md-75 {
		height: 75% !important;
	}
	.h-md-80 {
		height: 80% !important;
	}
	.h-md-100 {
		height: 100% !important;
	}
	.h-md-auto {
		height: auto !important;
	}
	.w-md-75px {
		width: 75px;
	}
	.w-md-100px {
		width: 100px;
	}
	.w-md-125px {
		width: 125px;
	}
	.w-md-150px {
		width: 150px;
	}
	.mw-md-75px {
		max-width: 75px;
	}
	.mw-md-100px {
		max-width: 100px;
	}
	.mw-md-125px {
		max-width: 125px;
	}
	.mw-md-150px {
		max-width: 150px;
	}
	.mw-md-360px {
		max-width: 360px;
	}
	.mw-md-540px {
		max-width: 540px;
	}
	.mw-md-720px {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.w-lg-20 {
		width: 20% !important;
	}
	.w-lg-25 {
		width: 25% !important;
	}
	.w-lg-40 {
		width: 40% !important;
	}
	.w-lg-50 {
		width: 50% !important;
	}
	.w-lg-60 {
		width: 60% !important;
	}
	.w-lg-75 {
		width: 75% !important;
	}
	.w-lg-80 {
		width: 80% !important;
	}
	.w-lg-100 {
		width: 100% !important;
	}
	.w-lg-auto {
		width: auto !important;
	}
	.h-lg-20 {
		height: 20% !important;
	}
	.h-lg-25 {
		height: 25% !important;
	}
	.h-lg-40 {
		height: 40% !important;
	}
	.h-lg-50 {
		height: 50% !important;
	}
	.h-lg-60 {
		height: 60% !important;
	}
	.h-lg-75 {
		height: 75% !important;
	}
	.h-lg-80 {
		height: 80% !important;
	}
	.h-lg-100 {
		height: 100% !important;
	}
	.h-lg-auto {
		height: auto !important;
	}
	.w-lg-75px {
		width: 75px;
	}
	.w-lg-100px {
		width: 100px;
	}
	.w-lg-125px {
		width: 125px;
	}
	.w-lg-150px {
		width: 150px;
	}
	.mw-lg-75px {
		max-width: 75px;
	}
	.mw-lg-100px {
		max-width: 100px;
	}
	.mw-lg-125px {
		max-width: 125px;
	}
	.mw-lg-150px {
		max-width: 150px;
	}
	.mw-lg-360px {
		max-width: 360px;
	}
	.mw-lg-540px {
		max-width: 540px;
	}
	.mw-lg-720px {
		max-width: 720px;
	}
	.mw-lg-960px {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.w-xl-20 {
		width: 20% !important;
	}
	.w-xl-25 {
		width: 25% !important;
	}
	.w-xl-40 {
		width: 40% !important;
	}
	.w-xl-50 {
		width: 50% !important;
	}
	.w-xl-60 {
		width: 60% !important;
	}
	.w-xl-75 {
		width: 75% !important;
	}
	.w-xl-80 {
		width: 80% !important;
	}
	.w-xl-100 {
		width: 100% !important;
	}
	.w-xl-auto {
		width: auto !important;
	}
	.h-xl-20 {
		height: 20% !important;
	}
	.h-xl-25 {
		height: 25% !important;
	}
	.h-xl-40 {
		height: 40% !important;
	}
	.h-xl-50 {
		height: 50% !important;
	}
	.h-xl-60 {
		height: 60% !important;
	}
	.h-xl-75 {
		height: 75% !important;
	}
	.h-xl-80 {
		height: 80% !important;
	}
	.h-xl-100 {
		height: 100% !important;
	}
	.h-xl-auto {
		height: auto !important;
	}
	.w-xl-75px {
		width: 75px;
	}
	.w-xl-100px {
		width: 100px;
	}
	.w-xl-125px {
		width: 125px;
	}
	.w-xl-150px {
		width: 150px;
	}
	.mw-xl-75px {
		max-width: 75px;
	}
	.mw-xl-100px {
		max-width: 100px;
	}
	.mw-xl-125px {
		max-width: 125px;
	}
	.mw-xl-150px {
		max-width: 150px;
	}
	.mw-xl-360px {
		max-width: 360px;
	}
	.mw-xl-540px {
		max-width: 540px;
	}
	.mw-xl-720px {
		max-width: 720px;
	}
}

/* ALERTS */
.alert.show {
	position: relative;
	-webkit-animation: alertAnimation linear 5s forwards;
	animation: alertAnimation linear 5s forwards;
}
@keyframes alertAnimation {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes alertAnimation {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}

/* NAVBAR */
.navbar {
	width: 100%;
	min-height: 3.3125rem;
}
.navbar a {
	color: inherit;
}
.navbar .navbar-brand {
	font-size: 1rem;
	height: 2.3125rem;
	line-height: 2.3125rem;
}
.navbar .navbar-logo {
	height: 2.25rem;
}
.navbar .badge-primary {
	position: relative;
	top: -0.25em;
	font-size: 0.75rem;
}
.navbar .navbar-toggler:focus {
	outline: 0 !important;
}
.navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%238c8c8c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-toggler-icon:hover {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23727272' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
body[data-theme='dark'] .navbar .sidebar-toggle-main-button {
  /* dark icon */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23bfbfbf' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
body[data-theme='dark'] .navbar .sidebar-toggle-main-button:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .nav-link {
	font-size: 0.875rem;
}

@media (max-width: 767px) {
	.navbar .theme-toggle-navbar.desktop {
		display: none;
	}

	.navbar .theme-toggle-navbar.mobile {
		display: inline;
	}
}

@media (min-width: 768px) {
	.navbar .nav-login-group {
		position: absolute;
		right: 1rem;
		padding-right: 0 !important;
		display: flex;
		align-items: center;
	}

	.navbar .theme-toggle-navbar.mobile {
		opacity: 0;
		width: 0;
	}

	.navbar .theme-toggle-navbar.desktop {
		display: inline;
	}
}

.navbar-expand-md .side-toggler {
	display: inline-block;
}

/* SIDEBAR */
.wrapper-wrap {
	min-height: 100vh;
}
.wrapper-side {
	background-color: #f2f2f2;
}
body[data-theme='dark'] .wrapper-side {
	background-color: #262626;
}
.sidebar-wrapper {
	overflow: hidden;
}
.wrapper-side.sidebar-transition,
.wrapper-side.sidebar-transition .sidebar-wrapper {
	-webkit-transition: min-width ease 0.5s, max-width ease 0.5s;
	transition: min-width ease 0.5s, max-width ease 0.5s,
				background-color .2s;
}
.wrapper-side,
.sidebar-wrapper {
	min-width: 0;
	max-width: 0;
}
@media (min-width: 576px) {
	.wrapper-side:not(.toggled),
	.wrapper-side:not(.toggled) .sidebar-wrapper {
		min-width: 3.9rem;
		max-width: 3.9rem;
	}
	.wrapper-side.d-md-block:not(.toggled) ~ .wrapper-content {
		max-width: calc(100vw - 3.9rem);
	}
}
@media (min-width: 1400px) {
	.wrapper-side:not(.toggled),
	.wrapper-side:not(.toggled) .sidebar-wrapper {
		min-width: 12rem;
		max-width: 12rem;
	}
	.wrapper-side.d-md-block:not(.toggled) ~ .wrapper-content {
		max-width: calc(100vw - 12rem);
	}
}

.sidenav {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sidenav a {
	color: inherit;
}
.sidenav li {
	line-height: 2rem;
	white-space: nowrap;
}
.sidenav li:hover {
	background-color: #ececec;
}
body[data-theme='dark'] .sidenav li:hover {
	background-color: #333333;
}

/* TOP NAV TABS */
body[data-theme='dark'] .nav-tabs:not(.nav-tabs-white) {
	border-bottom-color: #808080;
}
.nav-tabs a {
	color: inherit;
}

.nav-tabs .nav-link {
	padding: 0.5rem;
	font-size: 0.875rem;
}
.nav-tabs .nav-link:hover {
	border-color: transparent !important;
	color: #727272 !important;
}
body[data-theme='dark'] .nav-tabs:not(.nav-tabs-white) .nav-link:hover {
	color: #ffffff !important;
}
.nav-tabs .nav-link.active {
	background-color: transparent !important;
	border-color: #dee2ef #dee2ef #ebebeb !important;
	color: #727272 !important;
}
.nav-tabs.nav-tabs-white .nav-link.active {
	border-bottom-color: #ffffff !important;
}
body[data-theme='dark'] .nav-tabs:not(.nav-tabs-white) .nav-link.active {
	border-color: #808080 #808080 #191919 !important;
	color: #ffffff !important;
}

@media (max-width: 575.98px) {
	.nav-tabs {
		border-bottom-color: transparent !important;
	}
	.nav-tabs .nav-link {
		border-radius: 0.25rem;
	}
	.nav-tabs .nav-link.active {
		border-color: #dee2ef !important;
	}
	body[data-theme='dark'] .nav-tabs:not(.nav-tabs-white) .nav-link.active {
		border-color: #808080 !important;
	}
}

@media (max-width: 767.98px) {
	.nav-tabs-md {
		border-bottom-color: transparent !important;
	}
	.nav-tabs-md .nav-link {
		border-radius: 0.25rem;
	}
	.nav-tabs-md .nav-link.active {
		border-color: #dee2ef !important;
	}
	body[data-theme='dark'] .nav-tabs-md:not(.nav-tabs-white) .nav-link.active {
		border-color: #808080 !important;
	}
}

/* FORMS */
label.w-after-75px::after {
	width: 75px;
	text-align: center;
}
label.w-after-100px::after {
	width: 100px;
	text-align: center;
}
label.w-after-125px::after {
	width: 125px;
	text-align: center;
}
label.w-after-150px::after {
	width: 150px;
	text-align: center;
}

.btn-disabled {
	pointer-events: none;
}

.btn-warning {
	color: #ffffff;
}
.btn-warning:hover {
	color: #ffffff;
}
.btn-warning.focus,
.btn-warning:focus {
	color: #ffffff;
}
.btn-warning.disabled,
.btn-warning:disabled {
	color: #ffffff;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
	color: #ffffff;
}

.btn-hover-cancel:hover,
.btn-hover-stop:hover {
	color: #ffffff;
	background-color: #c82333;
	border-color: #bd2130;
}
.btn-hover-resume:hover,
.btn-hover-restart:hover {
	color: #ffffff;
	background-color: #0069d9;
	border-color: #0062cc;
}

.btn-hover-cancel:hover span,
.btn-hover-resume:hover span,
.btn-hover-restart:hover span,
.btn-hover-stop:hover span {
	display: none !important;
}

.btn-sm-field {
	height: calc(1.5em + 0.5rem + 2px);
}
.btn-field {
	height: calc(1.5em + 0.75rem + 2px);
}
.btn-lg-field {
	height: calc(1.5em + 1rem + 2px);
}
.field-flex-container {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
}

@media (min-width: 768px) {
	.field-flex-container {
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
}

@media (max-width: 767.98px) {
	.btn-sm-field,
	.btn-field,
	.btn-lg-field {
		margin-top: 1rem;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
	.btn-field-nowrap {
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}

.btn-left,
.btn-lg-left {
	margin-bottom: 0.5rem;
}
.btn-right,
.btn-lg-right {
	margin-top: 0.5rem;
}

@media (min-width: 576px) {
	.btn-left {
		margin-bottom: 0;
		margin-right: 0.25rem;
	}
	.btn-lg-left {
		margin-bottom: 0;
		margin-right: 0.5rem;
	}
	.btn-right {
		margin-top: 0;
		margin-left: 0.25rem;
	}
	.btn-lg-right {
		margin-top: 0;
		margin-left: 0.5rem;
	}
}

.form-control:-moz-focusring {
	text-shadow: none;
}
input.form-control::placeholder {
	color: #6c757d;
}
input.form-control::-webkit-input-placeholder {
	color: #6c757d;
}
input.form-control::-moz-placeholder {
	color: #6c757d;
}
input.form-control::-ms-input-placeholder {
	color: #6c757d;
}

.form-label-group-float {
	position: relative;
	margin-bottom: 1rem;
}
.form-label-group-float > .form-control,
.input-group > .form-control,
.form-control-xl {
	height: calc(1.5em + 1.375rem + 2px);
}
.form-label-group-float > input {
	padding: 0.825rem 0.75rem 0.8rem;
}
.form-label-group-float > textarea {
	width: 100%;
	min-height: 15rem;
	max-height: 15rem;
}
.form-label-group-float > label {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-height: calc(1.5em + 1.375rem + 2px);
	margin-bottom: 0;
	padding: 0.695rem 0.75rem 0.68rem;
	line-height: 1.5;
	color: #6c757d;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	transition: all 0.1s ease-in-out;
}
@media (max-width: 767.98px) {
	.form-label-group-float > label {
		text-align: left;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
}
.form-group > small,
.form-label-group-float > small,
small.invalid-prompt {
	display: block;
	margin-top: 0.25rem;
	padding: 0 0.5rem;
	color: #dc3545;
}
.form-group > small.hide,
.form-label-group-float > small.hide,
small.invalid-prompt.hide {
	display: none;
}
.form-group > small.text-green,
.form-label-group-float > small.text-green,
small.invalid-prompt.text-green {
	color: #28a745;
}
.form-group > small.text-gray,
.form-label-group-float > small.text-gray,
small.invalid-prompt.text-gray {
	color: #6c757d;
}

.form-label-group-float input::-webkit-input-placeholder {
	color: transparent;
}
.form-label-group-float input::-ms-input-placeholder {
	color: transparent;
}
.form-label-group-float input::-moz-placeholder {
	color: transparent;
}
.form-label-group-float input::placeholder {
	color: transparent;
}
.form-label-group-float input:not(:placeholder-shown) {
	padding-top: 1rem;
	padding-bottom: 0.25rem;
}
.form-label-group-float input:not(:placeholder-shown) ~ label {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	font-size: 0.75rem;
	color: #6c757d;
	height: auto;
}

select.form-control.is-invalid,
select.form-control.is-valid,
.was-validated select.form-control:invalid,
.was-validated select.form-control:valid {
	background-position: right calc(0.375em + 0.9375rem) center;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
	color: #6c757d;
}

/* PAGINATOR */
.pagination *:not(.active) .page-link {
	border: none;
	background: none;
}
.pagination .active .page-link {
	border-radius: 0.25rem;
}
.pagination .page-item > a {
	text-decoration: none;
}

/* CARD */
body[data-theme="dark"] .card {
	background-color: #333333;
}
.card-body {
	background-color: #fff;
	transition: background-color .2s;
}
body[data-theme='dark'] .card-body {
	background-color: #333333;
}
.card-header {
	background-color: #f2f2f2;
	transition: background-color .2s;
}
body[data-theme='dark'] .card-header {
	background-color: #262626;
}

/* MODAL */
.modal {
	color: #212529 !important;
	padding-right: 0 !important;
}
.modal-backdrop {
	top: -50%;
	left: -50%;
	width: 200vw;
	height: 200vh;
}
.image-modal-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	width: 100px;
	height: auto;
}
.modal-body th {
	color: #212529;
}

.modal-body td {
	color: #212529;
}

/* TABLES */
.table {
	background-color: inherit;
	color: inherit;
}
.table td,
.table th {
	vertical-align: middle;
	padding: 0.5rem;
}

/* STATIC GRAPHIC */
.static-graphic {
	max-width: 75%;
	max-height: 50vh;
}
.static-graphic-sm {
	max-width: 50%;
	max-height: 33.3333vh;
}

/* IMAGE MODIFIER */
.flip-v {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}
.flip-h {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

/* BOOTSTRAP 5 FORM OVERRIDE */
.form-check {
	padding-left: 1.5em;
}
.form-check .form-check-input {
	float: left;
	margin-left: -1.5em;
}
.form-check-input {
	width: 1em;
	height: 1em;
	margin-top: 0.25em;
	vertical-align: top;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 1px solid rgba(0, 0, 0, 0.25);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	position: relative;
}
.form-check-input[type='checkbox'] {
	border-radius: 0.25em;
}
.form-check-input[type='radio'] {
	border-radius: 50%;
}
.form-check-input:checked[type='radio'] {
	background-color: #0d6efd;
	border-color: #0d6efd;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input:checked[type='checkbox'] {
	background-color: #0d6efd;
	border-color: #0d6efd;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:indeterminate[type='checkbox'] {
	background-color: #0d6efd;
	border-color: #0d6efd;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

body:not([data-theme="dark"]) .form-check-input:disabled[type='checkbox'] {
	/* Light theme styles */
	background-color: #ededed;
}
  
body[data-theme="dark"] .form-check-input:disabled[type='checkbox'] {
	/* Dark theme styles */
	background-color: #b4b4b4;
}

.form-check-input:focus,
.form-control:focus,
.form-select:focus,
.custom-select:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.glow {
	border: 1px solid;
	border-color: #86b7fe !important;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.offset-border {
	border: 1px solid;
	border-color: transparent;
}

/* BOOTSTRAP 5 POINTER EVENTS */
.pe-none {
	pointer-events: none !important;
}
.pe-auto {
	pointer-events: auto !important;
}
.cursor-default {
	cursor: default;
}
.cursor-pointer {
	cursor: pointer;
}
.cursor-none {
	cursor: none;
}
.cursor-auto {
	cursor: auto;
}

/* || INDEX PAGE */
.jumbotron {
	background: unset;
	max-width: 48rem;
}

.marketing-image {
	height: 6.25rem;
}

.featurette-text {
	min-height: unset;
}

.featurette-heading {
	font-weight: 300;
	letter-spacing: -0.05rem;
}
@media (min-width: 576px) {
	.featurette-heading {
		font-size: 3.125rem;
	}
}

.featurette-image,
.last-featurette-image {
	width: 16rem;
}
.last-featurette-images {
	height: 16rem;
}
@media (min-width: 768px) {
	.featurette-image,
	.last-featurette-image {
		width: 32rem;
	}
	.last-featurette-images {
		height: 32rem;
	}
}

/* || PLAN PAGE */
.card-deck .card {
	min-width: 14rem;
	border: 0;
	border-radius: 1rem;
	transition: box-shadow 0.25s;
	box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
	word-wrap: break-word;
}
.card-deck .card:hover {
	box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.25);
}

/* || FONT CHEAT */
@font-face {
	font-family: 'glyphs-icon';
	src: url('https://s3.us-east-2.amazonaws.com/cdn.mailmail.com/static/glyphs-icons.ttf')
			format('ttf'),
		url('https://s3.us-east-2.amazonaws.com/cdn.mailmail.com/static/glyphs-icons.woff')
			format('woff');
}

@font-face {
    font-family: 'sf pro';
    src: url('/static/builder-assets/fonts/SF-Pro.ttf') format('truetype');
}

.glyphs {
	-webkit-font-smoothing: antialiased;
	font-family: 'glyphs-icon';
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.glyphs.glyphs-autoscrape::before {
	content: '\f000';
}
.glyphs.glyphs-mailmail::before {
	content: '\f001';
}
.glyphs.glyphs-mailmail-wide::before {
	content: '\f002';
}
.glyphs.glyphs-quantityai::before {
	content: '\f003';
}
.glyphs.glyphs-three-sigma::before {
	content: '\f004';
}

/* For Badge Icons */
#autoscrape-astronaut, #appSumoImg {
    max-width: 13.5rem;
    max-height: 15rem;
}
#imgDiv {
	margin-top: 0.8rem;
}


/* || CUSTOM || */

/* || INDEX PAGE */
.section-height {
  min-height: 60vh;
}
.forceshrink-height{
  min-height: 1px;
}
.homepage-section1 {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow: hidden;
}
.homepage-section1-child {
  margin-bottom: 9rem;
}
body[data-theme="dark"] .homepage-section1-child {
  margin-bottom: 9rem;
}
@media (max-width: 595.98px) {
  .homepage-section1 {
    background-size: 425%;
  }
}
.homepage-section2,
.homepage-section4 {
  background: #ffffff;
  transition: background-color .2s;
}
body[data-theme="dark"] .homepage-section2,
body[data-theme="dark"] .homepage-section4 {
  background: #191919;
}
.homepage-section1b,
.homepage-section3,
.homepage-section5 {
  background: #faf8dc;
}
body[data-theme="dark"] .homepage-section1b,
body[data-theme="dark"] .homepage-section3,
body[data-theme="dark"] .homepage-section5 {
  background: #1d2121;
}
.homepage-section6 {
  background-image: linear-gradient(to bottom, #faf8dc, #bdf4f5);
}
body[data-theme="dark"] .homepage-section6 {
  background-image: linear-gradient(to bottom, #1d2121, #052d33);
}

.wave {
  display: block;
  color: #faf8dc;
  background-size: cover;
}
body[data-theme="dark"] .wave {
  color: #1d2121;
}

.link-dark.close {
  cursor: pointer;
}

.iridescent-glow i::before {
  /* make magicsend sidebar icon show on safari */
  display: inline;
}

/* || TO BE UPDATED AFTER BOOTSTRAP 5 */
@media (min-width: 1400px) {
  .xxl-inline {
    display: inline !important;
  }
}

@media (min-width: 1400px) {
  .xxl-margin {
    margin-right: 0!important;
    margin-left: 0!important;
  }
}

/* || LOGIN PAGE */
.divider {
  display: flex;
  align-items: center;
}

.divider-line {
  flex-grow: 1;
  border-color: #8c8c8c;
}

[data-theme='dark'] .divider-line {
  border-color: #bfbfbf;
}

.divider-text {
  margin: 0 10px;
  font-size: 14px; /* Adjust the font size as needed */
  font-weight: bold;
}

.company-logo {
  max-height: 25px;
  width: auto;
}

.btn-google {
  color: #2D333A;
  background-color: #fafafa;
  font-family: 'Roboto', sans-serif;
}

.btn-apple {
  color: #2D333A;
  background-color: #fafafa;
}

.btn-apple:hover, .btn-google:hover {
  background-color: #ffffff;
}

  /* Custom class for left padding on the image */
.img-padding-left {
  padding-left: 1rem; /* You can adjust the value to control the amount of left padding */
}

/* Custom class for right padding on the Google text */
.text-padding-right-google {
  padding-right: 2rem; /* You can adjust the value to control the amount of right padding */
}

/* Custom class for right padding on the Facebook text */
.text-padding-right-apple {
  padding-right: 1rem; /* You can adjust the value to control the amount of right padding */
}

/* || PROMOTE PAGE */
.section-height {
  min-height: 60vh;
}
.promotepage-section1 {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow: hidden;
}
.promotepage-section1-child {
  margin-bottom: 9rem;
}
body[data-theme="dark"] .promotepage-section1-child {
  margin-bottom: 9rem;
}
@media (max-width: 595.98px) {
  .promotepage-section1 {
    background-size: 425%;
  }
}
.promotepage-section2,
.promotepage-section4,
.promotepage-section6 {
  background: #ffffff;
  transition: background-color .2s;
}
body[data-theme="dark"] .promotepage-section2,
body[data-theme="dark"] .promotepage-section4,
body[data-theme="dark"] .promotepage-section6 {
  background: #191919;
}
.promotepage-section3,
.promotepage-section5,
.promotepage-section7 {
  background: #faf8dc;
}
body[data-theme="dark"] .promotepage-section3,
body[data-theme="dark"] .promotepage-section5,
body[data-theme="dark"] .promotepage-section7 {
  background: #1d2121;
}
.promotepage-section6 {
  background-image: linear-gradient(to bottom, #faf8dc, #bdf4e9);
}
body[data-theme="dark"] .promotepage-section6 {
  background-image: linear-gradient(to bottom, #1d2121, #0e191b);
}
.promotepage-section7 {
  background-image: linear-gradient(to bottom, #bdf4e9, #bdf4f5);
}
body[data-theme="dark"] .promotepage-section7 {
  background-image: linear-gradient(to bottom, #0e191b, #052d33);
}

/* || STATIC PAGE */
.single-page {
  background-color: #faf8dc;
}
body[data-theme="dark"] .single-page {
  background-color: #1D2121;
}

/* || CLEAN UP THIS */
.tooltip {
  pointer-events: none;
}

.tooltip-inner {
  max-width: 350px;
}

.search-form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.field-form-control::placeholder {
  color: #495057;
}

/* || TABLES */

td,
th {
  text-align: left !important;
  color: #8c8c8c;
}

.unsortable > td {
  padding: 0.5rem;
}

th {
  padding: 0.5rem;
}

.ui-sortable > tr > td {
  padding: 0.5rem;
}

/* || MODAL */

.custom-form-check {
  position: unset;
  margin-left: unset;
}

.image-template-modal-body th,
.image-template-modal-body td,
.bg-image-modal-body th,
.bg-image-modal-body td {
	color: #212529;
}


/* || ATTACHMENT PREVIEW PAGE */

#myEvents {
  white-space: nowrap;
}

.attachment-preview-img {
  background: #ffffff;
}

.attachment-preview-pdf {
  height: 500px;
  background: #ffffff;
  padding-right: 10px;
}

/* || ATTACHMENT PAGE */
.attachment {
  max-width: 960px;
  margin-top: 100px;
}

.attachment-table-container {
  overflow: auto;
  max-height: 400px;
  position: relative;
}

.attachment-table {
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
}

.attachment-folder {
  color: #8c8c8c;
  max-width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.attachment tbody tr {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

.attachment tr td {
  text-align: center;
  vertical-align: middle;
  margin-left: 0px;
  margin-right: 0px;
}

.attachment-filter {
  width: 50%;
}

.attachment-customselect {
  width: 11.8rem;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .attachment-customselect {
    width: 100%;
  }
}

.url-truncation {
  width: 9rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default style for truncation */
.name-truncation {
  max-width: 5rem;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default style for truncation for templates */
.name-truncation-m-b-list {
  max-width: 3rem;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default style for truncation for templates */
.name-truncation-templates {
  max-width: 6rem;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default style for truncation for templates */
.name-truncation-list-cleaner {
  max-width: 8rem;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default style for truncation for templates */
.name-truncation-attchm {
  max-width: 3rem;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Set truncation character limit for screen widths greater than or equal to 992px */
@media screen and (min-width: 994px) {
  .name-truncation-m-b-list {
    max-width: 14rem;
  }
  .name-truncation-templates {
    max-width: 23rem;
  }
  .name-truncation-list-cleaner {
    max-width: 18rem;
  }
  .name-truncation-attchm {
    max-width: 15rem;
  }
}

/* Set truncation character limit for screen widths greater than or equal to 768px */
@media screen and (min-width: 768px) and (max-width: 994px) {
  .name-truncation {
    max-width: 9rem;
  }
  .name-truncation-m-b-list {
    max-width: 13rem;
  }
  .name-truncation-templates {
    max-width: 21rem;
  }
  .name-truncation-list-cleaner {
    max-width: 17rem;
  }
  .name-truncation-attchm {
    max-width: 13rem;
  }
}

@media (min-width:576px) and (max-width: 767.98px) {
  .name-truncation-m-b-list {
    max-width: 3rem;
  }
  .name-truncation-templates {
    max-width: 10em;
  }
  .name-truncation-list-cleaner {
    max-width: 8rem;
  }
  .name-truncation-attchm {
    max-width: 5rem;
  }
}

@media (max-width:767.98px) {
  .url-truncation {
    width: 6rem;
  }
  .name-truncation {
    max-width: 6em;
  }
}

@media (max-width:340px) {
  .btn-guide-left {
    margin-left: 0 !important;
  }
  .btn-guide-right {
    margin-right: 0 !important;
  }
}

.guidebar-text {
  line-height: 2;
  font-size: 14px;
}

/* || CAMPAIGNS PAGE */
.input-group-addon {
  padding: 0.625rem 0.75rem;
  color: #495057;
  background-color: #ebebeb;
  border: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}

.campaign-list-select {
  width: 365px;
}

@media (max-width: 576px) {
  .campaign-list-select {
    width: 100%;
  }
  .campaign-list-parent {
    padding-top: 1em !important;
    padding-left: 0 !important;
    width: 100% !important;
  }
  .campaign-list-button {
    width: 100% !important;
  }
}

.campaign-table-header {
	min-width: 81.23px;
}

/* || TEMPLATES PREVIEW PAGE */
.template_preview {
  padding-top: 100px;
}

.template-preview-preview {
  height: 500px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .template_preview {
    margin: auto;
    width: 100%;
    display: flex;
  }
  .attachment_preview {
    margin: auto;
    width: 100%;
    display: flex;
  }
}

/* || TEMPLATES PAGE */
.templates-table-container {
  overflow: auto;
  max-height: 400px;
  position: relative;
}

.template-filter {
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.templates-folder-name {
  width: 120px;
}

@media screen and (max-width: 768px) {
  .attachment-filter-search .filter-container {
    width: 23.5% !important;
  }
}

.templates-table {
  border-collapse: collapse;
}

.fafa-icon {
  width: 30px !important;
  text-decoration: none !important;
}

.fafa-icon-disable-padding {
  padding: 0 !important;
  width: 30px !important;
  text-decoration: none !important;
}

.custom-file .custom-file-label {
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 90px;
}

.templates-select-existing,
.templates-select-new {
  display: none;
}

/* TEMPLATE BUILDER DROPDOWNS */
#builder-panel-style {
  height: calc(100% - 38px);
  overflow-y: auto;
}
#builder-panel-style .dropdown-menu {
  max-height: 170px;
  overflow-x: hidden;
  margin-top: 0px;
}
#builder-panel-style .btn-split-left{
  min-width: 25px;
}
#builder-panel-style .dropdown-item {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
#builder-panel-style .dropdown-item:focus {
  outline: none;
}
#builder-panel-style .dropdown-menu button:hover {
  color: #212529 !important;
}
#builder-panel-style .dropdown-menu button:active {
  color: white !important;
}
.fix-dropdown-toggle {
  text-align: left;
  border: 1px solid rgb(206, 212, 218);
}
.fix-dropdown-toggle::after {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

#style-typography-size {
  flex-shrink: 0;
  width: 56px;
  height: 28px;
}
#style-typography-size .input-btn{
  width:33px;
  color: #212529;
}
#style-typography-size .btn.focus, #style-typography-size .btn:focus, #style-typography-size .form-control:focus {
  border-color: rgb(206, 212, 218);
  outline: 0;
  box-shadow: none;
}
#style-typography-size:focus-within {
  outline: 0;
  border-radius: 3.2px;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
#style-typography-size .btn-split-right {
  padding-left: 6px;
  padding-right: 6px;
}

#style-typography-family #typography-family-dropdown > span {
  display: block;
  width: -webkit-calc(100% - 14px);
  width:    -moz-calc(100% - 14px);
  width:         calc(100% - 14px);
  max-width: 78px;
  white-space: nowrap;
  overflow: hidden;
}
#style-typography-family {
  height: 28px;
  flex-grow: 1;
  overflow-x: visible; /* fixes dropdown causing scrollbar to appear */
}
#style-appearance-padding .dropdown-item {
  padding-left: 0px;
  padding-right: 0px;
}
#style-appearance-padding .dropdown-toggle, #style-appearance-padding .dropdown-menu .d-flex {
  width: 56px;
}

/* COLOUR DROPDOWNS */
#style-typography-color .btn-group, #style-appearance-background .btn-group, #style-button-editor .btn-group {
  height: 28px;
}
#style-typography-color .dropdown-toggle, #style-appearance-background .dropdown-toggle, #style-button-editor .dropdown-toggle {
  padding:0px;
  width: 56px;
}
#style-typography-color .dropdown-toggle > span, #style-appearance-background .dropdown-toggle > span, #style-button-editor .dropdown-toggle > span {
  display: block;
  width: 32px;
  height: 26px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-right: 1px solid rgb(206, 212, 218);
}

/* TEXT EFFECTS */
.iridescent-glow {
	background: linear-gradient(90deg, rgb(139,0,60) 0%, rgb(128,100,0) 32.04%, rgb(0,134,50) 66%, rgb(0,50,137) 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	animation: hue 6s ease 0s infinite alternate none;
}

body[data-theme='dark'] .iridescent-glow {
	background: linear-gradient(90deg, rgb(238,83,150) 0%, rgb(241,194,27) 32.04%, rgb(73,205,122) 66%, rgb(69,137,255) 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	animation: hue 6s ease 0s infinite alternate none;
}

@keyframes hue {
	0% {
		filter: hue-rotate(0deg);
	}
	100% {
		filter: hue-rotate(-1turn);
	}
}

/* || LISTS PAGE */
@media screen and (max-width: 768px) {
  #lists-content {
    float: none;
    margin-right: 15px;
    margin-left: 15px;
    width: 100%;
    border: 0;
  }
}

.main-list-div {
  padding-top: 100px;
  text-align: center;
}

.lists {
  margin-left: 10%;
}

.manage-list-select {
  width: 80%;
}

.lists-tab {
  /*display:inline-block !important;*/
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 990px) {
  .lists-tab {
    width: 100%;
  }
}

.m-b-lists-table {
  overflow: auto;
  max-height: 200px;
}

.u-a-lists-table {
  overflow: auto;
  max-height: 350px;
}

.mailing-list-table,
.blacklist-table,
.autoscrape-list-table {
  border-collapse: collapse;
}

/* || SCHEDULER PAGE */
.bootstrap-select .dropdown-menu {
  width: 100% !important;
  max-height: none !important;
}
.bootstrap-select .dropdown-menu span.text {
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.dropdown-menu .inner {
  text-align: left !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget th {
  text-align: center !important;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 5px !important;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  margin-left: -1px !important;
  margin-right: -1px !important;
}

/* Mobile Block */
.mobile-alert, .browser-alert {
  padding-top: 15px;  
  padding-bottom: 15px;
  height: calc(100vh - 3.3125rem);
  display: none;
}
.mobile-alert .center-div, .browser-alert .center-div {
  min-height: 100%;
  z-index: 1069;
}

@media (max-width: 992px), (max-height: 575.98px) {
  .mobile-alert {
    display: block;
  }
  #gjs {
    display: none !important;
  }
}

@media (max-width: 992px), (max-height: 575.98px) {
  .mobile-alert-modal {
    display: none !important;
  }
}

/* To make the codemirror and viewer stack on top of each other during responsive */
@media (max-width: 767px) {
  #code,
  #preview {
    float: none;
    margin-right: 0;
    border: 0;
    width: 100%;
    height: 300px;
    /* border-bottom:2px solid #000; */
  }
}

/* || GRAPE JS */
#gjs-rte-toolbar,
.gjs-bg-main,
.gjs-cv-canvas__frames,
.gjs-clm-select option,
.gjs-clm-tags .gjs-sm-colorp-c,
.gjs-editor,
.gjs-mdl-dialog,
.gjs-nv-item .gjs-nv-title-c,
.gjs-off-prv,
.gjs-pn-panel,
.gjs-select option,
.gjs-sm-sector .gjs-sm-colorp-c,
.gjs-sm-select option,
.gjs-sm-unit option,
.sp-container,
.gjs-blocks-c {
  background-color: #f2f2f2;
}

body[data-theme="dark"] #gjs-rte-toolbar,
body[data-theme="dark"] .gjs-bg-main,
body[data-theme="dark"] .gjs-cv-canvas__frames,
body[data-theme="dark"] .gjs-clm-select option,
body[data-theme="dark"] .gjs-clm-tags .gjs-sm-colorp-c,
body[data-theme="dark"] .gjs-editor,
body[data-theme="dark"] .gjs-mdl-dialog,
body[data-theme="dark"] .gjs-nv-item .gjs-nv-title-c,
body[data-theme="dark"] .gjs-off-prv,
body[data-theme="dark"] .gjs-pn-panel,
body[data-theme="dark"] .gjs-select option,
body[data-theme="dark"] .gjs-sm-sector .gjs-sm-colorp-c,
body[data-theme="dark"] .gjs-sm-select option,
body[data-theme="dark"] .gjs-sm-unit option,
body[data-theme="dark"] .sp-container,
body[data-theme="dark"] .gjs-blocks-c {
  background-color: #262626;
}

#gjs-rte-toolbar .gjs-rte-btn,
.gjs-btn-prim,
.gjs-btnt,
.gjs-clm-tags .gjs-sm-composite.gjs-clm-field,
.gjs-clm-tags .gjs-sm-field.gjs-sm-composite,
.gjs-clm-tags .gjs-sm-stack #gjs-sm-add,
.gjs-color-main,
.gjs-mdl-dialog,
.gjs-off-prv,
.gjs-pn-btn,
.gjs-pn-panel,
.gjs-sm-sector .gjs-sm-composite.gjs-clm-field,
.gjs-sm-sector .gjs-sm-field.gjs-sm-composite,
.gjs-sm-sector .gjs-sm-stack #gjs-sm-add,
.gjs-two-color {
  color: #8c8c8c;
}
body[data-theme="dark"] #gjs-rte-toolbar .gjs-rte-btn,
body[data-theme="dark"] .gjs-btn-prim,
body[data-theme="dark"] .gjs-btnt,
body[data-theme="dark"] .gjs-clm-tags .gjs-sm-composite.gjs-clm-field,
body[data-theme="dark"] .gjs-clm-tags .gjs-sm-field.gjs-sm-composite,
body[data-theme="dark"] .gjs-clm-tags .gjs-sm-stack #gjs-sm-add,
body[data-theme="dark"] .gjs-color-main,
body[data-theme="dark"] .gjs-mdl-dialog,
body[data-theme="dark"] .gjs-off-prv,
body[data-theme="dark"] .gjs-pn-btn,
body[data-theme="dark"] .gjs-pn-panel,
body[data-theme="dark"] .gjs-sm-sector .gjs-sm-composite.gjs-clm-field,
body[data-theme="dark"] .gjs-sm-sector .gjs-sm-field.gjs-sm-composite,
body[data-theme="dark"] .gjs-sm-sector .gjs-sm-stack #gjs-sm-add,
body[data-theme="dark"] .gjs-two-color {
  color: #bfbfbf;
}

.gjs-mdl-container .gjs-modal-text {
  color: #212529 !important;
}

.gjs-block {
  background-color: transparent !important;
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-shadow: 0 0px 0 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow, color 0.2s ease 0s;
}
.gjs-block:hover {
  color: #727272;
}
body[data-theme="dark"] .gjs-block {
  background-color: #333333;
}

body[data-theme="dark"] .gjs-block:hover {
  border-color: #262626;
  color: #ffffff;
}

.gjs-four-color,
.gjs-pn-btn:active,
.gjs-pn-btn:hover {
  color: #727272 !important;
}

body[data-theme="dark"] .gjs-four-color,
body[data-theme="dark"] .gjs-pn-btn:active,
body[data-theme="dark"] .gjs-pn-btn:hover {
  color: #ffffff !important;
}

.gjs-one-bg {
  background-color: #f2f2f2;
}
body[data-theme="dark"] .gjs-one-bg {
  background-color: #262626;
}

.gjs-layer-title {
  background-color: unset;
  padding: 5px 10px 5px 30px;
}

.gjs-layer-title-c:hover {
  background-color: #ebebeb;
}
body[data-theme="dark"] .gjs-layer-title-c:hover {
  background-color: #191919;
}

.gjs-pn-views-container {
  z-index: 0;
}

.gjs-mdl-dialog {
  font-weight: unset;
  background-color: #ffffff !important;
}
.gjs-mdl-dialog-sm {
  width: 450px;
  background-color: #ffffff !important;
}

.gjs-mdl-container {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #212529;
}
.gjs-mdl-container .nav-link {
  color: #212529;
}
.gjs-mdl-container .nav-link.active,
.gjs-mdl-container .nav-link:hover {
  color: #2c3035;
}

.gjs-import-label,
.gjs-export-label {
  color: #212529;
  font-size: 0px;
  margin: 1rem;
}
.gjs-import-label::after {
  font-size: 16px;
  content: "Paste your code here and click import.";
}
.gjs-export-label::after {
  font-size: 16px;
  content: "Copy the code to use or click export button.";
}

.gjs-btn-prim {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff !important;
  background-color: #007bff;
  border-color: #007bff;
  float: right;
  white-space: nowrap;
}
.gjs-btn-prim:not(.gjs-modal-btn) {
  margin-top: 1rem !important;
}

.gjs-am-add-field > input {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (max-width: 1280px) {
  .gjs-fonts::before {
    font-size: 4em;
  }
}

.gjs-am-file-uploader {
  margin: 1rem 1rem 0;
  width: calc(100% - 2rem);
}
.gjs-am-assets-cont {
  margin: 0 1rem 1rem;
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .gjs-am-file-uploader {
    margin: 1rem;
    margin-right: 0.5rem;
    width: calc(55% - 1.5rem);
  }
  .gjs-am-assets-cont {
    margin: 1rem;
    margin-left: 0.5rem;
    width: calc(45% - 1.5rem);
  }
}
.gjs-am-file-uploader > form {
  border: none;
  margin-bottom: 0;
}
.gjs-am-file-uploader > form,
.gjs-am-assets-cont {
  border-radius: 0;
  padding: 0;
  background: #f2f2f2;
}
.gjs-am-file-uploader > form {
  height: 325px;
  max-height: 30vh;
}
@media (min-width: 768px) {
  .gjs-am-file-uploader > form {
    max-height: 325px;
  }
}
.gjs-am-file-uploader #gjs-am-title,
.gjs-am-file-uploader > form #gjs-am-uploadFile {
  top: 50%;
  left: 50%;
  --webkkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
  width: auto;
}
.gjs-am-close {
  display: none !important;
}
.gjs-am-assets {
  height: 325px;
}
.gjs-am-asset {
  padding: 0.5rem;
  border-bottom: 0;
}
.gjs-am-file-uploader > form #gjs-am-uploadFile {
  width: 100%;
  height: 100%;
  --webkit-transform: translate(0);
  transform: translate(0);
}
.gjs-am-asset.gjs-am-asset-image:hover {
  background-color: #ececec;
}

.gjs-mdl-header,
.gjs-mdl-content {
  padding: 1rem;
}

.gjs-mdl-content {
  padding: unset;
}

.gjs-layer-name,
.gjs-layer-count {
  line-height: 1;
}

.gjs-layer-count {
  padding: 5px 0;
  top: 5px;
}

.gjs-layer-move {
  padding: 7px;
}

.gjs-layer-vis {
  padding: 10px;
}

.gjs-am-assets-header {
  display: none;
}

.gjs-am-preview-cont {
  /* width: 10%; */
  width: 100px;
  height: 100px;
  background-color: transparent;
}

.gjs-am-preview {
  width: 100px;
  height: 100px;
  background-size: 100%;
  background-color: transparent;
}

.gjs-radio-item-label {
  display: block !important;
}

.gjs-clm-tag {
  color: #ffffff;
}

.color-block {
  height: 46px;
  width: 46px;
}
.gjs-modal-btn {
  float: right;
}

.builder-template-preview {
  width: 18rem;
  height: 18rem;
  background-color: #ffffff;
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.template-height {
  max-height: 500px;
}

/* || NEW BUILDER  */
.active-style .modifiable:focus-visible {
  outline-color: #0069D9;
}
.builder-editor {
  box-shadow: 0 0 0.375rem rgb(0 0 0 / 20%);
}
body[data-theme="dark"] .builder-editor {
  box-shadow: 0 0 0.375rem rgb(255 255 255 / 20%);
}
.builder-left-pane,
.builder-right-pane {
  background-color: #f2f2f2;
  transition: background-color .2s;
}
body[data-theme="dark"] .builder-left-pane,
body[data-theme="dark"] .builder-right-pane {
  background-color: #262626;
}
.builder-right-pane {
  width: 10%;
  min-width: 12rem;
  max-width: 18rem; 
}
.builder-commands {
  padding: 0.25rem 0.375rem;
  border-bottom: 0.125rem solid rgb(0 0 0 / 20%);
}
body[data-theme="dark"] .builder-commands {
  border-bottom: 0.125rem solid rgb(255 255 255 / 20%);
}
.builder-commands .builder-btn {
  margin: 0 0.125rem;
  padding: 0.125rem 0.375rem;
  line-height: 1.5rem;
  font-size: 1.125rem;
  text-align: center;
  min-width: 1.75rem;
  cursor: pointer;
}
.builder-commands .builder-btn-active {
  background-color: rgb(0 0 0 / 10%);
}
body[data-theme="dark"] .builder-commands .builder-btn-active {
  background-color: rgb(255 255 255 / 10%);
}


.builder-panel .drag-object {
  text-align: center;
}
.builder-panel .drag-object:hover {
  box-shadow: 0 0 0.375rem rgb(0 0 0 / 20%);
}
body[data-theme="dark"] .builder-panel .drag-object:hover {
  box-shadow: 0 0 0.375rem rgb(255 255 255 / 20%);
}
.builder-panel .drag-object .mmi {
  display: block;
  font-size: 2rem;
}
.builder-canvas {
  border-right: 0.125rem solid rgb(0 0 0 / 20%);
}
body[data-theme="dark"] .builder-canvas {
  border-right: 0.125rem solid rgb(255 255 255 / 20%);
}
.builder-canvas-sm {
  max-width: 320px;
}
.builder-canvas-md {
  max-width: 640px;
}
.builder-canvas-lg {
  max-width: 100%;
}
.builder-email {
  transition: max-width 0.5s ease-in-out;
}
.builder-panel .btn-split-left {
  border: 1px solid rgb(206, 212, 218);
  border-right: 0;
}
.builder-panel .btn-split-right {
  border: 1px solid rgb(206, 212, 218);
  border-left: 0;
}
.builder-panel .btn-text-clip {
  background: inherit;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: invert(1) grayscale(1) contrast(9);
}
.builder-panel .builder-dropdown {
  min-width: 4rem;
}
.builder-panel .builder-color-swatch .btn {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.2rem;
  padding: 0;
  font-size: 0;
  border-color: rgb(0 0 0 / 0.25);
}
.builder-panel .builder-color-swatch .btn.active{
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 50%);
}
.builder-panel #style-appearance-background .dropdown-item.active, .builder-panel #style-typography-color .dropdown-item.active{
  box-shadow: none;
}
.builder-panel .btn-group>.input-btn:not(.dropdown-toggle):not(:last-child) {
  border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#builder-panel-block .builder-btn-hover {
  color: #727272;
}
#builder-panel-style .padding-label {
  cursor: pointer;
}
body[data-theme="dark"] #builder-panel-block .builder-btn-hover {
  color: #fff;
}
#builder-panel-block .text-icon i{
  font-size: 2rem;
}
#builder-panel-block .text-icon :not(i){
  display: block;
}
#builder-panel-block > div.w-45 {
  width: 5.5rem;
  height: 5.5rem; 
}
#editor-container .selected-link-highlight,
#editor-container .selected-link:hover,
#editor-container .selected-link:active,
#editor-container .selected-link:focus {
  box-shadow: 0 0 0 1px rgb(38 143 255 / 100%);
}
#editor-container .ql-tooltip input[type=text] {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: calc(1.5em + .75rem);
}
#editor-container.ql-snow a[href]{
  color: #007bff;
  text-decoration: underline;
}
#editor-container.ql-snow a[href]:hover{
  color: #0063cc;
}
.mm-body .builder-padding-hover {
  color: #000000!important;
  background-image:linear-gradient(to bottom, rgba(256, 256, 256, 1) 0%, rgba(256, 256, 256, 1) 100%), linear-gradient(to bottom, rgba(40, 167, 69, 0.25) 0%, rgba(40, 167, 69, 0.25) 100%);
  background-clip: content-box, padding-box;
}
.mm-body .builder-padding-hover * {
  color: #000000!important;
}
.mm-body .builder-padding-hover-side {
  position: absolute;
  display: block;
  background-color: rgb(40, 167, 69);
  opacity: 0.25;
  z-index: 2;
}
.mm-body .builder-content-hover {
  position: absolute;
  display: block;
  background-color: rgb(0, 123, 255);
  opacity: 0.25;
  z-index: 2;
}
.my-half {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}
.reduce-space{
  flex-grow: 0;
}
#builder-panel-block-hidden{
  position:absolute;
  top:-1000px;
}

#builder-panel-block-hidden .text-icon i{
  font-size: 2rem;
}
#builder-panel-block-hidden .text-icon :not(i){
  display: block;
}
#builder-panel-block-hidden > div.w-45 {
  width: 5.5rem;
  height: 5.5rem; 
}
#background-color-picker,
#button-color-picker,
#font-color-picker {
  line-height: 1;
}
#background-color-hex label,
#font-color-hex label,
#button-color-hex label {
  position: relative;
  top: 3px;
}
#background-color-hex input,
#font-color-hex input,
#button-color-hex input {
  height: 31px;
  width: 85px;
}
#editor-image {
  cursor: pointer;
}
#style-social-editor .dropdown-toggle,
#style-social-editor .form-group > .btn,
#style-button-editor .dropdown-toggle {
  width: 56px;
  height: 28px;
}
#style-social-editor .dropdown-toggle {
  padding-top: 3px;
  padding-left: 13px;
}
#style-social-editor img,#style-social-editor i{
  display: block;
  width: 20px;
  height: 20px;
}
#style-social-editor .dropdown-menu {
  min-width: 1.5rem;
}
#style-social-editor hr {
  border-color: #8c8c8c;
  opacity: 50%;
}
body[data-theme="dark"] #style-social-editor hr {
  border-color: #bfbfbf;
  opacity: 50%;
}
#style-social-editor .social-delete {
  position: relative;
}
#style-social-editor .social-delete > i {
  position: absolute;
  right: 0px;
  top: 1.8rem;
}
/* Thrash button fade animation */
.fade-effect{
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Builder social media trash bin */
.tb-sm-trash{
  position: relative!important; /* make sure the element is positioned */
  top: 4.15em!important; /* move the element 50px (50/12) equivalent down */
  width: 0.875em!important; /* make the element 10.5px (10.5/12) equivalent wide */
}
/* Trash button disabled */
.trash-disabled{
  pointer-events: none;
}
.trash-disabled:before{
  color: #b8b8b8;
}
body[data-theme="dark"] .trash-disabled:before {
  color: #757575;
}
#style-button-editor .custom-file, #style-button-editor .custom-file * {
  cursor: pointer;
}
#style-button-editor .custom-file .custom-file-label {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  padding-right: 50px;
}
.custom-file-label::after {
  padding: .375rem .375rem
}
#social-add {
  height:28px;
  width:28px;
  padding:0px;
  border-radius: 20px;
}
#social-add i {
  margin: auto;
}
.text-icon {
  font-size: 0.7rem;
}

.builder-toggle-group {
  color: #8c8c8c;
  background-color: rgb(0 0 0 / 0.1);
}
.builder-toggle-group:hover {
  color: #727272;
}
body[data-theme="dark"] .builder-toggle-group {
  color: #bfbfbf;
  background-color: rgb(255 255 255 / 0.1);
}
body[data-theme="dark"] .builder-toggle-group:hover{
  color: #fff;
}

#loading-folder-templates {
  height: 38px;
}

.dropup.dropdown-toggle-split::after {
  display: inline-block;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dual-dropdown .btn {
  padding: 0 0.5rem;
  line-height: 0.5;
}
.dual-dropdown .btn:first-child {
  padding-top: 0.25rem;
}
.dual-dropdown .btn:last-child {
  padding-bottom: 0.25rem;
}



/* || TUTORIAL PAGE */
@media( max-width: 767.98px) {
  :target:before {
    content: "";
    display: block;
    height: 100px;
    margin: -100px 0 0;
  }
  .guide-block:nth-child(2)::before{
    background: linear-gradient(to bottom, #f6f5e0, #faf8dc);
  }
  .guide-block:nth-child(2n + 3)::before{
    background-color: #faf8dc;
  }
  .guide-block:nth-child(2n + 4)::before{
    background-color: #ffffff;
  }
  body[data-theme="dark"] .guide-block:nth-child(2)::before{
    background: linear-gradient(to bottom, #191919, #1d2121);
  }
  body[data-theme="dark"] .guide-block:nth-child(2n + 3)::before{
    background-color: #1d2121;
  }
  body[data-theme="dark"] .guide-block:nth-child(2n + 4)::before{
    background-color: #191919;
  }
}

@media( max-width: 440px) {
  :target:before {
    content: "";
    display: block;
    height: 150px;
    margin: -70px 0 0;
  }
}

@media( max-width: 348px) {
  :target:before {
    content: "";
    display: block;
    height: 190px;
    margin: -70px 0 0;
  }
}


.guide-navlink {
  display: initial;
  padding: unset !important;
  font-size: inherit !important;
}
.bg-guide .guide-content {
  max-width: calc(100% - 12rem);
}
.bg-guide .guide-link {
  white-space: nowrap;
}
.bg-guide .guide-link a {
  color: inherit;
}
.bg-guide .guide-link-container {
  background-color: #f2f2f2;
  background: linear-gradient(to bottom, #ebebeb, #f2f2f2);
  position: relative;
  width: 18rem;
  z-index: 1;
}
/* hack to get fade transition for gradient background */
.bg-guide .guide-link-container::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #262626;
  background: linear-gradient(to bottom, #191919, #262626);
  opacity: 0;
  transition: opacity .2s;
}
body[data-theme="dark"] .bg-guide .guide-link-container::after {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .bg-guide .guide-content {
    max-width: 100%;
    order: 2;
  }
  .bg-guide .guide-link-container {
    order: 1;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  .bg-guide .guide-link-container .nav-item {
    width: auto !important;
  }
}
.bg-guide .guide-block {
  min-height: 30vh;
}
.bg-guide .guide-block:nth-child(1) {
  background-color: #ebebeb;
  background: linear-gradient(to bottom, #ebebeb, #faf8dc);
  position: relative;
  z-index: 1;
}
/* hack to get fade transition for gradient background */
.bg-guide .guide-block:nth-child(1)::after {
  background-color: #191919;
  background: linear-gradient(to bottom, #191919, #1d2121);
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity .2s;
}
.bg-guide .guide-block:nth-child(2n + 2) {
  background-color: #faf8dc;
}
.bg-guide .guide-block:nth-child(2n + 3) {
  background-color: #ffffff;
}
body[data-theme="dark"] .bg-guide .guide-block:nth-child(1)::after {
  opacity: 1;
}
body[data-theme="dark"] .bg-guide .guide-block:nth-of-type(2n + 2) {
  background: #1d2121;
}
body[data-theme="dark"] .bg-guide .guide-block:nth-of-type(2n + 3) {
  background: #191919;
}

.guide-stepblock {
  position: relative;
}
.guide-stepblock.show-guide::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1060;
}
.guide-stepblock.show-guide,
.guide-stepblock.show-guide * {
  z-index: 1050;
}

.guide-arrow-b,
.guide-arrow-bl,
.guide-arrow-br,
.guide-arrow-c,
.guide-arrow-l,
.guide-arrow-r,
.guide-arrow-t,
.guide-arrow-tl,
.guide-arrow-tr {
  overflow: visible;
  width: 100%;
}
@media (max-width: 575.98px) {
  .guide-arrow-b,
  .guide-arrow-bl,
  .guide-arrow-br,
  .guide-arrow-c,
  .guide-arrow-l,
  .guide-arrow-r,
  .guide-arrow-t,
  .guide-arrow-tl,
  .guide-arrow-tr {
    max-width: 50%;
  }
}
.guide-arrow-b::before,
.guide-arrow-b::after,
.guide-arrow-bl::before,
.guide-arrow-bl::after,
.guide-arrow-br::before,
.guide-arrow-br::after,
.guide-arrow-c::before,
.guide-arrow-c::after,
.guide-arrow-l::before,
.guide-arrow-l::after,
.guide-arrow-r::before,
.guide-arrow-r::after,
.guide-arrow-t::before,
.guide-arrow-t::after,
.guide-arrow-tl::before,
.guide-arrow-tl::after,
.guide-arrow-tr::before,
.guide-arrow-tr::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.guide-arrow-b::before,
.guide-arrow-b::after {
  left: 50%;
  border-width: 0.5rem 0.5rem 0;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
.guide-arrow-bl::before,
.guide-arrow-bl::after {
  left: 5%;
  border-width: 0.5rem 0.5rem 0;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
.guide-arrow-br::before,
.guide-arrow-br::after {
  right: 5%;
  border-width: 0.5rem 0.5rem 0;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(50%, 100%);
}
@media (max-width: 575.98px) {
  .guide-arrow-bl::before,
  .guide-arrow-bl::after {
    left: 10%;
  }
  /* .guide-arrow-br::before,
  .guide-arrow-br::after {
    right: 10%;
  } */
}
.guide-arrow-c::before,
.guide-arrow-c::after,
.guide-arrow-t::before,
.guide-arrow-t::after {
  left: 50%;
  border-width: 0 0.5rem 0.5rem;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.guide-arrow-l::before,
.guide-arrow-l::after {
  top: 50%;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}
.guide-arrow-r::before,
.guide-arrow-r::after {
  top: 50%;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}
.guide-arrow-tl::before,
.guide-arrow-tl::after {
  left: 5%;
  border-width: 0 0.5rem 0.5rem;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.guide-arrow-tr::before,
.guide-arrow-tr::after {
  right: 5%;
  border-width: 0 0.5rem 0.5rem;
  -webkit-transform: translate(50%, -100%);
  transform: translate(50%, -100%);
}

.guide-arrow-b::before,
.guide-arrow-bl::before,
.guide-arrow-br::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.guide-arrow-b::after,
.guide-arrow-bl::after,
.guide-arrow-br::after {
  bottom: 1px;
  border-top-color: #ffffff;
}
.guide-arrow-c::before,
.guide-arrow-t::before,
.guide-arrow-tl::before,
.guide-arrow-tr::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.guide-arrow-c::after,
.guide-arrow-t::after,
.guide-arrow-tl::after,
.guide-arrow-tr::after {
  top: 1px;
  border-bottom-color: #ffffff;
}
.guide-arrow-l::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.guide-arrow-l::after {
  left: 1px;
  border-right-color: #ffffff;
}
.guide-arrow-r::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.guide-arrow-r::after {
  right: 1px;
  border-left-color: #ffffff;
}

.guide-faq-content .card {
  overflow: hidden;
  box-shadow: none;
}
.guide-faq-content .card:not(:first-of-type) {
  margin-top: -1px;
}
.guide-faq-content .card-header {
  cursor: pointer;
  border-bottom: 0;
}
.guide-faq-content .card-header ~ div {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-beta-tag {
  font-size: 13px;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.span-badge {
  margin-left: 50%;
  transform: translate(-50%, 0);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hidden {
  display: none !important;
}

.padding-label {
  width: 50px;
}

.mm-bg-white.text-1{
  color: black !important;
}

.center-horizontal {
  left: 50%;
  transform: translateX(-50%);
}

textarea {
  border: none;
  outline: none;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* ||  Image Modal */
.upload-area {
  position: relative;
  height: calc(min(100vw, 690px) / 10 * 5);
  background-color: #e5e5e5;
}
.upload-area:hover {
  background-color: #dfdfdf;
}
body[data-theme="dark"] .image-preview {
  background-color: #333333;
}
body[data-theme="dark"] .image-preview:hover {
  background-color: #2c2c2c;
}

.image-preview-text,
.image-preview-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image-preview-image {
  max-width: 690px;
  max-height: 100%;
}
.image-preview-text {
  color: #929292;
}
.upload-area:hover .image-preview-text {
  color: #8c8c8c;
}
body[data-theme="dark"] .image-preview-text {
  color: #c5c5c5;
}

.drag-drop-zone {
  opacity: 0;
}

.image-preview {
  position: relative;
  height: calc(min(100vw, 690px) / 10 * 5);
  background-color: #e5e5e5;
}

.image-td {
  width: 6em;
}

.text-black{
  color: #212529 !important;
}

#content-toggle[aria-expanded=false] .fa-caret-up {
  display: none;
}

#content-toggle[aria-expanded=true] .fa-caret-down{
  display: none;
}

#typography-toggle[aria-expanded=false] .fa-caret-up {
  display: none;
}

#typography-toggle[aria-expanded=true] .fa-caret-down{
  display: none;
}

#background-toggle[aria-expanded=false] .fa-caret-up {
  display: none;
}

#background-toggle[aria-expanded=true] .fa-caret-down{
  display: none;
}

#padding-toggle[aria-expanded=false] .fa-caret-up {
  display: none;
}

#padding-toggle[aria-expanded=true] .fa-caret-down{
  display: none;
}

@media (min-height: 768px) {
  .fa-caret-down, .fa-caret-up {
    display: none;
  }
}

.alert {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition: visibility 0s, opacity 250ms, transform 250ms;
}
.alert.hide {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: visibility 0s 250ms, opacity 250ms, transform 250ms;
}

.mobile-overlay, .browser-overlay {
  background-color: black;
  z-index: 10;
  opacity: 70%;
}

.save-container {
  min-width: 0 !important;
}


/* ||  Navbar Color Mode Switch */

.theme-toggle-navbar .sun-and-moon>:is(.moon, .sun, .sun-beams) {
  transform-origin: center center
}

.theme-toggle-navbar .sun-and-moon>:is(.moon, .sun) {
  fill: var(--icon-fill)
}

.theme-toggle-navbar:is(:hover, :focus-visible) .sun-and-moon>:is(.moon, .sun) {
  fill: var(--icon-fill-hover)
}

.theme-toggle-navbar .sun-and-moon>.sun-beams {
  stroke: var(--icon-fill);
  stroke-width: 2px
}

.theme-toggle-navbar:is(:hover, :focus-visible) .sun-and-moon>.sun-beams {
  stroke: var(--icon-fill-hover)
}

[data-theme=dark] .theme-toggle-navbar .sun-and-moon>.sun {
  transform: scale(1.75)
}

[data-theme=dark] .theme-toggle-navbar .sun-and-moon>.sun-beams {
  opacity: 0
}

[data-theme=dark] .theme-toggle-navbar .sun-and-moon>.moon>circle {
  transform: translate(-7px)
}

@supports (cx: 1) {
  [data-theme=dark] .theme-toggle-navbar .sun-and-moon>.moon>circle {
    transform: translate(0);
    cx: 17
  }
}

@media (prefers-reduced-motion: no-preference) {
  .theme-toggle-navbar .sun-and-moon>.sun {
    transition: transform .5s var(--ease-elastic-3)
  }

  .theme-toggle-navbar .sun-and-moon>.sun-beams {
    transition: transform .5s var(--ease-elastic-4), opacity .5s var(--ease-3)
  }

  .theme-toggle-navbar .sun-and-moon .moon>circle {
    transition: transform .25s var(--ease-out-5)
  }

  @supports (cx: 1) {
    .theme-toggle-navbar .sun-and-moon .moon>circle {
      transition: cx .25s var(--ease-out-5)
    }
  }

  [data-theme=dark] .theme-toggle-navbar .sun-and-moon>.sun {
    transform: scale(1.75);
    transition-timing-function: var(--ease-3);
    transition-duration: .25s
  }

  [data-theme=dark] .theme-toggle-navbar .sun-and-moon>.sun-beams {
    transform: rotate(-25deg);
    transition-duration: .15s
  }

  [data-theme=dark] .theme-toggle-navbar .sun-and-moon>.moon>circle {
    transition-delay: .25s;
    transition-duration: .5s
  }
}

.bi-theme-icon::before { content: "\f5a1"; }           /* Sun */
[data-theme='dark'] .bi-theme-icon::before { content: "\f494"; }  /* Moon */

.bi-theme-icon {
  font-size: 20px !important;
  color: #8c8c8c;  /* This will apply in light mode */
}

[data-theme='dark'] .bi-theme-icon {
  color: var(--bs-body-color, #bfbfbf); /* Fallback if the variable isn't set */
}

.theme-toggle-navbar {
  --size: 2rem;
  --icon-fill: #8c8c8c;
  --icon-fill-hover: #5e5e5e;
  background: none;
  border: none;
  padding: 0;
  inline-size: var(--size);
  block-size: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  outline-offset: 5px
}

.theme-toggle-navbar.mobile {
  margin-right: 0.5rem;
}

.theme-toggle-navbar>svg {
  inline-size: 75%;
  block-size: 75%;
  stroke-linecap: round
}

[data-theme=dark] .theme-toggle-navbar {
  --icon-fill: #bfbfbf;
  --icon-fill-hover: hsl(210 15% 90%)
}

.theme-toggle-navbar:focus:not(:focus-visible) {
  /* remove focus outline on click, but still show for keyboard navigation */
  outline: 0;
}

#test-template-form-dynamic-fields {
  padding: 1.25em;
}

/* || YOUTUBE VIDEO IFRAME */
.youtube-video {
  border-width: 0;
  width: 100%;
  height: 37vh;
}

/* || BOOTSTRAP POPOVER */
.popover-header {
  color: #212529;
}

/* || LIST CLEANER */
#list-cleaner-custom-keywords-small {
  color: inherit;
  padding: 0;
}

/* || BLOG POST*/
.blog-body h2{
  font-size: 1rem;
  font-weight: bold;
}

/* || eliminate extra space at top of blog links sidenav when only one post is present*/
#guide-div::before {
  content: none;
}

/* || analytics modal in campaigns*/
#analytics-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
  margin-bottom: 0.5em;
}

#analytics-nav .stat {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  max-width: 10rem;
}

#analytics-nav .stat .stat-header{
  font-size: small;
  margin: 0;
}

#analytics-nav .stat .stat-text{
  font-size: x-large;
  margin: 0;
}

#analytics-rates, #overall-metrics, #analytics-chart{
  text-align: center;
}

#if-you-see-this-class-then-the-css-has-been-migrated{
  /*Exactly as the class says.*/
  padding: auto;
}