/*bootstrap*/

@media (min-width: 1200px) {
    .container {
        max-width: 1100px;
    }
}

.display-market-first {
    display: block;
}

.display-button-showf-first {
    display: block;
}

.display-button-showT-first {
    display: none;
}

.display-market-mobile-show {
    display: none;
}

/* media  show=False */
@media (max-width: 990px) {
    .display-market-first {
        display: none;
    }
}

@media (max-width: 510px) {
    .display-button-showf-first {
        display: none;
    }

    .display-button-showT-first {
        display: block;
    }
}


/*my static*/

.footer-bacground {
    background-color: #C71878;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    /* padding-bottom: 1rem; */
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

/* Стиль полосы прокрутки */
.nav-scroller::-webkit-scrollbar {
    height: 8px; /* Высота горизонтальной полосы прокрутки */
}

/* Стиль для ползунка полосы прокрутки */
.nav-scroller::-webkit-scrollbar-thumb {
    background-color: #C71878; /* Цвет ползунка */
    border-radius: 10px; /* Скругление углов ползунка */
}

/* Цвет ползунка при наведении */
.nav-scroller::-webkit-scrollbar-thumb:hover {
    background-color: #C71878; /* Цвет ползунка при наведении */
}

/* Стиль для дорожки полосы прокрутки */
.nav-scroller::-webkit-scrollbar-track {
    background: #f1f1f1; /* Цвет дорожки полосы прокрутки */
    border-radius: 10px; /* Скругление углов дорожки */
}

.a-type {
    color: #344863;
    text-decoration: none;
}

.text-decor {
    position: relative;
}

.a-type:hover {
    color: #C71878;
    transition: 0.7s;
}

.text-decor::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #C71878;
    margin-bottom: -5px;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;

}

.text-decor:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.background-button {
    background: rgba(199, 24, 120, 0.15);
    border: none;
}

.background-icons {
    color: #C71878;
}

.background-button:hover {
    color: #fff;
    background-color: rgb(199 24 120 / 30%);
}

.background-button:active {
    color: #fff;
    background-color: rgb(199 24 120 / 30%);
    border-color: rgba(199, 24, 120, 0.15);
}

.background-button:focus {
    color: #fff;
    background-color: rgb(199 24 120 / 30%);
    border-color: rgba(199, 24, 120, 0.15);
    box-shadow: 0 0 0 0.25rem rgba(199, 24, 120, 0.15);
}

.background-button:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}


.background-button-outline {
    border: 0;
    box-shadow: inset 0 0 0 1px #C71878;
}


.background-button-outline:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}

.background-button-outline:active {
    color: #fff;
    background-color: rgb(199 24 120 / 30%);
    border-color: rgba(199, 24, 120, 0.15);
}


.background-button-outline:hover {
    color: #fff;
    background-color: rgb(199 24 120 / 30%);
    border-color: rgba(199, 24, 120, 0.15);
}

.background-button-outline:focus {
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}

/*span search*/

.span-color-group {
    background: none;
    border-color: #C71878;
    color: #C71878;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

/*button search*/

.button-search {
    background: #C71878;
    color: white;
    border-color: #C71878;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}
.button-catalogue {
    background: #70C311;
    color: white;
    border-color: #70C311;
}
.button-catalogue:hover{
    color: #fff;
    background-color: #8be81f;
    border-color: #8be81f;
}
.button-catalogue:active{
    color: #fff;
    background-color: #8be81f;
    border-color: #8be81f;
    box-shadow: 0 0 0 0.25rem rgb(112 188 49/ 19%);
}

.button-search:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}
.button-catalogue:active:focus{
    box-shadow: 0 0 0 0.25rem rgb(112 188 49/ 19%);
}

.menu-container {
    max-width: 1440px;
    z-index: 999;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.main-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.catalogue-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #f7f8f8;
    z-index: 999;
    height: 500px;
    flex-direction: row;
    justify-content: center;
}

.category-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.category-link {
    display: block;
    padding: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.category-link:hover,
.category-link.active {
    color: #C71878;
    background: #fff;
    transition: 0.7s;
}
.list-dropdown-item{
    border:0;
    border-bottom: 1px solid #ededed;
    padding: 12px 30px 12px 20px;
}
.list-dropdown-item a{
    color:black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.list-dropdown-item a p{
    margin: 0;
}
.list-dropdown-item a:hover{
    color:#70C311;
}
.subcategory-panel {
    flex: 1;
    padding: 15px;
    display: none;
    background: #fff;
}

.subcategory-panel.active {
    display: block;
}

.subcategory-columns {
    display: flex;
    flex-wrap: wrap;
}

.subcategory-column {
    width: 33.33%;
    box-sizing: border-box;
    padding: 0 20px;
}

.subcategory-column a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px 0;
    white-space: normal;
    word-wrap: break-word;
}
.offcanvas-title-category{
    width: 100%;
    display: flex;
    justify-content: center;
}
.body-category{
    padding: 0;
}
.subcategory-column a:hover {
    color: #C71878;
}
.menu-header{
    border-bottom: 1px solid #ededed;
    background: #70C311;
    color: white;
}
.menu-header:hover{
    cursor:pointer;
}

@media (max-width: 1000px) {
    .catalogue-menu {
        display: none !important;
    }
}

.button-search:active {
    color: #fff;
    background-color: #C71878;
    border-color: #C71878;
}

.button-search:hover {
    color: #fff;
    background-color: #C71878;
    border-color: #C71878;
}

.button-search:focus {
    color: #fff;
    background-color: #C71878;
    border-color: #C71878;
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}

/*input search*/

.input-search {
    border-color: #C71878;
}

.input-search:focus {
    color: #212529;
    background-color: #fff;
    border-color: rgba(199, 24, 120, 0.15);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}


/*nav-3*/

.a-font-size-nav3 {
    font-size: 15px;
}

.button-sales {
    border-radius: 20px;
    background: #C71878;
    color: white;
    text-decoration: none;
}

.button-sales:hover {
    box-shadow: 0 0 0 0.20rem rgb(199 24 120 / 50%);
    color: white;
}

.button-more {
    border-radius: 20px;
    background: #70C311;
    color: white;
    text-decoration: none;
}

.button-more:hover {
    box-shadow: 0 0 0 0.20rem rgb(112 195 17 / 50%);
    color: white;
}

h4,
h3,
h6 {
    color: #344863;
}

.hit {
    background: #70C311;
    color: white;
    padding: 6px 6px 6px 6px;
    border-radius: 20px;
    width: 50px;
    text-align: center;
    font-size: 14px;
}

.discount_product {
    background: #C71878;
    color: white;
    padding: 8px 8px 6px 8px;
    border-radius: 30px;
    width: auto;
    text-align: center;
    font-size: 14px;
    position: relative;
    z-index: 2;
}
.scale-animation{
    transition: all 0.5s ease-in-out;
    width: 90%;
    height: 90%;
    z-index: 1;
}
.scale-animation:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}


.btn-carusel {
    color: #fff;
    background-color: #C71878;
    border-color: #C71878;
}

.btn-carusel:active {
    color: #fff;
    background-color: #d63384;
    border-color: #d63384;
}

.btn-carusel:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}

.btn-carusel:focus {
    color: #fff;
    background-color: #d63384;
    border-color: #d63384;
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}

.btn-carusel:hover {
    color: #fff;
    background-color: #d63384;
    border-color: #d63384;
}


.btn-like {
    color: #fff;
    background-color: rgba(199, 24, 120, 0.15);
    border: none;
    z-index: 2;
    position: relative;
}

.btn-like:active {
    color: #C71878;
    background-color: rgb(199 24 120 / 30%);
    border: none;
}

.btn-like:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(199, 24, 120, 0.15);
}

.btn-like:focus {
    color: #C71878;
    background-color: rgb(199 24 120 / 30%);
    border: none;
    box-shadow: 0 0 0 0.25rem rgba(199, 24, 120, 0.15);
}

.btn-like:hover {
    color: #C71878;
    background-color: rgb(199 24 120 / 30%);
    border: none;
}

/* margin coment */
.margin-comment {
    margin-bottom: 10rem;
}

.display-market-show {
    display: block;
}

@media (max-width: 1120px) {
    .margin-comment {
        margin-bottom: 11rem;
    }
}

@media (max-width: 990px) {
    .margin-comment {
        margin-bottom: 15rem;
    }
}

@media (max-width: 552px) {
    .margin-comment {
        margin-bottom: 17rem;
    }
}

@media (max-width: 770px) {
    .display-market-show {
        display: none;
    }

    .display-market-mobile-show {
        display: block;
    }
}

@media (max-width: 453px) {
    .margin-comment {
        margin-bottom: 18rem;
    }
}

@media (max-width: 370px) {
    .margin-comment {
        margin-bottom: 22rem;
    }
}

@media (max-width: 340px) {
    .margin-comment {
        margin-bottom: 24rem;
    }
}

@media (max-width: 320px) {
    .margin-comment {
        margin-bottom: 27rem;
    }
}

@media (max-width: 307px) {
    .margin-comment {
        margin-bottom: 32rem;
    }
}

@media (max-width: 280px) {
    .margin-comment {
        margin-bottom: 29rem;
    }
}

/* Show carusel 1.2.3 */

.carusel-first-True {
    display: block;
}

.carusel-first-False {
    display: none;
}

.carusel-second-True {
    display: block;
}

.carusel-second-False {
    display: none;
}

.carusel-third-True {
    display: block;
}

@media (max-width: 900px) {
    .btn-w {
        width: 100%;
        max-width: 100%;
    }

    .text-right-col {
        text-align: left !important;
    }
}
.carusel-third-False {
    display: none;
}


@media (max-width: 770px) {
    .carusel-first-True {
        display: none;
    }

    .carusel-first-False {
        display: block;
    }

    .carusel-second-True {
        display: none;
    }

    .carusel-second-False {
        display: block;
    }

    .carusel-third-True {
        display: none;
    }

    .carusel-third-False {
        display: block;
    }
}

.catalog-button-col-show {
    display: flex;
}

.catalog-button-col-false {
    display: none;
}

@media (max-width: 992px) {
    .catalog-button-col-show {
        display: none;
    }

    .catalog-button-col-false {
        display: block;
    }
}


.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem #6c757d4d;
    opacity: 1;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(199, 24, 120, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-toggler {
    color: rgb(199 24 120 / 15%);
}


.navbar-menu-buttons-mobile-show {
    display: none !important;
}

.navbar-menu-buttons-desktop-show {
    display: flex;
}

.navbar-menu-border-mobile {
    border-bottom: 0
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        display: none !important;
        flex-basis: auto;
    }
}

.number-mb-desktop {
    display: block !important;
}

.navbar-menu-numbar-desktop {
    display: flex !important;
}

.navbar-baner-first {
    display: block !important;
}

.navbar-baner-second {
    display: none !important;
}

@media (max-width: 1200px) {
    .navbar-baner-first {
        display: none !important;
    }

    .navbar-baner-second {
        display: block !important;
    }
}

@media (max-width: 992px) {
    .navbar-baner-second {
        display: none !important;
    }
}

.navbar-menu-numbar-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .navbar-menu-numbar-desktop {
        display: none !important;
    }

    .number-mb-desktop {
        display: none !important;
    }

    .navbar-menu-numbar-mobile {
        display: flex !important;
    }

    .navbar-menu-buttons-mobile-show {
        display: flex !important;
    }

    .navbar-menu-buttons-desktop-show {
        display: none !important;
    }

    .navbar-menu-border-mobile {
        border-bottom: 1px solid #C71878;
    }
}


.span-advertising {
    position: absolute;
    top: 6px;
    right: 6px;
    width: auto;
    max-width: 140px;
    height: auto;
    padding: 2px 4px 1px;
    color: #fff;
    font-size: 10px;
    line-height: 12px;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, .3);
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;
    mix-blend-mode: luminosity;
    z-index: 1;
}

.btn-w{
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    width: min(75%, 300px);
    gap: 4px;
}
.product-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
    background-color: #fff;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.icon-margin{
    margin-right: 5px;
}
.card-size {
    width: 530px;
    height: 250px;
}
@media (max-width: 1200px) {
    .card-size {
        width: 460px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .card-size {
        width: 340px;
        height: 273px;
    }
}

@media (max-width: 992px) {
    .card-size {
        width: 340px;
        height: 350px;
    }
}


.form-select:focus {
    border-color: #C71878;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}


.search_container{
    width: 65vw;
    position: absolute;
    z-index: 9999;
    max-height: 50vh;
    background-color: white;
}

.drop_search{
    max-height: 50vh;
    width: 90%;
    max-height: 50vh;
    overflow: auto;
    list-style-type: none;
    margin: 0;
}

.search_element{
    margin: 5px;
}

.search_element:hover{
    background-color: rgb(227, 227, 227);
    text-decoration: none;
    color: #C71878;
}

.search_link{
    text-decoration: none;
    color: inherit;
    font-size: large;
}
.add_to_basket {
    background-color: #C71878;
    color: white;
}
.add_to_basket:hover {
    background-color: #d15391;
    color: #f0f0f0;
}
.add_to_basket:focus {
    background-color: rgb(199 24 120 / 80%);
    border-color: rgba(199, 24, 120, 0.15);
    box-shadow: 0 0 0 0.25rem rgba(199, 24, 120, 0.15);
}

.footer-info{
    font-size: 12px;
    color:white;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 8px;
}
.work-time{
    font-size: 18px;
    font-weight: bolder;
    color: white;
}
.select-info{
    opacity: 100% !important;
    color: white;
}
.select-info:hover{
    color: white;
}

.storage-conditions {
    display: flex;
    color: #7D879C;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.storage-label {
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .search_container{
        width: 100vw;
        position: absolute;
        z-index: 9999;
        max-height: 50vh;
        background-color: white;
    }

    .drop_search{
        max-height: vh;
        width: 90%;
        max-height: 50vh;
        overflow: auto;
        list-style-type: none;
    }

    .search_element{
        margin: 5px;
    }

    .search_element:hover{
        background-color: rgb(227, 227, 227);
        text-decoration: none;
        color: #C71878;
    }

    .search_link{
        text-decoration: none;
        color: inherit;
        font-size: small;
    }
}
