:root {
    --color-island-green: #bbeae9;
    --color-focus:var(--color-island-green);
}
html {
    box-sizing: border-box;
    font-size: 16px;
}

body {
    box-sizing: inherit;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body, textarea, input {
    font-family: 'Lato','Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    color: black;
    background-color: white;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    @supports (overscroll-behavior: none) {
    overscroll-behavior: none;
    }
}

.fullSheetWidth{
    width: 100%;
    width: -webkit-fill-available;
    width: fill-available;
    max-width: 600px;
}

.halfSheetWidth{
    width: 100%;
    width: -webkit-fill-available;
    width: fill-available;
    max-width: 300px;
}

.regularPage{
    width: 100%;
    width: -webkit-fill-available;
    width: fill-available;
    max-width: 800px;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-bottom: 60px;
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    width: 100%;
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    box-sizing: border-box;
    line-height: 1.5;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

footer hr{
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

footer .separator{
    color: rgba(0, 0, 0, 0.13);
}

.copyright{
    text-align: right;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.56);
}

/* 
*/



/* Typography
****************************************************************************************************************/

@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('/s/fonts/lato-v24-latin-regular-e1b3b5908c9cf23dfb2b9c52b9a023ab.woff2') format('woff2');
  }
@font-face {
    font-display: swap; 
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('/s/fonts/lato-v24-latin-700-de69cf9e514df447d1b0bb16f49d2457.woff2') format('woff2');
  }
/* Headings */
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
    font-weight: 700;
}

h1{font-size: 2.5rem;}
h2{font-size: 2rem;}
h3{font-size: 1.75rem;}
h4{font-size: 1.5rem;}
h5{font-size: 1.25rem;}
h6{font-size: 1rem;}

.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;} 

a {
    color: darkblue;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.float-right{
    float: right;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.nowrap{
    white-space: nowrap;
}

/* Form and buttons
****************************************************************************************************************/

input[type="button"], input[type="submit"], button, .button {
    padding: 7px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 16px;
    font-weight: 700;
    background-color: #bbeae9;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: black;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

input[type="button"]:hover, input[type="submit"]:hover, button:hover, .button:hover {
    background-color: #78d5d3;
}

input[type="button"]:disabled, input[type="submit"]:disabled, button:disabled, .button:disabled {
    background-color: #f8f9fa;
    color: #dee2e6;
    cursor: not-allowed;
}

.form-flash:has(div) {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.message {
    background-color: #fff8d6;
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
}

.error{
    background-color: #f8d7da; /* #ffe6dd; */
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
}

.success{
    background-color: #d4edda; /* #c5e8a7; */
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
}

/* Form style A
****************************************************************************************************************/


.formStyleA input:-webkit-autofill, 
.formStyleA input:-webkit-autofill:hover, 
.formStyleA input:-webkit-autofill:focus, 
.formStyleA textarea:-webkit-autofill, 
.formStyleA textarea:-webkit-autofill:hover, 
.formStyleA textarea:-webkit-autofill:focus, 
.formStyleA select:-webkit-autofill, 
.formStyleA select:-webkit-autofill:hover, 
.formStyleA select:-webkit-autofill:focus {
    -webkit-text-fill-color: black;
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    transition: background-color 5000s ease-in-out 0s;
}

.formStyleA [multiple], .formStyleA [type=date], .formStyleA [type=email], .formStyleA [type=month], .formStyleA [type=number], .formStyleA [type=password], .formStyleA [type=search], .formStyleA [type=text], .formStyleA [type=time], .formStyleA [type=url], .formStyleA select, .formStyleA textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border-color: black;
    border-width: 1px;
    border-radius: 4px;
    border-style: solid;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
}

.formStyleA textarea {
    resize: vertical;
}

.formStyleA label { 
    font-size: 0.9rem !important;
    font-weight: 600;
    position: relative;
    top: 0.60rem;
    left: 0.75rem;
    background-color: #fff !important;
    padding: 0 0.25rem !important;
}

.formStyleA select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 18px 18px;
}

.formStyleA .error{
    color: red;
    font-size: 0.8rem;

    background-color: transparent;
    padding: 0;
}
.formStyleA .fieldError{
    border-color: red;
}

.hp{
    -webkit-user-select: none;
    user-select: none;
    position: absolute !important;

    left: -1px;
    top: -1px;
    clip: rect(1px, 1px, 1px, 1px);
    display: block;
}

/* Print
****************************************************************************************************************/

@media print{    
    .no-print, .no-print * {
        display: none !important;
    }
    
    @page{
	    size: A4 portrait;
    }
    
    body{
        width: 21cm !important;
        height: 29.7cm !important;
        margin: 0 !important; /*30mm 45mm 30mm 45mm*/
   	} 
}

/* Table style A
****************************************************************************************************************/

.tableStyleA {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.9rem;
}

.tableStyleA th, .tableStyleA td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.tableStyleA th {
    background-color: #f8f9fa;
    font-weight: 700;
}

.tableStyleA tr:nth-child(even) {
    background-color: #f8f9fa; /* eee */
}

.tableStyleA tr:hover {
    background-color: #e9ecef;
}

.tableStyleA td {
    vertical-align: top;
}

/* Footer
****************************************************************************************************************/


.footerTable{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.8rem;
}