@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: rgba(40, 40, 40, 1);
	background-image: linear-gradient(rgba(40, 40, 40, 1), rgba(20, 20, 20, 0.95));
	background-image: url(../img/auth-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.auth .logo {
	display: block;
	max-width: 190px;
	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: #9f9f9f;
    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: #001233;
	background: linear-gradient(0deg, rgba(0,18,51,1) 0%, rgba(6,40,102,1) 100%);
	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 .user-menu {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 15px;
	display: flex;
	justify-content: space-between;
}

aside .user-menu li a {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid rgba(203, 213, 225, .5);
	color: #fff;
	font-size: 11.5px;
	line-height: 11.5px;
	font-weight: 600;
	border-radius: 5px;
	position: relative;
}

aside .user-menu li a span {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: absolute;
	top: -10px;
	right: -10px;
	background-color: #E00356;
	border-radius: 8px;
	font-size: 11px;
	line-height: 11px;
}

aside .main-menu li a i {
	padding-right: 10px;
}

aside i {
	position: relative;
	top: 1.5px;
	font-size: 22px;
	line-height: 22px;
	color: rgb(203 213 225);
	display: block;
}

/* SUBMENU */

.aside-submenu {
	position: fixed;
	left: 265px;
	bottom: 15px;
	width: 300px;
	background-color: #fff;
	border-radius: 5px;
	display: none;
	box-shadow: 0 0 60px rgb(14 42 71 / 25%);
	border: 1px solid #e3e9ed;
	padding: 10px;
	z-index: 1000001;
}

.aside-submenu[data-submenu="notices"] {
	width: 420px;
}

.aside-submenu.show {
	display: block;
}

.aside-submenu menu a {
	display: block;
	padding: 10px 15px;
    color: #092f5b;
    font-weight: 500;
	border-radius: 4px;
}

.aside-submenu a:hover {
	background-color: #eff2f6;
}

.aside-submenu .notices {
	display: flex;
	gap: 10px;
	flex-direction: column;
	overflow-y: auto;
	max-height: 75vh;
}

.aside-submenu .notices li.unseen {
	opacity: .5;
}

.aside-submenu .notices li a {
	display: flex;
	gap: 10px;
	padding: 10px;
}

.aside-submenu .notices li a .user-avatar {
	height: 40px;
	width: 40px;
}

.aside-submenu .notices li a p {
	flex: 1;
	font-size: 14px;
	line-height: 20px;
}

.aside-submenu .notices li a p span {
	display: block;
	font-size: 11px;
	line-height: 11px;
	color: #999;
	margin-top: 3px;
}

main {
	position: relative;
	margin-left: 250px;
	padding: 20px 90px;
}

main h1 {
	font-size: 18px;
    color: #000;
    font-weight: 700;
}

.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,
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);
}

.form-space .radio-container {
    max-height: 200px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-space .radio-item {
    display: flex;
    align-items: flex-start;
    justify-self: left;
    gap: 15px;
    margin-top: 5px;
}

.form-space .radio-item input {
	width: 14px;
}

.panel .panel-body {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
}

.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;
}

.tags-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.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;
}

/* 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;
}

.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;
}

/* BREADCRUMBS */

.breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 13px;
	line-height: 13px;
	gap: 5px;
	margin-bottom: 10px;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	position: relative;
}

.breadcrumbs li:before {
	position: relative;
	content: '\00BB';
	margin: 0 5px;
}

.breadcrumbs li:first-child:before {
	content: '';
	margin: 0;
}

/* STATUSES */

.statuses {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.status {
	line-height: 11.5px;
    font-size: 11.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 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 {
	display: flex;
	align-items: center;
	border: 0;
	gap: 10px;
}

.nav-tabs button {
	flex: 1;
	text-transform: uppercase;
    color: rgba(203, 213, 225, .5);
}

.nav-tabs .nav-link {
	background-color: #f6f6f6;
    color: #074095;
	border: 0;
	margin: 0;
    padding: 10px 15px;
    font-size: 11px;
    line-height: 11px;
    font-weight: 600;
	border-radius: 5px;
    background-color: #eee;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	background-color: #E00356;
	color: #fff;
}

.btn-1 {
	background-color: #E00356;
	color: #fff;
	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: #c01d5b;
}

@keyframes shine {
    0% {
        top: -100%;
        left: -100%;
    }
    50% {
        top: 100%;
        left: 100%;
    }
    100% {
        top: -100%;
        left: -100%;
    }
}

.btn-2 {
	background-color: #E00356;
    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;
	background-color: #E00356;
}

.btn-small {
	font-size: 11.5px;
	line-height: 11.5px;
	padding: 8px 12px;
}

.top-module-menu {
	display: flex;
    justify-content: space-between;
}

.page-search .search-input {
	position: relative;
	margin: 0px 14px;
}

.page-search .search-input i {
	position: absolute;
	left: 10px;
	top: 15px;
	z-index: 2;
	font-size: 15px;
	line-height: 15px;
	color: rgb(203 213 225);
}

.page-search .search-input input {
	display: block;
	width: 100%;
	background-color: transparent;
	padding: 10px 20px 10px 35px;
	border-radius: 8px;
	color: #fff;
	border: 1.5px solid rgba(203, 213, 225, .5);
}

main .page-search .search-input input {
	background-color: #fff;
	color: #000;
}

/* STATS BOXES */

.stats-boxes {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.stats-boxes .item {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px;
}

.stats-boxes .item .item-content {
	display: flex;
	align-items: center;
}

.stats-boxes .item .item-content > i {
	position: relative;
	top: 2px;
	color: #E00356;
	font-size: 30px;
	line-height: 30px;
	padding-right: 10px;
}

.stats-boxes .item .item-content span {
	font-weight: 700;
	font-size: 26px;
	line-height: 26px;
}

.stats-boxes .item .item-content span.previous {
	margin-left: 10px;
	font-size: 17px;
	line-height: 17px;
	padding: 5px;
	border-radius: 3px;
	color: #fff;
	background-color: #f17358;
	width: 60px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stats-boxes .item .item-content span.previous.degress {
	color: #fff;
	background-color: #E00356;
}

.stats-boxes .item .item-content span.previous.progress {
	color: #fff;
	background-color: #57c95a;
}

.stats-boxes .item .item-content span i {
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	font-style: normal;
	color: #999;
}

.stats-boxes .item h4 {
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

/* 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:not(.btn) {
	color: #5c3dc3;
	font-weight: 500;
}

.table a:not(.btn).copy{
	margin-right: 5px;
}

table thead {
	border: 0;
}

table th {
	font-weight: 400;
	font-size: 14px;
	border: 0;
	padding: 0;
}

table tr.highlight td {
	background-color: #f3f7d6;
}

table td {
	font-size: 14px;
	vertical-align: middle;
}

table td ul.addtional_icons {
	display: flex;
	align-items: center;
	gap: 5px;
}

ul.addtional-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #eee;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
}

ul.addtional-icons li a i {
   position: relative;
   top: 4px;
   font-size: 18px;
   line-height: 18x;
}

.mini-stats {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.mini-stats span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: #eee;
	font-weight: 600;
	text-align: center;
	border-radius: 5px;
}

.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;
}

.estate-images {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 10px;
}

.estate-images .item {
	position: relative;
	border-radius: 8px;
	height: 140px;
}

.estate-images .item img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dragging {
    border: 2px solid #E00356;
}

.dropzone .dz-preview {
	margin: 10px;
}

.estate-images .item .options {
	position: absolute;
	left: 5px;
	top: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.estate-images .item .options a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	background-color: #eee;
	width: 24px;
	height: 24px;
	border-radius: 8px;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
}

.estate-images .item .options a i {
	position: relative;
	top: 1px;
	font-size: 16px;
	line-height: 16px;
}

.sms-chat .messages {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 330px;
	overflow-y: auto;
	padding: 0 20px;
}

.sms-chat .messages .item {
	display: flex;
}

.sms-chat .messages .item.reverse {
	justify-content: flex-end;
    align-items: flex-start;
}

.sms-chat .messages .item p {
	max-width: 75%;
    word-break: break-word;
	border-radius: 25px;
	padding: 10px;
	background-color: #f4f4f4;
}

.sms-chat .messages .item.reverse p {
	background-color: #0566ff;
	color: #fff;
}

.sms-chat .form-space {
	position: relative;
}

.sms-chat .form-space textarea {
	position: relative;
	z-index: 1;
}

.sms-chat .form-space button {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
}

/* DS EDITOR */

.ds-editor-toolbar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 10px;
}

.ds-editor-toolbar button {
	display: block;
	padding: 5px 10px;
	border: 1px solid #999;
	font-size: 13px;
	line-height: 13px;
}

.ds-editor {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px;
	overflow-y: auto;
	max-height: 400px;
}

table td.sm-manager-guardian {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
}

.user-menu .user-avatar {
	width: 100%;
    height: 100%;
}

.user-menu .user-avatar .letters,
.user-menu .user-avatar img {
	border-radius: 5px;
}

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;
}

.editor {
	position: relative;
}

.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;
}

/* CHAT */

.chat-rooms {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10001;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.chat-rooms .item {
	position: relative;
	animation: show-chat-room 1s cubic-bezier(0.25, 1, 0.5, 1);
	animation-fill-mode: forwards;
	transform: translateY(50px);
}

.chat-rooms .item:nth-child(1) {
	animation-delay: .1s;
}

.chat-rooms .item:nth-child(2) {
	animation-delay: .3s;
}

.chat-rooms .item:nth-child(3) {
	animation-delay: .5s;
}

@keyframes show-chat-room {
	0% {
        transform: translateY(50px);
    }
	75% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.chat-rooms .item a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	background: linear-gradient(0deg, rgba(0, 18, 51, 1) 0%, rgba(6, 40, 102, 1) 100%);
	color: #fff;
	font-weight: 600;
    font-size: 14px;
	line-height: 14px;
}

.chat-rooms .item a span {
	position: absolute;
	top: -10px;
	right: -10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 5px;
	background-color: #E00356;
	color: #fff;
	font-weight: 600;
	font-size: 11px;
	line-height: 11px;
}

.chat-windows {
	position: fixed;
	right: 90px;
	bottom: 20px;
	z-index: 10001;
}

.chat-windows .item {
	width: 430px;
	height: 580px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 0 60px rgb(14 42 71 / 25%);
}

.chat-windows .item .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
	border-bottom: 1px solid #ddd;
	padding: 10px 15px;
}

.chat-windows .item .header h4 {
	font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}

.chat-windows .item .header ul {
	display: flex;
	align-items: center;
	gap: 5px;
}

.chat-windows .item .header ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
}

.chat-windows .item .header ul li a:hover {
	background-color: #eee;
}

.chat-windows .item .header ul li a i {
	position: relative;
	top: 2px;
	font-size: 18px;
	line-height: 18px;
	color: #001233;
}

.chat-windows .item .messages {
	height: 484px;
	overflow-y: auto;
	padding: 20px;
	display: flex;
	flex-direction: column-reverse;
	gap: 10px;
}

.chat-windows .item .messages .reply-message {
	position: relative;
	height: 50px;
	background-color: #fff;
	border-top: 1px solid #ddd;
	padding-top: 10px;
	font-size: 12px;
	line-height: 18px;
	display: none;
}

.chat-windows .item .messages .single-message {
	display: flex;
	gap: 5px;
	align-items: center;
	position: relative;
}

.chat-windows .item .messages .single-message .hidden-buttons {
	order: 3;
}

.chat-windows .item .messages .single-message.reverse .hidden-buttons {
	order: 1;
}

.chat-windows .item .messages .single-message .hidden-buttons a {
	font-size: 11px;
	line-height: 11px;
	font-weight: 600;
}

.chat-windows .item .messages .user-avatar {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	flex-shrink: 0;
	order: 1;
}

.chat-windows .item .messages .user-avatar p.letters {
	font-size: 12px;
}

.chat-windows .item .messages .single-message.reverse {
	justify-content: flex-end;
}

.chat-windows .item .messages .single-message > p {
	display: inline-flex;
	align-items: center;
	background-color: #eee;
	padding: 5px 10px;
	border-radius: 8px;
	font-size: 15px;
	max-width: 75%;
	white-space: normal;
	word-break: break-word;
	order: 2;
}

.chat-windows .item .messages .single-message.reverse > p {
	background: linear-gradient(0deg, rgba(0, 18, 51, 1) 0%, rgba(6, 40, 102, 1) 100%);
	color: #fff;
	order: 2;
}

.chat-windows .item .messages .single-message > p .reply {
	background-color: #eee;
	top: -50px;
	padding: 10px;
	border-radius: 8px;
}

.chat-windows .item .footer {
	position: relative;
}

.chat-windows .item .footer input {
	width: 100%;
	display: block;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 5px 10px;
	flex: 1;
}

.chat-windows .item .footer .send-message {
	display: flex;
	align-items: center;
}

.chat-windows .item .footer .send-message button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	border: 0;
	background-color: #fff;
}

.chat-windows .item .footer .send-message button i {
	color: #E00356;
	font-size: 18px;
	line-height: 18px;
}

.tooltip {
	z-index: 100000001;
}

/* DS EDITOR */

.ds-editor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 10003;
}

.ds-editor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.ds-editor-modal-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.ds-editor-modal-content input {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.ds-editor-modal-content button {
    margin-right: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.ds-editor-modal-content button:nth-child(3) {
    background: #007BFF;
    color: #fff;
}

.ds-editor-modal-content button:nth-child(4) {
    background: #dc3545;
    color: #fff;
}

/* 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-75 .window-body {
	width: 75%;
}

.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;}

.checkbox-container {
	max-height: 200px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-item {
	display: flex;
	align-items: center;
}
  
.checkbox-container label {
    margin-left: 5px;
}

.clickable-href {
	cursor: pointer;
}

.posts-list .item {
    padding: 20px;
    background-color: #fff;
	border-radius: 8px;
}

.posts-list .item > a {
	color: #5c3dc3;
}

.posts-list .item .item-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}

.posts-list .item .item-header .post-author {
	align-items: center;
    display: flex;
}

.post-author .user-info {
	display: block;
}

.posts-list .user-avatar,
.panel-body .user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    margin-right: 10px;
}

.user-avatar>p.letters {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: #424fb0;
	border-radius: 8px;
}

.user-avatar {
	width: 32px;
	height: 32px;
    text-align: center;
}

.posts-list .item .item-header .user-info h4,
.panel .user-info h4 {
    font-weight: 600;
    font-size: 15px;
	color: #001233;
}

.posts-list .item .item-header .user-info span.date {
    font-size: 13px;
	line-height: 13px;
    color: #999;
}

.icon-shortcuts {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.icon-shortcuts a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    padding: 15px;
    transition: .2s;
    text-align: center;
	color: #001233;
    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
	text-transform: uppercase;
}

.icon-shortcuts a i {
	display: block;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 24px;
	color: #001233;
}

.chat-messages .item.reverse .user-avatar {
    width: 36px;
    height: 36px;
    order: 2;
    margin-left: 10px;
}

.chat-messages .item.reverse .user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.title {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-info {
	align-items: center;
    display: flex;
}

.table tr {
    border-bottom: 1px solid #eee;
}

.table th {
    padding: 10px 5px;
    color: #666;
    font-weight: 600;
    font-size: 12px;
	text-transform: uppercase;
	background: #f9f9f9;
}

.table tr:last-child {
    border-bottom: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* INFO BOX */

.info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px;
	background-color: #f7f7f9;
	border-radius: 5px;
}

.info-box p {
    display: flex;
	font-weight: 600;
}

.info-box p i {
	position: relative;
	top: .5px;
	font-size: 22px;
	line-height: 22px;
    padding-right: 10px;
}

.info-box .buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background-color: #eee;
    color: #212121;
}

.info-box .buttons a i {
	position: relative;
	top: 2px;
}

.icon-shortcuts span:first-of-type {
	font-size: 28px;
    line-height: 30px;
}

.long-content div {
	background-color: #ffff;
}

.krz-list td a:not(.btn) {
	color: #000000;
}

.panel .user-info h4 { 
	margin-bottom: 0; 
}

.panel .stages-list h4 { 
	margin-bottom: 0; 
}

/* STAGES */

.stages-list .item {
	display: flex;
	align-items: center;
	background-color: #f7f7f9;
    padding: 10px;
	margin-bottom: 7px;
	position: relative;
}

.stages-list .item:last-child {
	margin-bottom: 0px;
}

.stages-list .item a {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.stages-list .item h4 {
    font-size: 16px;
    line-height: 16px;
    color: #000;
    font-weight: 700;
	margin-left: 15px;
}

.stages {
	display: flex;
	gap: 5px;
}

.stages span,
.stages-list .item span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	background-color: #e4e6eb;
}

.stages-list .item span {
	cursor: pointer;
}

.stages span i,
.stages-list .item span i {
	position: relative;
	top: 2px;
}

.stages span.done,
.stages-list .item span.done {
	background-color: #3086f3;
	color: #fff;
}

.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;
}

.extension-icon {
	font-size: 25px;
	line-height: 25px;
	position: relative;
	top: 7px;
	padding-right: 6px;
}

.extension-icon.icon-pdf {
	color: #F40F02;
}

.mention {
	font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    color: #3086f3;
    background-color: #e7f3ff;
	display: inline-block
}

.mention-list {
	position: absolute;
	background: white;
	border: 1px solid #ccc;
	border-radius: 4px;
	z-index: 1000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mention-list div {
	cursor: pointer;
}

.mention-list div:hover {
	background-color: #f0f0f0;
}

.mention-list ul li a {
	display: flex;
	align-items: center;
	padding: 7px 12px;
	transition: .1s;
	font-weight: 600;
    font-size: 15px;
    color: #001233;
}

.mention-list ul li a .user-avatar {
    width: 30px;
    height: 30px;
}

.mention-list ul li a .user-avatar > p.letters {
	font-size: 11px;
	line-height: 11px;
}

.mention-list ul li:first-child a {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.mention-list ul li:last-child a {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.mention-list ul li a:hover {
	background-color: #efefef;
}

.hidden {
	display: none;
}

.item-attachments {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px dashed #bbb;
    padding: 3px 10px;
}

.attachment {
    margin-left: 15px;
}

.item-attachments .attachment a {
    color: #F93822FF;
}

/* CALENDAR */

.calendar-menu-left {
	display: flex;
	align-items: center;
}

.calendar-menu-left ul {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-right: 15px;
}

.calendar-menu-left ul li a {
    width: 40px;
    height: 40px;
    background: linear-gradient(0deg, rgba(0, 18, 51, 1) 0%, rgba(6, 40, 102, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.calendar-menu-left ul li a:hover {
    background-color: #fff;
}

.calendar-menu .left-arrow {
    width: 10px;
    height: 10px;
    border: 4px solid #fff;
    border-left: 0;
    border-top: 0;
    transform: rotate(135deg);
}

.calendar-menu .right-arrow {
	width: 10px;
	height: 10px;
	border: 4px solid #fff;
	border-left: 0;
	border-top: 0;
	transform: rotate(315deg);
}

.calendar-menu-left ul li a:hover .left-arrow {
    border: 4px solid #fff;
	border-left: 0;
    border-top: 0;
}

.calendar-menu-left ul li a:hover .right-arrow {
	border: 4px solid #fff;
	border-left: 0;
	border-top: 0;
}

.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 1fr 1fr;
	border-collapse: collapse;
}

.calendar-items .item {
	border: 2px solid rgb(238 240 252);
	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: 3px solid rgb(238 240 252);
	padding: 10px 0;
	color: #000;
}

.calendar-items .item .item-header .day-name {
	text-transform: uppercase;
}

.calendar-items .item .item-header .day-of-month {
	padding: 23px;
	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: #e0035621;
}

.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 rgb(238 240 252);
	font-size: 14px;
	border-left: 4px solid #052258;
}

.calendar-items .item .events a:hover {
	background-color: #e0035621;
}

.calendar-menu {
	display: flex;
    align-items: center;
	position: relative;
	justify-content: space-between;
}

.calendar-menu h2.title {
	margin-bottom: 0px;
	margin-left: 10px;
}

/* EDUCATION */

.education {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.education .item {
    background-color: #fff;
    padding: 15px;
	border-radius: 8px;
}

.education .item h6 {
	font-weight: 600;
}

.education .item video {
	width: 100%;
	height: 280px;
}

.education .item .cat {
	padding: 5px 10px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 13px;
	line-height: 13px;
}

.aside-submenu .events li a .user-avatar {
    height: 40px;
    min-width: 40px;
}

.aside-submenu .events li a {
    display: flex;
    gap: 10px;
    padding: 10px;
}
.rating {
  display: flex;
  gap: 10px;
}

.star {
  width: 25px;
  aspect-ratio: 1;
  background: #eef0fc;
  clip-path: polygon(
    50% 0,
    calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
    calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
    calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
    calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn)))
  );
  cursor: pointer;
  transition: background .2s;
}

.star.filled {
  background: #F8CA00;
}

.text-indent {
	margin-left: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.installment-amount,
.buyout-amount {
	margin: 20px 0px;
    font-weight: 700;
}

.table tr.verified-client {
	--bs-table-bg: #f0fff0;
}

.table tr.inverified-client {
	--bs-table-bg: #fff0f0;
}

.dot-green, .dot-red {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}
.dot-green {
    background-color: #0cd10c;
}
.dot-red {
    background-color: red;
}

@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: none;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		background: linear-gradient(0deg, rgba(0, 18, 51, 1) 0%, rgba(6, 40, 102, 1) 100%);
		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;
	}
	
	.icon-shortcuts {
		grid-template-columns: 1fr 1fr;
	}
	
	.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) {
	
    
	
}