:root {
    --color-primary: #0052cb;
    --color-primary-darker: #3a518c;
    --color-primary-lighter: #5ca4d1;
    --color-secondary: #ff000a;
    --color-tertiary: #ffa34d;
    --color-tertiary-alt: rgba(254, 220, 8, 0.71);
    --color-quaternary: #f67575;
    --color-success: #0ead69;
    --color-inProgress: #ee4266;
    --color-canceled: #6103c2;
    --color-buyNow: #fa731e;

    --color-text: #2b3f57;
    --color-text-fade: rgba(43, 63, 87, 0.74);
    --color-text-on-primary: #fff;

    --color-primary-bg: #1e1a33;
    --color-tertiary-bg: #fafbfd;
    --color-tertiary-text: #92a2ba;
    --color-secondary-bg: #f2f7fa;
    --color-firstLvl-bg: #fafafa;
    --color-firstLvl-bg-dark: #e0e0e0;
    --color-secondLvl-bg: #f5f6fa;
    --color-secondLvl-dark-bg: #dce0e9;
    --color-thirdLvl-bg: #fff;

    --color-warning: var(--color-tertiary);
    --color-error: #ff3e1d;
    --color-delete: #ff3e1d;

    --color-border: #68cc9a;

    --color-header-bg: #ffff;
    --color-header-font: #111;
    --color-footer-bg: var(--color-primary);
    --color-footer-font: #f1f1f1;
}
:root {
    --xs: 5px;
    --sm: 10px;
    --md: 20px;
    --lg: 50px;
    --xl: 100px;

    --bp-xl: 1200px;
    --bp-lg: 992px;
    --bp-md: 768px;
    --bp-sm: 576px;
    --bp-xs: 400px;

    --app-width: 1200px;

    --border-radius: 5px;
    --input-height: 36px;
}
:root {
    --zIndex-bidButton: 700;
    --zIndex-footer: 750;
    --zIndex-navBar: 800;
    --zIndex-mobileMenu: 10000;
    --zIndex-overlay: 11000;
    --zIndex-popup: 12000;
}
body {
    padding: 0;
    margin: 0;
}
button:focus {
    outline: 0;
}
button:hover {
    cursor: pointer;
}
a:hover {
    cursor: pointer;
}
table {
    padding: 0;
    border-spacing: 0;
}
input {
    border: none;

}
input
:focus {
    outline: 0;
}
input,
label,
select,
button,
textarea {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
}
/* Remove the stupid outer glow in Webkit */
input:focus {
    outline: 0;
}
/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* File Uploads
-----------------------------------------------*/
input[type=file] {

}
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: border-box;
}
/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
    display: none;
}
/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
    /* Fix IE7 display bug */
    overflow: visible;
    width: auto;
}
/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
    padding: 0;
    border: 0;
    background: none;
}
/* Textarea
-----------------------------------------------*/
textarea {
    /* Move the label to the top */
    vertical-align: top;

    /* Turn off scroll bars in IE unless needed */
    overflow: auto;
}
/* Selects
-----------------------------------------------*/
select {

}
select[multiple] {
    /* Move the label to the top */
    vertical-align: top;
}
.flex_center_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.flex_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.flex_row_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.flex_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.flex_column_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
}
.flexWrap_wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
}
.justifyContent_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.justifyContent_flexEnd {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.justifyContent_spaceBetween {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.alignItems_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.alignItems_flexEnd {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.flexShrink_0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
a.btn, .btn {
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #0052cb;
    background-color: var(--color-primary);
    border-radius: 3px;
    cursor: pointer;
}
a.btn:focus, a.btn:visited, a.btn:active {
    color: white;
}
a.btn:hover, .btn:hover {
    background-color: #3a518c;
    background-color: var(--color-primary-darker);
}
.btn_1 {
    font-weight: bold;
    text-transform: uppercase;
}
.p_10 {
    padding: 10px;
}
.p_20 {
    padding: 20px;
}
.p_25 {
    padding: 25px;
}
.pb_10 {
    padding-bottom: 10px;
}
.pb_15 {
    padding-bottom: 15px;
}
.pb_20 {
    padding-bottom: 20px;
}
.pt_0 {
    padding-top: 0;
}
.pt_5 {
    padding-top: 5px;
}
.pt_10 {
    padding-top: 10px;
}
.pl_10 {
    padding-left: 10px;
}
.pt_20 {
    padding-top: 20px;
}
.pt_40 {
    padding-top: 40px;
}
.pl_20 {
    padding-left: 20px;
}
.pr_10 {
    padding-right: 10px;
}
.pr_4 {
    padding-right: 4px;
}
.ph_5 {
    padding-left: 5px;
    padding-right: 5px;
}
.ph_20 {
    padding-left: 20px;
    padding-right: 20px;
}
.pv_2 {
    padding-top: 2px;
    padding-bottom: 2px;
}
.pv_5 {
    padding-top: 5px;
    padding-bottom: 5px;
}
.pv_20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.pv_10 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.link {
    font-weight: 600;
    text-decoration: none;
    color: #0052cb;
    color: var(--color-primary);
    -webkit-transition: color 0.3s;
    transition: color 0.3s;

}
.link
:hover {
    color: #3a518c;
    color: var(--color-primary-darker)
}
a {
    color: #0052cb;
    color: var(--color-primary);
    text-decoration: none;
}
a:visited, a:active, a:focus, a:link {
    color: #0052cb;
    color: var(--color-primary);
}
a:hover {
    color: #3a518c;
    color: var(--color-primary-darker);
}
.m_0 {
    margin: 0 !important;
}
.m_5 {
    margin: 5px !important;
}
.mh_10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}
.mh_20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}
.mh_30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}
.mb_5 {
    margin-bottom: 5px !important;
}
.mb_10 {
    margin-bottom: 10px !important;
}
.mb_15 {
    margin-bottom: 15px !important;
}
.mb_20 {
    margin-bottom: 20px !important;
}
.mb_25 {
    margin-bottom: 25px !important;
}
.mb_40 {
    margin-bottom: 40px !important;
}
.ml_5 {
    margin-left: 5px !important;
}
.ml_10 {
    margin-left: 10px !important;
}
.ml_20 {
    margin-left: 20px !important;
}
.ml_25 {
    margin-left: 25px !important;
}
.mr_3 {
    margin-right: 3px !important;
}
.mr_5 {
    margin-right: 5px !important;
}
.mr_10 {
    margin-right: 10px !important;
}
.mr_15 {
    margin-right: 15px !important;
}
.mr_20 {
    margin-right: 20px !important;
}
.mr_60 {
    margin-right: 60px !important;
}
.mt_3 {
    margin-top: 3px !important;
}
.mt_5 {
    margin-top: 5px !important;
}
.mt_7 {
    margin-top: 7px !important;
}
.mt_10 {
    margin-top: 10px !important;
}
.mt_15 {
    margin-top: 15px !important;
}
.mt_20 {
    margin-top: 20px !important;
}
.mt_25 {
    margin-top: 25px !important;
}
.mt_30 {
    margin-top: 30px !important;
}
.mv_5 {
    margin-top: 5px;
    margin-bottom: 5px;
}
.mv_10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.mv_25 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.cursor_pointer {
    cursor: pointer;
}
.userSelect_none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.position_relative {
    position: relative;
}
.transform_rotateMinus90 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.transform_rotatePlus90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.overflow_auto {
    overflow: auto;
}
.overflow_hidden {
    overflow: hidden;
}
.height_full {
    height: 100%;
}
.display_block {
    display: block;
}
.border_left {
    border-left: 1px;
    border-left-color: rgba(0, 0, 0, 0.2);
    border-left-style: solid;
}
.maxWidth_label {
    max-width: 200px;
}
.fontWeight_bold {
    font-weight: bold;
}
.text_normal {
    font-size: 16px;
    font-weight: normal;
}
.text_small_semiBold {
    font-size: 14px;
    font-weight: 600;
}
.text_discreet {
    font-size: 14px;
    opacity: 0.7;
}
.text_error {
    color: #ff3e1d !important;
    color: var(--color-error) !important;
}
.text_warning {
    color: #ffa34d !important;
    color: var(--color-warning) !important;
}
.text_big {
    font-size: 18px;
}
.text_bold {
    font-weight: bold;
}
.textAlign_right {
    text-align: right;
}
.textAlign_center {
    text-align: center;
}
.textOverflow_ellipsis {
    text-overflow: ellipsis;
}
.text_ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
.h1 {
    font-size: 56px;
    font-weight: bold;
}
.h2 {
    font-size: 48px;
    font-weight: bold;
}
@media (max-width: 780px) {
    .h1 {
        font-size: 45px;
    }

    .h2 {
        font-size: 32px;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    min-height: 100%;
    color: #2b3f57;
    color: var(--color-text);
    background-color: #fafafa;
    background-color: var(--color-firstLvl-bg);
    font-size: 16px;
    line-height: 1.6;
}
hr {
    background-color: #e0e0e0;
    background-color: var(--color-firstLvl-bg-dark);
    height: 1px;
    border: none;
}
textarea {
    white-space: pre-wrap;
}
p {
    margin: 0;
    line-height: 1.2;
    white-space: normal;
}
li {
    line-height: 1.4;
}
ul,
ol {
    margin: 0;
    white-space: normal;
}
img {
    max-width: 100%;
}
::-webkit-scrollbar {
    width: 10px;
    background-color: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border: solid 1px transparent;
}
.hidden {
    display: none;
}
.shadow {
    -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
}

@font-face {
    font-family: 'aig';
    src: url(/static/assets/aig.8ae2f9bf.ttf) format('truetype'),
    url(/static/assets/aig.4e74fdb3.woff) format('woff'),
    url(/static/assets/aig.3e5c041f.svg#aig) format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="aig-"], [class*=" aig-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'aig' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.aig-teamviewer:before {
    content: "\e97d";
}

.aig-approved:before {
    content: "\e905";
}

.aig-calculator-2:before {
    content: "\e906";
}

.aig-headphones:before {
    content: "\e907";
}

.aig-team1:before {
    content: "\e908";
}

.aig-manager:before {
    content: "\e909";
}

.aig-symbols:before {
    content: "\e90a";
}

.aig-accounting1:before {
    content: "\e90b";
}

.aig-customer-support:before {
    content: "\e90c";
}

.aig-assets:before {
    content: "\e90d";
}

.aig-file-2:before {
    content: "\e90e";
}

.aig-language:before {
    content: "\e90f";
}

.aig-checklist:before {
    content: "\e910";
}

.aig-team-1:before {
    content: "\e911";
}

.aig-document:before {
    content: "\e912";
}

.aig-file-3:before {
    content: "\e913";
}

.aig-accounting-11:before {
    content: "\e914";
}

.aig-test:before {
    content: "\e915";
}

.aig-support:before {
    content: "\e916";
}

.aig-contract1:before {
    content: "\e917";
}

.aig-process1:before {
    content: "\e918";
}

.aig-files:before {
    content: "\e919";
}

.aig-file-4:before {
    content: "\e91a";
}

.aig-calculator-1:before {
    content: "\e91b";
}

.aig-employees:before {
    content: "\e91c";
}

.aig-domain:before {
    content: "\e91d";
}

.aig-implement:before {
    content: "\e91e";
}

.aig-text-format:before {
    content: "\e91f";
}

.aig-network:before {
    content: "\e920";
}

.aig-file:before {
    content: "\e921";
}

.aig-document-1:before {
    content: "\e922";
}

.aig-calculator:before {
    content: "\e923";
}

.aig-dollar:before {
    content: "\e924";
}

.aig-planet-earth:before {
    content: "\e925";
}

.aig-content:before {
    content: "\e926";
}

.aig-mathematics:before {
    content: "\e927";
}

.aig-loan:before {
    content: "\e928";
}

.aig-file-1:before {
    content: "\e929";
}

.aig-presentation1:before {
    content: "\e92a";
}

.aig-workflow:before {
    content: "\e92b";
}

.aig-meeting-room:before {
    content: "\e92c";
}

.aig-skyline:before {
    content: "\e92d";
}

.aig-bank-account:before {
    content: "\e92e";
}

.aig-profits:before {
    content: "\e92f";
}

.aig-accounting-1:before {
    content: "\e930";
}

.aig-bar-chart:before {
    content: "\e931";
}

.aig-round-table:before {
    content: "\e932";
}

.aig-mortgage-loan:before {
    content: "\e933";
}

.aig-signing-the-contract:before {
    content: "\e934";
}

.aig-process:before {
    content: "\e935";
}

.aig-resume:before {
    content: "\e936";
}

.aig-conference:before {
    content: "\e937";
}

.aig-contract:before {
    content: "\e938";
}

.aig-building-1:before {
    content: "\e939";
}

.aig-budget:before {
    content: "\e93a";
}

.aig-accounting:before {
    content: "\e93b";
}

.aig-rocket-launch:before {
    content: "\e93c";
}

.aig-calendar:before {
    content: "\e93d";
}

.aig-income:before {
    content: "\e93e";
}

.aig-user:before {
    content: "\e93f";
}

.aig-office-building-1:before {
    content: "\e940";
}

.aig-conversation:before {
    content: "\e941";
}

.aig-suitcase:before {
    content: "\e942";
}

.aig-presentation:before {
    content: "\e943";
}

.aig-clipboard:before {
    content: "\e944";
}

.aig-browser:before {
    content: "\e945";
}

.aig-chart:before {
    content: "\e946";
}

.aig-money-2:before {
    content: "\e947";
}

.aig-accounting-2:before {
    content: "\e948";
}

.aig-presentation-1:before {
    content: "\e949";
}

.aig-analysis:before {
    content: "\e94a";
}

.aig-group:before {
    content: "\e94b";
}

.aig-handshake:before {
    content: "\e94c";
}

.aig-polling:before {
    content: "\e94d";
}

.aig-hand-shake:before {
    content: "\e94e";
}

.aig-desktop:before {
    content: "\e94f";
}

.aig-darts:before {
    content: "\e950";
}

.aig-data-analysis:before {
    content: "\e951";
}

.aig-business-report:before {
    content: "\e952";
}

.aig-suitcase-1:before {
    content: "\e953";
}

.aig-pie-chart-2:before {
    content: "\e954";
}

.aig-safe-box:before {
    content: "\e955";
}

.aig-shop:before {
    content: "\e956";
}

.aig-meeting:before {
    content: "\e957";
}

.aig-target:before {
    content: "\e958";
}

.aig-calendar-1:before {
    content: "\e959";
}

.aig-report-1:before {
    content: "\e95a";
}

.aig-diagram-1:before {
    content: "\e95b";
}

.aig-money:before {
    content: "\e95c";
}

.aig-relations:before {
    content: "\e95d";
}

.aig-organization-chart:before {
    content: "\e95e";
}

.aig-laptop:before {
    content: "\e95f";
}

.aig-pie-chart-1:before {
    content: "\e960";
}

.aig-report:before {
    content: "\e961";
}

.aig-office-building:before {
    content: "\e962";
}

.aig-france:before {
    content: "\e963";
}

.aig-city:before {
    content: "\e964";
}

.aig-portfolio:before {
    content: "\e965";
}

.aig-building:before {
    content: "\e966";
}

.aig-france-1:before {
    content: "\e967";
}

.aig-video-call:before {
    content: "\e968";
}

.aig-analytics:before {
    content: "\e969";
}

.aig-team:before {
    content: "\e96a";
}

.aig-user-1:before {
    content: "\e96b";
}

.aig-monitor:before {
    content: "\e96c";
}

.aig-verification:before {
    content: "\e96d";
}

.aig-online:before {
    content: "\e96e";
}

.aig-analysis-1:before {
    content: "\e96f";
}

.aig-money-1:before {
    content: "\e970";
}

.aig-high:before {
    content: "\e971";
}

.aig-debit-card:before {
    content: "\e972";
}

.aig-bar-chart-1:before {
    content: "\e973";
}

.aig-teacher:before {
    content: "\e974";
}

.aig-goal:before {
    content: "\e975";
}

.aig-stats:before {
    content: "\e976";
}

.aig-customer-service:before {
    content: "\e977";
}

.aig-contract-1:before {
    content: "\e978";
}

.aig-analysis-2:before {
    content: "\e979";
}

.aig-pie-chart:before {
    content: "\e97a";
}

.aig-diagram:before {
    content: "\e97b";
}

.aig-lamp:before {
    content: "\e97c";
}

.aig-youtube:before {
    content: "\e900";
}

.aig-instagram:before {
    content: "\e901";
}

.aig-linkedin:before {
    content: "\e902";
}

.aig-facebook:before {
    content: "\e903";
}

.aig-twitter:before {
    content: "\e904";
}
@font-face {
    font-family: 'Poppins';
    src: url(/static/assets/Poppins-Regular.1421a94e.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(/static/assets/Poppins-Thin.85a73d99.otf);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(/static/assets/Poppins-Bold.b5c5cbad.otf);
    font-weight: bold;
    font-style: normal;
}
:root {
    --color-primary: #0052cb;
    --color-primary-darker: #3a518c;
    --color-primary-lighter: #5ca4d1;
    --color-secondary: #ff000a;
    --color-tertiary: #ffa34d;
    --color-tertiary-alt: rgba(254, 220, 8, 0.71);
    --color-quaternary: #f67575;
    --color-success: #0ead69;
    --color-inProgress: #ee4266;
    --color-canceled: #6103c2;
    --color-buyNow: #fa731e;

    --color-text: #2b3f57;
    --color-text-fade: rgba(43, 63, 87, 0.74);
    --color-text-on-primary: #fff;

    --color-primary-bg: #1e1a33;
    --color-tertiary-bg: #fafbfd;
    --color-tertiary-text: #92a2ba;
    --color-secondary-bg: #f2f7fa;
    --color-firstLvl-bg: #fafafa;
    --color-firstLvl-bg-dark: #e0e0e0;
    --color-secondLvl-bg: #f5f6fa;
    --color-secondLvl-dark-bg: #dce0e9;
    --color-thirdLvl-bg: #fff;

    --color-warning: var(--color-tertiary);
    --color-error: #ff3e1d;
    --color-delete: #ff3e1d;

    --color-border: #68cc9a;

    --color-header-bg: #ffff;
    --color-header-font: #111;
    --color-footer-bg: var(--color-primary);
    --color-footer-font: #f1f1f1;
}
:root {
    --xs: 5px;
    --sm: 10px;
    --md: 20px;
    --lg: 50px;
    --xl: 100px;

    --bp-xl: 1200px;
    --bp-lg: 992px;
    --bp-md: 768px;
    --bp-sm: 576px;
    --bp-xs: 400px;

    --app-width: 1200px;

    --border-radius: 5px;
    --input-height: 36px;
}
:root {
    --zIndex-bidButton: 700;
    --zIndex-footer: 750;
    --zIndex-navBar: 800;
    --zIndex-mobileMenu: 10000;
    --zIndex-overlay: 11000;
    --zIndex-popup: 12000;
}
.input_container__fXlO2 {
    position: relative;
}
.input_input__1wXzB {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border-radius: var(--border-radius);
    min-height: 36px;
    min-height: var(--input-height);
    padding: 5px 5px 5px 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    font-size: 15px;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.input_input_default__1G_9S {
    border: solid #e0e0e0 1px;
    border: solid var(--color-firstLvl-bg-dark) 1px;
}
.input_input_white__3FSs_ {
    border: solid white 1px;
    color: white;
}
.input_input_label__2TBTy {
    background-color: transparent !important;
    border: none !important;
    padding-left: 0 !important;
    color: inherit !important;
}
.input_input_gray__12qH6 {
    background-color: rgba(0, 0, 0, 0.04);
}
.input_input_error__3ZgtS {
    border-color: #ff3e1d !important;
    border-color: var(--color-error) !important;
    border-width: 3px;
}
.input_input__1wXzB:focus {
    border-color: #0052cb;
    border-color: var(--color-primary);
    border-width: 3px;
    outline: #0052cb;
    outline: var(--color-primary);
}
.input_inputWithEndIcon__3HhfO {
    padding-right: 30px;
}
.input_endIcon__Ks7Lt {
    position: absolute;
    top: 5px;
    right: 8px;
}
.input_error__191AA {
    font-size: 14px;
    color: #ff3e1d;
    color: var(--color-error);
    padding: 3px 0;
    min-height: 25px;
}
.input_textAreaNoResize__3CPH3 {
    resize: none;
}

:root {
    --color-primary: #0052cb;
    --color-primary-darker: #3a518c;
    --color-primary-lighter: #5ca4d1;
    --color-secondary: #ff000a;
    --color-tertiary: #ffa34d;
    --color-tertiary-alt: rgba(254, 220, 8, 0.71);
    --color-quaternary: #f67575;
    --color-success: #0ead69;
    --color-inProgress: #ee4266;
    --color-canceled: #6103c2;
    --color-buyNow: #fa731e;

    --color-text: #2b3f57;
    --color-text-fade: rgba(43, 63, 87, 0.74);
    --color-text-on-primary: #fff;

    --color-primary-bg: #1e1a33;
    --color-tertiary-bg: #fafbfd;
    --color-tertiary-text: #92a2ba;
    --color-secondary-bg: #f2f7fa;
    --color-firstLvl-bg: #fafafa;
    --color-firstLvl-bg-dark: #e0e0e0;
    --color-secondLvl-bg: #f5f6fa;
    --color-secondLvl-dark-bg: #dce0e9;
    --color-thirdLvl-bg: #fff;

    --color-warning: var(--color-tertiary);
    --color-error: #ff3e1d;
    --color-delete: #ff3e1d;

    --color-border: #68cc9a;

    --color-header-bg: #ffff;
    --color-header-font: #111;
    --color-footer-bg: var(--color-primary);
    --color-footer-font: #f1f1f1;
}
:root {
    --xs: 5px;
    --sm: 10px;
    --md: 20px;
    --lg: 50px;
    --xl: 100px;

    --bp-xl: 1200px;
    --bp-lg: 992px;
    --bp-md: 768px;
    --bp-sm: 576px;
    --bp-xs: 400px;

    --app-width: 1200px;

    --border-radius: 5px;
    --input-height: 36px;
}
:root {
    --zIndex-bidButton: 700;
    --zIndex-footer: 750;
    --zIndex-navBar: 800;
    --zIndex-mobileMenu: 10000;
    --zIndex-overlay: 11000;
    --zIndex-popup: 12000;
}
.inputBlock_label__cYgUr {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}
.inputBlock_extraLabel__133fr {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}
.inputBlock_text__IfXk1 {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 16px;
}
.inputBlock_required__3bKb0 {
    color: #ff3e1d;
    color: var(--color-error);
}
:root {
    --color-primary: #0052cb;
    --color-primary-darker: #3a518c;
    --color-primary-lighter: #5ca4d1;
    --color-secondary: #ff000a;
    --color-tertiary: #ffa34d;
    --color-tertiary-alt: rgba(254, 220, 8, 0.71);
    --color-quaternary: #f67575;
    --color-success: #0ead69;
    --color-inProgress: #ee4266;
    --color-canceled: #6103c2;
    --color-buyNow: #fa731e;

    --color-text: #2b3f57;
    --color-text-fade: rgba(43, 63, 87, 0.74);
    --color-text-on-primary: #fff;

    --color-primary-bg: #1e1a33;
    --color-tertiary-bg: #fafbfd;
    --color-tertiary-text: #92a2ba;
    --color-secondary-bg: #f2f7fa;
    --color-firstLvl-bg: #fafafa;
    --color-firstLvl-bg-dark: #e0e0e0;
    --color-secondLvl-bg: #f5f6fa;
    --color-secondLvl-dark-bg: #dce0e9;
    --color-thirdLvl-bg: #fff;

    --color-warning: var(--color-tertiary);
    --color-error: #ff3e1d;
    --color-delete: #ff3e1d;

    --color-border: #68cc9a;

    --color-header-bg: #ffff;
    --color-header-font: #111;
    --color-footer-bg: var(--color-primary);
    --color-footer-font: #f1f1f1;
}
:root {
    --xs: 5px;
    --sm: 10px;
    --md: 20px;
    --lg: 50px;
    --xl: 100px;

    --bp-xl: 1200px;
    --bp-lg: 992px;
    --bp-md: 768px;
    --bp-sm: 576px;
    --bp-xs: 400px;

    --app-width: 1200px;

    --border-radius: 5px;
    --input-height: 36px;
}
:root {
    --zIndex-bidButton: 700;
    --zIndex-footer: 750;
    --zIndex-navBar: 800;
    --zIndex-mobileMenu: 10000;
    --zIndex-overlay: 11000;
    --zIndex-popup: 12000;
}
.errorBlock_container__M-M7x {
    color: #ff3e1d;
    color: var(--color-error);
    padding: 15px 0;
    margin: 10px 0;
    font-weight: 600;
}

:root {
    --color-primary: #0052cb;
    --color-primary-darker: #3a518c;
    --color-primary-lighter: #5ca4d1;
    --color-secondary: #ff000a;
    --color-tertiary: #ffa34d;
    --color-tertiary-alt: rgba(254, 220, 8, 0.71);
    --color-quaternary: #f67575;
    --color-success: #0ead69;
    --color-inProgress: #ee4266;
    --color-canceled: #6103c2;
    --color-buyNow: #fa731e;

    --color-text: #2b3f57;
    --color-text-fade: rgba(43, 63, 87, 0.74);
    --color-text-on-primary: #fff;

    --color-primary-bg: #1e1a33;
    --color-tertiary-bg: #fafbfd;
    --color-tertiary-text: #92a2ba;
    --color-secondary-bg: #f2f7fa;
    --color-firstLvl-bg: #fafafa;
    --color-firstLvl-bg-dark: #e0e0e0;
    --color-secondLvl-bg: #f5f6fa;
    --color-secondLvl-dark-bg: #dce0e9;
    --color-thirdLvl-bg: #fff;

    --color-warning: var(--color-tertiary);
    --color-error: #ff3e1d;
    --color-delete: #ff3e1d;

    --color-border: #68cc9a;

    --color-header-bg: #ffff;
    --color-header-font: #111;
    --color-footer-bg: var(--color-primary);
    --color-footer-font: #f1f1f1;
}
:root {
    --xs: 5px;
    --sm: 10px;
    --md: 20px;
    --lg: 50px;
    --xl: 100px;

    --bp-xl: 1200px;
    --bp-lg: 992px;
    --bp-md: 768px;
    --bp-sm: 576px;
    --bp-xs: 400px;

    --app-width: 1200px;

    --border-radius: 5px;
    --input-height: 36px;
}
:root {
    --zIndex-bidButton: 700;
    --zIndex-footer: 750;
    --zIndex-navBar: 800;
    --zIndex-mobileMenu: 10000;
    --zIndex-overlay: 11000;
    --zIndex-popup: 12000;
}
.uiButton_container__1tlxB.uiButton_root__1ZoWj {
    border-radius: 20px;
    min-height: 36px;
    min-height: var(--input-height);
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    padding: 2px 20px;
}
.uiButton_container__1tlxB.uiButton_containedPrimary__20FqN {
    color: #fff !important;
    color: var(--color-text-on-primary) !important;
}
.uiButton_container__1tlxB.uiButton_containedSuccess__3_cvE {
    color: white !important;
    background: #0ead69;
    background: var(--color-success);
}
.uiButton_container__1tlxB.uiButton_light__3Tw1P {
    color: white !important;
    background: #5ca4d1;
    background: var(--color-primary-lighter);
}
.uiButton_container__1tlxB.uiButton_label__PbNIi {
    text-transform: none;
    font-weight: 600;
}
.uiButton_container__1tlxB.uiButton_containerForDelete__1DKGR {
    color: #ff3e1d;
    color: var(--color-delete);
}
.uiButton_container__1tlxB.uiButton_containerForDelete__1DKGR.uiButton_contained__wkGMx {
    color: #FFF;
    background-color: #ff3e1d;
    background-color: var(--color-delete);
}
.uiButton_container__1tlxB.uiButton_sizeSmall__2y0Xm {
    min-height: auto;
}

:root {
    --color-primary: #0052cb;
    --color-primary-darker: #3a518c;
    --color-primary-lighter: #5ca4d1;
    --color-secondary: #ff000a;
    --color-tertiary: #ffa34d;
    --color-tertiary-alt: rgba(254, 220, 8, 0.71);
    --color-quaternary: #f67575;
    --color-success: #0ead69;
    --color-inProgress: #ee4266;
    --color-canceled: #6103c2;
    --color-buyNow: #fa731e;

    --color-text: #2b3f57;
    --color-text-fade: rgba(43, 63, 87, 0.74);
    --color-text-on-primary: #fff;

    --color-primary-bg: #1e1a33;
    --color-tertiary-bg: #fafbfd;
    --color-tertiary-text: #92a2ba;
    --color-secondary-bg: #f2f7fa;
    --color-firstLvl-bg: #fafafa;
    --color-firstLvl-bg-dark: #e0e0e0;
    --color-secondLvl-bg: #f5f6fa;
    --color-secondLvl-dark-bg: #dce0e9;
    --color-thirdLvl-bg: #fff;

    --color-warning: var(--color-tertiary);
    --color-error: #ff3e1d;
    --color-delete: #ff3e1d;

    --color-border: #68cc9a;

    --color-header-bg: #ffff;
    --color-header-font: #111;
    --color-footer-bg: var(--color-primary);
    --color-footer-font: #f1f1f1;
}
:root {
    --xs: 5px;
    --sm: 10px;
    --md: 20px;
    --lg: 50px;
    --xl: 100px;

    --bp-xl: 1200px;
    --bp-lg: 992px;
    --bp-md: 768px;
    --bp-sm: 576px;
    --bp-xs: 400px;

    --app-width: 1200px;

    --border-radius: 5px;
    --input-height: 36px;
}
:root {
    --zIndex-bidButton: 700;
    --zIndex-footer: 750;
    --zIndex-navBar: 800;
    --zIndex-mobileMenu: 10000;
    --zIndex-overlay: 11000;
    --zIndex-popup: 12000;
}
.header_container__2x4P2,
.header_wrapper__2-oR4,
.header_placeholder__2LGvd {
    height: 85px;
}
.header_wrapper__2-oR4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    z-index: var(--zIndex-navBar);
    background-color: #ffff;
    background-color: var(--color-header-bg);
    color: #111;
    color: var(--color-header-font);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.header_logo__1k1gR {
    font-size: 28px;
    font-weight: 900;
    color: #0052cb;
    color: var(--color-primary);
    text-decoration: none;
    margin-right: 20px;
}
.header_headerLogo__3lond {
    margin-top: 10px;
}
.header_slogan__35fwE {
    margin: 0 10px;
    font-size: 20px;
}
@media (max-width: 1300px) {
    .header_headerLogo__3lond {
        margin-right: 20px;
        margin-top: 18px;
        width: 120px !important;
    }
}
@media (max-width: 1000px) {
    .header_container__2x4P2,
    .header_wrapper__2-oR4,
    .header_placeholder__2LGvd {
        height: 72px;
    }
    .header_headerLogo__3lond {
        margin-top: 13px;
    }
}

.menu_mobileContainer__36nra {
    display: none;
}

.menu_arrowBottomIcon__3dUI5 {
    margin-left: 1px;
    position: absolute;
    right: 0;
    cursor: pointer;
    top: 27px;
}

@media (max-width: 1000px) {
    .menu_container__XtaHH {
        display: none;
    }

    .menu_mobileContainer__36nra {
        display: block;
    }
}

@media (max-width: 1300px) {
    .menu_arrowBottomIcon__3dUI5 {
        right: -6px;
        top: 33px;
    }
}

.menu_menuAuction__3EirN {
    position: relative;
}

.menu_subMenuAuction__2X0gp {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: 0;
    top: 55px;
    background-color: #fafafa;
    border-radius: 4px 4px 4px 4px;
    opacity: 1;
    -webkit-transition: opacity 232ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 155ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 232ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 155ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 232ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 155ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 232ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 155ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 155ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    -webkit-transform-origin: 12.4219px 26px;
            transform-origin: 12.4219px 26px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    white-space: pre-wrap;
    -webkit-box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
            box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
}
.rootMenu_container__111nH {
    position: relative;
}

.rootMenu_container_separator__1YQ-f:before {
    content: "";
    width: 2px;
    top: 50%;
    margin-top: -11px;
    position: absolute;
    display: block;
    height: 20px;
    opacity: 0.9;
    background-color: #fff;
}

.rootMenu_menu__7tzWv {
    color: var(--color-header-font) !important;
    cursor: pointer;
    padding: 10px;
    height: 82px;
    position: relative;
    font-size: 13px;
}

.rootMenu_menuHighlighted__2uvGZ {
    background-color: red !important;
}

.rootMenu_text__2qVph,
.rootMenu_textHighlighted___Godg {
    font-weight: bold;
    max-width: 200px;
}

.rootMenu_text__2qVph {
    padding: 5px 0;
    border-bottom: solid 2px transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.rootMenu_textHighlighted___Godg {
    font-weight: 900;
    padding: 2px;
}

.rootMenu_image__QGyMM {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.rootMenu_menu_active__2-x6F .rootMenu_text__2qVph {
    border-color: var(--color-primary-lighter) !important;
}

.rootMenu_menuSubtitle__3MfUl {
    position: absolute;
    bottom: 13px;
    font-size: 15px;
    font-weight: normal;
    color: #68cc9a !important;
    text-decoration: none !important;
}

.rootMenu_menuSubIcon__2ihyH {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    display: block;
}

@media (hover) {
    .rootMenu_menu__7tzWv:hover .rootMenu_text__2qVph {
        border-color: var(--color-primary-darker);
    }
}

@media (max-width: 1300px) {
    .rootMenu_menu__7tzWv {
        font-size: 13px;
        margin: 6px;
        padding: 6px;
    }
}

.subGroupsMenu_container__1inE- {
    position: absolute;
    left: 0;
    right: 0;
    color: #201a33;
    -webkit-animation: subGroupsMenu_subGroupOpening__2CbbY 0.3s ease-in;
            animation: subGroupsMenu_subGroupOpening__2CbbY 0.3s ease-in;
}

.subGroupsMenu_arrow__1lQIk {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 12px solid #fff;
    z-index: 10;
}

.subGroupsMenu_bodyWrapper__3CMGK {
    position: absolute;
    top: 0;
    padding-top: 12px;
}

.subGroupsMenu_body__2AdYa {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
}

.subGroupsMenu_subGroup__tmDGR {
    padding: 20px 20px 20px 40px;
    min-width: 200px;
    font-size: 12px;
}

.subGroupsMenu_title__9XETi {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
}

@-webkit-keyframes subGroupsMenu_subGroupOpening__2CbbY {
    from {
        opacity: 0.1;
        -webkit-transform: perspective(9cm) rotateX(-18deg);
                transform: perspective(9cm) rotateX(-18deg);
    }
    60% {
        -webkit-transform: perspective(9cm) rotateX(0deg);
                transform: perspective(9cm) rotateX(0deg);
    }
    to {
        opacity: 1;
    }
}

@keyframes subGroupsMenu_subGroupOpening__2CbbY {
    from {
        opacity: 0.1;
        -webkit-transform: perspective(9cm) rotateX(-18deg);
                transform: perspective(9cm) rotateX(-18deg);
    }
    60% {
        -webkit-transform: perspective(9cm) rotateX(0deg);
                transform: perspective(9cm) rotateX(0deg);
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1500px) {
    .subGroupsMenu_subGroup__tmDGR > * {
        font-size: 12px;
        min-width: 140px;
    }

    h4 {
        font-size: 12px;
    }
}

.leafMenu_container__2svOU {
    color: #201A33 !important;
    opacity: 0.6;
    cursor: pointer;
    padding: 3px 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.leafMenu_container_highlighted__1rLXi {
    color: #68cc9a !important;
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
}

.leafMenu_item__1dbeY {
    max-width: 100%;
}

@media (hover) {
    .leafMenu_container__2svOU:hover {
        opacity: 1;
    }
}
.mobileMenuBtn_container__3qMv2 {
    position: absolute !important;
    top: 9px;
    right: 20px;
}
.mobileMenu_container__3caMo {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--zIndex-mobileMenu);
    background-color: var(--color-primary);
    color: var(--color-text-on-primary);
    padding: 20px;
    overflow: auto;
    text-align: center;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.mobileMenu_opened__NqnlF {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

.mobileMenu_logo__1YYIp {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 40px;
}

.mobileMenu_closeIcon__3nfks {
    position: absolute !important;
    top: 10px;
    right: 20px;
}
.rootMobileMenu_container_separator__1U64h {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
}

.rootMobileMenu_menu__Shek2 {
    min-height: 55px;
    padding: 8px 10px;
    cursor: pointer;
}

.rootMobileMenu_menu_active__1ab7K {
    color: #68cc9a !important;
}

.rootMobileMenu_text__34lsF {
    color: #FFF !important;
    font-weight: bold;
}

.rootMobileMenu_subgroup__1fj2I {
    margin-right: 10px;
    border-radius: 4px;
    background-color: rgba(0,0,0, 0.2);
    max-height: 300px;
    overflow-y: auto;
}

.rootMobileMenu_subGroupTitle__1Zbh3 {
    font-size: 16px;
    text-transform: uppercase;
    color: rgba(255,255,255, 0.5) !important;
    padding: 8px 10px;
    cursor: default;
}

.rootMobileMenu_subItem__3UG8L {
    font-size: 13px;
    color: rgba(255,255,255, 0.8) !important;
    padding: 8px 10px;
    cursor: pointer;
}
.searchBar_container__VI39F {
    margin-right: 10%;
    margin-left: 10%;
    min-width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.searchBar_searchInput__3RMup {
    max-width: 320px;
    background-color: white;
    border-color: var(--color-primary-darker);
    position: relative;
}

.searchBar_searchInput__3RMup .searchBar_icon__1xF3g {
        color: var(--color-primary);
    }

.searchBar_searchInput__3RMup:active,
.searchBar_searchInput__3RMup:focus {
    border-color: var(--color-secondary);
}

.searchBar_searchResult__1g-_S {
    position: absolute;
    max-width: 40%;
    z-index: 850;
}

.searchBar_background__3lDrm {
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 850px) {
    .searchBar_container__VI39F {
        margin: 0;
    }
    .searchBar_searchResult__1g-_S {
        max-width: inherit;
    }
}

.footer_container__hTt-Y {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-font);
    padding-top: 30px;
    border-top: 1px solid #ccc;
    z-index: var(--zIndex-navBar);
}

.footer_brandLogoWrapper__2vNUs {
    margin-bottom: 20px;
    margin-right: 50px;
    margin-left: 20px;
}

.footer_brandLogo__3On0R {
    width: 160px;
}

.footer_menu__2VNzE {
    margin: 0 20px;
}

.footer_allRightsReserved__3Mn3L {
    font-size: 12px;
    margin-bottom: 20px;
}

.footer_spacer__11Awq {
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5 1;
            flex: 0.5 1;
}

@media (max-width: 600px) {
    .footer_logos__xUtfp {
        min-width: calc(100vw - 40px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 20px;
    }
}

.footerMenu_title__3G7Fj {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footerMenu_link__2uBQn {
    font-size: 14px;
    display: block;
    margin: 10px 0;
    color: #FFF !important;
}

@media (hover) {
    .footerMenu_link__2uBQn:hover {
        text-decoration: underline;
    }
}
.footerLinks_container__13dRX {
    padding: 0 0 0 20px;
    border-left: solid 1px #fff;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
}

.footerLinks_innerContainer__EdmvU {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 185px;
    margin-right: -10px;
}

.footerLinks_link__DclRw {
    color: #fff !important;
    font-size: 40px;
    margin: 0 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (hover) {
    .footerLinks_link__DclRw:hover {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

@media (max-width: 959px) {
    .footerLinks_container__13dRX {
        border: none;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        padding-left: 10px;
    }
}

@media (max-width: 800px) {
    .footerLinks_container__13dRX {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        min-width: calc(100vw - 40px);
        margin: 0;
        padding: 0;
    }

    .footerLinks_innerContainer__EdmvU {
        width: auto;
    }
}

@media (max-width: 768px) {
    .footerLinks_container__13dRX {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

.appContent_container__3X68e {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.appContent_innerContainer__2K-R_ {
    min-height: 100%;
}
.popup_container__29Mxj {
    position: fixed;
    bottom: 96px;
    right: -100%;
    background: white;
    border-radius: 5px;
    padding: 24px;
    -webkit-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
            box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    z-index: var(--zIndex-popup);
    -webkit-animation: popup_slideIn__1R--C 0.5s forwards;
            animation: popup_slideIn__1R--C 0.5s forwards;
}

@-webkit-keyframes popup_slideIn__1R--C {
    100% {
        right: 16px;
    }
}

@keyframes popup_slideIn__1R--C {
    100% {
        right: 16px;
    }
}

.popup_closeIcon__3MXUn {
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
    padding: 4px;
}

.noListingFeesPopup_container__7ocO6 {
    padding-right: 96px;
}

.noListingFeesPopup_body__1nb8i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    font-size: 16px;
}

.noListingFeesPopup_icon__-OOjs {
    color: var(--color-primary);
}

.spinner_spinner__5qgOs {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner_doubleBounce1__1mEXh,
.spinner_doubleBounce2__1JaVL {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: spinner_skBounce__3XoSX 2s infinite ease-in-out;
    animation: spinner_skBounce__3XoSX 2s infinite ease-in-out;
}

.spinner_doubleBounce2__1JaVL {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes spinner_skBounce__3XoSX {
    0%,
    100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes spinner_skBounce__3XoSX {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.overlay_container__2ZmCj {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.82);
    color: #fff;
    font-size: 18px;
    z-index: var(--zIndex-overlay);
}

.cookieBanner_container__1ChZH {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15000;
    background: var(--color-secondLvl-dark-bg);
    padding: 20px;
    font-size: 12px;
    -webkit-animation: cookieBanner_appear__3xyMP 0.3s ease;
            animation: cookieBanner_appear__3xyMP 0.3s ease;
}

.cookieBanner_innerContainer__22JB1 {
    margin: 0 auto;
    max-width: 80%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.cookieBanner_left__23AZm {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-right: 30px;
    font-size: 15px;
}

.cookieBanner_right__3OaS3 {
    margin: auto;
}

.cookieBanner_exitActive__1iMQD {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

@-webkit-keyframes cookieBanner_appear__3xyMP {
    0% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes cookieBanner_appear__3xyMP {
    0% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@-webkit-keyframes cookieBanner_topAppear__3FoCM {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes cookieBanner_topAppear__3FoCM {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@media (max-width: 560px) {
    .cookieBanner_innerContainer__22JB1 {
        max-width: none;
    }
}

/*# sourceMappingURL=bundle.34633c6d860018f9a065.css.map*/