:root {
    --gw-green: #05301A;
    --bg-color: #F6F6F0;
}

* {
    font-family: 'Inter', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
}

input,
button,
select,
textarea {
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--gw-green);
    color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    letter-spacing: 0.5px;
}

.w-100 {
    width: 100%;
}

.mw-100 {
    max-width: 100%;
}

.h-100 {
    height: 100%;
}

.h-100dvh {
    height: 100dvh;
}

.nom {
    margin: 0;
}

.m-b-10px {
    margin-bottom: 10px;
}

.h-auto-container {
    display: flex;
    flex-direction: column;
}

.h-auto-container .row {
    width: 100%;
}

.h-auto {
    flex: 1 1 auto;
}

.hidden {
    display: none;
}

input.browser-default {
    background-color: var(--bg-color);
    border: 1px solid white;
    border-radius: 0px;
    padding: 0px 12px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 32px;
    line-height: 32px;
}

input.browser-default:focus {
    outline: none;
    border-color: var(--gw-green);
}

select.browser-default {
    background-color: var(--bg-color);
    border: 1px solid white;
    border-radius: 0px;
    padding: 0px 12px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 32px;
    line-height: 32px;
}

select.browser-default:focus {
    outline: none;
    border-color: var(--gw-green);
}

[type="radio"]:checked+span:after {
    background-color: white;
    border: 2px solid white;
}

[type="radio"]:not(:checked)+span:before {
    border: 2px solid white;
}

.btn,
.btn-small,
.btn-large {
    text-transform: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
}

.btn {
    border-radius: calc(36px / 2);
}

.custom-swal-input {
    width: calc(100% - 4em);
    height: 60px !important;
    font-size: 18px;
}

.custom-swal-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);    
}

.spacer-10px {
    height: 10px;
}

.spacer-20px {
    height: 20px;
}

.spacer-40px {
    height: 40px;
}

.line-height-12px {
    line-height: 12px;
}