@import url('https://use.fontawesome.com/releases/v5.7.2/css/all.css');
@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
:root {
	--brand-color: rgb(241 134 60);
	--text-color:#000;
	--link-color:#0070c9;
	--link-hover:rgb(6, 22, 50);
	--title-color: #000;
	--body-color: #f4f5f7;
	--sidebar-color: #ffffff;
	--header-color: #f4f5f7;
	--footer-color: #f4f5f7;
	--border-color: #d9d9d9;
	--button-color: rgb(241 134 60);
	--box-border: #e6eaee;
	--box-background: #ffffff;
	--board-border: #e6eaee;
}
html, body {
	margin: 0;
	padding: 0;
}
body {
	background-color: #ffffff;
	color: var(--text-color);
	font-family: 'Muli', sans-serif;
	font-weight: 400;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
* {
	box-sizing: border-box;
}
.loader {
	position: relative;
	min-height: 100px;
}
.loader:after {
	content: '';
	border: 2px solid var(--border-color);
	border-top: 2px solid var(--brand-color);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	animation: loader 1s linear infinite;
}
@keyframes loader {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}
h1, h2, h3, h4, h5, h6 {
	color: var(--title-color);
	font-weight: 600;
	margin: 0 0 15px;
}
h1 {
	font-size: 28px;
	font-weight: 800;
}
h2 {
	font-size: 26px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 18px;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: var(--link-color);
	outline: none;
	text-decoration: none;
	transition: color .5s;
}
a:active,
a:focus,
a:visited {
	outline: none;
	text-decoration: none;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}
bdo {
	direction: ltr;
}
p {
	font-size: 18px;
	margin: 0 0 15px;
}
p:last-of-type {
	margin: 0;
}
.theme-text {
	color: var(--button-color);
}
button {
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
}
.l-btn {
	background: var(--button-color);
	border-radius: 16px;
	border: 1px solid var(--button-color);
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	height: 40px;
	padding: 10px 16px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	-webkit-appearance: none;
	min-width: 134px;
	transition: all 0.4s ease-in;
}
input[type=submit].l-btn {
	height: 39px;
}
.l-btn i {
	margin-right: 5px;
	font-size: 14px;
}
.l-btn--sm {
	height: auto;
	padding: 8px 12px;
	font-size: 16px;
	min-width: 1px;
}
.l-btn--success {
	background: #39b54a;
	background: linear-gradient(180deg,#39b54a,#34aa44);
	border-color: #249533;
}
.l-btn--black {
	background: #424242;
	border-color: #424242;
}
.l-btn--lined {
	background: #fff;
	background: linear-gradient(180deg,#fff,#f2f4f7);
	border-color: #dfe3e9;
	color: var(--theme-color);
}
.l-btn.active,
.l-btn:hover,
.l-btn:active,
.l-btn:focus {
	background: transparent;
	color: var(--button-color);
}
.l-btn--success.active,
.l-btn--success:hover,
.l-btn--success:active,
.l-btn--success:focus {
	background: transparent;
	color: #39b54a;
}
.l-btn--black.active,
.l-btn--black:hover,
.l-btn--black:active,
.l-btn--black:focus {
	background: transparent;
	color: #424242;
}
.l-link {
	color: var(--button-color);
	cursor: pointer;
	font-weight: 500;
}
.l-link--red {
	color: #d8352e;
}
input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
input[type='search'],
input[type='url'],
input[type='time'],
input[type='color'] {
	background: #ffffff;
	border:1px solid var(--border-color);
	border-radius: 18px;
	color: var(--text-color);
	font-size: 18px;
	font-family: inherit;
	caret-color: var(--text-color);
	padding: 8px 16px;
	width: 100%;
	outline: none;
	transition: all ease .5s;
	height: 40px;
	-webkit-appearance: none;
}
select {
	background: #ffffff;
	border:1px solid var(--border-color);
	border-radius: 18px;
	color: var(--text-color);
	font-size: 18px;
	font-family: inherit;
	caret-color: var(--text-color);
	padding: 1px 16px;
	width: 100%;
	outline: none;
	transition: all ease .5s;
	height: 40px;
}
input:disabled {
	background-color: #f9f9f9;
	opacity: 0.5;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
textarea {
	background: #ffffff;
	border:1px solid var(--border-color);
	border-radius: 18px;
	color: var(--text-color);
	caret-color: var(--text-color);
	font-size: 18px;
	font-family: inherit;
	padding: 8px 16px;
	height: 72px;
	width: 100%;
	outline: 0;
	resize: none;
	transition: all ease .5s;
	-webkit-appearance: none;
}
label {
	font-size: 16px;
	font-weight: normal;
	display: block;
	line-height: 1;
	margin: 0 0 8px;
}
label.error, label.success {
	font-size: 14px;
	margin: 5px 0;
}
label.error {
	color: #d8352e;
}
label.success {
	color: #4CAF50;
}
.required {
	color: #d8352e;
}
.l-radio,
.l-checkbox {
	display: inline-block;
	margin-right: 10px;
}
.l-radio input,
.l-checkbox input {
	margin: 0;
}
.l-radio label,
.l-checkbox label {
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
}
.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	max-width: 1260px;
	padding: 0 15px;
}
@media (min-width: 768px) {
	.container {
		padding: 0 30px;
	}
}
@media (min-width: 992px) {
	.container {
		padding: 0 45px;
	}
}
@media (min-width: 1200px) {
	.container {
		padding: 0 60px;
	}
}
.container--xsm {
	max-width: 1060px;
}
.margin-bottom-20 {
	margin-bottom: 20px;
}
.content-center {
	text-align: center;
}
.password-box {
	position: relative;
}
span.play-password {
	position: absolute;
	right: 5px;
	top: 13px;
	font-size: 13px;
	cursor: pointer;
}
.custom-upload {
	position: relative;
	overflow: hidden;
	background: #fff;
	border:1px solid var(--border-color);
	color: var(--theme-color);
	font-family: inherit;
	padding: 8px 16px;
	border-radius: 18px;
	font-size: 18px;
	height: 40px;
}
.custom-upload input[type="file"] {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	width: 100%;
}
.custom-upload__btn {
	background-color: var(--button-color);
	color: #fff;
	padding: 8px 16px;
	font-weight: 600;
	right: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: none;
}
.custom-upload__input {
	background: transparent;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 0;
	position: absolute;
	pointer-events: none;
	padding: 0 16px;
}
.alert {
	border-radius: 16px;
	color: #ffffff;
	padding: 16px;
	margin-bottom: 25px;
}
.alert-success {
	background-color: #3b875b;
}
.alert-info {
	background-color: #59c1f5;
}
.alert-warning {
	background-color: #FFC107;
}
.alert-danger {
	background-color: #d8352e;
}
.alert-fixed {
	position: fixed;
	left: 20px;
	bottom: 20px;
	padding: 16px 26px 16px 16px;
	z-index: 1001;
	margin: 0;
}
.alert-fixed i {
	margin: 10px;
}
@media (min-width: 992px) {
	.alert-fixed {
		left: 30px;
		bottom: 85px;
		min-width: 330px;
	}
}
.align-right {
	text-align: right;
}
.header__wrap {
	display: flex;
	align-items: center;
	padding: 15px 0;
}
.header__block {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header__burger button {
	border: 0;
	background-color: transparent;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	cursor: pointer;
	display: block;
	padding: 0;
	outline: none;
	position: relative;
	margin: 0 5px;
}
.small-txt {
	font-size: 14px;
	margin: 0;
	color: #607D8B;
}
.header__burger .icon-bar {
	border-radius: 16px;
	background-color: var(--title-color);
	display: block;
	height: 2px;
	margin: 0 auto;
	transition: background-color .6s;
}
.header__burger .icon-bar + .icon-bar {
	margin-top: 4px;
}
.header__nav {
	position: fixed;
	top: 0;
	background: #fff;
	z-index: 9;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	transition: transform .5s;
}
.header__nav.is-open {
	transform: translateX(0);
}
.header__nav ul {
	margin: 0;
	padding: 0;
}
.header__nav li a {
	color: var(--title-color);
	padding: 15px 20px;
	border-bottom: 1px dotted var(--border-color);
	font-weight: 500;
	display: block;
}
.header__nav li {
	list-style: none;
	display: block;
}
.header__nav li:last-of-type a {
	border-bottom: 0;
}
.header__list--close,
.header__close {
	display: block;
	padding: 5px;
	background-color: #ff5722;
	font-size: 0;
	cursor: pointer;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 16px;
}
.header__list--close:after,
.header__close:after {
	color: #ffffff;
	font-size: 30px;
	font-weight: bolder;
	content: 'x';
	width: 48px;
	height: 48px;
	display: block;
	line-height: 42px;
	text-align: center;
}

@media (min-width: 800px){
	.header__burger {
		display: none;
	}
	.header__list--close,
	.header__close {
		display: none;
	}
	.header__nav {
		background:transparent;
		position: static;
		height: auto;
		width: auto;
		transform: none;
	}
	.header__nav.is-open {
		transform: none;
	}
	.header__nav li {
		display: inline-block;
		margin-left: 16px;
	}
	.header__nav li a {
		padding: 15px 0;
		border: 0;
	}
}
@media (min-width: 992px){
	.header__nav li {
		margin-left: 26px;
	}
}
.footer {
	border-top: 1px solid var(--border-color);
	padding: 45px 0 0;
	text-align: center;
}
.footer-block {
	border-top: 1px solid var(--border-color);
	padding: 45px 0;
}
.footer h6 {
	text-transform: capitalize;
	font-weight: 800;
	margin-bottom: 25px;
}
.footer-nav li {
	margin-bottom: 10px;
}
.footer-nav li a {
	color: var(--title-color);
}
.social-nav li {
	display: inline-block;
	margin-right: 20px;
}
.social-nav li:last-of-type {
	margin-right: 0;
}
.social-nav li a {
	color: #fff;
	font-size: 20px;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background-color: var(--brand-color);
	display: inline-block;
}
.footer__btm p{
	font-weight: 200;
	font-size: 14px;
	margin: 0 0 15px;
}
@media (min-width: 768px){
	.footer {
		text-align: left;
	}
	.footer__btm {
		display: flex;
		justify-content: space-between;
	}
	.footer__btm p{
		margin: 0;
	}
}
.margin-bottom-45 {
	margin-bottom: 45px;
}
.page-content {
	min-height: 35vh;
}
.page-header {
	padding: 25px 0 35px;
	border-top: 1px solid var(--border-color);
}
.page-header h1 {
	margin: 0;
	font-size: 24px;
	font-weight: 900;
}
.page-header p {
	opacity: 0.7;
	font-weight: 200;
}
@media (min-width: 640px){
	.page-header h1 {
		font-size: 35px;
	}
}
@media (min-width: 768px){
	.page-header h1 {
		font-size: 45px;
	}
	.page-header {
		padding: 45px 0;
	}
}
.newsletter {
	background-color: #D7EFEE;
	padding: 40px 15px;
	border-radius: 16px;
}
.newsletter--lg {
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,246,241,1) 47%, rgba(245,246,250,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(245,246,241,1)), color-stop(100%, rgba(245,246,250,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,246,241,1) 47%, rgba(245,246,250,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,246,241,1) 47%, rgba(245,246,250,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,246,241,1) 47%, rgba(245,246,250,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(245,246,241,1) 47%, rgba(245,246,250,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f6fa', GradientType=0 );
	border-radius: 0;
	text-align: center;
}
.newsletter-box {
	margin-top: 20px;
	position: relative;
}
.newsletter--lg .newsletter-box {
	max-width: 300px;
	margin: 20px auto 0;
}
.newsletter-box button {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.newsletter--lg h4 {
	font-size: 28px;
}
.newsletter p {
	font-weight: 200;
}
@media (min-width: 768px){
	.newsletter {
		padding: 40px;
	}
}
.app-alert {
	background: #f1863c;
	padding: 15px;
	text-align: center;
	color: #ffffff;
}
.app-alert p {
	font-size: 15px;
}
.app-alert a {
	color: #ffffff;
	text-decoration: underline;
}


.generic {
	padding: 45px 0;
	border-top: 1px solid var(--border-color);
}
.generic__body {
	max-width: 700px;
	margin: 0 auto;
}
.generic__header {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 46px;
}
.generic__header h1 {
	font-size: 26px;
}
.generic ul,
.generic ol {
	line-height: 1.6;
	margin-bottom: 25px;
	margin-left: 30px;
	padding: 0;
}
.generic ul li,
.generic ol li {
	margin-bottom: 15px;
}
.generic ul li{
	list-style: disc;
}
.generic ol li {
	list-style: decimal;
}
.generic p {
	line-height: 1.6;
	margin-bottom: 25px;
}
.header__logo {
	max-width: 170px;
}
@media (min-width: 640px){
	.header__logo {
		max-width: none;
	}
}
@media (min-width: 768px){
	.generic__header h1 {
		font-size: 45px;
	}
}
.txt-sm {
	font-size: 13px;
	opacity: 0.7;
}
ul.pagination {
	display: flex;
	justify-content: center;
}
.page-link {
	color: var(--text-color);
	padding: 0 3px;
	line-height: 30px;
	min-width: 30px;
	display: inline-block;
	border: 1px solid var(--border-color);
	margin: 1px;
	text-align: center;
	font-size: 14px;
	border-radius: 16px;
	height: 30px;
}
.page-item.active .page-link {
	background: var(--button-color);
	color: #ffffff;
}
.cal-custom-event {
	cursor: pointer;
}
.fc-toolbar {
	border-radius: 16px;
}
.footer-nav li a:hover,
.header .header__list a:hover,
.header__nav li a:hover {
	color: #f1863c;
}
.generic--notice .generic__header {
	text-align: left;
}
li.menu-signin a {
	color: #f1863c;
	font-weight: 800;
}
span.invalid-feedback {
	color: #d8352e;
	font-size: 12px;
}
span.invalid-feedback strong {
	font-weight: normal;
}

.common-alerts .alert{
	margin: 15px 0;
}
.common-alerts .alert .close{
	display: none !important;
}
.margin-bottom-25 {
	margin-bottom: 25px;
}
.wid-box--border {
	padding: 15px 15px 0;
	border: 1px solid var(--border-color);
	margin-bottom: 25px;
	border-radius: 16px;
}
.ad-box__title h6 {
	font-size: 10px;
	margin: 5px 0;
	opacity: 0.5;
}
span.rating {
	width: 150px;
}
fieldset {
	border: 0;
	text-align: left;
	padding: 0;
	margin: 0;
}
.contact-content {
	padding: 15px;
	border-radius: 16px;
	height: 100%;
	background-color: #f5f6fa;
}
.remember-me {
	display: flex;
	align-items: center;
}
.remember-me label {
	margin: 0;
}
.msg-noevents {
	margin-bottom: 20px;
}
.row--center {
	justify-content: center;
}
.l-popup__block {
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	padding: 20px;
	text-align: left;
	border-radius: 16px;
	transform: translate(-50%, -50%);
	width: 95%;
	max-width: 360px;
	max-height: 90vh;
	overflow: auto;
}
.l-popup {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgb(0 0 0 / 60%);
	z-index: 9;
	display: none;
}
span.l-popup__close {
	position: absolute;
    right: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--button-color);
    background-color: var(--button-color);
    border-radius: 50%;
    display: block;
    color: #fff;
}
.wrap-privateblog p {
	font-size: 26px;
	color: #fff;
	line-height: 1 !important;
	font-weight: 600;
	margin-bottom: 30px !important;
}
.wrap-privateblog {
	padding: 40px 15px;
	display: block;
	background: #4caf50;
	border-radius: 16px;
	margin: 15px 0 30px;
	text-align: center;
}
.wrap-privateblog .l-btn {
	background: #ffffff;
	color: #4caf50;
	border-color: transparent;
}
.l-popup .l-btn {
	background: var(--brand-color);
	color: #fff;
	min-width: auto;
}
ul.social-nav {
	margin-bottom: 45px;
}
p:empty {
	display: none;
}
.page-header__block a {
	margin-top: 15px;
	display: block;
}
.wrap-privateblog__btns {
	display: flex;
	justify-content: center;
}
.wrap-privateblog__btns a {
	margin-right: 10px;
}
.help-item {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}
.help-item:last-of-type {
	border-bottom: 0;
}
.help-item h2 {
	font-size: 20px;
	margin: 0;
}
.help-item h2 a {
	color: var(--text-color);
}
.l-popup--landing {
	display: block;
}
.l-popup__spotlight {
	width: 100%;
	height: 180px;
	background-size: cover;
	background-position: center;
	border-radius: 8px 8px 0 0;
}
.l-popup--landing .l-popup__block {
	padding: 0;
	max-width: 440px;
}
.l-popup--landing .l-popup__content {
	padding: 20px;
}
.ratings {
	margin-bottom: 10px;
}
.l-popup__content h2 {
	margin-bottom: 20px;
	color: var(--brand-color);
	line-height: 1;
}
.l-popup--landing .l-popup__content h5 {
	font-weight: 400;
	padding: 15px;
	background-color: #e91e633d;
	border: 1px solid #e91e6399;
	border-radius: 16px;
	margin: 15px 0 0;
}
p.p-lg {
	font-weight: 800;
	margin: 15px 0;
	display: block;
}
span.l-tag {
	position: absolute;
	width: 50px;
	height: 50px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
}
.l-popup--landing .l-btn {
	background-color: #03a9f4;
	border-color: #03a9f4;
	min-width: 180px;
	padding: 15px;
	height: auto;
	width: 100%;
}
.l-popup--landing .ratings i {
	opacity: 0.1;
	font-size: 11px;
}
.order-after {
    padding: 60px 0;
}
.order-after--success .order-after__header h1 {
    color: #8bc34a;
}
.order-after--failure .order-after__header h1 {
    color: #f44336;
}
.order-after__header h1 {
    font-size: 30px;
}
.order-after__header h3 {
	font-size: 18px;
}
.order-after__header {
    margin-bottom: 30px;
}
.consulation-list .consulation-item {
    margin-bottom: 20px;
}
.consulation-list .consulation-item:hover {
	background-color: var(--brand-color);
}
.consulation-list .consulation-item.active {
	background-color: green;
	border-color: green;
}
.err-eventtype {
	color: red;
}
@media (min-width: 768px){
.order-after__header h1 {
    font-size: 55px;
}
.consulation-list .consulation-item {
    width: calc((100%/2) - 20px);
    height: auto;
    margin-right: 10px;
    margin-left: 10px;
}
.consulation-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
}
.key-item {
	margin-bottom: 25px;
}
.key-item h4 {
    font-weight: 300;
    margin: 0;
    display: flex;
    align-items: flex-start;
}
.wid-box--key p i {
    font-size: 14px;
    color: var(--brand-color);
    margin-right: 10px;
}
.key-item i {
    font-size: 16px;
    color: var(--brand-color);
    margin-right: 10px;
    margin-top: 4px;
}
.wid-box--key {
    padding: 15px;
}
.margin-bottom-90 {
	margin-bottom: 90px;
}
.margin-bottom-30 {
	margin-bottom: 30px;
}
.book-banner__thumb {
	display: none !important;
}
.cal-custom-event.active {
    background: green;
}
