/* Defs */
@property --angle-1 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -75deg;
}

@property --angle-2 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -45deg;
}

:root {
    --global--size: clamp(2rem, 4vw, 5rem);
    --anim--hover-time: 400ms;
    --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
    --b-radius: 14px
}

/* ========== ERRORS ========== */

button.btn-active-chat {
    display: none!important;
}

.error-border {
    transition: 0.5s!important;
    outline: 2px solid orange!important;
    background-color: rgba(255, 165, 0, 0.68)!important;
    box-shadow: 0 0 10px 5px rgba(255, 165, 0, 0.4)!important;
}
.error-border.error-border-hidden {
    transition: 5s!important;
    outline: 2px solid rgba(255, 165, 0, 0)!important;
    background-color: rgba(255, 165, 0, 0)!important;
    box-shadow: 0 0 5px 10px rgba(255, 165, 0, 0)!important;
}

/* ========== BUTTON ========== */

/* Button Wrap Container */
.button-wrap {
    position: relative;
    z-index: 2;
    width: fit-content;
    border-radius: var(--b-radius);
    background: transparent;
    pointer-events: none;
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

/* Button Shadow Container */
.button-shadow {
    --shadow-cuttoff-fix: 2em;
    position: absolute;
    width: calc(100% + var(--shadow-cuttoff-fix));
    height: calc(100% + var(--shadow-cuttoff-fix));
    top: calc(0% - var(--shadow-cuttoff-fix) / 2);
    left: calc(0% - var(--shadow-cuttoff-fix) / 2);
    filter: blur(clamp(2px, 0.0625em, 6px));
    -webkit-filter: blur(clamp(2px, 0.0625em, 6px));
    -moz-filter: blur(clamp(2px, 0.0625em, 6px));
    -ms-filter: blur(clamp(2px, 0.0625em, 6px));
    overflow: visible;
    pointer-events: none;
    transition: filter var(--anim--hover-time) var(--anim--hover-ease);
}

/* Shadow */
.button-shadow::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: var(--b-radius);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    width: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
    height: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
    top: calc(var(--shadow-cuttoff-fix) - 0.875em);
    left: calc(var(--shadow-cuttoff-fix) - 0.875em);
    padding: 0.125em;
    box-sizing: border-box;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    overflow: visible;
    opacity: 1;
}

/* ========== BUTTON BASE STYLES ========== */

.button-wrap button {
    /* Basic Styling */
    --border-width: clamp(1px, 0.0625em, 4px);
    all: unset;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(
            -75deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.05)
    );
    border-radius: var(--b-radius);
    transform: scale(0.975);
    /*backdrop-filter: blur(0.01em);*/
    -webkit-backdrop-filter: blur(0.01em);
    -moz-backdrop-filter: blur(0.01em);
    -ms-backdrop-filter: blur(0.01em);
    box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.15em 0.05em -0.1em rgba(0, 0, 0, 0.25),
    0 0 0.05em 0.1em inset rgba(255, 255, 255, 0.5),
    0 0 0 0 rgba(255, 255, 255, 1);
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
}


.button-wrap button:hover {
    transform: scale(1);
    backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    -webkit-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    -moz-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    -ms-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
    0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
    0 0 0 0 rgba(255, 255, 255, 1);
}

/* Button Text */
.button-wrap button span {
    position: relative;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.05em;
    font-weight: 500;
    font-size: 1em;
    color: rgba(50, 50, 50, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.12);
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    padding: 10px 15px;
}

.button-wrap button:hover span {
    text-shadow: 0 0.25em 0.05em rgba(0, 0, 0, 0.1);
}

/* Text */
.button-wrap button span::after {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - var(--border-width)); /* Prevent overlapping border */
    height: calc(100% - var(--border-width));
    top: calc(0% + var(--border-width) / 2);
    left: calc(0% + var(--border-width) / 2);
    box-sizing: border-box;
    border-radius: 600px;
    overflow: clip;
    background: linear-gradient(
            var(--angle-2),
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 40% 50%,
            rgba(255, 255, 255, 0) 55%
    );
    z-index: 3;
    opacity: 0.2;
    mix-blend-mode: screen;
    pointer-events: none;
    background-size: 200% 200%;
    background-position: 25% 50%;
    background-repeat: no-repeat;
    transition: background-position calc(var(--anim--hover-time) * 1.25)
    var(--anim--hover-ease),
    --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
}

.button-wrap button:hover span::after {
    background-position: 0% 50%;
}

.button-wrap button:active span::after {
    background-position: 50% 15%;
    --angle-2: -15deg;
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .button-wrap button span::after,
    .button-wrap button:active span::after {
        --angle-2: -45deg;
    }
}

/* ========== BUTTON OUTLINE ========== */

/* Outline */
.button-wrap button::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
    width: calc(100% + var(--border-width));
    height: calc(100% + var(--border-width));
    top: calc(0% - var(--border-width) / 2);
    left: calc(0% - var(--border-width) / 2);
    padding: var(--border-width);
    box-sizing: border-box;
    background: conic-gradient(
            from var(--angle-1) at 50% 50%,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0) 2% 40%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0) 60% 95%,
            rgba(0, 0, 0, 0.2)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: all var(--anim--hover-time) var(--anim--hover-ease),
    --angle-1 500ms ease;
    box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
    --angle-1: -125deg;
}

.button-wrap button:hover::after {
    --angle-1: 0deg;
}

.button-wrap button:active::after {
    --angle-1: -75deg;
}

@media (hover: none) and (pointer: coarse) {
    .button-wrap button::after,
    .button-wrap button:hover::after,
    .button-wrap button:active::after {
        --angle-1: -75deg;
    }
}

/* Shadow Hover */
.button-wrap:has(button:hover) .button-shadow {
    filter: blur(clamp(2px, 0.125em, 12px));
    -webkit-filter: blur(clamp(2px, 0.125em, 12px));
    -moz-filter: blur(clamp(2px, 0.125em, 12px));
    -ms-filter: blur(clamp(2px, 0.125em, 12px));
}

.button-wrap:has(button:hover) .button-shadow::after {
    top: calc(var(--shadow-cuttoff-fix) - 0.5em);
    opacity: 1;
}

/* Rotation */
.button-wrap:has(button:active) {
    transform: rotate3d(1, 0, 0, 25deg);
}

.button-wrap:has(button:active) button {
    box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.125em 0.125em -0.125em rgba(0, 0, 0, 0.2),
    0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
    0 0.225em 0.05em 0 rgba(0, 0, 0, 0.05),
    0 0.25em 0 0 rgba(255, 255, 255, 0.75),
    inset 0 0.25em 0.05em 0 rgba(0, 0, 0, 0.15);
}

.button-wrap:has(button:active) .button-shadow {
    filter: blur(clamp(2px, 0.125em, 12px));
    -webkit-filter: blur(clamp(2px, 0.125em, 12px));
    -moz-filter: blur(clamp(2px, 0.125em, 12px));
    -ms-filter: blur(clamp(2px, 0.125em, 12px));
}

.button-wrap:has(button:active) .button-shadow::after {
    top: calc(var(--shadow-cuttoff-fix) - 0.5em);
    opacity: 0.75;
}

.button-wrap:has(button:active) span {
    text-shadow: 0.025em 0.25em 0.05em rgba(0, 0, 0, 0.12);
}

/* Active state - instant transitions and no text shadow */
.button-wrap:has(button:active) .button-shadow,
.button-wrap:has(button:active) .button-shadow::after,
.button-wrap button:active,
.button-wrap button:active span,
.button-wrap button:active span::after,
.button-wrap button:active::after {
    transition-duration: 0.001s !important;
    transform: scale(0.95)!important;
    transition: 0.001s!important;
}

.button-wrap:has(button:active) span,
.button-wrap button:active span {
    text-shadow: none !important;
}

#aside-btns .button-wrap button span {
    padding: 0 !important;
    display: inline-block;
    width: 42px;
    transform: translate(0, 1px);
}
#aside-btns .button-wrap button span svg {
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    transition: 0.2s;
}
#aside-btns .button-wrap button:hover span svg {
    filter: drop-shadow(3px 3px 1.5px rgba(0, 0, 0, 0.27));
}
#aside-btns .button-wrap button:active span svg {
    transition: 0.0001s;
    filter: drop-shadow(0 0 0 black);
}
#aside-btns .button-wrap button span svg {
    z-index: 1000;
}

/*==================================================================*/
/*PROFIL BUTTONS GLASS*/
/*==================================================================*/
aside {
    position: relative;
}

#aside-btns .button-wrap button:not(:hover) {
    box-shadow: none;
}
#aside-btns .button-wrap button:not(:hover) svg path {
    stroke: #999999!important;
}
#aside-btns .button-wrap button:active svg path {
    stroke: #5856D5!important;
}
#aside-btns .button-wrap button:not(:hover):after {
    visibility: hidden;
}
#aside-btns .button-wrap .button-shadow:not(:hover):after {
    visibility: hidden;
}




/*==================================================================*/
/*PANEL-SUPER*/
/*==================================================================*/

.panel-super {
    --border-width: 1.5px;
    all: unset;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(-75deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: var(--b-radius);
    transform: scale(0.975);
    backdrop-filter: blur(1.5px);

    -webkit-backdrop-filter: blur(1.5px);
    -moz-backdrop-filter: blur(1.5px);
    -ms-backdrop-filter: blur(1.5px);
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
}
.panel-super:after {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
    width: calc(100% + var(--border-width));
    height: calc(100% + var(--border-width));
    top: calc(0% - var(--border-width) / 2);
    left: calc(0% - var(--border-width) / 2);
    padding: var(--border-width);
    box-sizing: border-box;
    background: conic-gradient(from var(--angle-1) at 50% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 2% 40%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 60% 95%, rgba(0, 0, 0, 0.2)), linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: all var(--anim--hover-time) var(--anim--hover-ease), --angle-1 500ms ease;
    box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
    --angle-1: -125deg;
}
.panel-super:before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    /*background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.45"/></svg>'), linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%);*/

    background-image:
            url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100' height='100' fill='white' filter='url(%23noise)' opacity='0.22'/></svg>");

    background-size: 100px 100px, 4px 4px;
    pointer-events: none;
    mix-blend-mode: overlay;
    border: 1px solid rgba(83, 83, 83, 0.62);
    filter: blur(3px);
    transform: translate(-1px, -1px);
}
.panel-super:hover:after {
    --angle-1: -80deg;
}

/*==================================================================*/
/*MAIN-TAGS*/
/*==================================================================*/
#body,
#body-s,
#body-s *,
#body * {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
#body-s {
    overflow-x: hidden;
}
main {
    min-height: 100vh;
}
.writer {
    font-family: "My_text", sans-serif!important;
}
.school {
    font-family: "school", sans-serif!important;
}
.overflow-hidden {
    overflow: hidden;
}
h2.h2 {
    font-family: "leor-1", sans-serif!important;
}
#body-s .invisible,
.invisible {
    display: none!important;
}
.visually-hidden {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    max-height: 1px;
    max-width: 1px;
    overflow: hidden;
}

.load-in:before {
    content: '';
    transition: 0.2s;
    position: absolute;
    background: repeating-linear-gradient(-45deg, yellow, yellow 5px, black 5px, black 10px);
    display: inline-block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    opacity: 0.2;
    z-index: 999999;
}

ul, li {
    /*list-style-type: none;*/
    /*padding: 0;*/
    /*margin: 0;*/
}

.b {
    outline: 1px solid red!important;
}

.btn-clear {
    border: none;
    background: none;
    outline: none;
}

.bold {
    font-family: "leor-3", sans-serif;
    font-weight: 800!important;
}
@font-face {
    font-family: "My_text";
    src: url("/RESURSES/20220108-213328_id-2-547367.ttf");
}

body * {

}

.blue-btn {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    background: #5856D5;
    border: none;
    color: #ffffff;
}

.width-corrector {
    position: relative;
    margin-right: 5px;
}
.width-corrector .thumbs {
    position: absolute;
    right: -5px;
    width: 9px;
    top: 0;
    height: 100%;
    display: inline-block;
    z-index: 5;
    cursor: col-resize;
}
.height-corrector .thumbs-y {
    position: absolute;
    right: 0;
    width: 100%;
    bottom: -5px;
    height: 10px;
    display: inline-block;
    z-index: 5;
    cursor: row-resize;
}
.width-corrector .thumbs:hover,
.height-corrector .thumbs-y:hover {
    background-color: rgba(255, 255, 0, 0.18);
}
.img-wrapper {
    position: relative;
}
.img-wrapper img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.insert-container {
    position: relative;
    background-color: aqua;
    box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.38);
    border-radius: 4px;
    padding: 2px;
    min-height: 49px;
    min-width: 150px;
    flex-grow: 2;
    box-sizing: border-box;
}
.insert-container div {
    z-index: 5;
    position: relative;
    background-color: antiquewhite;
    min-height: inherit;
    max-height: unset;
    padding: 3px 4px;
}
.file-settings {
    padding: 5px;
    width: 80px;
    align-items: center;
    height: 90px;
    cursor: pointer;
}
.file-settings .file-name {
    text-align: center;
    font-size: 11px;
    line-height: 12px;
    margin-top: -7px;
    border-radius: 5px;
    padding: 4px 5px;
    max-height: 30px;
    overflow-y: hidden;
}
.file-settings:hover {
    background-color: rgba(94, 188, 255, 0.31);
}
.file-settings:active {
    transform: scale(0.98);
}
.file-settings .ico {
    font-size: 3em;
}
.micro-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 12px!important;
    font-weight: 100!important;
    padding: 0;
    cursor: pointer;
    border-radius: 3px;
}
.micro-button:hover {
    transform: scale(1.1);
}
.micro-button:active {
    transform: scale(0.95);
    box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.37);
}

.window button.micro-closer {
    cursor: pointer;
    position: absolute;
    background-color: #fff;
    border-radius: 50px;
    padding: 1px 2px !important;
    font-size: 12px;
    font-weight: 800;
    color: red;
    right: -3px;
    top: -3px;
}
.insert-container::before {
    content: "🧾";
    position: absolute;
    right: 6px;
    bottom: 5px;
    font-size: 13px;
    font-style: italic;
    opacity: 0.6;
}
.insert-container::after {
    content: "Для выбора, дважды кликните или перетащите пресет в эту область.";
    display: inline-block;
    max-width: calc(100% - 8px);
    font-style: italic;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.42);
    position: absolute;
    left: 6px;
    top: 3px;
}
/* Ширина скроллбара */
.scroll-config::-webkit-scrollbar {
    width: 10px;
}

/* Цвет фона скроллбара */
.scroll-config::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Цвет скроллбара */
.scroll-config::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Тень скроллбара */
.scroll-config::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.text-block {
    max-width: 700px;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.not-minimaze h4 .minimaze-btn {
    display: none!important;
}
.underline {
    text-decoration: underline;
}
.underline:hover {
    color: blue;
}
.placeholder::placeholder {
    color: #000000!important;
}
/*==================================================================*/
/*FONTS*/
/*==================================================================*/
.txt-90 {
    font-size: 90px;
    font-weight: 600;
    line-height: 100%;
}
.txt-60 {
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
}
.txt-40 {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
}
.txt-30 {
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
}
.txt-20 {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
}
.txt-24 {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
}
.txt-26 {
    font-size: 26px;
    font-weight: 500;
    line-height: 100%;
}
.txt-18 {
    font-size: 18px;
    font-weight: 200;
    line-height: 100%;
}
.txt-16 {
    font-size: 16px;
    font-weight: 100;
    line-height: 100%;
    margin-bottom: 10px;
}
.txt-12 {
    font-size: 12px;
    font-weight: 100;
    line-height: 100%;
}
@media screen and (max-width: 1230px) {
    .txt-90 {
        font-size: 50px;
        font-weight: 600;
        line-height: 100%;
    }
}
@media screen and (max-width: 900px) {
    .txt-90 {
        font-size: 30px;
        font-weight: 600;
        line-height: 100%;
    }
    .txt-30 {
        font-size: 24px;
        font-weight: 600;
        line-height: 100%;
    }
    .txt-26 {
        font-size: 16px;
        font-weight: 500;
        line-height: 100%;
    }
    .txt-20 {
        font-size: 16px;
        font-weight: 600;
        line-height: 100%;
    }
    .txt-18 {
        font-size: 15px;
        font-weight: 200;
        line-height: 100%;
    }
}
/*==================================================================*/
/*OPTIONS*/
/*==================================================================*/
.options fieldset {
    border: 1px solid rgba(0, 128, 0, 0.31);
    border-radius: 7px;
    max-width: fit-content;
}
body.dark .options fieldset {
    border: 1px solid var(--dark-border-color-max);
}
.options fieldset legend {
    padding: 0 5px 1px 5px;
    font-weight: 600;
}
.options fieldset label input[type="checkbox"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.options fieldset label:hover span {
    text-shadow: 0 0 1px rgba(0, 128, 0, 0.56);
}
.options fieldset label:active span {
    text-shadow: 0 0 2px rgb(0, 128, 0);
}
.options fieldset label {
    cursor: pointer;
}

/*==================================================================*/
/*MAIN-CLASS*/
/*==================================================================*/
.glass-fone {
    position: relative;
}
.glass-fone:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    filter: url('#glass-waves');
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
}
.glass-fone:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 6px 3px rgba(255, 255, 255, 0.09), inset 0 0 6px 3px rgba(255, 255, 255, 0.09), inset 0 0 6px 3px rgba(255, 255, 255, 0.09), inset 0 0 6px 3px rgba(255, 255, 255, 0.09),
                inset 0 0 2px 1px rgba(0, 0, 0, 0.04), inset 0 0 2px 1px rgba(0, 0, 0, 0.03), inset 0 0 2px 1px rgba(0, 0, 0, 0.02), inset 0 0 2px 1px rgba(0, 0, 0, 0.03);
}


*.alert {
    background-color: rgba(255, 165, 0, 0.68);
    box-shadow: 10px 0 10px orange, 0 0 0 orange, -10px 0 10px orange, 0 0 0 orange;
    position: relative;
}
*.alert td:last-child:before {
    content: '';
    position: absolute;
    display: inline-block;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80%;
    object-fit: contain;
    background-image: url("/IMG/img100x100/20240420-115255_id-2-488961.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@keyframes shake {
    10%, 90% {
        transform: translateX(-0.5px);
    }
    20%, 80% {
        transform: translateX(1px);
    }
    30%, 50%, 70% {
        transform: translateX(-2px);
    }
    40%, 60% {
        transform: translateX(2px);
    }
}
.shake {
    animation: shake 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.input {
    outline: none;
    display: inline-block;
    padding: 20px;
    font-size: 20px;
    border-radius: 15px;
    border: 1px solid #000;
    /*-webkit-text-fill-color: rgba(30, 144, 255, 0.75)!important;*/
    background-color: #f2f4fa;
}
.input:focus {
    outline: 2px solid rgba(30, 144, 255, 0.75);
}
.invalid {
    outline: 2px solid rgba(255, 0, 0, 0.86)!important;
    background-color: #ff8080!important;
}
.blocker {
    overflow: hidden;
    margin-right: 11px;
}
.select {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80vh;
}
.select .select-item {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    font-size: 20px;
    font-weight: 600;
}
.select .select-item:hover {
    background-color: rgba(0, 128, 0, 0.15);
}
.closer {
    position: absolute;
    display: inline-block;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    background-image: url("/DOWNLOAD/20250606-113605_id-2-671468.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    z-index: 10;
}
.closer:hover {
    transform: scale(1.1);
}
.closer:active {
    transform: scale(0.95);
}
div[contenteditable="true"] {
    user-select: text;
}
.micro-img {
    display: inline-block;
    width: 30px;
    height: 30px;
}
.row {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-pages *:not(.ace_editor, .ace_editor *) {
    /*font-family: "leor-1", sans-serif;*/
    /*font-size: 18px;*/
}
.text-shadow-white {
    color: #ffffff;
    text-shadow:
            -0   -1px 0 rgba(0, 0, 0, 0.2),
            0   -1px 0   rgba(0, 0, 0, 0.2),
            -0    1px 0   rgba(0, 0, 0, 0.2),
            0    1px 0   rgba(0, 0, 0, 0.2),
            -1px -0   0   rgba(0, 0, 0, 0.2),
            1px -0   0   rgba(0, 0, 0, 0.2),
            -1px  0   0   rgba(0, 0, 0, 0.2),
            1px  0   0   rgba(0, 0, 0, 0.2),
            -1px -1px 0   rgba(0, 0, 0, 0.2),
            1px -1px 0   rgba(0, 0, 0, 0.2),
            -1px  1px 0   rgba(0, 0, 0, 0.2),
            1px  1px 0   rgba(0, 0, 0, 0.2),
            -1px -1px 0   rgba(0, 0, 0, 0.2),
            1px -1px 0   rgba(0, 0, 0, 0.2),
            -1px  1px 0   rgba(0, 0, 0, 0.2),
            1px  1px 0   rgba(0, 0, 0, 0.2);
}
.count-lines-1,
.count-lines-2,
.count-lines-3,
.count-lines-4,
.count-lines-5 {
    display: -webkit-box!important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical!important;
    overflow: hidden!important;
    text-overflow: ellipsis!important;
    white-space: normal!important;
}
.count-lines-1 {
    -webkit-line-clamp: 1;
}
.count-lines-2 {
    -webkit-line-clamp: 2;
}
.count-lines-3 {
    -webkit-line-clamp: 3;
}
.count-lines-4 {
    -webkit-line-clamp: 4;
}
.count-lines-5 {
    -webkit-line-clamp: 5;
}

.admin-pages *:not(.ace_editor, .ace_editor *) {
    font-family: 'My_text', sans-serif;
}

.ace_scrollbar-v {
    overscroll-behavior-y: contain!important;
    overflow-y: auto;
}
::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar,
body *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #01aac900;
}
::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track {
    box-shadow: 0 0 2px rgba(0, 0, 0, .2) inset;
    border-radius: 55px;
}
::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
body *::-webkit-scrollbar-thumb {
    background: #ad730b;
    border-radius: 60px;
    border: 3px solid #93610a;
}
html ,body, body * {
    scrollbar-color: rgba(188, 188, 255, 0.59) #dcf0ff;
    scrollbar-width: thin;
}
.wrapper {
    box-sizing: border-box;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.wrapper-2 {
    box-sizing: border-box;
    width: 100%;
    margin: 0 10px;
    padding: 0 40px;
}
.flex-1 {
    flex: 1;
}
.flex-2 {
    flex: 2;
}
.flex-3 {
    flex: 3;
}
.flex-4 {
    flex: 4;
}
.not-active {
    pointer-events: none;
}
.modal {
    background-color: rgba(0, 0, 0, 0.37);
}
.svg-wrapper svg {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.super-flex {
    display: flex!important;
}
.info-info.info-panel {
    padding: 0 !important;
    width: 480px !important;
    max-width: calc(100vw - 20px) !important;
    background-image: none;
    background-color: antiquewhite !important;
}
.info-info.info-panel h4 {
    background-color: #ffffff !important;
    margin-bottom: 12px !important;
}
.info-panel.content-panel {
    padding: 0!important;
    max-width: unset!important;
}
.info-panel h4 {
    background-color: #fff!important;
}
.info-info.info-panel .info-content {
    text-align: left;
    padding: 0 10px 15px 10px;
    font-size: 18px;
    white-space: pre-wrap;
}
.thumbles {
    display: inline-block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
button.micro-btn-table {
    font-size: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 12px !important;
    display: inline-block;
    max-width: 12px!important;
    max-height: 12px!important;
    border: none!important;
}

@media screen and (max-width: 950px) {
    .svg-wrapper {
        display: inline-block;
        width: 28px;
        height: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    .text-info .svg-wrapper {
        width: 19px;
        height: 19px;
        max-width: 19px;
        max-height: 16px;
    }
    .header .svg-wrapper {
        width: unset;
        height: unset;
        max-width: unset;
        max-height: unset;
    }
}

.info-panel .scroll-list {
    align-items: flex-start!important;
}
.info-panel .scroll-list button {
    margin: 2px 4px!important;
    align-self: unset!important;
    border-radius: 2px!important;
    text-align: left;
}
.pulse {
    border: 1px solid rgba(41, 174, 227, 0);
    animation: pulse 1.4s linear infinite;
}
.sys-btn,
.pnl {
    position: relative;
    vertical-align: middle;
    border-right: 1px solid #fff;
    text-shadow: 0 1px 0 #fff;
    background: #f3f3f3;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
    background: -webkit-linear-gradient(top, #ffffff, #cccccc);
    background: -moz-linear-gradient(top, #ffffff, #cccccc);
    background: -ms-linear-gradient(top, #ffffff, #cccccc);
    background: -o-linear-gradient(top, #ffffff, #cccccc);
    border: 1px dotted rgba(126, 126, 126, 0.47);
    border-radius: 5px;
    padding: 0.4em 0.6em 0.4em 0.6em;
    outline: none;
    font-weight: 600;
    cursor: pointer;
    color: #292929;
}
.pnl {
    cursor: auto;
    border-radius: 0;
}
.sys-btn:hover {
    outline: 1px solid rgba(0, 0, 0, 0.26);
    color: #000;
}
.sys-btn:active,
.sys-btn.pressed {
    /*text-shadow: 1px 1px 1px #777777;*/
    padding: 0.45em 0.6em 0.35em 0.6em;
    outline: 1px solid rgba(255, 255, 255, 0.81);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.32);
}
.micro-btn {
    cursor: pointer;
    background-color: #eeeeee;
    border: 1px solid #b8b8b8;
    border-radius: 4px;
}
.micro-btn:hover {
    transform: scale(1.02);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16);
}
.micro-btn:active {
    transform: scale(0.98);
    box-shadow: inset 2px 1px 3px rgba(0, 0, 0, 0.29);
}
.gui-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 14px;
    border: 1px solid orange;
    background: none;
    border-radius: 30px;
    padding: 5px;
    font-size: 12px;
    color: orange;
    cursor: pointer;
}
body h2.h2,
body *.h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 1.7em!important;
    /*line-height: 28px;*/
    display: inline-block;
    text-wrap: balance;
    font-family: "leor-1", sans-serif;
    padding-right: 10px;
    text-decoration: none;
}
body a.h2 {
    color: #000;
}
body a.h2:hover {
    transform: scale(1.02);
    color: var(--font-color-hover);
}
body a.h2:active {
    transform: scale(0.98);
    color: var(--font-color-hover);
}
#body {
    max-width: 100vw;
    overflow-x: hidden;
}
.gui-btns:hover {
    background-color: #573300;
    color: #fff;
}
.gui-btns:active {
    background-color: #ff9400;
    color: #000000;
    border: 1px solid dodgerblue;
    transform: scale(0.9);
}
#body input,
#body button,
#body select {
    color: #000;
    border: 1px dotted rgba(126, 126, 126, 0.47);
    border-radius: 60px;
    padding: 3px 4px;
    outline: none;
    
}
#body button,
#body select {
    cursor: pointer;
}
#body.night input,
#body.night select {
    background: none;
    color: #fff;
    border: 1px dotted rgba(126, 126, 126, 0.47);
    border-radius: 60px;
    padding: 3px 10px;
    outline: none;
}
#body #container {
    /*z-index: 999999;*/
}
.center-wrapper-scroller {
    width: calc(100% - 8px);
    height: calc(100vh - 84px);
    position: absolute;
    left: 4px;
    top: 40px;
    outline: 1px dotted #5ebcff;
    overflow: auto;
}
.bold-font {
    font-weight: 600;
}
.width100perc {
    width: 100%;
}
.width100vw {
    width: 100vw;
}

@media screen and (max-width: 950px) {
    .blocker {
        margin-right: 0;
    }
}

/*==================================================================*/
/*STANDART*/
/*==================================================================*/
.btn-not-borders {
    display: flex;
    align-items: center;
    background: none;
    color: inherit;
    padding: 0 5px;
    text-decoration: none;
    border: none;
    outline: none;
}
.btn-not-borders:focus,
.btn-not-borders:hover {
    outline: 1px dotted rgba(0, 0, 0, 0.32);
    border-radius: 10px;
}
.grey-panel {
    padding: 15px 20px;
    border-radius: 20px;
    background-color: #F8F7F7;
}
.margin-left-auto {
    margin-left: auto!important;
}
.margin-right-auto {
    margin-right: auto!important;
}
.lime-back {
    box-shadow: inset 0 0 6px rgba(0, 255, 0, 0.57);
}
.red-back {
    box-shadow: inset 0 0 6px rgba(255, 0, 0, 0.57);
}
.finder-form .content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.finder-form .content input {
    padding: 3px 10px;
}
.white-place {
    background-color: #fff;
    font-size: 14px!important;
    padding: 0 10px;
}
.white-place pre {
    font-size: 14px !important;
    font-family: monospace !important;
    line-height: 17px !important;
}
.fieldset {
    border-radius: 5px;
    border: 1px solid #7c7c7c;
}
.fieldset input {
    display: inline-block;
    width: 300px;
}
.win-up-panel {
    position: absolute;
    bottom: -1px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2px 4px 2px;
    background-color: #e9e9e9;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    z-index: 5;
    width: 100%;
    box-shadow: 0 -5px 9px rgba(0, 0, 0, 0.13);
}
.title-log {
    cursor: pointer;
}
.title-log:hover {
    text-shadow: 0 0 1px red;
}
.title-log:active {
    transform: scale(0.97);
}

/*==================================================================*/

/*==================================================================*/


/*==================================================================*/
/*ALERTS - MESSAGES*/
/*==================================================================*/

#mess-cont {
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 99999999;
}
#mess-cont > div.mess {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    min-height: 0;
    transition: 0.2s;
    background-color: rgba(255, 255, 255, 0.9)!important;
    padding: 24px 24px 24px 60px;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 4px 8px 0 rgba(5, 5, 5, 0.12), 0 0 20px 0 rgba(0, 0, 0, 0.10);
    opacity: 0;
    max-height: 0;
    cursor: pointer;
    margin-bottom: 3px;
}
#mess-cont > div.mess.opened {
    min-height: 70px;
    max-height: 600px;
    opacity: 1;
}
#mess-cont > div.mess .mess-closer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px;
    top: 20px;
    cursor: pointer;
    font-weight: 800!important;
    border: none;
    background: none;
    color: #656565;
}

#mess-cont > div.mess,
#mess-cont > div.mess * {
    font-size: 16px;
}
#mess-cont > div.mess .mess-img {
    display: inline-block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    position: absolute;
    left: 20px;
    top: 20px;
}
#mess-cont > div.mess .title-mess {
    padding-right: 24px;
    font-size: 20px;
    font-weight: 600!important;
}
#mess-cont .action-flag {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 7px;
    border: 1px solid #00000000;
    color: #000000;
    padding: 3px 10px 2px;
    box-shadow: 0 0 3px #00000014;
}
#mess-cont .mess.smoller {
    transition: 0.2s!important;
    padding: 0 12px 0 60px!important;
}

/*==================================================================*/
/*end of ALLERT - MESSAGES*/
/*==================================================================*/


.wave-loading-white {
    background: linear-gradient(
            270deg,
            #ffffff 25%,
            #f0f0f0 50%,
            #ffffff 75%
    );
    background-size: 200% 100%;
    animation: wave-loader 1.5s infinite linear;
}
.wave-loading-black {
    background: linear-gradient(
            270deg,
            #333 25%,
            #555 50%,
            #333 75%
    );
    background-size: 200% 100%;
    animation: wave-loader 1.5s infinite linear;
}
@keyframes wave-loader {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
#placer {
    z-index: 999999999999!important
}
.not-border {
    background: none;
    border: none;
}
.inpt-btn svg path {
    fill: #000;
}
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.pulse::after {
    animation-delay: .5s;
}

#input-files.invisible-input {
    display: none!important;
}

/*=== Circle BTN for CLOSE FORM =======================================================*/
.close-map-btn-circ {
    box-sizing: border-box;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background-color: red;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
    z-index: 20;
}

.close-map-btn-circ:hover {
    background-color: rgba(255, 255, 255, 0);
}

.close-map-btn-circ:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #ff6400;
    background-color: rgba(255, 255, 255, 0);
    width: 10%;
    height: 10%;
    opacity: 0;
    border-radius: 50%;
    transition: 0.3s;
}

.close-map-btn-circ:hover:before {
    width: 90%;
    height: 90%;
    opacity: 1;
    border: 5px solid #ff0700;
}

.close-map-btn-circ:active {
    transition: 0.001s;
    transform: scale(0.8);
}

.qest-modul {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: -10vh;
    padding: 10px 25px;
    background-color: #ff7600;
    color: #ffffff;
    font-family: Play, sans-serif;
    font-size: 2vmin;
    text-align: center;
    max-width: 40vw;
    border-top: 1px solid #6c6c6c;
    border-left: 1px solid #9f9f9f;
    border-radius: 6px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.56);
    z-index: 9999;
    transition: 0.5s;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 42, 0.58);
    background-size: cover;
    z-index: 9998;
}

.overlay-gray,
.WORD-editor-gray {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99;
    transition: 0.2s!important;
}
.overlay-gray.glass {
    background-color: rgba(0, 0, 0, 0);
}

.overlay-gray-2 {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    transition: 0.4s;
    overflow: hidden;
    opacity: 0;
    z-index: 9999999;
}
.overlay-gray-2.opened {
    opacity: 1;
}
.place-popap {
    position: relative;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(110%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.42);
}
.place-popap.showed {
    opacity: 1;
    transform: translateY(0);
}

.max-size {
    width: 100%;
    height: 100vh;
}

#body .not-visible,
.not-visible {
    display: none!important;
}

#placer {
    position: fixed;
    z-index: 999999;
    right: 10px;
    top: 10px;
}
.admin-pages#body #placer {
    z-index: 999999!important;
}

.mess-itm {
    padding: 5px 10px;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 3px;
}

.mess-itm h3 {
    padding-bottom: 3px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.61);
    margin-bottom: 3px;
}

.tray-item {
    position: fixed;
    right: 1vmin;
    top: 1vmin;
    text-align: right;
    background-color: rgba(255, 232, 241, 0);
    color: #000;
    z-index: 9999;
    padding: 1vmin;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.tray-item:hover {
    transform: scale(1.05);
}

.full-screen {
    min-width: 100%;
    min-height: 100vh;
}

#close-map,
.close-map-btn,
.ok-map-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px!important;
    height: 30px!important;
    border: none;
    background-image: url("/DOWNLOAD/20250606-113605_id-2-671468.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    visibility: visible!important;
    z-index: 9991;
}

#close-map:hover,
.close-map-btn:hover,
.ok-map-btn:hover {
    transform: scale(1.1);
}

.ok-map-btn {
    background: url('/img/ok.png') no-repeat center;
    top: 40px;
}

.admin-btn {
    background-color: #0028a7;
    color: #ffffff;
    border-radius: 4px;
    padding: 2px 20px;
    margin: 2px 5px;
    text-transform: uppercase;
    border: 1px solid #0055a7;
    transition: 0.2s;
    cursor: pointer;
}

.admin-btn:hover,
.admin-btn:focus {
    border: 1px solid #565656;
    transform: scale(1.1);
}

.admin-btn:active {
    transform: scale(1);
}

.btn-abs {
    position: fixed;
    bottom: 8vh;
    right: 8vw;
    font-size: 26px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(0, 163, 173, 0.74);
    box-shadow: inset -3px -3px 7px rgba(0, 23, 31, 0.74);
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #ffffff;
    border-bottom: 2px solid #818181;
    border-right: 2px solid #818181;
    margin: 5px auto;
    z-index: 9000;
    transition: 1s;
    transform: translateY(25vh);
}

.btn-abs:hover,
.btn-abs:focus {
    outline: none;
    border: 2px solid #818181;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    box-shadow: inset 3px 3px 7px rgba(0, 23, 31, 0.74);
}

.btn-just {
    display: inline-flex;
    height: 34px;
    padding: 10px 24px;
    justify-content: center;
    font-size: 14px;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    border: none;
    background: #E3EAFC;
}

.btn-just:active {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.87);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0);
}

.btn-0 {
    background-color: rgba(9, 85, 15, 0.26);
    color: #000;
    border: 0 solid #ffffff00;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
}
.btn-1 {
    background-color: #000;
    color: #fff;
}
.btn-2 {
    background-color: #7FD5BF;
    color: #fff;
}
.btn-3 {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}
.btn-4 {
    background-color: #B6CEF9;
    color: #2d2d2d;
    border: 1px solid #a8a8a8;
    text-shadow: 0 1px 1px #fff;
}
.btn-5 {
    background-color: #ff9494;
    color: #fff;
}

.img-wrapper img {
    max-width: 100%;
    display: inline-block;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-list {
    font-size: 1em;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.69);
    text-shadow: -1px -1px 1px #ffffff, 1px 1px 1px #ffffff;
    border: 1px solid rgba(255, 255, 0, 0);
    background-color: orange;
    margin: 3px 10px;
    padding: 5px 15px;
    border-radius: 1.4em;
}

.btn-list:hover {
    border: 1px solid rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 239, 0, 0.82);
}

.btn-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -5px;
    width: 0;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 1.4em;
    background-color: rgba(0, 106, 204, 0);
    transition: 0.2s;
    transform: translateX(-50%);
    z-index: -1;
}

.btn-list::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 0, 0);
    border-right: 1px solid rgba(255, 255, 0, 0);
    border-radius: 1.4em;
    transform: translateX(-50%);
    transition: 0.9s;
}

.btn-list:hover::after {
    width: 110%;
    border-left: 3px solid rgb(255, 79, 0);
    border-right: 3px solid rgb(255, 79, 0);
}

.btn-list:hover::before {
    width: 100%;
    border: 5px solid #FFFFFF;
    background-color: rgba(193, 229, 255, 0.89);

}

.tshadow-black {
    text-shadow:
            -0   -1px 0   #000000,
            0   -1px 0   #000000,
            -0    1px 0   #000000,
            0    1px 0   #000000,
            -1px -0   0   #000000,
            1px -0   0   #000000,
            -1px  0   0   #000000,
            1px  0   0   #000000,
            -1px -1px 0   #000000,
            1px -1px 0   #000000,
            -1px  1px 0   #000000,
            1px  1px 0   #000000,
            -1px -1px 0   #000000,
            1px -1px 0   #000000,
            -1px  1px 0   #000000,
            1px  1px 0   #000000;
}

.tshadow-white {
    text-shadow:
            -0   -2px 0   #FFFFFF,
            0   -2px 0   #FFFFFF,
            -0    2px 0   #FFFFFF,
            0    2px 0   #FFFFFF,
            -2px -0   0   #FFFFFF,
            2px -0   0   #FFFFFF,
            -2px  0   0   #FFFFFF,
            2px  0   0   #FFFFFF,
            -1px -2px 0   #FFFFFF,
            1px -2px 0   #FFFFFF,
            -1px  2px 0   #FFFFFF,
            1px  2px 0   #FFFFFF,
            -2px -1px 0   #FFFFFF,
            2px -1px 0   #FFFFFF,
            -2px  1px 0   #FFFFFF,
            2px  1px 0   #FFFFFF,
            -1px -4px 0   #FFFFFF,
            1px -2px 0   #FFFFFF,
            -1px  2px 0   #FFFFFF,
            1px  2px 0   #FFFFFF,
            -2px -1px 0   #FFFFFF,
            2px -1px 0   #FFFFFF,
            -2px  1px 0   #FFFFFF,
            2px  1px 0   #FFFFFF,
            -1px -2px 0   #FFFFFF,
            1px -2px 0   #FFFFFF,
            -1px  2px 0   #FFFFFF,
            1px  2px 0   #FFFFFF,
            -2px -1px 0   #FFFFFF,
            2px -1px 0   #FFFFFF,
            -2px  1px 0   #FFFFFF,
            2px  1px 0   #FFFFFF,
            -2px -2px 0   #FFFFFF,
            2px -2px 0   #FFFFFF,
            -2px  2px 0   #FFFFFF,
            2px  2px 0   #FFFFFF,
            -2px -2px 0   #FFFFFF,
            2px -2px 0   #FFFFFF,
            -2px  2px 0   #FFFFFF,
            2px  2px 0   #FFFFFF;
}

.point-background {
    position: relative;
    background: radial-gradient(black 15%, transparent 16%) 0 0, radial-gradient(black 15%, transparent 16%) 8px 8px, radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px, radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 8px 9px;
    background: -moz-radial-gradient(black 15%, transparent 16%) 0 0, -moz-radial-gradient(black 15%, transparent 16%) 8px 8px, -moz-radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px, -moz-radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 8px 9px;
    background: -webkit-radial-gradient(black 15%, transparent 16%) 0 0, -webkit-radial-gradient(black 15%, transparent 16%) 8px 8px, -webkit-radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px, -webkit-radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 8px 9px;
    background-color: #373737;
    background-size: 16px 16px;
    -webkit-background-size: 16px 16px;

    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.66);
}

.point-background:before {
    content: '';
    position: absolute;
    z-index: -1;
    border: 1px dashed rgba(143, 143, 143, 0.7);
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    -moz-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.8),0 0 5px 1px rgba(0, 0, 0, 0.5) inset;
    -webkit-box-shadow: 0 0 1px 1px rgba(0 0 0 0.8), 0 0 5px 1px rgba(0 0 0 0.5) inset;
    box-shadow: 0 0 1px 1px rgba(0 0 0 0.8), 0 0 5px 1px rgba(0 0 0 0.5) inset;
}

.close-map-btn {
    /*background: url("/img/cancel.png");*/
}

.zebra {
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 0, 0.05), rgba(255, 255, 0, 0.05) 20px, rgba(0, 0, 0, 0.05) 20px, rgba(0, 0, 0, 0.05) 40px);
    background-size: 200% 200%;
    animation: move-stripes 10s linear infinite;
}

.disabled {
    opacity: 0.4;
    pointer-events: none!important;
    color: grey;
    filter: gray(1);
}

.disabled .disabled {
    opacity: 1!important;
}

.sender-message {
    position: absolute;
    right: 0;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 0 2em;
    font-size: 36px;
    color: #000000;
    z-index: 500;
    width: 55vw;
    transform: translate(0, -100%);
    transition: 0.6s;
}

.sender-message:hover {
    opacity: 0.1;
}

.border-qest {
    border: 5px solid #191919;
}

.loader {
    position: relative;
}
.line {
    display: block;
    margin: 5px 0 5px;
    background-color: #2f2f2f;
    width: 100%;
    height: 1px;
}
.link {
    font-size: 0.7em;
}

.loader:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25%;
    margin-top: -25%;
    background-image: url("/img/20201119-094652_id-2-125330.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#loaderImg {
    background-color: gray;
    padding: 10px;
    position: relative;
    flex-direction: column;
}

#loaderImg form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

#loaderImg form input {
    display: inline-block;
    margin: 10px;
}

#loaderImg form input[type="submit"] {
    margin-left: unset;
    transform: translateX(0);
}

.btn-btn {
    display: inline-block;
    position: relative;
    background-color: #2d1f76;
    border-radius: 5px;
    color: #FFFFFF;
    padding: 3px 7px;
    border: 1px solid rgba(251, 255, 0, 0.57);
    margin-right: 20px;
    cursor: pointer;
    font-size: 19px;
    text-decoration: none;
}

.bread-crumbs a {
    position: relative;
    background: none;
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    margin: 4px 10px;
}
.bread-crumbs a:not(:last-child):after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    right: -14px;
    top: 64%;
    transform: translate(-50%, -50%);
}
.bread-crumbs a:hover {
    text-decoration: underline;
}
.bread-crumbs a:last-child {
    font-weight: 800;
}

.goto-up {
    background-color: #FFFFFF;
    color: #424242;
    transition: 0.3s;
    animation: 1s ease-in-out 0s normal none running gotoup;
}

@keyframes gotoup {
    70% {
        transform: translateY(150%);
    }

    85% {
        transform: translateY(0);
    }

    100% {
        top: -10vh;
    }
}

.qest-modul {
    display: flex;
    max-height: 80vh;
    width: unset;
    max-width: unset;
}

.flex {
    display: flex;
}
.grid {
    display: grid;
}
.center {
    justify-content: center;
    align-items: center;
}

.between {
    justify-content: space-between;
    align-items: center;
}

.around {
    justify-content: space-around;
    align-items: center;
}

.column {
    flex-direction: column;
}

.wrap {
    flex-wrap: wrap;
}

#first-block {
    position: relative;
}

.shadow-text-black {
    text-shadow: -1px -1px 1px #000000, 1px 1px 1px #000000;
}

.shadow-text-white {
    text-shadow: -1px -1px 1px #ffffff, 1px 1px 1px #ffffff;
}

.cont {

}

.text-editor {
    position: relative;
    background-color: #ffffff;
    color: #000000!important;
    outline: 2px dotted #ff6d00;
    display: inline-block;
    cursor: text !important;
    z-index: 99999;
    min-width: 30px;
}

.text-editor::selection {
    background-color: #424242;
    color: #ffffff;
}

#control-panel {
    position: absolute;
    top: -32px;
    right: 0;
    height: 30px;
    display: flex;
}

#control-panel button {
    border: 1px solid #717171;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    font-size: 18px;
    font-weight: 800;
    margin: 0 2px;
    border-radius: 7px;
}

.categorys-list {
    max-height: 300px;
    overflow-y: auto;
}

.categorys-list button {
    display: inline-block;
    background-color: #1b1b1b;
    color: #ffffff;
    width: 100%;
    cursor: pointer;
    padding: 3px 7px;
    margin: 2px 0;
}

.categorys-list button:hover {
    background-color: #ffffff;
    color: #000000;
}

.categorys-list::-webkit-scrollbar {
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.07);
}

.categorys-list::-webkit-scrollbar-thumb {
    background-color: rgba(111, 129, 255, 0.51);
}

h2.frame64-block5__title {
    text-transform: initial;
}

.gallery__item {
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 1.5em;
}

.shower-popap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 255px 5px rgba(0, 0, 0, 0.47);
    z-index: 100;
    max-height: 90vh;
    overflow-y: auto;
}

.intro__cart {
    position: fixed;
    width: 60px;
    height: 60px;
    left: calc(50% + 465px);
    top: 85px;
    z-index: 200;
}

.intro__cart a {
    position: relative;
}

.intro__cart .basket {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.intro__cart a svg {
    position: absolute;
    z-index: 5;
}

.intro__cart a:before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    display: inline-block;
    border-radius: 50%;
    /*background-color: rgba(128, 128, 128, 0.51);*/
    transform: translate(-50%, -48%);
    z-index: 0;
    box-shadow: inset 0 0 26px 3px #6f81ff80;
}

.count {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 50%;
    background-color: red;
    color: yellow;
    width: 30px;
    height: 30px;
    font-size: 12px;
    right: -5px;
    bottom: -6px;
    z-index: 20;
    font-weight: 900;
}

._buy-btn {
    cursor: pointer;
}

.moove-img {
    position: fixed;
    display: inline-block;
    width: 200px;
    height: 200px;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.moove {
    transition: 1s;
    left: 90%!important;
    top: 10%!important;
    opacity: 0;
}

.show-mob-menu {
    transition: 0.4s;
    opacity: 1;
    visibility: inherit;
}

.causes__item a {
    color: #000000;
    text-decoration: none;
}

.header__nav--link {
    cursor: pointer;
}

#search-problem-modal {
    width: 900px;
    max-width: 100%;
}

.intro {
    overflow: hidden;
}

.loading:before {
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: inline-block;
    background: url("/img/loader2.gif") no-repeat center;
    z-index: 1000;
}

/*input[type="file"] {*/
/*    display: inline-block!important;*/
/*}*/

#placer {
    width: 800px;
    max-width: fit-content;
}

.info-panel {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /*width: unset!important;*/
    min-width: 250px;
    max-width: fit-content!important;
    margin-left: auto!important;
    background: url("/IMG/SYS/20210817-115550_id-2-170227.png");
    box-shadow: 0 0 24px #38c6c3!important;
    border: none!important;
    color: #000!important;
    border-radius: 10px!important;
    text-align: center;
    font-size: 20px;
    word-break: break-word;
    margin-bottom: 10px!important;
}

.night .mess-itm,
.night .info-panel {
    background: url("/IMG/SYS/20210817-220435_id-2-723041.png");
}

.mess-itm .mess-btn {
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    padding: 7px 40px;
    background: #0DD2AC;
    border-radius: 50px;
    text-decoration: none;
    max-width: fit-content;
    margin: 5px auto 0;
    white-space: nowrap;
}

.mess-itm h3 {
    color: #ffffff;
    white-space: nowrap;
    font-size: 24px;
    font-style: normal;
    margin: 0;
    font-weight: 900;
    text-align: center;
    border-bottom: none!important;
}

.mess-itm.m-4,
.mess-itm.m-1 {
    border: 1px solid green;
}
.mess-itm.m-4 h3 {
    color: green;
}

.m-1 {
    border: 1px solid #00fe63;
    margin-top: 0;
    margin-bottom: 0;
}
div.m-1 h3 {
    color: #28c67a;
}
.m-2 {
    border: 1px solid #FEC053;
    margin-top: 0;
    margin-bottom: 0;
}
div.m-2 h3 {
    color: #c6c531;
}
.m-3 {
    border: 1px solid #fe1b00;
    margin-top: 0;
    margin-bottom: 0;
}
div.m-3 h3 {
    color: #c6322c;
}
.sys-message {
    max-height: 300px;
    margin: 2px 0;
    max-width: 400px;
}
.info-qest .close-map-btn {
    visibility: hidden;
}

.info-panel h4 {
    /*font-family: "Gilroy", sans-serif!important;*/
    padding: 7px 30px 8px 10px!important;
    color: #000!important;
    font-size: 20px!important;
    font-style: normal!important;
    margin-bottom: 10px;
    font-weight: 900!important;
    text-align: left;
    white-space: pre-line;
    word-break: break-word;
    border-bottom: none!important;
    cursor: move;
}
.night .info-panel h4 {
    color: #fff!important;
}

.info-panel .presser {
    /*background: linear-gradient(90deg, #5862FF 0%, #5862FF 0.01%, #D30EFF 100%)!important;*/
    background-color: #ffffff;
    color: #000;
    border-radius: 70px!important;
    padding: 5px 20px!important;
}
.night .info-panel .presser {
    color: #000000;
}
.global-under-line {
    position: sticky;
    top: 80px;
    z-index: 10;
}
.global-under-line .py-5 {
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    padding-left: 2em;
    padding-right: 2em;
    border-radius: 200px;
    max-width: fit-content;
    background-color: #121212;
    margin: 10px auto 3em auto!important;
    box-shadow: 0 0 15px #20bec64f;
}
.file-link {
    position: relative;
    color: #6bc1f1;
}
.file-link:before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 25px;
    height: 25px;
    background-image: url("/img/20200822-165833_id-2-457899.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.flex-wrap {
    flex-wrap: wrap;
}
.first-row-block {
    margin-left: 81px;
}
.marg-top {
    margin-top: -40px;
}
h1.h1 {
    font-size: 36px!important;
    line-height: 42px;
    font-weight: 800;
    margin: 0 0.3em;
}
h2.h2 {
    font-size: 28px!important;
    font-weight: 800;
    margin: 0 0.2em;
}
h3.h3 {
    font-size: 20px!important;
    font-weight: 800;
    margin: 0 0.1em;
}
.night h1 {
    background-color: #000;
    color: #fff;
    box-shadow: inset 0 0 5px #06061a;
}
.night .mess-itm {
    color: #ffffff!important;
}
.not-selected,
.not-selected * {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.info-panel h4 {
    padding-right: 45px!important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: none;
    /*-webkit-text-fill-color: #004b80;*/
    /*transition: background-color 5000s ease-in-out 0s;*/
    background: none!important;
}
.color-red {
    color: red;
}
.color-green {
    color: rgb(27, 119, 0);
}
.color-white {
    color: #fff;
}
.color-black {
    color: #000;
}
.color-gray {
    color: #c1c1c1;
}
.gap-1 {
    gap: 1px;
}
.gap-2 {
    gap: 2px;
}
.gap-3 {
    gap: 3px;
}
.gap-4 {
    gap: 4px;
}
.gap-5 {
    gap: 5px;
}
.gap-10 {
    gap: 10px;
}
.gap-15 {
    gap: 15px;
}
.gap-20 {
    gap: 20px;
}
.gap-26 {
    gap: 26px;
}
.gap-30 {
    gap: 30px;
}
.gap-40 {
    gap: 40px;
}
.gap-50 {
    gap: 50px;
}
.gap-60 {
    gap: 60px;
}

@media screen and (max-width: 900px) {
    .gap-40 {
        gap: 10px;
    }
    .gap-60 {
        gap: 15px;
    }
}


.padding-5 {
    padding: 5px;
}
.padding-10 {
    padding: 10px;
}
.padding-20 {
    padding: 20px;
}
.padding-30 {
    padding: 30px;
}
.padding-40 {
    padding: 40px;
}
.padding-50 {
    padding: 50px;
}
.padding-10 {
    padding: 10px;
}
.opacity-0 {
    opacity: 0;
}
.opacity-1 {
    opacity: 1!important;
}
.drag-begin {
    opacity: 0.01;
}
.bold-font {
    font-weight: 800;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.left-bord {
    padding-left: 100px!important;
    background: linear-gradient(90deg, #ffffff00, #ffffff)!important;
}
.right-bord {
    padding-right:100px!important;
    background: linear-gradient(-90deg, #ffffff00, #ffffff)!important;
}
#body .sel-column {
    background: #e2e2e2!important;
    font-weight: bold;
    box-shadow: inset 0 0 26px 5px #5b5b5b63;
}
#body .presser {
    cursor: pointer;
}
#body .presser:hover {
    background-color: #000;
    color: #fff;
}
#body .presser:active {
    transform: scale(0.95);
}
#body table th {
    min-width: 12px;
}
.form-column-creator {
    position: relative;
    background-color: #fff;
    padding: 1em;
    border-radius: 10px;
}
.form-column-creator .close-map-btn {
    right: 4px;
    top: 4px;
}
.form-column-creator .close-map-btn:active {
    transform: scale(0.95);
}
.form-column-creator h2 {
    margin: 0 auto 10px 10px;
}
.form-column-creator fieldset {
    border-radius: 5px;
    border: 1px dotted #00000026;
}
fieldset fieldset {
    padding: 0.35em 5px 5px 5px;
    background-color: #e3e3ff;
    border: none!important;
}
fieldset fieldset legend{
    background-color: #e3e3ff;
    padding: 0 7px;
    border-radius: 60px;
}
fieldset fieldset textarea{
    border: none;
    display: inline-block;
    width: 400px;
    min-height: 100px;
    max-width: 400px;
    min-width: 200px;
    height: 200px;
    outline: none;
}
fieldset fieldset legend input[type="checkbox"] {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-top: 3px;
    cursor: pointer;
}
#body fieldset fieldset legend button {
    padding: 0 5px;
    margin: 2px;
}
#body fieldset fieldset legend button:hover {
    background-color: #000;
    color: #fff;
}
#body fieldset fieldset legend button:active {
    transform: scale(0.9);
}
#body .fill-content select {
    padding: 0 7px!important;
}
.window {
    position: fixed;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    min-width: 100px;
    min-height: 115px;
    background-color: #ffffff;
    /*background: url("/IMG/SYS/20210817-184241_id-2-950328.jpeg");*/
    background: url("/IMG/SYS/20210817-115550_id-2-170227.png");
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.35);
    max-width: 95vw!important;
    max-height: 90vh!important;
}
.window h4 {
    position: relative;
    cursor: grab;
    padding: 0.3em 55px 0.3em 5px;
    margin: 0;
    vertical-align: middle;
    text-shadow: 0 1px 0 #fff;
    white-space: nowrap;
    background: #f3f3f3;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
    background: -webkit-linear-gradient(top, #ffffff, #cccccc);
    background: -moz-linear-gradient(top, #ffffff, #cccccc);
    background: -ms-linear-gradient(top, #ffffff, #cccccc);
    background: -o-linear-gradient(top, #ffffff, #cccccc);
    border-bottom: 1px solid #d9d9d9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.window h4 .logo-table {
    position: absolute;
    left: -7px;
    top: -10px;
    display: inline-block;
    width: 45px;
    height: 45px;
    z-index: 5;
}
.window h4 .logo-table img {
    position: absolute;
    display: inline-block;
    left: 50%;
    top: 50%;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    transform: translate(-50%, -50%);
    object-fit: contain;
}
.window h4 .logo-table:before {
    content: '';
    display: inline-block;
    width: 100%;
    transform: translateY(1px);
    padding-bottom: 92%;
    background: #f3f3f3;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
    background: -webkit-linear-gradient(top, #ffffff, #cccccc);
    background: -moz-linear-gradient(top, #ffffff, #cccccc);
    background: -ms-linear-gradient(top, #ffffff, #cccccc);
    background: -o-linear-gradient(top, #ffffff, #cccccc);
    border-bottom: 1px solid #d9d9d9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
.window .content {
    /*padding: 5px 1px 5px 5px;*/
    width: inherit;
    box-sizing: border-box;
    height: inherit;
    max-width: calc(100% - 4px)!important;
    max-height: calc(100% - 40px)!important;
    min-width: 200px;
    min-height: 85px;
    overflow: auto;
}
.window .content tr:not(:first-child) {
    cursor: pointer;
}

.up-row-window-btn,
.close-window-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 25px;
    background: none;
    border: none!important;
}
.close-window-btn:before {
    content: '\2715';
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    left: 0;
    top: 0;
}
.up-row-window-btn:hover,
.close-window-btn:hover:before {
    color: red;
    text-shadow: 0 0 2px red;
}
.close-window-btn:active:before {
    transform: translateY(5%) scale(0.95);
    text-shadow: 0 0 2px #ff8629;
}
.up-row-window-btn:active {
    transform: translateY(-12px) scale(0.7);
    text-shadow: 0 0 2px #ff8629;
}
.slow-minimizer {
    transition: 0.4s;
    transform: translate(-50%, -50%) scale(0);
}
.paddinger-1 {
    padding: 1em 0;
}
.paddinger-5px {
    padding: 5px;
}
.circle-bar,
.circle-bar-ok {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
}
.circle-bar-ok svg,
.circle-bar svg {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.circle-bar-ok .timer-value,
.circle-bar .timer-value {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    transform: translate(-50%, -50%) rotate(90deg);
    font-weight: 400;
}
#body .global-disabled {
    opacity: 0.4!important;
    pointer-events: none!important;
    filter: grayscale(1)!important;
}
#body .minimaze-mode {
    transition: 0.4s!important;
    transform: scale(0.02) translate(0, 0)!important;
    left: 95vw!important;
    top: calc(100vh - 70px)!important;
}
.round-corners {
    background-image: none;
    box-shadow: none;
}
.window.round-corners h4 {
    border-radius: 25px;
    padding: 0.3em 55px 0.3em 15px;
}
.round-corners .content {
    position: relative;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.35);
    margin-top: 7px;
    border-radius: 10px;
    background-image: url("/IMG/SYS/20210817-115550_id-2-170227.png");
    border: 1px solid #b3b3b3;
}
.window.round-corners .inner-content {

}
.align-center {
    align-items: center;
}
.align-top {
    align-items: flex-start;
}
.align-bottom {
    align-items: baseline;
}
.footer-wrapper {
    margin-top: 30px;
    /*background: linear-gradient(91.92deg, #078B3A 0%, #023315 102.92%);*/
}
.underline {
    cursor: pointer;
    border-bottom: 1px dashed #018536!important;
    padding: 0;
}
.underline:hover {
    transform: scale(1.02);
}
.underline:active {
    transform: scale(0.98);
}
button.btn-link {
    border: none;
    background: none!important;
}
a.btn-gradient {
    display: flex;
    flex-direction: row;
    align-self: normal;
    justify-content: center;
    align-items: center;
    padding: 15px 13px;
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(92.05deg, #078B3A 2.32%, #023315 138.42%);
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.svg-red svg path,
.svg-red svg {
    fill: red!important;
}
.min-font-size {
    font-size: 0.9em;
}
.admin-pages#body .btn {
    font-size: 18px;
    background: unset!important;
    transition: 0.001s!important;
}
#body-s .transit {
    transition: 0.3s;
}
#body-s .former {
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50vw;
    top: 105vh;
    opacity: 0;
}
#body-s .former.open {
    top: 40vh;
    opacity: 1;
}
#body-s .relative {
    position: relative!important;
}
#body-s .loader-gray {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.87);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 100;
}
#body-s .loader-gray h1 {
    color: #fff;
    font-size: 1.5em;
    font-weight: 800;
    max-width: 400px;
    text-align: center;
}
#body-s .loader-gray .bar {
    display: inline-block;
    height: 30px;
    width: 300px;
    background: rgb(3, 72, 32);
    background: radial-gradient(circle, rgb(4, 103, 44) 0%, rgb(9, 182, 76) 50%);
}
#body .micro-table {
    font-size: 10px;
    line-height: 10px;
    pointer-events: none;
}
#body .y-scroller {
    display: block;
    max-height: 70px;
    overflow-y: auto;
}
#body .micro-table tr:first-child {
    position: relative;
    top: unset;
}
#body .param-table {
    margin: 0 0 5px 2px;
    box-sizing: border-box;
}
#body .param-table tr:first-child {
    position: relative;
    top: unset;
    pointer-events: auto;
}
#body .param-table .not-border {
    color: red;
}
#body .param-table td {
    padding: 2px 5px;
}
#body .param-table tr:nth-child(odd):not(:nth-child(1)) {
    background: none!important;
}
#body .param-table td:first-child {
    text-align: right;
    font-weight: 800;
}
#body .table-param-down {
    width: 100%;
}
#body .window .content .table-param-down tr:nth-child(1) {
    pointer-events: auto;
}
#body .table-param-down th,
#body .window .content table:not(.info-table) tr:nth-child(1) th:nth-child(1) {
    visibility: visible;
    text-shadow: 0 1px 0 #fff;
    background: #f3f3f3;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
    background: -webkit-linear-gradient(top, #ffffff, #cccccc);
    background: -moz-linear-gradient(top, #ffffff, #cccccc);
    background: -ms-linear-gradient(top, #ffffff, #cccccc);
    background: -o-linear-gradient(top, #ffffff, #cccccc);
}
#body .table-param-down .ico-btn {
    border-radius: 0;
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}
#body .table-param-down .btn-back,
#body .table-param-down .btn-forward {

}
#body .table-card .tb-card tr:first-child th:first-child {
    background: #fff!important;
}
#body .edited-field .micro-table {
    border-collapse: collapse;
    border: none;
}
#body .edited-field .micro-table td {
    border: none;
}
#body .card-table-wrapp {
    max-height: 60px;
    height: 60px;
    overflow-y: auto;
}
.micro-text {
    font-size: 0.8em;
    text-align: left;
}
.round-btn {
    padding: 10px 30px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    background: linear-gradient(var(--togler-item-from), var(--togler-item-to));
    border-radius: 10px;
    border: none;
}
.round-btn span {
    color: #fff;
}
.round-btn .svg-wrapper {
    display: inline-block;
    width: 30px;
    height: 30px;
}
.menu-items {
    margin-top: 25px;
}
.btn.btn-paddinger {

}
.btn.btn-paddinger:hover {
    background-color: var(--togler-item-to)!important;
}
.btn.btn-paddinger:hover a {
    color: #fff!important;
}
.btn.btn-paddinger a {
    text-decoration: none;
    padding: 12px 26px!important;
}
.menu-items {
    margin-bottom: 40px;
}
.edit-string {
    position: relative;
    outline: none;
    padding-left: 15px;
    margin: 5px 0;
}
.edit-string.setter:before {
    content: '>';
    position: absolute;
    left: 0;
    top: 0;
}
.helper {
    display: none;
    flex-direction: column;
    gap: 1px;
    position: absolute;
    left: 100px;
    top: 50px;
    padding: 5px;
    box-shadow: 5px 4px 7px rgba(0, 0, 0, 0.58);
    background-color: #1C376D;
    color: #fff;
    min-width: 170px;
    z-index: 5;
}
.visible {
    display: flex;
}
.helper-main {
    color: lime;
    font-weight: 800;
}
.helper-descr {
    display: inline-block;
    padding-top: 2px;
    font-size: 14px;
    color: #cccccc;
}
.helper-item {
    cursor: pointer;
    padding: 2px 5px;
}
.helper-item.sel,
.helper-item:hover {
    background-color: rgba(0, 0, 0, 0.94);
}
.btn-chat {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 100;
}
.status.action-btn {
    display: none;
}
.slowly {
    transition: 0.4s!important;
}
.hidden-in-right {
    left: calc(110vw + 600px)!important;
}
.upload-cont-chat {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-right: 40px;
}
.black-fone {
    background-color: #5ebcff!important;
}
.green-svg svg,
.green-svg svg path {
    fill: rgb(1, 133, 54);
}
#map-place,
#map-place-mobile {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    height: 0;
    opacity: 0;
}
#map-place.opened,
#map-place-mobile.opened {
    height: 400px;
    opacity: 1;
    margin: 10px 0;
}
#map-place.opened {
    max-width: 100%;
    width: 100%;
}
#map {
    position: absolute;
    width: 100%;
    min-height: 600px;
    left: 0;
    top: 0;
}
.rubber {
    opacity: 0;
    transform: scale(3);
    background-color: red;
}
.rubber.show {
    transition: 0.5s;
    opacity: 1;
    transform: scale(1);
    background-color: rgba(255, 0, 0, 0);
}
.svg-white svg path {
    fill: #ffffff;
}
.lime-back {
    background-color: #c1ffc1 !important;
}
#address {
    background-color: #ffffff00;
}
.hart-red svg,
.hart-red svg path {
    fill: red;
}
.inline-block {
    display: inline-block;
}
.info-panel textarea {
    border-radius: 2px!important;
    outline: none;
    /*width: inherit!important;*/
    border: 1px solid #a8a8a8;
}
#admin-panel,
#admin-panel * {
    box-sizing: border-box;
}
#admin-panel {
    transition: 0.4s;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 99999999;
}
#admin-panel svg {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    fill: red;
    transition: 0.4s;
}
#admin-panel svg path {
    fill: red!important;
}
#admin-panel:not(.opened):hover svg {
    width: 35px;
    height: 35px;
    transform: translate(5px, -5px);
}
#admin-panel:active svg {

}
#admin-panel:active svg,
#admin-panel:active svg path {
    fill: orange!important;
}
#admin-panel .content {
    transition: 0.4s;
    max-width: 0;
    overflow: hidden;
}
#admin-panel.opened {
    width: auto;
    height: 45px;
    padding: 3px 10px;
    background-color: red;
}
#admin-panel.opened .content {
    max-width: 100%;
    padding: 0 5px;
}
#admin-panel.opened svg {
    transform: translate(47%, 10px) rotate(-134deg);
}
#admin-panel .adm-pnl-btn {
    position: relative;
    cursor: pointer;
    display: flex;
    gap: 5px;
    font-size: 14px!important;
    line-height: 14px!important;
    border-radius: 60px;
    min-height: 40px;
    align-items: center;
    padding: 2px 6px;
    background: linear-gradient(30deg, #009300, #004f8d);
    color: #e6ffd5;
    text-shadow: -1px -1px 1px #000000;
}
#admin-panel .adm-pnl-btn.indicate {
    padding: 2px 6px 2px 22px;
    color: #b6b6b6;
}
#admin-panel .adm-pnl-btn.online {
    color: #e6ffd5;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.56);
    text-shadow: 1px 1px 1px #000000;
}
.adm-pnl-btn.indicate:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translate(0, -50%);
    display: inline-block;
    width: 13px;
    height: 13px;
    background: linear-gradient(30deg, #a9a9a9, #1c1c1c);
    border-radius: 50%;
    border: 1px solid #000000, 1px solid #000000, 1px solid #eeeeee, 1px solid #ffffff;
}
.adm-pnl-btn.online.indicate:before {
    background: linear-gradient(343deg, #a9e700, #a6ff8c);
    border-radius: 50%;
    border: 1px solid #ffffff, 1px solid #d9d9d9, 1px solid #444444, 1px solid #000000;
}
#body-s .btn-gray {
    margin: 2px 0;
    font-size: 12px;
    text-shadow: 0 1px 0 #fff;
    background: #f3f3f3;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
    background: -webkit-linear-gradient(top, #ffffff, #cccccc);
    background: -moz-linear-gradient(top, #ffffff, #cccccc);
    background: -ms-linear-gradient(top, #ffffff, #cccccc);
    background: -o-linear-gradient(top, #ffffff, #cccccc);
    color: #000;
    border: none!important;
    border-radius: 60px;
    padding: 3px 4px;
    outline: none;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
#body-s .btn-gray:hover {
    outline: 2px solid rgba(113, 197, 255, 0.53);
}
#body-s .btn-gray:active {
    transform: translateY(0) scale(0.95);
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.34);
}
#body-s .btn-gray img {
    display: inline-block;
    width: 15px;
    height: 15px;
}
#body-s .btn-gray span {
    font-size: 12px!important;
}
.img-contain {
    object-fit: contain;
}
.img-header {
    position: sticky;
    top: -1px;
    z-index: 9999;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: inset 0 0 1px gray;
}
.fragment-line {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: red;
    margin: 20px 0 10px;
}
.fragment-line button {
    cursor: pointer;
    position: absolute;
    right: 50%;
    top: 0;
    transform: translateY(-100%);
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    font-weight: 600;
    border-bottom: none;
}
.fragment-line button:hover {
    background-color: rgba(255, 255, 0, 0.66);
}
.fragment-line button:active {
    transform: translateY(-100%) scale(0.9);
}
#body-s .slow-not-look {
    transition: 0.4s;
    min-height: 0!important;
    height: 0!important;
    opacity: 0;
}

.the-best,
.the-new {
    position: absolute;
    z-index: 3;
    display: inline-block;
    width: 200px;
    height: 130px;
    left: calc(50% - 100px);
    bottom: 0;
    background-image: url(/IMG/img300x300/20250303-143716_id-2-561326.webp);
    /*background-image: url(/IMG/img300x300/20250303-144702_id-2-864933.webp);*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: shake2 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.the-best {
    animation: none;
}
.the-best {
    width: 130px;
    left: 0;
    top: 0;
    background-image: url(/IMG/img300x300/20250225-125939_id-2-167928.webp);
}
.magic {
    opacity: 0;
}
@keyframes shake2 {
    10%, 90% {
        transform: translateX(-0.5px);
    }
    20%, 80% {
        transform: translateX(0.8px);
    }
    30%, 50%, 70% {
        transform: translateX(-1px);
    }
    40%, 60% {
        transform: translateX(1px);
    }
}
#auth-btn {

}
#auth-btn:hover {
    opacity: 1!important;
    border: none;
    background-color: rgba(255, 255, 0, 0.27);
}
.btn-blue {
    height: 44px !important;
    position: relative;
    padding: 0 18px;
    border-radius: 999px;
    border: none;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    background: linear-gradient(180deg, #6b6aff, var(--purple2));
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(91, 85, 216, 0.22);
    min-width: 126px;

    &:active {
        box-shadow: inset 2px 3px 6px rgba(0, 0, 0, 0.58);
    }

}
/*==================================================================*/
/*I-MESS*/
/*==================================================================*/
.i-mess {
    position: fixed;
    left: 50%;
    top: 40%;
    z-index: 9999999;
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.32);

    b {
        display: flex;
        align-items: center;
    }

    .i-text {
        margin: 12px 0 24px;
    }

    .i-btn-yes {
        display: flex;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        color: #5856D5;
        border-radius: 150px;
        border: none;
    }
    .i-btn-no {
        display: flex;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        background-color: #5856D5;
        color: #ffffff;
        border-radius: 150px;
        border: none;
    }
    .variants-group {
        padding-top: 10px;

        button {
            cursor: pointer;
            border: none;
            border-radius: 55px;
            background: rgba(88, 86, 213, 0.04);
            padding: 10px 16px;
            width: 100%;
            text-align: left;

            &:hover {
                background: rgba(88, 86, 213, 0.19);
            }

            &:active {
                transform: scale(0.98);
                box-shadow: inset 2px 3px 10px rgba(0, 0, 0, 0.29);
            }

        }

    }


}








/*==================================================================*/
/*EDITOR-PLACE*/
/*==================================================================*/
.editor,
.editor-place {
    position: absolute;
    cursor: pointer;
    outline: 2px dashed red;
    display: inline-block;
    width: 50px;
    height: 50px;
    right: 20px;
    top: 20px;
    background-image: url("/DOWNLOAD/20230516-125207_id-2-411008.svg");
    background-size: 30px 30px;
    background-position: 63% 50%;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 0, 0.3);
    z-index: 9000;
}
.editor:hover,
.editor-place:hover {
    transform: scale(1.05);
}
.editor-place.load-in {
    width: 110px;
    height: 110px;
}
.editor:active,
.editor-place:active {
    transform: scale(0.95);
}
details summary {
    cursor: pointer;
}
details.details summary {
    position: relative;
    display: flex
;
    padding: 4px 5px 4px 40px;
    font-weight: 600;
    font-family: monospace, monospace !important;
    border-radius: 14px;
    text-shadow: 0 1px 0 #fff;
    white-space: nowrap;
    background: #f3f3f3;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
    background: -webkit-linear-gradient(top, #ffffff, #cccccc);
    background: -moz-linear-gradient(top, #ffffff, #cccccc);
    background: -ms-linear-gradient(top, #ffffff, #cccccc);
    background: -o-linear-gradient(top, #ffffff, #cccccc);
    border-bottom: 1px solid #d9d9d9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
details.details summary::before {
    content: "⇩";
    position: absolute;
    left: 14px;
    top: 4px;
    transition: 0.2s;
}
/*==================================================================*/


/*==================================================================*/
/*SIDE-MENU*/
/*==================================================================*/
.side-menu {
    padding: 5px;
}
.side-menu details {
    transition: 0.4s;
    max-height: 50px;
    overflow: hidden;
}
.side-menu details[open] {
    padding: 10px;
    margin: 5px 0;
    background-color: #ffffff;
    border-radius: 5px;
    border-left: 1px solid green;
    border-top: 1px solid green;
    border-bottom: 1px solid green;
    max-height: 1500px;
}
.side-menu details .first-link {
    text-decoration: none;
    color: green;
    font-weight: 600;
    padding: 6px 0 6px 15px;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
}
.side-menu details summary {
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.side-menu details summary::marker {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
}
.side-menu details[open] > summary::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("/DOWNLOAD/edcd71db6596b2178fcb0e7ff463627d.svg");
    background-repeat: no-repeat;
    background-size: contain;
    top: 6px;
    left: -5px;
}
.side-menu details[open] > summary {
    font-weight: 800;
    padding: 2px 5px 2px 25px;
    position: relative;
    letter-spacing: -1px;
}
.side-menu details[open] summary:hover {
    letter-spacing: -1px;
}
.side-menu details[open] > summary:hover:after,
.side-menu details[open] > summary:after {
    content: '';
    position: absolute;
    display: inline-block;
    left: -15px;
    top: 0;
    width: calc(100% + 25px);
    height: 100%;
    background-color: rgba(0, 211, 0, 0.15);
}
.side-menu details summary:hover,
.side-menu details .first-link:hover,
.side-menu details .action-list-item:hover {
    font-weight: 600;
    text-shadow: 0 0 1px orange;
}
.side-menu details summary:hover {
    letter-spacing: -0.8px;
}
.side-menu details summary:active,
.side-menu details .first-link:active,
.side-menu details .action-list-item:active {
    transform: scale(0.97);
}
.side-menu details details summary {
font-weight: 400;
}
.side-menu .action-list-item {
display: inline-block;
text-decoration: none;
font-style: italic;
color: #000;
font-size: 14px;
}
/*==================================================================*/
#general-input-file {
    display: none!important;
}
textarea {
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    border: 1px dotted rgba(0, 0, 0, 0.45);
    outline: none;
}
select {
    outline: none;
    border: 1px dotted rgba(0, 0, 0, 0.33);
    border-radius: 5px;
    cursor: pointer;
    padding: 4px 10px;
}
select option {
    cursor: pointer;
}
.cont {
    padding: 10px;
}
.toolpip {
    position: absolute;
    width: fit-content;
    height: fit-content;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    div {
        display: flex;
        padding: 32px 32px 48px 32px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        border-radius: 32px;
        background: #FFF;
        box-shadow: 0 0 40px 20px #E3EAFC;

        b {
            color: #050505;
            font-family: Manrope, sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 21px;
        }

        span {
            color: #050505;
            font-family: Manrope, sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 21px;
        }

    }



}

/*==================================================================*/
/*DYNAMIC-FONE*/
/*==================================================================*/
#dynamic-back-fone {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
    display: inline-block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 0, 0.37);
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
}



@media screen and (max-width: 1170px) {
    .intro__cart {
        left: calc(50% + 165px);
    }
}

@media screen and (max-width: 950px) {
    .wrapper-2 {
        margin: 0;
    }
    .bread-crumbs a:not(:last-child):after {
        width: 5px;
        height: 1px;
        background-color: #0000004f;
        right: -10px;
        top: 52%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 900px) {
    body h2.h2,
    body *.h2 {
        font-size: 1.7em!important;
    }
    #body {
        min-height: 100vh;
        margin: 0;
    }
    .wrapper {
        max-width: 100vw;
        margin: 0 auto;
        padding: 0 10px;
    }
    .info-panel {
        min-width: 95vw!important;
    }
    /*.info-qest {*/
    /*    top: 80px!important;*/
    /*}*/
    #body .info-panel {
        transition: 0.4s!important;
        top: 20px!important;
        transform: translate(-50%, 0)!important;
    }
    .overlay-gray {
        z-index: 999999;
    }
    #map-place-mobile.opened {
        height: 300px;
        opacity: 1;
    }
    .place-popap.showed {
        padding: 0;
    }
    .flex-wrap-on-mobile {
        flex-wrap: wrap;
    }
    .place-popap {
        max-height: calc(100vh - 20px);
        min-height: unset!important;
        padding: 1.5em 10px !important;
    }
    .place-popap section {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .btn {
        padding: 12px 16px;
    }
    .input {
        padding: 12px 16px;
    }
}

@media screen and (max-width: 670px) {
    .btn-just {
        font-size: 18px;
        padding: 8px 20px;
    }

    .info-substances__popup--text {
        max-height: 95vh;
        overflow-y: auto;
    }

    .intro__cart {
        left: unset;
        top: 60px;
        right: 10px;
    }

    #placer {
        width: 90%;
    }

    .mess-itm {
        word-break: break-word;
    }

    .info-panel {
        width: 100%;
        max-width: calc(100% - 10px)!important;
        left: 50%!important;
    }

    .info-panel h4 {
        max-width: 100%;
        word-break: break-word;
        white-space: pre-wrap;
    }
    #body .info-inputString {
        top: 20vh!important;
    }
    #map {
        width: calc(100% - 35px);
    }
    .svg-red {
        left: calc(100% - 35px)!important;
    }
}