/*
 *
 * Custom Select
 *
*/
.select {
    display: block;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.select__head,
.select__list {
    background-color: #fff;
    border: 1px solid #a2a2a2;
    cursor: pointer;
    padding-left: 12px;
    padding-right: 12px;
}
.select__head {
    border-radius: 4px;
    height: 35px;
    line-height: 36px;
    z-index: 0;
}


.select__head::after {
    width: 10px;
    height: 6px;
    background: #FFF url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.50495 5.78413L0.205241 1.25827C-0.0684138 0.970375 -0.0684138 0.503596 0.205241 0.215836C0.478652 -0.0719461 0.922098 -0.071946 1.19549 0.215837L5.00007 4.22052L8.80452 0.215953C9.07805 -0.0718292 9.52145 -0.0718292 9.79486 0.215953C10.0684 0.503736 10.0684 0.970492 9.79486 1.25839L5.49508 5.78425C5.35831 5.92814 5.17925 6 5.00009 6C4.82085 6 4.64165 5.928 4.50495 5.78413Z' fill='%23ED266A'/%3E%3C/svg%3E%0A") no-repeat center / cover;
    position: absolute;
    right: 15px;
    bottom: 50%;
    transform: translateY(50%);
    content: '';
    display: block;
    transition: .2s ease-in;
}
.select__head.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select__head.open::after {
    transform: translateY(50%) rotate(180deg);
}
.select__list {
    border-top: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    max-height: 205px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    padding: 0;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
    z-index: 5;
}
.select__list::-webkit-scrollbar {
    width: 5px;
    background-color: #F8F9FA;
    padding: 5px;
}
.select__list::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
}
.select__list .select__item:not(:first-child) {
    border-top: 1px solid rgba(224, 229, 231, 0.5);
}
.select__list .select__item {
    color: #2D3741;
    cursor: pointer;
    list-style-type: none;
    margin-bottom: 0;
    position: relative;
    padding: 12px;
}

#hn_filder_content .select__list{
    position: relative;
   }

.select__list .select__item:hover {
    background-color: rgba(224, 229, 231, 0.5);
}
.select__list.list-of-cities li,
.select__list.list-of-citiesSecond li {
    display: none;
}
.select__list.list-of-cities.england li.select__item-city-england,
.select__list.list-of-cities.poland li.select__item-city-poland,
.select__list.list-of-cities.romania li.select__item-city-romania,
.select__list.list-of-citiesSecond.england li.select__item-city-england,
.select__list.list-of-citiesSecond.poland li.select__item-city-poland,
.select__list.list-of-citiesSecond.romania li.select__item-city-romania {
    display: block;
}

/*
 *
 * Custom Select languages
 *
*/
.language-list, .floor-list {
    display: none;
}
.language-list.show-list, .floor-list.show-list {
    display: block;
}
.language-selector, .floor-selector {
    position: relative;
    width: 100%;
}
.language-list, .floor-list {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-top: none;
    list-style: none;
    left: 0;
    max-height: 150px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 40px;
    overflow-y: auto;
    z-index: 3;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}
.language-list::-webkit-scrollbar, .floor-list::-webkit-scrollbar {
    width: 5px;
    background-color: #F8F9FA;
    padding: 5px;
}
.language-list::-webkit-scrollbar-thumb, .floor-list::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
}
.language-list li, .floor-list li {
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
    padding: 9px 12px;
}
.language-list li.selected, .floor-list li.selected {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}
.language-list li:not(:first-child), .floor-list li:not(:first-child){
    border-top: 1px solid rgba(224, 229, 231, 0.5);
}
.language-list li:hover, .floor-list li:hover {
    background-color: rgba(224, 229, 231, 0.5);
}
.selected-languages, .selected-floors {
    align-items: center;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    padding: 2px 4px;
    min-height: 40px;
}
.selected-languages > span, .selected-floors > span {
    background-color: #f0f0f0;
    display: inline-block;
    font-size: 13px;
    padding: 5px 28px 5px 10px;
    margin: 1px;
    position: relative;
}
.selected-languages span .remove-language, .selected-floors span .remove-floor {
    border-left: 1px solid #fff;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 14px;
    line-height: 12px;
    padding: 5px;
}

/*
 *
 * Custom Select Category
 *
*/
.category-list {
    display: none;
}
.category-list.show-list {
    display: block;
}
.category-selector {
    position: relative;
    width: 100%;
}
.category-list {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-top: none;
    list-style: none;
    left: 0;
    max-height: 150px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 22px;
    overflow-y: auto;
    z-index: 1;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}

.hn_section_about_me__head .category-list{
    top: 29px;
}

.hn_section_about_me__head .selected-categories.listing-category.hn-input-required:after{
    width: 10px;
    height: 6px;
    background: #FFF url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.50495 5.78413L0.205241 1.25827C-0.0684138 0.970375 -0.0684138 0.503596 0.205241 0.215836C0.478652 -0.0719461 0.922098 -0.071946 1.19549 0.215837L5.00007 4.22052L8.80452 0.215953C9.07805 -0.0718292 9.52145 -0.0718292 9.79486 0.215953C10.0684 0.503736 10.0684 0.970492 9.79486 1.25839L5.49508 5.78425C5.35831 5.92814 5.17925 6 5.00009 6C4.82085 6 4.64165 5.928 4.50495 5.78413Z' fill='%23ED266A'/%3E%3C/svg%3E%0A") no-repeat center / cover;
    position: absolute;
    right: 15px;
    bottom: 50%;
    transform: translateY(50%);
    content: '';
    display: block;
    transition: .2s ease-in;
}


.category-list::-webkit-scrollbar {
    width: 5px;
    background-color: #F8F9FA;
    padding: 5px;
}
.category-list::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
}
.category-list li {
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
    padding: 9px 12px;
}
.category-list li.selected {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}
.category-list li:not(:first-child) {
    border-top: 1px solid rgba(224, 229, 231, 0.5);
}
.category-list li:hover {
    background-color: rgba(224, 229, 231, 0.5);
}
.selected-categories {
    align-items: center;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    padding: 2px 4px;
    min-height: 29px;
}
.selected-categories > span {
    background-color: #f0f0f0;
    display: inline-block;
    font-size: 13px;
    padding: 5px 28px 5px 10px;
    margin: 1px;
    position: relative;
}
.selected-categories span .remove-category {
    border-left: 1px solid #fff;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 14px;
    line-height: 12px;
    padding: 5px;
}

.s_profile_business .selected-categories{
    min-height: 40px;
}

/*
 *
 * About Me / Info
 *
*/

.hn_section_about_me__head,
.hn_section_about_me__columns,
.hn_section_about_me__column:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}
.hn_section_about_me__head {
    margin-left: -7.5px;
    margin-right: -9px;
}
.hn_section_about_me__columns {
    margin-right: -6.5px;
}
.hn_section_about_me__head .hn_section_about_me__item {
    width: 50%;
}


.hn_section_about_me__item {
    box-sizing: border-box;
    padding-left: 6.5px;
    padding-right: 6.5px;
    width: 25%;
}

.hn_section_about_me__item #hn_mb_email{
    margin-bottom: 20px;
}

#hn_section_gender{
    padding: 0px;
    margin-bottom: 25px;
}

.hn-wrap-number-of-characters-about-me {
    font-size: 15px;
}

.wrap-whatsap-telagram-viber,
.hn_section_about_me__item.hn_section_about_me__item-full-width {
    width: 100%;
}

.hn_section_about_me__item-half-width{
    width: 50%;
    margin-bottom: 20px;
}

.wrap-seclect-telephone .iti.iti--allow-dropdown.iti--show-flags {
    display: flex;
}
.wrap-seclect-telephone .iti__flag-container,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: #fff !important;
}
.wrap-seclect-telephone .iti__flag-container {
    border: 1px solid #E1E1E1 !important;
    border-radius: 0 !important;
    color: #373131 !important;
    height: 40px !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 39px !important;
    margin-right: 10px;
    padding-left: 7px !important;
    padding-right: 7px !important;
    position: relative !important;
    transition: border 0.2s ease 0s;
    width: 108px !important;
}

#s_profile_fields_about_me > section > div > div:nth-child(2) > div:nth-child(24) > div > div > div{
    border: 1px solid #EA3362 !important;
}

.iti__arrow {
    border: none !important;
    height: 6px;
    margin-left: 8px;
    width: 10px;
}
.iti__arrow.iti__arrow--up::after {
    transform: translateY(50%) rotate(180deg);
}
.iti__arrow::after {
    width: 10px;
    height: 6px;
    background: #FFF url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.50495 5.78413L0.205241 1.25827C-0.0684138 0.970375 -0.0684138 0.503596 0.205241 0.215836C0.478652 -0.0719461 0.922098 -0.071946 1.19549 0.215837L5.00007 4.22052L8.80452 0.215953C9.07805 -0.0718292 9.52145 -0.0718292 9.79486 0.215953C10.0684 0.503736 10.0684 0.970492 9.79486 1.25839L5.49508 5.78425C5.35831 5.92814 5.17925 6 5.00009 6C4.82085 6 4.64165 5.928 4.50495 5.78413Z' fill='%23ED266A'/%3E%3C/svg%3E%0A") no-repeat center / cover;
    position: absolute;
    right: 15px;
    bottom: 50%;
    transform: translateY(50%);
    content: '';
    display: block;
    transition: .2s ease-in;
}
.wrap-seclect-telephone .iti__country-list {
    margin: 2px 0 0 -8px !important;
    box-shadow: none;
    white-space: wrap;
    border-top: 0;
    width: 290px;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}
.wrap-seclect-telephone .iti__country {
    line-height: 18px;
}
.wrap-seclect-telephone .iti__country-name {
    white-space: wrap;
}
.iti__country-list::-webkit-scrollbar {
    background-color: #F8F9FA;
    padding: 5px;
    width: 5px;
}
.iti__country-list::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
}
#telephone {
    max-width: 100%;
    width: 100% !important;
}

.wrap-whatsap label,
.wrap-telagram label,
.wrap-viber label,
.wrap-whatsap-telagram-viber {
    align-items: center;
    display: flex;
}

.wrap-whatsap-telagram-viber {
    margin-top: 25px;
}
.wrap-whatsap-telagram-viber .hn_custom_checkbox__checkbox {
    border-color: #e1e1e1;
}
.wrap-whatsap,
.wrap-telagram,
.wrap-viber {
    flex: 0 0 95px;
}
.wrap-whatsap,
.wrap-telagram {
    margin-right: 13px;
}
.wrap-whatsap .filter__label,
.wrap-telagram .filter__label,
.wrap-viber .filter__label {
    margin: 0 14px 0 0;
}

.hn_section_about_me__column {
    box-sizing: border-box;
}
.hn_section_about_me__column:nth-child(1) {
    padding-right: 29px;
    width: calc(33% + 7px);
}
.hn_section_about_me__column:nth-child(2) {
    width: calc(67% - 7px);
}
.wrap-field-photo-person-preview {
	border: 1px solid #e1e1e1;
    padding-bottom: 50%;
	position: relative;
	width: 100%;
}
#clear-photo-button {
    background-color: #fff;
	border: 1px solid #e1e1e1;
    border-radius: 50%;
    cursor: pointer;
	display: none;
    height: 36px;
    outline: none;
	position: absolute;
	right: 12px;
	top: -18px;
    width: 36px;
	z-index: 3;
}
#clear-photo-button.image-set {
	display: block;
}
#clear-photo-button svg {
    left: 51%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    max-height: 68%;
    max-width: 68%;
}
.photo-person-preview {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%)
}
#main-photo {
    left: 50%;
    max-height: 100%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    max-width: 100%;
    z-index: 2;
}
.select-photo-person-button {
	border-radius: 50%;
	cursor: pointer;
    display: block !important;
	height: 50px;
    left: 50%;
	padding: 2px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
	overflow: hidden;
	width: 50px !important;
    z-index: 10;
}
.select-photo-person-button svg {
	max-height: 100%;
    max-width: 100%;
}
.field-photo-person {
    left: 0;
    position: absolute;
	opacity: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.hn_section_business_head, .hn_section_business_head .hn_section_about_me__item{
    width: 100%;
    margin-bottom: 10px;
}

.hn_section_business_margin{
    margin-bottom: 20px;
}

/*
.js-select-list-category .select__item {
    display: none;
}*/


.js-select-list-category.woman .select__item-women,
.js-select-list-category.women .select__item-women,
.js-select-list-category.man .select__item-man,
.js-select-list-category.trans .select__item-trans {
    display: block;
}

/*
 *
 * Gallery & Video
 *
*/

.hn_section_gallery_video {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 25px;
}
.hn_section_gallery_video__items,
.hn_section_gallery_video__columns {
    display: flex;
    flex-wrap: wrap;
}

.hn_section_gallery_video__item {
    width: 357px;
    max-width: 100%;
}

.hn_section_about_me__column .hn_section_gallery_video__item{
    width: 100%;
}

.hn_section_gallery_video__item:first-child {
    margin-right: calc(5% - 4px);
}

.hn_section_about_me__columns .hn_section_gallery_video__item:first-child {
    margin-right: 0px;
}

.s_profile_business .hn_section_gallery_video__item{
    width: 50%;
}

.s_profile_business .hn_section_gallery_video__item:first-child{
    margin-right: auto;
}

.s_profile_business .s_profile_listings_post_form .hn_section_gallery_video__items,
.s_profile_business .s_profile_listings_post_form .hn_section_gallery_video__columns {
    display: block;
    width: 100%;
}

.s_profile_business .s_profile_listings_post_form .hn_section_gallery_video__item{
    width: 100%;
}

.s_profile_business #s_profile_listings_content_form > section > div.hn_section_about_me__columns > div:nth-child(2) > div:nth-child(26){
    margin-bottom: 20px;
}


.hn_section_gallery_video__item-title {
    color: #2D3741;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 34px;
}

.page-id-323 .um-field-label label, 
.page-id-323 .um .um-field-label,
.page-id-323 .um span.um-req,
.page-id-352 .um-field-label label, 
.page-id-352 .um .um-field-label,
.page-id-352 .um span.um-req,
.page-id-344 .um-field-label label, 
.page-id-344 .um .um-field-label,
.page-id-344 .um span.um-req,
.page-id-2496 .um-field-label label, 
.page-id-2496 .um .um-field-label,
.page-id-2496 .um span.um-req{
    color: #2d2d2d !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: normal !important;
    margin: 0px !important;
    margin-bottom: 5px !important;
} 

.page-id-323 .um span.um-req,
.page-id-352 .um span.um-req,
.page-id-344 .um span.um-req,
.page-id-2496 .um span.um-req{
    margin-bottom: 5px !important;
}

@media (min-width: 576px) {
    .hn_section_gallery_video__item-title .mobile {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .hn_section_gallery_video__item-title {
        font-weight: 700;
        text-transform: uppercase;
    }
    .hn_section_gallery_video__item-title .dekstop {
        display: none;
    }
    .hn_section_subscriptions_toggle_switch {
        margin-top: 15px !important;
    }

    .s_profile_business .hn_section_gallery_video__item{
        width: 100%;
    }
}
.hn_section_gallery_video__columns {
    margin: -11px;
}
.hn_section_gallery_video__column {
    background-color: #D9D9D9;
    margin: 11px;
    padding-bottom: calc(46% - 2px);
    position: relative;
    width: calc(50% - 25px);
}
.hn_section_gallery_video__columnPlaceholder {
    left: 15px !important;
    opacity: 0.7;
    position: absolute;
    top: 8px !important;
    z-index: 0;
}
.hn_section_gallery_video__poster,
.hn_section_gallery_video__video {
    left: 0;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.upload-video-btn {
    border-radius: 50%;
    cursor: pointer;
    height: 32px;
    left: 50%;
    padding: 2px;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 32px;
    z-index: 2;
}
.upload-video-btn img,
.upload-video-btn svg {
    max-height: 100%;
    max-width: 100%;
}
.hn_section_gallery_video__column:hover .hn_section_gallery__preview-remove {
    opacity: 1;
}
.hn_section_gallery_video__column.removing {
    transform: scale(0);
    transition: transform 0.3s ease 0s;
}
.hn_section_gallery__preview-remove {
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    height: 20px;
    font-size: 17px;
    line-height: 20px;
    padding: 0;
    position: absolute;
    right: 5px;
    outline: none !important;
    opacity: 0;
    transition: opacity 0.3s ease 0s;
    top: 5px;
    width: 20px;
    z-index: 3;
}
@media (pointer:coarse) {
    .hn_section_gallery__preview-remove {
        opacity: 1;
    }
}
.hn_section_gallery_video__column img {
    bottom: 0;
    left: 0;
    height: 100%;
    position: absolute;
    right: 0;
    object-fit: cover;
    top: 0;
    width: 100%;
    z-index: 2;
}
.hn_section_gallery_video__info {
    background-color: rgba(255, 255, 255, 0.4);
    bottom: 0;
    left: 0;
    height: 20px;
    opacity: 0;
    position: absolute;
    right: 0;
    transition: opacity 0.3s ease 0s;
    width: 100%;
}
.preview-info-progress {
    bottom: 0;
    background-color: #42b983;
    left: 0;
    position: absolute;
    top: 0;
    text-align: center;
    transition: width 0.22s;
    width: 30%;
}
.hn_section_gallery_video__item input[type='file'] {
    display: none;
}
.hn_section_gallery_video__upload {
    align-items: center;
    background-color: #2D3741;
    border: none;
    border-radius: 21px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    height: 35px;
    margin: 25px auto 0;
    transition: box-shadow 0.3s ease 0s;
    width: 120px;
}
.hn_section_gallery_video__upload:focus {
    border: none;
    outline: none;
}
.hn_section_gallery_video__upload:hover {
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
}
#hn_person_upload_download {
    display: none;
}
#hn_person_upload_download.show {
    display: block;
}
.hn_section_gallery_video__blockDesc {
    list-style: none;
    padding-left: 0;
    margin: 15px auto 0;
    width: 320px;
    max-width: 100%;
}
.hn_section_gallery_video__blockDesc p,
.hn_section_gallery_video__blockDesc li {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
.hn_section_gallery_video__blockDesc p {
    text-align: center;
}
.hn_section_gallery_video__blockDesc li {
    margin: 0;
    padding-left: 12px;
    position: relative;
}
.hn_section_gallery_video__blockDesc li::before {
    background-color: #000;
    border-radius: 50%;
    content: '';
    display: block;
    height: 5px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 5px;
}

/*
 *
 * Rates / Prices
 *
*/

.hn_section_rates {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.hn_section_rates__items {
    /* display: flex; */
    flex-wrap: wrap;
    width: 100%;
}
.hn_section_rates__item {
    box-sizing: border-box;
}
.hn_section_rates__item:nth-child(1) {
    padding-right: 28px;
    width: 228px;
}
.hn_section_rates__item:nth-child(2) {
    width: calc(100% - 228px);
}
.hn_section_rates .hn_label_above_foild {
    color: #2D3741;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 7px;
}
.hn_section_rates .select__head,
.hn_section_rates .select__list {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
}
.hn_section_rates .select__list {
    border-top: none;
}
.hn_section_rates .select__list .select__item {
    padding: 9px 12px;
}
.hn_section_rates__headBlockPrices,
.hn_section_rates__blockPrices {
    padding-left: 25px;
    padding-right: 20px;
}
/* .hn_section_rates__wrapBlockPrices {
    max-width: 393px;
} */
.hn_section_rates__headBlockPrices,
.hn_section_rates__row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.hn_section_rates__headBlockPrices {
    justify-content: space-between;
    padding-right: 50px;
}
.hn_section_rates__headBlockPrices h3 {
    color: #EF0A6A;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 9px;
}
.hn_section_rates__headBlockPrices h3:nth-child(1) {
    margin-right: 10px;
}
.hn_section_rates__blockPrices {
    background-color: #fff;
    border: 1px solid #E1E1E1;
    padding-bottom: 12px;
    padding-top: 12px;
    margin-bottom: 25px;
}
.hn_section_rates__blockName {
    width: 92px;
}
.hn_section_rates__blockName label {
    color: #4B3C3C;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hn_section_rates__wrapField {
    padding: 12px 5px;
    width: calc(50% - 56px);
}
.hn_section_rates__wrapField input {
    background-color: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 0;
    display: block;
    color: #373131;
    height: 35px;
    font-size: 12px;
    font-weight: 300;
    line-height: 35px;
    padding-left: 7px;
    padding-right: 7px;
    width: 100%;
}

/*
 *
 * Services
 *
*/

#is_empty_card_image {
    opacity: 0;
}
.hn_section_services__wrap-services {
    box-sizing: border-box;
    width: 100%;
    /* max-width: 754px;
    padding: 0 0 0 25px; */
}
.hn_section_services__head,
.hn_section_services__blockName label,
.hn_section_services__row {
    box-sizing: border-box;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.hn_section_services__head {
    border-bottom: 1px solid #EF0A6A;
    justify-content: space-between;
    margin-bottom: 8px;
}
.hn_section_services__head .hn_section_services__blockField.one {
    padding-right: 0;
}
.hn_section_services__head .hn_section_services__blockField.second {
    padding-left: 0;
}
.hn_section_services__head .hn_section_services__blockField.one h3 {
    padding-left: 6%;
}
.hn_section_services__head .hn_section_services__blockField.second h3 {
    padding-left: 37%;
}
.hn_section_services__head h3 {
    color: #EF0A6A;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0 10px 9px 0;
}
.hn_section_services__row {
    justify-content: space-between;
    padding-bottom: 5px;
    padding-top: 5px;
}

.hn_section_services__blockField .select{
    margin: 0px;
}

.hn_section_services__blockName {
    box-sizing: border-box;
    flex-wrap: nowrap;
    padding: 0 10px;
    width: 222px;
}
.hn_section_services__blockName .hn_custom_checkbox__checkbox {
	border-color: #e2e2e2;
}
.hn_section_services__blockName .hn_custom_checkbox {
    margin-right: 15px !important;
}
.hn_section_services__blockName .filter__label,
.hn_section_services__blockName label {
    color: #6C6C6C;
    font-size: 14px;
	flex-wrap: nowrap;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 4px;
}
.hn_section_services__blockName label {
    margin: 0;
}
.hn_section_services__blockField {
    width: calc(50% - 178px);
}
.hn_section_services__blockField.one {
    padding-right: 4%;
}
.hn_section_services__blockField.second {
    padding-left: 4%;
    position: relative;
}
.hn_section_services__blockField input {
    position: relative;
    z-index: 1;
}
.hn_section_services__blockField input:disabled,
.hn_section_services__blockField input.disabled {
    border: 1px solid #E1E1E1;
}
.hn_section_services .select {
    margin-bottom: 0;
}
.hn_section_services .select__head,
.hn_section_services .select__list {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
}
.hn_section_services .select__head,
.hn_section_services .select__list .select__item {
    font-size: 11px;
}
.hn_section_services .select__head {
    height: 33px;
    line-height: 33px;
}
.hn_section_services .select__list {
    border-top: none;
}
.hn_section_services .select__list .select__item {
    padding: 9px 12px;
}
.hn_section_services__blockCurrency .hn_section_services_currency {
    background: none;
    border: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    height: 35px;
    line-height: 35px;
    padding-bottom: 12px;
    pointer-events: none;
    text-align: center;
    width: 73px;
}

/*
 *
 * Working Time
 *
*/

.hn_wrap-table {
    width: 600px;
    max-width: 100%;
}
.hn_table-row.head {
    justify-content: space-between;
    position: relative;
}
.hn_table-row.head::after {
    background-color: #EF0A6A;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
}
.hn_wrap-table .hn_label_above_foild {
    color: #2D3741;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 7px;
}
.hn_wrap-table .select {
    max-width: 200px;
}
.hn_wrap-table .select__head,
.hn_wrap-table .select__list {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
}
.hn_wrap-table .select__head,
.hn_wrap-table .select__list .select__item {
    font-size: 11px;
}
.hn_wrap-table .select__head {
    height: 33px;
    line-height: 33px;
}
.hn_wrap-table .select__list {
    border-top: none;
}
.hn_wrap-table .select__list .select__item {
    padding: 9px 12px;
}
.hn_table-row.head .hn_table-column.from,
.hn_table-row.head .hn_table-column.to {
    /*flex: 0 0 178px;*/
    margin-right: 24px;
    text-align: center;
    width: calc(50% - 116px - 65px);
}
.hn_table-row.head .hn_table-column.from {
    padding-right: 11px;
}
.hn_table-row.head .hn_table-column.to {
    padding-left: 11px;
}
.hn_table-row.head .hn_table-column p {
    margin: 10px 0;
}
.hn_table-row.head .hn_table-column.all-day {
    align-items: center;
    display: flex;
    justify-content: center;
}
.hn_table-row .hn_table-column.all-day label {
    position: relative;
    top: 3px;
}
.hn_table-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.hn_table-row:not(:last-child) {
    margin-bottom: 30px;
}
.hn_table-column.name {
    flex: 0 0 116px;
}
.hn_table-column.name p {
    color: #312626;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    position: relative;
    top: 5px;
}
.hn_table-row.head .hn_table-column p {
    color: #EF0A6A;
    font-weight: 500;
}
.hn_table-column.from,
.hn_table-column.to {
    margin-right: 22px;
    position: relative;
    width: 50%;
}
.hn_table-column.from input,
.hn_table-column.to input {
    text-align: center;
}
.hn_table-column.all-day {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex: 0 65px;
}
.hn_table-column .hn_input {
    border-radius: 0;
    height: 35px;
    width: 100%;
}
.hn_wrap-table .hn_custom_checkbox {
	bottom: 2px;
    margin-right: 5px !important;
	position: relative;
}
.hn_wrap-table .hn_custom_checkbox__checkbox {
	border-color: #e1e1e1;
}

/*
 *
 *
 *
*/
.hn_table-column.from span,
.hn_table-column.to span,
.hn_section_services__blockField.second span {
    color: #2D3741;
    right: 3px;
    content: '*';
    font-size: 16px;
    position: absolute;
    opacity: 0;
    top: -2px;
    z-index: 1;
}
.hn_table-column.from.active span,
.hn_table-column.to.active span,
.hn_section_services__blockField.second.active span {
    opacity: 1;
}

/*.hn_wrap-checkbox,
.hn_checkbox {
    height: 32px !important;
    width: 32px !important;
}*/
.hn_checkbox {
    height: 32px !important;
    width: 32px !important;
}
.hn_wrap-checkbox {
    margin-right: 5px !important;
}
.hn_checkbox {
    background-color: #fff !important;
    border-radius: 8px !important;
    border-color: #E1E1E1 !important;
    margin: 0 !important;
}
.hn_checkbox:focus,
.hn_checkbox:checked {
    border: 1px solid #EA3362 !important;
    box-shadow: none !important;
}
.hn_checkbox:checked {
    line-height: 0 !important;
    position: relative;
}
.hn_checkbox:checked::before {
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3e%3cpath d='M12.9722 1.251C12.7426 1.12325 12.4901 1.04201 12.2291 1.01193C11.9681 0.981844 11.7037 1.0035 11.4511 1.07567C11.1985 1.14783 10.9626 1.26908 10.7568 1.43249C10.5511 1.5959 10.3796 1.79826 10.2522 2.028L6.53916 8.71L4.41416 6.585C4.22967 6.39398 4.00898 6.24162 3.76497 6.1368C3.52096 6.03198 3.25852 5.97681 2.99296 5.9745C2.72741 5.97219 2.46405 6.0228 2.21825 6.12336C1.97246 6.22392 1.74916 6.37243 1.56137 6.56021C1.37359 6.748 1.22508 6.9713 1.12452 7.21709C1.02396 7.46289 0.973354 7.72625 0.975661 7.9918C0.977969 8.25736 1.03314 8.5198 1.13796 8.76381C1.24278 9.00782 1.39514 9.22851 1.58616 9.413L5.58616 13.413C5.96416 13.792 6.47416 14 7.00016 14L7.27716 13.98C7.58371 13.9371 7.87612 13.8237 8.13138 13.6486C8.38664 13.4735 8.59777 13.2415 8.74816 12.971L13.7482 3.971C13.8758 3.74145 13.957 3.48901 13.9871 3.22808C14.0172 2.96715 13.9956 2.70286 13.9235 2.45028C13.8515 2.1977 13.7304 1.96179 13.5671 1.75602C13.4039 1.55024 13.2017 1.37864 12.9722 1.251Z' fill='%23EA3362'/%3e%3c/svg%3e") !important;
    height: auto !important;
    left: 50% !important;
    line-height: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    transform: translate(-50%, -50%) !important;
    top: 50% !important;
    width: auto !important;
}

.hn_label_above_field {
    color: #2D3741;
	display: table;
    font-size: 14px;
    font-weight: 600 !important;
    line-height: normal;
    margin-bottom: 9px;
}

.required_label {
	color: #EF0A6A;
}

.hn_input {
    background-color: #fff !important;
    border: 1px solid #E1E1E1 !important;
    border-radius: 0 !important;
    display: block !important;
    color: #373131 !important;
    height: 40px !important;
    font-weight: 300 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    position: relative !important;
    transition: border 0.2s ease 0s !important;
    width: 100% !important;
}

.section_separation, .offer-separation{
	display: flex;
	align-items: center;	
	width: 100%;	
	padding: 0;
    margin-bottom: 15px;
    height: 20px;
	color: #EF0A6A;
}

.section_separation_text{
	font-size: 14px;
	white-space: nowrap;
	margin-right: 10px;
}

.section_separation_text_grey{
    font-size: 14px;
	white-space: nowrap;
	margin-right: 10px;
    color: #2D3741;
}

.section_separation_line{
	flex-grow: 1;
	height: 1px;
	background-color: #EF0A6A;
}

.section_separation_line_grey{
    flex-grow: 1;
	height: 1px;
    background-color: #E1E1E1;
}

.hn_select .select__head {
    line-height: 39px;
    height: 40px;
}
.hn_input,
.hn_select .select__head,
.hn_select .select__item {
    font-size: 14px !important;
}
.hn_input,
.hn_select .select__head {
    line-height: 39px !important;
}
.hn_select .select__head,
.hn_select .select__list,
#hn_mb_trip_date,
#hn_mb_compensation {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
}

#hn_mb_trip_date, #hn_mb_compensation {
    padding: 0.36rem 1rem;
}

.hn_select .select__list {
    border-top: none;
}
.hn_select .select__item {
    padding: 9px 12px;
}
.hn_wrap_field.textarea {
    margin-top: 25px;
}
.hn_input.textarea {
    height: 141px !important;
    line-height: 18px !important;
    resize: none;
    padding-bottom: 5px !important;
    padding-top: 5px !important;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}
.hn_input.textarea::-webkit-scrollbar {
    width: 5px;
    background-color: #F8F9FA;
    padding: 5px;
}
.hn_input.textarea::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
}
.hn_input:not(.disabled):focus,
.hn_input:focus,
.hn-input-required{
    border: 1px solid #EA3362 !important;
    box-shadow: none !important;
    outline: none !important;
}

.hn_input.disabled,
.hn_input:disabled,
select.disabled,
select:disabled,
textarea.disabled,
textarea:disabled {
    background: #fff;
    border-color: #E1E1E1;
    box-shadow: none;
    color: #E1E1E1;
}
.hn_input.disabled {
    color: #E1E1E1 !important;
    pointer-events: none;
    user-select: none;
}
.filter__label.checked,
.checkbox-label.checked {
    color: #292424;
}
.if-not-a-valid-field p {
	color: red;
}
.if-a-valid-field p {
	color: green;
}
.no-valid-text {
	display: none;
}
.no-valid-text.show {
	display: block;
}
.if-a-valid-field p,
.if-not-a-valid-field p,
.description-for-field {
    font-size: 13px;
    line-height: 19px;
    margin: 5px 0 18px 1px;
}

/* Custom checkbox */
.hn_custom_checkbox__input {
    clip: rect(0 0 0 0);
    height: 1px;
    position: absolute;
    overflow: hidden;
    width: 1px;
}

.hn_custom_checkbox,
.hn_custom_checkbox__checkbox {
	display: inline-block;
    height: 32px;
    width: 32px;
}
.hn_custom_checkbox__checkbox {
    /*background-color: #fff;*/
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
}
/* Checked */
.hn_custom_checkbox__input:checked + .hn_custom_checkbox__checkbox {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3e%3cpath d='M11.9966 0.252222C11.767 0.124475 11.5145 0.0432355 11.2535 0.0131501C10.9925 -0.0169354 10.7281 0.00472298 10.4755 0.076887C10.2229 0.149051 9.98697 0.270305 9.78125 0.433715C9.57553 0.597124 9.40403 0.799484 9.27658 1.02922L5.56358 7.71122L3.43858 5.58622C3.25408 5.3952 3.03339 5.24284 2.78939 5.13802C2.54538 5.0332 2.28294 4.97803 2.01738 4.97572C1.75182 4.97341 1.48846 5.02402 1.24267 5.12458C0.996876 5.22514 0.773572 5.37365 0.585787 5.56143C0.398001 5.74922 0.249495 5.97252 0.148933 6.21831C0.0483713 6.46411 -0.00223212 6.72747 7.55134e-05 6.99302C0.00238315 7.25858 0.0575557 7.52102 0.162374 7.76503C0.267192 8.00904 0.419556 8.22973 0.610576 8.41422L4.61058 12.4142C4.98858 12.7932 5.49858 13.0012 6.02458 13.0012L6.30158 12.9812C6.60813 12.9383 6.90054 12.8249 7.1558 12.6498C7.41105 12.4747 7.62219 12.2428 7.77258 11.9722L12.7726 2.97222C12.9002 2.74267 12.9814 2.49023 13.0115 2.2293C13.0416 1.96838 13.02 1.70408 12.9479 1.4515C12.8759 1.19892 12.7548 0.963011 12.5915 0.757238C12.4283 0.551465 12.2261 0.37986 11.9966 0.252222Z' fill='%23EA3362'/%3e%3c/svg%3e");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #EA3362;
}

/* Focus */
/*.hn_custom_checkbox__input:focus + .hn_custom_checkbox__checkbox,
.hn_custom_checkbox__input:checked:focus + .hn_custom_checkbox__checkbox {
    box-shadow: 0 0 0 2px #1a7aea, 0 0 0 4px #F3AC04;
}*/
/* Disabled */
.hn_custom_checkbox__input:disabled + .hn_custom_checkbox__checkbox,
.hn_custom_checkbox__input:checked:disabled + .hn_custom_checkbox__checkbox {
    opacity: 0.6;
}

/*
 *
 * Hidden
 *
*/

.hidden { visibility: hidden; }
.do-not-show {display: none;}
/*
 *
 * Sorting filter
 *
*/

.search {
    color: #fff !important;
}

.hn_sort_filter {
    display: flex !important;
	align-items: baseline;
}

.hn_sort_filter_wrap {
	justify-content: start;
    display: flex;
	flex-wrap: nowrap;
    margin-top: 0px;
    margin-left: 0px;
}

/* 
.home .hn_sort_filter_wrap {
    margin-top: -32px;
} */

.page-id-1867 .hn_sort_filter_wrap, .page-id-1875 .hn_sort_filter_wrap{
    /* margin-top: -30px; */
    margin-left: 0px;
}

.page-id-179 .hn_sort_filter_wrap{
    margin-top: 0px;
    margin-left: 0px;
}

.page-id-186 .hn_sort_filter_wrap{
    margin-top: 0px;
    margin-left: 0px;
}

.page-id-2302 .hn_sort_filter_wrap, .page-id-2294 .hn_sort_filter_wrap, .page-id-2260 .hn_sort_filter_wrap{
    /* margin-top: 7px; */
    margin-left: 0px;
}
 
.page-id-1852 .hn_sort_filter_wrap{
    /* margin-top: -30px; */
    margin-left: 0px;
}

.page-id-1852 .hn_sort_filter_wrap{
    /* margin-top: -30px; */
    margin-left: 0px;
}

.page-id-172 .hn_sort_filter_wrap{
    margin-top: 0px;
    margin-left: 0px;
}

.page-id-165 .hn_sort_filter_wrap{
    margin-top: 0px;
    margin-left: 0px;
}

.page-id-6035 .hn_sort_filter_wrap{
    /* margin-top: -30px; */
    margin-left: 0px;
}

.page-id-6407 .hn_sort_filter_wrap{
    /* margin-top: -33px; */
    margin-left: 0px;
}

.sort-buttons-container {
    display: flex;
	flex-wrap: nowrap;
}

.sort-label {
    padding-top: 6px;
    margin-right: 6px;
}

.sort-label:hover {
    cursor: pointer;
}

/* Sort Btn */
.sort-title {	
	display: none;
}

.sort-filter-title {
	font-size: 22px;
	color: white;
	font-weight: 600;
	padding-right: 10px;
    font-family: "Montserrat";
}

.sort-filter-title:hover {
    cursor: pointer;
}

.sort-buttons-group {
    display: grid;
	margin-top: -7px;
    z-index: 5;
    background: #00000066;
    position: absolute;
    margin-top: 36px;
    margin-left: -40px;
}

.hn_sort_button {
    border: none;
    padding: 4px;
    color: white;
	margin-top: -5px;
    margin-bottom: -5px;
	transition: none;
}

.hn_sort_button:focus{
	outline: none;
	background-color: transparent;
}

.hn_sort_button:hover {
	color: #EA3362;
	background-color: transparent;
}

.hn_sort_button:active {
	background-color: transparent;
}

.hn_sort_button.selected {
    color: #EA3362;
    text-shadow: 1px 1px 3px black;
}

.hn_sort_option {
	background: white; 
	color: black;
	font-weight: 600;
	font-size: 14px;
}

/*
 *
 * Listings and Travel Offers
 *
*/

.hn_section_about_me__head .hn_section_post_full{
    width: 100%;
}

.hn_section_about_me__head .hn_section_post_75_width{
    width: 75%;
    margin-top: 25px;
}

.s_profile_listings_post_form .hn_wrap_field.textarea{
    width: 100%;
    padding: 0px 8px;
}

.hn_section_gallery_video__main_columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.s_profile_travel_offers_your_listing{
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    align-items: center;
}

.s_profile_travel_offers_your_listing.hn_a-single__wrap-our_models{
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.s_profile_business #s_profile_listings_content .s_profile_travel_offers_your_listings_list .s_profile_travel_offers_your_listing{
    flex-direction: row;
}


.listing-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.s_profile_travel_offers_your_listing.hn_a-single__wrap-our_models .listing-container{
    width: fit-content;
}

.s_profile_listing_miniature{
    width: 90px;
    height: 90px;
    background-color: #D9D9D9;
    margin-right: 10px;
    min-width: 90px;
    overflow: hidden;
}

.s_profile_listing_btn_container, .s_profile_listing_main_info{
    display:flex;
    align-items: center;
}

.s_profile_listing_btns_second_column{
    margin-left: 10px;
}

.s_profile_listing_text_container{
    font-size: 14px;
    margin: 15px 0px;
}

.s_profile_listing_text_container .s_profile_listing_text_container_title{
    font-weight: 600;
}

.s_profile_listing_text_container .s_profile_listing_text_container_title p{
    margin-bottom: 5px;
}

.s_profile_listing_text_container .s_profile_listing_text_container_description{
    height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    margin: 0px;
}

.s_profile_listing_text_container .s_profile_listing_text_container_description p{
    margin: 0px;
}

.s_profile_listing_text_container .s_profile_listing_text_container_category{
    color: #717171;
}

.s_profile_listing_text_container .s_profile_listing_text_container_category p{
    margin: 0px;
}

.s_profile_listing_text_container_category span{
    margin-right: 10px;
}

.s_profile_favourites_list_box #miniature-listing{
    height: 90px;
    width: 90px;
    object-fit: cover;
}

.s_profile_listing_text_btns button{
    margin: 0px;
    gap: 13px;
    height: 37px;
    width: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.s_profile__contentButton_white.s_profile_listing_promo{
    margin: 0px;
    gap: 13px;
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 13px;
    overflow: hidden;
    width: 100%;
}

.s_profile_listing_promo_options .s_profile__contentButton_white{
    box-shadow: none;
    border: none;
}

.s_profile_listing_promo option{
    cursor: pointer;
}

.s_profile__contentButton_white.s_profile_listing_promo:hover option{
    color: #000000;
    /* background-color: rgb(255, 255, 255); */
    text-decoration: none;
}

.activeBtns{
    background-color: #c36;
    color: #fff;
}

.activeBtns svg path{
    stroke: #fff;
}

.s_profile_listing_promo option {
    padding: 10px;
    font-size: 16px;
}


.s_profile_listing_text_btns button:first-of-type{
    margin-bottom: 13px;
    width: 100%;
}

.s_profile__contentButton.s_profile_listing_edit{
    margin-bottom: 0px !important;
}

.s_profile_travel_offers_your_aplicatio_no_posts{
    color: #717171;
    font-size: 14px;
}

.s_profile_listings_content_btn, .s_profile_hot_offert_content_btn{
    background-color: #EF0A6A;
    border-radius: 16px;
    border: #EF0A6A;
    color: white;
    font-size: 16px;
    width: 145px;
    height: 52px;
    margin-top: 76px;
}

.s_profile_listings_content_btn_check{
    background-color: #EF0A6A;
    border-radius: 5px;
    border: #EF0A6A;
    color: white;
    font-size: 16px;
    width: 145px;
    height: 44px;
    /* margin-top: 76px; */
    padding: 10px;
}

.s_profile_listing_promo option:disabled{
    background-color: #cc336670 !important;
    cursor: no-drop;
}


/*  */
.s_profile_listing_promo_container {
    position: relative;
    display: inline-block;
}

.s_profile_listing_promo_toggle {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    width: auto;
    text-align: center;
    display: block;
}

.s_profile_listing_promo_options {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 200px;
}

.s_profile_listing_promo_options button{
    margin: 0 auto;
}

.s_profile_listing_promo option[selected] {
    color: #ee0b6a !important;
    background-color: #ef0a6a0f;
}

.s_profile_promo_option {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
}

.s_profile_promo_option input {
    cursor: pointer;
}

/* Zaznaczone opcje */
.s_profile_promo_option input:checked + label {
    background: #0056b3;
    color: white;
}

/* Wyłączone opcje */
.s_profile_promo_option input:disabled + label {
    background: #f5c6cb;
    color: #a94442;
    cursor: not-allowed;
}

/* .s_profile_listings_content_btn_check:hover, .s_profile_hot_offert_content_btn:hover{
    color: white;
    background-color: #c36;
    border: #c36;
} */

/*
 *
 * Favourites
 *
*/

.s_profile_favourites_list{
    display: flex;
    flex-wrap: wrap;
    gap: 2.6%;
}

.s_profile_favourites_list_box{
    /* width: 12%; */
    margin: 10px 0px;
}

.s_profile_favourites_list_box_avatar{
    background-color: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 50%;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    width: 100px;
    height: 100px;
}

.hn_a-single__wrap-our_models .s_profile_favourites_list_box_avatar{
    border: 2px solid #EF0A6A;
}

#favourites-avatar{
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(1.03);
    object-fit: cover;
    width: 100%;
}

.s_profile_favourites_list_box_nickname{
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    height: 50px;
    
}

.hn_a-single__wrap-our_models .s_profile_favourites_list_box_nickname{
    height: auto;
}

.s_profile_favourites_list_box_btn_remove #s_profile_listing_remove{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    font-size: 12px;
    padding: 5px;
}

/*
 *
 * Subscription
 *
*/
.hn_section_subscriptions_toggle_switch {
    position: relative;
    width: 200px;
    height: 50px;
    background-color: #2D3741;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.35);
    margin-bottom: 15px;
    float: right;
}

.hn_section_subscriptions_toggle_switch input[type="radio"] {
    display: none;
}

.hn_section_subscriptions_toggle_switch label {
    z-index: 2;
    flex: 1;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.hn_section_subscriptions_toggle_switch_toggle-slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 50px;
    background-color: #AA3F97;
    border-radius: 25px;
    transition: all 0.3s ease;
}

input[type="radio"]#hn_section_subscriptions_toggle_switch_monthly:checked ~ .hn_section_subscriptions_toggle_switch_toggle-slider {
    left: 0px;
}

input[type="radio"]#hn_section_subscriptions_toggle_switch_yearly:checked ~ .hn_section_subscriptions_toggle_switch_toggle-slider {
    left: 100px;
}

#miniature-subscription{
    width: 40px;
    height: 40px;
}

#miniature-subscription_extra{
    width: 40px;
    height: 49px;
}

.hn_section_subscriptions_selected_plan{
    float: inline-start;
    display: flex;
    align-items: center;
}

.hn_section_subscriptions_selected_count{
    float: inline-end;
    display: flex;
    align-items: center; 
}

.hn_section_subscriptions_selected_count ul{
    padding: 0px;
    margin-left: 25px;
    list-style: none;
}

.hn_section_subscriptions_selected_plan_text, .hn_section_subscriptions_selected_count p{
    font-size: 32px;
    font-weight: bold;
    color: #2D3741;
}

.hn_section_subscriptions_selected_count p{
    margin-top: 10px;
}

.hn_section_subscriptions_selected_plan_text_pink{
    font-family: 'Kalam';    
    font-size: 45px;
    color: #EF0A6A;
    margin-left: 25px;
}

.hn_section_subscriptions_selected_count ul{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    gap: 0px 10px;
}

.hn_section_subscriptions_selected_count_listing{
    display: flex;
    margin-top: 20px;
}

.hn_section_subscriptions_selected_count_listing p{
    font-weight: 700;
}

.hn_section_subscriptions_selected_count_listing ul{
    display: flex;
    list-style: none;
    padding: 0px;
    margin-left: 20px;
    gap: 20px;
}

  
.comments-area a:hover, .page-content a:hover{
    color: white;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance:textfield;
}

#hn_filder_content > ul > li.hn__filterTab.filter__label > a:hover{
    color: #EA3362 !important;
}

@media (max-width: 1440.98px) {

    .hn_section_about_me__item {
        padding-left: 8px;
        padding-right: 8px;
        width: 33.3333%;
    }
}
@media (max-width: 1280.98px) {

    .hn_section_about_me__column:nth-child(1) {
        padding-right: 20px;
        width: 40%;
    }
    .hn_section_about_me__column:nth-child(2) {
        width: 60%;
    }
    .hn_section_about_me__item {
        width: 50%;
    }

    .hn_section_services__wrap-services {
        max-width: 100%;
        padding: 0;
    }
    .hn_section_services__head .hn_section_services__blockField.one h3 {
        padding-left: 0;
    }
    .hn_section_services__head .hn_section_services__blockField.second h3 {
        padding-left: 44%;
    }
    .hn_section_services__blockName {
        padding-left: 0;
        width: 205px;
    }
    .hn_section_services__blockField.one {
        padding-right: 15px;
    }
    .hn_section_services__blockField.second {
        padding-left: 15px;
    }
    .hn_section_services__blockField {
        width: calc(50% - 160px);
    }



}
@media (max-width: 1024.98px) {

    .s_profile__content.show-content {
        padding: 10px;
    }

    .hn_section_about_me__head .hn_section_post_75_width{
        margin-top: 0px;
    }

    .selected-categories {
        min-height: 40px;
    }

    .hn_section_about_me__head {
        order: 1;
        margin-left: 0;
        margin-right: 0;
    }
    .hn_section_about_me__columns {
        margin-right: 0;
    }
    .hn_section_about_me__column:nth-child(1),
    .hn_section_about_me__column:nth-child(2) {
        width: 100%;
    }
    .hn_section_about_me__column:nth-child(1) {
        display: flex;
        flex-direction: column;
        /* flex-direction: column-reverse; */
        padding-right: 0;
    }
    .hn_section_about_me__head .hn_section_about_me__item,
    .hn_section_about_me__item {
        width: 50%;
    }
    .hn_section_about_me__head .hn_section_about_me__item:nth-child(odd),
    .hn_section_about_me__item:nth-child(odd) {
        padding-right: 10px;
    }
    .hn_section_about_me__head .hn_section_about_me__item:nth-child(even),
    .hn_section_about_me__item:nth-child(even) {
        padding-left: 10px;
    }
    .hn_section_about_me__item {
        margin-bottom: 10px;
        padding: 0;
    }
    .hn_section_about_me__item:last-child {
        padding-left: 0;
    }
    .hn_section_about_me__item .language-selector,
    .hn_section_about_me__item .hn_input {
        margin-bottom: 20px;
    }
    .hn_section_about_me__item .description-for-field {
        margin: -15px 0 16px 1px;
    }
    .hn_wrap_field.textarea {
        margin-bottom: 30px;
    }

    .hn_section_rates__item .hn_select {
        max-width: 200px;
    }
    .hn_section_rates__item:nth-child(1),
    .hn_section_rates__item:nth-child(2) {
        padding-right: 0;
        width: 100%;
    }
    .hn_section_rates__item:nth-child(2) {
        margin-top: 5px;
    }
    .hn_section_rates__wrapBlockPrices {
        max-width: 100%;
    }
    .hn_section_rates__headBlockPrices,
    .hn_section_rates__blockPrices {
        padding-left: 15px;
        padding-right: 10px;
    }
    .hn_section_rates__wrapField {
        padding: 12px 11px;
        width: calc(50% - 46px);
    }

    .hn_wrap-table {
        width: 100%;
    }

    .hn_table-column.all-day {
        justify-content: flex-end !important;
        flex: 0 0 70px;
    }
    .hn_table-row:not(.hn_table-row.head) .hn_table-column.all-day {
        flex: 0 0 35px;
    }
    .hn_table-column.from,
    .hn_table-column.to {
        margin-right: 20px;
    }
    .hn_wrap-table .hn_custom_checkbox {
        bottom: 1px;
        margin-right: 0 !important;
    }

    .hn_section_about_me__columns{
        margin: 10px;
    }
    
    .hn_section_about_me__item{
        padding: 5px;
    }

    .sort-label {
        padding-top: 0px;
        margin-right: 6px;
    }    
}
@media (min-width: 801px) {
    .hn_section_services__head .select__input.hn_section_services_currency {
        display: none;
    }
    .hn_table-column.from input::placeholder,
    .hn_table-column.to input::placeholder {
        opacity: 0;
    }

}
@media (max-width: 800.98px) {
    .hn_section_gallery_video__item:first-child {
        margin-right: 0;
    }
    .hn_section_gallery_video__item:first-child .hn_section_gallery_video__column {
        padding-bottom: calc(30% + 3px);
        width: calc(33.3333% - 25px);
    }
    .hn_section_gallery_video__item {
        width: 100%;
    }
    .hn_section_gallery_video__item:nth-child(2) {
        margin-top: 60px;
    }

    .hn_section_gallery_video__item:nth-child(2) .hn_section_gallery_video__column {
        background-color: #fff;
        border: 1px solid #e1e1e1;
        padding-bottom: calc(50% - 3px);
    }

    .upload-video-btn {
        display: block;
    }
    .hn_section_gallery_video__item:nth-child(2) .hn_section_gallery_video__upload {
        display: none;
    }

    .hn_section_services__row .hn_section_services__blockCurrency,
    .hn_section_services__head .hn_section_services__blockCurrency h3,
    .hn_section_services__head .hn_section_services__blockField.one,
    .hn_section_services__head .hn_section_services__blockField.second {
        display: none;
    }
    .hn_section_services__head .select__input.hn_section_services_currency {
        padding: 0 0 9px;
        text-align: right;
    }
    .hn_section_services__blockField {
        width: calc(50% - 105px);
    }

    .hn_table-row.head .hn_table-column.from,
    .hn_table-row.head .hn_table-column.to {
        display: none;
    }


    .page-id-153 .hn_sort_filter_wrap {
        margin-top: 8px;
    }
}
@media (min-width: 576px) {
    .hn_table-column-name-all-day {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .s_profile__tab_fields {
        padding-top: 16px;
    }
    .hn_section_gallery_video__item:nth-child(2) {
        margin-top: 13px;
    }
    .hn_section_gallery_video__item-title {
        font-size: 12px;
        margin: 0 0 10px;
    }
    .hn_section_gallery_video__blockDesc p,
    .hn_section_gallery_video__blockDesc li {
        font-size: 13px;
    }
    .s_profile__contentWrapButtons {
        margin-top: 50px;
    }

    .hn_section_rates__blockName label {
        font-size: 12px;
    }
    .hn_section_rates__headBlockPrices,
    .hn_section_rates__blockPrices {
        padding-right: 0;
    }
    .hn_section_rates__blockPrices {
        padding-left: 10px;
    }
    .hn_section_rates__headBlockPrices {
        padding-left: 0;
    }
    .hn_section_rates__headBlockPrices h3 {
        font-weight: 600;
    }
    .hn_section_rates__blockName {
        width: 78px;
    }
    .hn_section_rates__wrapField {
        width: calc(50% - 39px);
    }
    .hn_section_rates__wrapField .hn_input {
        font-size: 12px !important;
        font-weight: 400 !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    #s_profile_fields_services {
        padding-top: 8px;
    }
    .hn_section_services__head {
        margin-bottom: 0;
    }
    .hn_section_services__head .hn_section_services__blockName {
        width: 50%;
    }    
    .hn_section_services__head h3 {
        margin-bottom: 3px;
    }
    .hn_section_services__head .select__input.hn_section_services_currency {
        padding: 0 0 2px;
    }
    .hn_section_services__row {
        padding-bottom: 12px;
    }
    .hn_section_services__row .hn_section_services__blockName {
        margin-bottom: 10px;
        width: 100%;
    }
    .hn_section_services__blockField {
        width: 50%;
    }
    .hn_section_services__blockName .hn_custom_checkbox {
        margin-right: 10px !important;
    }
    .hn_section_services__blockName .filter__label,
    .hn_section_services__blockName label {
        font-size: 12px;
    }

    .hn_table-row.head {
        display: none;
    }
    .hn_table-row:not(:last-child) {
        margin-bottom: 18px;
    }
    .hn_table-row:not(.hn_table-row.head) {
        flex-wrap: wrap;
    }
    .hn_table-row:not(.hn_table-row.head) .hn_table-column.name {
        display: flex;
        justify-content: space-between;
        margin-bottom: 11px;
        flex: 0 0 100%;
    }
    .hn_table-row:not(.hn_table-row.head) .hn_table-column.name p:nth-child(1) {
        font-weight: 600;
    }
    .hn_table-row:not(.hn_table-row.head) .hn_table-column.name p:nth-child(2) {
        font-weight: 500;
    }
    .hn_table-column.from,
    .hn_table-column.to {
        margin-right: 15px;
        width: calc(50% - 30px);
    }
    .hn_table-column .hn_input {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .hn_table-row:not(.hn_table-row.head) .hn_table-column.all-day {
        flex: 0 0 28px;
    }

    .s_profile_listing_btn_container{
        display: block;
    }

    .s_profile_listing_text_btns.s_profile_listing_btns_second_column{
        margin-left: 0px;
        margin-top: 13px;
    }

    .listing-container {
        border-bottom: 1px solid #ef0a6a38;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    
}
@media (max-width: 460.98px) {
    .hn_section_gallery_video__item:first-child .hn_section_gallery_video__column {
        padding-bottom: calc(44% + 4px);
        width: calc(50% - 22px);
    }

    .s_profile_listing_miniature {
        min-width: 60px;
    }

    .s_profile__contentButton_white, .s_profile__contentButton {
        font-size: 14px;
    }

    .s_profile_listing_text_btns button {
        width: 95px;
    }

    #s_profile_listings_content_form > section > div > div:nth-child(1) > div.hn_section_about_me__head > div.hn_section_about_me__item.hn_section_post_full{
        padding: 0px;
        padding-right: 5px;
        margin-top: 10px;
    }

    #s_profile_listings_content_form > section > div > div:nth-child(1) > div.hn_section_about_me__head > div.hn_section_about_me__item.hn_section_post_75_width{
        padding: 0px;
        padding-left: 5px;
        margin-top: 10px;
    }

    #um_field_401_user_password, #um_field_405_user_password, #um_field_2530_user_password{
        padding: 0px !important;
    }
}