.tile {
    width: auto;
    max-width: 400px;
    height: fit-content;
    margin-bottom: 40px;
    padding: 24px;
    background-color: #ffffff;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 0px 0px 36px 0px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 0px 0px 36px 0px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 0px 0px 36px 0px;
}

.tile--small {
    height: fit-content;
    width: 280px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background-color: #ffffff;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 0px 0px 36px 0px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 0px 0px 36px 0px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 80px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
}

.tile--large {
    max-width: 800px;
}

.tile.tile-grey {
    border: none;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 6px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 6px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 6px;
    background: var(--benu-anti-flash-white);
}

.tile.tile-border {
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: #afbed4;
}

.tile.tile-green {
    background-color: #eef9e5;
    border: none;
}

.tile--small.tile-shadow,
.tile.tile-shadow {
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 8px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 8px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 3px 12px 0px rgba(92, 119, 162, 0.25);
}

.spacer {
    height: 1px;
    background-color: #d7dee9;
}

input {
    width: 100%;
    height: 35px;
    border: 0px;
    padding: 0px;
    margin: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    float: left;
    color: var(--benu-checkbox-border);
}

input:focus {
    border: 0px;
    outline: none;
    color: var(--benu-royal-blue);
}

input[type='password'] {
    font-family: Verdana;
    font-size: 1.25em;
}

.benu-input {
    height: 56px;
    outline: 1px solid var(--benu-checkbox-border);
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: var(--benu-input-border-radius);
    /* Firefox 1-3.6 */
    -moz-border-radius: var(--benu-input-border-radius);
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: var(--benu-input-border-radius);
    margin-top: 4px;
    padding: 12px 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    display: flex;
    font-size: 16px;
}

.country-code {
    border: none;
    margin-right: 5px;
    background-color: transparent;
    color: var(--benu-royal-blue);
}

/* Chrome, Safari, Edge, Opera */
#validation-code-input::-webkit-outer-spin-button,
#validation-code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.user-lock-close-button {
    float: right;
    display: inline-block;
    padding: 2px 5px;
    background: none;
    border: none !important;
}

.btn-close-alert {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    border: none;
    background: none;
    margin-right: 10px;
    margin-top: 10px;
}

.btn-close-icon {
    font-weight: 400;
    font-size: 24px;
    color: var(--benu-checkbox-border);
}

/* Popup */

.popup {
    z-index: 99;
    display: none;
    position: fixed;
    background-color: white;
    color: var(--benu-heading-color);
    padding: 30px 40px;
    left: 50%;
    top: 50%;
    overflow-y: auto;
    text-align: left;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: var(--benu-popup-border-radius);
    /* Firefox 1-3.6 */
    -moz-border-radius: var(--benu-popup-border-radius);
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: var(--benu-popup-border-radius);
    transform: translate(-50%, -50%);
}

.popup h2 {
    text-align: center;
}

.popup span {
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
}

/* Popup */

input::-ms-reveal,
input::-ms-clear {
    display: none;
}
