

/* Start:/local/templates/platezka/template_styles.css?17699870579050*/
@font-face {
    font-family: '*font name*';
    src: local('*current local font name*'),
        url('/local/templates/platezka/*path to font file') format('*format');
    font-weight: 400;
    font-style: normal;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px;

}

.header__brand {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__brand .logo {
    max-width: 130px;
}

.header__burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.header__burger span,
.header__burger:before,
.header__burger:after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #0f172a;
    transition: transform .2s, opacity .2s;
}

.header__burger span {
    top: calc(50% - 1px);
}

.header__burger:before {
    top: 12px;
}

.header__burger:after {
    bottom: 12px;
}

.header__burger--active span {
    opacity: 0;
}

.header__burger--active:before {
    transform: translateY(6px) rotate(45deg);
}

.header__burger--active:after {
    transform: translateY(-6px) rotate(-45deg);
}

.header {
    display: none;
}

@media (max-width: 991px) {
    .header {
        display: flex;
    }

    .header__burger {
        display: inline-block;
    }
}

.sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #222222;
    color: #e2e8f0;
    min-height: 100vh;
    position: sticky;
    top: 0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, .1);
}

.sidebar__inner {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar__logo {
    display: block;
    margin: 0 0 24px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.sidebar__logo .logo {
    max-width: 130px;
}


.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar__theme-toggle {
    margin-top: auto;
    padding-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sidebar__theme-toggle-btn {
    width: 40px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    background: #111827;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.6;
    transition: background .2s, opacity .2s, border-color .2s;
}

.sidebar__theme-toggle-btn img {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.sidebar__theme-toggle-btn--active {
    background: #f97316;
    border-color: #f97316;
    opacity: 1;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    transition: background .2s, color .2s;
    font-size: 0.95rem;
}

.sidebar__link:hover {
    background: #4f4f4f;
    color: #fff;
}

.sidebar__link--active {
    background: #424242;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 991px) {
    .sidebar {
        display: none;
    }
}

*,
*:after,
*:before {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1e293b;
    background: #f8fafc;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 600px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.layout {
    display: flex;
}

.layout__content {
    flex: 1;
    min-width: 0;
    background: #EBEBEB;
    min-height: calc(100vh - 57px);
    padding: 24px 0;
}

.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 2px solid #0f172a;
    background: transparent;
    color: #0f172a;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.btn:hover {
    background: #0f172a;
    color: #fff;
}

.rounded-btn {
    border-radius: 32px;
}

/* Forms */
.field {
    margin: 0 0 14px;
}

.field__label {
    display: block;
    margin: 0 0 6px;
    font-size: 14px;
    color: #334155;
}

.field__input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    outline: none;
}

.field__input:focus {
    border-color: #2563eb;
}

.field--error .field__input {
    border-color: #ef4444;
}

.field--success .field__input {
    border-color: #22c55e;
}

.field__input-big {
    height: 63px;
}

.field__hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
}

.field--error .field__hint {
    color: #ef4444;
}

/* Header mobile menu panel reused across pages */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .6);
    display: none;
    z-index: 100;
}

.mobile-menu__panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #222222;
    color: #e2e8f0;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    padding-top: 64px;
}

.mobile-menu--open {
    display: block;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 0;
    align-self: flex-start;
    z-index: 10;
}

/* Utility */
.hidden {
    display: none !important;
}

.black-btn {
    transition: all .2s ease-in-out;
    background: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
}

.black-btn:hover,
.btn_new:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

.btn_new {
    width: auto;
    min-width: 220px;
    color: #fff;
    background-color: #111;
    border-radius: 24px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    transition: background .2s;
    margin: auto;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    border: 1px solid #000000 !important;
}

input,
textarea,
select,
button {
    outline: none;
}

@media (max-width: 991px) {
    .container {
        width: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }
}

.flag-switch {
    position: relative;
    outline: 0;
    appearance: none;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    width: 60px;
    height: 30px;
}

.flag-switch:before,
.flag-switch:after {
    position: absolute;
    color: white;
    font-family: 'Raleway', sans-serif;
    top: 8px;
    font-size: 13px;
    font-weight: 700;
}

.flag-switch:before {
    left: -19px;
    content: attr(data-first-lang);
}

.flag-switch:after {
    right: -17px;
    content: attr(data-second-lang);
}

.flag-switch input {
    display: none;
}

.flag-switch input+label {
    display: block;
    position: absolute;
    cursor: pointer;
    user-select: none;
    width: 60px;
}

.flag-switch input+label:before,
.flag-switch input+label:after {
    content: "";
    position: absolute;
    border-radius: 30px;
    transition: all 0.25s ease-in-out;
}

.flag-switch input+label:before {
    height: 30px;
    width: 60px;
    background-color: #B22234;
}

.flag-switch input+label:after {
    top: 3px;
    left: 3px;
    border: 2px solid #dfdfdf;
    width: 24px;
    height: 24px;
    background: #eb3 url('/local/templates/platezka/../../images/flag-us-24.svg') -24px -24px;
    transform: translate(30px, 0);
    -webkit-transform: translate(30px, 0);
}

.flag-switch input:checked+label:after {
    background: #000233 url('/local/templates/platezka/../../images/flag-ru-24.svg') -2px center;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.flag-switch input:checked+label:before {
    background-color: #0052B4;
}

.whiteBtnNew {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .whiteBtnNew {
        margin-top: 20px;
    }

    .rounded-btn {
        width: auto !important;
    }
}
/* End */
/* /local/templates/platezka/template_styles.css?17699870579050 */
