/*--- FONTS ---*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;700&display=swap');

.menu-expanded {
    overflow: hidden;
}

/*--- Modal ----*/
.modal-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 100;
	background: #0000005c;
	backdrop-filter: blur(1px);
}

.modal-wrapper.active {
	display: flex;
}

.modal {
    margin: auto;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0px 6px 34px rgb(75 81 134 / 18%);
    min-width: 480px;
    position: relative;
    background-blend-mode: lighten;
    position: relative;
    
    background-color: #272727;
    
}

.modal .btn {
	width: 100%;
}

.modal-inner {
	position: relative;
}

.modal-inner--result {
	display: none;
}

.modal-subcaption + .modal-inner {
	margin-top: var(--indent);
}

.modal-close {
    width: calc(var(--indent) * 2);
    height: calc(var(--indent) * 2);
    text-align: center;
    position: absolute;
    top: 6px;
    right: 12px;
    display: flex;
    cursor: pointer;
    color: var(--border-clr);
}

.modal-close:hover {
	fill: var(--main-clr);
}

.modal-close svg {
	display: block;
	margin: auto;
}

.modal-caption,
.modal-caption--result {
    width: 100%;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 2rem 0;
    	
}

.modal-subcaption {
	text-align: center;
}

.modal__input-wrapper {
    position: relative;
}

.modal__input-wrapper span.error {
    position: absolute;
    bottom: -18px;
    left: 0;
    font-size: 12px;
    line-height: 12px;
    color: #ff1414;
}

:root {
    --main-clr: #ebbc62;
    --main-clr-hov: #cea557;
	
    --secondary-clr: #ffa726;
    --secondary-clr-hov: #e9971f;
	
    --body-clr: #000;
    --cloud-clr: #f3f3f3;
    --text-clr: #fff;
    --text-light-clr: #f7f7f7;
	
    --link-clr: #ebbc62;
    --link-clr-hov: #cea557;
	
    --light-clr: #f4f4f6;
    --extra-light-clr: #757575;
	
    --border-clr: #eee;
	
    --cwidth: 1200px;
    --indent: calc(var(--font-size) * var(--line-height));
    --half-indent: calc(var(--indent) * 0.5);
    --double-indent: calc(var(--indent) * 2);
    --negative-indent: calc(var(--indent) * -1);
    --minus-negativ-indent: calc(var(--half-indent) * -1);
    --vh: 1vh;
    --min-content-height: 100vh;
    --header-height: 72px;
    --font-size: 16px;
    --line-height: 1.5;
    position: relative;
}

html {
	font-size: var(--font-size);
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: var(--line-height);
    background: var(--body-clr);
    color: var(--text-clr);
    font-family: 'Montserrat', sans-serif;
}

.designer-support::before {
	--font-size: 16px;
	--line-height: 1.5;	

	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, #f00, transparent 1px) 0 0 / 100% calc(var(--font-size) * var(--line-height)),
			  transparent 
			  linear-gradient(to top, #f99, transparent 1px) 0 0 / 100% calc((var(--font-size) * var(--line-height)) / 2); 
	position: absolute;
	z-index: 99;
	pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 0.75rem;
    font-weight: 700;
	color: var(--text-clr);
}

h1, .h1 {
	font-size: 2.5rem;
}

h2, .h2 {
	font-size: 2rem;
}

h3, .h3 {
	font-size: 1.5rem;
}

h4, .h4 {
	font-size: 1rem;
}

h5, .h5 {
	font-size: 1rem;
}

h6, .h6 {
    font-size: 1rem;
}

* + h1, * + .h1,
* + h2, * + .h2,
* + h3, * + .h3,
* + h4, * + .h4,
* + h5, * + .h5,
* + h6, * + .h6 {
    margin-top: 1.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text-light-clr);
}

ol, ul {
    margin-top: 0;
    margin-bottom: 0.75rem;
    padding-left: 40px;
}

ul {
	list-style-type: disc;
	padding: 0 0 0 19px;	
}

li {
    color: var(--text-light-clr);
}

li::marker {
    color: #000;
    font-size: 12px;
}

a {
	color: var(--link-clr);
	text-decoration: none;
}

a:hover {
	color: var(--link-clr-hov);
}

hr {
    margin-top: 0.75rem;
    margin-bottom: calc(0.75rem - 1px);
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0; 
	}

input[type=number] {
	-moz-appearance: textfield; 
}

.hidden {
	display: none!important;
}

.center {
	text-align: center;
}

.mt-half {
	margin-top: calc(var(--indent) * 0.5);
}

.mt-1 {
	margin-top: var(--indent);
}

.mt-2 {
	margin-top: calc(var(--indent) * 2);
}

.mt-3 {
	margin-top: calc(var(--indent) * 3);
}

.mt-4 {
	margin-top: calc(var(--indent) * 4);
}

.mb-half {
	margin-bottom: calc(var(--indent) * 0.5);
}

.mb-1 {
	margin-bottom: var(--indent);
}

.mb-2 {
	margin-bottom: calc(var(--indent) * 2);
}

.mb-3 {
	margin-bottom: calc(var(--indent) * 3);
}

.mb-4 {
	margin-bottom: calc(var(--indent) * 4);
}

.vw-100 {
	width: 100vw;
}

.vh-100 {
	height: 100vh;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.flex {
	display: flex;
}

.align-center {
	align-items: center;
}

.overflow-hidden {
	overflow: hidden;
}

.cursor-pointer {
	cursor: pointer;
}

.container {
	width: var(--cwidth);
    padding: 0 var(--indent);
    margin: 0 auto;
}  

.section {
	padding: var(--double-indent) 0;
}

/*--- block title ---*/
.block-title {
	text-align: center;
	font-weight: 900;
}

.block-title strong {
	font-weight: 900;
}

/*--- subtitle ---*/
.subtitle {
	color: var(--main-clr);
	font-size: 20px;
	text-align: center;
	font-family: 'Merriweather', serif;
}

/*--- Link ---*/
.link-dotted {
	border-bottom: 1px dotted;
}

.link-dotted:hover {
	border-bottom-color: transparent;
}

/*--- Button ---*/
.btn {
    color: #fff;
	background: var(--main-clr);
    border: none;
    transition: 0.1s cubic-bezier(1, -0.05, 0, 1.15);
    font-weight: 400;
    text-align: center;
    display: block;
    cursor: pointer;
	padding: 18px 24px;
	text-transform: uppercase;
	border-radius: 3px;
}

.btn:hover {
    background: var(--main-clr-hov);
}

.btn.disabled {
    background: linear-gradient(180deg, #d9d9d9, #d3d3d3);
    border-color: #d5d5d5;
    color: #0d1010;
    opacity: 0.7;
    cursor: not-allowed;	
}

.btn--icon {
    display: flex;
    align-items: center;
	justify-content: center;	
    font-size: 14px;
    padding: 12px 24px;
}

.btn--icon img {
    display: block;
    margin: 0 12px 0 0;
    height: 24px;
}

.btn--icon span {

}

/*--- FORM ---*/
.form {
	position: relative;
}

.form__result {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	position: absolute;
}

.form:not(.form--sended) .form__result {
	display: none;
}

.form.form--sended > *:not(.form__result) {
	visibility: hidden;
}

/*--- INPUT ---*/
.input {
    background: #FFFFFF;
    border: none;
    padding: 16px var(--indent);
    border-radius: 6px;
    font-weight: 400;
    width: 100%;
    line-height: var(--line-height);
    transition: 0.1s cubic-bezier(0.3, 0, 0, 1.01);
    display: block;
}

.input:hover {
	box-shadow: 2px 4px 24px 0px #6788d124;
}

.input::placeholder {
	color: #555;
}

.input--border:focus-within {
	border-color: var(--text-light-clr);
}

.input--border {
	border: 1px solid var(--border-clr);
	padding: calc(var(--half-indent) - 1px) 24px;
}

.input.error {
    border-color: #bd1c1b;
    box-shadow: 2px 8px 12px 0px #bd1c1b24;
}

/*--- TEXTAREA ---*/
.textarea {
    background: #FFFFFF;
    border: none;
    padding: 16px var(--indent);
    border-radius: 6px;
    font-weight: 400;
    width: 100%;
    line-height: var(--line-height);
    transition: 0.1s cubic-bezier(0.3, 0, 0, 1.01);
    display: block;
    resize: none;
    min-height: 120px;
}

.textarea:hover {
	box-shadow: 2px 4px 24px 0px #6788d124;
}

.textarea::placeholder {
	color: #555;
}

.textarea--border:focus-within {
	border-color: #555;
}

.textarea--border {
	border: 1px solid var(--border-clr);
	padding: calc(var(--half-indent) - 1px) calc(var(--indent) - 1px);
}

.textarea.error {
	border-color: #bd1c1b;
	box-shadow: 2px 8px 12px 0px #bd1c1b24;
}

/*--- select ---*/
.select {
	background: #FFFFFF;
	border: none;
	padding: var(--half-indent) var(--indent);
	padding-right: 48px;
	border-radius: 3px;
	font-weight: 400;
	width: 100%;
	line-height: var(--line-height);
	transition: 0.1s cubic-bezier(0.3, 0, 0, 1.01);
	display: block;
	-webkit-appearance: none;
	color: var(--text-light-clr);
	background-image: url(/assets/img/icons/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - var(--indent)) center;
}

.select--border {
	border: 1px solid var(--border-clr);
	padding: calc(var(--half-indent) - 1px) var(--indent);
	padding-right: 48px;
}

.select:hover {
	box-shadow: 2px 4px 24px 0px #6788d124;
}

/*--- simple_checkbox ---*/
.checkbox {
    display: flex;
    align-items: center;
	cursor: pointer;
}

.checkbox input {
	display: none;
}

.checkbox span {

}

.checkbox-checker {
	width: 18px;
	height: 18px;
	border: 1px solid var(--extra-light-clr);
	background: #fff;
	border-radius: 3px;
	margin: 0 12px 0 0;
	display: flex;
	position: relative;
	flex: 0 0 18px;	
}

.checkbox-checker:before {
    content: "";
    opacity: 0;
    transition: 0.06s ease-in-out;
    position: absolute;
    display: block;
    top: calc(50% - 5px);
    left: calc(50% - 2px);
}

.checkbox input:checked + .checkbox-checker:before {
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--main-clr);
    border-bottom: 2px solid var(--main-clr);
    transform: rotate(45deg);
    opacity: 1;
}

.checkbox:hover {
    color: var(--main-clr-hov);
}

/*--- radio ---*/
.radio {
    display: flex;
    align-items: center;
	cursor: pointer;
}

.radio input {
	display: none;
}

.radio span {

}

.radio-checker {
	width: 18px;
	height: 18px;
	border: 1px solid var(--extra-light-clr);
	background: #fff;
	border-radius: 50%;
	margin: 0 12px 0 0;
	display: flex;
	position: relative;
	flex: 0 0 18px;
}

.radio-checker:before {
    content: "";
    opacity: 0;
    transition: 0.06s ease-in-out;
    position: absolute;
    display: block;
	border-radius: 50%;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
	background: var(--main-clr);
}

.radio input:checked + .radio-checker:before {
	width: 8px;
	height: 8px;
    opacity: 1;
}

.radio:hover {
    color: var(--main-clr-hov);
}

/*--- INPUT FILE ---*/
.input-file {
	background: #FFFFFF;
	border-radius: 24px;
	font-weight: 400;
	width: 100%;
	line-height: var(--line-height);
	transition: 0.1s cubic-bezier(0.3, 0, 0, 1.01);
	border: 1px solid var(--border-clr);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 112px;
	grid-gap: 12px;
	cursor: pointer;
}

.input-file:hover {
	box-shadow: 2px 4px 24px 0px #6788d124;
}
.input-file input {
	display: none;
}

.input-file-btn {
	text-align: right;
	padding: calc(var(--half-indent) - 1px) 0;
	border-left: 1px solid var(--border-clr);
	border-top: 1px solid var(--border-clr);
	border-bottom: 1px solid var(--border-clr);
	border-radius: 24px 0 0 24px;
	margin: -1px 0;
}

.input-file-btn:hover {

}

.input-file-text {
	padding: calc(var(--half-indent) - 1px) 0;
    white-space: nowrap;
    overflow: hidden;	
}

table {	
	width: 100%;
	border-collapse: collapse;
	border-radius: 24px;
	overflow: hidden;
}

thead {
	background: var(--main-clr);
	color: #fff;
	font-weight: 700;
}

tbody tr {
	background: #fff;
}

tbody tr:nth-child(2n) {
	background: #F4F4F4;
}

td {	
	padding: 12px 48px;
}

/*--- TABLE PROPERTY ---*/
.property {
	display: grid;
    grid-template-columns: 1fr 1fr;
}

.property-title {

}

.property-value {

}

/*--- FORM GROUP ---*/
.form-group {
    position: relative;
}

.form-group span.error {
    position: absolute;
    left: 0;
    top: -10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: #ff1414;
    background: #fff;
    padding: 4px 24px;
    z-index: 1;
    border-radius: 6px 6px 0 0;
}

/*--- GRID SYSTEM ---*/
.grid {
	display: grid;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.grid-gap-1 {
	grid-gap: var(--indent);
}

.grid-gap-2 {
	grid-gap: calc(var(--indent) * 2);
}

/*--- CAROUSEL ---*/
.carousel {	
	position: relative;
}

.carousel__inner {
	width: calc(100% - 36px*2 - 24px*2);
	margin: 0 auto;
}

.carousel-prev,
.carousel-next {
	display: flex;
	width: 27px;
	height: 36px;
	background-color: #fff;
	border-radius: 2px;
	cursor: pointer;
	position: absolute;
	top: calc(50% - 18px);
	left: 0;
	box-shadow: 1px 3px 12px 0px #00000024;
}

.carousel-prev:after,
.carousel-next:after {
	content: "";
	background: url(/assets/img/icons/menu-arrow.svg);
	width: 14px;
	height: 11px;
	display: block;
	margin: auto;
	transform: rotateZ(90deg);
	opacity: 0.75;
}

.carousel-next:after {
	transform: rotateZ(270deg);
}

.carousel-next {
	left: unset;
	right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
	box-shadow: 0px 1px 6px 0px #0000000f;
}

.carousel__inner .slick-dots {
	list-style-type: none;
	display: flex!important;
	justify-content: center;
	padding: 00;
	margin: 0;
	position: absolute;
	bottom: -26px;
	left: 50%;
	transform: translateX(-50%);
}

.carousel__inner .slick-dots > li {		
	padding: 0 9px;
}

.carousel__inner .slick-dots > li > button {
	border: 2px solid transparent;
	background: #c5c5c5;
	color: transparent;
	width: 9px;
	height: 16px;
	white-space: nowrap;
	border-radius: 50%;
	display: block;
	font-size: 0;
	line-height: 0;
}

.carousel__inner .slick-dots > li.slick-active > button {	
	border-color: var(--main-clr);
	background: var(--main-clr);
}	

.carousel__inner.slick-dotted {
	width: 100%;
}

.carousel__inner.slick-dotted ~.carousel-prev, 
.carousel__inner.slick-dotted ~.carousel-next {
	display: none!important;
}

/*--- FORM POLITIC ---*/
.form-politic {
	font-size: 12px;
	color: #CCCCCC;	
}

.form-politic a:hover {
	text-decoration: underline;
}
