header {
    background-color: #fff
}

header {
    display: flex;
    justify-content: space-between;
    gap: 2rem
}

header .linkLogo {
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0)
}

.header-right {
    display: flex;
    text-transform: uppercase;
    font-family: robotomedium, Arial, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: .75rem;
    align-items: center;
    justify-content: right;
    gap: 1em
}

.headerNav {
    text-transform: uppercase;
    font-family: robotomedium, Arial, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: .75rem;
    align-items: center;
    display: flex
}

.headerLinkDiv {
    display: none
}

@media screen and (min-width: 60em) {
    .headerLinkDiv {
        padding: 0 2rem;
        display: flex
    }
}

.headerLink {
    padding: .5rem;
    text-decoration: none;
    color: #14162b;
    transition: all .2s ease;
    align-items: center;
    display: flex
}

.burgerDiv {
    background: #14162b;
    width: 7rem;
    height: 100%;
    display: grid
}

@media screen and (min-width: 60em) {
    .burgerDiv {
        display: none
    }
}

.burger {
    display: inline-block;
    border: 0;
    background: none;
    outline: 0;
    padding: 0;
    cursor: pointer;
    align-self: center;
    justify-self: center;
    border-bottom: 2px solid currentColor;
    width: 40px;
    color: #fff;
    transition: border-bottom 1s ease-in-out;
    -webkit-transition: border-bottom 1s ease-in-out
}

.burger::-moz-focus-inner {
    border: 0;
    padding: 0
}

.burger:before {
    content: "";
    display: block;
    border-bottom: 2px solid currentColor;
    width: 100%;
    margin-bottom: 5px;
    transition: transform .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out
}

.burger:after {
    content: "";
    display: block;
    border-bottom: 2px solid currentColor;
    width: 100%;
    margin-bottom: 5px;
    transition: transform .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out
}

.burger-check {
    display: none
}

.burger-check:checked ~ .sidePanel {
    right: 0
}

.burger-check:checked ~ .burger {
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transition: border-bottom .8s ease-in-out;
    -webkit-transition: border-bottom .8s ease-in-out
}

.burger-check:checked ~ .burger:before {
    transform: rotate(-405deg) translateY(1px) translateX(-3px);
    -webkit-transform: rotate(-405deg) translateY(1px) translateX(-3px);
    transition: transform .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out
}

.burger-check:checked ~ .burger:after {
    transform: rotate(405deg) translateY(-4px) translateX(-5px);
    -webkit-transform: rotate(405deg) translateY(-4px) translateX(-5px);
    transition: transform .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out
}

.sidePanel {
    height: 100%;
    width: 200px;
    background-color: #14162b;
    position: fixed;
    z-index: 1;
    overflow: auto;
    top: 0;
    right: -200px
}

.sidePanel nav {
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1em;
    margin: 1em
}

.sidePanel nav label.close {
    display: inline-block;
    border: 0;
    background: none;
    outline: 0;
    padding: 0;
    cursor: pointer;
    align-self: center
}

.sidePanel nav label.close .close-container {
    width: 50px;
    height: 50px
}

.sidePanel nav label.close .close-container .leftright {
    height: 4px;
    width: 50px;
    position: absolute;
    margin-top: 24px;
    background-color: #eee;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all .3s ease-in
}

.sidePanel nav label.close .close-container .rightleft {
    height: 4px;
    width: 50px;
    position: absolute;
    margin-top: 24px;
    background-color: #eee;
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: all .3s ease-in
}

.sidePanel nav label.close .close-container:hover .leftright {
    transform: rotate(-45deg);
    background-color: #00aeef
}

.sidePanel nav label.close .close-container:hover .rightleft {
    transform: rotate(45deg);
    background-color: #00aeef
}

.sidePanel a {
    color: #d9d9d9;
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    transition: all .2s ease
}

.sidePanel a:hover {
    color: #00aeef
}

.langswitch {
    align-items: center;
    padding: 0 1rem;
    position: relative;
    display: flex
}

.langswitch:before, .langswitch:after {
    content: "";
    height: 1rem;
    width: .08rem;
    background-color: #14162b;
    top: 50%;
    transform: translateY(-50%);
    position: absolute
}

.langswitch:before {
    left: 0
}

.langswitch:after {
    right: 0
}

@font-face {
    font-family: "robotomedium";

    src: url(/jakarta.faces.resource/font/roboto-medium-webfont.woff2.xhtml);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "robotobold";

    src: url(/jakarta.faces.resource/font/roboto-bold-webfont.woff2.xhtml);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "robotoregular";

    src: url(/jakarta.faces.resource/font/roboto-regular-webfont.woff2.xhtml);
    font-weight: normal;
    font-style: normal;
}

body {
    padding: 0;
    margin: 0;
    font-family: RC, sans-serif;
    background-color: #121e35;
}

h3 {
    font-family: robotobold;
    color: #00aeef;
}

p, label {
    font-family: robotomedium;
    color: #1a1a1a;
}
content h3 {
    font-size: 1.625rem;
    line-height: 1.3;
    font-family: robotobold;
    font-weight: normal;
}

@media screen and (min-width: 50em) {
    content h3 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

content {
    background: transparent url(/jakarta.faces.resource/img/soptim-bg-1.jpg.xhtml) repeat-x center 0;
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
}

#contentWrapper {
    background-color: #ffffff;
    color: #243446;
    padding: 40px 0;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 40px 5px #181616a6;
}

.content {
    margin: 0 50px;
    max-width: 1000px;
}

.emptyContent {
    height: 100px;
}

.info_container {
    background: #eeeeee;
    border-radius: 1em;
    padding: 1em;
    font-family: robotoregular;
    line-height: 1.6;
}

.inputContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    align-items: center;
    margin: 15px 0;
}

@media screen and (min-width: 50em) {
    .inputContainer {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        grid-gap: 10px;
        align-items: center;
        margin: 15px 0;
    }
}

.buttonContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100%;
    grid-gap: 10px;
    align-items: center;
    margin: 15px 0;
}

@media screen and (min-width: 50em) {
    .buttonContainer {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        grid-template-rows: 100%;
        grid-gap: 10px;
        align-items: center;
        margin: 15px 0;
    }
}

content .button {
    padding: .1875rem .625rem;
    border-radius: 3px;
    border-style: none;
    background-color: #00aeef;
    color: #fff;
    text-decoration: none;
    max-width: 200px;
    font-family: robotomedium;
    font-size: 1em;
    grid-column: 1;
    grid-row: 1;
}

@media screen and (min-width: 50em) {
    content .button {
        grid-column: 2 / 3;
        grid-row: 1;
    }
}

content .button:hover {
    background-color: #efefef;
    color: #00aeef;
    text-decoration: none;
}

content .passwordLinks {
    color: #00aeef;
    text-decoration: none;
    font-family: robotomedium;
    grid-column: 1;
    grid-row: 2;
}

@media screen and (min-width: 50em) {
    content .passwordLinks {
        grid-column: 2 / 3;
        grid-row: 2;
    }
}

form div label.ownLabel {
    text-align: right;
    font-family: robotomedium;
    color: #1a1a1a;
}

content div input.input_field {
    color: #495057;
    background: #ffffff;
    padding: 0.5rem 0.5rem;
    border: 1px solid #ced4da;
    outline: 0 none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

content div input.input_field:hover {
    border-color: #2196f3;
}

content div input.input_field:focus {
    border-color: #2196f3;
    outline: 0 none;
    box-shadow: 0 0 0 0.2em #a6d5fa;
}
footer {
    border-top: .5rem solid #e74890;
    background-color: rgb(20, 22, 43);
    text-align: left;
    background-image: url(/jakarta.faces.resource/img/footer-bg-1.png.xhtml);
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: repeat-x;
    background-attachment: scroll;
    min-height: 22em;
    font-family: robotoregular;
    padding: 2em 0 2em 0;
    color: #fff;
}

footer h6 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
    font-size: .9375rem;
    letter-spacing: .05em;
}

footer p {
    font-size: .875rem;
    color: #d9d9d9;
    line-height: 1.7;
}

footer ul {
    list-style-type: none;
    margin: 0 0;
    padding: 0;
}

footer li:not(:last-child) {
    margin-right: 1rem;
}

footer a {
    font-size: 1rem;
    font-weight: 400;
    color: #d9d9d9;
    background-color: transparent;
    text-decoration: none;
    transition: all .2s ease;
}

footer a:hover {
    color: #00AEEF;
}

div.inner-wrapper.footer-links {
    justify-content: flex-start;
    gap: 1em 3em;
}

@media screen and (max-width: 60em) {
    #footer-legal {
        margin: 1em auto;
    }
}

.inner-wrapper {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

@media screen and (min-width: 60em) {
    .inner-wrapper {
        justify-content: space-between;
        flex-flow: row wrap;
        max-width: 55em;
        align-items: flex-start;
    }
}

@media screen and (min-width: 100em) {
    .inner-wrapper {
        max-width: 95em;
    }
}

.logo-wrapper {
    text-align: center;
}

@media screen and (min-width: 60em) {
    .logo-wrapper {
        text-align: left;
    }
}

.footer-address-wrapper .logo-baseline-wrapper ul {
    display: flex;
    margin-top: 1rem;
    justify-content: center;
    text-align: left;
}

.footer-address-wrapper .logo-baseline-wrapper li:not(:last-child) {
    margin-right: 1rem;
}

.footer-address-wrapper .logo-baseline-wrapper li {
    font-size: 1rem;
    color: #00aeef;
    white-space: nowrap;
    line-height: 1.6;
}

.footer-address-wrapper-col {
    margin: 1.5em 0 0 0;
}

.footer-address-wrapper .col{
    margin: 0 0 0 1em;
}

.footer-address-wrapper .contact-wrapper {
    display: flex;
    flex-flow: column wrap;
    gap: 2em;
    margin: 1.5em 0;
}

@media screen and (min-width: 50em) {
    .footer-address-wrapper .contact-wrapper {
        display: flex;
        flex-flow: row wrap;
        gap: 5rem;
    }
}

#footer-service-links {
    font-family: robotomedium;
    padding: 0.3em 0 0 0;
}

.footer-link-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    font-size: .75rem;
}
