﻿@font-face {
    font-family: 'RobotoCondensed';
    src: url(res/fonts/RobotoCondensed-VariableFont_wght.ttf);
}

:root {
    --iozer-color: #104f75;
}

html {
    height: 100%;
}

body {
    font-family: 'RobotoCondensed', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    min-height: 100%;
}

h1 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 4em;
    font-weight: 400;
    text-align: center;
    color: var(--iozer-color);
}

h1:first-child {
    margin-top: 0px;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 3em;
    font-weight: 200;
    text-align: center;
    color: var(--iozer-color);
}

a, a:active {
    text-decoration: underline;
    color: #000000;
}

a:hover {
    text-decoration: underline;
    color: #0a6aa1;
}

p {
    text-align: justify;
    line-height: 170%;
}

.hidden {
    display: none;
}

.highlight {
    font-size: 1.5em;
    text-align: center;
    line-height: 130%;
}

#ajax_loader {
    display: none;
}

.ajax_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.ajax_loader img {
    width: 50px;
    height: 50px;
}
 #logo {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
     max-width: 300px;
     width: 80%;
 }

 #logo img {
     width: 100%;
     filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
     animation: breathing 5s ease-out infinite normal;
 }

@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

}

#copyright {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 95%;
    text-align: center;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 0.8em;
}

#copyright a, #copyright a:active, #copyright a:hover {
    color: #ffffff !important;
    text-decoration: none;
}




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

#pagehead {
    height: 70px;
    background-color: var(--iozer-color);
    position: fixed;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgba(0,0,0,.3);
    transition: all 0.3s ease;
}

#pagehead_content {
    position: relative;
    width: 100%;
    /*max-width: 1200px;*/
    padding: 0px 25px;
    height: 100%;
    margin: auto;
    box-sizing: border-box;
}

#pagehead_logo {
    position: absolute;        
    top: calc(50% + 2px);
    transform: translateY(-50%);
}

#pagehead_logo img {
    height: 34px;
}

#pagehead_menu {
    position: absolute;    
    right: 25px;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6em;
    font-weight: lighter;
    color: #ffffff;
}

.pagehead_menu_item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
    line-height: 1;
    vertical-align: top;
    cursor: pointer;
}

.pagehead_menu_item:hover, .pagehead_menu_item_selected {
    background-color: #0e4466;
}

.pagehead_menu_item svg {
    width: 20px;
    height: 20px;    
    transition-duration: 0.5s;
    transition-property: transform;       
}

.pagehead_menu_item_selected svg {
    transform: rotate(-180deg); 
}

.pagehead_menu_item img {
    height: 30px;
    display: block;
    filter: invert(1);
}

.pagehead_menu_dropdown {
    position: fixed;
    top: 70px;
    left: 0px;
    right: 0px;
    max-height: 0;
    background-color: #005275;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);    
    z-index: 1000;
    text-align: center;
    transition: max-height 0.25s ease-out;
}

.pagehead_menu_dropdown_selected {
    max-height: 500px;
}

.pagehead_menu_dropdown_selected .pagehead_menu_dropdown_item {
    visibility: visible;
    opacity: 1;
}

.pagehead_menu_dropdown_item {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 300px;
    margin: 30px;
    background-color: #292929;  
    cursor: pointer;   
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-out;
}

.pagehead_menu_dropdown_item:hover {
    background-color: #3d3d3d;
}

.pagehead_menu_dropdown_item_img {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);      
}

.pagehead_menu_dropdown_item_img img {
    max-width: 100%;
    max-height: 100%;    
}

.pagehead_menu_dropdown_item_label {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;;
    height: 40px;
    background-color: #000000;
    padding: 7px;
    opacity: 0.5;
    text-align: center;
    color: #ffffff;
}

.pagehead_user_dropdown {
    left: auto;
    right: 25px;
    top: 70px;
    width: 310px;
    max-height: 0;
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
    text-align: left;
}

.pagehead_user_dropdown.pagehead_menu_dropdown_selected {
    max-height: 360px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pagehead_language_button {
    gap: 4px;
}

.pagehead_language_button span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.pagehead_language_dropdown {
    left: auto;
    right: 25px;
    top: 70px;
    width: 250px;
    max-height: 0;
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
    text-align: left;
}

.pagehead_language_dropdown.pagehead_menu_dropdown_selected {
    max-height: 220px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.language-menu-panel {
    display: grid;
    background: #fdfdfd;
    border: 1px solid #d9e0e4;
}

.language-menu-panel a {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    color: #1f2933;
    text-decoration: none;
}

.language-menu-panel a + a {
    border-top: 1px solid #e7ecef;
}

.language-menu-panel a:hover,
.language-menu-panel a.is-active {
    background: #eef6fa;
    color: #005275;
}

.language-menu-panel span {
    font-weight: 700;
}

.user-menu-panel {
    margin-top: 0px;
    overflow: hidden;
    background-color: #fdfdfd;
    border: 1px solid #d9e0e4;
    /*border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);*/
    box-shadow: none;
}

.user-menu-identity {
    padding: 14px 16px;
    border-bottom: 1px solid #e7ecef;
}

.user-menu-name {
    overflow: hidden;
    color: #1f2933;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-client {
    overflow: hidden;
    margin-top: 3px;
    color: #65717a;
    font-size: 0.9rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-action,
.user-menu-action:active {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    color: #1f2933;
    text-decoration: none;
    user-select: none;
}

.user-menu-action:not(:first-child) {
    border-top: 1px solid #edf1f3;
}

.user-menu-action:hover {
    color: #1f2933;
    background-color: #f3f6f8;
    text-decoration: none;
}

.user-menu-action img {
    width: 22px;
    height: 22px;
    filter: none;
}


#pagehead_hamburger {
    position: absolute;
    right: 20px;
    top: 16px;
    visibility: hidden;
}

#pagehead_hamburger img {
    height: 40px;
    opacity: 0.7;
    filter: invert(1);
}

#hamburger_close {
    display: none;
}


#pagebody {
    flex: 1 0 auto;
    width: 100%;
    padding-top: 70px;
    /*padding-bottom: 105px;*/
}

#pagefooter {
    flex-shrink: 0;
    /*position: absolute;
    bottom: 0;*/

    width: 100%;
    background-color: #4c4f5b;
    color: #ffffff;
    padding: 10px 20px 10px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

#pagefooter a, #pagefooter a:active {
    text-decoration: none;
    color: #ffffff;
}

#pagefooter a:hover {
    text-decoration: underline;
}

#pagefooter div:not(:last-child) {
    display: inline-block;
    padding: 0 10px 0 10px;
    text-align: left;
}

#pagefooter div:not(:last-child) {
    border-right: 1px solid #ffffff;
}

#pagefooter_sm img {
    max-width: 32px;
    max-height: 32px;     
    filter:invert(1);   
}

#pagefooter_contact img{
    max-width: 16px;
    max-height: 16px;
    filter:invert(1);
}

.footer_logo {
    height: 40px;    
    vertical-align: bottom;    
}

.pagefooter_copyright {    
    font-size: 0.8em;
    margin-top: 10px;
}

@media screen and (max-width: 850px) {
    #pagefooter div {
        display: block;
        padding-bottom: 10px;
        text-align: center;
    }

    #pagefooter div:not(:last-child) {
        border-right: 0;
    }
    
}

.section {
    position: relative;    
    width: 100%;
}

.section_inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    margin: auto;
}

.section_halfs {
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
    vertical-align: middle;
    padding: 10px;
}

.section_halfs img, .section_halfs video {
    max-width: calc(100% - 10px);
    margin: 5px;
    border-radius: 6px;
}

.section_thirds {
    display: inline-block;
    width: 33.3%;
    box-sizing: border-box;
    vertical-align: top;
    padding-right: 20px;
}

.section_thirds img {
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.section_image, .section_content {
    display: inline-block;
    box-sizing: border-box;
}

.section_image {
    width: 70px;
    margin-right: 30px;
    padding-top: 30px;
    vertical-align: top;
}

.section_image img {
    max-width: 100%;
}

.section_content {
    width: calc(100% - 100px);
}

#hamburger_menu {
    position: fixed;
    display: none;

    background-color: #4c4f5b;
    top: 70px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    z-index: 1000;
    overflow-y: auto;
    box-sizing: border-box;
    padding-bottom: 84px;
}

.hamburger_menu_item {
    position: relative;
    padding: 20px 30px 20px 20px;
    font-size: 1.5em;
    color: #ffffff;
    font-weight: 300;
    user-select: none;
}

.hamburger_menu_item:hover,
.hamburger_menu_item_selected {
    background-color: #0c3a57;
}

.hamburger_menu_item:not(:first-child) {
    border-top: 1px solid #ececec;
}

.hamburger_menu_item:last-child {
    border-bottom: 1px solid #ececec;
}

.hamburger_menu_item_arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger_menu_item_arrow svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    transition-duration: 0.5s;
    transition-property: transform;
}

.hamburger_menu_item_selected {
    font-weight: 600;
}

.hamburger_menu_item_selected .hamburger_menu_item_arrow svg {
    transform: rotate(-180deg);
}

.hamburger_menu_item img {
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
    filter: invert(1);
}

.hamburger_menu_dropdown {
    max-height: 0;
    transition: max-height 0.25s;
}

.hamburger_menu_dropdown_selected {
    max-height: 500px;
}

.hamburger_menu_dropdown_selected .hamburger_menu_dropdown_item {
    opacity: 1;
    visibility: visible;
}

.hamburger_menu_dropdown_item_label img {
    max-height: 25px;
}

.hamburger_menu_dropdown_item {
    position: relative;
    padding: 20px 30px 20px 30px;
    font-size: 1.5em;
    color: #ffffff;
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-out;
    
}

.hamburger_language_dropdown {
    overflow: hidden;
    background-color: #41444f;
}

.hamburger_language_option,
.hamburger_language_option:link,
.hamburger_language_option:visited,
.hamburger_language_option:hover,
.hamburger_language_option:focus,
.hamburger_language_option:active {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    width: 100%;
    padding: 18px 30px 18px 40px;
    border-top: 1px solid rgba(236, 236, 236, 0.72);
    color: #ffffff;
    text-decoration: none;
}

.hamburger_language_option:hover,
.hamburger_language_option:focus,
.hamburger_language_option:active {
    color: #ffffff;
    text-decoration: none;
}

.hamburger_language_option:hover,
.hamburger_language_option.is-active {
    background-color: #0c3a57;
}

.hamburger_language_option.is-active {
    font-weight: 600;
}

.hamburger_language_option img {
    display: block;
    flex: 0 0 auto;
    height: 30px;
    filter: invert(1);
}

.hamburger_language_option b {
    display: inline-block;
    min-width: 32px;
}

.hamburger_user_menu {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 10px 12px 10px 20px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background-color: #4c4f5b;
    color: #ffffff;
    box-sizing: border-box;
    user-select: none;
}

.hamburger_user_identity {
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 12px;
}

.hamburger_user_name,
.hamburger_user_client {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hamburger_user_name {
    font-size: 1.1rem;
    font-weight: 700;
}

.hamburger_user_client {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.hamburger_user_icon,
.hamburger_user_icon:active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    height: 44px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hamburger_user_icon:hover {
    background-color: var(--iozer-color);
}

.hamburger_user_icon img,
.hamburger_user_menu_guest img {
    height: 28px;
    margin: 0;
    filter: invert(1);
}

.hamburger_user_menu_guest {
    justify-content: center;
    gap: 14px;
    padding-left: 12px;
}

.hamburger_user_menu_guest a,
.hamburger_user_menu_guest a:active {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
}

.hamburger_user_menu_guest a:not(:first-child) {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

#dialog_overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #4c4f5b;
    opacity: 0.5;
    z-index: 1001;
}

#privacy_dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100vw - 32px);
    max-width: 600px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    padding: 15px;
    box-sizing: border-box;
    overflow: auto;
    background-color: #ffffff;
    border-radius: 5px;
    z-index: 1002;
    text-align: center;
}

#privacy_dialog h1 {
    font-size: 3em;
}

#privacy_dialog button {
    outline: 0;
    border: 0;
    color: #ffffff;
    padding: 10px 30px 10px 30px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 80%;
}

#privacy_dialog_accept_all {
    background-color: #008f00;
}

#privacy_dialog_save {
    background-color: #b2b2b2;
}

#info_dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 600px;
    width: 80%;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    z-index: 1002;
    text-align: center;
}

#info_dialog button {
    outline: 0;
    border: 0;
    color: #ffffff;
    padding: 10px 30px 10px 30px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 80%;
    background-color: #0078ad;
}

#info_dialog p {
    text-align: center;
}

@media screen and (max-width: 850px) {
    h1 {
        font-size: 2.0em;
    }

    h2 {
        font-size: 2em;
    }

    .section_halfs {
        display: block;
        width: 100%;
    }

    .section_thirds {
        display: block;
        width: 100%;
    }

    #pagehead_logo img {
        height: 35px;
    }

    #pagehead_menu {
        visibility: hidden;
    }

    #pagehead_hamburger {
        visibility: visible;
    }

    #pagehead_content {
        width: 100%;
        padding: 0 20px 0 20px;
        box-sizing: border-box;
    }

    #privacy_dialog h1 {
        font-size: 1.65em;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }
}


input:not([type=checkbox]), textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    color: #000000;
    outline: 1px solid #b4b4b4;
    border-radius: 2px;
    border: 0;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

input[type=submit] {
    outline: 0;
    background-color: #0078ad;
    color: #ffffff;
    padding: 10px 30px 10px 30px;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
}

#submit_info {
    position: fixed;
    left: 0px;
    top: 80px;
    right: 0px;
    bottom: 0px;
    background-color: #f5f5f5;
    z-index: 1000;
}

#submit_info_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.1em;
    white-space: nowrap;
    text-align: center;
}
