<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.add-form {}

.add-form .form-messages {}
.add-form .form-messages p {font-size: 16px;}
.add-form .form-messages .-is-error {color: var(--highlight-color);}
.add-form .form-messages .-is-note {color: var(--text-dark-color);}

.add-form .form-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}
.add-form .form-popup .form-popup__inner {
    margin: 70px auto;
    padding: 20px;
    background: var(--background-color);
    border-radius: 5px;
    width: 90%;
    position: relative;
    transition: all 5s ease-in-out;
}
.add-form .form-popup .form-popup__title {
    margin-top: 0;
    color: #333;
    text-align: center;
    font-size: 16px;
}
.add-form .form-popup .form-popup__body {
    margin: 70px auto;
    padding: 20px;
    background: var(--background-color);
    border-radius: 5px;
    width: 90%;
    position: relative;
    transition: all 5s ease-in-out;
}
.add-form .form-popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-dark-color);
}
.add-form .form-popup .close:hover {color: var(--highlight-color);}
.add-form .form-popup p {font-size: 16px;}
.add-form .form-popup .-is-error {color: var(--highlight-color);}
.add-form .form-popup .-is-note {color: var(--text-dark-color);}
@media screen and (max-width: 700px){
    .add-form .form-popup{
        width: 70%;
    }
}

.add-form .moreContacts {
    margin-bottom: 20px;
}
.add-form .moreContacts .moreContacts__item {
    line-height: 18px;
    font-size: 15px;
    border: 1px solid var(--text-light-color);
    margin-right: 8px;
    border-radius: 10px;
    padding: 3px;
}
.add-form .moreContacts .moreContacts__item i {
    padding-right: 5px;
    font-size: 18px;
}

.add-form .form-group {}
.add-form .form-group .group-col {

}
.add-form .form-group .col {}
.add-form .form-group .col-2 {width: 49%; display: inline-block; vertical-align: top;}
.add-form .form-group .col-3 {width: 32%; display: inline-block; vertical-align: top;}
.add-form .form-group .form-field {margin-bottom: 20px;}
.add-form .form-group .col-2 .form-field {width: 90%;}
.add-form .form-group .col-3 .form-field {width: 90%;}
.add-form .form-buttons input {color: #fff; border: none; display: inline-block; width: 100%; cursor: pointer;}
.add-form .form-buttons input:hover {color: var(--background-color);}

.add-form .input-map .girl-up-button {color: #fff;}
.add-form .input-map .girl-up-button:hover {color: var(--background-color);}

.add-form .description-checkbox-add {
    position: absolute;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease-out;
}
.add-form .custom-checkbox&gt;.custom-checkbox--input:checked~.description-checkbox-add {
    opacity: 1;
    pointer-events: auto;
}

.add-form .input-string.--multiple .form-control { margin-bottom: 10px;}

.add-form .input-file .photo-wrap {position: relative; text-align: center; margin-bottom: 10px;}
.add-form .input-file .photo-wrap .file-preview {position: relative; display: block; border-radius: 6px; margin: 2px auto;}
.add-form .input-file .photo-wrap .file-preview .delete-file {text-align: center; width: 100%; padding: 10px; bottom: 0; position: absolute;}
.add-form .input-file .photo-wrap .form-control {}

.add-form .form-group .form-field .error {color: var(--highlight-color); display: inline-block; margin-right: 4px;}
.add-form .form-group .form-field.-has-error .form-control {border-color: var(--highlight-color);}
.add-form .form-group .form-field.-pulse {box-shadow: 0 0 0 0 rgba(200, 33, 113, 1); transform: scale(1); animation: pulse 2s infinite;}

.detail--info-box li a{color: #4f4f4f; text-decoration: underline}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(200, 33, 113, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}

.fade {
	transition: opacity 0.15s linear;
}

.fade:not(.show) {
	opacity: 0;
}

.modal-body{
	background:#fff;
}
.modal-body .sub_filter{
	font-size: 14px;
	margin-top: 20px;
	overflow-y: scroll;
	max-height: 80dvh;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.modal-body .sub_filter li{
	display:block;
	font-size:14px;
}

.modal-content{
	background:#fff;
	padding: 16px;
	position: relative;
	border-radius: 4px;
}

.modal-top{
	display: flex;
	align-items: center;
}

.btn-close {
	margin-left: auto;
	display: block;
	/* position: absolute; */
	/* top: 32px; */
	right: 16px;
	background: transparent;
	cursor: pointer;
}

.modal-title{
	font-size: 16px;
}

.city-title{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 16px;
}

.btn-close-container {
	position: absolute;
	top: 16px;
	right: 16px;
}

.sub_filter a{
	color: #000;
}

.modal-dialog{
	position: relative;
	top: 50%;
	max-width: 360px;
	margin: 0 auto;
	transform: translateY(-50%);
}


.modal-backdrop{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.show {
	opacity: 0.2;
}
.none{
	display: none;
}</pre></body></html>