@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Black.woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-BlackItalic.woff');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ExtraBold.woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ExtraBoldItalic.woff');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Bold.woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-BoldItalic.woff');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-SemiBold.woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-SemiBoldItalic.woff');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Medium.woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-MediumItalic.woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Regular.woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-RegularItalic.woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Light.woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-LightItalic.woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-UltraLight.woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-UltraLightItalic.woff');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ThinItalic.woff');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Thin.woff');
    font-weight: 100;
    font-style: normal;
}
@import url("https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css");

:root {
    --main-color: #FFD748;
    --main-light-color: #FFE99B;
    --link-hover-color: #FFE072;
    --link-active-color: #FBCF36;
}

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}

html, body {
    margin: 0px;
    padding: 0px;
    /* height: 100%; */
    /* width: 100%; */
    font-family: 'Gilroy', sans-serif;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    /* position: absolute; */
    /* top: 0;
    left: 0;
    width: 100%;
    min-height: 100%; */
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-style: normal;
    font-weight: normal;
    background: #F5F5F5;
}


.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    min-height: 100%;
}

main {
    flex: 1 1 auto;
    min-height: calc(100vh - 200px) !important;
}

.btn {
    display: inline-block;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 35px;
    background-color: var(--main-light-color);
    border: none;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.btn:hover {
    background-color: var(--link-hover-color);
}

.btn:active {
    background-color: var(--link-active-color);
}

/* -------- Header --------*/

.header {
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;
    background-color: var(--main-color);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.15%);
    z-index: 5;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.header__nav-item {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
}

.header__nav-item a {
    position: relative;
    color: #000;
    cursor: pointer;
}

.header__nav-item a:hover::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.header__nav-item:not(:last-child) {
    margin-right: 17px;
}

.header__nav-item.active a::before {
    position: absolute;
    right: -8px;
    top: 0px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #F23D3D;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.header__buttons {
    display: flex;
}

.header__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    margin: 0 12px;
    background-color: var(--main-light-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: none;
    cursor: pointer;
}

.header__notification::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url('../images/bell.svg') center no-repeat;
    background-size: contain;
}

.header__notification.notice::after {
    position: absolute;
    right: 19px;
    top: 16px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #F23D3D;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.header__profile::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url('../images/profile.svg') center no-repeat;
    background-size: contain;
}

/* -------- End Header --------*/

/* -------- With-whom --------*/

.with-whom {
    position: relative;
    display: flex;
    flex-direction: column;
    /*padding-top: 100px;*/
    align-items: center;
    background: url('../images/with-whom-bg.jpg') center center no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 713px;
    z-index: 9999;
}
.with-whom::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10%;
    display: inline-block;
    background: #F5F5F5;
    width: 150%;
    height: 182px;
    transform: translate(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
}
@media (max-width: 1200px) {
    .with-whom::before {
        bottom: -15%;
    }
}

.with-whom__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.with-whom__container::before {
    content: "";
    position: absolute;
    left: -135px;
    top: 50px;
    display: inline-block;
    background: url("../images/cat.png") center no-repeat;
    width: 185px;
    height: 252px;
}

.go_walk {
    color: #0a0e14;
    text-decoration: none;
    width: 136px;
    height: 43px;
    position: relative;
    background: #FFD748;
    border-radius: 30px;
    border: 0;
    box-shadow: none;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    padding: 10px 20px;
    /*margin: 10px;*/
}

.go_walk:hover {
    background-color: var(--link-hover-color);
}

.maps_block {
    height: auto;
    width: 70%;
    margin: 0 auto 30px;
    background-color: #FFD748;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.dropbtns {
    margin-top: 40px;
    background: none;
    font-size: 36px;
    width: 50%;
    color: grey;
    border: none;
    cursor: pointer;
}

.edit_walk {
    display: flex;
    flex-direction: column;
}

.dropbtns:hover, .dropbtns:focus {
    color: #2980B9;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.modal-wrapper_ed {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(62, 74, 74, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.modal-wrapper_ed.open {
    opacity: 1;
    visibility: visible;
}

.modal_ed {
    width: 600px;
    height: 760px;
    display: block;
    margin: 50% 0 0 -300px;
    position: relative;
    top: 50%;
    left: 50%;
    background: #fff;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.modal-wrapper_ed.open .modal_ed {
    margin-top: -350px;
    opacity: 1;
}

.modal_ed .head {
    float: right;
    border-radius: 20px;
    width: 90%;
    height: 50px;
    padding: 12px 30px;
    overflow: hidden;
    background: #fff;
}

.but_ed_bl {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.but_ed_bl .edit_walk {
    display: block;
    flex-direction: row;
}

.but_ed_bl .btn {
    width: 40%;
    margin: 5px;
}

.edit_form {
    display: flex;
    flex-direction: column;
}

.edit_form input {
    width: 100%;
}

.btn-close {
    font-size: 28px;
    display: block;
    float: right;
    color: #fff;
}

.content {
    padding: 10%;
}

.good-job {
    text-align: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #e2525c;
}

.good-job .fa-thumbs-o-up {
    font-size: 60px;
}

.good-job h1 {
    font-size: 45px;
}

.dropdown-content {
    bottom: 60%;
    flex-direction: column;
    display: none;
    border-radius: 20px;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 200px;
}

.adr_w {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #7B7B7B;
}

.time_w {
    width: 215px;
    height: 30px;
    color: #000000;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 19px;
    line-height: 151%;
    background: #FFE99B;
    border-radius: 57px;
    text-align: center;
    margin-top: 30px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.butt_walk {
    background-color: #fff !important;
    text-decoration: none;
    margin: auto;
}

.btn_walk {
    background-color: #FFE99B !important;
    margin: auto;
}

.area_walk {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 200;
    font-size: 12px;
    line-height: 14px;

    padding: 10px;
    border-radius: 20px;
    border: 1px solid #B3B3B3;
    width: 90% !important;
}

.form_walk {
    padding-bottom: 40px;
}

.my_walk, .search_walk {
    width: 70%;
    margin: auto;

}

.my_walk h2, .search_walk h2, .title_walk {
    text-align: center;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 42px;
}

.my_walk .walk_block, .search_walk .walk_block {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin: 40px auto;
}

.walk_block {
    display: flex;
    flex-wrap: wrap;
}

.news_img {
    display: flex;
    justify-content: space-evenly;
}

.news_img .img_block-news {
    text-align: center;
}

.news_img .img_block-news img {
    border-radius: 20px;
    border: 1px solid grey;
    width: 243px;
    height: 246px;

}

.img_news {
    display: flex;
    width: 90%;
    height: auto !important;
    justify-content: space-around;
}

.img_news a {
    padding: 10px;
    width: 30%;
}

.img_news img {
    border-radius: 20px;
    border: 1px solid grey;
    width: 243px;
    height: 246px;

}

.walk_block .profile_photo {
    width: 20%;
    margin: 10px;
}

.walk_block h2 {
    width: 20%;
    margin: 20px;
}

#myImgs {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.joms-button--share, .joms-popup__optoption, .joms-hcard,
.joms-js--description {
    display: none !important;
}

.my_img {
    text-align: center;
}

.my_img a {
    width: 30%;
}

.my_img img {
    margin: 20px;
    height: 270px;
    border: 2px solid grey;
}

#myImgs:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modals {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-contents {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#captions {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-contents, #captions {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */
.closes {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.closes:hover,
.closes:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.walk_block .status_walk {
    width: 70%;
    height: 70px;
    border: 1px solid #B3B3B3;
    border-radius: 20px;
    right: 0;
    margin: 10px 8% 20px 19%;
    padding: 10px;
}

.tab_walk {
    display: flex;
    justify-content: space-around;
    overflow: hidden;


    width: 70%;
    margin: 30px auto 0;
}

.tab_walk button {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 1000;
    font-size: 40px;
    line-height: 51px;
    /* identical to box height */

    text-align: center;

    color: #FFFFFF;

    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    width: 75%;
    border-radius: 20px 20px 0 0;

    background-color: #f7de83;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab_walk button:hover {
    background-color: #FFD748;
}

#hidden-window {
    display: none;
}

/* Create an active/current tablink class */
.tab_walk button.active {
    background-color: #FFD748;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.title_block_friends {
    margin-top: 40px;
    text-align: center;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 35px;
    line-height: 42px;
    /* identical to box height */


    color: #000000;
}

.block-friends-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.my_flock {
    width: 80%;
    display: flex;
    justify-content: space-around;
    margin: auto;
    flex-wrap: wrap;
}

.pet-breed
.pet-search-form {
    position: relative;
}

#searchBox::before {
    content: "";
    display: inline-block;
    background: url(../images/target.png) center no-repeat;
    width: 18px;
    height: 22px;
    margin-right: 15px;
}

.maps_ind {
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
    height: 0;
    animation-name: example;
    /*opacity:0; !*Элемент полностью прозрачный (невидимый)*!*/
    transition: 1s; /*Скорость перехода состояния элемента*/
    /* Указываем название анимации, её время и количество повторов*/
    animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
    animation-delay: 1s; /* Задержка перед началом */
}

@keyframes example {
    0% {
        height: 0;
    }
    100% {
        height: 330px;
    }
}

#dataViewer {
    position: absolute;
    border-radius: 0 0 10px 10px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 400px;
    background: #FFFFFF;
    border: 1px solid #B3B3B3;
    overflow-y: auto;
    top: 60px;
    z-index: 1;
}

#dataViewer li {
    font-family: 'Gilroy', sans-serif;
    line-height: 30px;
    font-weight: 300;
    cursor: pointer;
    font-size: 1.4em;
    border-bottom: 1px solid #B3B3B3;
    position: relative;
    padding: 12px
}

#dataViewer li::before {
    content: "";
    display: inline-block;
    background: url(../images/search-icon.png) center no-repeat;
    background-size: cover;
    width: 18px;
    height: 22px;
    margin-right: 10px;
    position: relative;
    top: 3px;
}

.my-friend-block {
    min-height: 516px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.friend-profile-block {
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.profile-info__photo-wrap:first-child {
    z-index: 1;
    margin-right: -22px;
}

.profile-info__photo-wrap:last-child {
    z-index: 2;
    margin-left: -22px;
}

.friends_blocks {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.friends_blocks h2 {
    width: 100%;
    text-align: center;
    margin: 5% auto;
    font-size: 30px;
}

.joms-stream__reactions-text, .joms-reactions__list {
    display: none !important;
}

.my_friends {
    width: 350px;
    height: 516px;
    background-color: #fff;
    border-radius: 20px;
    margin: 10px auto;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.friends_av {
    text-align: center;
}

.friends_av img {
    margin: 20px auto;
}

.friends_av h3 {
    font-family: Gilroy;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.butt_friends {
    align-self: stretch;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.butt_friends:hover {

}

.butt_friends a, .butt_friends button {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    /* or 30px */

    text-align: center;

    color: #000000;
    padding: 15px !important;
    border-radius: 30px;
    background: #FFD748;
    width: 70% !important;
}

.friend-name {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    /* identical to box height */

    text-align: center;

    color: #000000;
}

.ymaps-2-1-79-inner-panes, .ymaps-2-1-79-map {
    border-radius: 20px;
    height: 530px;
}

.maps_block .button_block, .maps_block .sel_block {
    padding-top: 20px;
    margin: 20px auto 20px;
    display: flex;
    width: 100%;
    gap: 30px;
    justify-content: space-around;
}

/* Modal Base CSS */
.scotch-overlay {
    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;

    opacity: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;

    background: rgba(0, 0, 0, .6);
}

.scotch-modal {
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 50%;
    opacity: 0;

    width: 94%;
    padding: 24px 20px;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    border-radius: 2px;
    background: #fff;
}

.scotch-modal.scotch-open.scotch-anchored {
    top: 20px;

    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.scotch-modal.scotch-open {
    opacity: 1;
}

.date-modal {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
}

.time-modal {
    display: flex;
    flex-direction: column;
}

.time-picker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.time-picker-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.photo-comments-btn {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    color: #3A3A3A;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.photos-comments-wrapper {
    display: flex;
    margin: auto;
    width: 100%;
    height: 100%;
    align-items: center;
    position: relative;
}

.photos-comments-main-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#photo-close {
    position: static;
    align-self: end;
    width: 17%;
    color: #FFFFFF !important;
    font-size: 3em;
}

.content-container {
    background: white;
    display: flex;
    width: 85%;
    height: 100%;
    align-self: center;
    border-radius: 20px;
}

.post-comment .joms-stream__meta span {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    color: #7B7B7B;

    line-height: 151%;
    /* or 18px */
}

.post-comment .joms-comment {
    background: #FFFFFF !important;
}

.post-comment .joms-stream__meta a {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;

    color: #000000;
}

.time-picker-arrow {
    background: url("../images/timer-picker-btn.png");
    background-size: cover;
    cursor: pointer;
    border: none;
    outline: none;
    width: 12px;
    height: 6px;
}

.arrow-down {
    transform: rotate(180deg);
}

.time-picker-item input::-webkit-outer-spin-button,
.time-picker-item input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.timer-item {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 43px;
    text-align: center;

    color: #000000;
    width: 100%;
    min-height: 100px;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #B3B3B3;
    border-radius: 20px;
}

.timer-dots {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 43px;

    color: #000000;

}

.modal-content {
    display: flex;
}

.modal-main-content {
    display: flex;
    flex-direction: column;
    width: 97%;
    align-items: center;
}

.date-header-month {
    display: flex;
    gap: 10px;
}

.date-header-month span {
    cursor: pointer;
}

.calendar {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 45px;
}

.week-days {
    display: flex;
    align-self: stretch;
    gap: 18px;
}

.calendar h5 {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;

    color: #000000;
}

.hide {
    display: none !important;
}

.show {
    display: flex;
}

.date-header-dates {
    display: flex;
    align-self: stretch;
    justify-content: center;
    gap: 155px;
}

.date-header-dates h5 {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;

    color: #000000;
}

.scotch-overlay.scotch-open {
    opacity: 1;

}

.modal-date-close {
    background: transparent;
    width: 18px;
    height: 18px;
    outline: none;
    cursor: pointer;
    border: none;
    margin-bottom: 1em;
}

/* Close Button */
.scotch-close {
    font-family: Helvetica, Arial, sans-serif;
    /*font-size: 24px;*/
    font-weight: 700;
    line-height: 12px;

    position: absolute;
    top: 5px;
    right: 5px;

    padding: 5px 7px 7px;

    cursor: pointer;

    color: #fff;
    border: 0;
    outline: none;
    background: #e74c3c;
}

/*.scotch-close:hover*/
/*{*/
/*    background: #c0392b;*/
/*}*/

/* Default Animation */

.scotch-overlay.fade-and-drop {
    display: block;

    opacity: 0;
}

.scotch-modal.fade-and-drop {
    top: -300%;

    opacity: 1;

    display: block;
}

.scotch-modal.fade-and-drop.scotch-open {
    top: 30em;
    border-radius: 20px;
    -webkit-transition: 500ms top 500ms ease;
    -moz-transition: 500ms top 500ms ease;
    -ms-transition: 500ms top 500ms ease;
    -o-transition: 500ms top 500ms ease;
    transition: 500ms top 500ms ease;
}

.scotch-modal.fade-and-drop.scotch-open.scotch-anchored {

    -webkit-transition: 500ms top 500ms ease;
    -moz-transition: 500ms top 500ms ease;
    -ms-transition: 500ms top 500ms ease;
    -o-transition: 500ms top 500ms ease;
    transition: 500ms top 500ms ease;
}

.scotch-overlay.fade-and-drop.scotch-open {
    top: 0;

    -webkit-transition: 500ms opacity ease;
    -moz-transition: 500ms opacity ease;
    -ms-transition: 500ms opacity ease;
    -o-transition: 500ms opacity ease;
    transition: 500ms opacity ease;

    opacity: 1;
}

.scotch-modal.fade-and-drop {
    -webkit-transition: 500ms top ease;
    -moz-transition: 500ms top ease;
    -ms-transition: 500ms top ease;
    -o-transition: 500ms top ease;
    transition: 500ms top ease;
}

.scotch-overlay.fade-and-drop {
    -webkit-transition: 500ms opacity 500ms ease;
    -moz-transition: 500ms opacity 500ms ease;
    -ms-transition: 500ms opacity 500ms ease;
    -o-transition: 500ms opacity 500ms ease;
    transition: 500ms opacity 500ms ease;
}


#content {
    display: none;
}

.trigger-button {
    font-size: 17px;

    /*position: relative;*/
    top: 100px;

    display: block;

    margin: auto;
    padding: 10px 30px;

    cursor: pointer;

    color: #fff;
    border: 0;
    border-radius: 3px;
    outline: none;
    background: #2ecc71;
    box-shadow: 0 5px 1px #27ae60;
}

.trigger-button:hover {
    background: #27ae60;
    box-shadow: 0 5px 1px #145b32;
}

.trigger-button:active {
    border-top: 5px solid white;
    box-shadow: none;
}

.with-whom__container::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: 210px;
    display: inline-block;
    background: url("../images/two-dogs.png") center no-repeat;
    width: 197px;
    height: 327px;
}

.big-white-title {
    margin: 65px 0 65px 0;
    font-size: 75px;
    line-height: 1em;
    font-weight: 1000;
    color: #fff;
    text-shadow: 3px 4px 7px rgba(0, 0, 0, 0.25);
    text-align: center;
}


.inputs-container input,
.inputs-container select {
    width: 25%;
}

#starttime {
    display: flex;
    width: 25%;
}

#starttime select {
    width: 100%;
}

.time_walk::before {
    position: absolute;
    right: 22px !important;
}

#button-date::before {
    content: "";
    display: inline-block;
    background: url(../images/date.png) center no-repeat;
    width: 24px;
    height: 24px;
}

#form_walk button {
    position: relative;
    width: 30%;
    padding: 18px 30px;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    border-radius: 50px;
    border: none;
    background-color: #fff;
    -webkit-border-radius: 50px;
}

.with-whom__form__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
}

.with-whom__form__button {
    position: relative;
    text-align: left;
}

.with-whom__form__button, .with-whom__form__input {
    padding: 18px 30px;
    font-family: 'Gilroy', sans-serif;
    font-size: 19px;
    line-height: 24px;
    font-weight: 300;
    border-radius: 50px;
    border: none;
    background-color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.with-whom__form__input {
    flex: 0 0 31%;
}

.with-whom__form__input::placeholder {
    color: #000;
}

.with-whom__form__button {
    display: flex;
    cursor: pointer;
    text-align-last: left;
    text-decoration: none;
    color: #000;
    width: 50%;
}

.button-target::before {
    content: "";
    display: inline-block;
    background: url("../images/target.png") center no-repeat;
    width: 18px;
    height: 22px;
    margin-right: 15px;
}

.button-location::before {
    content: "";
    display: inline-block;
    background: url("../images/location.png") center no-repeat;
    width: 18px;
    height: 22px;
    margin-right: 15px;
}

.container__title {
    font-size: 35px;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
}

/* -------- End With-whom --------*/

/* -------- Already-walking --------*/

.already-walking {
    position: relative;
    z-index: 1;
    margin-top: -80px;
    padding-top: 70px;
    /*padding-bottom: 70px;*/
    overflow: hidden;
}

/* .already-walking::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0px;
    display: inline-block;
    background: #F5F5F5;
    width: 150%;
    height: 182px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
} */


.with-whom-footer {
    position: relative;
}

.already-walking__container {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}

.already-walking__title {
    margin-bottom: 53px;
}

.already-walking__form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.already-walking__form__button, .already-walking__form__input {
    padding: 18px 30px;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 300;
    border-radius: 50px;
    border: 1px solid #B3B3B3;
    background-color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.pet-type {
    flex: 0 0 353px;
}

.pet-breed {
    flex: 0 0 65%;
}

.already-walking__results {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 29px;
}

.already-walking__results__item {
    flex: 0 0 353px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 30px 38px 40px;
    overflow: hidden;
}

.already-walking__results__item-photos {
    margin-bottom: 36px;
    text-align: center;
}

.already-walking__results__item-photo {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 127px;
    height: 127px;
    object-fit: cover;
    overflow: hidden;
}

.already-walking__results__item-photo:first-child {
    z-index: 1;
    margin-right: -16px;
}

.already-walking__results__item-photo:last-child {
    z-index: 2;
    margin-left: -16px;
}

.already-walking__results__item-name {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
}

.already-walking__results__item-address {
    margin-bottom: 47px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    text-align: center;
    color: #454545;
}

.already-walking__results__item-button {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.join-btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.see-on-map-btn {
    border: 1px solid var(--main-color);
    margin-top: 15px;
}

.already-walking__show-more {
    order: 99;
    width: 204px;
    margin: 40px auto 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
    text-align: center;
    background-color: var(--main-light-color);
}

.already-walking__select {
    border-radius: 50px;
    border: 1px solid #B3B3B3;
    /*flex: 353px !important*/
}

.already-walking__select .select-items {
    top: 110%;
    border: 1px solid #B3B3B3;
}

/* -------- End Already-walking ---------*/

/* -------- Friends-search ---------*/

.friends-search {
    position: relative;
    background: url("/templates/petsbook/images/with-whom-bg.jpg") top center;
    background-size: contain;
    padding-top: 97px;
    padding-bottom: 70px;
    /*min-height: 1020px;*/
}

.friends-search::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 89px;
    background: url("/templates/petsbook/images/clip-bg.png") top center no-repeat;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-size: contain;
}

.friends-search__container {
    display: flex;
    flex-direction: column;
}

.friends-search__title {
    margin-bottom: 50px;
}

.friends-search__tabs {
    display: flex;
    flex-direction: column;
}

.friends-search__tab {
    display: none;
    flex-direction: column;
}

.friends-search__tab.active {
    display: flex;
}

.friends-search__tabs-nav {
    display: flex;
    justify-content: start;
    list-style: none;
    margin-bottom: 20px;
}


.friends-search__tabs-nav-item {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    cursor: pointer;
}

.friends-search__tabs-nav-item:not(:last-child) {
    margin-right: 48px;
}

.friends-search__tabs-nav-item.active::after, .friends-search__tabs-nav-item:hover::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.friends-search__tab__list {
    display: flex;
    flex-direction: column;
}

.friends-search__tab__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 31px;
    padding: 40px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.friends-search__tab__item__top {
    display: flex;
    justify-content: space-between;
}

.friends-search__tab__item-photos {
    display: flex;
    margin-bottom: 20px;
    width: 222px;
}

.friends-search__tab__item-photo {
    border-radius: 50%;
    width: 127px;
    height: 127px;
    object-fit: cover;
    overflow: hidden;
}

.friends-search__tab__item-photo:first-child {
    z-index: 1;
    margin-right: -16px;
}

.friends-search__tab__item-photo:last-child {
    z-index: 2;
    margin-left: -16px;
}

.friends-search__tab__item-name-date {
    width: calc(100% - 247px);
}

.friends-search__tab__item__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: -24px;
}

.friends-search__tab__item-button {
    width: 222px;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.friends-search__tab__item__date-block {
    display: flex;
    justify-content: space-between;
}

.friends-search__tab__item__date {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #454545;
}

.friends-search__tab__item__time {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding: 5px 37px;
    background-color: var(--main-light-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.friends-search__tab__item-name {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}

.friends-search__tab__item-address {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    color: #454545;
}

.friends-search__tab__item-message {
    width: calc(100% - 247px);
    padding: 20px 30px;
    border: 1px solid #B3B3B3;
    border-radius: 20px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    min-height: 70px;
}

.friends-search__show-more {
    min-width: 204px;
    margin: 8px auto 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
    text-align: center;
}

.friends-search__show-more {
    order: 99;
    width: 204px;
    margin: 40px auto 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
    text-align: center;
    background-color: var(--main-light-color);
}

/* -------- End Friends-search ---------*/

/* -------- Footer ---------*/


.footer {
    /*position: absolute;*/
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    background-color: var(--main-color);
    /*z-index: 1;*/

}

.footer footer {
    display: flex;
    flex-wrap: wrap;
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    max-width: 166px;
    max-height: 60px;
    padding: 5px;
}

.footer__date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
}

.footer__link {
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    display: block;
    text-align: end;
    padding-bottom: 10px;
}

.footer__link:hover::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000;
}

/* -------- End Footer ---------*/

/* -------- Select ---------*/


.select {
    position: relative;
    flex: 0 0 32%;
}

.select select {
    display: none;
}

.select-selected {
    padding: 18px 30px;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    border-radius: 50px;
    border: none;
    background-color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 25px;
    width: 14px;
    height: 8px;
    background: url('../images/drop-down.svg') center no-repeat;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.select-selected.select-arrow-active:after {
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.select-items div, .select-selected {
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 105%;
    left: 0;
    right: 0;
    max-height: 200px;
    z-index: 99;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.06);
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.select-items::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.select-items div {
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 300;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: var(--main-light-color);
}

/* -------- End Select ---------*/

/* -------- Modal -------- */

.modal {
    display: block;
    width: 550px;
    max-width: 100%;
    height: 600px;
    max-height: 100%;
    /*padding: 30px;*/
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.closed {
    display: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    /*background: url('../images/with-whom-bg.jpg') center center no-repeat;*/
    background: rgba(41, 41, 41, 0.6);
}

.modal-guts {
    /*position: absolute;*/
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.modal-title {
    width: 100%;
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 36px;
    font-weight: 400;
    text-align: center;
}

.modal-buttons {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.registration-btn, .enter-btn {
    margin: 0 15px;
    padding: 10px 32px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    text-decoration: none;
    background-color: var(--main-color);
    color: #000;
}

.enter-btn {
    margin: 0 20px;
}

.registration-btn {
    border: 1px solid var(--main-color);
    background-color: #fff;
}

.close-button {
    position: absolute;
    z-index: 600;
    top: 26px;
    right: 26px;
    border: 0;
    width: 18px;
    height: 18px;
    background: url('../images/close-bg.svg') center no-repeat;
    background-size: contain;
    cursor: pointer;
}

.open-button {
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: lightgreen;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 21px;
}

/* -------- End Modal -------- */

/* -------- Navbar -------- */

.navbar__wrap {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.hamb {
    display: none;
}

.popup {
    display: none;
}

.menu > li > a {
    text-decoration: none;
}

.navbar__wrap .menu {
    display: flex;
}

.navbar__wrap .menu > li {
    display: flex;
    align-items: stretch;
}

/* -------- End Navbar -------- */

/* -------- Profile -------- */
.profile-info__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px;
}
.profile-info__button {
    cursor: pointer;
    position: relative;
    background-color: transparent;
    padding: 8px 37px;
    border: 1px solid #FFD748;
    border-radius: 40px;
    display: inline-block;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 151%;
    color: #000000;
}
@media (min-width: 993px) {
    .profile-info__button--hidden {
        display: none;
    }
}


.profile-info__button-popup {
    opacity: 0;
    pointer-events: none;
    width: 354px;
    position: absolute;
    background-color: #fff;
    top: 80%;
    right: 0;
    box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: 0.5s ease;
}

.profile-info__button--active .profile-info__button-popup {
    opacity: 1;
    top: calc(100% + 25px);
    transition: 0.5s ease;
}

.profile-info__button-block {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    padding: 24px 40px;
    font-size: 13px;
    line-height: 150%;
}
.profile-info__button-block::before {
    content: "";
    position: absolute;
    right: 30px;
    bottom: unset;
    transform: rotate(-180deg);
    top: -14px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 32px solid #fff;
    z-index: 2;
}
@media (max-width: 992px) {
    .profile-info__button--hidden {
        margin-top: 20px;
        width: 100%;
    }
    .profile-info__block .profile-info__button {
        display: none;
    }
    .profile-info__button-popup {
        width: 196px;
    }
    .profile-info__button-block {
        padding: 12px 16px;
    }
}
.profile-info {
    padding: 20px 0 20px;
}

.profile-info__container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.profile-info__photos-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 353px;
    margin-right: 20px;
    padding: 24px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.profile-info__photos {
    position: relative;
    display: flex;
    margin-bottom: 30px;
}

.profile-info__photo-wrap {
    position: relative;
}

.pet-photo-wrap {
    margin-left: -45px;
    z-index: 2;
}

.profile-info__photo {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 175px;
    height: 175px;
    object-fit: cover;
    overflow: hidden;
}

.add-photo-buttons {
    left: 0;
    position: absolute;
    top: 180px;
    width: 100%;
    z-index: 2;
}

.add_photo {
    position: absolute;
    bottom: 0;
    left: 120px;
    display: inline-block;
    width: 32px;
    height: 32px;
    border: none;
    background-color: var(--main-light-color);
    background-size: contain;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
}

.add_photo::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url('../images/plus.svg') center no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.event-section {
    background: url('../images/event-bg.jpg') center no-repeat;
    background-size: cover;
    min-height: calc(100vh - 200px) !important;
}

.add_photo:hover {
    background-color: var(--link-hover-color);
}

.add_photo:active {
    background-color: var(--link-active-color);
}

.add-photo__pet {
    left: 260px;
}

.edit-btn {
    position: relative;
    width: 100%;
    text-align: center;
    color: #000;
}

.edit-btn::after {
    content: '';
    position: relative;
    right: -12px;
    bottom: 0;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('../images/edit.svg') center no-repeat;
    background-size: contain;
}

.profile-info__data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 747px;
}

.profile-info__name-socials {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 30px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.shadow {
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
}

.main-modal {
    position: relative;
    width: 565px;
    /*height:300px;*/
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.main-modal #social_form {
    display: flex;
    flex-direction: column;
    align-items:center;
}
.main-modal #social_form .soc_fields {
    width: 100%;
}
.main-modal #social_form .soc_fields .form__save {
    width: 100%;
}
.main-modal #social_form .soc_fields .form__save input {
    width: 100%;
}
.main-modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
}
.main-modal__close-block {
    width: 100%;
    height: 100%;
    position: relative;
}
.main-modal__close-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    .main-modal__close {
        top: 15px;
        right: 15px;
    }
    .main-modal {
        width: 320px;
    }
}

.hideModal {
    z-index: -1;
    opacity: 0;
    animation: hide .25s;

    transform: scale(0);
}

@keyframes hide {
    from {
        z-index: 2;
        transform: scale(1);
        opacity: 1;
    }
    to {
        z-index: -1;
        transform: scale(0);
        opacity: 0;
    }
}

.showModal {
    opacity: 1;
    z-index: 3;
    animation: show .2s;

    transform: scale(1);
}

@keyframes show {
    from {

        transform: scale(0);
        opacity: 0;
        z-index: -1;
    }
    to {

        transform: scale(1);
        opacity: 1;
        z-index: 2;
    }
}

.active_soc {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 15px;
}

.soc_fields input {
    display: none;
}

.link_social a img {
    filter: grayscale(1);
}

.link_social a .active {
    filter: grayscale(0);
}

.soc_fields .active {
    display: block;
}

.main-modal h3 {
    text-align: center;
    margin-bottom: 20px;
}

.active_soc .soc_triger {
    width: 41px;
    height: 41px;
    cursor: pointer;
}

.active_soc .soc_triger img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    filter: grayscale(1);
}

.active_soc span .active {
    width: 100%;
    filter: grayscale(0);
}

.profile-info__name {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
}

.profile-info__socials-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    width: 85%;
}

.profile-info__socials {
    display: flex;
    list-style: none;
}

.profile-info__socials li:not(:last-child) {
    margin-right: 15px;
}

.no-socials {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #7B7B7B;
}

.profile-info__social {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
}

.instagram {
    background: url('../images/inst.png') center no-repeat;
    background-size: contain;
}

.facebook {
    background: url('../images/fb.png') center no-repeat;
    background-size: contain;
}

.vk {
    background: url('../images/vk.png') center no-repeat;
    background-size: contain;
}

.telegram {
    background: url('../images/telegram.png') center no-repeat;
    background-size: contain;
}

.profile-info__socials-edit {
    border: none;
    width: 18px;
    height: 17px;
    background: url('../images/edit-grey.svg') center no-repeat;
    background-size: contain;
    cursor: pointer;
}

.profile-info__personal-data {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 30px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-bottom: 10px;
}

.personal-data__row {
    display: flex;
}

.personal-data__row:not(:last-child) {
    margin-bottom: 16px;
}

.personal-data__row__title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #454545;
    min-width: 180px;
    padding-right: 10px;
}
.profile-info__wrapper--custom .personal-data__row__title{
    min-width: unset !important;
}

.personal-data__row__value {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #000;
}

.personal-data__row__value.male::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('../images/male.svg') center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.personal-data__row__value.female::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 12px;
    height: 19px;
    background: url('../images/female.svg') center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.profile-info__statistic {
    display: flex;
    width: 100%;
    padding: 26px 30px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.profile-info__statistic__col {
    display: flex;
    flex-direction: column;
}

.profile-info__statistic__col:not(:last-child) {
    margin-right: 60px;
}

.profile-info__statistic__value {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
}

.profile-info__statistic__title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.profile-info__statistic__title a {
    color: #000;
}

.profile-info__statistic__title a:hover {
    color: var(--link-hover-color);
}

.profile-info__statistic__title a:active {
    color: var(--link-active-color);
}

.photo-video {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.photo-video__title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #454545;
}

.photo__add-button, .video__add-button {
    width: 100%;
    height: 70px;
    margin-bottom: 16px;
    padding: 15px 30px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
    border: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #454545;
    font-family: 'Gilroy', serif;
    cursor: pointer;
}

.photo__add-button::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 22px;
    height: 18px;
    margin-bottom: -4px;
    margin-right: 10px;
    background-size: contain;
    background: url('../images/plus-pet.svg') center no-repeat;
}

.video__add-button::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 22px;
    height: 18px;
    margin-bottom: -4px;
    margin-right: 26px;
    background-size: contain;
    background: url('../images/video.svg') center no-repeat;
}

.photo-video__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, 24%);
    justify-content: space-between;
    list-style: none;
}

.gallery-3-photo {
    grid-template-columns: repeat(auto-fill, 32.5%);
}

.gallery-2-photo {
    grid-template-columns: repeat(auto-fill, 49%);
}

.photo-video__gallery__item {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.photo-video__gallery__item a {
    /*display: flex;*/
}

.photo-video__gallery__item img {
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.show-more-photo {
    position: relative;
    display: block;
}

.show-more-photo::before {
    content: 'Еще +2';
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: fit-content;
    font-size: 36px;
    line-height: 48px;
    font-weight: 400;
    color: #fff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 2;
}

.show-more-photo img {
    filter: brightness(60%);
    -webkit-filter: brightness(60%);
}

.achievements-container {
    display: flex;
    flex-direction: column;
}

.achievements__title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #454545;
}

.achievements__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 12%);
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    list-style: none;
}

.achievements__item {
    position: relative;
}

.achievements__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#tooltip {
    z-index: 9999;
    position: absolute;
    display: none;
    top: 0px;
    left: 0px;
    background-color: #000;
    padding: 8px 15px;
    color: white;
    opacity: 0.80;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* -------- End Profile -------- */

/* -------- News -------- */

.news {
    padding: 40px 0 80px;
}

.news-container {
    display: flex;
    flex-direction: column;
}

.news-list {
    list-style: none;
}

.news-list__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.news-list__item:not(:last-child) {
    margin-bottom: 30px;
}

.news-list__item__photos-name {
    display: flex;
    justify-content: space-between;
}

.news-list__item-photos {
    width: 226px;
    margin-right: 40px;
    margin-bottom: 24px;
}

.news-list__item-photo {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 127px;
    height: 127px;
    object-fit: cover;
    overflow: hidden;
}

.news-list__item-photo:first-child {
    z-index: 1;
    margin-right: -17px;
}

.news-list__item-photo:last-child {
    z-index: 2;
    margin-left: -17px;
}

.news-list__item-info {
    width: calc(100% - 261px);
}

.news-list__item__date {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #454545;
}

.news-list__item__name {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: black;
}

.news-list__item__message {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

.news-list__item__message strong {
    font-weight: 500;
}

.news-list__item__button {
    padding: 8px 15px;
    background: #F0F0F0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    font-family: 'Gilroy', serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: #828282;
    border: none;
    cursor: pointer;
}

.news-list__item__button:first-child {
    margin-right: 15px;
}

.like.active {
    background: #FFF3F4;
}

.like.active::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 21px;
    height: 18px;
    margin-right: 10px;
    margin-bottom: -4px;
    background: url('../images/like-red.svg') center no-repeat;
    background-size: contain;
}

.like::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 21px;
    height: 18px;
    margin-right: 10px;
    margin-bottom: -4px;
    background: url('../images/like.svg') center no-repeat;
    background-size: contain;
}

.comment::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 21px;
    height: 18px;
    margin-right: 10px;
    margin-bottom: -4px;
    background: url('../images/comment.svg') center no-repeat;
    background-size: contain;
}

.news .photo-video__gallery {
    margin-bottom: 10px;
}

.news-list__comments {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    list-style: none;
}

.news__comment {
    padding: 25px 0;
    border-top: 1px solid #b3b3b3;
}

.news__comment__photos-name {
    display: flex;
}

.news__comment__photos {
    min-width: 116px;
    margin-right: 35px;
}

.news__comment-photo {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 66px;
    height: 66px;
    object-fit: cover;
    overflow: hidden;
}

.news__comment-photo:first-child {
    z-index: 1;
    margin-right: -10px;
    position: relative;
}

.news__comment-photo:last-child {
    z-index: 2;
    margin-left: -10px;
    position: relative;
}

.news__comment__info {
    width: calc(100% - 156px);
}

.news__comment__name {
    margin-bottom: 4px;
    font-size: 20px !important;
    line-height: 30px;
    font-weight: 500;
    color: #000;
}

.news__comment__message {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.news__comment__message strong {
    font-weight: 500;
}

.news__comment__reply-date {
    display: flex;
}

.news__comment__reply {
    margin-right: 31px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #454545;
    text-decoration: none;
}

.news__comment__date {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #454545;
}

.add-comment {
    border-top: none;
    padding: 5px 0 0;
}

.news__add-comment {
    width: calc(100% - 156px);
    position: relative;
}

.with-whom {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 54px;
    /* identical to box height */
    color: #000000;
}

.searching-friend-block {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.friend_descr {
    padding: 20px 30px;
    border: 1px solid #B3B3B3;
    border-radius: 20px;
}

.friend-btn {
    max-width: 220px !important;
}

.timer {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: right;


    color: #000000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 37px;
    gap: 10px;

    background: #FFE99B;
    border-radius: 57px;
}

.location-wrapper {
    display: flex;
    gap: 50px;
}

.location-wrapper h1 {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
    color: #000000;

}

.active {
    /*text-decoration-line: underline;*/
}

.news__add-comment__input {
    width: 100%;
    padding: 21px 30px;
    border: 1px solid #B3B3B3;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    color: #454545;
    font-family: 'Gilroy', serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
}

.searching-friends-container {
    margin-top: 60px;
    width: 70%;
    display: flex;
    flex-direction: column;
}

.news__add-comment__submit {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 41px;
    height: 41px;
    background: url('../images/submit-icon.svg') center no-repeat;
    background-size: auto;
    border: none;
    cursor: pointer;
}

/* -------- End News -------- */

/* -------- Data filling -------- */

#data-filling {
    background: url('../images/bg.png') top left repeat;
    overflow: hidden;
}

.data-filling {
    padding: 102px 0;
}

.data-filling__title {
    margin-bottom: 50px;
    text-align: center;
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 565px;
    margin: 0 auto;
    padding: 50px 94px;
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    /*-moz-border-radius: 20px;*/
    /*-ms-border-radius: 20px;*/
    /*-o-border-radius: 20px;*/
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);*/
}

.data-filling__form::before {
    content: "";
    position: absolute;
    left: -270px;
    top: -160px;
    display: inline-block;
    background: url("../images/cat-data-filling.png") center no-repeat;
    background-size: contain;
    width: 263px;
    height: 110px;
}

.data-filling__form::after {
    content: "";
    position: absolute;
    right: -260px;
    bottom: 0;
    display: inline-block;
    background: url("../images/dog-data-filling.png") center no-repeat;
    background-size: contain;
    width: 224px;
    height: 216px;
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(65, 65, 59, 0.75);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal-wrappers {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(65, 65, 59, 0.75);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.modal-wrappers.open {
    opacity: 1;
    visibility: visible;
}

.picker__holder {
    border-radius: 20px !important;
}

.modal_ev {
    width: 25%;
    height: 200px;
    display: block;
    margin: 50% 0 0 -300px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 20px;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.modal-wrapper.open .modal_ev {
    margin: -200px;
    opacity: 1;
}

.modal-wrappers.open .modal_ev {
    margin: -200px;
    opacity: 1;
}

.head_m {
    align-self: flex-end;
    width: 90%;
    height: 55px;
    padding: 1.5em 5%;
    overflow: hidden;
    /*background:#01bce5;*/
}

.btn-closes {
    width: 22px;
    height: 22px;
    display: block;
    float: right;
}

.btn-closes::before, .btn-closes::after {
    content: '';
    width: 22px;
    height: 6px;
    display: block;
    background: #000;
}

.btn-closes::before {
    margin-top: 12px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-closes::after {
    margin-top: -6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.contents {
    padding: 5%;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
}

.crt, .not_frm, .crts {
    background-color: #eed257 !important;
    margin: auto;
    border: 2px solid #eed257;
    border-radius: 50px;
    padding: 15px;
    font-size: 20px;
    font-weight: 400;
    height: 100%;
}

.crt:hover, .crts:hover, .not_frm:hover {
    background-color: #ffffff !important;
}

.form__input {
    width: 100%;
    /*margin-bottom: 20px;*/
    padding: 19px 23px;
    border: 1px solid #B3B3B3;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-family: 'Gilroy', serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #454545;
}

.border-button {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    border: 1px solid var(--main-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.form__input-password {
    margin-bottom: 0;

}

.popup_not {
    display: none;

}

.notice {

    border-radius: 50%;
    background: #cca92c;
    cursor: pointer;
    box-shadow: 0 0 0 rgb(198, 26, 26);
    animation: pulse 2s infinite;
}

.notice:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

.open_not {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    background: #efefef;
    position: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0 15px 0;
}

.password {
    position: relative;
    margin-bottom: 20px;
}

.password-control {
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #000;
    background: url('../images/eye-close.svg') center center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.popup-title {
    height: 100% !important;
    font-size: 1.5em;
    padding: 10px 25px !important;
}

.popup-content p {
    margin-top: 10px;
    font-size: 1.2em;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.popup-btns a,
.popup-btns button {
    padding: 15px 0;
}

.popup-btns button {
    background: var(--main-color);
}

.popup-btns button:hover {
    background: var(--link-hover-color);
}

.popup-btns button:active {
    background: var(--link-active-color);
}

.password-control.view {
    background: url('../images/eye-open.svg') center center no-repeat;
}

.my-friends-container {
    align-self: center;
    width: 100%;
    gap: 31px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.form__submit {
    width: 100%;
    /*margin-top: 20px;*/
    background-color: var(--main-color);
}

#form_walk select {
    width: 30%;
    padding: 18px 25px;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    border-radius: 50px;
    border: none;
    background-color: #fff;
    -webkit-border-radius: 50px;
}

.data-filling__form-row {
    display: flex;
    margin: 12px 0;
    padding-left: 25px;
}

.form-row__title {
    width: 122px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    /*position: absolute;*/
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    width: 95px;
    padding-left: 32px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #B3B3B3;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked + label:before {
    border: 1px solid var(--main-color);
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--main-color);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* -------- End Data filling -------- */

/* -------- Enter -------- */

#enter {
    background: url('../images/bg.png') top left repeat;
    overflow: hidden;
}

.enter {
    padding: 102px 0;
}

.enter__title {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.enter__form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 565px;
    margin: 0 auto;
    padding: 50px 94px;
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);*/
}

.enter__form::before {
    content: "";
    position: absolute;
    left: -241px;
    top: -165px;
    display: inline-block;
    background: url("../images/cat-enter.png") center no-repeat;
    background-size: contain;
    width: 268px;
    height: 167px;
}

.enter__form::after {
    content: "";
    position: absolute;
    right: -190px;
    bottom: -58px;
    display: inline-block;
    background: url("../images/dog-enter.png") center no-repeat;
    background-size: contain;
    width: 150px;
    height: 123px;
}


.registration-link {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
}

.forgot-password {
    margin-top: 30px;
    margin-bottom: -10px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #000;
    text-align: center;
}

/* -------- End Enter -------- */

/* -------- Registration -------- */

#registration {
    background: url('../images/bg.png') top left repeat;
    overflow: hidden;
}

.registration {
    /*padding: 102px 0;*/
}

.registration__title {
    margin-bottom: 50px;
    text-align: center;
}

.registration__form::before {
    content: "";
    position: absolute;
    left: -270px;
    top: -172px;
    display: inline-block;
    background: url("../images/cat-data-filling.png") center no-repeat;
    background-size: contain;
    width: 268px;
    height: 167px;
}

.registration__form::after {
    content: "";
    position: absolute;
    right: -260px;
    bottom: 25px;
    display: inline-block;
    background: url("../images/dog-data-filling.png") center no-repeat;
    background-size: contain;
    width: 223px;
    height: 215px;
}

.agreement {
    display: block;
    position: relative;
    padding-left: 70px;
    padding-right: 22px;
    margin-top: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 11px;
    line-height: 16px;
    color: #454545;
    user-select: none;
}

.agreement a {
    color: #454545;
}

.agreement input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #B3B3B3;
    border-radius: 3px;
}

.agreement:hover input ~ .checkmark {

}

.agreement input:checked ~ .checkmark {

}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.agreement input:checked ~ .checkmark:after {
    display: block;
}

.agreement .checkmark:after {
    left: 8px;
    top: 2px;
    width: 6px;
    height: 13px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.registration-link-row {
    display: flex;
    justify-content: center;
    margin-top: 23px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
}

.registration-link-row p {
    margin-right: 18px;
}

.enter-link {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

.intl-tel-input .country-list {
    top: 50px;
    width: 377px;
    max-height: 270px;
}

.intl-tel-input {
    height: 46px;
}

.intl-tel-input .selected-flag {
    width: 64px;
    padding: 0 0 0 26px;
}

#phone {
    /*padding-left: 72px;*/
}

.intl-tel-input .selected-flag .iti-arrow {
    right: 8px;
}

.intl-tel-input .flag-container {
    width: 70px;
}

.intl-tel-input.allow-dropdown .selected-flag {
    width: 100%;
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: transparent;
}

/* -------- End Registration -------- */

/* -------- Where my pack -------- */

.where-my-pack {
    padding: 40px 0;
}

.where-my-pack__title {
    margin-bottom: 30px;
}

/* -------- End Where my pack -------- */

/* -------- My pack -------- */

.my-pack {
    padding: 30px 0 20px;
}

.my-pack__title {
    margin-bottom: 30px;
}

.my-pack__container {
    display: flex;
    flex-direction: column;
}

.my-pack__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 32%);
    justify-content: space-between;
}


.my-pack__list__item {
    flex: 0 0 353px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 30px 38px 40px;
    overflow: hidden;
    justify-content: inherit;
}

.my-pack__list__item-photos {
    margin-bottom: 36px;
    text-align: center;
}

.my-pack__list__item-photo {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 127px;
    height: 127px;
    object-fit: cover;
    overflow: hidden;
}

.my-pack__list__item-photo:first-child {
    z-index: 1;
    margin-right: -16px;
    margin-left: 0 !important;
}

.my-pack__list__item-photo:last-child {
    z-index: 2;
    margin-left: -16px;
}

.my-pack__list__item-name {
    margin-bottom: 12px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    /* identical to box height */

    text-align: center;

    color: #000000;
}

.my-pack__list__item-address {

    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 151%;
    /* or 30px */

    text-align: center;

    color: #454545;

}

.my-pack__list__item-button {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.grey-border-btn {
    border: 1px solid #C4C4C4;
    margin-top: 15px;
}

.friends-map {
    width: 100%;
    height: 410px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.map-widget-layout-view {
    display: none;
}

.аpplications-in-pack {
    padding: 30px 0 40px;
}

/* -------- End My pack -------- */

/* ---- Modal Date ---- */

#modal-date {
    height: 430px;
    z-index: 1000;
}

#modal-overlay-date {
    z-index: 999;
}

#modal-date #dateElement {
    width: 50%;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    display: none
}

#modal-date .flatpickr-calendar.inline {
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    box-shadow: none;
    margin-bottom: 30px;
}

#modal-date select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#modal-date .btn {
    margin-bottom: 30px;
    width: 300px;
    font-weight: 400;
}

#modal-date .dayContainer {
    font-size: 16px;
}

#modal-date .numInputWrapper {
    position: relative;
    left: 82px;
}

#modal-date .flatpickr-monthDropdown-months {
    position: relative;
    right: 50px;
}

#modal-date .flatpickr-next-month {
    position: relative;
    right: 209px;
}

#modal-date .flatpickr-prev-month {
    top: 40px;
}

#modal-date .flatpickr-months {
    margin-bottom: 30px;
    margin-top: 40px;
}

#modal-date .flatpickr-current-month .flatpickr-monthDropdown-months {
    padding: 0;
}

#modal-date .flatpickr-day {
    height: 30px;
    position: relative;
}

#modal-date .flatpickr-day.today {
    background: none;
    border: 0;
    z-index: 1;
}

#modal-date .flatpickr-day.today:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 30px;
    height: 30px;
    left: 4px;
    top: 3px;
    background: #FFD748;
    border-radius: 50%;
}

#modal-date .flatpickr-day.selected {
    background: none;
    border: 0;
    position: relative;
}

#modal-date .flatpickr-day.selected:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 30px;
    height: 30px;
    left: 4px;
    top: 3px;
    background: #FFD748;
    border-radius: 50%;
}

#modal-date .arrowUp, #modal-date .arrowDown {
    display: none;
}

#modal-date .numInput.cur-year {
    pointer-events: none;
}

#modal-date .numInput.cur-year:focus, #modal-date .numInput.cur-year:hover {
    background: none;
}

/* ---- End Modal Date ---- */


/* ----  Modal Watch ---- */

#modal-watch {
    z-index: 1000;
}

#modal-overlay-watch {
    z-index: 999;
}

#modal-watch .modal-watch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#modal-watch .modal-watch__left, #modal-watch .modal-watch__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#modal-watch input {
    width: 79px;
    height: 100px;
    background: #FFFFFF;
    border: 1px solid #B3B3B3;
    border-radius: 20px;
    font-weight: 400;
    font-size: 36px;
    padding-left: 20px;
}

#modal-watch input::-webkit-input-placeholder,
#modal-watch input::-moz-placeholder {
    color: #B3B3B3;
}

.w-control_left-top, .w-control_left-bottom, .w-control_right-top, .w-control_right-bottom {
    position: relative;
    display: block;
    height: 6px;
    width: 12px;
}

.w-control_left-top, .w-control_right-top {
    margin-bottom: 15px;
}

.w-control_left-top:before, .w-control_right-top:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 6px;
    background: url(../images/controlls/plus.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.w-control_left-bottom, .w-control_right-bottom {
    margin-top: 15px;
}

.w-control_left-bottom:before, .w-control_right-bottom:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 6px;
    background: url(../images/controlls/minus.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#modal-watch {
    height: 355px;
}

#modal-watch .btn {
    margin-top: 40px;
    font-weight: 400;
    width: 300px;
}

/* ---- End Modal Watch ---- */


/* ---- Modal Notification ---- */

#modal-notification {
    position: absolute !important;
    top: 100px;
    max-height: 500px;
    min-height: 100px;
    right: calc(50% - 483px);
    height: 435px;
    left: initial;
    transform: initial;

}

#modal-overlay-notification {
    background: transparent;
}

.modal-rectangle {
    position: absolute;
    float: right;
    display: inline-block;
    right: 27px;
    top: -27px;
    width: 32px;
    height: 28px;
}

.modal-rectangle:before {
    content: '';
    position: absolute;
    left: 13px;
    top: 0px;
    border: 10px solid transparent;
    border-bottom: 19px solid #fff;
}

#modal-notification .modal-guts {
    padding-top: 20px;
}

.notification-list {
    padding: 0 50px;
    list-style-type: none;
    margin-left: 0;
    font-size: 14px;
    overflow: auto;
}

.notification-list li {
    padding: 20px 0;
    border-bottom: 0.5px solid #7B7B7B;
}

.notification-btn {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    gap: 22px;
}

.notification-btn .btn {
    padding: 3px 32px;
    font-size: 12px;
    margin: 0;
}

.btn.registration-btn.none {
    border: 1px solid #B3B3B3;;
}

.content-container .joms-comment__reply {
    background: #FFFFFF;
}

.post-comments-img {
    width: 50%;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
}

.content-container .joms-icon--emoticon,
.content-container .joms-icon--add {
    display: none;
}

.content-comment {
    border-radius: 22px !important;
    display: block !important;
    height: 100% !important;
    width: 50% !important;
    background: white !important;
    position: static !important;
}

.content-container .joms-comment__user {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 151%;
    /* or 24px */

    text-decoration-line: none;
    color: #000000;

}

.content-container .joms-comment__body {
    display: flex;
    flex-direction: column;
}

.content-container .joms-comment__header {
    display: flex;
    gap: 15px;
}

.content-container .joms-js--comment-actions {
    display: none;
}

.mobile-text-message {
    display: none;
}

@media (max-width: 1200px) {
    .with-whom__form {
        width: 100% !important;
    }

    #modal-notification {
        top: 80px;
        right: calc(50% - 462px);
    }

    .content-container {
        flex-direction: column;

    }

    .post-comments-img {
        width: 100%;
        border-radius: 0;
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
    }

    .content-comment {
        width: 100% !important;
    }
}

@media (max-width: 1120px) {
    #modal-notification {
        right: 97px;
    }

    .mobile-text-message {
        display: block;
    }

    .big-screen-text {
        display: none;
    }

    .my_walk {
        width: 100%;
    }

    .dropbtns {
        font-size: 12px;
    }

    .timer {
        font-family: 'Gilroy';
        font-style: normal;
        font-weight: 300;
        font-size: 8px;
        line-height: 151%;
        /* identical to box height, or 12px */

        text-align: right;

        color: #000000;
        padding: 4px 10px;
    }

    .inputs-container input, .inputs-container select {
        width: 100%;
    }

    #starttime {
        flex-direction: column;
        width: 100%;
    }

    .form__submit {
        width: 100%;
    }

    .date_walk::before {
        position: absolute;
        right: 22px !important;
    }

    .time_walk::before {
        position: absolute;
        right: 22px !important;
    }

    .tab_walk button {
        font-family: 'Gilroy';
        font-style: normal;
        font-weight: 1000;
        font-size: 20px;
        line-height: 25px;
        /* identical to box height */


        color: #FFFFFF;

        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .modal-rectangle:before {
        display: none;
    }

    #modal-notification {
        width: 100%;
        height: 100%;
        left: 0;
        border: 0;
        border-radius: 0;
    }

    #modal-notification .modal-guts {
        flex-direction: initial;
    }
}

@media (max-width: 482px) {
    .notification-btn .btn {
        padding: 3px 25px;
    }

    .notification-btn {
        gap: 10px;
    }

    .notification-list {
        padding: 0 20px;
    }
}

/* ---- End Modal Notification ---- */


#modal-profile-exit {
    top: 100px;
    width: 478px;
    right: calc(50% - 560px);
    height: 185px;
    left: initial;
    transform: initial;
    background-color: #fff;
    padding: 0 0 0 20px;
}

#modal-overlay-profile {
    background: transparent;
}

#modal-profile-exit .modal-guts {
    display: block;
}

#modal-profile-exit h3 {
    font-weight: 500;
    font-size: calc(18px + (24 - 18) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(22px + (29 - 22) * ((100vw - 390px) / (1920 - 390)));
    margin-bottom: 25px;
}

#modal-profile-change {
    top: 100px;
    width: 478px;
    right: calc(50% - 560px);
    height: 435px;
    left: initial;
    transform: initial;

}

#modal-overlay-profile-change {
    background: transparent;
}

#modal-profile-change .modal-guts {
    padding: 30px 50px 50px 50px;
    display: block;
}

#modal-profile-change h3 {
    font-weight: 500;
    font-size: calc(18px + (24 - 18) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(22px + (29 - 22) * ((100vw - 390px) / (1920 - 390)));
    margin-bottom: 25px;
}

#modal-profile-change .modal-guts, #modal-profile-exit .modal-guts {
    overflow: hidden;
}

#modal-profile-change .modal-prfile__input img {
    top: 17px;
}

#modal-profile-change .profile-modal__controlls button {
    color: #79A95F;
}

.profile-modal__controlls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.profile-modal__controlls span {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    font-family: 'Gilroy';
    font-style: normal;
}

.profile-modal__controlls button {
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    border: 0;
    background: transparent;
    color: #FFD748;
    font-family: 'Gilroy';
    font-style: normal;
}

.modal-prfile__input {
    width: 100%;
    height: 45px;
    position: relative;
    margin-bottom: 15px;
}

.modal-prfile__input input {
    font-family: 'Gilroy';
    font-style: normal;
    width: 100%;
    height: 45px;
    border: 1px solid #B3B3B3;
    border-radius: 31px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    padding: 0 25px;
}

.modal-prfile__input.open input {
    font-size: 50px;
    letter-spacing: 10px;
}

.profile-modal__row.save .intl-tel-input .flag-dropdown {
    display: none;
}

.profile-modal__row.save .intl-tel-input input {
    padding: 0 25px;
}

.intl-tel-input input {
    font-family: 'Gilroy';
    height: 45px;
    font-style: normal;
    width: 100%;
    height: 45px;
    border: 1px solid #B3B3B3;
    border-radius: 31px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    padding: 0 25px 0 75px;
}

.modal-prfile__input img {
    position: absolute;
    right: 15px;
    cursor: pointer;
    top: 20px;
    transition: .3s all;
}

.intl-tel-input .flag-dropdown .selected-flag {
    margin: 1px;
    padding: 6px 16px 6px 6px;
    margin-left: 20px;
    margin-top: 9px;
    transform: scale(1.8);
}

.intl-tel-input .flag-dropdown .selected-flag .down-arrow {
    background: url(../images/controlls/phone-select.png);
    top: 6px;
    position: relative;
    left: 20px;
    width: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    height: 4px;
    border: 0;
}

.modal-profile__exit {
    width: 136px;
    height: 43px;
    position: relative;
    background: #FFD748;
    border-radius: 30px;
    border: 0;
    box-shadow: none;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    padding-left: 20px;
    cursor: pointer;
}

.modal-profile__exit:before {
    content: '';
    position: absolute;
    left: 29px;
    top: 12px;
    width: 18px;
    height: 18px;
    background: url(../images/controlls/exit-button.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.modal-profile__exit:hover {
    background-color: var(--link-hover-color);
}

#form_walk input,
#form_walk select {
    width: 30%;
}

.city-select {
    display: flex;
    width: 100%;
    border: none;
    justify-content: space-between;
    padding: 0;
}

#city_ind,
#street {
    width: 30%;
}

.modal-profile__exit:active {
    background-color: var(--link-active-color);
}

.sel-block {
    width: 30%;
}

.photoupload-modal {
    height: fit-content !important;
    display: flex;
    flex-direction: column;
}

.photoupload-modal button[data-lang-more] {
    background: var(--main-color);
}

.photoupload-modal button[data-lang-more]:hover {
    background: var(--link-hover-color);
}

.photoupload-modal button[data-lang-more]:active {
    background: var(--link-active-color);
}

.photoupload-modal .joms-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photoupload-modal .joms-gallery__item {
    width: 100%;
}

.photoupload-modal .joms-popup__content:first-child {
    display: none;
}

.photoupload-modal .joms-gallery__body {
    display: none;
}

.photoupload-title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 142%;
    /* identical to box height, or 23px */

    text-align: center;

    color: #000000;

}

.photoupload-modal .modal-img__img-select {
    margin-bottom: 30px;
}

.photoupload-modal div {
    min-height: 0px !important;
}

.photoupload-close {
    color: #000000 !important;
    font-size: 3.5em

}

.photoupload-modal .joms-popup__title {
    background: #FFFFFF !important;
}

#user-registration {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pwd-reset-container {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.close-btn {
    font-size: 2em;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    margin-bottom: 15px;
}

.modal-container {
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.update-pwd {
    margin-top: 30px;
    width: 100%;
}

.recover-pwd p {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.notification-none {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 5px;
}

.notification-active {
    font-family: 'Gilroy', sans-serif;;
}

.rectangle {
    left: 129px !important;
}

.popup_not {
    top: 87px;
    width: 478px;
    right: calc(50% - 560px);
    height: 435px;
    left: initial;
    transform: initial;
    background-color: #fff;

}

.body-notifications {
    min-height: 90%;
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 0 25px 30px 25px;
}

.popup_not::-webkit-scrollbar {
    border-radius: 20px;
}

.recover-pwd input {
    width: 100%;
    /* margin-bottom: 20px; */
    padding: 10px;
    border: 1px solid #B3B3B3;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-family: 'Gilroy', serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #454545;

}

.friend-request {
    display: flex !important;
    flex-direction: column !important;
    min-height: 35em !important;
}

.friend-request .joms-inline--desktop {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end;
}

.friend-request .joms-list__search {
    display: flex !important;
    flex-wrap: wrap;
}

.friend-request button {
    position: static !important;
    top: 0 !important;
    transform: none !important;
    margin-top: 0 !important;
}

.search-friends {
    width: 40% !important;
}

.search-friends input,
.submit-search input {
    width: 100% !important;
}

.submit-search input {
    width: 100% !important;
    display: block !important;
    height: 35px;
}

.friend-request .joms-list--friend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.submit-search {
    width: 10% !important;;
}

.friend-request .joms-list__button--dropdown {
    display: flex;
    justify-content: flex-end;
    position: static !important;
}

.friend-request .joms-list__button--dropdown button {
    width: 25%;
}

@media (max-width: 481px) {
    .friend-request .joms-inline--desktop {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end;
    }
}

@media (max-width: 1200px) {
    #modal-profile-change, #modal-profile-exit {
        right: calc(50% - 540px);
        top: 80px;
    }

    .rectangle {
        left: 135px !important;
    }

    .my-friends-container {
        gap: 10px;

    }

    .popup_not {
        right: 19px;
    }

    .city-select {
        flex-direction: column;
    }

    #city_ind,
    #street {
        width: 100%;
    }

    .my-friend-block {
        width: 40%;
    }
}

@media (max-width: 1120px) {
    #modal-profile-change, #modal-profile-exit {
        right: 19px;
    }

    #form_walk button {
        width: 100%;
    }

    .city-select {
        gap: 16px
    }

    #form_walk button:nth-of-type(2) {
        width: 100%;
        margin-top: 16px;
    }

    #form_walk select {
        width: 100%
    }

    .maps_block .button_block, .maps_block .sel_block {
        padding-top: 20px;
        margin: 20px auto 20px;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        justify-content: space-around;
    }


    .butt_friends a, .butt_friends button {
        padding: 10px;
        width: 100%;
    }
}

.where-my-pack-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.where-my-pack__map {
    width: 90%;
}

@media (max-width: 982px) {
    .friend-request .joms-inline--desktop {
        flex-wrap: wrap;
        gap: 10px;
    }

    .select-selected {
        /*padding: 30px;*/
        /*font-size: 3em !important;*/
    }

    .select-items:first-child {
        padding: 30px;
        font-size: 2.3em;
    }

    .select-items:nth-child(2) {
        padding: 30px;
        font-size: 2.3em;
    }

    .pet-breed {
        padding: 30px;
        padding-left: 45px;
        font-size: 2.3em;
    }

    .already-walking__results__item a {
        /*padding: 30px;*/
        /*font-size: 3em;*/
    }

    .already-walking__results__item-name {
        font-size: 2em;
    }

    .walk-container {
        max-height: 750px !important;
    }

    .with-whom__container::after {
        right: 127px;
    }

    .with-whom__form__row span {
        padding: 30px;
        padding-left: 45px;
        fot-size: 2.3em;
    }

    .with-whom__form__row select {
        padding-left: 45px;
        /*font-size: 2.3em;*/
        border-radius: 50px !important;
    }

    .popup_not {
        right: 0;
        width: 50%;
    }

    .friend-request .joms-button--neutral {
        position: static !important;
    }

    .friend-request .joms-list__button--dropdown {
        display: flex;
        position: static !important;
    }

    .friend-request .joms-list__item {
        width: 100%;
    }

    .search-friends {
        width: 100% !important;
    }

    .friend-request button {
        width: 100% !important;
    }

    .friend-request .joms-subnav__menu {
        align-self: flex-start;
    }

    .submit-search {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    #modal-profile-change, #modal-profile-exit {
        width: 100%;
        height: 100%;
        left: 0;
        border: 0;
        border-radius: 0;
    }

    .popup_not {
        right: 0;
        width: 100% !important;
    }

}

@media (max-width: 865px) {
    .popup_not {
        right: 0;
        width: 55%;
    }
}

/* ---- End Modal Profile ---- */

/* ---- End Modal Edit Stroll ---- */

#modal-edit-stroll {
    background: var(--main-color);
    max-width: 1120px;
    width: 100%;
    top: calc(50% + 120px);
    height: 900px;
    position: absolute;
}

#modal-edit-stroll .close-button {
    top: -35px;
    right: 10px;
    background: url(../images/close-bg-white.svg) center no-repeat;
}

#modal-edit-stroll h2 {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 1000;
    margin-top: calc(30px + (40 - 30) * ((100vw - 390px) / (1920 - 390)));
    font-size: calc(20px + (40 - 20) * ((100vw - 390px) / (1920 - 390)));
    line-height: 51px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 390px) / (1920 - 390)));
}

#modal-edit-stroll .modal-guts {
    display: block;
}

.inputs-edit__wrapper {
    padding: 0 40px;
    /* overflow: auto; */
}

.inputs-edit__geo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.inputs-edit__geo-row .inputs-edit__input {
    flex: 0 0 49%;
    width: 49%;
    position: relative;
}

.inputs-edit__row textarea {
    width: 100%;
    height: calc(245px + (146 - 245) * ((100vw - 390px) / (1920 - 390)));
    border-radius: 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    border: 0;
    margin-bottom: calc(25px + (30 - 25) * ((100vw - 390px) / (1920 - 390)));
    padding-top: calc(25px + (30 - 25) * ((100vw - 390px) / (1920 - 390)));
    padding-left: calc(50px + (60 - 50) * ((100vw - 390px) / (1920 - 390)));
    padding-right: calc(50px + (60 - 50) * ((100vw - 390px) / (1920 - 390)));
}

.inputs-edit__input input {
    width: 100%;
    cursor: pointer;
    height: calc(40px + (60 - 40) * ((100vw - 390px) / (1920 - 390)));
    border-radius: 57px;
    line-height: 22px;
    border: 0;
    font-weight: 300;
    font-family: 'Gilroy';
    font-style: normal;
    color: #000;
    font-size: calc(12px + (18 - 12) * ((100vw - 390px) / (1920 - 390)));
    padding-left: calc(50px + (60 - 50) * ((100vw - 390px) / (1920 - 390)));
    padding-right: calc(50px + (60 - 50) * ((100vw - 390px) / (1920 - 390)));
}

.inputs-edit__input.name input {
    padding-left: 30px;
}

.inputs-edit__input button {
    text-align: left;
    width: 100%;
    height: calc(40px + (60 - 40) * ((100vw - 390px) / (1920 - 390)));
    border-radius: 57px;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 0;
    padding-left: calc(20px + (30 - 20) * ((100vw - 390px) / (1920 - 390)));
    font-weight: 300;
    gap: 15px;
    font-family: 'Gilroy';
    font-style: normal;
    color: #000;
    font-size: calc(12px + (18 - 12) * ((100vw - 390px) / (1920 - 390)));
}

.inputs-edit__input button img {
    width: 20px;
    object-fit: scale-down;
}

.inputs-edit__input label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.inputs-edit__input label img {
    position: relative;
    left: 20px;
    top: 2px;
}

.inputs-edit__row textarea::-webkit-input-placeholder, .inputs-edit__input input::-webkit-input-placeholder {
    font-weight: 300;
    font-family: 'Gilroy';
    font-style: normal;
    color: #000;
    font-size: calc(12px + (18 - 12) * ((100vw - 390px) / (1920 - 390)));
}

.inputs-edit__row textarea::-moz-placeholder, .inputs-edit__input input::-moz-placeholder {
    font-weight: 300;
    font-family: 'Gilroy';
    font-style: normal;
    color: #000;
    font-size: calc(12px + (18 - 12) * ((100vw - 390px) / (1920 - 390)));
}

.inputs-edit__row textarea:-ms-input-placeholder, .inputs-edit__input input:-ms-input-placeholder {
    font-weight: 300;
    font-family: 'Gilroy';
    font-style: normal;
    color: #000;
    font-size: calc(12px + (18 - 12) * ((100vw - 390px) / (1920 - 390)));
}

.inputs-edit__row textarea:-moz-placeholder, .inputs-edit__input input:-moz-placeholder {
    font-weight: 300;
    font-family: 'Gilroy';
    font-style: normal;
    color: #000;
    font-size: calc(12px + (18 - 12) * ((100vw - 390px) / (1920 - 390)));
}

.inputs-edit__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inputs-edit__row .inputs-edit__input {
    flex: 0 0 32%;
    width: 32%;
    position: relative;
}

.inputs-edit__input .select-selected {
    height: calc(40px + (60 - 40) * ((100vw - 390px) / (1920 - 390)));
    display: flex;
    align-items: center;
    font-weight: 300;
    font-family: 'Gilroy';
    font-style: normal;
    color: #000;
    font-size: calc(12px + (18 - 12) * ((100vw - 390px) / (1920 - 390)));
    padding: 0 30px;
}

.inputs-edit__input {
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 390px) / (1920 - 390)));
}

#edit-stroll-map {
    width: 100%;
    height: 205px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: calc(25px + (30 - 25) * ((100vw - 390px) / (1920 - 390)));
}

#modal-edit-stroll .registration-btn {
    background: #FFE99B;
}

.inputs-container {
    display: flex;
    justify-content: center;
    gap: 31px
}

@media (max-width: 1100px) {
    .form__input {
        width: 100%;
    }

    .inputs-container {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .inputs-edit__input label img {
        top: -6px;
    }
}

@media (max-width: 768px) {
    .inputs-edit__geo-row .inputs-edit__input {
        flex: 0 0 100%;
        width: 100%;
    }

    .inputs-edit__row .inputs-edit__input {
        flex: 0 0 100%;
        width: 100%;
    }

    #modal-edit-stroll {
        height: 1210px;
    }

    .inputs-edit__input label {
        width: 100%;
    }

    .inputs-edit__input label img {
        top: -12px;
        left: initial;
        position: absolute;
        right: 20px;
    }

    .inputs-edit__input input {
        padding: 0 30px;
    }
}

/* ---- End Modal Edit Stroll ---- */

/* ---- Modal Connect ---- */

#modal-connect {
    background: #FFE99B;
    max-width: 1120px;
    width: 100%;
    /*top: calc(50% + 120px);*/
    height: 750px;
    /*position: absolute;*/
}

#modal-connect input {
    pointer-events: none;
}

#modal-modal-connect .close-button {
    top: -35px;
    right: 10px;
    background: url(../images/close-bg-white.svg) center no-repeat;
}

#modal-connect h2 {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 1000;
    margin-top: calc(30px + (40 - 30) * ((100vw - 390px) / (1920 - 390)));
    font-size: calc(20px + (40 - 20) * ((100vw - 390px) / (1920 - 390)));
    line-height: 51px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 390px) / (1920 - 390)));
}
@media (max-width: 768px) {
    #modal-connect .modal-guts {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
    }
    #modal-connect h2 {
        margin-top: 0px;
        margin-bottom: 20px;
    }
}


#modal-connect .close-button {
    top: -35px;
    right: 10px;
    background: url(../images/close-bg-white.svg) center no-repeat;
}

#connect-map {
    width: 100%;
    height: 205px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: calc(25px + (30 - 25) * ((100vw - 390px) / (1920 - 390)));
}

#modal-connect .registration-btn {
    background: #FFD748;
}

@media (max-width: 768px) {
    #modal-connect {
        height: 905px;
    }
}

/* ---- End Modal Connect ---- */

/* ---- Modal Profile Edit ---- */

#modal-profile-edit {
    height: calc(510px + (705 - 510) * ((100vw - 390px) / (1920 - 390)));
}

#modal-profile-edit .modal-guts {
    display: block;
    padding-top: calc(30px + (40 - 30) * ((100vw - 390px) / (1920 - 390)));
}

#modal-profile-edit .inputs-edit__row {
    padding: 0 calc(20px + (90 - 20) * ((100vw - 390px) / (1920 - 390)));
}

#modal-profile-edit .inputs-edit__row .inputs-edit__input {
    flex: 0 0 100%;
    width: 100%;
}

#modal-profile-edit .inputs-edit__row .inputs-edit__input input {
    border: 1px solid #B3B3B3;
}

.radio-edit__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.radio-edit__row > * {
    flex: 0 0 32%;
    width: 32%;
}

.radio-edit__wrapper {
    padding: 0 110px;
}

.radio-edit__radio {
    position: relative;
    width: 20px;
    height: 20px;
}

.radio-edit__row {
    margin-bottom: 25px;
}

.radio-edit__row p {
    font-size: calc(12px + (16 - 12) * ((100vw - 390px) / (1920 - 390)));
}

.radio-edit__radio input {
    opacity: 0;
}

.radio-edit__radio label {
    position: absolute;
    left: 40px;
    top: 0;
}

.radio-edit__radio label:before {
    content: '';
    left: -35px;
    position: absolute;
    width: 21px;
    height: 21px;
    border: 1px solid #FFD748;
    border-radius: 50%;
    background: transparent;
}

.radio-edit__radio label:after {
    content: '';
    left: -31px;
    top: 4px;
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: transparent;
    transition: .3s all;
}

.radio-edit__radio input:checked + label:after {
    background: #FFD748;
}

#modal-profile-edit .btn {
    width: 320px;
}

#geo {
    width: 50%;
}

#click_map {
    width: 45%;
}

#modal-profile-edit .close-button {
    right: 18px;
}

@media (max-width: 768px) {
    .radio-edit__wrapper {
        padding: 0 35px 0 40px;
    }

    #modal-profile-edit .close-button {
        right: 0;
    }
}

/* ---- End Modal Profile Edit ---- */

/* ---- Modal Social ---- */

#modal-social {
    height: auto;
    max-height: 530px;
}

#modal-social h2 {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 142%;
    padding: 0 100px;
}

#modal-social .modal-guts {
    display: block;
    position: relative;
}

.social-buttons__row {
    width: 100%;
    display: flex;
    padding: 0 100px;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-buttons__row .social-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: .3s all;
}

.social-buttons__row .social-button[data-socialbtn="inst"] {
    background: url(../images/controlls/inst-n.png);
}

.social-buttons__row .social-button[data-socialbtn="inst"].open {
    background: url(../images/controlls/inst-v.png);
}

.social-buttons__row .social-button[data-socialbtn="fb"] {
    background: url(../images/controlls/fb-n.png);
}

.social-buttons__row .social-button[data-socialbtn="fb"].open {
    background: url(../images/controlls/fb-v.png);
}

.social-buttons__row .social-button[data-socialbtn="vkt"] {
    background: url(../images/controlls/vk-n.png);
}

.social-buttons__row .social-button[data-socialbtn="vkt"].open {
    background: url(../images/controlls/vk-v.png);
}

.social-buttons__row .social-button[data-socialbtn="tg"] {
    background: url(../images/controlls/tg-n.png);
}

.social-buttons__row .social-button[data-socialbtn="tg"].open {
    background: url(../images/controlls/tg-v.png);
}

.social-inputs__row {
    padding: 0 100px;
    margin-bottom: 30px;
}

.social-input__wrapper {
    width: 100%;
    position: relative;
    visibility: hidden;
    display: none;
    opacity: 0;
    transition: .3s;
    margin-bottom: 20px;
    justify-content: space-between;
}

.social-input__wrapper.open {
    opacity: 1;
    display: flex;
    visibility: visible;
}

.social-input__wrapper input {
    flex: 100%;
    width: 100%;
    height: 44px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    border: 1px solid #B3B3B3;
    border-radius: 31px;
    padding: 0 20px;
}

.social-input__wrapper button {
    position: absolute;
    right: -30px;
    top: 9px;
    width: 20px;
    height: 20px;
    background: url(../images/controlls/close-small.png);
    background-position: center;
    background-color: transparent;
    background-repeat: no-repeat;
    border: 0;
}

@media (max-width: 768px) {
    #modal-social h2 {
        padding: 0 20px;
    }

    .social-buttons__row {
        padding: 0 20px;
    }

    .social-inputs__row {
        padding: 0 20px;
    }

    .social-input__wrapper button {
        right: 18px;
        top: 11px;
    }

    .social-input__wrapper input {
        padding: 0px 40px 0 20px;
    }
}

/* ---- End Modal Social ---- */

/* ---- Modal In Map ---- */

#modal-inmap {
    padding: 0;
    max-height: calc(560px + (870 - 560) * ((100vw - 390px) / (1920 - 390)));
    height: 100%;
    max-width: calc(354px + (1120 - 354) * ((100vw - 390px) / (1920 - 390)));
    width: 100%;
}

#modal-inmap .modal-guts {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

#modal-inmap .modal-guts h2 {
    position: absolute;
    top: 25px;
    z-index: 111;
    font-weight: 300;
    font-size: 35px;
    line-height: 42px;
}

#modal-inmap .close-button {
    z-index: 1000;
}

@media (max-width: 768px) {
    #modal-inmap .modal-guts h2 {
        display: none;
    }
}

/* ---- End Modal In Map ---- */


/* ---- Modal Friend Map ---- */

#modal-friend-map {
    padding: 0;
    max-height: calc(560px + (870 - 560) * ((100vw - 390px) / (1920 - 390)));
    height: 100%;
    max-width: calc(354px + (1120 - 354) * ((100vw - 390px) / (1920 - 390)));
    width: 100%;
}

#modal-friend-map .modal-guts {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.placemark-background {
    position: relative;
    background: url(../images/controlls/bg-geo.png);
    width: calc(49px + (90 - 49) * ((100vw - 390px) / (1920 - 390)));
    height: calc(62px + (112 - 62) * ((100vw - 390px) / (1920 - 390)));
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.placemark-background img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    width: calc(35px + (65 - 35) * ((100vw - 390px) / (1920 - 390)));
    height: calc(35px + (65 - 35) * ((100vw - 390px) / (1920 - 390)));
    border-radius: 50%;
}

#modal-friend-map .close-button {
    z-index: 1000;
}

/* ---- End Modal Friend Map ---- */

.not-authorized {
    filter: blur(40px);
    -webkit-filter: blur(12px);
}

/* -------- 1200px ---------*/

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .with-whom__container::before {
        display: none;
    }

    .header {
        height: 80px;
    }

    .login-btn {
        padding: 10px 35px;
    }

    .logo img {
        display: flex;
        max-height: 60px;
        max-width: 155px;
    }

    .with-whom__form__button {
        font-size: 18px;
    }

    .with-whom__form__input, .select {
        flex: 0 0 32%;
        font-size: 18px;
    }

    .select-selected {
        font-size: 18px;
    }

    .with-whom__container::after {
        right: 47px;
        bottom: -140px;
        background: url("../images/brown-dog.png") center no-repeat;
        background-size: contain;
        width: 110px;
        height: 125px;
    }

    .select.already-walking__select {
        flex: 100%;
    }

    .already-walking__form__input {
        flex: 0 0 66%;
    }

    .already-walking__results__item {
        flex: 0 0 32%;
    }

    .select-items div {
        font-size: 18px;
    }

    .friends-search {
        padding-top: 60px;
    }

    .friends-search__tab__item {
        padding: 25px;
    }

    .already-walking__results__item-photo {
        width: 120px;
        height: 120px;
    }

    .photo-video__gallery__item:not(:nth-child(4n)) {
        margin-right: 0;
    }

    .my-pack__list__item-photo {
        width: 120px;
        height: 120px;
    }

}

.navbar__wrap .menu:nth-of-type(2) {
    display: none !important;
}

/* -------- End 1200px ---------*/
.mobile-profile-block {
    background: #FFFFFF;
    display: none;
    border-radius: 20px;
    width: 100%;
    margin-bottom: 20px;
    padding: 24px;
}

.mobile-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
    background-color: #fff;

    border-radius: 20px;
    -webkit-border-radius: 20px;
}

/* -------- 992px ---------*/
.mobile-avatar {
    width: 129px !important;
    height: 129px !important;
}

.mobile-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

@media (max-width: 992px) {
    .container {
        padding: 0 10px;
    }

    .enter-container {
        width: 100%;
    }

    .mobile-btn-container a {
        padding: 16px 30px;
        font-size: 15px;
        line-height: 11px;
        width: 80%;
        margin-top: 0;
    }

    .profile-info__photos {
        justify-content: center;
    }

    .big-screen-profile {
        display: none !important;
    }

    .mobile-profile-block {
        display: flex;
    }

    .mobile-profile-block .add_photo {
        left: 60px;
    }

    .mobile-info-profile {
        display: none;
    }

    .enter__form::after {
        display: none;
    }

    .enter__form::before {
        left: 301px;
        top: 495px;
        width: 179px;
        height: 111.54px;
    }

    .header__nav-item {
        padding: 21px 18px;
        border-bottom: 1px solid #eaeaea;
    }

    .header__nav-item:not(:last-child) {
        margin-right: 30px;
    }

    .with-whom {
        padding-top: 0;
    }

    .with-whom__form__row {
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .with-whom__form__button, .with-whom__form__input, .select {
        flex: 0 0 100%;
        margin-bottom: 16px;
    }

    .with-whom__form__button {
        padding: 18px 30px 18px 50px !important;
    }

    .with-whom__form__button::before {
        position: absolute;
        left: 22px;
    }

    .big-white-title {
        font-size: 50px;
        margin-bottom: 32px;
    }

    /* .already-walking::before {
        width: 150%;
    } */

    .container__title {
        font-size: 24px !important;
        line-height: 28px;
    }

    .already-walking__title {
        margin-bottom: 54px;
        font-size: 50px;
    }

    .already-walking__form {
        gap: 16px;
        flex-wrap: wrap;
    }

    .already-walking__form__input {
        flex: 0 0 100%;
    }

    .already-walking__form .select {
        margin-bottom: 0;
    }

    .already-walking__form__input.pet-breed {
        flex: 0 0 100%;
        line-height: 24px;
        padding: 18px 30px;
        font-size: 1.5em;
    }

    .already-walking__results {
        flex-wrap: wrap;
    }

    .already-walking__results__item {
        flex: 0 0 48%;
        margin-bottom: 20px;
        padding: 20px 20px 40px;
        border: 1px solid #eaeaea;
    }

    .already-walking__show-more {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 48%;
        margin: inherit;
        margin-bottom: 20px;
        padding: 10px 9px 20px;
        border: 1px solid #eaeaea;
        background-color: #fff;
        border-radius: 30px;
    }


    .already-walking__show-more:hover, .already-walking__show-more:active {
        border: 1px solid var(--main-light-color);
        background-color: var(--main-light-color);
    }

    .already-walking {
        padding-bottom: 0px;
    }

    .friends-search {
        padding-bottom: 40px;
        min-height: auto;
    }

    .friends-search__tab__item__date {
        font-size: 14px;
        line-height: 22px;
    }

    .friends-search__tab__item__time {
        font-size: 18px;
        line-height: 28px;
    }

    .friends-search__tab__item-name {
        font-size: 22px;
        line-height: 28px;
    }

    .friends-search__tab__item-address {
        font-size: 18px;
        line-height: 28px;
    }

    .friends-search__tab__item-message {
        font-size: 18px;
        line-height: 24px;
    }

    .profile-info__container {
        flex-direction: column;
    }

    .profile-info__photos-block {
        width: 100%;
        margin-bottom: 10px;
    }

    .edit-btn {
        width: 306px;
    }

    .profile-info__data {
        width: 100%;
    }

    .show-more-photo::before {
        font-size: 24px;
        line-height: 36px;
    }

    .friends-search__show-more {
        padding: 10px 22px;
    }

    .my-pack__list {
        grid-template-columns: repeat(auto-fill, 48%);
    }

    .my-pack__list__item {
        margin-bottom: 20px;
        padding: 30px 15px;
        border: 1px solid #eaeaea;
    }

    .my-pack__list__item-photo {
        width: 100px;
        height: 100px;
    }

    .my-pack__list__item-photos {
        margin-bottom: 16px;
    }

    .my-pack__list__item-photo:first-child {
        margin-right: 0;
    }

    .my-pack__list__item-name {

        font-family: 'Gilroy';
        font-style: normal;
        font-weight: 400;
        /* identical to box height */

        text-align: center;

        color: #000000;

    }

    .my-pack__list__item-address {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 18px;
    }

    .my-pack__list__item-button {
        font-size: 16px;
        line-height: 22px;
        padding: 11px 0;
    }

    .navbar {
        order: 3;
    }

    .navbar__wrap .menu {
        display: none;
    }

    .hamb {
        display: flex;
        align-items: center;
    }

    .hamb__field {
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px auto;
        background-color: #fff;
        transition: 0.2s;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    }

    .popup {
        position: fixed;
        top: 81px;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 100;
        display: flex;
        transition: 0.3s;
    }

    .popup.open {
        left: 0;
    }

    .hamb__field.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        -webkit-transform: translateY(8px) rotate(45deg);
        -moz-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
        -o-transform: translateY(8px) rotate(45deg);
    }

    .hamb__field.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
    }

    .hamb__field.active .bar:nth-child(2) {
        opacity: 0;
    }

    .header__nav-item.active a::before {
        right: inherit;
        top: -3px;
        right: -10px;
    }

    .popup .menu {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: start;
        overflow: auto;
    }

    .popup .menu > li {
        width: 100%;
    }

    .hamb__field.active .bar:nth-child(2) {
        opacity: 0;
    }

    #geo {
        width: 100%;
    }

    .custom-login {
        margin-right: 17px;
        margin-left: auto;
    }

    .profile-info__photos {
        margin-bottom: 0;
    }

    .mobile-avatar {
        max-width: none !important;
    }
}

/* -------- End 992px ---------*/
/* -------- 768px ---------*/

@media (max-width: 768px) {

    .big-white-title {
        font-size: 40px;
    }

    .enter__title {
        top: -150px;
    }

    .header__nav {
        order: 3;
    }

    .header__button {
        order: 2;
    }

    .header__button {
        width: 34px;
        height: 34px;
        margin: 0 8px;
    }

    .header__button::before {
        width: 16px;
        height: 16px;
    }

    .header__notification.notice::after {
        right: 10px;
        top: 9px;
    }

    .already-walking__results__item {
        flex: 0 0 48%;
        margin-bottom: 20px;
        padding: 30px 15px;
        border: 1px solid #eaeaea;
    }

    .already-walking__results__item-photo {
        width: 100px;
        height: 100px;
    }

    .already-walking__results__item-photos {
        margin-bottom: 16px;
    }

    .already-walking__results__item-photo:first-child {
        margin-right: 0;
    }

    .already-walking__results__item-name {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 20px;
    }

    .already-walking__results__item-address {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 18px;
    }

    .already-walking__results__item-button {
        font-size: 16px !important;
        line-height: 22px;
        padding: 11px 0;
    }

    .select.already-walking__select {
        flex: 0 0 100%;
    }

    .already-walking__select .select-selected {
        padding: 17px 30px;
        font-size: 12px !important;
        line-height: 14px;
        font-weight: 400;
    }

    .already-walking__form__input.pet-breed {
        flex: 0 0 100%;
        margin-top: 16px;
        padding: 17px 30px;
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }

    .select-items div {
        font-size: 12px;
    }

    .friends-search__tab__item {
        padding: 17px;
    }

    .friends-search__tab__item-photos {
        width: 185px;
    }

    .friends-search__tab__item-photo {
        width: 100px;
        height: 100px;
    }

    .photo-video-uploads {
        margin: 0;
        width: 100%;
    }

    .friends-search__tab__item-photo:first-child {
        margin-right: 0;
    }

    .friends-search__tab__item-name-date {
        width: calc(100% - 200px);
    }

    .friends-search__tab__item__date {
        font-size: 14px;
        line-height: 22px;
    }

    .friends-search__tab__item__time {
        font-size: 16px;
        line-height: 26px;
        padding: 4px 10px;
    }

    .friends-search__tab__item-name {
        font-size: 22px;
        line-height: 28px;
    }

    .friends-search__tab__item-address {
        font-size: 18px;
        line-height: 28px;
    }

    .friends-search__tab__item__bottom {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .friends-search__tab__item-message {
        order: 1;
        width: 100%;
        padding: 13px;
        font-size: 18px;
        line-height: 24px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border: 1px solid #eaeaea;
    }

    .friends-search__tab__item-button {
        order: 2;
        margin: 12px auto 0;
        padding: 10px 0;
    }

    .modal {
        width: 354px;
        /*height: 181px;*/
    }

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

    .close-button {
        top: -35px;
        right: 0px;
        background: url('../images/close-bg-white.svg') center no-repeat;
    }

    .enter-btn, .registration-btn {
        font-size: 16px;
        line-height: 24px;
        margin: 0 11px;
    }

    .modal-title {
        margin-bottom: 21px;
    }

    .navbar {
        order: 3;
    }

    .navbar__wrap .menu {
        display: none;
    }

    .hamb {
        display: flex;
        align-items: center;
    }

    .hamb__field {
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px auto;
        background-color: #fff;
        transition: 0.2s;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    }

    .popup {
        position: fixed;
        top: 81px;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 100;
        display: flex;
        transition: 0.3s;
    }

    .popup.open {
        left: 0;
    }

    .popup .menu {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: start;
        overflow: auto;
    }

    .popup .menu > li {
        width: 100%;
    }

    .hamb__field.active .bar:nth-child(2) {
        opacity: 0;
    }

    .maps_block .button_block, .maps_block .sel_block {
        flex-direction: column;
    }

    .butt_walk {
        width: 100% !important
    }

    .walk {
        width: 100% !important
    }

    .area_walk {
        display: none;
    }

    .btn_walk {
        max-width: fit-content !important;
    }

    .my_walk h2, .search_walk h2 {
        font-family: 'Gilroy';
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 29px;
        /* identical to box height */

        text-align: center;

        color: #000000;
    }

    .hamb__field.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        -webkit-transform: translateY(8px) rotate(45deg);
        -moz-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
        -o-transform: translateY(8px) rotate(45deg);
    }

    .hamb__field.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
    }

    .noscroll {
        overflow: hidden;
    }

    .hide {
        display: none;
    }

    .header__nav-item {
        padding: 21px 18px;
        border-bottom: 1px solid #eaeaea;
    }

    .header__nav-item:not(:last-child) {
        margin: 0;
    }

    .header__nav-item:hover {
        border-bottom: 1px solid var(--main-color);
    }

    .header__nav-item.active a::before {
        right: inherit;
        top: -3px;
        right: -10px;
    }

    .header__nav-item a:hover::after {
        display: none;
    }

    .news-list__item__date {
        font-size: 12px;
        line-height: 20px;
    }

    .news-list__item__name {
        font-size: 20px;
        line-height: 26px;
    }

    .news-list__item__message {
        font-size: 16px;
        line-height: 26px;
    }

    .news__comment__name {
        font-size: 18px;
        line-height: 28px;
    }

    .news__comment__message {
        font-size: 14px;
        line-height: 22px;
    }

    .news__comment__reply, .news__comment__date {
        font-size: 14px;
        line-height: 22px;
    }

    .news__add-comment__input {
        font-size: 14px;
        line-height: 16px;
    }

    .news-list__item {
        padding: 25px;
    }

    .news-list__item-photos {
        width: 196px;
        margin-right: 20px;
    }

    .news-list__item-info {
        width: calc(100% - 216px);
    }

    .news-list__item-photo {
        width: 110px;
        height: 110px;
    }

    .news-list__item-photo:last-child {
        margin-left: -14px;
    }

    .news-list__item-photo:first-child {
        margin-right: -14px;
    }

    .data-filling {
        padding: 40px 0 75px;
    }

    .form {
        width: 100%;
        /*padding: 32px 18px;*/
    }

    .form .close-button {
        display: none;
    }

    .form__input {
        margin-bottom: 16px;
        font-size: 14px !important;
        line-height: 20px;
    }

    .form__input-password {
        margin-bottom: 0px;
    }

    .password {
        margin-bottom: 15px;
    }

    .forgot-password {
        margin-top: 25px;
        margin-bottom: 0;
    }

    .enter__form::before {
        left: 45%;
        top: auto;
        bottom: -192px;
        width: 195px;
    }

    .enter__form::after {
        display: none;
    }

    .form__submit {
        font-size: 14px;
        line-height: 16px;
        align-self: center;
        width: 50%;
    }

    .area-walk {
        display: none;
    }

    .btn_walk {
        width: 50%;
    }

    .border-button {
        font-size: 14px;
        line-height: 16px;
    }

    .forgot-password {
        font-size: 10px;
        line-height: 12px;
    }

    .data-filling__form-row {
        padding-left: 28px;
    }

    .form-row__title {
        font-size: 14px;
        line-height: 20px;
    }

    [type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
        width: 80px;
        padding-left: 28px;
        font-size: 14px;
        line-height: 20px;
    }

    .data-filling__submit {
        padding: 17px 0;
        font-size: 14px;
        line-height: 16px;
    }

    .registration__form::before {
        display: none;
    }

    .where-my-pack {
        padding-bottom: 20px;
    }

    .my-pack {
        padding-bottom: 0;
    }

    .custom-login {
        margin-right: 17px;
        margin-left: auto;
    }

}

/* -------- End 768px ---------*/
/* -------- 576px ---------*/
.mobile-socials {
    box-shadow: none !important;
}

@media (max-width: 576px) {
    .mobile-btn-container a {
        font-size: 11px;
        padding: 10px;
        width: 116px;
    }

    .mobile-avatar {
        width: 65px !important;
        height: 65px !important;
    }

    .mobile-profile-block .add_photo {
        left: 40px;
    }

    .mobile-add {
        width: 22px !important;
        height: 22px !important;
    }

    .mobile-edit {
        padding: 6px 30px;
        font-size: 10px;
    }

    .edit-btn:after {
        display: none !important;
    }

    .big-white-title {
        font-size: 40px;
        text-align: center;
    }

    .with-whom__form__button, .with-whom__form__input {
        padding: 17px 30px;
        font-size: 12px !important;
        font-weight: 400;
        line-height: 14px;
    }

    .with-whom__form__button {
        padding: 17px 30px 15px 45px !important;
    }

    .select-selected {
        padding: 17px 30px;
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }

    .with-whom__form__button::before {
        width: 16px;
        height: 20px;
        top: 12px;
        left: 17px;
        background-size: contain;
    }

    .select-items div {
        font-size: 12px;
    }

    .with-whom {
        height: 600px;
    }

    .already-walking__form__button, .already-walking__form__input {
        padding: 17px 30px;
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }

    .already-walking__results__item {
        flex: 0 0 48%;
        margin-bottom: 20px;
        padding: 10px 9px 20px;
        border: 1px solid #eaeaea;
    }

    .already-walking__results__item-photo {
        width: 65px;
        height: 65px;
    }

    .already-walking__results__item-photos {
        margin-bottom: 16px;
    }

    .already-walking__results__item-photo:first-child {
        margin-right: 0;
    }

    .already-walking__results__item-name {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 16px;
    }

    .already-walking__results__item-address {
        margin-bottom: 16px;
        font-size: 10px;
        line-height: 15px;
    }

    .already-walking__results__item-button {
        font-size: 12px !important;
        line-height: 18px;
        padding: 11px 0;
    }

    .see-on-map-btn {
        margin-top: 8px;
    }

    .already-walking__form {
        flex-wrap: wrap;
    }

    .select.already-walking__select {
        flex: 0 0 100%;
    }

    .already-walking__form__input {
        flex: 0 0 100%;
    }

    .footer {
        height: 122px;
    }

    .footer__container {
        flex-wrap: wrap;
        position: relative;
    }

    .footer__link {
        flex: 0 0 100%;
        margin-top: 17px;
        font-size: 12px;
        line-height: 14px;
    }

    .footer__date {
        left: inherit;
        right: 0;
        bottom: 0;
        font-size: 12px;
        line-height: 14px;
    }

    .friends-search__tab__item {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .friends-search__tab__item-photos {
        width: 90px;
    }

    .friends-search__tab__item-photo {
        width: 50px;
        height: 50px;
    }

    .friends-search__tab__item-name-date {
        width: calc(100% - 100px);
    }

    .friends-search__tab__item__date {
        font-size: 8px;
        line-height: 12px;
    }

    .friends-search__tab__item__time {
        font-size: 8px;
        line-height: 12px;
    }

    .friends-search__tab__item-name {
        font-size: 14px;
        line-height: 16px;
    }

    .friends-search__tab__item-address {
        font-size: 10px;
        line-height: 15px;
    }

    .friends-search__tab__item-message {
        font-size: 12px;
        line-height: 16px;
    }

    .friends-search__tab__item-button {
        font-size: 12px;
        line-height: 18px;
        width: auto;
        padding: 11px 21px;
    }

    .friends-search__show-more {
        margin: 0 auto;
        font-size: 12px;
        line-height: 18px;
    }

    .friends-search__tabs-nav-item {
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
    }

    .friends-search__tabs-nav-item:not(:last-child) {
        margin-right: 20px;
    }

    .modal {
        width: 330px;
        /*height: 181px;*/
    }

    .profile-info {
        padding: 20px 0 10px;
    }

    .profile-info__photo {
        width: 155px;
        height: 155px;
    }

    .add-photo-buttons {
        top: 158px;
    }

    .add_photo {
        left: 94px;
    }

    .add-photo__pet {
        left: 212px;
    }

    .profile-info__photos-block {
        min-width: 100%;
    }

    .edit-btn {
        width: 266px;
    }

    .profile-info__name {
        font-size: 14px;
        line-height: 17px;
    }

    .personal-data__row__title, .personal-data__row__value {
        font-size: 14px;
        line-height: 22px;
    }

    .personal-data__row__title {
        min-width: 140px;
    }
    .profile-info__wrapper--custom .personal-data__row__title{
        min-width: unset;
    }

    .profile-info__statistic {
        justify-content: space-between;
    }

    .profile-info__statistic__value {
        font-size: 18px;
        line-height: 22px;
    }

    .profile-info__statistic__title {
        font-size: 12px;
        line-height: 16px;
    }

    .profile-info__statistic__col:not(:last-child) {
        margin-right: 0;
    }

    .photo-video {
        padding: 10px 0;
    }

    .profile-info__photos-block, .profile-info__name-socials,
    .profile-info__personal-data, .profile-info__statistic,
    .video__add-button, .photo__add-button, .achievements__list {
        padding: 15px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .profile-info__photos-block {
        margin-right: 0;
    }

    .photo-video__gallery {
        grid-template-columns: repeat(auto-fill, 32%);
    }

    .photo-video__gallery__item {
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .achievements__list {
        grid-template-columns: repeat(auto-fill, 16%);
    }

    .achievements__item img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .photo__add-button, .video__add-button {
        height: 50px;
        font-size: 12px;
        line-height: 18px;
        width: 100%;
    }

    .photo__add-button::before, .video__add-button::before {
        margin-right: 10px;
    }

    #tooltip {
        font-size: 10px;
        padding: 5px 8px;
    }

    .news {
        padding: 20px 0;
    }

    .news-list__item {
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .news-list__item:not(:last-child) {
        margin-bottom: 8px;
    }


    .news-list__item__date {
        margin-bottom: 3px;
        font-size: 8px;
        line-height: 12px;
    }

    .news-list__item__name {
        margin-bottom: 3px;
        font-size: 12px;
        line-height: 14px;
    }

    .news-list__item__message {
        font-size: 10px;
        line-height: 15px;
    }

    .news__comment__name {
        font-size: 12px !important;
        line-height: 14px;
    }

    .news__comment__message {
        font-size: 10px;
        line-height: 15px;
    }

    .news__comment__reply, .news__comment__date {
        font-size: 8px;
        line-height: 12px;
    }

    .news__add-comment__input {
        font-size: 10px;
        line-height: 15px;
        padding: 12px 38px 12px 20px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-color: #EAEAEA;
    }

    .news__add-comment__input111 {

    }

    .news-list__item {
        padding: 15px;
    }

    .news-list__item .photo-video__gallery {
        grid-template-columns: repeat(auto-fill, 49%);
        margin-top: 10px;
        margin-bottom: 0;
    }

    .news-list__item .photo-video__gallery__item {
        margin-bottom: 5px;
    }

    .joms-textarea__wrapper .news__comment__photos {
        display: none;
    }

    .news-list__item-photos, .news__comment__photos {
        width: 92px;
        margin-right: 14px;
        margin-bottom: 0;
    }

    .news-list__item-info, .news__comment__info {
        width: calc(100% - 106px);
    }

    .news-list__item-photo, .news__comment-photo {
        width: 50px;
        height: 50px;
    }

    .news-list__item-photo:last-child, .news__comment-photo:last-child {
        margin-left: -7px;
    }

    .news-list__item-photo:first-child, .news__comment-photo:first-child {
        margin-right: -7px;
    }

    .news-list__item__buttons {
        margin-top: 8px;
    }

    .news-list__item__button:first-child {
        margin-right: 5px;
    }

    .news-list__item__button {
        font-size: 10px;
        line-height: 15px;
        padding: 6px 15px;
    }

    .comment::before, .like::before {
        width: 12px;
        height: 12px;
        margin-right: 5px;
        margin-bottom: -3px;
    }

    .show-more-photo::before {
        font-size: 14px;
        line-height: 26px;
    }

    .news-list__comments {
        margin-top: 16px;
        border-top: 1px solid #eaeaea;
    }

    .news__comment {
        border: none;
        padding: 16px 0;
    }

    .news__comment__reply {
        margin-right: 15px;
    }

    .add-comment {
        padding: 0;
    }

    .add-comment .news__comment__photos {
        display: none;
    }

    .news__add-comment {
        width: 100%;
    }

    .news__add-comment__submit {
        display: inline-block;
    }

    .form {
        width: 90%;
        padding: 32px 18px;
    }

    .agreement {
        padding-left: 55px;
        padding-right: 0;
    }

    .my-pack__title {
        margin-bottom: 16px;
    }

    .where-my-pack__title {
        margin-bottom: 16px;
    }

    .friends-map {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    .my-pack__list__item {
        margin-bottom: 12px;
        padding: 10px 9px 20px;
        border: 1px solid #eaeaea;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    .my-pack__list__item-photo {
        width: 65px;
        height: 65px;
    }

    .my-pack__list__item-photos {
        margin-bottom: 16px;
    }

    .my-pack__list__item-photo:first-child {
        margin-right: 0;
    }

    .my-pack__list__item-name {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 16px;
    }

    .my-pack__list__item-address {
        margin-bottom: 16px;
        font-size: 10px;
        line-height: 15px;
    }

    .my-pack__list__item-button {
        font-size: 12px;
        line-height: 18px;
        padding: 11px 0;
    }

    .see-on-map-btn {
        margin-top: 8px;
    }

}

/* -------- End 576px ---------*/

/* -------- 360px ---------*/

@media (max-width: 360px) {
    .profile-info__photo {
        width: 130px;
        height: 130px;
    }

    .edit-btn {
        width: 100%;
    }
}

/* -------- End 360px ---------*/


.modal-overlay-enter {
    background: url('../images/bg.png') top left repeat;
}

.modal-guts-enter .add-on {
    display: none;
}

.enter-form-links {
    text-align: center;
    margin-top: 20px;
    list-style: none;
}

.enter-form-links li {
    margin-bottom: 5px;
}

.enter-form-links li a:hover {
    color: var(--main-color);
}

.modal-profile-exit-wrap {
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

.modal-profile-exit-wrap:before {
    content: '';
    position: absolute;
    left: 29px;
    top: 12px;
    width: 18px;
    height: 18px;
    background: url(../images/controlls/exit-button.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
}

.item-button {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.white-btn {
    border: 1px solid var(--main-color);
    margin-top: 15px;
}

.yellow-btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

#modal-img h2, #modal-video h2 {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 30px;
}

#modal-img .modal-guts, #modal-video .modal-guts {
    display: block;
    margin-top: calc(30px + (40 - 30) * ((100vw - 390px) / (1920 - 390)));

}

.modal-img__img-select, .modal-video__img-select {
    position: relative;
    width: calc(280px + (355 - 280) * ((100vw - 390px) / (1920 - 390)));
    height: 74px;
    background: #FFFFFF;
    border: 1px dashed #CACACA;
    border-radius: 10px;
    display: inline-block;

}

.avatar {
    z-index: 3;
}

#modal-img img {
    max-width: 400px;
    max-height: 400px;
    height: 50%;
    object-fit: cover;
    position: relative;
    left: 50%;
    display: block;
    transform: translateX(-50%);
}

.modal-img {
    height: calc(435px + (710 - 435) * ((100vw - 390px) / (1920 - 390)));
    width: calc(354px + (640 - 354) * ((100vw - 390px) / (1920 - 390)));
}

.modal-img__img-save {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(314px + (380 - 314) * ((100vw - 390px) / (1920 - 390)));
    height: 48px;
    border: 0;
    box-shadow: none;
    background: #FFD748;
    border-radius: 31px;
    margin-top: calc(15px + (30 - 15) * ((100vw - 390px) / (1920 - 390)));
    cursor: pointer;
}

.input__wrapper {
    width: 100%;
    position: relative;
    text-align: center;
    padding-top: 15px;
}

#file-selector, #file-selector_video {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.joms-form__group {
    color: #7f8c8d;
    margin-bottom: 14px;
    display: block;
}

.already-walking_item_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.already-walking_item_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    width: 100%;
}

.already-walking__results__item a {
    text-decoration: none;
    color: #000;
}

datalist {
    border-radius: 20px !important;
}

.gowalk {
    margin-top: calc(15px + (40 - 15) * ((100vw - 390px) / (1920 - 390)));
}

.friends-search.no-pd {
    padding-top: 0;
    min-height: initial;
}

.gowalk .wrapper {
    width: 100%;
    margin: auto;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.gowalk .buttonWrapper {
    margin-bottom: -1px;
    display: grid;
    background: #f5f5f5;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gowalk .buttonWrapper button {
    border: none;
    background-color: #FFE99B;
    cursor: pointer;
    transition: 0.5s;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 1000;
    font-size: calc(20px + (40 - 20) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(25px + (51 - 25) * ((100vw - 390px) / (1920 - 390)));
    padding: 15px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.gowalk .buttonWrapper button:first-child {
    background-color: #FFD748;
}

#gowalk {
    padding-top: calc(25px + (40 - 25) * ((100vw - 390px) / (1920 - 390)));
    background-color: #FFD748;
}

#gofriend {
    padding-top: 0;
    background-color: #FFE99B;
}

@media (max-width:768px) {
    #gofriend {
        padding-top: 10px !important;
        height: 95% !important;
        overflow-y: auto !important;
    }
}
.gowalk .active {
    background-color: white;
}

.gowalk .content {
    display: none;
    padding: 10px 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.gowalk .content.active {
    display: block;
}

#my-full-map {
    width: 100%;
    height: 205px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: calc(25px + (30 - 25) * ((100vw - 390px) / (1920 - 390)));
}

#friend-full-map {
    width: 100%;
    height: 205px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: calc(25px + (30 - 25) * ((100vw - 390px) / (1920 - 390)));
}

.gowalk .btn {
    background: #FFE99B;
    border-radius: 43px;
    margin-bottom: calc(25px + (40 - 25) * ((100vw - 390px) / (1920 - 390)));
}

.gowalk .btn.friend {
    background-color: #FFD748;
}

.gowalk .select {
    margin-bottom: 0;
}

.friends-search__tab__item-button.dotted-button {
    background: transparent;
    position: relative;
    border: 0;
    box-shadow: 0;
    cursor: pointer;
    display: inline-block;
    width: 100px;
    user-select: none;
}

.dotted-wrapper-buttons {
    position: absolute;
    top: -72px;
    z-index: 111;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #F5F5F5;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.dotted-wrapper-buttons.open {
    display: flex;
}

.dotted-wrapper-buttons:before {
    content: '';
    position: absolute;
    left: 40px;
    bottom: -29px;
    border: 10px solid transparent;
    border-top: 20px solid #F5F5F5;
}

.dotted-wrapper-buttons a {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: calc(10px + (12 - 10) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(12px + (14 - 12) * ((100vw - 390px) / (1920 - 390)));
    margin-bottom: calc(12px + (15 - 12) * ((100vw - 390px) / (1920 - 390)));
    text-decoration: none;
    color: #000;
}

.dotted-wrapper-buttons a:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .gowalk .inputs-edit__input label img {
        top: 2px;
    }
}

@media (max-width: 768px) {
    .gowalk .inputs-edit__input label img {
        top: -11px;
    }

    .gowalk .container {
        padding: 0;
    }

    .gowalk .inputs-edit__wrapper {
        padding: 0 20px;
    }

    .gowalk .buttonWrapper button {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .friends-search__tab__item-button.dotted-button {
        order: 2;
        margin: 0 3px;
        text-align: left;
        padding: 10px 0;
    }

    .dotted-wrapper-buttons {
        left: -15px;
    }

    .dotted-wrapper-buttons:before {
        left: 20px;
    }
}

.notification-list_text {
    font-size: 14px;
    font-weight: bold;
    font-family: 'Gilroy', sans-serif;
    color: #000;

}

.notification a {
    text-decoration: none;
}

.block-info {
    padding-bottom: 14px;
}

.notification {
    padding: 14px 14px;
    border-bottom: 1px solid #7B7B7B;
}

.block-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.block-buttons button, .block-buttons-connect button {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    min-width: 112px;
    cursor: pointer;
}

.btn-apply {
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    background: #FFD748;
    border: 0;
}

.btn-map {
    border: 1px solid var(--main-color);
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    background: #fff;
}

.btn-cancel {
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    background: #fff;
    border-color: #B3B3B3;
}

.block-buttons-connect {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-right: 5px;
}

.block-buttons-connect button {
    margin-right: 20px;
}

#modal-notificationMap {
    padding: 0;
    max-height: calc(560px + (870 - 560) * ((100vw - 390px) / (1920 - 390)));
    height: 100%;
    max-width: calc(354px + (1120 - 354) * ((100vw - 390px) / (1920 - 390)));
    width: 100%;
}

#modal-Notification {
    top: 100px;
    width: 478px;
    right: calc(50% - 560px);
    height: 435px;
    transform: initial;
    background-color: #fff;
}

#modal-overlay-Notification {
    background: transparent;
}

#wheremap {
    width: 100%;
    height: 410px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.join-btn {
    cursor: pointer;
}

#modal-Notification .modal-guts {
    justify-content: flex-start;
}

#open-date-friend {
    pointer-events: all !important;
}

#open-watch-friend {
    pointer-events: all !important;

}

#friends_street {
    pointer-events: all !important;
}

#modal-overlay-signIn {
    background: url('../images/with-whom-bg.jpg') center center no-repeat !important;
}

.joms-form__group a {
    text-decoration: none;
    color: #000;
}

.joms-form__group h2 {
    padding-bottom: 5px;
}

.joms-form__group p {
    padding: 0 0 0 20px;
    text-align: left;

}

.friends-search__tab__item-name-date a {
    text-decoration: none;
    color: #000;
}

.js-hidden {
    display: none;
}


/* ---- Modal Profile ---- */

#modal-profile, #modal-notification {
    top: 100px;
    width: 478px;
    right: calc(50% - 560px);
    max-height: 500px;
    min-height: 100px;
    left: initial;
    transform: initial;

}

#modal-overlay-profile {
    background: transparent;
}

#modal-profile .modal-guts {
    padding: 30px 50px 50px 50px;
    display: block;
}

#modal-profile h3 {
    font-weight: 500;
    font-size: calc(18px + (24 - 18) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(22px + (29 - 22) * ((100vw - 390px) / (1920 - 390)));
    margin-bottom: 25px;
}

#modal-profile-change {
    top: 100px;
    width: 478px;
    right: calc(50% - 560px);
    height: 435px;
    left: initial;
    transform: initial;

}

#modal-overlay-profile-change {
    background: transparent;
}

#modal-profile-change .modal-guts {
    padding: 30px 50px 50px 50px;
    display: block;
}

#modal-profile-change h3 {
    font-weight: 500;
    font-size: calc(18px + (24 - 18) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(22px + (29 - 22) * ((100vw - 390px) / (1920 - 390)));
    margin-bottom: 25px;
}

#modal-profile-change .modal-guts, #modal-profile .modal-guts {
    overflow: hidden;
}

#modal-profile-change .modal-prfile__input img {
    top: 17px;
}

#modal-profile-change .profile-modal__controlls button {
    color: #79A95F;
}

.profile-modal__controlls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.profile-modal__controlls span {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    font-family: 'Gilroy';
    font-style: normal;
}

.profile-modal__controlls button {
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    border: 0;
    background: transparent;
    color: #FFD748;
    font-family: 'Gilroy';
    font-style: normal;
}

.modal-prfile__input {
    width: 100%;
    height: 45px;
    position: relative;
    margin-bottom: 15px;
}

.modal-prfile__input input {
    font-family: 'Gilroy';
    font-style: normal;
    width: 100%;
    height: 45px;
    border: 1px solid #B3B3B3;
    border-radius: 31px;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 19px;
    color: #000000;
    padding: 0 25px;
}

.modal-prfile__input.open input {
    font-size: 50px;
    letter-spacing: 10px;
}

.profile-modal__row.save .intl-tel-input .flag-dropdown {
    display: none;
}

.profile-modal__row.save .intl-tel-input input {
    padding: 0 25px;
}

.intl-tel-input input {
    font-family: 'Gilroy';
    height: 45px;
    font-style: normal;
    width: 100%;
    height: 45px;
    border: 1px solid #B3B3B3;
    border-radius: 31px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    padding: 0 25px 0 75px;
}

.modal-prfile__input img {
    position: absolute;
    right: 15px;
    cursor: pointer;
    top: 20px;
    transition: .3s all;
}

.intl-tel-input .flag-dropdown .selected-flag {
    margin: 1px;
    padding: 6px 16px 6px 6px;
    margin-left: 20px;
    margin-top: 9px;
    transform: scale(1.8);
}

.intl-tel-input .flag-dropdown .selected-flag .down-arrow {
    background: url(../images/controlls/phone-select.png);
    top: 6px;
    position: relative;
    left: 20px;
    width: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    height: 4px;
    border: 0;
}

.modal-profile__exit {
    /*margin-top: 15px;*/
    width: 136px;
    height: 43px;
    position: relative;
    background: #FFD748;
    border-radius: 30px;
    border: 0;
    box-shadow: none;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    padding-left: 20px;
}

.modal-profile__exit:before {
    content: '';
    position: absolute;
    left: 29px;
    top: 12px;
    width: 18px;
    height: 18px;
    background: url(../images/controlls/exit-button.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    #modal-profile-change, #modal-profile, #modal-notification {
        right: calc(50% - 540px);
        top: 80px;
    }
}

@media (max-width: 1120px) {
    #modal-profile-change, #modal-profile, #modal-notification {
        right: 19px;
    }
}

@media (max-width: 768px) {
    #modal-profile-change, #modal-profile, #modal-notification {
        width: 100%;
        height: 100%;
        left: 0;
        border: 0;
        border-radius: 0;
    }
}

/* ---- End Modal Profile ---- */
.profile-edit {
    margin-top: 2em;
}

#modal-confirm {
    width: 550px;
    height: 300px;
}

.text-confirm {
    margin: 0 auto;
}

.inputs-confirm {
    width: 80%;
    margin: 0 auto;
    padding: 1em;
}

.confirm-btn {
    border: 1px solid var(--main-color);
    background-color: #fff;
    color: #000;
}

.modal-buttons-confirm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-confirm {
    margin: 0 auto;
    color: red;
    padding-bottom: 10px;
}

.success-confirm {
    margin: 0 auto;
    color: green;
    padding-bottom: 10px;
}

.status-confirm {
    margin: 0 auto;
}

.block-pending-button {
    width: 222px;
}

.friends-search__tab__item-button {
    font-size: 18px;
    line-height: 30px;
}

/* ---- 404 ---- */

.not-found {
    background: url(../images/404-bg.jpg);
    height: calc(100vh - 200px);
    width: 100%;
    font-family: 'Gilroy';
    font-style: normal;
}

.not-found-wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.not-found__dog, .not-found__text, .not-found__cat {
    height: 100%;
    display: flex;
    align-items: center;
}

.not-found__dog {
    position: relative;
}

.not-found__dog img {
    bottom: -198px;
    position: relative;
}

.not-found__cat {
    position: relative;
}

.not-found__cat img {
    position: relative;
    bottom: 120px;
    left: 42px;
}

.not-found__text {
    flex-direction: column;
    justify-content: center;
}

.not-found__text h2 {
    width: 655px;
    text-align: center;
    font-weight: 800;
    font-size: calc(30px + (55 - 30) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(38px + (69 - 38) * ((100vw - 390px) / (1920 - 390)));
    color: #fff;
}

.not-found__text h1 {
    color: #fff;
    text-align: center;
    font-weight: 800;
    font-size: calc(155px + (335 - 155) * ((100vw - 390px) / (1920 - 390)));
    line-height: calc(194px + (419 - 194) * ((100vw - 390px) / (1920 - 390)));
}

@media (max-width: 1250px) {
    .not-found-wrapper {
        flex-wrap: wrap;
    }

    .not-found__dog {
        width: 100%;
        flex: 0 0 100%;
        order: 3;
        height: 100px;
    }

    .not-found__text {
        width: 100%;
        flex: 0 0 100%;
        height: initial;
        order: 2;
    }

    .not-found__cat {
        width: 100%;
        flex: 0 0 100%;
        height: 100px;
        justify-content: flex-end;
        order: 1;
    }

    .not-found__cat img {
        bottom: -8px;
        left: -160px;
        height: 100%;
        object-fit: cover;
    }

    .not-found__dog img {
        bottom: 45px;
        height: 100%;
        position: relative;
        object-fit: cover;
        left: 136px;
    }

    .not-found__text h2 {
        width: initial;
    }
}

@media (max-width: 1200px) {
    .not-found {
        height: calc(100vh - 180px);
    }
}

@media (max-width: 768px) {
    .not-found__dog img {
        left: 20px;
        bottom: 20px;
    }

    .not-found__cat img {
        left: -30px;
    }
}

/* ---- End 404 ---- */

.media_btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.preview_video {

}

#modal_login {
    width: 565px;
    height: 416px;
}

.select-city {
    flex: 0 0 50%;
}

#community-wrap .friends-search {
    background: none;
}

#upload_progressbar {
    display: none;
    height: 31px;
    font-family: sans-serif;
    font-size: 12px;
    padding: 6px;
    width: 300px;
    position: absolute;
    text-align: center;
    color: black;
    border: 1px solid black;
    border-radius: 33px
}

#upload_progresscomplete {
    display: none;
    height: 31px;
    font-family: sans-serif;
    font-size: 12px;
    padding: 6px;
    width: 0;
    text-align: center;
    background-color: var(--main-color);
    color: white;
    border: 1px solid transparent;
    border-radius: 33px;
}

.progressbar {
    display: flex;
    justify-content: center;
}

.video-upload {

}

.modal-reset {
    height: 450px;
    padding: 30px;
    top: 35%;
    z-index: 600;
}

.modal-login {
    height: 450px;
    padding: 30px;
    top: 50%;
    z-index: 600;
}

.fieldset-reset {
    border: 0;
    margin: 25px 0 25px 0;
}

.fieldset-reset p, .recover-pwd p {
    padding: 10px 0 10px 0;
}

.fieldset-reset .control-label, .recover-pwd .control-label {
    margin: 10px 0 10px 0;
}

.fieldset-reset .modal-prfile__input {
    height: 65px;
}

.modal-request {
    height: 400px;
    padding: 30px;
    top: 35%;
    z-index: 600;
}

.modal-complete {
    height: 400px;
    padding: 30px;
    top: 35%;
    z-index: 600;
}

#modal-overlay {
    background: url('/images/with-whom-bg.jpg') center center no-repeat !important;
}

.modal-login .enter__form {
    width: 100%;
    padding: 20px;
}

.video-item {
    width: 100%;
    height: 100%;
    display: block;
}

.video-item::before {
    content: url('/images/icons/play.png');
    position: absolute;
    bottom: 33%;
    right: 33%;
}

#modal-error, #modal-success {
    height: 200px;
}

.errors {
    display: flex;
    justify-content: center;
    color: red;
}

.errors-title, .success-title {
    text-align: center;
    padding: 15px;
    font-size: 25px;
}

.success {
    display: flex;
    justify-content: center;
    color: green;
}

.footer-copyright {

}

.footer_developer {
    text-decoration: none;
    color: #000;
}
.footer-development svg{
    position: relative;
    top: 8px;
}
@media (max-width: 768px) {
    .footer__link{
        text-align: start;
        padding: 0;
        margin-top: 5px;
    }
    .footer-development{
        padding-bottom: 2px;
    }
}
.comment-video{
    height: 62px !important;
    margin: 0;
    min-height: 35px;
    -webkit-appearance: none;
    padding: 20px;
    display: block;
    border-radius: 20px;
    border: 1px;
}
.news__add-comment-video{
    width: 100%;
    position: relative;
    padding-top: 10px;
}
.chat__title {
    margin-top: 19px;
    margin-bottom: 14px;
}
.chat__description {
    margin-bottom: 20px;
}
.chat__wrapper {
    display: grid !important;
    grid-template-columns: minmax(0, max-content) 1fr;
    column-gap: 19px;
}
.chat__wrapper-navbar {
    width: 354px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}
.chat__wrapper-block {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}
.chat__wrapper-block .joms-chat__header {
    padding: 20px 30px;
}
.chat__wrapper-block .joms-button--primary {
    margin-top: 0;
}
.chat__wrapper-block .joms-button--primary {
    padding: 10px 38px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 151%;
    color: #000000;
    background-color: transparent;
    border: 1px solid #FFD748;
}
.chat__text {
    display: block;
    margin-top: 30px;
}

.chat__wrapper-block .joms-textarea{
    background-color: #FAFAFA;
    border: 1px solid #FAFAFA;
    border-radius: 20px;
    border: none;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 151%;
    color: #454545;
    padding-right: 50px;
}
.chat__wrapper-block .joms-chat__messagebox {
    background-color: #fff;
}
.chat__wrapper-block .joms-js-wrapper {
    position: relative;
}
.chat__wrapper-block .joms-js-wrapper .joms-button--primary {
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 2;
    width: unset;
    border: none;
    padding: 0;
}
.joms-chat__item-body b {
    color:#333;
}
@media (min-width: 768px) {
    .button-showChats {
        display: none;
    }
    .joms-chat__search button {
        display: none;
    }
}
@media (max-width: 767px) {
    .body-overlay {
        margin-right: var(--scrollbar-width);
        touch-action: none;
        -ms-touch-action: none;
        overflow: hidden;
        position: relative;
        height: 100%;
    }
    .joms-chat__search {
        display: grid;
        grid-template-columns: 1fr minmax(0, max-content);
        column-gap: 30px;
    }
    .joms-chat__search button{
        display: inline-block;
        position: relative;
        width: 20px;
        height: 20px;
        background-color: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
    }
    .joms-chat__search button::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        left: 0;
        top: 50;
        transform: rotate(45deg);
        background-color: #333;
    }
    .joms-chat__search button::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        left: 0;
        top: 50%;
        transform: rotate(-45deg);
        background-color: #333;
    }
    .joms-chat__header .joms-chat__actions {
        display: flex;
        align-items:center;
    }
    .button-showChats {
        display: inline-block;
        margin-left: 20px;
        padding: 10px 20px;
        background-color: transparent;
        border: 1px solid rgba(255, 215, 72, 1);
        border-radius: 30px;
        font-family: 'Gilroy';
        font-style: normal;
        font-weight: 300;
        font-size: 13px;
        line-height: 151%;
        cursor: pointer;
    }
    .chat__wrapper-block .joms-button--primary {
        width: unset;
        display: inline-block;
        padding: 10px 20px;
    }
    .chat__wrapper-navbar {
        position: fixed;
        left: -100%;
    }
    .chat__wrapper-navbar--visible {
        left: 0px;
        right: 0px;
        width: 100%;
        top: 103px;
        z-index: 99;
        height: 100vh;
    }
    .chat__wrapper-navbar .joms-chat__conversations {
        height: 56%;
        overflow-y: auto;
    }
    .chat__wrapper {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

}


.accordion__container {
    /*margin: 18px 0;*/
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-width: 400;
}

.accordion__section-title {
    background-color: transparent;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    border: none;
    outline: none;
    transition: 0.4s;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion__section-title.active, .accordion__section-title.accordion:hover {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion__section-title:after {
    content: '\23F7';
    font-size: 16px;
    color: #777;
    float: right;
    margin-left: 5px;
    transition: transform .2s ease-in-out;
}

.accordion__section-title.active:after {
    transform: rotate(-180deg);
}

.accordion__section-panel {
    font-size: 16px;
    padding: 0 18px;
    margin: 4px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion__section-panel ul {
    padding-left: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}