@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

body {
    height: 100%;
    width: 100%;
    background: white none;
    font-family: Arial, Helvetica, sans-serif;
}

.allPages {
    height: 100%;
    background: #f2f2f2;
    display: grid;
    grid-template-rows: fit-content(40%);
}

/*HEADER*/
.topNav {
    min-width: 350px;
    width: 100%;
    background-color: #102c4c;
    text-align: center;
    color: white;
    font-size: 11px;
    padding: 10px 0;
    height: unset;
    display: flex;
    justify-content: center;
}
.topNavContent{
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #FFFFFF;
    position: relative;
}
.topNav .cookieAccept{
    font-weight: 400;
}
.topNav a {
    margin-left: 38px;
    color: white;
    text-decoration: underline;
}

.topNav a:hover {
    color: white;
    text-decoration: none;
}

.headerBackground {
    min-width: 350px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: 'Lato';
    background-color: white;
    height: unset;
    width: 100%;

}

.headerContent {
    min-width: 350px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 970px;
    width: 100%;
    height: 80px;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

.headerLogo {
    min-width: 299px;
    height: 40px;
    background: url("../img/template/efllogo.svg") no-repeat 0 50%;
}

.headerDescription {
    min-width: 200px;
    font-size: 26px;
    color: #00234c;
    display: flex;
    align-items: center;
    height: 30px;

    padding-left: 23px;
    border-left: 2px solid grey;
    margin-left: 36px;
}

.headerLinks {
    font-size: 12px;
    min-width: 200px;
    padding-top: 10px;
    height: 80px;
}

.headerLinks img {
    width: 16px;
}

.headerDescription .portalName {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.headerDescription .portalName b {
    font-weight: 700;
    margin-right: -2px;
}

.headerLinks .safety a {
    margin-left: 8px;
    color: #065279;
    text-decoration: underline;
}

.headerLinks .safety a:hover {
    text-decoration: none;
}

/*Help Tooltip*/
.helpTooltipButton {
    display: inline-block;
    text-decoration: none;
    background: url("../img/template/icons/help.png") top no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    border: none;
}
.helpTooltipButton:focus {
    outline: none;
}

.helpTooltipInside {
    width: 130px;
    transform: scale(.001);
    opacity: 0;
    padding: 0;
    color: black;
    background-color: white;
    font-weight: normal;
    font-size: 9px;
    position: absolute;
    border-width: 1px;
    border-color: #f1f1f1;
    border-style: solid;
}
.helpTooltipInside .tooltipTitle {
    width: auto;
    color: black;
    font-weight: bold;
    text-align: left;
    background-color: #f1f1f1;
    padding: 3px 10px 3px 10px;
}

.helpTooltipInside .tooltipText {
    padding: 3px 10px 3px 10px;
}
.helpTooltipInside .tooltipText:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 55px;
    border-width: 0px 5px 10px 5px;
    border-style: solid;
    border-color: transparent transparent #f1f1f1 transparent;
}
.helpTooltipButton:focus + .helpTooltipInside {
    transform: scale(1) translate(57%, 3%);
    opacity: 1;
}

/*End Help tooltip*/

/*Cookie Tooltip*/
.cookieInfoTooltipButton{
    display: inline-block;
    text-decoration: none;
    background: url("../img/template/icons/questionmark.png") no-repeat top;
    background-size: 15px;
    width: 15px;
    height: 15px;
    border: none;
    margin-right: 5px;
    transform: translateY(2px);
}

.cookieInfoTooltipButton:focus {
    outline: none;
}

.cookieInfoTooltipInside {
    width: 300px;
    transform: scale(.001);
    opacity: 0;
    padding: 0;
    font-weight: normal;
    font-size: 9px;
    position: absolute;
    border-width: 1px;
    border-color: #f1f1f1;
    border-style: solid;
    z-index: 5;
    background-color: #019788;
    color: white;
    left: -38px;
    top: 40px;
}
.cookieInfoTooltipInside .tooltipTitle {
    width: auto;
    font-weight: bold;
    text-align: left;
    padding: 3px 10px 3px 10px;
    background-color: transparent;
    color: white;
}

.cookieInfoTooltipInside .tooltipText {
    padding: 3px 10px 3px 10px;
    text-align: left;
}
.cookieInfoTooltipInside .tooltipText:after {
    content: "";
    position: absolute;
    border: none !important;
    background-color: #019788;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    left: 20px;
    top: -9px;
}

.cookieInfoTooltipButton:focus + .cookieInfoTooltipInside {
    transform: scale(1) translate(18px, -1px);
    opacity: 1;
}
/*End Header*/
/*Small Header*/

.headerContentSmall {
    margin-left: 20px;
    margin-right: 60px;
    max-width: 798px;
    width: 100%;
    height: 80px;
    display: none;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

@media screen and (max-width: 996px) {
    .headerContentSmall {
        max-width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: unset;
        align-items: unset;
        height: unset;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }
    .headerLogoSmall {
        height: 40px;
        width: 200px;
        padding-top: 20px;
        display: block;
        margin: 19px 24px;
        background: url("../img/template/efllogo.svg") no-repeat 0 50%;
    }
    .headerDescriptionSmall {
        width: 100%;
        background: #019788;
        margin-left: 0;
        margin-right: 0;
        color: white;
        display: flex;
        justify-content: center;
        font-family: 'Lato';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        height: unset;
        padding: 7px 0;
        align-self: end;
    }

}

/*End*/

/*Big Footer*/
.BigPageFooter {
    min-height: auto;
    display: flex;
    align-items: center;
    align-content: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    margin:0;
    background-color: #f2f2f2 !important;
    margin-top: auto;
}

.BigPageFooter .footer {
    width: 100%;
    min-width: 738px;
    max-width: 970px;
    display: inline-flex;
    flex-direction: column;
    color: #999;
    height: unset !important;
}

.BigPageFooter .footerDescription {
    width: 100%;
    height: 20px;
    font-size: 12px;
}
.BigPageFooter .footer .footerDescription {
    color: #69737A;
}

.BigPageFooter .footer .footerLinks {
    width: 100%;
    height: 33px;
    font-size: 11px;
    border: none !important;
}

.BigPageFooter .footerLinks li {
    float: left;
}

.BigPageFooter .footerLinks li a {
    text-align: center;
    margin-left: 0.5em;
    margin-right: 0.5em;
    text-decoration: none;
    color: #065279;
}

.BigPageFooter .footer .footerLinks a {
    color: #102C4C !important;
}

.BigPageFooter .footerLinks li a:hover {
    text-decoration: underline;
    color: #065279;
}

.BigPageFooter .footer .copyrights {
    width: 260px;
    height: 27px;
    align-self: end;
    font-size: 11px;
}


/*Small Footer*/
.SmallPageFooter {
    min-width: 350px;
    max-width: 996px;
    height: auto;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    background-color: #d9d9d9;
    padding-left: 10px;
    padding-right: 10px;
}

.SmallPageFooter .footer {
    min-width: 350px;
    max-width: 996px;
    width: 100%;
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.SmallPageFooter .footer .footerDescription {
    width: 100%;
    height: 20px;
    font-size: 14px;
    color: #999999;
    margin-left: 10px;
    margin-top: 10px;
}

.SmallPageFooter .footer .footerLinks {
    width: 100%;
    height: auto;
    padding-bottom: 5px;
    border-bottom: 1px solid #E5E5E5;
    font-size: 14px;
}

.SmallPageFooter .footerLinks ul {
    table-layout: fixed;
}

.SmallPageFooter .footerLinks li {
    float: left;
    display: table-cell;
    width: 140px;
    color: #ccc;
}

.SmallPageFooter .footerLinks li a {
    text-align: center;
    text-decoration: none;

}

.SmallPageFooter .footerLinks li a:hover {
    text-decoration: underline;

}

.SmallPageFooter .footer .copyrights {
    width: 330px;
    height: 27px;
    align-self: end;
    font-size: 14px;
    color: #999999;
    margin-top: 8px;
    margin-bottom: 10px;
    word-wrap: break-word;
}

/*smallCookie Tooltip*/
.smallCookie .cookieMobileTooltipImage{
    margin-bottom: -3px;
    margin-left: 2px;
    display: inline-block;
    background: url("../img/template/icons/help.png") no-repeat top;
    background-size: 18px;
    height: 18px;
    width: 18px;
}

.smallCookie .cookieMobileTooltip {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: rgba(241,241,241, 1);
    color: #363636;
}
.smallCookie .cookieMobileTooltip .tooltipTitle{
    width:100%;
    background: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}
.smallCookie .cookieMobileTooltip .tooltipTitle .titleInside{
    font-size: 20px;
    transform: translateY(10px);
}
.smallCookie .cookieMobileTooltip .tooltipTitle .closeInside{
    font-size: 32px;
}

.smallCookie .cookieMobileTooltip .tooltipText {
    padding: 15px;
    position: relative;
    width: 100%;
    font-size: 18px;
    text-align: left;
}
/*End smallCookie Tooltip*/

.smallCookie {
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    position: sticky;
    bottom: 0;
    height: 90px;
    width: 100%;
    background-color: rgb(16, 44, 76,0.9);
    color: white;
    text-align: center;
    z-index: 100;
    font-size: 13px;
    display: none;
}

.smallCookie .securityLink{
    color: white;
    text-decoration: underline;
}

.smallCookie .securityLink:hover {
    color: white;
    text-decoration: none;
}

.smallCookie .cookieLink {
    text-decoration: none;
    background-color: #019788;
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    border-radius: 10px;
    color: #ffffff;
    padding: 11px 32px 9px 32px;
    text-align: center;
    border: none;
    cursor: pointer;
    width: unset;
    height: unset;
    text-shadow: unset;
}

@media only screen and (max-width: 996px) {

    .topNav{
        display: none;
    }

    .headerContent {
        display: none;
    }

    .headerContentSmall {
        display: inline-flex;
    }

    .BigPageFooter {
        display: none;
    }

    .SmallPageFooter {
        display: flex;
    }
}

@media only screen and (max-width: 996px) {
    .smallCookie{
        height: 111px;
    }

    .tooltipSmallCookieInfo .tooltipInside {
        bottom: -45px;
    }
}

@media only screen and (max-width: 365px) {

    .headerDescriptionSmall {
        font-size: 24px;
        padding-top: 22px;
        padding-left: 0px;
    }
}

@-moz-document url-prefix() {
    .helpTooltipButton {
        height: 28px;
        margin-bottom: -13px;
    }
    .cookieInfoTooltipButton{
        height: 28px;
        margin-bottom: -13px;
    }
    .cookieMobileTooltipImage{
        height: 28px;
        margin-bottom: -13px;
    }
}

@media screen and (max-width: 996px) {
    .topNav{
        display: none !important;
    }
}

@media screen and (max-width: 996px) {
    .allPages {
        height: unset;
        display: unset;
    }
}

.copyrights {
    display: none !important;
}

.footer-new {
    width: 100%;
    background: #102C4C;
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 11px 0;
}
.footer-new .footer-box {
    color: white;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}
.footer-new .footer-box img {
    margin-right: 11px;
}
.footer-new .footer-box a {
    color: white;
}

@media screen and (max-width: 996px) {
    .SmallPageFooter {
        position: static;
        clear: both;
        margin-top: 60px;
        flex-shrink: 0;
        padding: 0;
    }
    .footer-new {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 26px;
        padding-left: 26px;
    }
    .footer-new .footer-box {
        margin-bottom: 21px;
    }
    .SmallPageFooter .footer {
        background-color: #f2f2f2 !important;
        padding-left: 24px;
        padding-bottom: 24px;
    }
    .SmallPageFooter .footer .footerDescription {
        margin-left: 0;
        margin-bottom: 8px;
    }
    .SmallPageFooter .footer .footerLinks a {
        color: #102C4C;
    }
}