:root {
    --shell-red: #DD1D21;
    --shell-yellow: #FFC600;

    --color-accent: var(--shell-red);
    /* --color-accent-active: #d24b4e; */
    --color-accent-active: #F17171;
    /* --color-accent-active: #E24B4B; */
    --color-accent-visited: #767676;
    --shell-red-ligth: #efd6db;
    --shell-button-hover-gray: #4A4A4A;
    --shell-gray-dark: #4A4A4A;
    --shell-gray-medium: #aaaaaa;
    --shell-gray-light1: #dcdcdc;
    --shell-gray-light2: #fafafa;
    --shell-gray-background: #f5f5f5;
    --shell-text-color: #4A4A4A;
    --shell-paddingLR: 25px;
}

html,
body {
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
}

a,
button {
    cursor: pointer !important;
}

button.btn:disabled {
    border-color: #aaaaaa;
    background-color: #aaaaaa;
}

a {
    color: var(--color-accent);
}
a:hover,
a:active {
    color: var(--color-accent-active);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}

.transitions, a, button {
    transition: all 0.3s ease-out;
}

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

.element_focus:focus {
    outline: 1px dashed #666 !important;
    outline-offset: 4px;
    border-radius: 2px;
}

.header_logo,
.header_logo img {
    display: inline-block;
    width: 50px !important;
    height: 50px !important;
}
.header_logo {
    margin-right: 25px;
}
.header_logo span {
    position: absolute;
    color: transparent;
}
.header_logo:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 50px;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 8px;
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    z-index: 9999;
    transition: top 0.3s ease;
    font-size: 14px;
}
.skip-link:focus {
    top: 8px;
    outline: 1px dashed black !important;
    outline-offset: 4px;
}
.skip-link:hover {
    color: var(--shell-yellow);
    background-color: #444;
}

.custom-dialogs,
.custom-dialogs * {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    list-style: none;
    outline: 0;
    font-size: 18px;
    line-heigth: 120%;
    color: var(--shell-text-color);
    font-wight: 400;
}
.custom-dialogs,
.custom-dialogs-overlay,
.custom-dialogs-container {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.custom-dialogs {
    position: fixed;
    display: block;
    z-index: 999999999999;
}
.custom-dialogs-overlay,
.custom-dialogs-container {
    position: absolute;
}
.custom-dialogs-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.custom-dialogs-container {
    overflow-y: auto;
    scroll-behavior: smooth;
    background-color: transparent;
}
.custom-dialogs-dialogbox {
    width: 800px;
    margin: auto;
    background-color: white;
    border-radius: 10px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    text-align: center;
}
.custom-dialogs-margin {
    margin: 40px 25px;
}
.custom-dialogs-message {
    padding: 40px 20px;
}
.custom-dialogs-message h4,
.custom-dialogs-message h4 > span {
    margin-bottom: 25px;
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 700;
}
.custom-dialogs-message h4 > span {
    margin-bottom: 0;
}
.custom-dialogs-message h4.text-red-main,
.custom-dialogs-message h4 > .text-red-main {
    color: var(--color-accent);
}
.custom-dialogs-message p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 140%;
}
.custom-dialogs-message p:last-child {
    margin-bottom: 0;
}
.custom-dialogs-message p > a {
    color: var(--shell-text-color);
    text-decoration: underline;
}
.custom-dialogs-message p > a:hover,
.custom-dialogs-message p > a:active {
    color: var(--color-accent);
}
.custom-dialogs-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}
.custom-dialogs-button {
    display: inline-block;
    margin: 0 0 35px 0;
    padding: 14px 25px 16px;
    border: solid 2px var(--shell-gray-light1);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 100%;
    font-weight: 500;
}
.custom-dialogs-button-ok:focus,
.custom-dialogs-button-cancel:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.custom-dialogs-button-cancel {
    display: none;
    background-color: white;
    border-color: var(--color-accent);
    order: 0;
    color: var(--color-accent);
}
.custom-dialogs-button-ok {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    order: 1;
    color: white;
}
.custom-dialogs-button-cancel:hover,
.custom-dialogs-button-cancel:active {
    background-color: var(--color-accent-active);
    border-color: var(--color-accent-active);
    color: var(--color-accent);
}
.custom-dialogs-button-ok:hover,
.custom-dialogs-button-ok:active {
    background-color: var(--color-accent-active);
    border-color: var(--color-accent-active);
    color: white;
}
.custom-dialogs-noscroll {
    overflow: hidden !important;
}
@media handheld, only screen and (max-width: 820px) {
    .custom-dialogs-dialogbox {
        width: 100%;
        border-radius: 0;
    }
}
@media handheld, only screen and (max-width: 600px) {
    .custom-dialogs-buttons {
        padding: 0 20px 40px !important;
    }
}
@media handheld, only screen and (max-width: 520px) {
    .custom-dialogs-buttons {
        flex-direction: column;
    }
    .custom-dialogs-button-cancel,
    .custom-dialogs-button-ok {
        display: block;
        width: 100%;
        margin: 0;
        font-size: 1.1rem;
    }
    .custom-dialogs-button-cancel {
        order: 1;
    }
    .custom-dialogs-button-ok {
        order: 0;
    }
}
@media handheld, only screen and (max-width: 420px) {
    .custom-dialogs-margin {
        margin: 25px 15px;
    }
}
.custom-dialogs-message .button-ok:focus,
.custom-dialogs-message .button-cancel:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}

.email-profile-update:disabled,
.email-profile-update:disabled:hover,
.email-profile-update:disabled:focus {
    border: solid 2px white;
    color: #999;
}

.mycodes-list-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
.mycodes-list-grid .item-code {
    display: inline-block;
    padding: 10px 0 8px;
    width: 125px;
    background-color: white;
    border-radius: 6px;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    line-height: 100%;
    font-weight: 600;
}

.custom-forms {
    display: block;
    clear: both;
}
.custom-forms .fieldset {
    margin-bottom: 20px;
}
.custom-forms .row {
    margin-bottom: 8px;
}
.custom-forms .fieldset:last-child,
.custom-forms .row:last-child {
    margin-bottom: 0;
}
.custom-forms .label {
    font-size: 1rem;
    line-height: 120%;
    text-align: left;
}
.custom-forms .input {
    margin-top: 6px;
    padding: 8px 15px;
    border: solid 2px white;
    background-color: white;
    font-size: 1rem;
    line-height: 120%;
    font-weight: 400;
}
.custom-forms .input:hover,
.custom-forms .input:focus {
    border-color: var(--shell-gray-medium);
}
.custom-forms .required,
.custom-forms .required::after {
    position: relative;
}
.custom-forms .required {
    display: block;
}
.custom-forms .required::after {
    display: inline-block;
    margin-left: 2px;
    top: 3px;
    font-size: 1.3rem;
    line-height: 100%;
    color: var(--shell-red);
    content: "*";
}
.custom-forms .buttons-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding-top: 15px;
}
.custom-forms .button-cancel,
.custom-forms .button-ok {
    display: block;
    margin: 0;
    padding: 12px 0 14px;
    width: 100%;
    border: solid 2px var(--shell-gray-light1);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 100%;
    font-weight: 500;
}
.custom-forms .button-cancel {
    background-color: white;
    border-color: var(--shell-red);
    order: 0;
    color: var(--shell-red);
}
.custom-forms .button-ok {
    background-color: var(--shell-red);
    border-color: var(--shell-red);
    order: 1;
    color: white;
}
.custom-forms .button-cancel:hover,
.custom-forms .button-cancel:active {
    background-color: var(--shell-gray-light2);
    border-color: var(--shell-gray-light2);
    color: var(--shell-gray-dark);
}
.custom-forms .button-ok:hover,
.custom-forms .button-ok:active {
    background-color: var(--shell-button-hover-gray);
    border-color: var(--shell-button-hover-gray);
    color: white;
}
@media handheld, only screen and (max-width: 420px) {
    .custom-forms .buttons-box {
        flex-direction: column;
    }
    .custom-forms .button-cancel,
    .custom-forms .button-ok {
        margin: 0;
        font-size: 1.1rem;
    }
    .custom-forms .button-cancel {
        order: 1;
    }
    .custom-forms .button-ok {
        order: 0;
    }
}

.custom-forms-inputerror,
.custom-forms-inputerror:hover,
.custom-forms-inputerror:focus {
    border: solid 2px var(--shell-red) !important;
}
.custom-forms-inputerror {
    background-color: var(--shell-red-ligth) !important;
    color: var(--shell-red) !important;
}
.custom-forms-inputerror:hover,
.custom-forms-inputerror:focus {
    background-color: white;
}
.custom-forms-inputerror::placeholder {
    color: #d65050;
    font-weight: 400;
}

.custom-forms .small-note,
.custom-forms .small-note b {
    font-size: 0.8rem;
    line-height: 120%;
    text-align: left;
    font-weight: 500;
}
.custom-forms .small-note {
    display: block;
    width: 100%;
    margin: 7px 0 0 0;
    padding: 0;
    color: var(--shell-gray-dark);
}
.custom-forms .small-note b {
    color: black;
    /* text-decoration: underline; */
}

.dialog-extra-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}
.dialog-extra-actions button {
    display: inline-block;
    border: 0;
    padding: 0;
    font-size: 0.9rem;
    color: black;
    line-height: 120%;
    font-weight: 500;
    text-decoration: underline;
}
.dialog-extra-actions button:hover {
    color: var(--color-accent-active);
    text-decoration: underline;
}
.dialog-extra-actions button:active {
    color: var(--shell-button-hover-gray);
    text-decoration: none;
}
.dialog-extra-actions button:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}

.step-box {
    display: none;
    width: 100%;
}
.step-box.active {
    display: block;
}
.step-balls,
.step-balls div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.step-balls {
    justify-content: center;
    width: 100%;
}
.step-balls p,
.step-balls span,
.step-balls hr {
    margin: 0;
    padding: 0;
}
.step-balls span,
.step-balls hr {
    display: inline-block;
}
.step-balls p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: solid 3px var(--shell-button-hover-gray);
    border-radius: 100px;
    font-size: 1rem;
    line-height: 100%;
    color: var(--shell-button-hover-gray);
    text-align: center;
    font-weight: 700;
}
.step-balls hr {
    width: 15px;
    border-top: solid 2px var(--shell-button-hover-gray);
}
.step-balls div.active p,
.step-balls div.active hr {
    color: var(--shell-red);
    border-color: var(--shell-red);
}

.estaciones-box {
    position: relative;
    display: block;
    padding: 35px 35px;
    background-color: var(--shell-yellow);
    border-radius: 15px;
}
.estaciones-box ul {
    margin-top: 35px;
    border-top: solid 1px var(--shell-gray-light1);
}
.estaciones-box ul:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.estaciones-box li {
    display: none;
}
.estaciones-box h4,
.estaciones-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 140%;
}
.estaciones-box h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: black;
    font-weight: 400;
}
.estaciones-box p {
    color: var(--shell-gray-dark);
    font-weight: 400;
}
.estaciones-box li.station-row {
    display: block;
    padding: 15px 5px;
    border-bottom: solid 1px var(--shell-gray-light1);
}
.estaciones-box .select {
    position: sticky;
    top: 115px;
    background-color: var(--shell-gray-background);
    border-color: #ddd;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
    color: var(--color-accent);
    font-weight: 550;
}
.estaciones-box .select:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.estaciones-box .select:hover,
.estaciones-box .select:focus {
    background-color: var(--shell-gray-background);
    border-color: var(--color-accent);
}
@media handheld, only screen and (max-width: 1280px) {
    .estaciones-box .select {
        top: 100px;
    }
}
@media handheld, only screen and (max-width: 520px) {
    .estaciones-box {
        padding: 30px 15px;
    }
}

.wserror {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin-bottom: 50px;
    background-color: var(--shell-red-ligth);
    border-radius: 15px;
}
.wserror p {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 120%;
    font-weight: 500;
}
.wserror p:nth-child(1) {
    padding: 25px 35px;
    background-color: var(--shell-red);
}
.wserror p:nth-child(2) {
    padding: 0 25px;
}
.wserror strong {
    color: var(--shell-red);
}
.wserror svg {
    display: block;
    width: 50px;
    height: 50px;
}
.wserror path {
    fill: white;
}
@media handheld, only screen and (max-width: 690px) {
    .wserror {
        display: block;
    }
    .wserror p:nth-child(1) {
        padding: 15px 35px;
    }
    .wserror p:nth-child(2) {
        padding: 30px 35px;
    }
}

.item-instantprize:hover {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
}

.custom-button-show-tickets {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 14px 12px;
    background-color: var(--shell-red);
    border: solid 2px var(--shell-red);
    border-radius: 6px;
    font-size: 1rem;
    line-height: 100%;
    color: white;
    text-decoration: none;
}
.custom-button-show-tickets:hover,
.custom-button-show-tickets:active {
    background-color: var(--shell-button-hover-gray);
    border-color: var(--shell-button-hover-gray);
}
.custom-button-show-tickets:disabled {
    opacity: 0.3;
    background-color: transparent;
    color: var(--shell-red);
}
.custom-button-show-tickets:disabled:hover,
.custom-button-show-tickets:disabled:active {
    border-color: var(--shell-red);
}

.btn_accent_color {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: white;
}
.link_accent_color,
.text_accent_color {
    color: var(--color-accent);
}
.text_darkgray_color {
    color: var(--shell-text-color);
}

.undertext_medium_gray {
    background-color: var(--shell-gray-medium);
}

.login-header .btn_home_signin,
.login-header .btn_home_signup {
    border: solid 2px var(--color-accent);
    background-color: var(--color-accent);
    color: white;
}
.login-header .btn_home_signup {
    background-color: white;
    color: var(--color-accent);
}
.login-header .btn_home_signin:hover,
.login-header .btn_home_signin:active,
.login-header .btn_home_signup:hover,
.login-header .btn_home_signup:active {
    border-color: var(--color-accent-active);
    background-color: var(--color-accent-active);
    color: white;
}

.menu-item .mainnav:link {
    color: var(--color-accent);
    text-decoration: none;
}
.menu-item .mainnav:visited {
    color: var(--color-accent-visited);
    text-decoration: underline;
}
.menu-item .mainnav:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.menu-item .mainnav:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
.menu-item .mainnav:active {
    color: var(--color-accent-active);
    text-decoration: none;
}
.menu-item.active .mainnav {
    color: var(--color-accent);
    text-decoration: none;
}

#main-footer {
    background-color: white;
}

#container {
    /* background-color: var(--shell-gray-light2); */
    background-color: var(--shell-gray-background);
}

.title_accent_color_withunderline {
    color: var(--color-accent);
}
.title_accent_color_withunderline::before {
    /* background-color: var(--shell-gray-light1); */
    height: 9px;
    background-color: white;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
    /* display: none; */
}

.info_white_box {
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
    background-color: white;
}

.accent_button_event {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: white;
}
.accent_button_event:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.accent_button_event:hover {
    border-color: var(--color-accent-active);
    background-color: var(--color-accent-active);
    color: white;
}
.accent_button_event:active {
    border-color: var(--shell-gray-dark);
    background-color: var(--shell-gray-dark);
    color: white;
}

.accent_link_event:link {
    color: var(--shell-text-color);
    text-decoration: underline;
    font-weight: 500;
}
.accent_link_event:visited {
    color: var(--color-accent-visited);
    text-decoration: none;
}
.accent_link_event:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.accent_link_event:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
.accent_link_event:active {
    color: var(--color-accent-active);
    text-decoration: none;
}

.boxes_faq .accordion {
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
    background-color: white;
}
.boxes_faq .accordion-title-span {
    color: var(--shell-text-color);
}
.boxes_faq .accordion-title-icon .fa-solid.fa-plus {
    color: var(--color-accent);
}

.item_price_info::before {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
    background-color: white;
}

.custom-dialogs-dialogbox {
    background-color: white !important;
}

.custom-forms .input {
    background-color: var(--shell-gray-background);
    border-color: #eee;
}
.custom-forms .button-cancel,
.custom-forms .button-ok {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}
.custom-forms .button-cancel {
    background-color: white;
    color: var(--color-accent);
}
.custom-forms .button-cancel:hover,
.custom-forms .button-cancel:active,
.custom-forms .button-ok:hover,
.custom-forms .button-ok:active {
    background-color: var(--color-accent-active);
    border-color: var(--color-accent-active);
    color: white;
}

.form_user-input {
    border: solid 2px #eee;
    background-color: var(--shell-gray-background) !important;
    color: black important;
}
.form_user-ckeckbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}
.form_user-ckeckbox input {
    appearance: none;
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border: 2px solid #CCC;
    border-radius: 6px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
    text-align: center;
}
.form_user-ckeckbox input:hover {
    border-color: var(--shell-gray-dark);
    background-color: var(--shell-gray-background);
}
.form_user-ckeckbox input:checked {
    border-color: var(--shell-gray-dark);
    background-color: var(--shell-gray-background);
}
.form_user-ckeckbox input:checked::after {
    display: block;
    width: 100%;
    content: '✓';
    color: var(--shell-gray-dark);
    font-size: 1.3rem;
    line-height: 100%;
    font-weight: 900;
}
.form_user-ckeckbox input:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}

.step-balls div p,
.step-balls div hr {
    border-color: var(--shell-gray-light1);
}
.step-balls div span {
    color: #999;
}
.step-balls div.active p,
.step-balls div.active hr {
    border-color: var(--color-accent);
}
.step-balls div.active span {
    color: black;
}

.site_footer_links .accent_link_event:link {
    color: black;
    text-decoration: none;
}
.site_footer_links .accent_link_event:visited {
    color: var(--color-accent-visited);
    text-decoration: none;
}
.site_footer_links .accent_link_event:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.site_footer_links .accent_link_event:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
.site_footer_links .accent_link_event:active {
    color: var(--color-accent-active);
    text-decoration: none;
}

.site_footer_social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
}
.site_footer_social-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    transition: all 0.3s ease-out;
    text-decoration: none;
}
.site_footer_social-button:link {
    background-color: white;
}
.site_footer_social-button:visited i.fa-brands {
    color: var(--color-accent-visited);
}
.site_footer_social-button:focus {
    outline: 1px dashed black !important;
}
.site_footer_social-button:hover {
    background-color: var(--shell-red);
}
.site_footer_social-button:hover i.fa-brands {
    color: white;
}
.site_footer_social-button:active {
    background-color: var(--shell-gray-dark);
}
.site_footer_social-button:active i.fa-brands {
    color: white;
}
.site_footer_social-button i.fa-brands {
    font-size: 1.2rem;
    color: var(--shell-text-color);
}
@media screen and (max-width: 768px) {
    .site_footer_social {
        justify-content: center;
    }
}

.site_footer_75years:focus {
    outline: 1px dashed black !important;
    outline-offset: 8px;
    border-radius: 2px;
}

.accent_link_event.shell_link:link {
    color: var(--color-accent);
    text-decoration: none;
}
.accent_link_event.shell_link:visited {
    color: var(--color-accent-visited);
    text-decoration: none;
}
.accent_link_event.shell_link:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.accent_link_event.shell_link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
.accent_link_event.shell_link:active {
    color: var(--color-accent-active);
    text-decoration: none;
}

.swiper-pagination-bullet {
    transition: all 0.3s ease-out;
}
.swiper-pagination-bullet:focus,
.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.swiper-play-pause {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
}
.swiper-play-pause:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
}
.swiper-play-pause:active {
    transform: scale(0.95);
}

.swiper-slide picture {
    aspect-ratio: 1800/626;
}
@media (orientation: portrait) {
    .swiper-slide picture {
        aspect-ratio: 470/800;
    }
}

.dashboard_mycodes_box {
    display: block;
    width: 100%;
}

.dashboard_mycodes {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    padding: 50px 0 25px;
}
@media screen and (max-width: 720px) {
    .dashboard_mycodes {
        grid-template-columns: 1fr;
    }
}
.dashboard_mycodes_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    justify-content: center;
    gap: 25px;
    width: 100%;
}
.dashboard_mycodes_ticket {
    position: relative;
    display: block;
    justify-self: center;
    width: 190px;
    padding: 12px 0;
    background-color: var(--color-accent);
    border-radius: 7px;
    color: white;
}
.dashboard_mycodes_ticket:hover,
.dashboard_mycodes_ticket:focus,
.dashboard_mycodes_ticket:active {
    background-color: var(--color-accent-active);
}
.dashboard_mycodes_ticket:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.dashboard_mycodes_ticket p {
    margin: 0;
    padding: 0;
}
.dashboard_mycodes_ticket .ticket_num {
    font-size: 1rem;
    line-height: 100%;
    text-align: center;
    font-weight: 500;
}
.dashboard_mycodes_ticket .ticket_inf {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--shell-gray-light1);
    width: 160px;
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
    visibility: hidden;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    border: solid 3px white;
    margin-top: 8px;
    opacity: 0;
    z-index: 10;
}
.dashboard_mycodes_ticket .ticket_inf::after {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: white;
    content: "";
}
.dashboard_mycodes_ticket:hover .ticket_inf,
.dashboard_mycodes_ticket:active .ticket_inf,
.dashboard_mycodes_ticket:focus .ticket_inf {
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
}
.dashboard_mycodes_ticket .ticket_inf strong,
.dashboard_mycodes_ticket .ticket_inf span {
    display: block;
    width: 100%;
    margin: 2px 0;
    font-size: 0.8rem;
    line-height: 110%p;
    color: var(--shell-text-color);
    text-align: center;
    text-wrap: wrap;
}
.dashboard_mycodes_ticket .ticket_inf strong {
    margin-bottom: 6px;
    font-weight: 550;
}
.dashboard_mycodes_ticket .ticket_inf span {
    font-weight: 500;
}
.dashboard_mycodes_count {
    display: block;
    padding: 25px;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
    background-color: white;
    border-radius: 12px;
}
.dashboard_mycodes_count p {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 140%;
    font-weight: 500;
    text-align: center;
}
.dashboard_mycodes_updated {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 140%;
    text-align: center;
}

.homehero_boxinfo {
    position: relative;
    top: -30px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    border-radius: 15px;
    background-color: white;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
    z-index: 100;
}
.homehero_boxinfo h1 {
    color: var(--color-accent);
}
.homehero_boxinfo-content {
    padding: 40px;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: white;
}
.swiper-button-prev i.fa-solid,
.swiper-button-next i.fa-solid {
    color: var(--color-accent);
}
.swiper-button-prev:hover,
.swiper-button-prev:active,
.swiper-button-next:hover,
.swiper-button-next:active {
    background-color: var(--color-accent-active);
}
.swiper-button-prev:hover i.fa-solid,
.swiper-button-prev:active i.fa-solid,
.swiper-button-next:hover i.fa-solid,
.swiper-button-next:active i.fa-solid {
    color: white;
}

.accordion-content-inner p {
    margin: 14px 0 0;
    line-height: 150%;
}

.nav_mobile_button,
.nav_mobile_close_button {
    background-color: var(--color-accent);
    border-radius: 6px;
}
.nav_mobile_button i.fa-solid,
.nav_mobile_close_button i.fa-solid {
    color: white;
}

.mobile_button_signin,
.mobile_button_signup {
    border: solid 2px var(--color-accent);
    background-color: var(--color-accent);
    color: white;
}
.mobile_button_signup {
    background-color: white;
    color: var(--color-accent);
}
.mobile_button_signin:hover,
.mobile_button_signin:active,
.mobile_button_signup:hover,
.mobile_button_signup:active {
    border-color: var(--color-accent-active);
    background-color: var(--color-accent-active);
    color: white;
}

.questions_list {
    max-width: 100%;
}
.questions_list-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
    overflow: hidden;
}
.questions_list-item:last-child {
    margin-bottom: 0;
}
.questions_list-item-question {
    margin: 0;
    background: white;
    transition: background-color 0.2s ease;
}
.questions_list-item-question-button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}
.questions_list-item-question-button:focus {
    outline: 1px dashed black !important;
    outline-offset: -5px;
    border-radius: 10px;
    color: var(--color-accent);
}
.questions_list-item-question-button:hover {
    color: var(--color-accent);
}
.questions_list-item-question-button:focus .questions_list-item-question-title,
.questions_list-item-question-button:hover .questions_list-item-question-title {
    text-decoration: underline;
}
.questions_list-item-question-button:active .questions_list-item-question-title {
    color: var(--color-accent-active);
}
.questions_list-item-question-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 50%;
    background-color: transparent;
    border: solid 2px var(--color-accent);
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
}
.questions_list-item-question:has(> .questions_list-item-question-button[aria-expanded="true"]) .questions_list-item-question-title {
    color: var(--color-accent);
}
.questions_list-item-question:has(> .questions_list-item-question-button[aria-expanded="true"]) .questions_list-item-question-icon {
    background-color: var(--color-accent);
    color: white;
}
.questions_list-item-question-button:hover .questions_list-item-question-icon {
    transform: scale(1.1);
    text-decoration: none;
}
.questions_list-item-answer {
    display: none;
    padding: 10px 25px 25px;
}
.questions_list-item.open .questions_list-item-answer {
    display: block;
}
.questions_list-item-answer p {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 140% !important;
}
.questions_list-item-answer p:last-child {
    margin-bottom: 0;
}
.questions_list-item-answer a:link {
    color: var(--color-accent);
    text-decoration: none;
}
.questions_list-item-answer a:visited {
    color: var(--color-accent-visited);
    text-decoration: underline;
}
.questions_list-item-answer a:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.questions_list-item-answer a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
.questions_list-item-answer a:active {
    color: var(--color-accent-active);
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    .questions_list-item-question-icon {
        transition: none;
    }
}

.login-form .input:focus,
.login-form .btn:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.login-form .input:focus {
    border-color: #999;
}
.login-form .btn_home_signin:hover,
.login-form .btn_home_signup:hover {
    border-color: var(--color-accent-active);
    background-color: var(--color-accent-active);
}
.login-form .btn_home_signin:active,
.login-form .btn_home_signup:active {
    border-color: var(--shell-button-hover-gray);
    background-color: var(--shell-button-hover-gray);
}

.mechanics-content {
    max-width: 1200px;
    margin: 80px auto;
}
.mechanics-content section {
    margin-bottom: 80px;
    text-align: center;
}
.mechanics-content section:last-child {
    margin-bottom: 0;
}
.mechanics-content h1 {
    margin-bottom: 20px;
    font-size: 2.6rem !important;
    color: var(--color-accent);
}
.mechanics-content h2 {
    margin-bottom: 20px;
    font-size: 2rem !important;
    color: var(--color-accent);
}
.mechanics-content p {
    max-width: 800px;
    margin: 0 auto 14px;
    font-size: 1.2rem;
}
.mechanics-whitebox {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 25px;
    background-color: white;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
    border-radius: 14px;
    text-align: left;
}
.mechanics-whitebox p {
    margin: 0 0 10px;
    line-height: 140%;
}
.mechanics-whitebox strong {
    font-family: Shell,Futura,"Futura Std",sans-serif;
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 600;
}
.mechanics-whitebox img {
    max-width: 100% !important;
    height: auto;
    margin: 10px auto 35px;
}
.mechanics-whitebox button {
    margin-top: 20px;
    padding: 12px 0;
    width: 130px;
    border: solid 2px var(--color-accent);
    background-color: white;
    border-radius: 8px;
    font-size: 1.2rem;
    line-height: 120%;
    color: var(--color-accent);
    text-align: center;
}
.mechanics-whitebox button:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.mechanics-whitebox button:hover {
    border-color: var(--color-accent-active);
    background-color: var(--color-accent-active);
    color: white;
}
.mechanics-whitebox button:active {
    border-color: var(--shell-button-hover-gray);
    background-color: var(--shell-button-hover-gray);
    color: white;
}
.mechanics-whitebox button i,
.mechanics-whitebox button span {
    display: inline-block;
}
.mechanics-whitebox button i {
    margin-right: 5px;
    font-size: 1.2rem !important;
    font-weight: 400;
}
.mechanics-whitebox button span {
    font-weight: 600;
}
@media screen and (max-width: 1068px) {
    .mechanics-content {
        margin-left: var(--shell-paddingLR);
        margin-right: var(--shell-paddingLR);
    }
}

.mechanics-steps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow-x: auto;
    padding: 5px 20px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
}
.mechanics-steps::-webkit-scrollbar {
    display: none;
}
.mechanics-stepitem {
    display: flex;
    flex-direction: column;
    align-items: left;
    flex: 0 0 320px;
    width: 320px;
    margin: 0 10px;
    background: white;
    border-radius: 14px;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
    padding: 30px 25px;
    box-sizing: border-box;
    text-align: left;
}
.mechanics-stepitem p {
    margin: 14px 0 0 0;
    font-size: 1.1rem;
    line-height: 140%;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphenate-limit-chars: 6 3 2;
}
.mechanics-stepitem .number {
    margin: 0;
    font-size: 6rem;
    line-height: 120%;
    text-align: left;
    font-weight: 700;
}
.mechanics-stepitem .title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 600;
}
.mechanics-stepitem-hint {
    display: none;
    padding: 10px 0 0;
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 120%;
    color: #999;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .mechanics-steps {
        justify-content: flex-start;
        padding: 15px 20px;
    }
    .mechanics-stepitem {
        flex: 0 0 calc(100vw - 90px);
        width: calc(100vw - 90px);
        margin: 0 8px;
        min-width: 250px;
        max-width: 320px;
    }
    .mechanics-stepitem-hint {
        display: block;
    }
}

.mechanics-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mechanics-modal.isopen {
    opacity: 1;
    visibility: visible;
}
.mechanics-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.mechanics-modal-scroll {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow-y: auto;
    overflow-x: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
}
.mechanics-modal-scroll::-webkit-scrollbar {
    width: 8px;
}
.mechanics-modal-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.mechanics-modal-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.mechanics-modal-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.mechanics-modal.isopen .mechanics-modal-scroll {
    transform: scale(1);
}
.mechanics-modal-content {
    padding: 2rem;
    padding-top: 0;
    position: relative;
}
.mechanics-modal-close {
    position: sticky;
    top: 12px;
    right: 10px;
    z-index: 1001;
    background: white;
    border: solid 2px var(--color-accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-accent);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    margin-left: auto;
    margin-right: 10px;
    margin-top: 10px;
}
.mechanics-modal-close:focus {
    outline: 1px dashed black !important;
    outline-offset: 4px;
    border-radius: 2px;
}
.mechanics-modal-close:hover {
    background: var(--color-accent-active);
    border-color: var(--color-accent-active);
    color: white;
    transform: scale(1.1);
}
.mechanics-modal-close:active {
    background: var(--shell-button-hover-gray);
    border-color: var(--shell-button-hover-gray);
    color: white;
    transform: scale(1.1);
}
body.mechanics-modal-open {
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .mechanics-modal-scroll {
        width: 95%;
        max-height: 95vh;
        margin: 0 auto;
    }
    .mechanics-modal-content {
        padding: 1.5rem;
        padding-top: 1.5rem;
    }
    .mechanics-modal-close {
        width: 36px;
        height: 36px;
    }
}

.mechanics-modal-content .title,
.mechanics-modal-content .date {
    margin: 0;
    line-height: 120%;
}
.mechanics-modal-content .title {
    margin: 0 0 6px;
    font-size: 8rem;
    line-height: 120%;
    color: var(--color-accent);
}
.mechanics-modal-content .date {
    font-size: 1.2rem;
    font-weight: 500;
}
.mechanics-modal-content .block {
    padding: 25px 30px;
    margin-top: 25px;
    background-color: #F0F0F0;
    border-radius: 16px;
}
.mechanics-modal-content h3 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 140%;
    color: var(--color-accent);
}
.mechanics-modal-content p {
    margin-bottom: 1rem;
    line-height: 150%;
    color: var(--shell-text-color);
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-spacing: -1px;
}
.mechanics-modal-content p:last-child {
    margin-bottom: 0;
}
.mechanics-modal-content .photo {
    width: 100%;
    height: auto;
    margin: 25px 0;
    border-radius: 16px;
}

.home_promoname {
    font-size: 2.6rem;
    line-height: 95% !important;
    text-align: center;
}
.home_promoname span {
    margin: 0;
}
.home_promoname .formula {
    font-size: 1.35em;
}
.home_promoname .brand {
    font-size: 1.2em;
}
.home_promoname .text-small {
    font-size: 0.8em;
}
.home_promoname .text-sup {
    vertical-align: super;
}
@media screen and (max-width: 540px) {
    .home_promoname {
        font-size: 2rem;
        line-height: 120% !important;
    }
}

.aside_section,
.aside_section-desktop,
.aside_section-mobile {
    width: 100%;
    overflow: hidden;
}
.aside_section-desktop {
    position: relative;
    display: block;
    height: 100vh;
    background: url(../aside-banner/aside-image-background-desktop.jpg) top center no-repeat;
    background-size: 100% auto;
}
.aside_section-desktop .desktop-logos-cont {
    position: absolute;
    top: 135px;
    left: 0;
    overflow: hidden;
    width: 100%;
}
.aside_section-desktop .desktop-logos,
.aside_section-desktop .desktop-vip {
    width: 100%;
}
.aside_section-desktop .desktop-vip {
    margin-top: 30px;
}
.aside_section-desktop .desktop-logos img,
.aside_section-desktop .desktop-vip img,
.aside_section-mobile img{
    width: 100%;
    height: auto;
}
.aside_section-desktop .desktop-logos img {
    margin: 0 auto 0;
    width: 230px;
}
.aside_section-mobile {
    display: none;
}
@media screen and (max-width: 1260px) {
    .aside_section-desktop .desktop-logos img {
        width: 180px;
    }
}
@media screen and (max-width: 1024px) {
    .aside_section-desktop {
        display: none;
    }
    .aside_section-mobile {
        display: block;
    }
}
