:root {
    /* Variable to determine translateY in Animation */
    --translateYHeightFrom: 482px;
    --translateYHeightTo: -100%;
    --headerHeight: 65px;
}

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

html {
    font-size: 16px;
}

body {
    background-color: transparent;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: 'Roboto', 'Helvetica Neue', Arial;
    line-height: 1.42857;
    color: #fff;
    height: 100%;
}

.body_is_in_app .terms_button,
.body_is_in_app .privacy_button {
    display: none;
}

input[type='submit'],
input[type='button'] {
    -webkit-appearance: none !important;
}

.btn_reset {
    background: unset;
    padding: 0;
    border: unset;
}

.fieldset_reset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0; /* Fixes scroll in flex containers */
}

#bgimage {
    position: fixed;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center top;
    z-index: -100;
}

#bgimage.header-fixed {
    height: calc(100% - var(--headerHeight));
    top: var(--headerHeight);
}

.sp_header {
    display: flex;
    height: var(--headerHeight);
    justify-content: center;
    background-color: white;
    padding: 5px 0 10px;
}

.sp_header_in {
    display: flex;
    width: 100%;
    max-width: 1170px;
    justify-content: space-between;
    align-items: center;
}

.sp_header_side_item {
    flex: 1 0 110px;
}

.terms {
    display: flex;
}

.lang_info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.checkin_block {
    display: none;
    width: 100%;
    justify-content: center;
}

.checkin_block_in {
    display: flex;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.final_checkin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#agreement_checkbox {
    align-self: flex-start;
    margin-top: 5px;
    width: 0.8125rem;
    height: 0.8125rem;
    flex-shrink: 0;
}

.checkin_agreement {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.agreement_text {
    text-align: left;
    padding: 0 10px;
}

.agreement_link {
    cursor: pointer;
    text-decoration: none;
    color: #3975D0;
}

.agreement_link_light {
    color: #306ece;
}

#facebook_login_button {
    background-color: #1877f2;
}

#facebook_login_button img {
    width: 2rem;
    flex-shrink: 0;
    height: 2rem;
    margin-right: 10px;
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}

#skip_button {
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    right: 5px;
    padding: 9px 15px 6px 15px;
    border: 2px solid white;
    color: #ffffff;
    top: calc(var(--headerHeight) + 5px);
    z-index: 999;
    display: none;
    align-items: center;
    line-height: 2;
}

#skip_button:not(:disabled) {
    cursor: pointer;
}

#skip_button_icon {
    display: none;
    vertical-align: middle;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -0.1rem;
}

#skip_button_text {
    font-size: 1rem;
    font-family: 'Roboto', 'Helvetica Neue', Arial;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: white;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog_out {
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: 1000;
    top: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
}

.dialog_out::backdrop {
    background: unset;
}

.dialog_block {
    display: flex;
    flex-direction: column;
    width: 90vw;
    height: auto;
    min-width: 200px;
    max-height: 80vh;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}

.dialog_header_area {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.dialog_close_button {
    align-self: flex-end;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin: 5px;
    cursor: pointer;
}

.dialog_close_button_icon {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.dialog_content {
    color: #465566;
    display: none;
    padding: 0 15px;
    overflow-y: auto;
    word-wrap: break-word;
}

#preload_container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.logo_out {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.logo {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    transform: translateZ(0px);
}

.sp_header_dialog_button {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    margin: 0 10px;
}

.sp_header_dialog_icon {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.campaign_out {
    position: absolute;
    width: 100%;
    height: calc(100% - var(--headerHeight));
    margin-top: var(--headerHeight);
    top: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.element_block {
    display: none;
    flex-direction: column;
    width: auto;
    height: auto;
    min-width: 200px;
    background-color: #f7f8f9;
    overflow-y: auto;
    overflow-x: hidden;
}

.form_block {
    padding: 50px;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.form_general_error {
    color: #ff0000;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.form_question {
    color: black;
    font-size: 1.25rem;
    font-weight: bold;
}

.form {
    margin: 20px 0;
}

.input-form-error {
    border: 1px solid #ff0000 !important;
}

.condition_block {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
}

.condition_block_body {
    padding: 50px;
    margin: auto 0;
}

#condition_question {
    color: black;
    font-weight: bold;
}

.condition_buttons_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.condition_block_label {
    padding: 8px 24px;
    margin: 5px 0;
    width: 70%;
    display: flex;
    word-break: break-word;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.condition_block_answer_input {
    display: none;
}

.checkin_buttons_block {
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    background: none;
}

.checkin_buttons_container {
    max-height: 0;
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;

    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: all 0.5s;
}

.checkin_buttons_container.enabled {
    max-height: 450px;
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 15px;
    opacity: 1;
}

.checkin_buttons_container button {
    width: 100%;
    word-break: break-word;
}

.campaign_default_select {
    color: #475665;
    font-weight: bold;
    align-self: center;
    margin: 0 15px;
}

.dialog_language_picker_wrapper {
    position: relative;
    display: inline-block;
}
.dialog_language_picker_wrapper::before {
    width: 0;
    height: 0;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #7a8590 transparent transparent transparent;
    content: '';
    position: absolute;
    pointer-events: none;
    display: block;
}

#dialog_language_picker,
.campaign_default_select option {
    border: none;
    background-color: transparent;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 1rem;
    color: #7a8590;
    padding: 0 7px 0 7px;
}

#dialog_language_picker {
    padding-right: 20px;
}

.campaign_default_button {
    padding: 8px 24px;
    font-size: 1rem;
    margin: 5px 0;
    height: 2rem;
    min-height: 46px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #2F6DCA;
    color: #fff;
    font-weight: bold;
}

.campaign_default_button[disabled] {
    background-color: #dddddd;
    cursor: not-allowed !important;
}

.default_button {
    padding: 8px 24px;
    font-size: 1rem;
    margin: 5px 0;
    min-height: 46px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.default_button:active {
    background-color: #3D74C7;
}

.default_button:disabled {
    background-color: #dddddd !important;
    cursor: not-allowed !important;
}

.campaign_default_input_label {
    color: #465566;
    font-weight: bold;
    padding: 5px 0;
    display: inline-block;
}

.campaign_default_button_area {
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    position: absolute;
    left: 0;
    right: 0;
}

.campaign_default_error {
    display: none;
    color: #ff0000;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.email_phone_checkin {
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.email_phone_checkin_block_cancel {
    align-self: flex-end;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    margin: 10px;
}

.email_phone_checkin_block_cancel img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.email_phone_checkin_block_body {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    align-self: center;
    row-gap: 12px;
    max-width: 300px;
    width: 100%;
    padding: 0 10px;
}

.email_phone_checkin_block_body_item {
    width: 100%;
}

.require_field_sign {
    color: #bd4949;
}

.input_label {
    color: #465566;
    font-weight: bold;
    padding: 5px 0;
    display: inline-block;
}

.image_block {
    position: relative;
    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image_inner_block {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 0;
    z-index: 1;
}

.image_block img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.image_background_block {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
}

.video_block {
    position: relative;
    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video_inner_block {
    z-index: 1;
    overflow: hidden;
    line-height: 0;
}

.video_block video {
    max-height: calc(100vh - var(--headerHeight));
}

.video_background_block {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.video_background_block video {
    filter: blur(15px);
    object-fit: cover;
}

#video_play_button {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100px;
    height: 100px;
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.play_symbol {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 47px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    left: 33px;
    top: 24px;
}

.email_block {
    height: 100%;
    width: 100%;
}

.email_block_body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.email_block_question {
    color: black;
}

.email_block_text {
    color: #465566;
}

#email_block_agreement_checkbox {
    width: 0.8125rem;
    height: 0.8125rem;
    flex-shrink: 0;
}

.error_message {
    color: #ff0000;
}

.email_block_input_wrap {
    margin-top: 25px;
    text-align: center;
}

.email_block_confirm {
    border: none;
    border-radius: 5px;
    padding: 0 25px;
    min-width: 50%;
}

.email_block_confirm:disabled {
    background: #dddddd;
}

.email_block_agreement {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 25px;
}

.email_block_agreement_text {
    color: #465566;
    text-align: left;
    font-family: 'Roboto', 'Helvetica Neue', Arial;
    padding: 0 10px;
}

.question_block {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.question_block_background_image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex: 1;
    width: 80%;
    min-height: 200px;
    align-self: center;
    display: none;
}

.question_block_background_image_desktop {
}

.question_block_background_image_mobile {
}

.question_block_background_image_hidden {
    display: none !important;
}

.question_block * {
    box-sizing: border-box;
}

.question_block_item {
    /* Replaces justify-content: flex-end; on parent to allow scroll */
    margin: auto 0 0;
}

.question_block_body {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: center;
}

.question_block_title {
    color: black;
    margin: 14px 0 7px;
}

.question_block_subtitle {
    font-size: 0.8125rem;
    color: black;
    margin-bottom: 7px;
}

.question_block_answer {
    color: black;
}

.block_answer_input {
    background-color: #dce3ee;
    height: 2rem;
    min-height: 46px;
    width: calc(100% - 30px);
    border: none;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 1rem;
}

.question_block_answer_outlined {
    display: block;
    padding: 10px 20px;
    margin: 10px 0;
    width: 100%;
    border: 1px solid black;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    word-break: break-word;
}

.question_block_answer_outlined:first-child {
    margin-top: 0px;
}

.question_block_answer_outlined:last-child {
    margin-bottom: 0px;
}

.question_block_answer_input {
    display: none;
}

.question_block_answer_outlined_selected {
    padding: 8px 18px;
    border: 3px solid var(--answerStrokeColor);
}

.question_block_answer_starsList_outer {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
}

.question_block_answer_starsList {
    display: inline-block;
    min-width: max-content;
    margin: 0 auto;
    padding: 2px 0;
}

.question_block_answer_star {
    height: 3rem;
    width: 3rem;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-flex;
    margin: 0 5px;
}

.question_block_answer_star svg {
    display: block;
    width: 100%;
    height: 100%;
}

.question_block_answer_netPromoterList_outer {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
}

.question_block_answer_netPromoterList {
    display: inline-block;
    min-width: max-content;
    margin: 0 auto;
    padding: 2px 0;
}

.question_block_answer_netPromoterOption {
    width: 2.75rem;
    height: 2.75rem;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 2.5px;
}

.question_block_answer_netPromoterOption_selected {
    padding: 0px 2px;
    border: 3px solid var(--answerStrokeColor);
}

.question_block_answer_occupancyList_outer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question_block_answer_occupancyList {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    column-gap: 5px;
}

.question_block_answer_occupancyOption {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    text-align: center;
    padding: 2px 4px;
    border-radius: 8px;
    border: 3px solid transparent;
}

.question_block_answer_occupancyOption svg {
    display: block;
    width: 3rem;
    height: 3rem;
}

.question_block_answer_occupancyOption_selected {
    border: 3px solid var(--answerStrokeColor);
}

.question_block_confirm {
    border: none;
    border-radius: 5px;
    padding: 0 25px;
    min-width: 50%;
}

.question_block_confirm:disabled {
    background: #dddddd;
}

#sms_block {
    height: 100%;
    width: 100%;
    justify-content: center;
    background-image: url(element_default_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#sms_block_first_step,
#sms_block_second_step,
#sms_block_captcha_step {
    width: 100%;
    height: 100%;
    padding: 0 10%;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    justify-content: center;
    color: #465566;
}

#sms_question {
    color: #465566;
    font-size: 0.875rem;
    height: 20%;
}

.sms_input_container {
    height: 35%;
}

#sms_block_info_text {
    color: #7b8692;
    font-size: 0.875rem;
}

#sms_send_again_link {
    color: #2F6DCA;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 4px 0;
}

#sms_back_link {
    text-decoration: none;
    color: #2F6DCA;
    margin-left: -7px;
    position: absolute;
    top: 29px;
}

#sms_back_link span {
    vertical-align: super;
    font-weight: bold;
}

#sms_captcha_image_container {
    margin-bottom: 15px;
}

.text_block {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    position: relative;
}

.text_block_content_wrapper {
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.text_block_content {
    /* Default value is clientHeight in iphone 6/7/8 */
    --translateYHeightFrom: 482px;
    --translateYHeightTo: -100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #465566;
}

.text_block_play_pause_btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    padding: 0;
}

.text_block_play_pause_icon {
    width: 1.5rem;
    height: 1.5rem;
    max-width: 100%;
    max-height: 100%;
}

/* h5v uses 'ad_block' classes in their own styles, so prefix our classes with 'abl_' here. */
.abl_ad_block {
    height: 100%;
    width: 100%;
    overflow: auto;
}

.abl_ad_content {
    height: 100%;
    min-height: 300px;
    width: 100%;
    color: #465566;
    /* Center the ad without affecting its internals (hopefully) */
    display: grid;
    justify-content: center;
    align-items: center;
}

.abl_choice_driven_ad_block {
    display: none;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
}

.abl_choice_driven_ad_msg {
    color: #465566;
    text-align: center;
}

.abl_choice_driven_ad_block_watch_button {
    display: none;
}

#greetings_block {
    align-items: center;
    justify-content: center;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0 25px;
}

#greetings_text,
#greetings_text h1,
#greetings_text h4 {
    color: #ffffff;
}

#greetings_countdown {
    position: absolute;
    bottom: 30px;
    display: block;
    color: #ffffff;
}

.btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: min(1vh, 20px);
    margin-bottom: min(1vh, 20px);
    column-gap: 8px;
}

.greetings {
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background-color: #f7f8f9;
    background-size: 100% 100%;
}

.abl_keyboard_focusable:focus-visible {
    outline: 3px auto rgba(255, 160, 0, 0.85);
}

#language_picker {
    cursor: pointer;
    margin-right: 5px;
}

.abl-lp-wrapper {
    position: relative;
    width: calc(2rem + 6px);
}

.abl-lp-header-icon {
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
}

.abl-lp-triangle-down {
    position: absolute;
    left: 1.6rem;
    top: 0.75rem;
    width: 0;
    height: 0;
    border-style: solid;
    display: inline-block;
    border-width: 6px 6px 0px;
    border-color: #465566 transparent transparent transparent;
}

.abl-lp-picker-popup {
    position: absolute;
    display: none;
    padding: 15px;
    top: 32px;
    z-index: 1100;
    background-color: #ffffff;
    border: 2px solid #dce3ee;
    border-radius: 6px;
}

.abl-lp-language-option {
    font-size: 0;
    white-space: nowrap;
    margin-bottom: 10px;
}

.abl-lp-language-option:last-child {
    margin-bottom: 0;
}

.abl-lp-language-option-flag-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.abl-lp-language-option-name {
    display: inline-block;
    color: #465566;
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 5px;
}

.abl-lp-language-option-active-icon {
    display: none;
    background-image: url(outline-done-24px.svg);
    width: 1.25rem;
    height: 1.25rem;
    background-size: contain;
    vertical-align: middle;
}

.abl-lp-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.abl-lp-icon-en-GB {
    background-image: url(picker-english.png);
}
.abl-lp-icon-de-DE {
    background-image: url(picker-germany.png);
}
.abl-lp-icon-ru-RU {
    background-image: url(picker-russia.png);
}
.abl-lp-icon-es-ES {
    background-image: url(picker-spain.png);
}
.abl-lp-icon-it-IT {
    background-image: url(picker-italy.png);
}
.abl-lp-icon-fr-FR {
    background-image: url(picker-france.png);
}
.abl-lp-icon-nl-NL {
    background-image: url(picker-holland.png);
}
.abl-lp-icon-tr-TR {
    background-image: url(picker-turkey.png);
}

@keyframes down {
    from {
        transform: translateY(var(--translateYHeightFrom));
    }
    to {
        transform: translateY(var(--translateYHeightTo));
    }
}

@media only screen and (max-aspect-ratio: 1/1) {
    .question_block_background_image_mobile {
        display: block;
    }
}

@media only screen and (min-aspect-ratio: 1/1) {
    .question_block_background_image_desktop {
        display: block;
    }
}

@media only screen and (aspect-ratio: 1/1) {
    .question_block_background_image_mobile {
        display: none;
    }
}

@media screen and (min-width: 650px) {
    .dialog_block {
        width: auto;
        max-width: min(600px, 80vw);
    }

    .question_block_title {
        text-align: center;
    }

    .question_block_subtitle {
        text-align: center;
    }

    .question_block_answer_occupancyList {
        column-gap: 10px;
    }
}

