
:root {
    --shell-red: #DD1D21;
    --shell-red-ligth: #EFD6DB;
    --shell-yellow: #FBCE07;
    --shell-button-hover-gray: #404040;
    --shell-gray-dark: #49473D;
    --shell-gray-medium: #6A6A6A;
    --shell-gray-light1: #D1D5DB;
    --shell-gray-light2: #E7E7E7;
    --shell-text-color: #404040;
}

html, body {
    scroll-behavior: smooth;
}

a, button {
    cursor: pointer !important;
}

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

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

.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(--shell-red);
}
.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(--shell-red);
}
.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-cancel {
    display: none;
    background-color: white;
    border-color: var(--shell-red);
    order: 0;
    color: var(--shell-red);
}
.custom-dialogs-button-ok {
    background-color: var(--shell-red);
    border-color: var(--shell-red);
    order: 1;
    color: white;
}
.custom-dialogs-button-cancel:hover,
.custom-dialogs-button-cancel:active {
    background-color: var(--shell-gray-light2);
    border-color: var(--shell-gray-light2);
    color: var(--shell-gray-dark);
}
.custom-dialogs-button-ok:hover,
.custom-dialogs-button-ok:active {
    background-color: var(--shell-button-hover-gray);
    border-color: var(--shell-button-hover-gray);
    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;
    }
}

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

/* button[data-mainprize-ele="button"].btn-text:disabled {
    opacity: 0.3;
    text-decoration: none;
    cursor: not-allowed !important;
} */

.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 a {
    display: block;
    font-size: 0.9rem;
    color: black;
    line-height: 120%;
    font-weight: 500;
    text-decoration: underline;
}
.dialog-extra-actions a:hover,
.dialog-extra-actions a:active {
    color: var(--shell-red);
    text-decoration: none;
}

.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 #CEA902;
}
.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;
    color: var( --shell-red);
    font-weight: 550;
}
.estaciones-box p {
    font-weight: 400;
}
.estaciones-box li.station-row {
    display: block;
    padding: 15px 5px;
    border-bottom: solid 1px #CEA902;
}
.estaciones-box .select {
    position: sticky;
    top: 115px;
    font-weight: 500;
    background-color: #FCE79F;
    border-color: #CEA902;
}
.estaciones-box .select:hover,
.estaciones-box .select:focus {
    background-color: #FEF6DA;
    border-color: #CEA902;
}
@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);
}

