/*#region fonts*/
@font-face {
	font-family:'Korolev';
	src: url('../fonts/KorolevBoldCompressed.otf');
	font-style: normal;
	font-weight: 700;
	}
@font-face {
	font-family:'Korolev';
	src: url('../fonts/KorolevMediumCompressed.otf');
	font-style: normal;
	font-weight: 500;
	}
@font-face {
	font-family:'Korolev';
	src: url('../fonts/KorolevLightCompressed.otf');
	font-style: normal;
	font-weight: 300;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-Black.ttf');
	font-style: normal;
	font-weight: 900;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-BlackItalic.ttf');
	font-style: italic;
	font-weight: 900;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-Bold.ttf');
	font-style: normal;
	font-weight: 700;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-BoldItalic.ttf');
	font-style: italic;
	font-weight: 700;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-Regular.ttf');
	font-style: normal;
	font-weight: 400;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-Italic.ttf');
	font-style: italic;
	font-weight: 400;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-Light.ttf');
	font-style: normal;
	font-weight: 300;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-LightItalic.ttf');
	font-style: italic;
	font-weight: 300;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-Thin.ttf');
	font-style: normal;
	font-weight: 100;
	}
@font-face {
	font-family:'Lato';
	src: url('../fonts/Lato-ThinItalic.ttf');
	font-style: italic;
	font-weight: 100;
	}
/*#endregion*/

/*#region dashboard.css*/
body {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.55;
	background-color: #F5F5F5;
}
a {
	color: #F3BD46;
	text-decoration: underline;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
a:hover, a:focus {
	text-decoration: none;
}
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 42px;
	width: 245px;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 100%;
	cursor: pointer;
	color: #191919;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.btn:hover {
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.btn-col {
	flex-direction: column;
}
.btn-img {
	text-align: left;
	font-size: 14px;
}
.btn-img img {
	margin-right: 10px;
}
.btn img {
	max-width: 22px;
	max-height: 22px;
	margin-top: -3px;
}
.btn span {
	display: block;
	text-align: center;
}
.btn span:first-child {
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 5px;
}
.btn span:last-child {
	font-weight: 700;
}
.btn-fit {
	width: auto;
}
.btn-small {
	width: 145px;
}
.btn-100 {
	width: 100%;
}
.btn-back {
	flex-shrink: 0;
	width: 42px;
	padding-left: 0;
	padding-right: 0;
	background-color: #F5F5F5;
	background-image: url("../images/ico-btn-back.svg");
	background-size: 40% 40%;
	background-position: center;
	background-repeat: no-repeat;
	color: #9F9F9F;
}
.btn-back.btn-back-descr {
	flex-shrink: 1;
	width: 245px;
	color: #9F9F9F;
	background-image: none;
	padding-right: 30px;
}
.btn-back.btn-back-descr::before {
	content: "";
	display: inline-block;
	width: 42px;
	height: 42px;
	margin-right: 10px;
	background-image: url("../images/ico-btn-back.svg");
	background-size: 40% 40%;
	background-position: center;
	background-repeat: no-repeat;
}
.btn-xl {
	flex-direction: column;
	height: auto!important;
	width: 100%;
	max-width: 500px;
	padding: 25px;
	margin: 0 auto 30px auto;
}
.btn-xl > span {
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}
.btn-xl > span:nth-child(1) {
	font-family: "Korolev";
	font-weight: 700;
	font-size: 35px;
	line-height: 1;
	text-transform: uppercase;
}
.btn-xl > span:nth-child(2) {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.55;
	width: 100%;
	max-width: 245px;
}
.btn-yellow {
	color: #ffffff;
	background-image: -moz-linear-gradient(
		145deg,
		rgba(243,189,70,1) 0%,
		rgba(243,189,70,1) 7.5%,
		rgba(228,143,20,1) 25%,
		rgba(243,189,70,1) 75%,
		rgba(228,143,20,1) 100%
	);
	background-image: -webkit-linear-gradient(
		145deg,
		rgba(243,189,70,1) 0%,
		rgba(243,189,70,1) 7.5%,
		rgba(228,143,20,1) 25%,
		rgba(243,189,70,1) 75%,
		rgba(228,143,20,1) 100%
	);
	background-image: linear-gradient(
		145deg,
		rgba(243,189,70,1) 0%,
		rgba(243,189,70,1) 7.5%,
		rgba(228,143,20,1) 25%,
		rgba(243,189,70,1) 75%,
		rgba(228,143,20,1) 100%
	);
	background-size: 400% 400%;
	background-repeat: no-repeat;
	border: none;
}
.btn-yellow img {
	filter: invert(1);
}
.btn-white {
	background-color: #FFFFFF;
}
.btn-white.btn-border {
	height: 40px;
	border: solid 1px #191919;
}
.btn-black {
	background-color: #191919;
	color: #FFFFFF;
}
.btn-red {
	background-color: #C95248;
	color: #FFFFFF;
}
.btn-green {
	background-color: #66C948;
	color: #FFFFFF;
}
.btn-grey {
	background-color: #F5F5F5;
	color: #1A1A1A;
}
.btn-download {
	flex-shrink: 0;
	width: 42px;
	background-color: #F3BD46;
	background-image: url("../images/ico-file-download.svg");
	background-size: 40% 40%;
	background-position: center;
	background-repeat: no-repeat;
	color: #9F9F9F;
}
.btn-remove {
	flex-shrink: 0;
	width: 42px;
	background-color: transparent;
	background-image: url("../images/ico-file-remove.svg");
	background-size: 40% 40%;
	background-position: center;
	background-repeat: no-repeat;
	color: #9F9F9F;
}
.btn-remove:hover {
	box-shadow: none;
	transform: rotate(90deg);
}
p {
	margin-bottom: 30px;
}
p:last-child {
	margin-bottom: 0;
}
strong, b {
	font-weight: 700;
}
img {
	max-width: 100%;
}
ul,
ol {
	list-style: none;
	margin-bottom: 30px;
}
ul:last-child,
ol:last-child {
	margin-bottom: 0;
}
ol {
	counter-reset: list-counter;
}
ul li,
ol li {
	padding-left: 20px;
	position: relative;
}
ol li {
	counter-increment: list-counter;
}
ul li::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: #F3BD46;
	position: absolute;
	left: 0;
	top: 5px;
}
ol li::before {
	content: counter(list-counter);
	display: block;
	color: #F3BD46;
	position: absolute;
	left: 0;
	top: 0;
}
ul li a,
ol li a {
	color: #1A1A1A;
}
ul.nav-list li {
	padding-bottom: 10px;
}
ol.spacing-items li {
	padding-bottom: 20px;
	padding-left: 30px;
}
h1 {
	font-family: "Korolev";
	font-weight: 700;
	font-size: 35px;
	color: #191919;
	line-height: 1;
	text-transform: uppercase;
}
h2 {
	font-weight: 700;
	font-size: 24px;
	color: #191919;
	margin-bottom: 20px;
}
h3 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 20px;
}
.ta-center {
	text-align: center;
}
.c-gray {
	color: #9F9F9F;
}
.c-white {
	color: #FFFFFF;
}
.c-green {
	color: #66C948;
}
.c-yellow {
	color: #f3bd46;
}
.c-red {
	color: #C95248;
}
.ws-nowrap {
	white-space: nowrap;
}
.bc-yellow {
	background-color: #F3BD46!important;
}
.fs-20 {
	font-size: 20px;
	font-weight: 500;
}
.fs-14 {
	font-size: 14px;
}
.tooltip {
	font-size: 14px;
	padding-left: 30px;
	margin-bottom: 30px;
	background-image: url("../images/ico-tooltip.svg");
	background-size: 16px 16px;
	background-position: left 1px;
	background-repeat: no-repeat;
}
.tooltip:last-child {
	margin-bottom: 0;
}
hr {
	-webkit-appearance: none;
	border: none;
	border-bottom: solid 1px #707070;
	padding-top: 20px;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 50px;
	box-shadow: none;
}
hr.light {
	border-bottom: solid 1px #F5F5F5;
}
.container {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
}
header {
	background-color: #FFFFFF;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	border-bottom: solid 1px #F5F5F5;
	z-index: 10;
}
header .container {
    align-items: center;
	flex-wrap: nowrap;
    height: 90px;
}
header .logo {
	display: flex;
	align-items: center;
}
header .logo a {
	margin-right: 20px;
	color: #1A1A1A;
	text-decoration: none;
}
header .logo a:last-child {
	margin-right: 0;
}
header .logo img {
	display: block;
	width: 45px;
	height: auto;
}
header .logo span {
	display: flex;
	align-items: center;
}
header .logo span:first-child {
	font-size: 20px;
	font-weight: 700;
}
header .logo span:last-child {
	font-weight: 500;
}
header nav {
    display: flex;
    align-items: center;
	flex-shrink: 0;
	margin-left: -10px;
	margin-right: -10px;
}
.nav-item {
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
	display: flex;
	height: 55px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #1A1A1A;
}
.nav-item .icon {
	width: 28px;
	height: 28px;
	position: relative;
	cursor: pointer;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.nav-item .icon.badge {
	width: 38px;
	padding-right: 10px;
}
.nav-item .icon.badge span {
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #F50000;
	color: #FFFFFF;
	text-align: center;
	line-height: 16px;
	font-size: 12px;
	font-weight: 500;
	position: absolute;
	top: -9px;
	right: 0;
	padding-top: 2px;
}
.nav-item .icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.btn-nav {
	min-width: 145px;
	width: fit-content;
	height: 60px;
	margin-left: 10px;
	margin-right: 10px;
}
.btn-nav.btn-border {
	height: 58px;
}
.btn-nav + .nav-item {
	display: none;
}
.nav-item .submenu {
	position: absolute;
	right: 0;
	bottom: -18px;
	transform: translateY(100%);
	overflow-y: scroll;
	background-color: #FFFFFF;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
	font-weight: 500;
	padding: 5px 0;
	z-index: 30;
	display: none;
}
.nav-item .submenu a {
	display: block;
	text-decoration: none;
}
#nav-notifications .submenu {
	width: 100vw;
	max-width: 380px;
	max-height: 400px;
	padding: 0 0 5px 0;
}
#nav-notifications .submenu > a {
	padding: 15px 20px;
}
#nav-notifications .submenu > a > div:first-child {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #9F9F9F;
}
#nav-notifications .submenu > a > div:last-child {
	font-size: 14px;
	color: #707070;
	margin-top: 5px;
}
#nav-notifications .submenu > a.new > div:last-child {
	color: #F3BD46;
}
#nav-notifications .submenu .settings {
	background-color: #F5F5F5;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	font-size: 14px;
	z-index: 1;
}
#nav-notifications .submenu .settings a {
	font-size: 12px;
	color: #707070;
	text-decoration: underline;
	cursor: pointer;
}
#nav-notifications .submenu .settings a:hover {
	text-decoration: none;
}
section:first-of-type {
	margin-top: 35px;
}
section:last-of-type {
	margin-bottom: 35px;
}
section .container {
	margin-top: 20px;
}
section .content {
	width: 100%;
	padding: 50px;
	background-color: #FFFFFF;
}
section .content.col2 {
	width: calc(50% - 10px);
}
section aside {
	flex-shrink: 0;
	flex-basis: 320px;
	margin-left: 20px;
	background-color: #F3BD46;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;
}
.filter-frame {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 50;
	align-items: center;
	display: none;
}
.filter-frame .content {
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 50px;
	background-color: #FFFFFF;
}
.title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 50px;
}
.title .center,
.title .left,
.title .right {
	display: flex;
	align-items: center;
}
.title .center {
	justify-content: center;
	width: 100%;
	text-align: center;
}
.title .btn {
	margin-right: 15px;
}
.title h1 {
	margin-right: 30px;
	margin-bottom: 0;
}
.title h2 {
	margin-right: 30px;
	margin-bottom: 0;
}
.title h3 {
	margin-right: 30px;
	margin-bottom: 0;
}
.title .right .btn:last-child {
	margin-right: 0;
}
.title .right h1 {
	margin-right: 0;
}
.title .right h2 {
	margin-right: 0;
}
.title .right h3 {
	margin-right: 0;
}
.subtitle {
	margin-top: -40px;
	padding-bottom: 30px;
	padding-left: 57px;
}
.subtitle ul li {
	display: inline-block;
	padding-right: 5px;
}
.subtitle ul li:first-child {
	padding-left: 0;
}
.subtitle ul li:last-child {
	padding-right: 0;
}
.subtitle ul li:first-child:before {
	display: none;
}
.title + h3 {
	margin-top: -30px;
}
.content form {
	display: block;
	margin-bottom: 30px;
}
.content form:last-child {
	margin-bottom: 0;
}
.form-row {
	padding-bottom: 30px;
}
.form-row.input-price::before {
	content: "€";
	font-weight: 700;
}
.form-row.input-price::after {
	content: ",00";
	padding: 12px 0;
	border-bottom: solid 1px #D5D5D5;
	color: #1A1A1A;
	font-family: "Lato";
	font-weight: 700;
	font-size: 16px;
}
.form-row label {
	display: block;
	color: #F3BD46;
	font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
	width: 100%;
	padding: 12px 0;
	background-color: transparent;
	border-bottom: solid 1px #D5D5D5;
	color: #1A1A1A;
	font-family: "Lato";
	font-weight: 400;
	font-size: 16px;
    -moz-appearance: textfield;
}
.form-row input::-webkit-outer-spin-button,
.form-row input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-row textarea {
	resize: vertical;
}
.form-row.input-price input {
	width: 80px;
	text-align: right;
	font-weight: 700;
	margin-left: -4px;
	margin-right: -4px;
}
.form-row.input-price input:focus {
	border-bottom: solid 1px #D5D5D5;
}
.form-row input::placeholder,
.form-row select::placeholder,
.form-row textarea::placeholder {
	color: #9F9F9F;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
	border-color: #F3BD46;
}
.form-row input:read-only,
.form-row textarea:read-only {
	border: none;
}
.form-row select {
	max-width: 340px;
	padding-right: 40px;
	background-image: url("../images/ico-select.svg");
	background-size: 14px 14px;
	background-position: right center;
	background-repeat: no-repeat;
}
.form-row .errorlist,
.form-row .successlist {
	font-size: 11px;
	padding-top: 2px;
	margin-bottom: 10px;
}
.form-row .errorlist {
	color: #C95248;
}
.form-row .errorlist.vat-error {
	display: none;
}
.form-row .successlist {
	font-size: 14px;
	color: #66C948;
}
.form-row .errorlist li,
.form-row .successlist li {
	padding-left: 0;
}
.form-row .errorlist li::before,
.form-row .successlist li::before {
	display: none;
}
.form-row.checkbox-group {
	position: relative;
}
.form-row.checkbox-group.checkbox-group-big {
	display: flex;
	margin-left: -20px;
	margin-right: -20px;
	flex-wrap: wrap;
}
.form-row.checkbox-group input {
	width: 24px;
	height: 24px;
	padding: 0 0;
	border: none;
	font-size: 0;
	line-height: 0;
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.form-row.checkbox-group label:not(:first-child) {
	width: fit-content;
	padding: 0 0 20px 44px;
	position: relative;
	color: #1A1A1A;
	user-select: none;
}
.form-row.checkbox-group input:disabled + label {
	cursor: not-allowed;
	color: #9F9F9F;
}
.form-row.checkbox-group.checkbox-group-big label {
	width: calc((100% - 120px) / 3);
	padding: 15px 20px;
	margin: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: solid 1px #707070;
	cursor: pointer;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.form-row.checkbox-group.checkbox-group-big label:hover {
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.form-row.checkbox-group.checkbox-group-big input:checked + label {
	background-color: #F3BD46;
}
.form-row.checkbox-group.checkbox-group-big input:disabled + label {
	background-color: #F5F5F5;
}
.form-row.checkbox-group.checkbox-group-icon label {
	justify-content: center;
	align-items: center;
}
.form-row.checkbox-group label:not(:first-child)::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border: solid 1px #191919;
	position: absolute;
	top: -1px;
	left: 0;
}
.form-row.checkbox-group input:checked + label::before {
	background-color: #F3BD46;
	background-image: url("../images/ico-checkbox.svg");
	background-size: 60% 60%;
	background-position: center center;
	background-repeat: no-repeat;
}
.form-row.checkbox-group input:disabled + label::before {
	background-color: #F5F5F5;
}
.form-row.checkbox-group label .info {
	display: block;
	color: #9F9F9F;
	font-size: 14px;
}
.form-row.checkbox-group label .info img {
	margin-right: 5px;
	height: 21px;
	width: auto;
}
.form-row.checkbox-group.checkbox-group-icon img {
	margin-bottom: 15px;
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.form-row.checkbox-group.checkbox-group-icon .info {
	font-weight: 700;
	color: #1A1A1A;
}
.form-row.checkbox-group.checkbox-group-big input:checked + label img:not(.colored) {
	filter: brightness(0);
}
.form-row.checkbox-group.checkbox-group-big label::before {
	display: none;
}
.promo-label {
	padding: 5px 8px 3px 8px;
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	color: #FFFFFF;
	background-color: #F3BD48;
	font-style: normal;
	font-weight: 700;
	margin-right: 10px;
}
.promo-label::before {
	content: "Promo";
}
.form-row.checkbox-group.checkbox-group-big label .promo-label {
	position: absolute;
	right: 0;
	top: 10px;
}
.form-row.checkbox-group.checkbox-group-big label .promo-label + .top {
	padding-right: 60px;
}
.form-row.checkbox-group.checkbox-group-big label .top {
	display: block;
}
.form-row.checkbox-group.checkbox-group-big label .bottom {
	display: block;
	padding-top: 10px;
}
.form-row.checkbox-group.checkbox-group-big input:disabled + label .top,
.form-row.checkbox-group.checkbox-group-big input:disabled + label .bottom,
.form-row.checkbox-group.checkbox-group-icon input:disabled + label img,
.form-row.checkbox-group.checkbox-group-icon input:disabled + label .info {
	opacity: 0.5;
}
.form-row.checkbox-group.checkbox-group-big label .service-title {
	display: block;
	font-size: 20px;
	color: #191919;
	font-weight: 700;
}
.form-row.checkbox-group.checkbox-group-big label .service-desciption {
	display: block;
	font-size: 13px;
	color: #191919;
	padding-top: 5px;
}
.form-row.checkbox-group.checkbox-group-big label .price {
	font-size: 20px;
	color: #191919;
	font-weight: 700;
}
.form-row.checkbox-group.checkbox-group-big label .price::after {
	content: "excl. BTW";
	font-size: 13px;
	color: #868686;
	font-weight: 400;
	padding-left: 10px;
}
.form-row.checkbox-group.checkbox-group-big input:checked + label .price::after {
	color: #191919;
}
.form-row.checkbox-group .errorlist,
.form-row.checkbox-group .successlist {
	margin-top: -18px;
	margin-bottom: 30px;
}
.form-row.file-upload {
	display: flex;
	align-items: center;
	width: 100%;
}
.form-row.file-upload span {
	margin-left: 15px;
	font-size: 14px;
	color: #1A1A1A;
}
.form-row.file-upload input {
	display: none;
}
.form-row.file-uploaded {
	display: flex;
	align-items: center;
	width: 100%;
}
.form-row.file-uploaded span {
	font-size: 14px;
	padding-left: 34px;
	padding-right: 15px;
	width: 220px;
	background-image: url("../images/ico-file-uploaded.svg");
	background-size: 20px 20px;
	background-position: left center;
	background-repeat: no-repeat;
}
.form-row.file-uploaded .btn {
	width: 42px!important;
}
.form-row.file-uploaded input {
	width: 42px;
	height: 42px;
	position: absolute;
	right: 0;
	opacity: 0;
	z-index: -1;
}
.form-row.price-count select {
	width: 120px;
	float: left;
	margin-right: 50px;
}
.form-row.price-count span {
	margin-top: 10px;
	display: block;
}
.select2 {
	max-width: 340px;
	margin-top: 10px;
}
.select2-container--default .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple  {
	padding-right: 40px;
	border: none;
	border-bottom: 1px solid #D5D5D5;
	border-radius: 0;
	position: relative;
}
.select2-selection__rendered li.select2-selection__choice::before {
	display: none;
}
.select2-container--default .select2-selection--multiple::after {
	content: "";
    position: absolute;
    width: 11px;
    height: 6px;
    background: url(../images/ico-select2.svg) center center no-repeat;
    top: 14px;
    right: 10px
}
.select2.select2-container--open .select2-selection--multiple::after {
	transform: rotate(180deg);
}
.select2-search.select2-search--inline {
	font-size: 16px;
	padding-left: 0;
}
.select2-search.select2-search--inline::before {
	display: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
	padding: 0;
}
.select2-results__options .select2-results__option::before {
    content: "";
	background-color: #fff;
    display: block;
    width: 24px;
    height: 24px;
    border: solid 1px #191919;
    position: absolute;
    top: 7px;
    left: 0;
}
.select2-results__options .select2-results__option.select2-results__option--highlighted::before,
.select2-results__options .select2-results__option[aria-selected=true]::before {
	background-color: #F3BD46;
    background-image: url(../images/ico-checkbox.svg);
    background-size: 60% 60%;
    background-position: center center;
    background-repeat: no-repeat;
}
.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #fff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #fff;
	color: inherit;
}
.select2-container--default .select2-results>.select2-results__options {
	padding: 24px;
}
.select2-results__option {
	padding-left: 40px;
}
.select2-dropdown {
	border: none;
    border-radius: 0;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin-top: 1px;
}
.select2-container--open .select2-dropdown--below {
	margin-top: 15px;
}
.select2-results__options::-webkit-scrollbar {
	width: 16px;
	background-clip: padding-box;
}
.select2-results__options::-webkit-scrollbar-track {
    background-color: #F4F4F4;
    height: 4px;
    background-clip: padding-box;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);
}
.select2-results__options::-webkit-scrollbar-thumb {
    background-clip: padding-box;
    background-color: #707070;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
}
.select2-results__options::-webkit-scrollbar-button {
    display: none;
}
.select2-results__message::before {
	display: none!important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #F3BD46;
	color: #1A1A1A;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #1A1A1A
}
.buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 30px;
	position: relative;
}
.buttons:last-child {
	padding-bottom: 0;
}
.buttons .center,
.buttons .left,
.buttons .right {
	padding-top: 20px;
	display: flex;
	align-items: center;
}
.buttons .center {
	justify-content: center;
	width: 100%;
	text-align: center;
}
.buttons a:not(.btn) {
	margin-right: 30px;
	color: #191919;
}
.buttons .btn {
	margin-right: 10px;
}
.buttons h2 {
	margin-right: 30px;
	margin-bottom: 0;
}
.buttons .status-block {
	margin-right: 30px;
}
.buttons .center a:last-child,
.buttons .right a:last-child {
	margin-right: 0;
}
.buttons .center .btn:last-child,
.buttons .right .btn:last-child {
	margin-right: 0;
}
.buttons .center .status-block:last-child,
.buttons .right .status-block:last-child {
	margin-right: 0;
}
.buttons .center h2,
.buttons .right h2 {
	margin-right: 0;
}
.status-block {
	display: flex;
	align-items: center;
}
.status-block::before {
	display: block;
	content: "";
	width: 45px;
	height: 45px;
	background-size: 40% 40%;
	background-position: center center;
	background-repeat: no-repeat;
}
.status-block::after {
	display: block;
	font-weight: 700;
	padding-left: 15px;
}
.status-block.status-1::before {
	background-image: url("../images/ico-status-1.svg");
	background-color: #191919;
}
.status-block.status-1::after {
	content: "Open";
}
.status-block.status-open::before {
	background-image: url("../images/ico-status-1.svg");
	background-color: #191919;
}
.status-block.status-open::after {
	content: "Open";
}
.status-block.status-2::before {
	background-image: url("../images/ico-status-2.svg");
	background-color: #F3BD46;
}
.status-block.status-2::after {
	content: "Wachten op goedkeuring";
}
.status-block.status-requested::before {
	background-image: url("../images/ico-status-2.svg");
	background-color: #F3BD46;
}
.status-block.status-requested::after {
	content: "Aangevraagd";
}
.status-block.status-3::before {
	background-image: url("../images/ico-status-3.svg");
	background-color: #F3BD46;
}
.status-block.status-3::after {
	content: "Ingepland";
}
.status-block.status-in-progress::before {
	background-image: url("../images/ico-status-3.svg");
	background-color: #F3BD46;
}
.status-block.status-in-progress::after {
	content: "In uitvoering";
}
.status-block.status-4::before {
	background-image: url("../images/ico-status-4.svg");
	background-color: #66C948;
}
.status-block.status-4::after {
	content: "Afgewerkt";
}
.status-block.status-finished::before {
	background-image: url("../images/ico-status-4.svg");
	background-color: #66C948;
}
.status-block.status-finished::after {
	content: "Afgewerkt";
}
.status-block.status-5::before {
	background-image: url("../images/ico-status-5.svg");
	background-color: #C95248;
}
.status-block.status-5::after {
	content: "Geannuleerd";
}
.status-block.status-6::before {
	background-image: url("../images/ico-status-6.svg");
	background-color: #C95248;
}
.status-block.status-6::after {
	content: "Geannuleerd";
}
.status-block.status-7::before {
	background-image: url("../images/ico-status-7.svg");
	background-color: #C95248;
}
.status-block.status-7::after {
	content: "Geannuleerd";
}
.status-block.status-10::before {
	background-image: url("../images/ico-status-10.svg");
	background-color: #191919;
}
.status-block.status-10::after {
	content: "Open";
}
.status-block.status-11::before {
	background-image: url("../images/ico-status-11.svg");
	background-color: #4294C2;
}
.status-block.status-11::after {
	content: "Later inplannen";
}
.status-block.status-20::before {
	background-image: url("../images/ico-status-20.svg");
	background-color: #F3BD46;
}
.status-block.status-20::after {
	content: "Wachten op goedkeuring";
}
.status-block.status-21::before {
	background-image: url("../images/ico-status-21.svg");
	background-color: #D4DFEB;
}
.status-block.status-21::after {
	content: "Immo Tools laten inplannen";
}
.status-block.status-30::before {
	background-image: url("../images/ico-status-30.svg");
	background-color: #F3BD46;
}
.status-block.status-30::after {
	content: "Ingepland";
}
.status-block.status-40::before {
	background-image: url("../images/ico-status-40.svg");
	background-color: #66C948;
}
.status-block.status-40::after {
	content: "Afgewerkt";
}
.status-block.status-50::before {
	background-image: url("../images/ico-status-50.svg");
	background-color: #C95248;
}
.status-block.status-50::after {
	content: "Geannuleerd";
}
.status-block.status-51::before {
	background-image: url("../images/ico-status-51.svg");
	background-color: #C95248;
}
.status-block.status-51::after {
	content: "Geannuleerd";
}
.status-block.status-52::before {
	background-image: url("../images/ico-status-52.svg");
	background-color: #C95248;
}
.status-block.status-52::after {
	content: "Geannuleerd";
}
aside .title {
	padding-bottom: 20px;
}
aside .title h1 {
	margin-right: 0;
}
aside .buttons {
	padding-top: 10px;
}
.steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: fit-content;
	max-width: 100%;
	opacity: 0;
	margin: 0 auto 50px auto;
}
.steps.steps-description {
	margin: 30px auto 70px auto;
}
.steps.substeps {
	margin: -25px auto 50px auto;
}
.steps::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #191919;
	position: absolute;
	top: 14px;
	left: 0;
}
.steps span,
.steps a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-weight: 700;
	color: #191919;
	border: solid 1px #191919;
	background-color: #FFFFFF;
	margin-left: 85px;
	margin-right: 85px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.steps a {
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	text-decoration: none;
}
.steps a:hover {
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.steps.steps-description span::after,
.steps.steps-description a::after {
	content: attr(data-description);
	position: absolute;
	display: none;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	white-space: nowrap;
}
.steps.steps-description span.showpseudo::after,
.steps.steps-description a.showpseudo::after {
	display: block;
}
.steps.substeps span,
.steps.substeps a {
	border-radius: 50%;
	margin-left: 20px;
	margin-right: 20px;
}
.steps span:first-child,
.steps a:first-child {
	margin-left: 0;
}
.steps span:last-child,
.steps a:last-child {
	margin-right: 0;
}
.steps .active {
	background-color: #F3BD46;
}
.table {
	width: 100%;
	max-height: 600px;
	overflow-y: auto;
	position: relative;
	opacity: 0;
	margin-bottom: 30px;
}
.table:last-child {
	margin-bottom: 0;
}
.table .thead {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	background-color: #FFFFFF;
	z-index: 1;
}
.table .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	padding: 15px 0;
	text-decoration: none;
	color: #9F9F9F;
}
.table .thead .row {
	color: #1A1A1A;
	font-weight: 700;
}
.table .col {
	width: 100%;
	margin-left: 10px;
	margin-right: 10px;
}
.table .col:first-child {
	margin-left: 0;
	color: #1A1A1A;
	flex-shrink: 4;
}
.table .col:not(:first-child) {
	flex-shrink: 5;
}
.table .col:last-child {
	margin-right: 0;
}
.table .col:last-child:not(:first-child) {
	text-align: right;
}
.table .tbody .row {
	min-height: 75px;
	border-bottom: solid 1px #D5D5D5;
}
.table .col.action a {
	color: #1A1A1A;
	white-space: nowrap;
}
.table .col.action a::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 10px;
	position: relative;
	top: 2px;
}
.table .col.action.action-accept a::before {
	background-image: url("../images/ico-action-accept.svg");
}
.table .col.action.action-decline a::before {
	background-image: url("../images/ico-action-decline.svg");
}
.table .col.action.action-download a::before {
	background-image: url("../images/ico-action-download.svg");
}
.table .col.status {
	width: 55px;
	flex-shrink: 0;
}
.table .col.order-type {
	flex-shrink: 6;
}
.table .col.order-type + .col {
	flex-shrink: 4;
}
.table .col.order-type > span {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0 7px;
	background-size: contain;
	background-position: center center;
}
.table .col.order-type.order-type-shoot > span {
	background-image: url("../images/ico-fotoreportage.svg");
}
.table .col.order-type.order-type-three-d-building-plot > span {
	background-image: url("../images/ico-3d-bouwgrond.svg");
}
.table .col.order-type.order-type-three-d-makeover > span {
	background-image: url("../images/ico-3d-makeover.svg");
}
.table .col.status > span {
	display: block;
	width: 45px;
	height: 45px;
	background-size: 40% 40%;
	background-position: center center;
	background-repeat: no-repeat;
	float: right;
}
.table .col.status.status-1 > span{
	background-image: url("../images/ico-status-1.svg");
	background-color: #191919;
}
.table .col.status.status-open > span{
	background-image: url("../images/ico-status-1.svg");
	background-color: #191919;
}
.table .col.status.status-2 > span{
	background-image: url("../images/ico-status-2.svg");
	background-color: #F3BD46;
}
.table .col.status.status-requested > span{
	background-image: url("../images/ico-status-2.svg");
	background-color: #F3BD46;
}
.table .col.status.status-3 > span{
	background-image: url("../images/ico-status-3.svg");
	background-color: #F3BD46;
}
.table .col.status.status-in-progress > span{
	background-image: url("../images/ico-status-3.svg");
	background-color: #F3BD46;
}
.table .col.status.status-4 > span{
	background-image: url("../images/ico-status-4.svg");
	background-color: #66C948;
}
.table .col.status.status-finished > span{
	background-image: url("../images/ico-status-4.svg");
	background-color: #66C948;
}
.table .col.status.status-5 > span{
	background-image: url("../images/ico-status-5.svg");
	background-size: 17px 17px;
	background-color: #C95248;
}
.table .col.status.status-6 > span{
	background-image: url("../images/ico-status-6.svg");
	background-size: 17px 17px;
	background-color: #C95248;
}
.table .col.status.status-7 > span{
	background-image: url("../images/ico-status-7.svg");
	background-size: 17px 17px;
	background-color: #C95248;
}
.table .col.status.status-10 > span{
	background-image: url("../images/ico-status-10.svg");
	background-color: #191919;
}
.table .col.status.status-11 > span{
	background-image: url("../images/ico-status-11.svg");
	background-color: #4294C2;
}
.table .col.status.status-20 > span{
	background-image: url("../images/ico-status-20.svg");
	background-color: #F3BD46;
}
.table .col.status.status-21 > span{
	background-image: url("../images/ico-status-21.svg");
	background-color: #D4DFEB;
}
.table .col.status.status-30 > span{
	background-image: url("../images/ico-status-30.svg");
	background-color: #F3BD46;
}
.table .col.status.status-40 > span{
	background-image: url("../images/ico-status-40.svg");
	background-color: #66C948;
}
.table .col.status.status-50 > span{
	background-image: url("../images/ico-status-50.svg");
	background-size: 17px 17px;
	background-color: #C95248;
}
.table .col.status.status-51 > span{
	background-image: url("../images/ico-status-51.svg");
	background-size: 17px 17px;
	background-color: #C95248;
}
.table .col.status.status-52 > span{
	background-image: url("../images/ico-status-52.svg");
	background-size: 17px 17px;
	background-color: #C95248;
}
.table .col.status.admin-status-0 > span{
	background-image: url("../images/ico-admin-status-0.svg");
	/*background-size: 17px 17px;*/
	background-color: #F3BD46;
}
.table .col.status.admin-status-1 > span{
	background-image: url("../images/ico-admin-status-1.svg");
	/*background-size: 17px 17px;*/
	background-color: #F3BD46;
}
.table .col.status-text {
	font-weight: 700;
}
.table .col.status-text.status-yellow {
	color: #F3BD46;
}
.table .col.status-text.status-green {
	color: #66C948;
}
.table .col.status-text.status-red {
	color: #C95248;
}
.row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.col2 {
	width: calc(50% - 60px);
}
.row.divider .col2:first-child {
	position: relative;
}
.row.divider .col2:first-child::after {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -60px;
	background-color: #707070;
}
.col4 {
	width: calc((100% - 100px) / 4);
}
.filter-item {
	display: flex;
	position: relative;
}
.filter-item .icon {
	height: 20px;
	width: auto;
	position: relative;
	cursor: pointer;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.filter-item .icon img {
	height: 100%;
	width: auto;
}
.filter-item .subfilters {
	position: absolute;
	right: 0;
	bottom: -32px;
	transform: translateY(100%);
	overflow-y: auto;
	background-color: #FFFFFF;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
	font-weight: 500;
	padding: 5px 0;
	z-index: 30;
	display: none;
}
.filter-item .subfilters::before {
	content: "Filter op";
	display: block;
	padding: 10px 20px;
	font-weight: 700;
}
.filter-item .subfilters div {
	display: block;
	text-decoration: none;
	cursor: pointer;
}
.filter-item .subfilters {
	width: 210px;
}
.filter-item .subfilters div {
	padding: 10px 20px 10px 60px;
	position: relative;
	color: #9F9F9F;
}
.filter-item .subfilters div:hover {
	color: #F3BD46;
}
.filter-item .subfilters div::before {
	content: "";
	display: block;
	position: absolute;
	left: 20px;
	top: 10px;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
#filter-real-estate-agent::before {
	background-image: url("../images/ico-real-estate-agent.svg");
}
#filter-photographer::before {
	background-image: url("../images/ico-photographer.svg");
}
#filter-real-estate-office::before {
	background-image: url("../images/ico-real-estate-office.svg");
}
#filter-period::before {
	background-image: url("../images/ico-period.svg");
}
#filter-status::before {
	background-image: url("../images/ico-status.svg");
}
#filter-search::before {
	background-image: url("../images/ico-search.svg");
}
#datepicker {
	max-width: 347px;
	padding-top: 13px;
	margin: 0 auto 30px auto;
}
#datepicker:last-child {
	margin: 0 auto;
}
.ui-datepicker-prev,
.ui-datepicker-next {
	position: relative;
	top: 5px;
}
.ui-datepicker-prev {
    float:left;
}
.ui-datepicker-next {
    float: right;
}
.ui-datepicker-prev span,
.ui-datepicker-next span {
  display: none !important;
}
.ui-datepicker-prev:before,
.ui-datepicker-next:before {
  display: flex;
  content:"";
  font-weight: normal;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}
.ui-datepicker-prev:before {
  background: url('../images/ico-datepicker-left.svg')no-repeat center;
}

.ui-datepicker-next:before {
    background: url('../images/ico-datepicker-right.svg')no-repeat center;
}
.ui-datepicker-header {
    position: relative;
    text-align: center;
}
.ui-datepicker-title {
    font-weight: 700;
    font-size: 16px;
    font-family: "Lato";
    color: #191919;
    text-transform: capitalize;
}
.ui-datepicker-calendar thead tr {
    display: flex;
    border-bottom: 1px solid #CDCDCD;
}
.ui-datepicker-calendar thead span {
    font-size: 14px;
    color: #191919;
    font-weight: 700;
    font-family: "Lato";
    text-transform: uppercase;
}
.ui-datepicker-calendar thead tr th {
    width: 33px;
    height: 33px;
    margin: 8px;
}
.ui-datepicker-calendar tbody tr {
    display: flex;
}
.ui-datepicker-calendar tbody tr td{
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D6D6D6;
    font-size: 14px;
    font-weight: 400;
    font-family: "Lato";
    margin: 8px;
}
.ui-datepicker-calendar tbody tr td a {
    text-decoration: none;
    color: #191919;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-unselectable,
.ui-datepicker-calendar tbody tr td.unselectable {
    border: none;
    color: #D6D6D6;
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-unselectable a,
.ui-datepicker-calendar tbody tr td.unselectable a {
    color: #D6D6D6;
    text-decoration: none;
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-today {
    background: #D6D6D6;
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-today a,
.ui-datepicker-calendar tbody tr td.ui-datepicker-today span {
    color: #fff;
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-current-day {
    background: #F3BD46;
    border-color: #F3BD46;
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-current-day a {
    color: #fff;
}
#time-slots {
	display: flex;
	flex-wrap: wrap;
	max-width: 329px;
	margin: 0 auto 30px auto;
	position: relative;
}
#time-slots:last-child {
	margin: 0 auto;
}
#time-slots input {
	position: absolute;
	opacity: 0;
}
#time-slots label {
	display: flex;
	text-align: center;
	border: solid 1px #D6D6D6;
	width: 56px;
	height: 28px;
	margin: 13px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	font-family: "Lato";
	color: #191919;
}
#time-slots input:checked + label {
	background-color: #F3BD46;
	border-color: #F3BD46;
}
#time-slots input.disabled:checked + label {
	color: #FFFFFF;
}
#time-slots input:not(:disabled):not(.disabled) + label {
	cursor: pointer;
}
#time-slots input:disabled + label,
#time-slots input.disabled + label {
	border-color: transparent;
	text-decoration: line-through;
	color: #D6D6D6;
}
#time-slots input.unselectable:disabled + label,
#time-slots input.unselectable.disabled + label {
	border-color: transparent;
	text-decoration: none;
	color: #707070;
}
#time-slots input.gray + label {
	background: #D5D5D5;
	border-color: #D5D5D5;
}
#time-slots input.disabled.gray:not(.unselectable) + label {
	color: #FFFFFF;
}
body.load-time-slots::after {
	content: "Even geduld... \A We analyseren de beschikbaarheden in onze agenda";
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url("../images/ImmoTools_Calendar.gif");
	background-size: 120px 120px;
	background-position: 50% calc(50% - 70px);
	background-repeat: no-repeat;
	text-align: center;
	white-space: pre-wrap;
	padding: calc(50vh + 10px) 15px 15px 15px;
	padding-top: 50vh;
	z-index: 99999;
}
.overview-list .item {
	padding-bottom: 25px;
}
.overview-list .item.item-one-row {
	display: flex;
	justify-content: space-between;
	/*align-items: center;*/
}
.overview-list .item.group-item {
	padding-bottom: 5px;
}
.overview-list .item.divider {
	border-bottom: solid 1px #707070;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.overview-list .key {
	color: #f3bd46;
	font-weight: 700;
	padding-bottom: 5px;
}
.overview-list .item.item-one-row .key {
	padding-bottom: 0;
	flex-grow: 1;
	padding-right: 15px;
}
.overview-list .item.item-one-row .value {
	white-space: nowrap;
}
.overview-list .value.value-double {
	display: flex;
	justify-content: space-between;
}
.overview-list .value.value-double > div:first-child {
	flex-grow: 1;
	padding-right: 15px;
}
.overview-list .value.value-double > div:last-child {
	white-space: nowrap;
}
.overview-list .item .btn {
	width: 145px;
}
.overview-list .item .form-row {
	padding-bottom: 0;
}
.overview-list .item .form-row.checkbox-group {
	padding-top: 10px;
}
.files {
	padding-bottom: 40px;
}
.files .status-block {
	margin-bottom: 30px;
}
.files .btn {
	margin-bottom: 15px;
}
.files .btn:last-child {
	margin-bottom: 0;
}
.cover {
	width: 100%;
	max-width: 450px;
	height: auto;
	display: block;
	margin-bottom: 40px;
}
.tutorial {
	display: none;
}
.tutorial.active {
	display: block;
}
.video {
	max-width: 600px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
.video:last-child {
	margin-bottom: 0;
}
.video > div {
	padding-top: 56.25%;
	position: relative;
}
.video > div > video {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.use-location {
	color: #9F9F9F;
	display: none;
}
.use-location::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	background-image: url("../images/ico-use-location.svg");
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
	position: relative;
	top: 2px;
}
.title .message-badge {
	margin-left: 0;
	margin-right: 15px;
	margin-bottom: 0;
}
.message-badge {
	width: 35px;
	height: 35px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	background-size: auto 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
.message-badge.debug {
	background-image: url("../images/ico-message-debug.svg");
}
.message-badge.info {
	background-image: url("../images/ico-message-info.svg");
}
.message-badge.success {
	background-image: url("../images/ico-message-success.svg");
}
.message-badge.warning {
	background-image: url("../images/ico-message-warning.svg");
}
.message-badge.error {
	background-image: url("../images/ico-message-error.svg");
}
.messages {
	position: fixed;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
}
.message {
	position: relative;
	padding: 19px 60px 19px 70px;
	font-weight: 700;
	width: 100vw;
	max-width: 480px;
	background-color: #FDFDFD;
	box-shadow: 0 3px 20px 0 rgba(213,213,213, 1);
	margin-bottom: 10px;
	z-index: 4000;
}
.message .message-badge {
	position: absolute;
	top: 17px;
	left: 0;
	height: 26px;
	width: 70px;
}
.message .close {
	position: absolute;
	top: 0;
	right: 0;
	height: 62px;
	width: 70px;
	border-radius: 50%;
	background-image: url("../images/ico-close.svg");
	background-size: auto 25%;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.message .close:hover {
	transform: rotate(180deg);
}
#amount-select {
	margin-top: -20px;
}
#amount-enter {
	display: flex;
	align-items: flex-end;
	padding-bottom: 30px;
}
#amount-enter .bonus {
	display: flex;
	align-items: center;
	padding-left: 30px;
	flex-shrink: 0;
	font-weight: 700;
	color: #f3bd46;
	padding-bottom: 10px;
}
#amount-enter .bonus img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}
#amount-enter .bonus span {
	display: block;
	white-space: nowrap;
	padding-left: 5px;
	padding-top: 3px;
}
#amount-enter .form-row {
	flex-grow: 1;
	padding-bottom: 0;
	position: relative;
}
#amount-enter .form-row::before {
	content: "€";
	display: block;
	position: absolute;
	bottom: 1px;
	left: 0;
	padding: 12px 0;
	line-height: 1;
}
#amount-enter .form-row label {
	color: #1A1A1A;
	font-weight: 700;
}
#amount-enter .form-row input {
	padding-left: 13px;
}
.box {
	padding: 30px 25px;
	border: solid 1px #707070;
	margin-bottom: 30px;
}
.box:last-child {
	margin-bottom: 0;
}
.box-yellow {
	border-color: #f3bd46;
}
.box .title {
	padding-bottom: 20px;
}
.paysafe > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.paysafe > div:first-child > span {
	font-weight: 700;
	font-size: 12px;
	color: #9F9F9F;
	display: block;
	padding-right: 10px;
	padding-top: 8px;
}
.paysafe > div:first-child > img {
	display: block;
	max-width: 56px;
	max-height: 26px;
}
.paysafe > div:last-child > div {
	width: calc(100% / 5);
	height: 40px;
	padding: 7px 15px;
	margin-top: 15px;
}
.paysafe > div:last-child > div img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.callto,
.mailto {
	text-decoration: none;
}
.callto:hover,
.mailto:hover {
	text-decoration: underline;
}
.callto::before,
.mailto::before {
	content: "";
	display: inline-block;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 10px;
	position: relative;
	top: 2px;
}
.callto::before {
	background-image: url("../images/ico-callto.svg");
}
.mailto::before {
	background-image: url("../images/ico-mailto.svg");
}
h3 .callto::before,
h3 .mailto::before {
	width: 19px;
	height: 19px;
}
#order_list:not(.active), #three_d_building_plot_order_list:not(.active), #three_d_makeover_order_list:not(.active) {
	display: none;
}
.toggle-orders {
	display: flex;
	align-items: center;
}
.toggle-orders li {
	display: block;
	padding-left: 0;
	margin-right: -1px;
}
.toggle-orders li::before {
	display: none;
}
.toggle-orders .btn {
	width: 46px;
	padding-left: 0;
	padding-right: 0;
	margin-right: 0;
	border: solid 1px #191919;
	background-color: #FFFFFF;
}
.toggle-orders .btn img {
	filter: brightness(0);
	opacity: 0.6;
	width: 60%;
	height: 60%;
	object-fit: contain;
}
.toggle-orders .btn.active {
	background-color: #F3BD46;
}
.toggle-orders .btn.active img {
	filter: brightness(0);
	opacity: 1;
}
@media (max-width: 1199px) {
	.col4 {
		width: calc(50% - 60px);
	}
}
@media (max-width: 991px) {
	.container {
		flex-wrap: wrap;
	}
	section aside {
		flex-basis: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
	#appointment_creation_form .col2 {
		width: 100%;
	}
	#appointment_creation_form .row.divider .col2 {
		margin-bottom: 30px;
	}
	#appointment_creation_form .row.divider .col2:first-child::after {
		display: none;
	}
}
@media (max-width: 767px) {
	body {
		font-size: 14px;
	}
	ul li {
		padding-left: 15px;
	}
	ul li::before {
		width: 8px;
		height: 8px;
	}
	h1 {
		font-size: 28px;
	}
	h2 {
		font-size: 18px;
	}
	h3 {
		font-size: 16px;
	}
	.fs-20 {
		font-size: 16px;
	}
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	header .container {
		height: 60px;
	}
	header .logo a {
		margin-right: 10px;
	}
	header .logo img {
		width: 30px;
	}
	header .logo span:first-child {
		font-size: 14px;
	}
	header .logo span:last-child {
		font-size: 10px;
	}
	header nav {
		margin-left: -7px;
		margin-right: -7px;
	}
	.nav-item {
		padding-left: 7px;
		padding-right: 7px;
		height: 40px;
	}
	.nav-item .icon {
		width: 20px;
		height: 20px;
	}
	.nav-item .icon.badge {
		width: 26px;
		padding-right: 8px;
	}
	.nav-item .icon.badge span {
		width: 14px;
		height: 14px;
		line-height: 12px;
		font-size: 10px;
	}
	.btn-nav {
		display: none;
	}
	.btn-nav + .nav-item {
		display: flex;
	}
	section:first-of-type {
		margin-top: 15px;
	}
	section:last-of-type {
		margin-bottom: 15px;
	}
	section .container {
		margin-top: 15px;
	}
	section .content {
		width: 100%;
		padding: 30px 15px;
		background-color: #FFFFFF;
	}
	section .content.col2 {
		width: 100%;
	}
	section .content.col2:first-child {
		margin-bottom: 15px;
	}
	section aside {
		padding: 30px 15px;
	}
	.steps {
		margin: 0 auto 30px auto;
	}
	.steps.steps-description {
		margin: 0 auto 30px auto;
	}
	.steps.substeps {
		margin: -15px auto 30px auto;
	}
	.steps::before {
		top: 9px;
	}
	.steps span,
	.steps a {
		width: 20px;
		height: 20px;
		line-height: 20px;
		margin-left: 50px;
		margin-right: 50px;
	}
	.steps.steps-description span.showpseudo::after,
	.steps.steps-description a.showpseudo::after {
		display: none;
	}
	.steps.substeps span,
	.steps.substeps a {
		margin-left: 15px;
		margin-right: 15px;
	}
	.steps span:first-child,
	.steps a:first-child {
		margin-left: 0;
	}
	.steps span:last-child,
	.steps a:last-child {
		margin-right: 0;
	}
	.title {
		padding-bottom: 30px;
	}
	.subtitle {
		margin-top: -25px;
		padding-bottom: 15px;
	}
	.title + h3 {
		margin-top: -10px;
	}
	.form-row {
		padding-bottom: 20px;
	}
	.form-row.input-price::after {
		padding: 10px 0;
		font-size: 14px;
	}
	.form-row input,
	.form-row select,
	.form-row textarea {
		padding: 10px 0;
		font-size: 14px;
	}
	.form-row.input-price input {
		width: 50px;
	}
	.form-row select {
		padding-right: 35px;
		background-size: 12px 12px;
	}
	.form-row.checkbox-group.checkbox-group-big {
		margin-left: -7px;
		margin-right: -7px;
	}
	.form-row.checkbox-group input {
		width: 20px;
		height: 20px;
	}
	.form-row.checkbox-group label:not(:first-child) {
		padding: 0 0 15px 35px;
	}
	.form-row.checkbox-group.checkbox-group-big label {
		width: calc((100% - 30px) / 2);
		padding: 15px 15px;
		margin: 7px;
	}
	.form-row.checkbox-group label:not(:first-child)::before {
		width: 20px;
		height: 20px;
	}
	.form-row.checkbox-group label .info {
		font-size: 12px;
	}
	.form-row.checkbox-group label .info img {
		height: 18px;
	}
	.form-row.checkbox-group.checkbox-group-big label .service-title {
		font-size: 16px;
	}
	.form-row.checkbox-group.checkbox-group-big label .service-desciption {
		font-size: 11px;
	}
	.form-row.checkbox-group.checkbox-group-big label .price {
		font-size: 16px;
	}
	.form-row.checkbox-group.checkbox-group-big label .price::after {
		font-size: 11px;
	}
	.form-row.file-upload span {
		font-size: 12px;
	}
	.form-row.file-uploaded span {
		font-size: 12px;
		padding-left: 28px;
		background-size: 16px 16px;
	}
	.buttons {
		padding-top: 0;
	}
	.buttons .center,
	.buttons .left,
	.buttons .right {
		padding-top: 15px;
	}
	.title .message-badge {
		width: 25px;
		height: 25px;
	}
	.table .col.action a::before {
		width: 14px;
		height: 14px;
		margin-right: 8px;
	}
	.col2 {
		width: 100%;
		margin-bottom: 50px;
	}
	.col2:last-child {
		margin-bottom: 0;
	}
	.row.divider .col2:first-child::after {
		display: none;
	}
	.col4 {
		width: calc((100% - 30px) / 2);
	}
	.filter-item .icon {
		height: 16px;
	}
	.filter-item .subfilters {
		bottom: -28px;
	}
	.filter-item .subfilters::before {
		padding: 10px 20px;
	}
	.filter-item .subfilters {
		width: 140px;
	}
	.filter-item .subfilters::before {
		padding: 7px 15px;
	}
	.filter-item .subfilters div {
		padding: 7px 15px 7px 45px;
	}
	.filter-item .subfilters div::before {
		left: 15px;
		top: 7px;
		width: 16px;
		height: 16px;
	}
	.overview-list .item {
		padding-bottom: 15px;
	}
	.overview-list .item.divider {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	#datepicker {
		max-width: 242px;
		margin: 15px auto 30px auto;
	}
	.ui-datepicker-prev:before,
	.ui-datepicker-next:before {
	  width: 8px;
	  height: 8px;
	}
	.ui-datepicker-title {
		font-size: 14px;
	}
	.ui-datepicker-calendar thead span {
		font-size: 12px;
	}
	.ui-datepicker-calendar thead tr th {
		width: 24px;
		height: 24px;
		margin: 5px;
	}
	.ui-datepicker-calendar tbody tr td{
		width: 24px;
		height: 24px;
		font-size: 12px;
		margin: 5px;
	}
	#time-slots {
		max-width: 232px;
	}
	#time-slots label {
		width: 48px;
		height: 24px;
		margin: 5px;
		font-size: 12px;
	}
	#amount-enter .bonus {
		padding-left: 15px;
		padding-bottom: 9px;
	}
	#amount-enter .bonus img {
		width: 15px;
		height: 15px;
	}
	#amount-enter .form-row::before {
		padding: 10px 0;
	}
	#amount-enter .form-row input {
		padding-left: 11px;
	}
	.toggle-orders .btn {
		width: 32px;
		height: 28px;
	}
}
@media (max-width: 575px) {
	.btn {
		width: 100%;
	}
	.btn-back {
		width: 42px;
	}
	header .logo a:last-child:not(:first-child) {
		display: none;
	}
	.nav-item {
		position: initial;
	}
	.nav-item .submenu {
		top: 62px;
		bottom: initial;
		transform: none;
	}
	#nav-notifications .submenu {
		max-width: 100vw;
		max-height: calc(100vh - 62px);
	}
	.form-row.checkbox-group.checkbox-group-big {
		margin-left: 0;
		margin-right: 0;
	}
	.form-row.checkbox-group.checkbox-group-big label {
		width: 100%;
		margin: 7px 0;
	}
	.buttons .left,
	.buttons .right {
		width: 100%;
	}
	.buttons .left a:last-child {
		margin-right: 0;
	}
	.buttons .left .btn:last-child {
		margin-right: 0;
	}
	.buttons .left .status-block:last-child {
		margin-right: 0;
	}
	.buttons .left h2 {
		margin-right: 0;
	}
	.col4 {
		width: 100%;
	}
	#time-slots {
		max-width: 100%;
	}
}
/* #region calendar views */
.title.--with-nav h1 {
    margin-right: 20px;
    margin-left: 20px;
}
.title.--with-nav a.prev,
.title.--with-nav a.next {
    display: flex;
    align-items: center;
}
.title.--with-nav .left img {
    height: 16px;
}
.btn-add {
    max-width: 120px;
}
.btn-add img {
    height: 13px;
}
.calendar.--grid-36 {
    position: relative;
    padding-top: 48px;
    padding-bottom: 10px;
}
.calendar .calendar__row { /*//TODO Should be generated according to photographers number */
    display: grid;
    grid-template-columns: 125px repeat(108, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 20px;
}
.calendar__row.--title {
    grid-template-rows: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}
.calendar__row.--title > div {
    grid-column: span 12;
    text-align: right;
    margin-right: -10px;
    position: relative;
    font-size: 14px;
}
.calendar__row.--title > div:first-child {
    grid-column: span 1;
}
.calendar__row.--title > div:after {
    content: "";
    display: block;
    position: absolute;
    right: 9px;
    top: 28px;
    width: 1px;
    height: calc(100% - 28px);
    background: #cdcdcd;
}
.calendar__item {
    color: #fff;
    padding: 4px;
    z-index: 2;
    min-height: 90px;
	text-decoration: none;
}
.calendar__content {
	display: grid;
	grid-template-columns: 1fr fit-content(40px);
	grid-auto-flow: dense;
}
.calendar__status {
	grid-column: 2 / 2;
	display: flex;
	grid-row: 1;
}
.calendar__status svg {
	height: 13px;
	display: block;
	margin: 0 2px;
	color: #191919;
}
.calendar__details {
	grid-column: 1 / -1;
}
.--blue .calendar__item:not(.--name),
.--color-1 .calendar__item:not(.--name) {
    background: #1BA3F8;
}
.--green .calendar__item:not(.--name),
.--color-2 .calendar__item:not(.--name) {
    background: #2CC94D;
}
.--pink .calendar__item:not(.--name),
.--color-3 .calendar__item:not(.--name) {
    background: #d660f2;
}
.--orange .calendar__item:not(.--name),
.--color-4 .calendar__item:not(.--name) {
    background: #F28110;
}
.--java .calendar__item:not(.--name),
.--color-5 .calendar__item:not(.--name) {
    background: #20CDDB;
}
.--purple .calendar__item:not(.--name),
.--color-6 .calendar__item:not(.--name) {
    background: #6E2CC9;
}
/* statuses */
.calendar__item:not(.--name).--status-hold {
    background: #CBCBCB!important;
}
.calendar__item:not(.--name).--status-ingepland {
    /*background: #1BA3F8!important;*/
}
.calendar__item:not(.--name).--status-voorbij,
.calendar__item:not(.--name).--status-voorbij svg {
    background: #909090!important;
	color: #fff!important;
}
.calendar__item:not(.--name).--status-afgewerkt {
    background: #fff!important;
	color: #B7B7B7!important;
	border: 1px solid #B7B7B7;
}

.calendar__content {
    font-size: 9px;
}
.calendar__content .--first-line {
    display: flex;
    justify-content: space-between;
}
.calendar__content .--empty {
	display: block;
    height: 14px;
    width: 24px;
    border-bottom: 1px solid #fff;
}
.calendar__actions {
    display: flex;
}
.calendar__actions a {
    color: #000;
    text-decoration: none;
    margin-left: 6px;
}
.calendar__actions a img {
    display: block;
    height: 13px;
}
.calendar__item.--name {
    color: #000;
    align-self: center;
    min-height: initial;
    font-weight: 700;
}
.calendar__content .--strong {
    font-weight: bold;
}
.desktop-only-message {
	display: none;
}
@media (max-width: 1023px) {
	.calendar .calendar__row {
		display: none;
	}
	.desktop-only-message {
		display: block;
	}
}
/*weekly view*/
.calendar__weekdays,
.calendar__schedule {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;	
}
.calendar__weekdays {
	position: absolute;
	width: calc(100% - 30px);
	height: 100%;
	top: 0;
	left: 30px;	
}
.calendar__weekdays > div {	
	position: relative;
	text-align: center;
	color: #191919;
	font-weight: bold;
	font-size: 16px;
	padding-top: 5px;
}
.calendar__weekdays .active,
.calendar__weekdays .today {
	background: #F3BD48;
}
.calendar__weekdays > div:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 33px;
	height: calc(100% - 33px);
	width: 1px;
	background: #cdcdcd;
	z-index: 2;
}
.calendar__weekdays > div:last-child:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 33px;
	height: calc(100% - 33px);
	width: 1px;
	background: #cdcdcd;
	z-index: 2;
}
.calendar__schedule > div:not(.--title) {
	border-bottom: 1px solid #cdcdcd;
	z-index: 2;
}
.calendar__column {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(108, 8px);
}
.calendar__column.--title > div {
	grid-row: span 12;
	margin-top: -12px;
	position: relative;
}
.calendar__column.--title > div:before,
.calendar__column.--title > div:after {
	content: "";
	display: block;
	position: absolute;
	right: 1px;
	top: 11px;
	height: 1px;
	width: calc(100% - 32px);
	background: #cdcdcd;
}
.calendar__column.--title > div:after {
	top: calc(50% + 6px);
}
.calendar.--grid-36.--weekly-view {
	position: relative;
    padding-top: 32px;
    padding-bottom: 0;
	padding-left: 30px;
}
.calendar__schedule {
	position: relative;
	border-top: 2px solid #fff;
}
.calendar__column.--title {
	position: absolute;
	left: -30px;
	top: 0;
	height: 100%;
	width: calc(100% + 30px);
	background: #fff;
}
.--weekly-view .calendar__item {
	margin: 1px 1px 1px 2px;
	min-height: initial;
}
.mobile-only {
	display: none;
}
.calendar__item {
	display: block;
}
.calendar__date {
	text-transform: uppercase;
	margin-bottom: 0;
}
.content .cal-user-filter {
	margin-bottom: 0;
	padding-bottom: 0;
	margin-right: 10px;
}
.cal-user-filter.form-row select {
	cursor: pointer;
	border: 1px solid #191919;
	padding: 5px 30px 5px 40px;
	height: 42px;
	min-width: 178px;
	font-size: 14px;
	font-weight: bold;
	background-image: url(../images/ico-user-solid.svg),url(../images/ico-select--black.svg);
	background-position: 20px center, calc(100% - 20px) center;
}
.title.--with-nav a:hover {
	opacity: .5;
}
.calendar__item {
	cursor: pointer;
	transition: .4s;
}
.like-label {
	display: block;
    color: #F3BD46;
    font-weight: 500;
	margin-bottom: 15px;
}
.form-row.checkbox-group.--condensed  label:not(:first-child) {
	padding: 0 0 12px 44px;
}
.popup-style-1 {
	display: none;
	position: absolute;
    background: #fff;
	padding: 60px;
    z-index: 5;
    right: 0;
    top: calc(100% + 5px);
	border: 1px solid #707070;
}
.title.--with-nav .right {
	position: relative;
}
.popup-style-2 {
	display: none;
	position: fixed;
    background: #fff;
	width: 100%;
	max-width: 240px;
	padding: 15px;
    z-index: 5;
    right: calc(50% - 120px);
	top: 150px;
	border: 1px solid #DBDBDB;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	font-size: 12px;
}
.ps2-order-details__row {
	display: grid;
	grid-template-columns: 20px auto;
}
.ps2-order-details__icon img {
	height: 13px;
}
.ps2-address {
	font-weight: bold;
}
.ps2-eventcode {
	display: flex;
	align-items: center;
	padding: 16px 0;
}
.ps2-eventcode img {
	cursor: pointer;
	height: 13px;
	margin-left: 14px;
	margin-right: 5px;
	display: block;
}
.ps2-eventcode > span {
	color: #F3BD46;
}
.ps2-contact {
	margin-bottom: 16px;
}
.ps2-order-details__row {
	margin-bottom: 16px;
}
.ps2-butttons > a {
	margin-top: 10px;
}
.popup-style-2 .btn-img img {
	height: 13px;
}
.btn-close-small {
	display: flex;
	cursor: pointer;
	width: 22px;
	height: 22px;
	align-items: center;
	justify-content: center;
	background: #F5F5F5;
	transition: .4s;
}
.btn-close-small img {
	height: 13px;
	transition: .1s;
}
.btn-close-small:hover img {
	height: 16px;
}
.popup-style-2 .btn-close-small {
	position: absolute;
    right: 10px;
    top: 10px;
}
.btn-bordered {
	border: 1px solid #191919;
}
.btn-bordered:hover {
	background: #cdcdcd;
}
@media only screen and (max-width:921px) {
	.calendar__content {
		font-size: 9px;
	}
}
@media only screen and (max-width:620px) {
	.calendar__content {
		font-size: 14px;
	}
	.calendar__weekdays {
		display: none;
	}
	.--weekly-view .calendar__column.--title {
		display: none;
	}
	.mobile-only {
		display: block;
	}
	.calendar.--grid-36.--weekly-view {
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.calendar__schedule {
		position: relative;
		border-top: none;
		display: block;
	}
	.calendar__item:not(.--name).--status-hold {
		background: #fff!important;
	}
	.calendar__item:not(.--name).--status-ingepland {
		background: #fff!important;
	}
	.calendar__item:not(.--name).--status-voorbij,
	.calendar__item:not(.--name).--status-voorbij svg {
		background: #fff!important;
		color: inherit!important;
	}
	.calendar__item:not(.--name).--status-afgewerkt {
		background: #fff!important;
		color: inherit!important;
		border: none;
	}
	.calendar__item {
		color: #191919;
		padding: 16px 0;
	}
	.calendar__content {
		grid-template-columns: 1fr 2fr 1fr;
		gap: 10px;
	}
	.calendar__details {
		grid-column: auto;
	}
	.calendar__status {
		grid-column: auto;
		grid-row: auto;
	}
	.calendar__actions {
		margin-left: auto;
	}
	.today .calendar__time,
	.today .--strong,
	.calendar__column.today .calendar__status svg {
		color: #1BA3F8!important;
	}
	.--weekly-view .calendar__item {
		margin: 0;
		border-bottom: 1px solid #cdcdcd!important;
	}
	.calendar__column {
		display: block;
		border-bottom: none;
		margin-bottom: 32px;
	}
	.calendar__schedule > div:not(.--title) {
		border-bottom: none;
	}
	
}
@media screen and (max-width: 420px) {	
	.title.--with-nav .right {
		flex-wrap: wrap;
		width: 100%;
	}
	.title.--with-nav .right > * {
		width: 100%;
		margin-top: 5px;
		margin-left: 0;
		margin-right: 0;
	}
	.title .right .btn {
		max-width: 100%;
	}
}

/* #endregion */
.custom-combobox {
    position: relative;
    display: inline-block;
    background-color: white;
    border: 1px solid #ccc;
    width: 200px;
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
    background-color: #ccc;
    right: 0;
}

.custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
}