header {
    background: #F8845A;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}

.gray-text {
    color: #C9D2F6;
    font-family: Cabin;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.white-text {
    color: #ffffff;
    text-align: left;
    font-family: "Cabin-Medium", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.place-text {
    margin-left: 5px;
    text-decoration: underline;
}

.top-menu ul {
    list-style: none;
    justify-content: flex-end;
    margin-bottom: 0;
}

.top-menu .menu li {
    margin-right: 15px;
}

.top-menu .menu li:last-child {
    margin-right: 0px;
}

.big-link-item {
    border-radius: 27px;
    border: 2px solid #F8845A;
    color: #F8845A;
    text-align: center;
    font-family: Cabin;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 201px;
    justify-content: space-evenly;
    align-items: center;
    height: 38px;
}

.big-link-item:hover {
    color: #F8845A;
}

.white-text:hover {
    color: #fff;
}

.big-links .big-link-item:first-child {
    margin-right: 23px;
}

#logo-and-links {
    align-items: center;
}

.big-black-text {
    color: #121625;
    font-family: Cabin;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

#logo-and-nav {
    margin-bottom: 30px;
}

.filter-btn {
    border-radius: 31px;
    background: linear-gradient(96deg, #E727E2 12.64%, #F8845A 88.85%);
    box-shadow: 0px 4px 7px 0px rgba(72, 107, 239, 0.38);
    width: 122px;
    height: 37px;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 40px;
}

.bold-white-text {
    color: #FFF;
    font-family: Cabin;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.black-text {
    color: #121625;
    font-family: Cabin;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.filter-btn-wrap {
    align-items: center;
    margin-bottom: 40px;
}

.listing-h1 {
    margin-bottom: 20px;
}

.user-card {
    overflow: hidden;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
    border-radius: 5px;
    border: 1px solid #F4F4F4;
    background: rgba(242, 242, 242, 0.20);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.user-image {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.user-image img {
    width: 100%;
    display: block;
}

.vip-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4285f4;
    color: white;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;

}

.user-name {
    color: #F8845A;
    font-family: Cabin;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.user-city {
    color: #98989C;
    font-family: Cabin;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-left: 15px;
}

.message-btn {
    width: 122px;
    height: 37px;
    flex-shrink: 0;
    border-radius: 31px;
    background: linear-gradient(96deg, #E727E2 12.64%, #F8845A 88.85%);
    box-shadow: 0px 4px 7px 0px rgba(72, 107, 239, 0.38);
    color: #FFF;
    font-family: Cabin;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    margin-bottom: 18px;
}

body {
    margin: 0;
    overflow-x: hidden;
}

#sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    color: white;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
}

#sidebar.active {
    left: 0;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

#overlay.active {
    display: block;
}

.card {
    border: none;
}

.card-header {
    padding: 0;
    border: none;
}

.card .btn-link {
    width: 100%;
    text-align: left;
    color: #000;
    font-family: Cabin;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    color: #F8845A;
}

.card-body a {
    color: #F8845A;
    font-family: Cabin;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn-link svg {
    margin-left: auto;
}

.btn:focus, .btn.focus {
    box-shadow: none !important;
}

.modal-header {
    border-bottom: none;
}

.red-btn {
    border-radius: 31px;
    background: linear-gradient(96deg, #E727E2 12.64%, #F8845A 88.85%);
    box-shadow: 0px 4px 4px 0px rgba(181, 181, 181, 0.29);
    color: #FFF;
    font-family: Cabin;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.big-links .red-btn {
    margin-left: auto;
}

.no-photo-text {
    color: #98989C;
    font-family: Cabin;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.no-photo {
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 250px;
}

.no-photo img {
    margin-bottom: 20px;
    max-width: 70px;
}

.city-list {
    list-style: none;
    padding: 0;
    padding-top: 0px;
    padding-left: 0px;
    column-count: 2;
    padding-top: 10px;
    padding-left: 2px;
}

.city-list a {
    color: #F8845A;
    font-family: Cabin;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.registration-shade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.shade-content {
    display: flex;
    width: 80%;
    max-width: 1000px;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.shade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shade-image {
    flex: 1;
}

.shade-form {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: sans-serif;
}

.shade-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.4;
    color: #333;
}

.shade-form input {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
}

.shade-form button {
    background: linear-gradient(90deg, #f05a28, #ec008c);
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 31px;
    padding: 10px 20px;
}

.shade-form button:hover {
    opacity: 0.9;
}

.shade-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    background: none !important;
    border: none;
    color: #000 !important;
    cursor: pointer;
    font-weight: bold;
    z-index: 1100;
}

.auth-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    font-family: sans-serif;
    text-align: center;
}

.auth-form h2 {
    color: #e97c52;
    margin-bottom: 20px;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    border-radius: 0;
}

#form-signup {
    display: none;
}

.remember {
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: flex-start;
}

.remember input {
    margin-right: 10px;
    width: auto;
    margin-bottom: 0;
    margin-top: -2px;
}

.btn-login {
    background: linear-gradient(90deg, #ec008c, #f05a28);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    opacity: 0.9;
}

.auth-links {
    margin-top: 16px;
}

.auth-links a {
    display: inline-block;
    margin: 8px 0;
    color: #e97c52;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 30px;
}

.social-login p {
    color: #e97c52;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 32px;
    height: 32px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.auth-clients {
    display: block;
    margin: 0 0 1em;
    list-style: none;
    overflow: auto;
}

.auth-clients li {
    float: left;
    display: block;
    margin: 0 1em 0 0;
    text-align: center;
}

.auth-clients li {
    float: none !important;
}

.auth-icon {
    display: block;
    width: 32px;
    height: 32px;
    background: url('../files/img/authchoice.png') no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
    border-radius: 3px;
    margin: 0 auto;
}

.auth-icon {
    border-radius: 50% !important;
}

.auth-icon.vkontakte {
    background-position: 0 -136px;
}
#loginform-rememberme{
    width: auto;
    margin: 0;
    margin-right: 10px;
}
.loginform-rememberme-label{
    margin: 0;
    margin-bottom: -3px;
}
.field-loginform-rememberme{
    display:  flex;
}
.g-recaptcha{
    margin-bottom: 15px;
}
.field-signupform-pol{
    margin-bottom: 20px;
}
.auth-form a{
    color: #F8845A;
    font-family: Cabin;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.sidebar {
    background: rgba(242, 242, 242, 0.20);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}
.field-addpostform-image{
    display: none;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eee;
}

.menu .item {
    display: flex;
    padding: 9px 5px;
    text-decoration: none;
    color: #222;
    border-radius: 10px;
    transition: background 0.2s;
    font-family: Cabin;
}

.menu .item:hover {
    background: #f2f4f8;
}
.item svg{
    margin-right: 10px;
    max-width: 20px;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
}
.item img{
    max-width: 20px;
    max-height: 20px;
    margin-right: 10px;
}
.item button{
    padding: 0;
}
.my-data-row p{
    margin-bottom: 10px;
}
.profile_info_row{
    margin-bottom: 10px;
}
.user-prop-wrap:last-child{
    margin-bottom: 0;
}
.city-wrap .city svg{
    position: relative;
    top: -2px;
}
.author{
    color: #F8845A;
}
.cta-box__text svg{
    position: relative;
    top: -3px;
    margin-left: 7px;
}
.send-message-photo svg{
    top: 2px;
}