* {
    outline: none;
}
html {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.h-shutter {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,.4);
}
.h-modal {
    width: 500px;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    color: black;
    box-shadow: 0px 5px 30px 0px rgba(0,0,0,.5);
}
.h-modal-header {
    font-size: 32px;
    font-weight: 500;
    color: black;
    text-align: center;
}
.input-error {
    background-color: rgba(255,0,0,.1)!important;
}
.select-error,
.radio-error {
    box-shadow: 0px 0px 4px red
}
.h-flex {
    display: flex!important;
    align-items: center!important;
}
.h-flex-col {
    display: flex!important;
    flex-direction: column!important;
}
.h-flex-row {
    display: flex!important;
    flex-direction: row!important;
}
.h-space-between {
    justify-content: space-between;
}
.h-ac {
    align-items: center!important;
}
.h-relative {
    position: relative;
}
.h-error {
    color: red;
}
.h-spinner {
    width: 30px;
    height: 30px;
}
.h-button {
    display: inline-block;
    text-align: center;
    padding: 10px 25px 13px 25px;
    border-radius: 50px;
    background-color: #0a9ccc;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition-property: background-color;
    transition-duration: .3s;
}
.h-button:hover {
    background-color: #2caeee;
}
.button-disabled {
    pointer-events: none;
    opacity: .5;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    color: var(--bde-body-text-color);
    font-weight: 300;
}
select::-ms-expand {
    display: none;
}
.h-mlauto {
    margin-left: auto;
}
.h-mtauto {
    margin-top: auto;
    align-self: flex-end;
}
.h-w100 {
    width: 100%;
}
.h-blurred {
    /* filter: blur(5px); */
    opacity: .2;
    pointer-events: none;
}
.hidden {
    display: none!important;
}
.h-outer {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.h-between {
    justify-content: space-between;
}
.h-acenter {
    align-items: center;
}
.h-a {
    text-decoration: none;
}
.language-selector {
    position: absolute;
    left: calc(50% - 180px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 360px;
    padding: 10px;
    background-color: #f6f6f6;
    border: 1px solid #999;
    border-radius: 5px;
}
.language-item {
    display: flex;
    justify-content: center;
    width: 130px;
    margin: 3px;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition-duration: .3s;
}
.language-item:hover {
    border-color: #999;
}
.language-item-selected {
    pointer-events: none;
    background-color: #f0f0f0;
}
.language-item-cancel {
    background-color: rgba(255,0,0,.1);
}
.h-register,
.h-whynz,
.h-choose,
.h-login-menu {
    cursor: pointer;
    text-decoration: none;
}
textarea {
    resize: none;
}
.h-white {
    color: white!important;
}
.h-flat-bottom {
    margin-bottom: 0;
}
.h-nope {
    pointer-events: none;
}
.bde-text-33-107 {
    position: relative;
    left: -10px;
}
.footer-links {
    display: flex;
    flex-flow: row wrap;
    gap: 12px;
}

.list-active {
    /* font-weight: bold; */
    text-decoration: underline;
    /* color: var(--bde-palette-color-1-4fc3d096-0d40-4bf4-9e85-3863697b3e9f) !important; */
}

button:disabled {
    pointer-events: none;
}