﻿@font-face {
    font-family: "PT Sans";
    src: url("../font/PTSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PT Sans";
    src: url("../font/PTSans-Bold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cuprum";
    src: url("../font/Cuprum-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    color: #374151;
    background: #fff;
    font-family: "PT Sans", Arial, sans-serif;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

.site-floating-actions {
    position: fixed;
    right: 24px;
    bottom: 83px;
    z-index: 100;
    display: grid;
    gap: 12px;
}

.site-floating-actions__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 5px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(52, 93, 255, .32);
    transition: transform .2s ease, box-shadow .2s ease;
}

.site-floating-actions__item:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(52, 93, 255, .38);
}

.site-floating-actions__item_max {
    background: linear-gradient(135deg, #2d8cff 0%, #5148f6 100%);
}

body.OnlineChat-initialized .online-chat-root-OnlineChat {
    z-index: 100 !important;
    position: fixed !important;
}

.cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #fff;
    background: rgba(28, 28, 28, .98);
    box-shadow: 0 -8px 28px rgba(15, 23, 42, .18);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__text {
    display: grid;
    gap: 6px;
    max-width: 1280px;
    font-size: 14px;
    line-height: 1.35;
}

.cookie-consent__text p {
    margin: 0;
}

.cookie-consent__text a,
.cookie-consent__text span {
    color: #54c64a;
    font-size: 13px;
}

.cookie-consent__text a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__button {
    flex: 0 0 auto;
    min-width: 100px;
    padding: 9px 18px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: #35a936;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.cookie-consent__button:hover {
    background: #2d982e;
    transform: translateY(-1px);
}

@media (max-width: 720px) {
    .site-floating-actions {
        right: 14px;
        bottom: 43px;
    }

    .site-floating-actions__item {
        width: 52px;
        height: 52px;
        border-width: 4px;
        font-size: 13px;
    }

    .cookie-consent {
        display: grid;
        gap: 14px;
        padding: 14px;
    }

    .cookie-consent__button {
        width: 100%;
    }
}

