html {
	box-sizing: border-box;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	font-family: "Nunito Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	min-height: 100%;
	padding: 0;
	max-width: 100%;
	background-color: #fbfdfe;
	margin: 0;
}

header,
section,
nav,
main {
	display: block;
	margin: 0;
}

a {
	color: #464d53;
}

img {
	vertical-align: middle;
	border-style: none;
}

.thumbnail-wrapper {
	height: 85px;
	width: 85px;
	border-radius: 5px;
	background-color: #979797;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.24);
	overflow: hidden;
	transition: all 0.3s ease;
}

.img-fit {
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.container.center {
	display: flex;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

.login-section {
	position: relative;
	background-color: #cbcbcb;
	text-align: center;
	border-radius: 5px;
	width: 676px;
	max-width: 100%;
	height: 518px;
	margin: auto;
}

.login-logo {
	position: absolute;
	top: 5em;
	margin: auto;
}

.login-box {
	background: #823e66;
	width: 315px;
	padding: 1em 2em;
	border-radius: 5px;
}

legend {
	color: #ffffff;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
	margin: 1em auto;
	outline: medium none;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus .form-control:-webkit-autofill,
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover .form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
	border: 1px solid #f4a23c;
	-webkit-text-fill-color: #f4a23c;
	-webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
	box-shadow: 0 0 0px 1000px #ffffff inset;
	transition: background-color 5000s ease-in-out 0s;
}

.search-input {
	border: 1px solid #979797;
	border-radius: 50px;
	padding: 0.375rem 0.75rem;
	outline: medium none;
	transition: all 0.3s ease;
	box-shadow: 0 0px 1px rgba(0, 0, 0, 0.15);
	-webkit-appearance: none;
}

.search-input:focus {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	outline: medium none;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
		transform 0.15s ease-in-out;
}

.btn:hover {
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25) !important;
}

.btn:active {
	transform: translateY(2px);
}

.send-btn {
	display: flex;
	justify-content: center;
}

.send-btn > * {
	flex: 0 0 25%;
}

.btn-login {
	background-color: #07b970;
	border-radius: 50px;
	color: #ffffff;
	width: 70%;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	min-height: 2em;
	padding: 1em 0;
	border-bottom: 1px solid transparent;
	background: #ffffff;
	box-shadow: 0 0px 7px 0 rgba(0, 0, 0, 0.24);
	z-index: 1023;
}

.nav {
	display: flex;
	list-style: none;
	margin: 0 -15px;
	padding: 0;
	min-width: 110px;
}

.nav-item {
	display: inline-block;
	text-transform: uppercase;
	padding: 0 15px;
}

.nav-link {
	width: 100%;
	display: block;
	margin: auto;
}

.nav-link span {
	display: block;
}

.nav-link:active .svg-icon,
.nav-link.active .svg-icon {
	fill: url(#myGraident);
	stroke: transparent;
}

.pager {
	position: relative;
	display: flex;
	width: 100%;
	margin: 0 auto;
}

.pager > * {
	background-color: #ffffff;
	padding: 0.5em 2em;
	border: 1px solid #d8d8d8;
	border-radius: 50px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
	transition: all ease-in-out 0.15s;
	cursor: pointer;
	-webkit-appearance: button;
	outline: medium none;
}

.pager > .next:active {
	transform: translateX(4px);
}

.pager > .prev:active {
	transform: translateX(-4px);
}

.main {
	margin: 7em auto;
}

.card {
	padding: 1em;
	margin-bottom: inherit;
	background: #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	transition: all 0.3s ease;
}

.details {
	margin: auto 0;
}

.fancy-box-wrap,
.lg-fancy-box-wrap {
	display: block;
	height: 107px;
	position: relative;
	width: 100%;
	margin-bottom: 1em;
}

.fancy-box-wrap:hover .card,
.fancy-box-wrap:active .card {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fancy-box-wrap:hover .thumbnail-wrapper,
.fancy-box-wrap:active .thumbnail-wrapper {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}

.fancy-box-wrap > .thumbnail-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
}

.fancy-box-wrap > .card {
	position: absolute;
	height: 100%;
	left: 2.95em;
	right: 0;
	top: 0;
	bottom: 0;
	padding-left: 4.5em;
	margin: 0;
}

.fancy-box-wrap[enabled="false"] {
	pointer-events: none;
	cursor: none;
	opacity: 0.5;
}

.fancy-box-wrap[enabled="false"] .thumbnail-wrapper,
.fancy-box-wrap[enabled="false"] .card {
	box-shadow: none !important;
}

.title {
	font-size: 18px;
	font-weight: 600;
	color: #212121;
}

.container {
	position: relative;
	/* max-width: 960px; */
	max-width: 1220px;
	padding: 0 2em;
	margin: 0 auto;
}

.container-fluid {
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
}

.grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.grid > .col {
	padding: 0 15px;
}

.grid--full > .col {
	flex: 0 0 100%;
}

.grid--1of2 > .col {
	flex: 0 0 50%;
}

.column {
	flex-direction: column;
}

.justify-center {
	justify-content: center;
}

.space-around {
	justify-content: space-around;
}

.space-between,
.nav-space {
	justify-content: space-between;
}

.align-center {
	align-items: center;
}

.justify-self-center {
	justify-self: center;
}

@media (min-width: 960px) {
	.container .login {
		max-width: 80%;
	}
}

@media (min-width: 576px) {
	.lg-fancy-box-wrap {
		height: 214px;
	}
	.lg-fancy-box-wrap > .thumbnail-wrapper {
		width: 170px;
		height: 170px;
	}
	.lg-fancy-box-wrap > .card {
		left: 5.9em;
		padding-left: 9em;
	}
}

@media (max-width: 576px) {
	.login-section {
		background: none;
	}
	.nav-link {
		padding: 1em 1em 0.5em;
	}
	.sm-grid--full > .col {
		flex: 0 0 100%;
	}
}

body.scrollLock,
header {
	overflow: hidden;
}

.hide {
	display: none;
}

.footer-bottom {
	position: fixed;
	background-color: #fff;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: 0 0px 7px 0 rgba(0, 0, 0, 0.24);
	z-index: 1023;
}

#preloader {
	/* position: relative;
    height: 80vh;
    background: rgba(6, 6, 6, .09019607843137255);
    z-index: 1;
	margin: auto */
	position: fixed;
	height: 100%;
	background: rgba(6, 6, 6, 0.09019607843137255);
	left: 0;
	z-index: 1;
	margin: auto;
	right: 0;
}

#s-preloader {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 3000;
}

.loader-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #823e66;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

.loader:after,
.loader:before {
	position: absolute;
	content: "";
}

.loader:before {
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f5a740;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}

.loader:after {
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f0f;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
