@font-face {
    font-family: 'HelveticaGeo';
    src: url('./HelveticaGeo.otf');
}

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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    font-family: 'HelveticaGeo';
}

a {
    color: inherit;
}

input[type='checkbox'] {
    margin-right: 5px;
}

.logo-wrapper {
    margin-right: 15px;
    height: 100px;
    background-image: url('../images/logo2.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 150px;
}

.header {
    padding: 25px 0 50px;
    background-color: #ffffff;
    font-size: 14px;
}

.header .header-items-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 2%;
}

.header .header-items-wrapper .main-routes {
    display: flex;
    max-width: 890px;
    align-items: center;
    justify-content: end;
    width: 80%;
}

.header .header-items-wrapper .main-routes > a {
    color: #101010;
    margin-right: 15px;
    white-space: nowrap;

    transition: color 0.2s;
}

.header .header-items-wrapper .main-routes > a:hover {
    color: #0069b9;
}

.selected {
    color: #005697 !important;
}

.header .header-items-wrapper .login-register-wrapper {
    display: flex;
}

.header .header-items-wrapper .login-register-wrapper .login-link, .register-link {
    padding: 12px 16px;
    border: 1px solid #005697;
    border-radius: 6px;
	flex: 1;
	text-align: center;

    transition: border 0.4s, box-shadow 0.4s, background-color 0.4s, color 0.4s;
}

.header .header-items-wrapper .login-register-wrapper .login-link:hover, .register-link:hover {
    border: 1px solid #ffffff;
    box-shadow:0 0 0px 1px #f5821f;
    background-color: #f5821f;
    color: #ffffff;
}

.header .header-items-wrapper .login-register-wrapper .login-link {
    background-color: #ffffff;
    color: #005697;
    margin-right: 4px;
}


.register-link {
    background-color: #005697;
    color: #ffffff;
}

/* -------------------------------- */

.header .header-items-wrapper .main-routes > .user-nav-wrapper {
    position: relative;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper > .user-trigger {
    line-height: 26px;
    padding: 10px 10px;
    background-color: #005697;
    color: #ffffff;
    border-radius: 8px;

    transition: border 0.4s, border-radius 0.4s, background-color 0.4s;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper .user-nav-links {
    position: absolute;
    display: flex;
    right: 0;
    flex-direction: column;
    border-radius: 8px 0px 8px 8px;
    overflow: hidden;
    height: 0px;
    margin-top: 8px;
    z-index: 20;

    transition: height 1s;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper:hover .user-trigger {
    border-radius: 8px 8px 0px 0px;
    background-color: #0069b9;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper:hover .user-nav-links {
    height: 200px;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper .user-nav-links > a {
    background-color: #005697;
    line-height: 32px;
    padding: 0 15px;
    white-space: nowrap;
    margin: 0;
    color: #ffffff;

    transition: background-color 0.4s;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper .user-nav-links > a:first-child {
    padding-top: 5px;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper .user-nav-links > a:last-child {
    border-radius: 0 0 8px 8px;
    padding-bottom: 8px;
}

.header .header-items-wrapper .main-routes > .user-nav-wrapper .user-nav-links > a:hover {
    background-color: #f5821f;
}
/* -------------------------------- */

.header .header-items-wrapper .burger-trigger {
    display: none;
}

.header .header-items-wrapper .burger-trigger > div {
    background-color: #005697;
    width: 32px;
    height: 4px;
    border-radius: 5px;
    margin-bottom: 3px;
}

@media only screen and (max-width: 1080px) {
    .header {
        padding: 15px 0;
    }

    .header .header-items-wrapper .main-routes {
        display: none;
    }

    .header .header-items-wrapper .burger-trigger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
}
