

body {
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;

    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -0.20000000298023224px;
    text-align: center;

}

.product-card__badge  {
    width: fit-content;
    font-size: 14px;
}
.product-card__header  {
    min-height: 80px;
}

.catalog-img {
    filter: opacity(0.3);
}

.index_cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background-color: aqua; */
}
.index_cover__topp_gradient {
    background: linear-gradient(180deg, #fff 3.4%, rgba(255, 255, 255, 0) 40.66%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
}
.divider img, .index_cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer_image {
    position: absolute;
    top: -97px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1070px;
    width: 80%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

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

.footer-image-text {
    font-family: Raleway;
    font-weight: 700;
    letter-spacing: -0.20000000298023224px;
    text-align: left;
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    color: #1C3164;
    font-size: 25px;
}

.nav-item-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-category-image {
    /* height: 250px !important; */
    object-fit: cover;
}

.category-header {
    font-size: 36px;
    font-weight: 700;
    color: #343f52;
}

@media (max-width: 850px) {
    .footer-image-text {
        font-size: 21px;
        line-height: 31px;
    }
}
@media (max-width: 576px) {
    .footer-image-text {
        font-size: 18px;
        line-height: 26px;
        width: 68%;
    }
}
.cards-without-shadow {
    background-color: #D7F3F9;
}
.cards-without-shadow .card {
    box-shadow:none;
    background-color: unset;
}
.flip {
    transform: scaleX(-1);
}


.good_item_image {
    min-height: 278px;
    object-fit: cover;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: inherit;
}
.navbar__logo__text {
    font-size: 26px;
    font-weight: 700;
    transition: color 0.2s ease-in-out;
    /* color: var(--bs-nav-link-color) !important; */
    color: rgb(52, 63, 82);
}
.navbar__logo__img {
    max-height: 50px;
}


.wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.wrapper table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.wrapper table thead {
    background-color: #f9f9f9;
}

.wrapper table tbody tr:nth-child(even) {
    background-color: #f1f1f1;
}

.wrapper table tbody tr:hover {
    background-color: #e9e9e9;
}
.wrapper h1 {
    text-align: unset;
}


/* admin edit */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
  }
  
  .popup-iframe {
    /* position: absolute;
    top: 5%;
    left: calc(50% - 350px);
    min-width: 700px;
    height: 90%; */
    position: relative;
    width: 66%;
    height: 90%;
    margin-top: 3%;
    margin-left: 17%;
    background: white;
    border-radius: 15px;
  }
  @media (max-width: 767.98px) {
    .popup-iframe {
        width: 90%;
        margin-left: 5%;
    }
  }
  .admin-edit-buttons {
    position: relative;
    z-index: 1050;
    cursor: pointer;
    width: 100%;
  }
  .admin-edit-button {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 15px;
    background: #fff;
  }

  /* Для нового интерфейса */
  .custom-admin-edit-buttons {
    position: relative;
    z-index: 1050;
    cursor: pointer;
    width: 100%;
  }
  .custom-admin-edit-button {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 15px;
    background: #fff;
  }

  .highlighted-bg {
    background: #e0e0e0 !important;
  }
  /* /admin edit */
  
  /* fade effect */
  .fade-in {
    opacity: 0;
    animation: fadeInAnimation 0.8s ease forwards;
  }
  
  @keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }
  /* /fade effect */


/* context_item_change */
.red-mod-wrapper-border {
    border: 1px solid red; 
    border-radius: 5px; 
}