
:root {
    --default-text-color: #333333;
    --default-link-color: #ED1C24;
    --color-accent: #ED1C24;
    --btn-amount-radius: 4px;

    --color-accent-dark: #B5031E;
    --btn-color-disabled: #D8D8D8;
    --card-input-color: #000000;
    --card-input-placeholder-color: #A0A0A0;
    --error-color: #F2082E;


    --font: 'Styrene B LC Web', sans-serif;
    --card-font: 'Styrene B LC Web', sans-serif;
    --base-fz: 14px;
    --base-lh: 19px;

    --background-image: url('/static/custom/3204/new/img/background.svg');
    --background-image-retina: url('/static/custom/3204/new/img/background.svg ');
    --checkbox: url('/static/custom/3204/new/img/check.svg');
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


* {
    font-family: var(--font);
    font-weight: normal;
    font-style: normal;
    font-size: var(--base-fz);
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

body {
    width: 100%;
    min-width: 100%;
    margin: 0;
    color: var(--default-text-color);
}

a {
    color: var(--default-link-color);
    text-decoration: underline;
    font-size: inherit;
    line-height: inherit;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

strong,
b {
    font-weight: bold;
}

button {
    outline: none;
}

.background {
    display: flex;
    align-items: center;
    background-image: var(--background-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    transition: none;
    background-color: #F5F5F6;
}

@media (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 1.5),
(max-width: 1023px) and (min-resolution: 144dpi), (max-width: 1023px) and (min-resolution: 1.5dppx) {
    .background {
        background-image: var(--background-image-retina);
    }
}

@media (min-width: 888px) {
    .background {
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

    .background::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 5%;

        width: 223.3px;
        height: 130.73px;
        background-image: var(--background-image-retina);
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 0;
    }
}

@media (min-width: 501px) {
    .caption-image img {
        transform: translateY(10px);
    }
}

@media (min-width: 1024px) {
    .background::after {
        content: none;
        bottom: 85px;
        left: 10%;
    }
}

.content {
    background-color: #ffffff;
    margin: auto;
}

@media (max-width: 679px) {
    .content {
        padding: 32px !important;
        min-height: 100vh !important;
    }
}

.footer {
    color: #707070;
    font-size: 10px;
    line-height: 12px;
    margin-top: auto;
    text-align: center;
}

.footer > a {
    text-decoration: none;
    font-size: 10px;
    line-height: 12px;
    color: #A0A0A0;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
    color: inherit;
}

.tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}

.tooltip-inner {
    max-width: 200px;
    width: 140px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    border-radius: 0;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}


.tooltip {
    transition: none;
    user-select: none;
    pointer-events: none;
}

#popup_loader {
    display: block;
    width: 100%;
    height: 48px;
    background: var(--color-accent);
    border-radius: var(--btn-amount-radius);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.43;
    color: #FFFFFF;
    text-transform: none;
    position: absolute;
    top: 0;
    left: 0;
}

#popup_loader #spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
    margin: auto auto;
    -webkit-animation: star 1.5s linear infinite;
}

@-webkit-keyframes star {
    from {
        -webkit-transform: rotate(-360deg);
    }
    to {
        -webkit-transform: rotate(0deg);
    }
}

#popup_loader div {
    display: block;
}

.no-wrap {
    white-space: nowrap;
}

.ps {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}