/* размер шрифта для всего проекта*/
body {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Стили для заголовков страниц */
.page-header {
    text-align: left;
    margin-bottom: 30px;
    padding: 20px 0;
}

.page-header-content {
    max-width: 1200px;
    margin: 0;
    padding: 0;
}

.page-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #006AB4;
}

.page-logo i {
    font-size: 24px;
    color: #006AB4;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Адаптивность для заголовков */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .page-logo {
        font-size: 16px;
    }
    
    .page-logo i {
        font-size: 20px;
    }
}

/* размер шрифта таблиц*/
.table td {
    font-size: 14px;
}

/* размер шрифта таблиц*/
.table th {
    font-size: 14px;
}

.imgbw {
    filter: grayscale(1);
    transition: 1s;
}


.imgbw:hover {
    filter: grayscale(0);
}

/* HEADER */

.navbar-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

/* Эффект при скролле */
.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.navbar-custom .container-fluid {
    padding-left: 4rem;
    padding-right: 4rem;
}

.navbar-custom .navbar-brand {
    color: #2c3e50 !important;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand:hover {
    color: #1a252f !important;
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.navbar-custom .navbar-brand i {
    color: #ffd700;
    margin-right: 8px;
}

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-custom .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%2844, 62, 80, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Стили для горизонтального меню */
.navbar-custom .navbar-nav .nav-link {
    color: #2c3e50 !important;
    padding: 0.35rem 0.75rem;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: #1a252f !important;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.navbar-custom .navbar-nav .nav-link.active {
    color: #1a252f !important;
    background-color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #ffd700;
    border-radius: 1px;
}

.navbar-custom .navbar-nav .nav-link i {
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

/* Профиль справа в навбаре */
.navbar-profile-link {
    padding: 0.25rem 0;
    gap: 10px;
    line-height: 1;
}

.navbar-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    border: 2px solid #ffd7c2; /* тонкая рамка как маленький кружок */
    background-color: #ffe9e0; /* мягкий фон под аватар */
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.navbar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.navbar-points {
    color: #2c3e50;
}

/* Dropdown стили */
.navbar-custom .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    right: 0;
    left: auto;
    min-width: 200px;
}

.navbar-custom .dropdown-item {
    padding: 0.5rem 1rem;
    color: #495057;
    transition: all 0.2s ease;
}

.navbar-custom .dropdown-item:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.navbar-custom .dropdown-item.active {
    background-color: rgba(102, 126, 234, 0.15);
    color: #667eea;
}

.navbar-custom .dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.1);
}


/* Адаптивность */
@media screen and (max-width: 992px) {
    .navbar-custom .container-fluid {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.125rem 0;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 0.5rem;
    }
    
    .navbar-custom .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
    }
    
    .navbar-custom .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-custom .dropdown-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }
}

@media screen and (max-width: 576px) {
    .navbar-custom .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .navbar-custom .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-custom .navbar-brand span {
        display: none;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-custom .navbar-nav .nav-link i {
        font-size: 0.8rem;
    }
}



#footer {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: white;
    position: fixed;
    -webkit-transform: translate(95vw, 90vh);
    -moz-transform: translate(95vw, 90vh);
    transform: translate(95vw, 90vh);
    transform: translate(95vw, 90vh);
}

main {
    flex: 1;
}

/* МАГАЗИН */


.products {
    display: flex;
    width: 100%;
}

.products_category {
    display: flex;
}

.products_category input {
    margin-right: 5px;
}

.products_right-block {
    height: 100%;
    width: 100%;
}

.products_right-block-content {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    height: 100%;
}

.products_right-block_card-toogle {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.products_right-block_card-toogle img {
    width: 15px;
    height: 15px;
    cursor: pointer;

}

.products_left-block {
    width: 250px;
    margin-right: 50px;
}

.product-card {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.881);
    width: 300px;
    position: relative;
    height: 370px;
}

.product-card_content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    height: 100%;
    width: 300px;
    cursor: pointer;
}

.product-card_img {
    align-items: center;
    display: flex;
    height: 160px;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.product-card_img-modal {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.product-img-link {
    max-height: 85%;
    max-width: 85%;
    border-radius: 10px;
}

.product-card_title {
    font-weight: bold;
    margin-bottom: 45px;
}

.product-card_price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.product-card_price-text {
    display: block;
}

.product-card_name {
    font-weight: normal;
}


.product-card_small-display {
    max-width: 450px;
    max-height: 200px;
}

.product-card_content_small-display {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    max-width: 450px;
    padding: 10px;
}

.product-card_title_small-display {
    font-size: 93%;
    margin-bottom: 0px;
}

.product-card_add-to-cart_small-display {
    font-size: 11px;
    bottom: 10px;
    max-width: 350px;
    padding: 7px 20px;
}

.product-card_img_small-display {
    float: left;
    height: 50%;
    width: 100%;
    margin: 0 auto;
}

.pagination-shop {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.step-links {
    display: flex;
}

.pagination-extreme {
    display: block;
    background-color: #6169E4;
    height: 35px;
    width: 30px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    padding-top: 2px;
    font-size: 120%;
    transition: 0.5s all;
}

.pagination-extreme:hover {
    background-color: #fff;
    color: #6169E4;
    border: 1px solid #6169E4;
    transition: 0.5s all;
}

.pagination-one-page {
    display: block;
    background-color: #fff;
    height: 35px;
    width: 30px;
    text-align: center;
    color: #6169E4;
    border: 1px solid #6169E4;
    border-radius: 10px;
    text-decoration: none;
    padding-top: 2px;
    font-size: 120%;
    margin: 0px 2px 0px 2px;
    transition: 0.5s all;
}

.pagination-one-page:hover {
    background-color: #6169E4;
    color: #fff;
    transition: 0.5s all;
}

.pagination-one-page-current {
    display: block;
    background-color: #6169E4;
    height: 35px;
    width: 30px;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    padding-top: 2px;
    font-size: 120%;
    transition: 0.5s all;
}

.pagination-one-page-current:hover {
    background-color: #fff;
    color: #6169E4;
    border: 1px solid #6169E4;
    transition: 0.5s all;
}

.current {
    display: block;
    margin: 5px 5px 0px 5px;
}


@media screen and (max-width: 992px) {

    .product-card {
        margin: 0 auto;
    }
}

@media screen and (max-width: 550px) {
    .products {
        flex-direction: column;
    }

    .products_left-block {
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    /* .product-card {
        width: 100%;
    } */

    /* .product-card_content {
        width: 100%;
    } */
}

@media screen and (max-width: 350px) {



    .product-card_content {
        padding: 10px;
        width: 100%;
    }

}

.modal-wrapper {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    left: 0%;
    background-color: rgba(255, 255, 255, 0.724);
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all;
}

.product-card_content-modal {
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 500px;
    background-color: white;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ABCDEF;
    border: 3px solid #ABCDEF;
}

.close-modal {
    width: 100%;
    display: flex;
    justify-content: end;
}

.close-modal-cross {
    width: 30px;
    cursor: pointer;
}

.product-card_title-modal {
    margin-top: 10px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

.product-card_title-modal p:last-child {
    flex-shrink: 0;
}

.product-card_add-to-cart-modal {
    background-color: #aab0ff75;
    /* фон */
    color: #010da7b3;
    /* синий цвет текста */
    border-radius: 10px;
    border: none;
    padding: 9px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    align-self: center;
}

.product-card_description {
    font-weight: bold;
}

.product-card_description-text {
    margin-bottom: 30px;
}

.open-modal {
    visibility: visible;
    opacity: 1;
    transition: 0.6s all;
}


.back-button {
    margin-bottom: 20px;
}



/* КОРЗИНА */

.cart-wrapper {
    width: 100%;
}

.cart {
    margin-bottom: 30px;
}

.cart-element {
    border: 2px solid #ABCDEF;
    border-radius: 10px;
    padding: 10px;
}

.statement {
    border: 2px solid #1987545c;
}

.cart-element_content {
    display: flex;
    justify-content: space-between;
}

.cart-element_info {
    display: flex;
}

.cart-element_info img {
    margin-right: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
    .cart-element_info {
        flex-direction: column;
    }
}

.name-and-price {
    font-weight: bold;
    align-self: center;
}

.price span {
    color: rgba(9, 28, 137, 0.716);
}

.name {
    margin-bottom: 3px;
}

.amount-info {
    flex-shrink: 1;
}

.amount {
    text-align: center;
}

.minus {
    background: rgba(14, 108, 232, 0.89);
    border-radius: 10px;
    border: none;
    color: white;
    padding: 0px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: 0.5s all;
}

.minus span {
    display: block;
    margin-top: -4px;
}

.plus {
    background: rgba(14, 108, 232, 0.89);
    border-radius: 10px;
    border: none;
    color: white;
    padding: 0px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: 0.5s all;
}

.plus span {
    display: block;
    margin-top: -4px;
}

.minus:hover {
    background: #001effce;
    transition: 0.5s all;
}

.plus:hover {
    background: #001effce;
    transition: 0.5s all;
}

.amount-info_buttons {
    width: 95px;
}

.delete_from_cart {
    background: rgb(226, 62, 62);
    border-radius: 10px;
    border: none;
    color: white;
    padding: 0px 15px;
    padding-bottom: 3px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    transition: 0.5s all;
    margin: 0 auto;
    margin-top: 10px;
}

.delete_from_cart:hover {
    background: rgb(255, 114, 114);
    transition: 0.5s all;
}

.delete_from_statement {
    background: rgb(226, 62, 62);
    border-radius: 10px;
    border: none;
    color: white;
    padding: 0px 15px;
    padding-bottom: 3px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    transition: 0.5s all;
    margin: 0 auto;
    margin-top: 10px;
}

.delete_from_statement:hover {
    background: rgb(255, 114, 114);
    transition: 0.5s all;
}

.order {
    background: #001effce;
    border-radius: 10px;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 0 auto;
    margin-top: 30px;
    max-width: 200px;
    cursor: pointer;
    transition: 0.5s all;
}

.order:hover {
    background: #001effa1;
    color: white;
    transition: 0.5s all;
}

.profile-avatar {
    /* margin-top: 15px; */
    max-width: 270px;
    /* height: 384px; */
    /* border-right: 3px solid #6169E4;
    border-bottom: 3px solid #6169E4;
    border-radius: 5px; */
    padding: 5px;
    /* box-shadow: 1px 1px 10px #000004; */
}

.imgavatar_small {
    border: 1px dashed gray;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60;
    height: 60;
    border-radius: 50%;
    overflow: hidden;
}


.imgavatar {
    border: 1px dashed gray;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250;
    height: 250;
    border-radius: 50%;
    overflow: hidden;
}

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

@media screen and (max-width: 576px) {
    .card-body {
        padding: 2px;
    }
}

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

.achive::after {
    content: '';
    width: 300px;
    height: 4px;
    background-color: #ffffff81;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: -380%;
    box-shadow: 3px 3px 10px #fff;
    animation: 10s infinite shine;
}

@keyframes shine {
    from {
        left: -380%;
    }
    to {
        left: 100%;
    }
}

.edit_photo_form {
    text-align: center;
    margin-bottom: 3px;
}

.chage_avatar {
    display: none;
}

.chage_avatar_label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; 
    height: 22px;
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 50%;
    font-size: 12px;
    margin: 0 auto;
    margin-top: 4px;
    transition: all 0.2s ease;
}

.chage_avatar_label:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.profile-balance {
    max-width: 222px;
    display: flex;
    /* box-shadow: 0 0 5px #00000084; */
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    white-space: nowrap;
}

.profile-balance-text {
    font-size: 150%;
    margin-top: 2px;
    margin-left: 5px;
    display: block;

}

.profile-balance-img {
    width: 16%;
}

.profile-balance-number {
    font-size: 150%;
    margin-top: 3px;
    margin-left: 20px;
    display: block;
}

.product-card_img_cart {
    display: flex;
    max-width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-right: 20px;
}

.product-card_img_cart img {
    border-radius: 10px;
}

.product-img-link_cart {
    width: 100%;
    display: block;
    align-self: center;
}

@media screen and (max-width: 500px) {
    .product-card_img_cart {
        margin-right: auto;

    }
}

.danger-text {
    background-color: orange;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

.danger-text:hover {
    background-color: rgb(199, 130, 2);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}


/* ЖУРНАЛ ЗАКАЗОВ */

.order-log {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.order-log_order {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.881);
    border-radius: 10px;
}

.order_header {
    background-color: #f2f5f9;
    padding: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    width: 100%;
}

.order_header-text {
    align-self: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.order_header-text p {
    font-weight: bold;
    font-size: 108%;
    margin: 0;
}

.order_header-text span {
    font-weight: normal;
    font-size: 90%;
}

.order_product {
    padding: 10px;
    display: flex;
    border: 1px solid #f2f5f9;
}

.order_product-left {
    width: 500px;
    margin-top: 20px;
    /* display: flex; */
}

.order_product-left p {
    font-weight: normal;
}

.order_product-left p:nth-child(2) {
    margin: 0;
}

.order_product-status {
    font-weight: bold;
    align-self: center;
    display: flex;
}

.order_product-status span {
    display: block;
    color: white;
    background-color: #b1b9c2;
    padding: 5px 9px 7px 9px;
    border-radius: 50px;
    margin-left: 5px;
    margin-top: -5px;
    height: 35px;
}

.order_product-right-img {
    display: flex;
    max-width: 200px;
    height: 150px;
    margin: 0 auto;
}

.order_product-right-img img {
    width: 150px;
    display: block;
    align-self: center;
    border-radius: 10px;
}

@media screen and (max-width: 530px) {
    .order_product {
        flex-direction: column;
    }

    .order_product-left {
        width: 100%;
    }
}

@media screen and (max-width: 440px) {
    .order_header-text {
        flex-direction: column;
    }
}

@media screen and (max-width: 380px) {
    .order_product-status {
        flex-direction: column;
    }

    .order_product-status span {
        display: block;
        margin-top: 5px;
    }
}

.verify-code {
    max-width: 195px;
    margin: 0 auto;
    text-align: center;
}

.send-button-verify {
    margin-top: 15px;
}

.wrong-verify-code {
    max-width: 110px;
    margin: 0 auto;
    color: red;
}

.navbar-nav li.nav-item a.nav-link:hover {
    background-color: rgba(127, 131, 147, 0.231);
    border-radius: 7px;
    padding: 7px;
}


/* PROFILE */

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

@media screen and (max-width: 992px) {
    .profile-content {
        flex-direction: column;
    }

    .profile-avatar {
        margin: 0 auto;
        margin-top: 15px;
    }
}
/*Всплывающие подсказки tooltip */
.profile-prompt {
    position: absolute;
    background-color: #fff;
    color: #000000d4;
    max-width: 300;
    padding: 7px;
    padding-left: 10px;
    border: 1px solid rgba(0, 0, 0, 0.26);
    border-radius: 4px;
    z-index: 999;
    font-weight: normal;
    font-size: 90%;
    opacity: 0.97;
}

.profile-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #ffa600cb;
    z-index: -1;
}

.profile-menu-item {
    display: flex;
}

.profile-menu-item span:nth-child(2) {
    margin: 0 5px;
    display: block;
}

.profile-what {
    width: 20px;
    height: 20px;
    background-color: #6c757d56;
    border-radius: 100px;
    cursor: pointer;
}

.profile-what p {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    margin-top: 1px;
}

.my-achive-title {
    display: flex;
    max-width: 150px;
}

.achive-title {
    display: flex;
    max-width: 200px;
}

.achive-title_prompt {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #949a9e;
    margin-top: 3px;
    margin-left: 3px;
    cursor: pointer;
}

.achive-title_prompt p {
    color: #fff;
    text-align: center;
    margin: 0 auto;
    margin-top: -2px;
}


.change-font .text {
    font-size: 14px;
}

.change-font .icon {
    font-size: 19px;
}

/* цвет для budge */
.bg-custom-green {
    background-color: #28a7702d;
    color: #02270a;
    font-size: 12.5px;
}

.bg-custom-blue {
    background-color: #7386ff5e;
    color: #080227;
    font-size: 12.5px;
}

.bg-custom-gray {
    background-color: #696a7317;
    color: #030303b3;
    font-size: 12.5px;
}

.bg-custom-gray-heading {
    background-color: #696a7317;
    color: #030303b3;
    font-size: 90%;
}

/* Кастомный цвет кнопок */
.btn-custom-green {
    background-color: #28a7702d;
    color: #02270a;
}

.btn-custom-blue {
    background-color: #7386ff5e;
    color: #080227;
}

.btn-custom-gray {
    background-color: #696a7317;
    color: #030303b3;
}

.btn-custom-red {
    background-color: #f80e064e;
    color: #030303b3;
}

/* Footer styles */
.footer {
    background: linear-gradient(135deg, #006AB4 0%, #004d82 100%);
    color: white;
    padding: 40px 0;
    margin-top: auto;
    box-shadow: 0 -4px 20px rgba(0, 106, 180, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer-copyright {
    color: #e2e8f0;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

.footer-divider {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto;
    border-radius: 1px;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-link {
        font-size: 15px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}
