@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

* {
    margin: 0;
    padding: 0;
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
}

body {
	font-size: 15px;
	background-color: rgb(238 240 252);
	font-family: "Varela Round", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	color: #565656;
}

a { color: #000; }
a:hover { color: #000; }

a:active, a:focus {
	outline: 0 !important;
	border: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

a,
a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

button,
button:focus,
button:active,
button:hover {
	outline: none;
}

p, ul {
	margin: 0;
}

ul { list-style: none; }

/* AJAX LOADER */

.ajax-loader {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	height: 6px;
	background-color: transparent;
	overflow: hidden;
	z-index: 999999999;
}

.ajax-loader:before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 5px;
	width: 10%;
	background-color: #424fb0;
	animation-name: ajax-loader;
	animation-iteration-count: infinite;
	animation-duration: 1s;
}

@keyframes ajax-loader {
	0% {
		left: 0;
	}
	100% {
		left: 100%;
	}
}

.auth {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    min-height: 650px;
	background-color: #5c3dc3;
	background-image: linear-gradient(rgba(112.520718, 44.062154, 249.437846, 1), rgba(112.520718, 44.062154, 249.437846, 0.95));
}

.auth .logo {
	display: block;
	max-width: 150px;
	margin-bottom: 30px;
}

.auth .logo img {
	width: 100%;
}

.auth .auth-form {
	width: 510px;
    background-color: #fff;
    box-shadow: rgba(2, 29, 103, 0.1) 0px 5px 12px;
    border-radius: 5px;
    padding: 50px 70px;
    position: relative;
}

.auth .auth-form button {
	display: block;
	width: 100%;
}

.auth .auth-form h1 {
	font-size: 26px;
	font-weight: 700;
	color: rgb(50, 50, 92);
	margin-bottom: 20px;
}

.auth > p {
	color: #9c85c2;
    font-size: 13px;
}

.auth .auth-menu {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}

.auth .auth-menu a {
    text-transform: uppercase;
    color: #6431b6;
    font-weight: 600;
}

aside {
	position: fixed;
	left: 0;
	top: 0px;
	bottom: 0;
	width: 250px;
	background-color: #5c3dc3;
	background-image: linear-gradient(rgba(112.520718, 44.062154, 249.437846, 1), rgba(112.520718, 44.062154, 249.437846, 0.95));
	z-index: 2;
	max-height: 100vh;
	overflow-y: auto;
	height: 100vh;
}

aside .logo {
	display: block;
	max-width: 110px;
	margin: 15px;
}

aside .logo img {
	width: 100%;
}

aside .main-menu {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

aside .main-menu li a {
	display: flex;
	align-items: center;
	color: rgb(203 213 225);
	padding: 10px 15px;
	font-weight: 500;
	font-size: 15px;
	transition: .2s;
	position: relative;
}

aside .main-menu li a.active {
	color: #fff;
	background-color: rgba(255, 255, 255, .05);
}

aside .main-menu li.title {
	text-transform: uppercase;
	color: rgba(203, 213, 225, .5);
	font-weight: 600;
	font-size: 12px;
	line-height: 12px;
	padding: 10px 15px;
	letter-spacing: 1px;
}

aside .main-menu li.bottom {
	margin-top: 30px;
}

aside .main-menu li a:hover {
	color: #fff;
}

aside .main-menu li a i {
	position: relative;
	top: 1px;
	display: block;
	font-size: 22px;
	line-height: 22px;
	padding-right: 10px;
}

main {
	position: relative;
	margin-left: 250px;
	padding: 20px 90px;
}

.campaigns {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.campaigns > .item {
	display: flex;
	align-items: center;
	background-color: #fff;
    border-radius: 5px;
	padding: 10px 20px;
}

.campaigns .item .campaign-stats {
	display: flex;
	align-items: center;
	gap: 10px;
}

.campaigns .item .campaign-stats .item {
	display: flex;
	align-items: center;
	border: 1px solid #0566ff;
	padding-left: 10px;
	font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    border-radius: 5px;
    text-transform: uppercase;
	color: #0566ff;
}

.campaigns .item .campaign-stats .item.recipients {
	border: 1px solid #efefef;
	color: #000;
}

.campaigns .item .campaign-stats .item span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 35px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: #0566ff;
	color: #fff;
	text-align: center;
	margin-left: 10px;
    font-size: 18px;
    line-height: 18px;
}

.campaigns .item .campaign-stats .item.recipients span {
	background-color: #efefef;
	color: #000;
}

.campaigns .item ul {
	margin-left: auto;
}

.campaigns .item i {
	display: block;
	font-size: 14px;
	color: rgba(0, 0, 0, .5);
}

.lds-hourglass {
	width: 20px;
	height: 20px;
}

.lds-hourglass:after {
	content: " ";
	display: block;
	border-radius: 50%;
	width: 0;
	height: 0;
	box-sizing: border-box;
	border: 10px solid #5c3dc3;
	border-color: #5c3dc3 transparent #5c3dc3 transparent;
	animation: lds-hourglass 2.2s infinite;
}

@keyframes lds-hourglass {
	0% {
		transform: rotate(0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	50% {
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	100% {
		transform: rotate(1800deg);
	}
}

.packages {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.packages .coins {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-color: #5c3dc3;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: none;
	font-weight: 500;
	cursor: pointer;
	z-index: 1;
	color: #5c3dc3;
	font-weight: 600;
	font-size: 35px;
}

.packages .coins span {
	display: block;
	color: #565656;
	font-weight: 500;
	font-size: 16px;
}

.packages .coins:active{
	transform: scale(0.95);
}

.packages .coins::before{
	content: '';
	position: absolute;
	inset: -1px 30px;
	background-color: #49e176;
	transition: 500ms;
	animation: rotate 4s linear infinite;
	z-index: -1;
}

.packages .item:nth-child(1) .coins::before{
	animation-delay: .1s;
}

.packages .item:nth-child(2) .coins::before{
	animation-delay: .2s;
}

.packages .item:nth-child(3) .coins::before{
	animation-delay: .3s;
}

.packages .item:nth-child(4) .coins::before{
	animation-delay: .4s;
}

.packages .item:nth-child(5) .coins::before{
	animation-delay: .5s;
}

.coins:hover::before{
	inset: -1px;
}

.coins::after{
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background-color: #fff;
	z-index: -1;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

h2.title {
	font-size: 20px;
    color: #000;
    font-weight: 500;
    transition: .2s;
    margin-bottom: 20px;
}

.form-space {
	position: relative;
	margin-bottom: 20px;
}

.form-additional {
	border-radius: 4px;
    background-color: #f6f6f6;
	padding: 20px;
}

.form-space:last-child {
	margin-bottom: 0px;
}

.form-space label {
	display: block;
	margin-bottom: 10px;
	color: #787878;
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
}

.form-space input,
.form-space textarea,
.form-space select {
	display: block;
	width: 100%;
	padding: 12px;
	border-radius: 4px;
	border: 1px solid #A0AEC0;
	background-color: #fff;
	transition: .2s;
}

.form-space input:focus,
.form-space textarea:focus,
.form-space select:focus {
	border-color: #448afa;
}

.form-space input[type="checkbox"] { display: none; }

.form-space input[type="checkbox"] + label {
	text-align: left;
	display: block;
	position: relative;
	padding-top: 6px;
	padding-left: 30px;
	cursor: pointer;
	transition: .2s;
    color: rgba(13,18,22,0.7);
    font-size: 13px;
    line-height: 13px;
    font-weight: 600;
}

.form-space input[type="checkbox"]:hover + label {
	color: #434343;
}

.form-space input[type="checkbox"] + label:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border: 2px solid #3542a2;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 3px;
	opacity: .6;
	-webkit-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
}

.form-space.error input[type="checkbox"] + label:before {
	border-color: red;
}

.form-space input[type="checkbox"]:checked + label:before {
	width: 12px;
	top: -1px;
	border-color: #3542a2;
	left: 5px;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.toggle-button-cover {
	display: table-cell;
	position: relative;
	box-sizing: border-box;
}

.button-cover:before {
	counter-increment: button-counter;
	content: counter(button-counter);
	position: absolute;
	right: 0;
	bottom: 0;
	color: #d7e3e3;
	font-size: 12px;
	line-height: 1;
	padding: 5px;
}

.button-cover,
.knobs,
.layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.switch-button {
	position: relative;
	top: 50%;
	width: 78px;
	height: 34px;
	margin: -20px auto 0 auto;
	overflow: hidden;
}

.switch-button.r,
.switch-button.r .layer {
	border-radius: 100px;
}

.switch-button input {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 3;
}

.knobs {
	z-index: 2;
}

.layer {
	width: 100%;
	background-color: #ebf7fc;
	transition: 0.3s ease all;
	z-index: 1;
}

/* Button 3 */
#button-3 .knobs:before {
	content: "TAK";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 30px;
	height: 26px;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	padding: 9px 4px;
	background-color: #54c565;
	border-radius: 50%;
	transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 input:active + .knobs:before {
	width: 46px;
	border-radius: 100px;
}

#button-3 input:checked:active + .knobs:before {
	margin-left: -26px;
}

#button-3 input:checked + .knobs:before {
	content: "NIE";
	left: 42px;
	background-color: #c5549f;
}

#button-3 input:checked ~ .layer {
  background-color: #fcebeb;
}

.form-checkbox .checkbox-2 {
	position: absolute;
	opacity: 0;
	width: 20px;
}

.form-checkbox .checkbox-2 + label {
	position: relative;
	cursor: pointer;
	padding: 0;
}

.form-checkbox .checkbox-2 + label:before {
	content: '';
	display: inline-block;
	vertical-align: text-top;
	width: 20px;
	height: 20px;
	border: 2px solid #d2dae2;
	border-radius: 2px;
}

.form-checkbox .checkbox-2:hover + label:before {
	border-color: #555;
}

.form-checkbox .checkbox-2:checked + label:before {
	border: 2px solid #00305a;
	border-radius: 2px;
	background: #00305a;
}

.form-checkbox .checkbox-2:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 11px;
    background: white;
    width: 1.5px;
    height: 1.5px;
    box-shadow: 
      1.5px 0 0 white,
      3px 0 0 white,
      3px -1.5px 0 white,
      3px -3px 0 white,
      3px -4.5px 0 white,
      3px -6px 0 white;
    transform: rotate(45deg);
}

.form-space input[type="checkbox"] { display: none; }

.form-space input[type="checkbox"] + label {
	text-align: left;
	display: block;
	position: relative;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 30px;
	cursor: pointer;
	transition: .2s;
    color: rgba(13,18,22,0.7);
    line-height: 16px;
    font-weight: 600;
}

.form-space input[type="checkbox"]:hover + label {
	color: #434343;
}

.form-space input[type="checkbox"] + label:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border: 2px solid #49e176;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 3px;
	opacity: .6;
	-webkit-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
}

.form-space input[type="checkbox"]:checked + label:before {
	width: 12px;
	top: -1px;
	border-color: #49e176;
	left: 5px;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.panel .panel-body {
	background-color: #fff;
	padding: 20px;
	border-radius: 4px;
}

.panel .panel-body h4 {
	font-size: 16px;
	color: #000;
	font-weight: 700;
	margin-bottom: 15px;
}

.panel .panel-title {
	display: flex;
	justify-content: space-between;
	flex-wra: wrap;
	align-items: center;
}

.panel-info .item {
	margin-bottom: 20px;
}

.panel-info .item:last-child {
	margin-bottom: 0px;
}

.panel-info .item span {
	display: block;
}

.panel-info .item span:first-child {
	font-size: 11px;
	line-height: 11px;
	color: #999;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.panel-menu li a {
	display: flex;
	align-items: center;
    padding: 10px 15px;
    border-radius: 4px;
	background-color: #f6f6f6;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}

.panel-menu li a i {
	font-size: 18px;
    line-height: 18px;
    padding-right: 10px;
    position: relative;
    top: 1.5px;
    color: #0566ff;
}

.informations {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.informations.informations-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.informations .item {
	padding: 10px;
	background-color: #f6f6f6;
	border-radius: 5px;
}

.informations span {
	display: block;
	font-size: 13px;
	line-height: 13px;
	margin-bottom: 5px;
}

.informations h5 {
	display: flex;
	align-items: center;
	font-size: 18px;
    color: #000;
    font-weight: 700;
    transition: .2s;
}

.informations h5 i {
	position: relative;
	top: 5px;
	padding-right: 10px;
	font-size: 20px;
    color: #448afa;
}

/* PAGINATION */

.pagination {
	display: flex;
	align-items: center;
	text-align: center;
	flex-wrap: wrap;
	gap: 5px;
}

.pagination a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 5px;
	border: 1px solid #ddd;
	border-radius: 1px;
	background-color: #fff;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	font-weight: 600;
}

.pagination li.active a {
	background-color: #e7f3ff;
	color: #3086f3;
}

.pagination a.current {
	color: #3086f3;
	background: #e7f3ff;
}

.statuses {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

/* ITEM INFORMATIONS */

.item-informations {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.item-informations .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	background-color: #f7f7f9;
	padding: 8px 15px;
	border-radius: 5px;
}

.item-informations .item .values {
	flex: 1;
}

.item-informations .item .buttons {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.item-informations .item .buttons a {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background-color: #e4e6eb;
    color: #212121;
}

.item-informations .item span {
	display: block;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	color: #555;
}

.item-informations .item h4 {
	font-size: 16px;
    color: #000;
	margin-top: 7px;
}

.calendar th {
	text-align: center;
}

.calendar tr {
	position: relative;
}

.calendar td {
	vertical-align: top;
	border: 1px solid rgb(218, 220, 224);
	position: relative;
	width: calc(100% / 7);
	padding: 5px;
}

.calendar td .events {
	min-height: 110px;
}

.calendar table .day-of-month {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	font-size: 13px;
	line-height: 13px;
	font-weight: 700;
	transition: 0.1s;
	cursor: pointer;
}

.calendar table .day-of-month:hover {
	background-color: #e5e5e5;
}

.calendar table .day-of-month.today {
	background-color: #0566ff;
	color: #fff;
}

.calendar table .day-of-month.today:hover {
	background-color: #2073f6;
}

.calendar .events {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.calendar .events .item {
	display: block;
	font-size: 12px;
	line-height: 12px;
	border-radius: 4px;
	padding: 8px 10px;
	font-weight: 600;
	transition: 0.1s;
	cursor: pointer;
	border: 1px solid rgb(218, 220, 224) !important;
	border-radius: 5px;
}

.calendar .events .item.full-day {
	background-color: #fff8dc;
	color: #956f07;
}

.calendar .events .item.finish {
	font-weight: 500;
	text-decoration: line-through;
	opacity: 0.5;
}

.calendar .events .item.priority-2 {
	border-bottom: 2px solid #424fb0;
}

.calendar .events .item.priority-3 {
	border-bottom: 2px solid #f93822ff;
}

.calendar .events .item:hover {
	background-color: #e7f3ff;
	color: #3086f3;
}

.calendar td .calendar-add {
	position: absolute;
	right: 100%;
	width: 320px;
	top: 0px;
	background-color: #fff;
	z-index: 10005;
	padding: 15px;
	border-radius: 6px;
	border: 1px solid #e3e9ed;
	box-shadow: 0 16px 28px 3px rgba(0, 0, 0, 0.1), 0 8px 30px 6px rgba(0, 0, 0, 0.1), 0 11px 15px -7px rgba(0, 0, 0, 0.1);
}

.calendar td .calendar-add:before {
	position: absolute;
	content: '';
	border-width: 12px 0 12px 16px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	right: -16px;
	transition: 0.5s;
	top: 20px;
}

.calendar td.first .calendar-add {
	position: absolute;
	left: 100%;
	right: auto;
}

.ui-widget.ui-widget-content {
    width: 100%;
}

.ui-datepicker td span,
.ui-datepicker td a {
	text-align: center;
}

.calendar-datetime {
	cursor: pointer;
	width: 100%;
	padding: 6px;
}

.calendar-datetime:hover {
	background-color: #f5f5f5;
}

.calendar-items.week {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	border-collapse: collapse;
}

.calendar-items .item {
	border: 1px solid rgb(218, 220, 224);
	border-collapse: collapse;
	background-color: #fff;
}

.calendar-items .item .item-header {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-bottom: 1px solid rgb(218, 220, 224);
	padding: 10px 0;
}

.calendar-items .item .item-header .day-name {
	text-transform: uppercase;
}

.calendar-items .item .item-header .day-of-month {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 24px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	cursor: pointer;
	transition: 0.1s;
}

.calendar-items .item .item-header .day-of-month:hover {
	background-color: #f5f5f5;
}

.calendar-items .item .item-header .day-of-month.is-today {
	background-color: #0566ff;
	color: #fff;
}

.calendar-items .item .events {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background-color: #fff;
	padding: 5px;
	text-align: left;
	height: 500px;
	max-height: 500px;
	overflow-y: auto;
}

.calendar-items .item .events a {
	display: block;
	padding: 3px 5px;
	border: 1px solid #ddd;
	font-size: 14px;
	border-left: 4px solid #3086f3;
}

.calendar-items .item .events a:hover {
	background-color: #f2f2f2;
}

.service {
	font-size: 12px;
	font-weight: 500;
	line-height: 12px;
	border-radius: 30px;
	padding: 4px 12px;
}

.service-1 {
	background-color: #f6f6f6;
	color: #074095;
}

.service-2 {
	background-color: #fff8dc;
    color: #956f07;
}

.filters form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.filters button {
	background-color: #e7f3ff;
    color: #3086f3
	border: 0;
	height: 40px;
	border-radius: 5px;
	padding: 0 10px;
}

.filters .form-space {
	margin: 0;
}

.filters .dropdown-menu {
	padding: 15px;
	max-width: 370px;
	width: 100%;
	min-width: 370px;
}

.dropdown-toggle {
	background-color: #dce9ff;
    color: #074095;
	border: 0;
	font-weight: 500;
	border-radius: 5px;
	padding: 10px;
	font-size: 14px;
	line-height: 14px;
}

.dropdown-toggle::after {
    vertical-align: 2px;
}

.messages-inbox {
	height: 80vh;
	border: 1px solid #ccc;
	overflow-y: auto;
	background-color: #fff;
	border-radius: 10px;
}

.messages-load {
	height: 80vh;
	border: 1px solid #ccc;
	overflow-y: auto;
	background-color: #fff;
	border-radius: 10px;
	padding: 10px;
}

.messages-inbox ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.messages-inbox ul li {
	border-bottom: 1px solid #ccc;
}

.messages-inbox ul li a {
	display: block;
	background-color: #fff;
	padding: 10px;
}

.messages-inbox ul li a h4 {
	font-size: 13px;
	line-height: 13px;
	font-weight: 600;
	color: #5c3dc3;
}

.status {
	line-height: 11px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px;
    margin-right: 5px;
    border-radius: 5px;
}

.status.icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 24px;
	font-size: 12.5px;
	line-height: 12.5px;
}

.status.size-2 {
	line-height: 13px;
    font-size: 13px;
}

.status.status-1-0 {
    background-color: #efefef;
    color: #333;
}

.status.status-1-1 {
    background-color: #0566ff;
    color: #fff;
}

.status.status-1-2 {
    background-color: #ffe356;
    color: #000;
}

.status.status-1-3 {
    background-color: #c5549f;
    color: #fff;
}

.status.status-1-4 {
    background-color: #54c565;
    color: #fff;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #efefef;
}

::-webkit-scrollbar-thumb {
	background: #aaa;
}

::-webkit-scrollbar-thumb:hover {
	background: #aaa;
}

::-webkit-scrollbar-thumb:active {
	background: green;
}

.nav-tabs {
	border: 0;
	gap: 10px;
}

.nav-tabs .nav-link {
	background-color: #f6f6f6;
    color: #074095;
	border: 0;
	margin: 0;
	padding: 6px 12px;
	font-size: 14px;
    line-height: 14px;
    border-radius: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	background-color: #dce9ff;
	color: #074095;
}

.btn-1, .table a.btn {
	background-color: #5c3dc3;
	color: #efefef;
	font-weight: 600;
	font-size: 13px;
	line-height: 13px;
	padding: 16px 20px;
	transition: .2s;
	border-radius: 5px;
	border: 0;
	text-transform: uppercase;
}

.btn-1:hover {
	color: #fff;
	background-color: #7856e6;
}

.btn-animation-1 {
    outline: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-animation-1::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        top: -100%;
        left: -100%;
    }
    50% {
        top: 100%;
        left: 100%;
    }
    100% {
        top: -100%;
        left: -100%;
    }
}

.btn-2 {
	background-color: #49e176;
    color: #fff;
    opacity: 1;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    padding: 15px 20px;
    transition: .2s;
}

.btn-2:hover {
	color: #fff;
}

.btn-small {
	font-weight: 600;
	padding: 8px 12px;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.page-search .search-input {
	position: relative;
}

.page-search .search-input i {
	position: absolute;
	left: 15px;
	top: 12px;
	z-index: 2;
}

.page-search input {
	background-color: #fff;
	padding: 10px 20px 10px 38px;
	border: 0;
	border-radius: 25px;
}

/* TOASTS */

.toasts {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 100008;
}

.toasts .toast {
	width: auto;
	border-radius: 10px;
	background-color: #fff;
}

.toasts .toast.show {
	animation-name: show-toast;
	animation-duration: .5s;
}

@keyframes show-toast {
	0% {
		transform: translateX(-500px);
	}
	100% {
		transform: translateX(0px);
	}
}

.toasts .toast.success {
	background-color: #54c565;
	color: #fff;
}

.toasts .toast.error {
	background-color: #c5549f;
	color: #fff;
}

.toasts .toast .toast-body {
	position: relative;
}

.toasts .toast a.toast-url {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.toasts .toast h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 3px;
}

.payment-details-info {
	margin-bottom: 20px;
}

.payment-details-info:last-child {
	margin-bottom: 0px;
}

.payment-details-info span:first-child {
	display: block;
	font-size: 12px;
	line-height: 12px;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-weight: 600;
	color: #5c3dc3;
}

.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #000;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #000 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.sm-manager-profile-avatar {
	width: 55px;
	height: 55px;
	border: 1px solid #eee;
    object-fit: cover;
	border-radius: 100%;
}

.sm-manager-posts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
}

.sm-manager-posts .item {
	text-align: center;
	background-color: #f6f6f6;
	padding: 20px;
	border-radius: 4px;
}

.sm-manager-posts .item.today {
	text-align: center;
	background-color: #ffdce4;
    color: #95071e;
	padding: 20px;
	border-radius: 4px;
}

.sm-manager-posts .item.complete {
	background-color: #e7ffdc;
    color: #0e9507;
}

.sm-manager-posts .item .day {
	display: block;
	font-size: 28px;
	line-height: 28px;
	font-weight: 700;
	color: #000;
}

.sm-manager-posts .item .month {
	display: block;
	text-transform: uppercase;
	font-size: 12px;
    line-height: 12px;
	color: #999;
	margin: 10px 0;
}

.sm-manager-posts .item a {
	display: block;
}

.page-menu {
	margin-bottom: 20px;
}

.page-menu ul {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	border-bottom: 2px solid #ccc;
}

.page-menu ul:before {
	position: absolute;
	left: 0;
	bottom: -2px;
	right: 0;
	content: '';
	height: 2px;
	background-color: #ccc;
}

.page-menu ul li {
	position: relative;
	padding-bottom: 5px;
}

.page-menu ul li a {
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
	font-size: 13px;
	line-height: 13px;
	padding: 0 10px;
	transition: .1s;
}

.page-menu ul li a:hover {
	color: #5c3dc3;
}

.page-menu ul li a.active {
	color: #5c3dc3;
}

.page-menu ul li a.active:before {
	position: absolute;
	left: 0;
	bottom: -2px;
	right: 0;
	content: '';
	height: 2px;
	background-color: #5c3dc3;
}

.table {
	margin: 0;
}

.table a {
	color: #5c3dc3;
	font-weight: 500;
}

table thead {
	border: 0;
}

table th {
	font-weight: 400;
	font-size: 14px;
	border: 0;
	padding: 0;
}

table tr.blacklist td {
	background-color: #e0e0e0;
}

table td {
	font-size: 14px;
	vertical-align: middle;
}

.account-info {
	margin-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding: 20px 15px 0 15px;
}

aside .main-menu li.account-info a {
	background-color: #49e176;
	color: #19512a;
	opacity: 1;
	font-size: 14px;
	line-height: 14px;
	font-weight: 600;
	border-radius: 10px;
	text-transform: uppercase;
	text-align: center;
	justify-content: center;
	padding: 15px 20px;
	transition: .2s;
}

aside .main-menu li.account-info a:hover {
	background-color: #66fb92;
}

.account-info .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	margin-bottom: 12px;
}

.account-info progress {
	width: 100%;
	display: block;
    border: 0;
	border-radius: 20px;
}

progress::-webkit-progress-bar {
    border: 0;
    height: 6px;
    border-radius: 20px;
	background: rgba(255, 255, 255, .15);
}

progress::-webkit-progress-value {
    border: 0;
    height: 6px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
	background-color: #54c565;
}

progress::-moz-progress-bar {
    border: 0;
    height: 6px;
    border-radius: 20px;
}

a.hide {
	position: relative;
	background-color: #f1f1f1;
	font-weight: 500;
	font-style: italic;
	color: #5c3dc3;
	border-bottom: 2px dashed #5c3dc3;
}

.sms-messages {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 330px;
	overflow-y: auto;
	padding: 0 20px;
}

.sms-messages .item {
	display: flex;
}

.sms-messages .item.reverse {
	justify-content: flex-end;
    align-items: flex-start;
}

.sms-messages .item p {
	max-width: 75%;
    word-break: break-word;
	border-radius: 25px;
	padding: 10px;
	background-color: #f4f4f4;
}

.sms-messages .item p .date {
	position: relative;
	top: 2px;
	font-size: 11px;
	line-height: 11px;
	padding-left: 10px;
}

.sms-messages .item.reverse p {
	background-color: #0566ff;
	color: #fff;
}

table td.domain-name {
	font-weight: 500;
	color: #0566ff;
}

table td.sm-manager-guardian {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
}

table td.sm-manager-guardian .user-avatar {
	width: 34px;
	height: 34px;
}

table td.user-profile {
	display: flex;
	align-items: center;
}

table td.user-profile .user-avatar {
	width: 34px;
	height: 34px;
	margin-right: 15px;
}

table td.rank img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
	text-align: center;
}

table td.clickable:hover,
table tr.clickable:hover {
	cursor: pointer;
}

table td.clickable-window:hover,
table tr.clickable-window:hover {
	cursor: pointer;
}

table tr.unseen {
	font-weight: 700;
	color: #000;
}

table tr.flagged * {
	color: red;
}

table tbody tr:hover {
	background-color: #f7f7f7;
}

table tbody tr.sm-manager-post-today {
	background-color: #ffdce4;
    color: #95071e;
}

table tbody tr.sm-manager-post-tomorrow {
	background-color: #f6f6f6;
    color: #074095;
}

table>:not(caption)>*>* {
	border: 0;
	padding: 13px;
	color: #000;
}

.marking-users-list {
	position: absolute;
	box-shadow: 0 0 60px rgb(14 42 71 / 25%);
	top: 0;
	left: -160px;
	width: 150px;
	z-index: 20001;
	color: #000;
}

.marking-users-list ul li {
	cursor: pointer;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 12px;
	display: block;
	background-color: #fff;
	border-radius: 10px;
}

.marking-users-list ul li:hover {
	background-color: #eee;
}

.digiphone {
	width: 260px;
	background-color: #fff;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 10px;
}

.digiphone .backspace {
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.digiphone .keyboard {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px 15px;
	border-radius: 10px;
	margin: 20px 0;
}

.digiphone .keyboard span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 100%;
	width: 46px;
	height: 46px;
	background-color: #efefef;
	color: #111;
	cursor: pointer;
	transition: .1s;
	font-weight: 700;
	font-size: 20px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.digiphone span:hover {
	background-color: #ddd;
}

.digiphone input {
	padding: 5px 10px;
	border: 1px solid #999;
	border-radius: 5px;
}

/* WINDOW */

.window {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.65);
	z-index: 10002;
	display: none;
}

.window.show {
	display: block;
	animation-name: fadeIn;
	animation-duration: .3s;
}

.window .window-body {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	background: #fff;
	border-radius: 2px;
	padding: 30px 40px;
	display: none;
	max-height: 90%;
	max-width: 1680px;
	overflow-y: auto;
}

.window.window-50 .window-body {
	width: 50%;
}

.window.window-full .window-body {
	width: 98%;
	min-height: 98%;
	max-height: 98%;
	overflow: auto;
	height: 98%;
	padding: 20px 30px;
}

.window.show .window-body {
	display: block;
	animation-name: show-window-body;
	animation-duration: .3s;
	transform: translate(-50%, -50%);
}

@keyframes show-window-body {
	0% {
		top: 200%;
	}
	100% {
		top: 50%;
	}
}

.window .window-body .window-close {
	position: absolute;
	right: 10px;
	top: 10px;
	font-weight: 600;
	cursor: pointer;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	background-color: #f6f6f6;
    color: rgb(23, 116, 226);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .2s;
}

.window .window-body .window-close:hover {
	background-color: #f1f1f1;
}

.window .window-body .window-close i {
	font-size: 28px;
	transition: .1s;
}

.window .window-body .window-close:hover i {
	color: #000;
}

.window .window-body h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	font-weight: 700;
	color: #001b47;
}

.window .window-body h4 {
	font-size: 18px;
	font-weight: 600;
	color: #001b47;
}

.calendar-remind {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.65);
	z-index: 10002;
}

.calendar-remind .remind-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 10003;
	padding: 50px;
}

.calendar-remind .remind-body h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	font-weight: 700;
	color: #001b47;
}

.calendar-remind .remind-body .window-close {
	position: absolute;
	right: 10px;
	top: 10px;
	font-weight: 600;
	cursor: pointer;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	background-color: #f6f6f6;
    color: rgb(23, 116, 226);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .2s;
}

.calendar-remind .remind-body .window-close:hover {
	background-color: #f1f1f1;
}

.calendar-remind .remind-body .window-close i {
	font-size: 28px;
	transition: .1s;
}

.calendar-remind .remind-body .window-close:hover i {
	color: #000;
}

.tox-tinymce-aux {z-index:99999999999 !important;}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }

.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }

.ml10 { margin-left: 10px !important; }
.mr10 { margin-right: 10px !important; }

.only-mobile { display: none; }

.mobile-menu {
	display: none;
}

@media (min-width: 0px) and (max-width: 991px) {
	
	body {
		font-size: 14px;
	}
	
	.auth .logo {
		max-width: 110px;
	}

	.auth .auth-form {
		width: 90%;
		padding: 20px;
	}
	
	.auth .auth-form h1 {
		font-size: 20px;
	}
	
	aside {
		transform: translateX(-1000px);
	}
	
	aside.show {
		transform: translateX(0px);
	}
	
	aside .main-menu {
		padding: 0 15px;
	}
	
	aside .main-menu li a {
		justify-content: flex-start;
		flex-direction: row;
		font-size: 15px;
		line-height: 14px;
	}
	
	aside .main-menu li a i {
		padding-right: 15px;
		top: 3px;
		margin-bottom: 0px;
	}
	
	main {
		margin-left: 0px;
		padding: 15px;
		padding-bottom: 115px;
	}
	
	.window .window-body {
		width: 90%;
		padding: 20px;
	}
	
	.window.window-50 .window-body {
		width: 90%;
		padding: 20px;
	}
	
	.mobile-menu {
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: #5c3dc3;
		background-image: linear-gradient(rgba(112.520718, 44.062154, 249.437846, 1), rgba(112.520718, 44.062154, 249.437846, 0.95));
		z-index: 10001;
	}
	
	.mobile-menu ul {
		display: grid;
		align-items: center;
		gap: 10px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		height: 50px;
	}
	
	.mobile-menu ul li a {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: rgb(203 213 225);
	}
	
	.mobile-menu ul li a i {
		position: relative;
		top: 2px;
		font-size: 25px;
		line-height: 25px;
	}
	
	.only-mobile { display: block; }
	
	.m-mt20 { margin-top: 20px !important; }
	
}

@media (min-width: 1025px) and (max-width: 1440px) {
	
	main {
		padding: 20px 30px;
	}
	
}

@media (min-width: 1200px) {
	
    
	
}