* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Firefox */
@-moz-document url-prefix() {
    html, .mobile-menu-children > div,
    .added-items, .custom-options, .locations-body, .select2-container--default .select2-results > .select2-results__options {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

/* scrollbar styles */
html::-webkit-scrollbar, .locations-body::-webkit-scrollbar,
.mobile-menu-children > div::-webkit-scrollbar,
.added-items::-webkit-scrollbar, .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 5px; 
}

html::-webkit-scrollbar-thumb, .locations-body::-webkit-scrollbar-thumb,
.mobile-menu-children > div::-webkit-scrollbar-thumb,
.added-items::-webkit-scrollbar-thumb,  .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
}

body {
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

:root {
    --primary-color: #FBE85F;
    --secondary-color: #2B2B2B;
    --tertiary-color: #EFC4F9;
    --text-color: #212121;
    --hover-color: #5EA467;
    --border-color: #E8E8E8;
    --brand-bg-color: #EDECE7;
    --brand-blue: #A4E6FA;
    --letter-color: #121217;
    --warning-color: #E35858;
    --svg-color: #A8A8A8;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.content {
    display: flex;
    width: 100%;
    max-width: 1190px;
}

.content1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1190px;
}

.bg-color { background: var(--brand-bg-color); }

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.decor {
    overflow: hidden;
    position: relative;
}

.decor::before, .decor::after {
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
}

/*** Remove valid/invalid feedback effects ***/
.was-validated .form-control:valid,
.was-validated .form-control:invalid {
    background-image: none !important;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid,
.was-validated .bootstrap-select select:valid+.dropdown-toggle {
    border-color: var(--border-color) !important;
}

.was-validated .form-control:valid:focus,
.was-validated .form-select:valid:focus {
    box-shadow: none !important;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple]):not([size]) {
    --bs-form-select-bg-icon: none !important;
}

.form-select {
    --bs-form-select-bg-img: none !important;
    background-image: url(../images/arrow-down-l.svg) !important;
    background-size: 8px 5px !important;
    background-position: right 22px center !important;
}

.form-floating > .form-control {
    min-height: unset !important;
}

.invalid-feedback span {
    color: var(--warning-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 5px;
}

.form-floating > label,
.form-floating > .form-control {
    padding-left: 21px !important;
}
/***************************************/

/* intro animation */
.intro {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100vh;
}

.intro-decor1 {
    position: absolute;
    top: 30%;
    left: -25px;
}

.intro-decor2 {
    position: absolute;
    top: -118px;
    right: 40px;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.words > div:first-child {
    margin-bottom: 38px;
}

.words > div:last-child {
    margin-left: 110px;
}

.words > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.title > p:last-child {
    font: 36px 'Gilroy GEO';
    line-height: 36px;
    margin-bottom: 0;
}

.hidden-intro, .hidden {
    display: none !important;
    opacity: 0;
}

.hidden-intro.show {
    display: block;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.intro .title img {
    opacity: 0;
    animation: fadeAndSlide 1s ease-out forwards;
}

.intro .title img:nth-child(1) {
    animation-delay: 0.2s;
    transform: translateY(-100%);
}

.intro .title div:nth-child(2) img {
    animation-delay: 0.5s;
    transform: translateX(-100%);
}

.intro .title div:nth-child(3) img {
    animation-delay: 0.7s;
    transform: translateX(100%);
}

.intro .title p {
    opacity: 0;
    animation: fadeAndSlide 1s ease-out forwards;
    animation-delay: 1s;
    transform: translateY(50%);
}

@keyframes fadeAndSlide {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Variation for horizontal slides */
@keyframes fadeAndSlideHorizontal {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.intro-decor1, .intro-decor2 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawSVG 3s linear forwards;
}
  
.intro-decor2 {
    animation: drawSVG 1.5s linear forwards;
}

@keyframes drawSVG {
    to {
      stroke-dashoffset: 0;
    }
}
  
.intro-decor1 path, .intro-decor1 line,
.intro-decor2 path, .intro-decor2 line  {
    fill: none;
    stroke: #2b2b2b;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}
  
.intro-decor1 path:nth-child(1) { animation-delay: 0.2s; }
.intro-decor1 path:nth-child(2) { animation-delay: 0.4s; }
.intro-decor1 path:nth-child(3) { animation-delay: 0.6s; }
.intro-decor2 path:nth-child(1) { animation-delay: 0.05s; }
.intro-decor2 path:nth-child(2) { animation-delay: 0.1s; }
.intro-decor2 path:nth-child(3) { animation-delay: 0.15s; }
.intro-decor1 line { animation-delay: 0.8s; }
.intro-decor2 line { animation-delay: 0.4s; }

@keyframes drawPath {
    to {
      stroke-dashoffset: 0;
    }
}
/* intro animation */

/* reminders */
.reminder {  
    background: white;
    border-radius: 10px;
    padding: 25px 50px;
    position: absolute;
    top: -1000px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 580px;
    overflow: hidden;
    z-index: 998;
}

.reminder.active { top: 50%; }

.reminder > p {
    color: var(--secondary-color);
    -webkit-text-stroke: 1px var(--secondary-color);
    text-align: center;
    font: 20px 'BPG Mrgvlovani';
    line-height: 28px;
    margin-bottom: 25px;
}

.reminder-text {
    background: var(--hover-color);
    border-radius: 10px;
    color: white;
    gap: 17px;
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
    padding: 35px 45px;
    margin-bottom: 25px;
}
.vacine .reminder-text { background: var(--tertiary-color); color: var(--secondary-color); }
.grooming .reminder-text { background: #FCF5C5; color: var(--secondary-color); }
.other .reminder-text { background: var(--brand-blue); color: var(--secondary-color); }

.reminder-text p {
    max-width: 320px;
    margin-bottom: 0;
}

.reminder-text > div {
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.reminder-text > div img {
    width: 19px;
    height: 26px;
    object-fit: contain;
}

.reminder a {
    background: #ECECEC;
    color: var(--secondary-color);
    text-decoration: none;
    width: 300px;
    height: 45px;
    margin: 0 auto;
}

.close-reminder {
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 16px;
}

header {
    background: var(--hover-color);
    min-height: 100px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

header .language-change {
    display: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1326px;
}

.logo {
    display: flex;
    width: 140px;
    height: 58px;
}

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

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100px;
    margin-right: auto;
}

.menu-item {
    cursor: pointer;
    height: 100%;
    position: relative;
    flex-grow: 1;
}

.menu-item > a {
    color: white;
    -webkit-text-stroke: 0.3px white;
    text-decoration: none;
    font: 14px 'Helvetica Medium';
    line-height: 19px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.child-item {
    background: white;
    display: none;
    position: absolute;
    top: 100%;
    left: -260px;
    z-index: 1001;
    width: 435px;
}

.menu-item:hover .child-item,
.child-item.active {
    display: flex;
}

.main-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 184px;
    padding: 30px 17px;
}

.nav-item1 {
    border-radius: 46px;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9.5px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 72px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-item1:hover {
    background: var(--brand-bg-color);
}

.nav-item1 img, .nav-item1 svg {
    width: 26px;
    object-fit: contain;
}

.nav-item1 svg {
    height: 26px;
    stroke: var(--letter-color);
    transition: all 0.3s ease;
}

.nav-item1:last-child {
    margin-top: -9px;
    height: 103px;
}

.nav-item1:last-child:hover {
    background: var(--hover-color);
    color: white;
}

.nav-item1:last-child:hover svg  {
    stroke: white;
}

.children {
    background: var(--secondary-color);
    padding: 55px 0 40px 20px;
    width: 251px;
    position: relative;
}

.children::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 103px;
    margin-left: -13px;
    border-width: 13px;
    border-style: solid;
    border-color: transparent transparent var(--secondary-color) transparent;
}

.children > hr {
    border-color: #404040;
    margin: 0 20px 0 0;
    opacity: 1;
}

.child > a, .mobile-menu-item,
.mobile-child {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    text-decoration: none;
    padding: 30px 20px 30px 0;
}

.child:first-child > a {
    padding-top: 0;
}

.child:last-child > a {
    padding-bottom: 0;
}

.child > a span {
    max-width: 153px;
}

.child > a div, .mobile-menu-item div,
.mobile-child > div {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.child > a:hover div {
    background: var(--primary-color);
}

.grandchildren {
    background: white;
    display: none;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
    padding: 36px 30px;
    position: absolute;
    top: 0;
    width: 340px;
    right: -340px;
    height: 414px;
}

.grandchildren::after {
    content: " ";
    position: absolute;
    top: 69px;
    right: 100%;
    margin-top: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.child:nth-of-type(2) .grandchildren::after { 
    top: 161px;
}

.child:nth-of-type(3) .grandchildren::after { 
    top: 251px;
}

.child:nth-of-type(4) .grandchildren::after { 
    top: 341px;
}

.child:nth-of-type(5) .grandchildren::after { 
    top: 436px;
}

.child:hover .grandchildren {
    display: flex;
}

.grandchildren a {
    background: transparent;
    border: 1px solid var(--svg-color);
    border-radius: 24px;
    color: #5B5B5B;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 14px;
    width: 272px;
    height: 40px;
    transition: all 0.3s ease;
}

.grandchildren a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.utility-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.utility-bar button {
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.tool-tip {
    position: relative;
    transition: all 0.3s ease;
}

.tooltiptext {
    background: rgba(33, 33, 33, 0.9);
    border-radius: 5px;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font: 8px 'BPG Mrgvlovani';
    line-height: 11px;
    min-width: 98px;
    height: 31px;
    padding: 10px 11px;
    position: absolute;
    z-index: 1;
    top: 100%;
} 

.tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(33, 33, 33, 0.9) transparent;
}
  
.tool-tip:hover .tooltiptext {
    display: flex;
}

.wishlist:hover {
    background: var(--tertiary-color);
}

.cart .tooltiptext {
    min-width: unset;
    max-width: 60px;
}

.cart-num {
    /* background: rgba(172, 241, 181, 0.6); */
    background: white;
    border-radius: 50%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 10px 'BPG Mrgvlovani Caps 2010';
    line-height: 14px;
    position: absolute;
    top: -10px;
    right: -3px;
    width: 18px;
    height: 18px;
} 

.search-form {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: -531px;
    height: 531px;
    left: 20%;
    right: 20%;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1001;
}

.search-form.active {
    top: 0;
    left: 0;
    right: 0;
}

.search-form-cont {
    display: flex;
    flex-direction: column;
    gap: 96px;
    width: 100%;
    max-width: 850px;
}

.search-form-cont > div {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    font: 20px 'BPG Mrgvlovani';
    line-height: 28px;
}

.search-form-cont button {
    background: transparent;
    border: none;
}

.search-form-cont input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #CFCFCF;
    color: #707070;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding-bottom: 19px;
}

.search-form-cont input::placeholder {
    color: #707070;
}

.search-form-cont input:focus {
    outline: none;
}

/* looged user nav */
.logged {
    position: relative;
}

.logged-user {
    display: none;
    flex-direction: column;
    position: absolute;
    list-style: none;
    line-height: unset;
    width: 510px;
    top: 100%;
    right: 0;
    z-index: 1001;
    padding-top: 10px;
}

.logged-user-content {
    background: white;
    border-radius: 10px;
    padding: 23px 20px 30px;
    width: 100%;
}

.logged:hover > .logged-user,
.logged-user.active {
    display: flex;
}

.logged-user-content > div:first-child {
    border-bottom: 1px solid var(--brand-bg-color);
    padding-bottom: 20px;
}

.user-logout {
    color: var(--secondary-color);
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    gap: 10px;
    width: 120px;
    height: 40px;
    transition: all 0.3s ease;
}

.user-logout:hover { background: var(--brand-bg-color); }
.user-logout:hover div { background: var(--secondary-color); }
.user-logout div {
    background: var(--brand-bg-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.user-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
    row-gap: 5px;
    margin-top: 18px;
}

/* login popup */
.login-modal-content {
    padding: 45px;
    overflow: hidden;
}

.login-modal-content::after {
    content: '';
    background-image: url('../images/intro-decor2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 112px; 
    height: 125px;
    position: absolute;
    top: -22px;
    right: 24px;
    z-index: 1;
}

.login-header {
    border-color: var(--border-color) !important;
    padding: 0 0 32px 0!important;
}

.login-header .logo {
    margin: 0 auto;
}

.login-body {
    padding: 30px 0 0 !important;
}

.login-form {
    width: 100%;
}

.login-form > p:first-of-type {
    color: var(--text-color);
    -webkit-text-stroke: 0.5px var(--text-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 20px;
    text-align: center;
    margin-bottom: 23px;
}

.login-form > div:first-of-type {
    margin-bottom: 10px;
}

.login-form > div:nth-of-type(2) {
    margin-bottom: 17px;
}

.login-form input {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px !important;
    padding-left: 23px !important;
}

.login-form label {
    color: #818181;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.login-form .valid-feedback,
.login-form .invalid-feedback {
    width: 13px !important;
    height: 13px !important; 
    position: absolute !important;
    right: -6px;
    top: 8px;
}

.password-recovery {
    color: #CFCFCF;
    text-decoration: none;
    display: block;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 37px;
}

.login-btn {
    background: var(--text-color);
    border: none;
    border-radius: 28px;
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 20px;
    width: 100%;
    height: 55px;
    transition: all 0.3s ease;
}
.login-btn:hover { background: var(--hover-color); }

.register-link {
    background: var(--brand-blue);
    border-radius: 23px;
    display: flex;
    justify-content: space-between;
    padding: 15px 28px;
}

.register-link span {
    color: #484848;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.register-link a {
    color: var(--secondary-color);
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: #6D6D6D;
}

.cart-preview {
    background: white;
    position: fixed;
    top: 0;
    right: -416px;
    height: 100vh;
    width: 416px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1001;
}

.cart-preview.active {
    right: 0;
}

.cart-prev-heading {
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    width: 100%;
    height: 80px;
}

.cart-prev-heading button {
    background: transparent;
    border: none;
    border-right: 1px solid var(--border-color);
}

.cart-prev-heading p, .cart-num1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 28px;
}

.cart-prev-heading p {
    border-right: 1px solid var(--border-color);
    font-family: 'BPG Mrgvlovani Caps 2010';
    margin-bottom: 0;
}

.cart-num1 {
    font-family: 'Helvetica Roman';
    -webkit-text-stroke: 0.5px var(--text-color);
}

.added-items {
    height: calc(100vh - 202px);
    overflow-y: auto;
}

.added-item {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 37px 30px 20px;
}

.added-item-img {
    background: var(--brand-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 120px;
    height: 120px;
}

.added-item-img > img:first-child {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.added-item-img > img:last-child {
    position: absolute;
    top: 7px;
    left: 0;
    width: 31px;
    height: 13px;
    object-fit: contain;
}

.added-item-desc {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    max-width: 200px;
}

.added-item-desc > p:first-of-type {
    margin-bottom: 14px;
}

.added-item-desc > p:nth-of-type(2) {
    margin-bottom: 11px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 9px;
}

.quantity-btn {
    background: transparent;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.quantity-btn i {
    color: var(--secondary-color);
    font-size: 10px;
}

.quantity-btn:hover {
    background: var(--border-color);
    border: none;
}

.quantity-btn:focus {
    outline: none;
}

.cart-quantity span,
.product-quantity span {
    color: var(--text-color);
    font: 14px 'Helvetica Roman';
    line-height: 19px;
    display: flex;
    justify-content: center;
    width: 18px;
}

.added-item-price {
    color: #858585;
    font: 16px 'BPG Mrgvlovani';
    line-height: 20px;
    margin-bottom: 0;
}

.remove {
    background: transparent;
    border: none;
    margin-left: auto;
    -webkit-text-stroke: 2px var(--text-color);
}

.added-items-sum {
    background: #F9F9F9;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
    padding: 0 78px 0 30px;
    width: 100%;
    height: 61px;
}

.added-items-sum span:last-child {
    color: var(--hover-color);
}

.cart-actions {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    height: 61px;
}

.cart-actions a {
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.cart-actions a:first-child {
    background: var(--text-color);
}

.cart-actions a:last-child {
    background: #7A7A7A;
}

.cart-actions a:hover {
    background: var(--hover-color);
}

/* mobile menu */
.mobile-menu {
    background: white;
    display: none;
    width: 100%;
    height: 75px;
}

.mobile-menu-children {
    background: var(--secondary-color);
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100% - 175px);
    transition: all 0.3s ease;
    z-index: 4;
}

.mobile-menu-children > div {
    height: calc(100% - 110px);
    overflow: auto;
}

.mobile-menu-children.active {
    left: 0;
}

.mobile-menu-children hr {
    border-color: #404040;
    margin: 0 35px;
    opacity: 1;
}

.mobile-grandchildren {
    background: white;
    gap: 15px;
    padding: 46px 20px;
    position: fixed;
    top: 100px;
    right: -100%;
    height: calc(100% - 285px);
    overflow: auto;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 4;
}

.mobile-grandchildren.active {
    right: 0;
}

.mobile-grandchildren > a {
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--brand-bg-color);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 14px 'BPG Mrgvlovani';
    line-height: 14px;
    width: 353px;
    height: 50px;
    margin: 0 auto 15px;
}

.go-back {
    background: var(--secondary-color);
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 31.25px;
    height: 31.25px;
    z-index: 1000;
}

.mobile-menu > a {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 20%;
}

.mobile-menu > a {
    background: white;
}

.mobile-menu > a.active {
    background: #F7F7F7;
}

.mobile-menu > a > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
}

.mobile-menu > a span {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.mobile-menu > a:nth-child(4) > div {
    background: var(--brand-blue);
    border-radius: 50%;
}

.mobile-child, .mobile-menu-item {
    padding: 18px 35px;
}

.mobile-shop-cont.active {
    background: var(--hover-color);
}

.mobile-shop-cont.active div {
    background: var(--primary-color);
}

.mobile-shop-cont.active div i {
    transform: rotate(-180deg);
}

.mobile-shop { display: none; }
.mobile-shop.active { display: block; }

.mobile-search, .filter-search {
    width: 100%;
    padding: 30px 20px;
    position: relative;
}

.mobile-search input, .filter-search input {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 25px;
    padding: 0 65px 0 25px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px;
    width: 100%;
}

.mobile-search input:focus, .filter-search input:focus {
    outline: none;
}

.mobile-search div, .filter-search div {
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
}

/* navbar */
.nav-container {
    background: var(--brand-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    padding-left: calc((100vw - 1326px) / 2);
    padding-right: calc((100vw - 1326px) / 2);
    position: sticky;
    position: -webkit-sticky;
    top: 100px;
    z-index: 999;
    height: 50px;
}

.nav-items {
    display: flex;
    align-items: center;
    height: 100%;
    width: calc(100% - 150px);
}

.nav-item {
    border-left: 1px solid #d4d4d4;
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;  
    height: 100%;
    transition: all 0.3s ease;
    flex: 1;
    &:hover {
        background: var(--primary-color);
    }
}
.nav-item:last-child { border-right: 1px solid #d4d4d4; }

.nav-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-item span {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 14px 'Helvetica Medium';
    line-height: 19px;
    text-transform: uppercase;
}

/* lanuage changer */
.language-change {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-change > span:first-of-type {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--text-color);
    font: 12px 'Campton';
    line-height: 18px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 18px;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 3px;
    background: var(--secondary-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}
  
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
  
.slider.round:before {
    border-radius: 50%;
}

/* footer */
footer {
    align-items: center;
    border-top: 1px solid #A9A9A9;
    background: var(--brand-bg-color);
    min-height: 395px;
}

.footer-content {
    align-items: flex-start;
    justify-content: space-between;
}

.footer-content .logo {
    width: 214px;
    height: 89px;
    margin-bottom: 25px;
}

.footer-content > div:first-child .footer-socials,
.mobile-copyright, .mobile-applications {
    display: none;
}

.copyright, .creator {
    color: #7E7E7E;
    font: 12px "BPG Arial";
    line-height: 14px;
    margin-bottom: 0;
}

.copyright {
    margin-bottom: 5px;
}

.creator a {
    color: var(--hover-color);
    text-decoration: none;
}

.footer-contact > p:first-child {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 19px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-contact-items > div,
.footer-contact-items > a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.icon {
    background: var(--secondary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 29px;
    transition: all 0.3s ease;
}

.icon i {
    font-size: 10px;
}

.footer-contact-items > div:hover .icon,
.footer-contact-items > a:hover .icon {
    background: var(--hover-color);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    background: var(--secondary-color);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    transition: all 0.3s ease;
}

.footer-socials a i {
    font-size: 12px;
}

.footer-socials a:hover {
    background: var(--hover-color);
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin-bottom: 0;
}

.footer-menu a {
    color: var(--text-color);
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.application hr {
    border-color: #C1BEB0;
    margin: 20px 0;
    opacity: 1;
}

.application > p:first-of-type {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 8px;
}

/* banner */
.banner-container {
    position: relative;
    width: 100%;
    height: 460px;
}

.mobile-banner-swiper {
    display: none !important;
}

.banner-slide {
    width: 100%;
    height: 460px;
}

.banner-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.banner-nav {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.banner-nav:hover {
    background: var(--primary-color);
    color: white;
}

.prev-banner { left: 88px; }
.prev-banner:hover { left: 78px; }
.next-banner { right: 88px; }
.next-banner:hover { right: 78px; }

/* category slider */
.category-swiper-cont {
    display: none;
    background: var(--brand-bg-color);
    padding-top: 40px;
}

.category-swiper {
    width: 100%;
}

.category-slide {
    background: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 190px !important;
    height: 190px !important;
}

.category-slide img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.category-slide span {
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    text-align: center;
}

/* new products slider */
.new-prod-prev, .pop-prod-prev {
    background: var(--brand-bg-color);
    padding-top: 48px;
    padding-bottom: 57px;
}

.new-prod-prev::before {
    background-image: url('../images/bg-decor3.png');
    transform: scaleX(-1);
    width: 160px;
    height: 178px;
    left: -70px;
    bottom: 17px;
    z-index: 1;
}

.new-prod-prev::after {
    background-image: url('../images/bg-decor1.svg');
    width: 198px;
    height: 218px;
    top: 0;
    right: -136px;
    z-index: 1;
}

.preview-title {
    color: var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 30px;
}

.preview-title1 {
    color: var(--secondary-color);
    font: 20px 'BPG Mrgvlovani';
    line-height: 20px;
    margin-bottom: 20px;
}

.new-products-cont {
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.new-products, .last-products {
    padding-top: 10px !important;
}

.product-card {
    background: white;
    border-radius: 5px;
    padding: 14px 12px 19px;
    position: relative !important;
}

.product-img-cont {
    background: var(--brand-bg-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 176px;
    margin-bottom: 11px;
}

.prod-img {
    border-radius: 5px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand {
    background: var(--primary-color);
    border-radius: 5px 0 0 0;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 31px;
    object-fit: contain;
}

.add-to-fave {
    background: rgba(43, 43, 43, 0.32);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 37px;
    height: 37px;
    z-index: 2;
    transition: all 0.3s ease;
}

.add-to-fave svg {
    fill: white;
    transition: all 0.3s ease;
}

.tooltiptop {
    background: rgba(33, 33, 33, 0.85);
    border-radius: 5px;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font: 8px 'BPG Mrgvlovani';
    line-height: 11px;
    min-width: 98px;
    height: 31px;
    padding: 10px 11px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
} 

.tooltiptop::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(33, 33, 33, 0.85) transparent transparent transparent;
}

.add-to-fave:hover, .add-to-fave.active {
    background: var(--tertiary-color);
}

.add-to-fave:hover svg, .add-to-fave.active svg {
    fill: var(--secondary-color);
}
  
.add-to-fave:hover .tooltiptop,
.product-actions button:hover .tooltiptop {
    display: flex;
}

.product-details-cont {
    display: flex;
    position: relative;
    padding: 0 10px;
}

.product-details > p:first-child {
    font: 10px 'BPG Phone Sans';
    line-height: 12px;
    height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 13px;
}

.product-details > p:first-child a {
    color: var(--text-color);
    text-decoration: none;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount {
    color: var(--secondary-color);
    text-decoration: line-through;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 14px;
}

.original {
    background: var(--primary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    padding: 5px 9px;
    -webkit-text-stroke: 0.5px var(--secondary-color);
}

.product-actions {
    position: absolute;
    bottom: 0;
    right: 0;
}

.product-actions button {
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.product-actions button svg {
    fill: white;
    transition: all 0.3s ease;
}

.product-actions button:hover {
    background: var(--primary-color);
}

.product-actions button:hover svg {
    fill: var(--secondary-color);
}

.go-to-shop {
    background: white;
    border-radius: 20px;
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin: 0 auto;
    width: 220px;
    height: 40px;
    position: relative;
    z-index: 2
}

.go-to-shop:hover {
    background: var(--primary-color);
}

.next-prod, .prev-prod, .next-last-prod, .prev-last-prod,
.prev-lost, .next-lost {
    background: white;
}

.prev-prod, .prev-pod, .prev-last-prod, .prev-lost { left: -25px; }
.next-prod, .next-pod, .next-last-prod, .next-lost { right: -25px; }
.prev-prod:hover, .prev-pod:hover, .prev-last-pod:hover, .prev-lost:hover { left: -35px; }
.next-prod:hover, .next-pod:hover, .next-last-pod:hover, .next-lost:hover { right: -35px; }

.premium {
    display: flex;
    gap: 5px;
    position: absolute;
    left: 22px;
    top: 160px;
}

.premium img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.premium p {
    background: var(--secondary-color);
    border-radius: 10px;
    color: white;
    font: 8px 'BPG Phone Sans';
    line-height: 9px;
    padding: 0 9px;
    margin-bottom: 0;
}

/* friendly locations preview */
.locations-preview {
    display: flex;
    position: relative;
    width: 100%;
    height: 500px;
}

.locations-preview > img:first-child {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    height: 87px;
    object-fit: contain;
    z-index: 2;
}

.location-left {
    background: var(--primary-color);
    overflow: hidden;
    position: relative;
    width: 50%;
}

.location-left > img:first-child {
    position: absolute;
    top: -80px;
    left: calc((100vw - 1060px) / 2);
}

.location-left div {
    position: absolute;
    left: calc((100vw - 1060px) / 2);
    bottom: 150px;
}

.location-left div > img:nth-child(2) {
    display: none;
}

.location-left p {
    color: white;
    font: 24px 'Gilroy GEO';
    line-height: 34px;
    margin-bottom: 0;
    position: absolute;
    left: 13px;
    top: 6px;
}

.location-left a {
    background: var(--secondary-color);
    border-radius: 28px;
    color: white;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    position: absolute;
    left: calc((100vw - 770px) / 2);
    bottom: 55px;
    width: 177px;
    height: 40px;
}

.location-left a:hover {
    background: white;
    color: var(--secondary-color);
}

.locations-preview > img:last-child {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

/* popular product preview */
.pop-prod-prev {
    padding-top: 80px;
}

.pop-products {
    display: none !important;
}

.pop-prod-prev::before {
    background-image: url('../images/bg-decor2.png');
    width: 259px;
    height: 312px;
    left: -130px;
    top: 90px;
}

.pop-prod-prev::after {
    background-image: url('../images/bg-decor3.png');
    width: 190px;
    height: 210px;
    top: 50%;
    transform: translateY(-50%);
    right: -110px;
}

.pop-prod-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 18px;
    row-gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* brand swiper */
.brand-swiper-prev {
    padding-top: 50px;
    padding-bottom: 60px;
}

.brand-swiper-prev > .content1 > a {
    display: none;
}

.brand-swiper-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 45px;
}

.brand-swiper-heading span {
    color: var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
}

.brand-swiper-heading a {
    border-bottom: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding-bottom: 6px;
    transition: all 0.3s ease;
}

.brand-swiper-heading a:hover {
    border-color: var(--hover-color);
    color: var(--hover-color);
}

.brand-swiper-cont {
    position: relative;
}

.brand-slide {
    display: flex !important;
    flex-direction: column;
    gap: 23px;
    align-items: center;
}

.brand-slide > div {
    background: white;
    border: 1px solid rgba(112, 112, 112, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    height: 167px;

    a {
        display: flex;
        width: 110px;
        height: 110px;
    }
}

.brand-slide > div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-slide span {
    font: 14px 'Helvetica Bold';
    line-height: 20px;
}

.prev-brand, .next-brand {
    background: white;
    top: 88px;
}

.prev-brand { left: -35px; }
.next-brand { right: -35px; }
.prev-brand:hover { left: -45px; }
.next-brand:hover { right: -45px; }

/* podcasts and blogs */
.podcast-swiper-cont {
    position: relative;
}

.podcast-swiper-prev {
    background: var(--secondary-color);
    padding-top: 87px;
    padding-bottom: 180px;
    position: relative;
    overflow: hidden;
}

.podcast-swiper-prev::before {
    background-image: url('../images/bg-decor4.png');
    width: 160px;
    height: 178px;
    left: -90px;
    bottom: 200px;
}

.podcast-swiper-prev::after {
    background-image: url('../images/bg-decor5.png');
    width: 198px;
    height: 180px;
    bottom: 0;
    right: -120px;
}

.podcast-swiper-title {
    color: white;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    text-align: center;
    margin-bottom: 30px;
}

.podcast-img-cont {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.podcast-img-cont .type, .blog-card .type {
    background: var(--border-color);
    border-radius: 5px 0 0 0;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    padding: 14px 19px;
    position: absolute;
    top: 0;
    left: 0;
}

.podcast-img-cont img {
    border-radius: 5px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.podcast-img-cont img:hover {
    transform: scale(1.2);
}

.pod-title {
    color: white;
    font: 14px 'BPG Mrgvlovani';
    line-height: 18px;
    height: 36px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 25px;
}

.see-all {
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: inline-block;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 22px;
    padding-bottom: 8px;
}

.prev-pod, .next-pod {
    background: white;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    top: 140px;
}

/* shop page */
.shop-container {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 115px;
    min-height: 100vh;
}

.policy-container > .content1,
.faq-container > .content1, .content-container > .content1,
.common-container > .content1 {
    position: relative;
    z-index: 2;
} 

.shop-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.shop-heading .page-title {
    margin-bottom: 0;
}

.filter-buttons button {
    display: none;
    border: none;
    border-radius: 5px;
    width: 62px;
    height: 45px;
}

.filter-buttons button:first-child {
    background: var(--secondary-color);
    margin-right: 10px;
}

.filter-buttons button:last-child {
    background: var(--primary-color);
}

.decors {
    position: absolute;
    z-index: 1;
}

.common-container > img:first-of-type {
    bottom: 10px;
    left: -129px;
}

.common-container > img:nth-of-type(2),
.faq-container > img:nth-of-type(2) {
    top: 0;
    right: -146px;
}

.common-container > img:nth-of-type(3) {
    transform: scaleX(-1);
    width: 160px;
    height: 178px;
    left: -90px;
    top: 190px;
}

.common-container > img:nth-of-type(4),
.faq-container > img:nth-of-type(4) {
    right: -110px;
    bottom: 40px;
}

.page-title {
    color: var(--secondary-color);
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
    margin-bottom: 30px;
}

.shop-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.shop-filter-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 251px;
}

.filter {
    background: white;
    border-radius: 5px;
    filter: drop-shadow(0px 3px 21px rgba(0, 0, 0, 0.16));
    padding: 30px 20px;
}

.filter > p:first-of-type {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    -webkit-text-stroke: 0.5px var(--secondary-color);
    margin-bottom: 0;
}

.filter > p:nth-of-type(2) {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 0;
    margin-top: 10px;
}

.filter hr {
    border-color: var(--brand-bg-color);
    opacity: 1;
    margin: 16px 0;
}

.custom-select {
    position: relative;
    margin-bottom: 10px;
}

.custom-select-head {
    border: 1px solid var(--brand-bg-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 15px;
    width: 100%;
    height: 35px;
}

.custom-select-head div p:first-child {
    color: #8D8D8D;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.custom-select-head div p:last-child {
    color: var(--secondary-color);
}

.custom-select-head p {
    color: #B2B2B2;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.custom-select-head i,
.category-title i {
    color: #707070;
    font-size: 8px;
    transition: all 0.3s ease;
}

.custom-select-head.active i,
.filter-item.show i {
    transform: rotate(180deg);
}

.custom-options {
    background: white;
    border-radius: 0 0 5px 5px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding: 0 16px 0 25px;
    position: absolute;
    top: 100%;
    width: 100%;
    max-height: 0;
    overflow: auto;
    z-index: 1;
}

.custom-options.visible {
    max-height: 220px;
    border: 1px solid var(--brand-bg-color);
    border-top: 0;
}

/* scrollbar styles */
.custom-options::-webkit-scrollbar {
    width: 3px; 
}

.custom-options::-webkit-scrollbar-thumb {
    background: #ECECEC; 
    height: 38px;
    border-radius: 2px;
} 

.custom-option label {
    color: var(--secondary-color);
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.custom-option input {
    display: none;
}

.custom-option:first-child {
    padding-top: 17px;
}

.custom-option:last-child {
    padding-bottom: 23px;
}

.filter-item {
    margin-bottom: 16px;
}

.category-title {
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding-right: 10px;
}

.category-items {
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.category-items-cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 10px 0 0;
}

.category-item {
    display: flex;
    gap: 14px;
}

.category-item label {
    color: #6E6E6E;
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: calc(100% - 35px);
}

.check, .check1 {
    border: 1px solid var(--brand-bg-color);
    background: transparent;
    border-radius: 3px;
    cursor: pointer;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
}

.check:checked,
.check:hover {
    background: var(--primary-color);
}

.filter-title {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 16px !important;
    margin: 0 0 15px 0 !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.reset {
    background: transparent;
    border: none;
    color: #B2B2B2;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.reset:focus {
    outline: none;
}

.shop-grid-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
    width: calc(100% - 261px);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 11px;
    row-gap: 20px;
}

.pagination {
    position: relative;
    display: flex !important;
    justify-content: center;
    max-width: 115px;
    margin: 0 auto;
}

.prev-page, .next-page {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    cursor: pointer;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-page i, .next-page i {
    font-size: 13px;
}

.prev-page { left: -37px; }
.prev-page:hover { left: -47px; }
.next-page { right: -37px; }
.next-page:hover { right: -47px; }

.pagination-buttons {
    display: flex;
    gap: 17px;
}

.pagination-buttons button {
    background: transparent;
    border: none;
    color: #929395;
    cursor: pointer;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
}

.pagination-buttons button.active {
    color: var(--secondary-color);
}

.mobile-filter, .mobile-sort, .mobile-card, .mobile-address,
.mobile-lost-found-filter {
    background: white;
    border-radius: 10px 10px 0 0;
    padding: 30px 20px 60px;
    position: fixed;
    bottom: -100%;
    left: 0;
    height: calc(100% - 42px);
    width: 100vw;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-filter.active, .mobile-sort.active,
.mobile-card.active, .mobile-address.active,
.mobile-lost-found-filter.active {
    bottom: 0;
}

.mobile-filter-heading, .mobile-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    margin-bottom: 22px;
}

.mobile-filter-heading p, .mobile-card-heading span {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    display: flex;
    gap: 10px;
    line-height: 19px;
    margin-bottom: 0;
}

.mobile-filter-heading button, .mobile-card-heading button {
    background: transparent;
    border: none;
}

.filter-search {
    padding: 0;
    margin-bottom: 20px;
}

.filter-search input {
    background: rgba(185, 185, 185, 0.12);
    color: var(--secondary-color);
}

.filter-search div {
    background: var(--secondary-color);
    right: 18px;
}

.mobile-filter hr, .mobile-sort hr, .mobile-card hr,
.mobile-address hr, .mobile-lost-found-filter hr {
    border-color: var(--brand-bg-color);
    margin: 0 -20px;
    opacity: 1;
}

.mobile-search-items, .mob-lostfound-form {
    height: calc(100% - 110px);
    overflow: auto;
    padding: 30px 0 50px;
}

.mobile-search-items hr {
    border-color: var(--brand-bg-color);
    margin: 30px 0 20px;
    opacity: 1;
}

.mobile-filter .reset, .mobile-sort .reset {
    display: block;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 40px;
}

.mobile-filter-btn {
    background: var(--text-color);
    border: none;
    border-radius: 23px;
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 353px;
    height: 45px;
}

.visible-product-types {
    border: 1px solid var(--brand-bg-color);
    border-radius: 3px;
    padding: 22px;
    margin-bottom: 22px;
}

.visible-product-types > div {
    display: none;
    flex-direction: column;
    gap: 10px;
}

/* add to cart modal */
.cart-modal .modal-lg {
    --bs-modal-width: 722px !important;
    top: 55px !important;
}

.cart-modal .add-to-fave {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
}

.cart-modal .brand {
    border-radius: 0;
    top: 15px;
    z-index: 2;
}

.cart-modal-content {
    border: none !important;
}

.cart-modal-content .btn-close {
    color: white;
    width: 18.5px;
    height: 18.5px;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    right: -40px;
    top: 20px;
    --bs-btn-close-opacity: 1;
    --bs-btn-close-color: white;
    --bs-btn-close-hover-opacity: 1;
    --bs-btn-close-bg: none;
}

.cart-modal-body {
    display: flex !important;
    align-items: flex-start;
    gap: 30px;
    padding: 39px !important;
}

.cart-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    width: 43%;
}

.cart-modal-swiper {
    width: 100%;
    height: 276px;
}

.cart-modal-slide, .cart-modal-img-button,
.product-slide, .product-img-button {
    background: var(--brand-bg-color);
    border-radius: 5px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.cart-modal-slide > img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.cart-modal-img-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cart-modal-img-button {
    cursor: pointer;
    width: 86px;
    height: 86px;
}

.cart-modal-img-button > img  {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cart-modal-product > p:first-child,
.prod-description > p:first-child {
    color: var(--text-color);
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
    margin-bottom: 0;
}

.cart-modal-product > hr {
    border-color: var(--brand-bg-color);
    opacity: 1;
    margin: 15px 0;
}

.cart-product-intro *,
.cart-product-intro {
    color: var(--text-color) !important;
    font: 10px 'BPG Mrgvlovani' !important;
    line-height: 18px !important;
}

.cart-product-intro {
    margin-bottom: 15px;
}

.cart-modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-modal-form > div {
    display: flex;
    align-items: center;
    gap: 45px;
}

.cart-form-title {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    min-width: 88px;
}

.cart-modal-form .price {
    color: var(--hover-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
}

.weights {
    display: flex;
    gap: 6px;
}

.weight input {
    display: none;
}

.weight label {
    border: 1px solid var(--brand-bg-color);
    border-radius: 20px;
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: auto;
    height: 39px;
    min-width: 39px;
    padding: 0 10px;
}

.weight label.active {
    background: #616161;
    border-color: #616161;
    color: white;
}

.product-quantity {
    background: white;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    width: 127px;
    height: 39px;
}

.cart-increase, .cart-decrease {
    background: transparent;
    border: none;
    color: var(--svg-color);
    font: 12px 'BPG Mrgvlovani';
}

.cart-form-buttons {
    display: grid !important;
    grid-template-columns: 2fr 1fr;
    gap: 10px !important;
}

.cart-form-buttons button,
.add-to-cart1, .buy {
    border: none;
    border-radius: 28px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    height: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

.cart-form-buttons button:first-child {
    background: var(--brand-bg-color);
}

.cart-form-buttons button:last-child {
    background: var(--hover-color);
    color: white;
}

.cart-form-buttons button:hover {
    background: var(--secondary-color);
    color: white;
}

/* product page */
.product-page-container {
    position: relative;
    overflow: hidden;
    padding-top: 55px;
    padding-bottom: 65px;
}

.product-page-container > img:nth-of-type(2) { top: 0px; }
.product-page-container > img:nth-of-type(3) { top: 20%; }
.product-page-container > .content1 { position: unset; }
.product-page-container .content {
    align-items: flex-start;
    gap: 30px;
}

.back-to-shop, .back {
    background: var(--brand-bg-color);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-bottom: 15px;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.back-to-shop i { font-size: 12px;}
.back i { font-size: 14px;}

.back-to-shop:hover, .back:hover {
    background: var(--primary-color);
}

.product {
    width: 628px;
}

.product-images {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.product-img-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.product-swiper {
    margin: 0 !important;
    width: 461px;
    height: 461px;
}

.product-swiper > img:first-child {
    border-radius: 5px 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 150px;
    height: 65px;
    object-fit: contain;
}

.product-swiper .add-to-fave {
    display: none;
}

.product-slide img {
    width: 450px;
    height: 450px;
    object-fit: contain;
    /* mix-blend-mode: multiply; */
}

.product-img-button {
    cursor: pointer;
    width: 147px;
    height: 147px;
}

.product-img-button img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    /* mix-blend-mode: multiply; */
}

.description-content {
    background: var(--brand-bg-color);
    border-radius: 5px;
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 18px;
    padding: 42px 33px;
    position: relative;
    z-index: 2;
}

.description-content * {
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 18px !important;
}

.description-title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 14px 'BPG Mrgvlovani Caps 2010' !important;
    line-height: 19px !important;
    margin-bottom: 21px;
}

.desc-content {
    background: white;
    padding: 20px 28px 20px 20px;
    margin-bottom: 30px;
}

.description-content ul {
    padding-left: 35px;
}

.prod-description-cont {
    width: calc(100% - 658px);
    position: relative;
    z-index: 2;
}

.prod-description {
    background: var(--brand-bg-color);
    border-radius: 5px;
    padding: 30px 30px 35px 30px;
    width: 100%;
    margin-bottom: 20px;
}

.prod-description > hr {
    border-color: #CECECE;
    opacity: 1;
    margin: 24px 0;
}

.prod-description .cart-modal-form {
    gap: 20px;
}

.cart-form-actions {
    gap: unset !important;
    margin-top: 5px;
}

.cart-form-actions > .add-to-fave {
    position: relative;
    top: unset;
    right: unset;
    width: 40px;
    height: 40px;
    margin-right: 25px;
}

.add-to-cart1 {
    background: var(--secondary-color);
    color: white;
    width: 220px;
    margin-right: 11px;
}

.add-to-cart1 svg {
    display: none;
}

.add-to-cart1:hover {
    background: #3A3939;
}

.buy {
    background: var(--hover-color);
    color: white;
    width: 176px;
}

.buy:hover {
    background: #66AC6F;
}

.delivery-offer {
    background: var(--hover-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 87px;
    padding: 0 28px;
}

.delivery-offer > div {
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.delivery-offer p {
    color: white;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
    max-width: calc(100% - 70px);
}

.delivery-offer span {
    color: var(--primary-color);
}

.mobile-description-content {
    display: none;
    margin-top: 30px;
}

.desc-title {
    background: var(--brand-bg-color);
    border-radius: 3px;
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 10px;
}

.desc-title p {
    margin-bottom: 0;
}

.desc-title .toggle-icon.minus {
    display: none;
}

.desc-container {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.desc-cont {
    background: var(--brand-bg-color);
    border-radius: 5px;
    padding: 20px;
}

.desc-cont > div {
    background: white;
    border-radius: 5px;
    padding: 20px;
}

.similar-products .product-card {
    border: 1px solid var(--brand-bg-color);
}

.similar-products .pop-prod-grid {
    margin-bottom: 127px;
}

.cart-message {
    position: fixed;
    top: -400px;
    right: 71px;
    width: 380px;
    transition: all 0.5s ease;
    overflow: hidden;
    z-index: 1000;
}

.cart-message.active {
    top: 86px;
}

.added-preview {
    background: white;
    border-radius: 5px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    padding: 25px 31px 28px;
    margin-bottom: 10px;
    width: 364px;
}

.img-container {
    background: var(--brand-bg-color);
    width: 60px;
    height: 60px;
}

.img-container img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.added-preview .text {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    max-width: 180px;
}

.added-preview > a {
    background: #ECECEC;
    border-radius: 23px;
    color: var(--secondary-color);
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-top: 14px;
    width: 100%;
    height: 45px;
    transition: all 0.3s ease;
}

.added-preview > a:hover {
    background: var(--primary-color);
}

.delivery-offer1 {
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 31px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    height: 61px;
    width: 364px;
    margin-bottom: 5px;
}

.delivery-offer1 > div {
    background: var(--primary-color);
    border-radius: 50%;
    width: 27px;
    height: 27px;
}

.delivery-offer1 > div img {
    transform: scale(0.675);
}

.delivery-offer1 p {
    color: var(--secondary-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
    max-width: 254px;
}

.delivery-offer1 span {
    color: var(--hover-color);
}

#close-message {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 0px;
}

/* cart page */
.cart-container {
    padding-top: 50px;
    padding-bottom: 185px;
}

.cart-heading {
    margin-bottom: 30px;
}

.cart-heading > span:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-right: 13px;
}

.cart-heading > span:last-child {
    color: var(--svg-color);
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
}

.cart-details {
    display: flex;
    gap: 30px;
}

.products-in-cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 64.7%;
}

.product-in-cart, .ordered-item, .wishlist-item {
    border: 1px solid var(--brand-bg-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
}

.img-container1 {
    background: var(--brand-bg-color);
    border-radius: 5px;
    position: relative;
    width: 97px;
    height: 97px;
}

.img-container1 img:first-child {
    object-fit: contain;
    width: 67px;
    height: 67px;
    mix-blend-mode: multiply;
}

.img-container2 img:last-child  {
    position: absolute;
    top: 7px;
    left: 0;
    width: 31px;
    height: 13px;
    object-fit: contain;
}

.product-in-cart-desc, .ordered-item-desc {
    width: calc(100% - 117px);
}

.product-in-cart-head, .ordered-item-head,
.wishlist-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 14px;
}

.product-in-cart-head span, .ordered-item-head span:first-child,
.wishlist-head span {
    max-width: 324px;
    height: 32px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-in-cart-head button, .wishlist-head button {
    background: transparent;
    border: none;
}

.product-in-cart-head button svg, .wishlist-head button svg {
    fill: var(--svg-color);
    transition: all 0.3s ease;
}

.product-in-cart-head button:hover svg,
.wishlist-head button:hover svg {
    fill: var(--warning-color);
}

.cart-summery, .order-summery {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sum {
    color: var(--secondary-color);
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
}

.cart-summery .product-quantity {
    border: 1px solid var(--brand-bg-color);
    justify-content: space-evenly;
    filter: none;
    width: 80px;
    height: 29px;
}

.cart-summery .product-quantity button {
    font-size: 6px;
}

.bill-rules {
    width: 32.7%;
}

.bill {
    padding: 27px 30px 35px;
}

.pay-methods, .terminals, .bill {
    background: #FAFAF8;
    border-radius: 5px;
    margin-bottom: 20px;
}

.bill hr {
    border-color: #D8D8D8;
    opacity: 1;
    margin: 0 0 24px 0;
}

.bill > p:first-child, .total-price {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 30px;
}

.bill-details {
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 18px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 26px;
}

.bill-link {
    background: var(--secondary-color);
    border: none;
    border-radius: 26px;
    color: white;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 260px;
    height: 50px;
    transition: all 0.3s ease;
}
.bill-link1 { width: 100%; }

.bill-link:hover {
    background: #3A3A3A;
}

.total-price {
    margin-bottom: 0;
    font-family: "BPG Mrgvlovani";
}

.bill-rules .delivery-offer p {
    max-width: calc(100% - 70px);
}

/* delivery pages */
.delivery-container {
    padding-top: 50px;
    padding-bottom: 185px;
}

.delivery-heading {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 40px;
}

.mobile-delivery-heading {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-delivery-heading span {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
}

.mobile-delivery-heading a {
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 30px;
    height: 30px;
}

.delivery-heading a {
    color: var(--svg-color);
    text-decoration: none;
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
}

.delivery-heading a.active {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
}

.delivery-heading div {
    background: var(--brand-bg-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    width: 30px;
    height: 30px;
}

.delivery-heading div.active {
    background: var(--primary-color);
}

.delivery-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%
}

.personal-info, .delivery-form,
.pay-content {
    width: 64.7%;
}

.personal-info label, .select-new-address label, .lost-found-form label,
.register-form label, .account-form label, .add-card-form label,
.location-filter label, .recovery-form label {
    color: #8D8D8D !important;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.personal-info input, .account-form input, .lost-found-form input,
.address-input input, .register-form input, .add-card-form input, .recovery-form input {
    border-color: var(--brand-bg-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px !important;
    padding-left: 21px !important;
}

.data-title {
    color: #3A3A3A;
    -webkit-text-stroke: 0.5px #3A3A3A;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 20px;
}

.name-inputs {
    display: flex;
    gap: 22px;
    margin-bottom: 10px;
}

.name-inputs > div {
    width: 48.5%;
}

.phone-input {
    margin-bottom: 20px;
}

.personal-info > .phone-input {
    margin-bottom: 40px;
}

.phone-input > span:first-child {
    color: #8D8D8D;
    font: 9px 'BPG Mrgvlovani';
    line-height: 12px;
}

.phone {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.phone button {
    background: transparent;
    border: 1px solid var(--brand-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px;
    height: 50px;
    width: 124px !important;
}

.phone .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 124px !important;
}

.phone .bootstrap-select .dropdown-menu {
    min-width: 220px;
}

.phone button {
    background: white;
}

.phone button:hover {
    border-color: var(--brand-bg-color);
    background: transparent;
}
.phone .bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.phone #number, .trustee-phone,
.register-phone {
    width: calc(100% - 124px);
}

.country-codes input {
    height: unset !important;
}

#addTrustee, #clearTrustee {
    color: var(--hover-color);
    cursor: pointer;
    -webkit-text-stroke: 0.5px var(--hover-color);
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
}

#clearTrustee {
    color: var(--warning-color);
    -webkit-text-stroke: 0.5px var(--warning-color);
}

/* delivery form elements */
.choose-address {
    position: relative;
}

.choose-address select, .choose-city select, .location-filter select,
.register-city select, .passport-issue select, .edit-city select {
    background-image: url('../images/select-arrow.png') !important;
    background-size: 30px 30px !important;
    background-position: right 20px center !important;
    border-color: var(--brand-bg-color);
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px !important;
    height: 50px !important;
    min-height: 50px !important;
    margin-bottom: 30px;
    padding: 0 0 0 20px !important;
}

.choose-city select, .register-city select, .location-filter select,
.passport-issue select, .edit-city select {
    margin-bottom: 20px;
    padding: 22px 0 .625rem 20px !important;
}

.delivery-details {
    padding-left: 30px;
}

.delivery-details p {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin: 16px 0 10px;
}

.delivery-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.delivery-method label {
    color: var(--secondary-color) !important;
    cursor: pointer;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.delivery-method .check1 {
    margin-right: 7px;
    width: 20px !important;
    height: 20px !important;
    position: relative;
    padding-left: unset !important;
}

.check1:checked {
    background: var(--hover-color);
    border-color: var(--hover-color);
}

.check1:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.comment {
    border-color: var(--brand-bg-color) !important;
    color: var(--secondary-color) !important;
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 16px;
    resize: none;
    height: 86px;
    padding: 15px 20px !important;
}

.comment::placeholder {
    color: #8D8D8D !important;
}

.select-new-address {
    margin-top: -10px;
    padding-left: 50px;
}

.select-new-address hr {
    border-color: var(--brand-bg-color);
    opacity: 1;
    margin: 30px 0 30px -50px;
}

.select-new-address .data-title {
    color: var(--hover-color);
    -webkit-text-stroke: 0.5px var(--hover-color);
}

.choose-city label {
    color: #8D8D8D !important;
    padding-left: 20px !important;
}

.address-input {
    margin-bottom: 20px;
}

.bill-rules .info-block {
    margin-top: 40px;
}

.bill-rules .info-block p, 
.info-block1 p:last-child {
    color: #757575;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.info-block {
    border: 1px solid var(--brand-bg-color);
    border-radius: 5px;
    padding: 33px 20px;
    position: relative;
}

.info-block > div:first-child {
    background: var(--brand-bg-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
}

/* pay page */
.pay-content > .products-in-cart {
    width: 100%;
}

.info-blocks {
    display: grid;
    grid-template-columns: 1.275fr 1fr 1.475fr;
    column-gap: 10px;
    row-gap: 30px;
    margin: 15px 0 30px;
} 

.mob-info-blocks {
    display: none;
}

.info-blocks1 {
    display: grid;
    grid-template-columns: 1.275fr 1fr 1.475fr;
    column-gap: 10px;
    row-gap: 30px;
    margin-bottom: 30px;
}

.info-blocks .info-block > div:first-child {
    color: var(--primary-color);
    font-size: 12px;
    background: var(--secondary-color);
}

.info-blocks .info-block p:first-of-type, 
.info-block1 p:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 10px;
}

.info-blocks .info-block p:last-child {
    color: #757575;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.order-heading1 {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 5px;
}

.order-heading2 {
    margin-bottom: 15px;
    text-align: end;
}

.order-heading2 span:first-child, .savings {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.order-heading2 span:last-child {
    color: var(--hover-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.voucher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.voucher div {
    background: white;
    border: none;
    border-radius: 3px;
    box-shadow: inset 0px 3px 3px rgba(0, 0, 0, 0.07);
    position: relative;
    width: calc(100% - 110px);
    height: 50px;
}

.voucher div img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.voucher div input {
    background: transparent;
    border: none;
    color: #747474;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    width: 100%;
    height: 100%;
    padding-left: 50px;
}

.voucher div input:focus { outline: none; }

.voucher button {
    background: var(--hover-color);
    border: none;
    border-radius: 5px;
    color: white;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    width: 100px;
    height: 50px;
}

.pay-methods, .terminals {
    background: #FAFAF8;
    border-radius: 5px;
    margin-bottom: 20px;
}

.pay-methods {
    padding: 32px 30px 20px;
}

.pay-methods p {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 23px;
}

.pay-methods button {
    background: var(--secondary-color);
    border: none;
    border-radius: 22px;
    width: 48.5%;
    height: 44px;
}

.terminals {
    padding: 30px;
}

.terminals .check1:checked {
    background: #131E33;
    border-color: #131E33;
}

.terminals button {
    border: none;
    border-radius: 25px;
    width: 100%;
    height: 50px;
}

.terminals button span {
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
}

.tbc-terminal {
    background: #00ADF1;
    margin: 0 0 15px;
}

.bog-terminal {
    background: #FD671A;
}

.partial-pay {
    background: #FAFAF8;
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 20px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    padding-left: 44px;
    margin-bottom: 10px;
    width: 100%;
    height: 62px;
}

.partial-pay img {
    border-radius: 5px;
}

.partial-pay:last-of-type {
    margin-bottom: 40px;
}

/* mobile login */
.mobile-login {
    max-width: 393px;
    margin: 0 auto;
    padding: 81px 42px 46px;
    min-height: 600px;
    position: relative;
}

.mobile-login::after {
    content: '';
    background-image: url('../images/intro-decor2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 94px;
    height: 72px;
    position: absolute;
    top: -22px;
    right: 0;
    z-index: 1;
}

.mobile-register-link1 {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-align: center;
    margin-bottom: 15px;
}

.mobile-register-link2 {
    background: var(--brand-blue);
    border-radius: 23px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 100%;
    height: 45px;
}

/* registration page */
.registartion-container {
    background: var(--brand-bg-color);
    padding-top: 60px;
    padding-bottom: 136px;
}

.registartion-container .content {
    align-items: flex-start;
    gap: 40px;
}

.registartion-container .content > * {
    position: relative;
    z-index: 2;
}

.registartion-container::after  {
    background-image: url('../images/bg-decor3.png');
    transform: scaleX(-1);
    width: 190px;
    height: 211px;
    left: -70px;
    top: 200px;
    z-index: 1;
}

.registartion-container::before {
    background-image: url('../images/bg-decor1.svg');
    width: 198px;
    height: 218px;
    bottom: 300px;
    right: -136px;
    z-index: 1;
}

.register-form, .lost-found-form {
    width: 57.14%;
}

.register-form input, .register-form select,
.register-form .phone button, .recovery-email input,
.account-form input, .account-form select,
.account-form .phone button {
    border-color: rgba(209, 204, 176, 0.8);
}

.register-form .data-title {
    font-size: 14px;
    line-height: 19px;
}

.agree-terms .form-check {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.register-form .check1, .account-form .check1,
.lost-found-form .check1 {
    border-color: var(--hover-color);
    width: 20px !important;
    height: 20px !important;
    padding-left: unset !important;
}

.agree-terms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agree-terms label {
    color: var(--text-color) !important;
    font-size: 10px;
}

.agree-terms label a {
    color: unset !important;
    text-decoration: none;
}

.register-form > p:first-child, .lost-found-form > p:first-child {
    color: var(--secondary-color);
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 25px;
}

.register-form .phone-input, .register-address, .agree-terms, .edit-address,
.identification-num, .register-pass, .confirm-pass, .edit-pass {
    margin-bottom: 20px;
}
.register-email { margin-bottom: 30px; }

.fullname-register {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.fullname-register > div {
    width: 48.5%;
}

.eye-icon {
    position: absolute;
    right: 20.5px;
    top: 23px;
    transform: translateY(-50%);
    cursor: pointer;
}

.was-validated .form-control:invalid ~ .eye-icon {
    top: 23px;
}
  
.eye-icon img {
    width: 14.5px;
    height: 11.5px;
}

.service-agreement {
    margin-bottom: 5px;
}

.service-agreement a {
    color: var(--hover-color);
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.register-btn {
    background: var(--secondary-color);
    border: none;
    border-radius: 23px;
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 260px;
    height: 45px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.register-btn:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

.account-login {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.account-login span {
    color: var(--hover-color);
    cursor: pointer;
}

.register-bg {
    border-radius: 5px;
    width: 39.5%;
    height: 858px;
    object-fit: cover;
}

/* success page */
.success-page {
    padding-top: 100px;
    padding-bottom: 100px;
}

.success-content {
    align-items: center;
}

.success-content > p:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 32px;
    margin-bottom: 9px;
}

.success-content > p:nth-child(2) {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 34px;
}

.success-decor {
    color: #707070;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    position: relative;
    margin-bottom: 60px;
}

.success-decor > img:nth-of-type(2), .success-decor > img:nth-of-type(3), 
.success-decor > img:nth-of-type(4), .success-decor > img:nth-of-type(5) {
    object-fit: contain;
    position: absolute;
} 

.success-decor > img:nth-of-type(2) {
    width: 35px;
    height: 32px;
    top: 7px;
    left: 80px;
}

.success-decor > img:nth-of-type(3),
.success-decor > img:nth-of-type(4) {
    width: 23px;
    height: 28px;
    top: 40px;
}

.success-decor > img:nth-of-type(3) { left: 20px; }
.success-decor > img:nth-of-type(4) { left: 160px; }

.success-decor > img:nth-of-type(5) {
    width: 23px;
    top: 15px;
    right: 80px;
}

.success-decor div {
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.delivery-message {
    background: var(--hover-color);
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding: 0 15px;
    min-height: 77px;
}

.delivery-message img {
    width: 103px;
    height: 54px;
    object-fit: contain;
}

.delivery-message p {
    margin-bottom: 0;
    width: calc(100% - 118px);
}

/* faq page */
.faq-container {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 150px;
}

.faq-container > img:first-of-type { top: 350px; left: -70px; width: 140px; }
.faq-container > img:nth-of-type(3) {
    transform: scaleX(-1);
    width: 160px;
    height: 178px;
    left: -90px;
    top: 0px;
}

.faq-content, .policy-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.faq-nav {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    width: 268px;
}

.faq-nav a {
    border-radius: 2px;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding-left: 30px;
    height: 40px;
    transition: all 0.3s ease;
}

.faq-nav a:hover, .faq-nav a.active {
    background: #F9F8F7;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(100% - 298px);
}

.question {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 27px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.question .toggle-icon.minus {
    display: none;
}

.question div {
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.question p { width: calc(100% - 62px); }

.answer {
    background: #FAFAFA;
    border-radius: 10px;
    color: #4F4F4F;
    font: 12px 'BPG Mrgvlovani';
    line-height: 20px;
    overflow: hidden;
    height: 0;
    width: calc(100% - 62px);
    margin-left: auto;
    transition: all 0.3s ease;
}
.answer-content { padding: 24px 28px 35px 20px; }

/* about us (content page) */
.content-container, .policy-container {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 140px;
}

.content-container > img:nth-of-type(2), .policy-container > img:nth-of-type(2) {
    transform: scaleX(-1);
    width: 160px;
    height: 178px;
    left: -90px;
    top: 200px;
}
.content-container > img:first-of-type, 
.policy-container > img:first-of-type { bottom: 188px; right: -146px; }

.content-page {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.content-text {
    background: white;
    border-radius: 5px;
    color: #4F4F4F;
    font: 12px 'BPG Mrgvlovani';
    line-height: 20px;
    padding: 30px 30px 55px 30px;
    width: 58%;
}

.content-text * {
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 20px !important;
}

.content-decor {
    background: var(--tertiary-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 50px 66px;
    width: calc(42% - 30px);
}

.content-decor img:first-child {
    width: 200px;
    height: 83px;
}

.content-decor img:nth-child(2) {
    width: 300px;
    height: 330px;
}

.content-decor p {
    color: var(--text-color);
    font: 36px 'Gilroy GEO';
    line-height: 43px;
    text-align: center;
    margin-bottom: 0;
}

.content-bg1 { background: var(--brand-blue); }
.content-bg2 { background: var(--primary-color); }

.policy-text {
    background: white;
    border-radius: 5px;
    color: #4F4F4F;
    font: 12px 'BPG Mrgvlovani';
    line-height: 20px;
    width: calc(100% - 298px);
    padding: 30px 30px 60px;
}

.policy-text * {
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 20px !important;
}

.mobile-content-title {
    color: var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010' !important;
    display: none;
    margin-bottom: 20px;
}

/* podcasts/blogs page */
.blog-container {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 150px;   
}

.blogs-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.blogs-filter button {
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px;
    transition: all 0.3s ease;
}

.blogs-filter button.active, .blogs-filter button:hover { 
    background: var(--primary-color) !important; 
}

.blogs-filter button:first-child {
    background: rgba(255, 255, 255, 0.45);
    width: 90px;
    margin-right: 10px;
}

.blogs-filter button:last-child {
    background: rgba(249, 249, 249, 0.45);
    width: 180px;
}

.datepicker {
    position: relative;
}

#rangeDate {
    background: #F9F9F9;
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 262px;
    height: 50px;
    padding-left: 20px;
}

#rangeDate:focus, #birthDate:focus, .lostfoundDate:focus {
    outline: none;
}

.datepicker svg {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 23px;
    row-gap: 30px;
    margin-bottom: 60px;
}

.blog-img-cont {
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.blog-img-cont img {
    border-radius: 5px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-img-cont img:hover {
    transform: scale(1.2);
}

.blog-title {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    height: 38px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-card .see-all {
    color: var(--hover-color);
    border-bottom-color: var(--hover-color);
}

.blog-card .type { background: white; }

/* inner blogs page */
.go-back1 {
    color: unset;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    position: relative;
    width: 45px;
    height: 45px;
}

.go-back1 div {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--secondary-color);
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.12));
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
}

.go-back1 span {
    position: absolute;
    top: 15px;
    right: 0;
    opacity: 0;
    min-width: 132px;
    transition: all 0.3s ease;
}

.go-back1:hover span { opacity: 1; }
.go-back1:hover div { background: var(--primary-color); right: 155px; }
.go-back1:hover { width: 200px; }

.blogs {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.current-blog { width: 72.3%;}
.curr-blog-head { display: flex; margin-bottom: 20px; }
.curr-blog-head img {
    width: 33%;
    height: 155px;
    object-fit: cover;
}

.curr-blog-preview {
    background: #F8F8F8;
    border-radius: 0 5px 5px 0;
    width: 67%;
    padding: 35px 27px 0 48px;
}

.curr-blog-preview p:first-child {
    color: var(--secondary-color);
    font: 18px 'BPG Mrgvlovani';
    line-height: 20px;
    height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 19px;
}

.curr-blog-preview p:last-child {
    color: var(--hover-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.blog-info {
    background: #F8F8F8;
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.blog-info * {
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 20px !important;
}

.gallery-swiper { margin-bottom: 20px; }
.gallery-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blog-video { margin-bottom: 20px; }
.blog-video iframe {
    width: 100%;
    height: 350px;
}

.share-blog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.go-back2 {
    color: unset;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 45px;
}

.go-back2 div {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--secondary-color);
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.12));
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.go-back2 span { display: none; }
.go-back2:hover { width: 200px; }
.go-back2:hover span { display: flex; }
.go-back2:hover div { background: var(--primary-color); }

.social-media {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-media p {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.social-media a {
    background: var(--secondary-color);
    border-radius: 50%;
    color: #F8F8F8;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}
.social-media a:hover { background: var(--hover-color); }
.other-blogs { 
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 23.5%; 
}

.other-podcast-swiper { display: none !important; }
.other-podcast-title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    display: none;
    line-height: 22px;
    margin-bottom: 0;
}

/* personal cabinet pages */
.cabinet-container {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 150px;
}

.cabinet-container > .content1 {
    position: relative;
    z-index: 2;
} 

.cabinet-title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font: 16px 'BPG Mrgvlovani';
    line-height: 18px;
    margin-bottom: 40px;
}

.user-title { margin-bottom: 0; }
.user-title span {
    font-size: 14px;
    max-width: 200px;
    text-align: initial;
}

.cabinet-title div {
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.cabinet-title img {
    width: 22px;
    height: 24px;
    object-fit: contain;
}

.cabinet-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.account-nav {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 20px;
    width: 268px;
}

.account-nav a, .user-nav a {
    border-radius: 2px;
    color: var(--secondary-color);
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 40px;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.account-nav a div, .user-nav a div {
    background: var(--brand-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.account-nav a svg, .user-nav a svg { fill: var(--svg-color); transition: all 0.3s ease; }
.account-nav a:hover, .account-nav a.active, .user-nav a:hover { background: var(--brand-bg-color); }

.account-nav a:first-child:hover div, .account-nav a:first-child.active div,
.user-nav a:first-child:hover div { background: var(--hover-color); }
.account-nav a:first-child:hover svg, .account-nav a:first-child.active svg,
.user-nav a:first-child:hover svg { fill: white; } 

.account-nav a:nth-child(2) svg, .user-nav a:nth-child(4) svg { fill: none !important; stroke: var(--svg-color); }
.account-nav a:nth-child(2):hover div, .account-nav a:nth-child(2).active div,
.user-nav a:nth-child(4):hover div { background: var(--primary-color); }
.account-nav a:nth-child(2):hover svg, .account-nav a:nth-child(2).active svg,
.user-nav a:nth-child(4):hover svg { stroke: var(--secondary-color); } 

.account-nav a:nth-child(3):hover div, .account-nav a:nth-child(3).active div { background: var(--tertiary-color); }
.account-nav a:nth-child(3):hover svg, .account-nav a:nth-child(3).active svg { fill: var(--secondary-color); } 

.account-nav a:nth-child(4):hover div, .account-nav a:nth-child(4).active div { background: var(--hover-color); }
.account-nav a:nth-child(4):hover svg, .account-nav a:nth-child(4).active svg,
.user-nav a:nth-child(2):hover svg { fill: white; } 

.user-nav a:nth-child(2):hover div { background: var(--tertiary-color); }

.account-nav a:nth-child(4) path:nth-child(2), .user-nav a:nth-child(3) path:nth-child(2) { fill: #CFCFCF !important; }
.account-nav a:nth-child(4):hover div, .account-nav a:nth-child(4).active div,
.user-nav a:nth-child(3):hover div { background: var(--brand-blue); }
.account-nav a:nth-child(4):hover path:first-child, .account-nav a:nth-child(6).active path:first-child,
.user-nav a:nth-child(3):hover path:first-child { fill: white; } 

.account-nav a:last-child:hover div, .account-nav a:last-child.active div { background: var(--secondary-color); }
.account-nav a:last-child:hover path:first-child, .account-nav a:last-child.active path:first-child { fill: white; } 

.account-content {
    width: calc(100% - 288px);
}

.mob-acc-heading {
    color: unset;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.76);
    border-radius: 5px;
    display: none;
    padding: 0 20px;
    height: 50px;
    margin-bottom: 20px;
}
.mob-acc-heading1 { 
    color: var(--secondary-color);
    display: none;
    gap: 6px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 20px;
}

.mob-acc-heading > div:first-child {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    gap: 20px;
}

.mob-acc-heading > div > div {
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.mob-acc-heading > div:last-child,
.mob-acc-heading1 div {
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 10px;
    width: 30px;
    height: 30px;
}

.status-heading { margin-bottom: 20px; }

.order-status-heading {
    display: flex;
    justify-content: space-between;
}

.status-btns button {
    background: white;
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 18px;
    padding: 17px 30px;
}
.status-btns button.active { background: var(--primary-color); }
.status-btns button:first-child { margin-right: 10px; }

.ordered-items {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 33px 23px;
}
.history-items { display: none; }

.order-card {
    border: 1px solid var(--brand-bg-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 16px 90px 16px 20px;
    position: relative;
    width: 92.7%;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-details p, .mob-order-details {
    color: #3A3A3A;
    display: flex;
    gap: 20px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}
.mob-order-details { display: none; }

.mob-order-details1 {
    display: none;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 68px;
    transform: translateY(-50%);
    right: 70px;
    margin-bottom: 0;
}

.mob-order-details1 span:first-child {
    color: var(--hover-color);
    -webkit-text-stroke: 0.5px var(--hover-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.mob-order-details1 span:last-child {
    color: #848484;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.order-details span:first-child {
    min-width: 150px;
}

.order-details span:last-child, .mob-order-details span:last-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
}

.order-swiper-cont {
    position: relative;
    width: 48%;
}

.order-swiper { height: 97px !important; }

.order-slide {
    background: var(--brand-bg-color);
    border-radius: 5px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 97px !important;
    height: 97px !important;
}

.order-slide img {
    width: 67px;
    height: 67px;
    object-fit: contain;
}

.order-next, .order-prev {
    background: white;
    cursor: pointer;
    font-size: 8px;
    width: 25px;
    height: 25px;
}

.order-next { right: -8px; }
.order-next:hover { right: -18px; }
.order-prev { left: -13px; }
.order-prev:hover { left: -23px; }

.order-card a:last-child {
    background: white;
    border: 1px solid var(--brand-bg-color);
    border-radius: 28px;
    color: var(--secondary-color);
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
    width: 120px;
    height: 45px;
    transition: all 0.3s ease;
}

.order-card a:last-child:hover { background: var(--primary-color); }
.order-card a:last-child i { display: none; }

/* ongoing/complete order inner page */
.back {
    background: white;
    width: 45px;
    height: 45px;
    margin: 0;
}

.account-content > .back:last-child {
    margin: 30px 0 0 auto;
}

.order-overview {
    background: white;
    border-radius: 5px;
    padding: 40px 54px 55px;
}

.info-block1 {
    background: var(--brand-bg-color);
    border-radius: 5px;
    padding: 12px 20px;
}

.invoice {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    display: flex;
    align-items: flex-end;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    gap: 13px;
    margin-bottom: 20px;
}

.invoice span {
    font-size: 14px;
    line-height: 19px;
}
.invoice a { color: unset; }

.ordered-item { margin-bottom: 20px; }
.ordered-item-head span:last-child { color: var(--hover-color); }

.order-summery div {
    border: 1px solid var(--brand-bg-color);
    border-radius: 20px;
    font: 14px 'Helvetica';
    line-height: 19px;
    padding: 6px 18px;
}

.delivery-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-price div {
    color: var(--secondary-color);
    -webkit-text-stroke: 1px var(--secondary-color);
    border-radius: 5px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding: 0 20px;
    height: 50px;
}

.delivery-price div span:last-child,
.delivery-price div p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}

.delivery-price div p span:first-child { text-decoration: line-through; -webkit-text-stroke: 0; }
.delivery-price div:first-child { background: var(--primary-color); }
.delivery-price div:nth-child(2) { background: #F2F2F2; }
.delivery-price div:nth-child(3) { 
    background: var(--secondary-color); 
    color: white;
    -webkit-text-stroke-color: white;
}

/* personal info page */
.account-form {
    background: white;
    border-radius: 5px;
    padding: 40px;
}

.account-form:first-of-type {
    margin-bottom: 20px;
}

.account-form > p:first-child {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 15px;
}

/* wishlist page */
.wishlist-items {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 35px 35px 30px;
}

.wishlist-item { position: relative; }
.wishlist-desc { width: calc(100% - 347px); }

.wishlist-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
}

.wishlist-actions button {
    width: 200px;
    height: 40px;
}

.wishlist-actions .add-to-cart1 { margin-right: 0; }

/* my address/ my cards */
.address-card {
    background: white;
    border-radius: 5px;
    padding: 27px 77px 60px 30px;
    min-height: 398px;
}

.address-card > p:first-child {
    color: var(--secondary-color);
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
    margin-bottom: 20px;
}

.address-card-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.address-card-item {
    border: 1px solid var(--brand-bg-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 40px 10px 20px;
}

.card-icon, .location-icon {
    background: var(--hover-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.location-icon { background: var(--brand-blue); }

.address-card-content { width: calc(100% - 104px); }
.address-card-content > p:last-child, .additional-comment {
    color: #585858;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin: 5px 0 0;
}

.address-card-content > p:first-child, .address-name {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.address-actions { cursor: pointer; position: relative; }
.address-actions button:first-child {
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    margin: 10px 0;
    width: 19px;
    height: 3px;
}

.actions-list {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 19px rgba(0, 0, 0, 0.16);
    display: none;
    list-style: none;
    padding: 20px;
    position: absolute;
    top: 100%;
    right: -21px;
    width: 206px;
    z-index: 55;
}

.actions-list li {
    background: var(--brand-bg-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 17px;
    width: 100%;
    height: 40px;
    transition: all 0.3s ease;
}

.actions-list li:hover { background: var(--primary-color); }

.actions-list.visible {
    display: flex;
    flex-direction: column;
    gap: 10px;
} 

.new-card-btn, .new-address-btn {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 235px;
    height: 40px;
    transition: all 0.3s ease;
}

.new-card-btn:hover, .new-address-btn:hover { background: var(--brand-bg-color); }
.add-card-form {
    padding-left: 20px;
}

.add-card-form > p:first-child {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 20px;
}

.add-card-form input {
    border: 1px solid var(--brand-bg-color);
}

.form-group1 {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group1 > div { width: calc((100% - 10px) / 2); }

.add-card-form > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.add-card-form > div:last-child button, .add-address-btn {
    background: var(--secondary-color);
    border: none;
    border-radius: 23px;
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 260px;
    height: 45px;
    transition: all 0.3s ease;
}

.add-card-form > div:last-child button:hover,
.add-address-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.add-card-form > div:last-child span {
    color: var(--warning-color);
    cursor: pointer;;
    text-decoration: underline;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.address-book-form {
    margin-top: 20px;
}

.address-book-form textarea {
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    resize: none;
    height: 86px !important;
    margin-bottom: 20px;
}

/* add animal page */
.btn-message-container { margin-bottom: 30px; }
.add-animal-btn, .add-animal-link {
    background: var(--tertiary-color);
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    padding: 0 20px;
    width: 220px;
    height: 50px;
    transition: all 0.3s ease;
}

.add-animal-btn div, .add-animal-link div {
    background: rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}

.add-animal-btn:hover, .add-animal-link:hover { background: var(--primary-color); }
.add-animal-btn:hover div, .add-animal-link:hover div {
    background: var(--secondary-color);
    color: white;
}

.no-animals {
    color: #8E8E8E;
    display: flex;
    font: 16px 'BPG Mrgvlovani';
    gap: 50px;
    line-height: 19px;
    margin: 80px 0 0 240px;
}

.add-step {  
    position: absolute;
    top: -1000px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 410px;
    overflow: hidden;
    z-index: 998;
}

.add-step.active { top: 425px; }

.step-form {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 40px;
    width: 393px;
    min-height: 390px;
}

.add-form-title {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 25px;
}

.animal-types {
    border: 1px solid var(--brand-bg-color);
    border-radius: 10px;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 14px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding: 25px 30px;
    width: 100%;
    margin-bottom: 20px;
}

.animal-types div {
    background: rgba(46, 46, 46, 0.07);
    border: none;
    border-radius: 23px;
    display: flex;
    align-items: center;
    position: relative;
    gap: 50px;
    padding: 0 20px;
    width: 100%;
    height: 45px;
    transition: all 0.3s ease;
}

.animal-types div:hover, .animal-types div.active { background: var(--tertiary-color); }

.animal-types div img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    position: absolute;
    left: 20px;
}

.animal-types div input { display: none; }
.animal-types div label { 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    height: 100%;
}

#close-step {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 0px;
}

.step-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: auto;
}

.back-step-btn {
    background: #F0F0F0;
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.next-step-btn {
    background: rgba(46, 46, 46, 0.07);
    border: none;
    border-radius: 23px;
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: calc(100% - 60px);
    height: 45px;
    transition: all 0.3s ease;
}

#step1 .next-step-btn { width: 100%; }
.next-step-btn:hover, .back-step-btn:hover { background: var(--primary-color); }

.add-step .custom-select { width: 100%; }
.add-step .custom-select-head, .edit-animal .custom-select-head,
.lost-found-filter .custom-select-head { 
    border-radius: 10px;
    height: 50px;
    padding-right: 20px;
}
.lost-found-filter .custom-select-head { border-radius: 5px; }

.add-animal-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.add-animal-details input, .edit-animal-form input {
    border: 1px solid var(--brand-bg-color);
    border-radius: 10px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px !important;
    padding-left: 21px !important;
}

.add-animal-details .form-floating label,
.edit-animal-form .form-floating label {
    color: #8D8D8D !important;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding-left: 21px !important;
}

#birthDate, .lostfoundDate {
    background: white;
    border: 1px solid var(--brand-bg-color);
    border-radius: 10px;
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 100%;
    height: 50px !important;
    padding-left: 20px;
}
.lostfoundDate { border-radius: 5px; }

.image-upload-container {
    border: 1px solid var(--brand-bg-color);
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 18px 15px 30px;
    width: 100%;
}

.image-placeholder { 
    position: relative; 
    width: 120px;
    height: 120px;
}

.image-placeholder img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.delete-button {
    background: var(--brand-bg-color);
    border: none;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.delete-button svg {
    fill: var(--svg-color);
    transition: all 0.3s ease;
}

.delete-button:hover { background: var(--secondary-color); }
.delete-button:hover svg { fill: var(--primary-color); }

.custom-image-upload { cursor: pointer; }
.custom-image-upload svg { margin-bottom: 15px; }
.custom-image-upload svg path:first-child { fill: var(--primary-color); transition: all 0.3s ease; }
.custom-image-upload svg:hover path:first-child { fill: var(--secondary-color); }
.custom-image-upload svg path:last-child { fill: var(--secondary-color); transition: all 0.3s ease; }
.custom-image-upload svg:hover path:last-child { fill: var(--primary-color); }

.custom-image-upload p:first-child {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 5px;
}

.custom-image-upload p:last-child {
    color: #6B6B6B;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.added-animals {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.added-animal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    width: 100%;
}

.animal-card {
    background: white;
    border-radius: 10px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    padding: 16px 20px;
    position: relative;
    width: 280px;
}

.image-initial-cont { gap: 15px; margin-bottom: 15px; padding-left: 10px; }
.image-initial { position: relative; }
.image-initial div {
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: -6px;
    width: 35px;
    height: 35px;
}

.image-initial div img {
    width: 14px;
    height: 19px;
    object-fit: contain;
}

.image-initial > img {
    border-radius: 50%;
    width: 82px;
    height: 82px;
    object-fit: cover;
}

.animal-card .name {
    color: var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 10px;
}

.animal-actions { gap: 10px; }
.animal-actions div {
    background: #F9F9F9;
    border-radius: 50%;
    cursor: pointer;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.animal-actions div svg {
    fill: var(--svg-color);
    transition: all 0.3s ease;
}

.animal-actions div i { font-size: 10px; }
.animal-actions div:first-child:hover { background: var(--primary-color); }
.animal-actions div:first-child:hover svg { fill: var(--secondary-color); }
.animal-actions div:nth-child(2):hover { background: var(--warning-color); }
.animal-actions div:nth-child(2):hover svg { fill: white; }

.breed-age-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breed-age-info div {
    background: #F9F9F9;
    border-radius: 5px;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding: 14px 20px;
}

.breed-age-info div p:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    margin-bottom: 5px;
}

.breed-age-info div p:last-child {
    color: #6B6B6B;
    margin-bottom: 0px;
}

.open-notification-list, .close-notification-list {
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
}

.close-notification-list {
    bottom: -15px;
    right: 15px;
    left: unset;
    transform: unset;
}

.animal-notifications {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 257px;
    gap: 10px;
    width: calc(100% - 300px);
}

.notification-card {
    background: var(--tertiary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
    height: 55px;
    width: calc(50% - 5px);
}

.notification-card.grooming { background: var(--primary-color); }
.notification-card.parasites { background: var(--hover-color); }
.notification-card.other { background: var(--brand-blue); }

.notification-card > div:first-child {
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.notification-card > div:nth-child(2) {
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.noti-name {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.3px var(--secondary-color);
    margin-bottom: 5px;
}

.notification-card.parasites .noti-name { color: white; -webkit-text-stroke-color: white; }

.noti-time {
    color: #505050;
    margin-bottom: 0;
}

.notification-card.parasites .noti-time { color: white; }
.notification-card.other .noti-time { color: var(--secondary-color); }


.open-noti {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    margin-left: auto;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.open-noti:hover {
    background: var(--secondary-color);
    color: white;
}

.add-notification {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: var(--secondary-color);
    cursor: pointer;
    margin-top: 7px;
    margin-left: 21%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}
.add-notification:hover { background: var(--primary-color); }

.notification-categories, .notification-form {
    background: white;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 300px;
    min-height: 250px;
    width: calc(100% - 300px);
    padding: 30px 30px 50px;
}
.notification-form.active { padding: 30px; }

.notification-categories.active, .notification-form.active {
    display: flex; 
    z-index: 2;
}

.notification-categories-heading {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 30px;
}

.notification-categories hr, .notification-form-head hr { display: none; }

.notification-categories-heading div {
    background: #DEDEDE;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}
.notification-categories-heading div:hover { background: var(--secondary-color); color: white; }

.choose-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.choose-category .notification-card { cursor: pointer; width: 100%; }
.notification-categories .noti-name {
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.mobile-form-title span {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    display: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
}

.notification-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.status-input-cont {
    display: flex;
    align-items: center;
    width: calc(100% - 85px);
    gap: 20px;
}

.status-other-name {
    border: 1px solid var(--brand-bg-color);
    border-radius: 10px;
    color: #8D8D8D;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    height: 30px;
    width: calc(100% - 160px);
    padding-left: 20px;
}
.status-other-name:focus { outline: none; }

.status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status div, .status-actions div {
    background: var(--tertiary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.status.grooming div { background: var(--primary-color); }
.status.parasites div { background: var(--hover-color); }
.status.other div { background: var(--brand-blue); }

.status span {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.3px var(--secondary-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.status-actions { gap: 5px; }
.status-actions div {
    background: #DEDEDE;
    cursor: pointer;
    color: var(--svg-color);
    display: flex;
    font-size: 10px;
    fill: var(--svg-color);
    transition: all 0.3s ease;
}
.status-actions div:first-child:hover { background: var(--warning-color); fill: white; }
.status-actions div:last-child:hover { background: var(--secondary-color); color: white; }

.form-fields {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.form-fields textarea {
    border: 1px solid var(--brand-bg-color);
    border-radius: 10px;
    color: #8D8D8D;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding: 20px;
    height: 190px;
    width: 250px;
    resize: none;
}
.form-fields textarea:focus { outline: none; }
.choose-time { width: calc(100% - 270px); }
.choose-time > p:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.3px var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 15px;
}

.choose-time > div {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
}

.choose-time > div span {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    min-width: 76px;
}

.date-day, .date-time {
    background: #F2F2F2;
    border: none;
    border-radius: 10px;
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 30px;
    padding-left: 10px;
}

.date-day:focus, .date-time:focus { outline: none; }
.date-day { width: 96px; margin-right: 10px; }
.date-time { width: 55px; }

.choose-time select {
    appearance: none;
    --bs-form-select-bg-img: none !important;
    background-image: url('../images/select-arrow1.png') !important;
    background-size: 18px 18px !important;
    background-position: right 10px center !important;
    background-repeat: no-repeat;
    background-color: #f2f2f2;
    border: none;
    border-radius: 10px;
    font: 8px 'BPG Mrgvlovani';
    line-height: 11px;
    padding-left: 15px;
    height: 30px;
    width: 100%;
}

.submit-btn, .mob-submit-btn, .mobile-delete-submit button:last-child {
    background: #D8D8D8;
    border: none;
    border-radius: 20px;
    color: #2E2E2E;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 100%;
    height: 40px;
    transition: all 0.3s ease;
}
.submit-btn:hover, .mob-submit-btn { background: var(--primary-color); }
.mobile-delete-submit button:last-child { 
    background: var(--secondary-color); 
    color: white; 
    align-items: center;
    justify-content: center;
}

.mobile-delete-submit {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 100px;
}

/* edit animal page */
.edit-animal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.edit-animal-form {
    background: white;
    border-radius: 10px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    padding: 30px;
    width: calc(100% - 300px);
}

.edit-animal-form > div:first-child { 
    display: flex;
    gap: 6px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 20px;
}

.edit-animal-form > div:first-child div {
    background: var(--primary-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.edit-animal-form > div:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 10px;
    margin-bottom: 20px;
}

.edit-animal .custom-select-head { padding-left: 20px; }
.edit-animal .custom-select-head div p:first-child { margin-bottom: 2px; }
.edit-animal .custom-select { 
    width: 100%; 
    margin-bottom: 0; 
}

.edit-image {
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.edit-image > div {
    border: 1px solid var(--brand-bg-color);
    border-radius: 10px;
    width: 50%;
    height: 140px;
}

.edit-image .delete-button {
    bottom: 20px;
    right: calc(50% - 50px);
}

.edit-animal .custom-image-upload {
    display: flex;
    align-items: center;
    gap: 20px;
}

.edit-image > div:nth-child(2) { padding: 0 23px; }
.edit-animal .custom-image-upload div { max-width: 144px; }
.edit-animal .custom-image-upload svg { margin-bottom: 0; }

.edit-animal .register-btn {
    background: rgba(46, 46, 46, 0.07);
    color: var(--secondary-color);
    margin: 0 auto;
}
.edit-animal .register-btn:hover { background: var(--primary-color); }


/* lost found page */
.lost-found-cont {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 80px;   
}
.lost-found-header { margin-bottom: 30px; }
.mobile-lost-found-head { display: none; }

.lost-found-options {
    display: flex;
    gap: 10px;
}
.lost-found-options input { display: none; }

.lost-found-status, .lost-inner-heading div a {
    background: white;
    border-radius: 5px;
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    width: 150px;
    height: 50px;
    transition: all 0.3s ease;
}
.lost-found-status.active, .lost-inner-heading div a.active,
.lost-found-status:hover, .lost-inner-heading div a:hover { background: var(--hover-color); color: white; }

.lost-found-status label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.add-animal-link { text-decoration: none; }

.lost-found-filter {
    background: white;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    padding: 30px 30px 25px;
    margin-bottom: 25px;
}

.lost-found-filter > p {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 10px;
}

.lost-found-filter > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.lost-found-filter.found > div { grid-template-columns: 1.25fr 1.25fr 1.25fr 1.5fr 1.5fr; }
.lost-found-filter .custom-select { margin-bottom: 0; }

.lost-found-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 18px;
    row-gap: 20px;
    margin-bottom: 50px;
}

.lost-found-item {
    background: white;
    border-radius: 5px;
    padding: 14px 12px;
}

.lost-found-item > img {
    border-radius: 10px;
    width: 100%;
    height: 176px;
    object-fit: cover;
    margin-bottom: 11px;
}

.lost-found-item .title {
    font: 10px 'BPG Phone Sans';
    line-height: 12px;
    height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 10px;
    margin-bottom: 13px;
}

.lost-found-item > div { padding: 0 10px; }
.lost-found-item > div span {
    color: var(--svg-color);
    font: 10px 'BPG Phone Sans';
    line-height: 12px;
}

.lost-found-item > div a { 
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 12px;
    width: 34px;
    height: 34px;
}

.lost-found-filter-tgl {
    background: var(--secondary-color);
    border: none;
    border-radius: 5px;
    width: 62px;
    height: 45px;
}

/* lost found inner page */
.lost-inner-heading {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.lost-inner-heading > span:first-child {
    color: var(--secondary-color);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 20px;
    display: none;
}

.lost-inner-heading > a:first-of-type {
    background: rgba(255, 255, 255, 0.47);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
.lost-inner-heading > a:first-of-type:hover { background: var(--primary-color); }

.lost-inner-heading div {
    display: flex;
    gap: 10px;
    margin: 0 auto;
}
.lost-inner-heading div a { text-decoration: none; }

.lostfound-images, .lost-found-animal {
    display: flex;
    align-items: flex-start;
    gap: 19px;
}

.lostfound-img-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lostfound-img-button {
    cursor: pointer;
    width: 119px;
    height: 105px;
}

.lostfound-img-button > img,
.lostfound-animal-slide > img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lostfound-animal-swiper {
    margin: 0 !important;
    width: 367px;
    height: 324px;
}

.lostfound-details {
    background: white;
    border-radius: 5px;
    width: calc(100% - 505px);
    padding: 30px;
}

.lostfound-details .name {
    align-items: center;
    justify-content: space-between;
    font: 20px 'BPG Mrgvlovani';
    line-height: 20px;
    margin-bottom: 20px;
}

.lostfound-details .name div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.lostfound-details .name div span:last-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
}

.lostfound-details .details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    gap: 10px;
    margin-bottom: 8px;
}

.lostfound-details .details p { margin-bottom: 0; }
.lostfound-details .details span:first-child,
.lostfound-details .description p { 
    color: var(--text-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    display: inline-block;
    min-width: 60px;
}

.lostfound-details .description p:first-child { margin-bottom: 5px; }
.lostfound-details .description { margin-bottom: 20px; }
.lostfound-details .description div { 
    font: 12px 'BPG Mrgvlovani';
    line-height: 20px;
}

.lostfound-share {
    align-items: center;
    justify-content: space-between;
}

.lostfound-share > button {
    background: var(--hover-color);
    border: none;
    border-radius: 20px;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 180px;
    height: 40px;
    transition: all 0.3s ease;
}

.lostfound-share > button a { display: none; }
.lostfound-share > button:hover { background: var(--secondary-color); }
.lostfound-share > button:hover a { display: block; color: unset; text-decoration: none; }
.lostfound-share > button:hover span { display: none; }
.lostfound-swiper-cont { position: relative; margin-bottom: 100px; }

/* upload lost found animals */
.add-animal-container {
    position: relative;
    padding-top: 60px;
    padding-bottom: 130px;
}

.add-animal-container .content {
    align-items: flex-start;
    gap: 40px;
    z-index: 2;
}

.lost-found-form input { border: 1px solid #DBDBDB; }
.lost-found-form > .form-floating { margin-bottom: 15px; }
.lost-found-form textarea {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    resize: none;
    padding: 20px 20px 0;
    width: 100%;
    height: 170px !important;
    margin-bottom: 30px;
}
.lost-found-form textarea:focus { outline: none; }

.upload-animal-images {
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.upload-animal-images .custom-image-upload {
    display: flex;
    align-items: center;
    gap: 20px;
}
.upload-animal-images .custom-image-upload svg,
.upload-animal-images .custom-image-upload p:first-child { margin-bottom: 0; }
.upload-animal-images .custom-image-upload div { max-width: 141px; }

.image-placeholders {
    display: flex;
    gap: 20px;
}

.image-placeholders > div {
    position: relative;
}

.image-placeholders img {
    border-radius: 5px;
    width: 92px;
    height: 81px;
    object-fit: cover;
}

.image-placeholders .delete-button {
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
}

/* locations pages */
.locations-container {
    position: relative;
    overflow: hidden;
    padding: 50px 20px 100px;
}

.locations-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.location-filter { width: 46.3%; }

.location-filter-head {
    background: var(--tertiary-color);
    border-radius: 5px 5px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 15px;
    padding: 30px 30px 40px;
}
.locations-container1 .location-filter-head { background: #FCF5C5; padding: 30px 30px 20px; }

.location-filter select { margin-bottom: 0; }
.location-filter-head > div:nth-child(3) { grid-column: span 2;}

.locations-body {
    background: white;
    border: 1px solid #DBDBDB;
    border-radius: 0 0 5px 5px;
    height: 350px;
    overflow: auto;
    padding: 30px;
}
.locations-container1 .locations-body { height: 430px; }

.location-item {
    cursor: pointer;
    gap: 20px;
    padding: 18px 10px 18px 28px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.location-item:hover { background: #ECECEC; }
.location-item p:first-child {
    color: var(--secondary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    max-width: 430px;
    margin-bottom: 5px;
}

.location-item p:last-child {
    color: #848484;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.map-container {
    width: 49.6%;
    height: 530px;
}

.location-name {
    color: var(--secondary-color);
    -webkit-text-stroke: 1px var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 10px;
}

.location-address {
    color: #7D7D7D;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.custom-info-window hr {
    border-color: #E3E3E3;
    nav-right: 20px 0 15px;
    opacity: 1;
}

.info-title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.3px var(--secondary-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 10px;
}

.work-hours {
    color: var(--secondary-color);
    display: flex;
    gap: 25px;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 10px;
}

.work-hours span:first-child {
    color: #7D7D7D;
    min-width: 115px;
}

.custom-info-window > a:last-child {
    color: #7D7D7D;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}
.gm-ui-hover-effect { display: none !important; }

/* password-recovery */
.password-recovery-cont {
    padding-top: 50px;
    padding-bottom: 150px;
    position: relative;
    min-height: 50vh;
}

.recovery-content {
    display: flex;
    align-items: center;
    gap: 30px;
}
.recovery-form { width: calc(100% - 383px); }
.recovery-email { margin-bottom: 20px; }


/* shop custom selects */
.js-example-basic-single { display: none; }
.select2  { margin-bottom: 10px !important; }
.select2-container {
    height: 35px !important;
    width: 100% !important;
}

.select2-container .select2-selection--single { 
    border-color: var(--brand-bg-color) !important;
    height: 35px !important;
}

.mobile-filter .select2-container .select2-selection--single,
.mobile-filter .select2-container,
.mobile-sort .select2-container .select2-selection--single,
.mobile-sort .select2-container { height: 50px !important; }

.select2-container .select2-selection--single .select2-selection__rendered {
    color: #B2B2B2 !important;
    display: flex !important;
    align-items: center;
    max-width: 84% !important;
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 16px !important;
    padding-left: 15px !important;
    height: 100%;
}
.mobile-filter .select2-container .select2-selection--single .select2-selection__rendered,
.mobile-sort .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/arrow-right-bold.png) no-repeat center center;
    background-size: contain;
    width: 7px !important;
    height: 8px !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.mobile-filter .select2-container--default .select2-selection--single .select2-selection__arrow,
.mobile-sort .select2-container--default .select2-selection--single .select2-selection__arrow  {
    width: 10px !important;
    height: 11px !important;
    right: 20px !important;
}
  
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

.select2-dropdown {
    border-color: var(--brand-bg-color) !important;
}

.select2-results {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.select2-results__option {
    padding-left: 25px !important;
    padding-right: 0 !important;
}

.select2-container--default .select2-results__option--selected {
    background: var(--primary-color) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--brand-blue) !important;
    color: var(--secondary-color) !important;
}

.select2-results__option--disabled { display: none !important; }
.img-container1 {
    background: transparent;
 
}
.added-item-img {
  background: transparent;
}

.alert-danger {
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}
