:root {
    --main-bg-color: #313131 !important;
    --main-bloc-color: #151515 !important;
    --border: 0.5px solid #333333 !important;
    --border-radius: 12px !important;
    --blur: blur(10px) !important;
    --box-shadow: 0px 4px 20px 0px #000000 !important;
    --gray-glow: rgba(180, 180, 180, 0.2);
    --orange-glow: rgba(212, 212, 212, 0.2);
    --orange-accent: rgba(204, 204, 204, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(255, 140, 0, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(180, 180, 180, 0.04) 0%, transparent 50%),
        radial-gradient(circle, rgba(255, 255, 255, 0) 39%, rgba(60, 60, 60, 0.8) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #e0e0e0;
    font-family: 'Manrope', sans-serif;
    animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% {
        background-size: 100% 100%;
    }

    100% {
        background-size: 110% 110%;
    }
}

/* Навигация */
.navbar {
    background: var(--main-bloc-color);
    border: var(--border);
    border-radius: var(--border-radius);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--box-shadow);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

@keyframes gentlePulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* Кнопки */
.app-button {
    background: var(--main-bloc-color);
    border: var(--border);
    border-radius: 25px;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--box-shadow);
    min-height: 42px !important;
    flex: none !important;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    color: #c0c0c0;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    position: 30px;
}

.app-button:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(201, 201, 201, 0.4);
    box-shadow: 0px 4px 20px 0px #0000006b, 0 0 20px var(--orange-glow);
    color: #ffffff;
    transform: translateY(-1px);
}

.app-button--primary {
    background: linear-gradient(135deg, rgba(199, 199, 199, 0.2), rgba(199, 199, 199, 0.1));
    border-color: rgba(204, 204, 204, 0.3);
    color: #ffffff;
    font-weight: 550;
    animation: primaryButtonPulse 2s ease-in-out infinite;
}

.app-button--primary:hover,
.app-button--primary.app-button--active {
    background: linear-gradient(135deg, rgba(197, 197, 197, 0.3), rgba(192, 192, 192, 0.2));
    color: #ffffff;
    border: 1px solid rgba(182, 182, 182, 0.6);
    box-shadow: 0 0 30px var(--orange-accent), 0 0 60px rgba(170, 170, 170, 0.15);
    transform: translateY(-2px);
}

@keyframes primaryButtonPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(168, 168, 168, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(165, 165, 165, 0.4);
    }
}

/* Поиск */
.search-input {
    background: var(--main-bloc-color);
    border: var(--border);
    border-radius: 25px;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--box-shadow);
    margin-top: 6px;
    padding: 12px 20px;
    color: #e0e0e0;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}

.search-input:focus {
    border-color: rgba(173, 173, 173, 0.5);
    box-shadow: 0px 4px 20px 0px #0000006b, 0 0 25px var(--orange-glow);
    outline: none;
    animation: searchGlow 1.5s ease-in-out infinite alternate;
}

@keyframes searchGlow {
    from {
        box-shadow: 0px 4px 20px 0px #0000006b, 0 0 15px var(--orange-glow);
    }

    to {
        box-shadow: 0px 4px 20px 0px #0000006b, 0 0 30px var(--orange-glow), 0 0 50px rgba(177, 177, 177, 0.15);
    }
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Категории товаров */
.products-types-buttons {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .products-types-buttons {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products-types-buttons {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .products-types-buttons {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.products-types-buttons .app-button {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 12px 8px;
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    width: 100% !important;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.products-types-buttons .app-button::after {
    display: none !important;
}

.products-types-buttons .app-button:hover {
    background: #222222;
    border-color: #3a3a3a;
    color: #cccccc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.products-types-buttons .app-button--active,
.products-types-buttons .app-button.app-button--primary {
    background: linear-gradient(180deg, #222222 0%, #1a1a1a 100%);
    border-color: rgba(173, 173, 173, 0.4);
    color: #ffffff;
    font-weight: 450;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(167, 167, 167, 0.15);
}

/* Кнопка наверх */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 10px;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: #222222;
    border-color: rgba(165, 165, 165, 0.5);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 168, 168, 0.2);
    transform: translateY(-3px);
}

.scroll-to-top::after {
    content: '↑';
    font-size: 18px;
    transition: var(--transition);
}

.scroll-to-top:hover::after {
    color: #a5a5a5;
}

/* Карточки товаров */
.product-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .product-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .product-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .product-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-card {
    background: var(--main-bloc-color);
    border: var(--border);
    border-radius: var(--border-radius);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--box-shadow);
    font-family: 'Manrope', sans-serif;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: cardAppear 0.6s ease-out backwards;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.8s;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    left: 100%;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(15px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-card:nth-child(1) {
    animation-delay: 0.05s;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.15s;
}

.product-card:nth-child(4) {
    animation-delay: 0.2s;
}

.product-card:nth-child(5) {
    animation-delay: 0.25s;
}

.product-card:nth-child(6) {
    animation-delay: 0.3s;
}

.product-card:nth-child(7) {
    animation-delay: 0.35s;
}

.product-card:nth-child(8) {
    animation-delay: 0.4s;
}

.product-card:nth-child(9) {
    animation-delay: 0.45s;
}

.product-card:nth-child(10) {
    animation-delay: 0.5s;
}

.product-card:hover {
    border-color: rgba(170, 170, 170, 0.5);
    box-shadow: 0px 8px 30px 0px #000000ab, 0 0 40px var(--orange-glow);
    transform: translateY(-6px) scale(1.02);
}

.product-card-image-container {
    position: relative;
    overflow: hidden;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    min-height: 160px;
}

.product-card-image-container img {
    width: 85%;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.product-card:hover .product-card-image-container img {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(5px 5px 15px rgba(180, 180, 180, 0.4));
    animation: floatFast 1s ease-in-out infinite;
}

@keyframes floatFast {

    0%,
    100% {
        transform: translateY(0) scale(1.1);
    }

    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

.product-card-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-align: left;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    transition: var(--transition);
    flex: 1;
}

.monitoring--active {
    border-color: #441a1a;
}

.product-card:hover .product-card-title {
    color: #ffaa40;
}

.product-card-price {
    background: linear-gradient(135deg, #2a2a2a, #333333);
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-card:hover .product-card-price {
    background: linear-gradient(135deg, #333333, #444444);
    box-shadow: 0 0 15px rgba(165, 165, 165, 0.2);
    animation: priceJiggle 0.5s ease;
}

@keyframes priceJiggle {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}

.product-card-description {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
}

.product-card-old-price {
    color: #ff7878;
    text-align: left;
    text-decoration: line-through;
    font-size: 12px;
    opacity: 0.8;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #999;
    font-size: 12px;
    text-align: left;
}

/* Мониторинг */
.monitoring {
    border-radius: var(--border-radius);
    /* border: var(--border); */
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--box-shadow);
    background: var(--main-bloc-color);
    margin-bottom: 17px;
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.monitoring::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153, 153, 153, 0.5), transparent);
}

@keyframes monitoringLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


.monitoring:hover {
    border-color: rgba(180, 180, 180, 0.4);
    box-shadow: 0px 8px 30px 0px #000000ab, 0 0 40px var(--gray-glow);
}

/* Модальное окно */
.product-modal {
    width: 420px !important;
    max-width: 90vw !important;
    border-radius: var(--border-radius);
    background: var(--main-bloc-color);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--border);
    box-shadow: 0px 20px 60px 0px #000000ab, 0 0 40px var(--orange-glow);
    overflow: hidden !important;
    animation: modalPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-modal .modal-header {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    word-wrap: break-word;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal .modal-close {
    display: none;
}

.product-modal .modal-body {
    padding: 20px;
    word-wrap: break-word;
    text-align: left;
}

.product-modal .modal-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.product-modal .product-card-image-container {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.product-modal .product-card-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.product-modal .product-card-image-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.5));
    animation: modalFloat 2s ease-in-out infinite;
}

@keyframes modalFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-modal .modal-info-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.product-modal .product-card-title {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    word-wrap: break-word;
    color: #ffffff;
    font-weight: 600;
}

.product-modal .product-card-description {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 16px;
    word-wrap: break-word;
    text-align: left;
}

.product-modal .modal-price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 100, 0, 0.05));
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    gap: 10px;
}

.product-modal .modal-price-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-modal .product-card-price {
    font-size: 22px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff8c00, #e67e00);
    border-radius: 8px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}


.modal-close-button {
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    margin-left: 1.6rem;
    transition: all .2s ease;
    height: 3rem;
}

.modal-close-button {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.3);
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff5555;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    min-width: 140px;
}

.modal-close-button:hover {
    background: rgba(255, 60, 60, 0.2);
    border-color: rgba(255, 60, 60, 0.5);
    color: #ff3333;
    box-shadow: 0 0 20px rgba(255, 60, 60, 0.3);
    transform: translateY(-2px);
}

.modal-primary-button-text {
    color: #ffffff;
    font-size: .9rem;
    font-weight: 500;
}

.modal-close-button-text {
    color: #ffffff;
    font-size: .9rem;
    font-weight: 400;
    /* opacity: .8; */
}

.modal-primary-button {
    background: linear-gradient(135deg, #35ff1a63, #35ff1a63);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(53, 255, 26, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    margin-right: 1.5rem;
}

.modal-primary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modal-primary-button:hover::before {
    width: 300px;
    height: 300px;
}

.modal-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(53, 255, 26, 0.4);
    animation: buyButtonGlow 1s ease-in-out infinite;
}


.banner {
    border: var(--border);
    box-shadow: var(--box-shadow);
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}


@keyframes buyButtonGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(53, 255, 26, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(53, 255, 26, 0.6), 0 0 60px rgba(53, 255, 26, 0.2);
    }
}

.modal-close-icon {
    display: none;
}

/* Авторизация */
.auth {
    border-radius: var(--border-radius);
    border: var(--border);
    background: var(--main-bloc-color);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--box-shadow);
    padding: 20px;
}

/* Скрытые элементы */
.servers-buttons {
    display: none !important;
}

/* Скроллбар */
*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Частицы на фоне */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(172, 171, 171, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(180, 180, 180, 0.2), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(170, 170, 170, 0.2), transparent),
        radial-gradient(1px 1px at 80% 60%, rgba(180, 180, 180, 0.15), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(158, 158, 158, 0.2), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(180, 180, 180, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(136, 136, 136, 0.15), transparent);
    animation: particlesFloat 20s linear infinite;
}

.scroll-top-btn {
    position: fixed;
    /* bottom: 20px; */
    /*right: 500px; */
    /*width: 48px; */
    /*height: 48px; */
    /*cursor: pointer; */
    /*transition: opacity .3s ease; */
    /*z-index: 1000; */
}


@keyframes particlesFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

.product-modal {
    padding: 2rem 2rem;
    max-width: 310px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.wrapper {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0px;
}

.banner {
    pointer-events: none;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 15px;
}

.products-types-buttons {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 14px !important;
    margin-bottom: 10px;
}

.products-types-buttons .app-button--active,
.products-types-buttons .app-button.app-button--primary {
    background: linear-gradient(180deg, #853d3d52 0%, #b7b7b700 100%);
    border-color: rgba(173, 173, 173, 0.4);
    color: #ffffff;
    font-weight: 450;
    letter-spacing: 0.5p;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(167, 167, 167, 0.15);
}

.products-types-buttons .app-button {
    font-size: 12px;
}


.select-options {
    position: fixed !important;
    top: 60px !important;
    left: 20px !important;
    width: 280px !important;
    background: var(--main-bloc-color) !important;
    border: var(--border) !important;
    border-radius: var(--border-radius) !important;
    backdrop-filter: var(--blur) !important;
    padding: 8px !important;
    position: fixed;
    z-index: 10000 !important;
}

.select-options div {
    padding: 4px 4px !important;
    margin: 4px 0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    color: #c0c0c0 !important;
}

.select-options div:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

.select-options,
div[id*="select-options"],
div[class*="select-options"] {
    top: auto !important;
    bottom: 100px !important;
    left: 10px !important;
    right: auto !important;
}

.product-modal-description {
    color: #ffffff !important;
    font-size: 1rem;
    text-align: center;
    max-height: 30vh;
    overflow-y: auto;
}

.select-option:hover,
.select-option.active {
    background-color: #3a2424;
    color: var(--main-white-color)
}

.monitoring-progress-fill {
    background: #642525 !important;
}

.monitoring-status-overlay {
    position: absolute;
    !important;
    top: 0px;
    !important;
    left: 0px;
    !important;
    right: 0px;
    !important;
    bottom: 0px;
    !important;
    display: flex;
    !important;
    align-items: center;
    !important;
    justify-content: start;
    !important;
    margin-left: 10px;
    !important;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 5fr 1fr;
    gap: 42px;
    max-width: 100%;
    box-sizing: border-box;
}