/* 
    Orange + Honey Yellow + Prussian Blue Color Palette
    https://venngage.com/blog/blue-color-palettes/#1
*/

:root{
    --col-black: #023047;
    --col-orange: #fb8500;
    --col-yellow: #ffb703;
    --col-blue: #219ebc;

    --col-prim: var(--col-black);
    --col-prim-hover: var(--col-blue);
    --col-prim-focus: var(--col-blue);
    --col-prim-light: var(--col-blue);
    --col-prim-light-transparent: rgba(142, 202, 230, 0.25);

    --col-sec: var(--col-orange);
    --col-sec-hover: var(--col-orange);

    --error-red: #f44336;
    --error-red-light: #ef5350;
    --error-red-hover: #e57373;
}

h1,h2,h3,h4,h5,h6{
    color: var(--col-prim);
}

body{
    background-color: var(--col-prim-light-transparent);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Fontsize small screen */
@media screen and (max-width: 600px){
    html {
      font-size: 12px;
    }
}

@media screen and (max-width: 400px){
    h1{font-size: 3rem;}
    h2{font-size: 2.8rem;}
}

/* Scrollbars */

html::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

html::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

/* ------- */

@font-face {
    font-family: proxima-nova;
    src: url(font/Proxima-Nova-Font.woff2);
}

*{
    font-family: proxima-nova;
}

html, body {
    min-height: 100vh;
    max-width: 100vw;
}

body {
    display: flex;
    flex-direction: column;
}

body > header .brand-logo{
    display: flex;
    justify-content: center;
    justify-items: center;
    height: 100%;
    /* margin-left: 2rem; */
}

body > header .brand-logo span{
    margin-left: 1rem;
}

body > header .brand-logo svg{
    margin-top: 1.5%;
    max-height: 90%;
}

body > main{
    flex: 1 0 auto;
    /* padding: 1rem 0.5rem; */
}

body > footer {
    flex-shrink: 0;
}

.img > img{
    max-width: 100%;
    max-height: 100%;
}

i{
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

/* Modals ---------------------------- */
#footer-fixed-consent-modal{
    position: fixed;
    bottom: 0;
    width: 100vw;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 3rem;
    background-color: var(--col-sec);
    animation-name: moveConsentBanner;
    animation-duration: 1.5s; 
}

@keyframes moveConsentBanner {
    from { bottom: -400px; }
    to { bottom: 0; }
}

#footer-fixed-consent-modal.active{
    display: flex;
}

#footer-fixed-consent-modal .descrTxt{
    color: var(--col-prim);
    margin-right: 1rem;
}

#footer-fixed-consent-modal a{
    color: var(--col-prim);
    font-weight: bold;
}

#footer-fixed-consent-modal a:hover{
    color: var(--col-prim-hover);
}

#footer-fixed-consent-modal .btn{
    font-size: 1rem;
}

@media screen and (max-width: 1000px){
    #footer-fixed-consent-modal{
        flex-direction: column;
        padding: 0.8rem 1.5rem;
    }
    #footer-fixed-consent-modal .descrTxt{
        margin-right: 0;
        margin-bottom: 1rem;
    }
    #footer-fixed-consent-modal .btn{
        width: 100%;
    }
}

/* Error Modal */
.error-modal{
    max-width: 420px;
    overflow: unset;
}

.error-modal .modal-content{
    padding-top: 0;
    text-align: center;
}

.error-modal header{
    text-align: center;
    display: flex;
    flex-direction: column;
    /* background-color: red;
    color: white; */
}

.error-modal header h4{
    margin-top: -28px;
}

.error-modal header i{
    color: var(--error-red);
    border-radius: 50%;
    position: relative;
    top: -28px;
    font-size: 100px;
    z-index: 1000;
}

.error-modal .modal-footer{
    text-align: center;
    padding: 0 24px;
}

.error-modal .modal-footer > a{
    background-color: var(--error-red);
    color: white;
    width: 100%;
}

.error-modal .modal-footer > a:hover{
    background-color: var(--error-red-hover);
}

nav .sidenav-trigger{
    float: right;
}

#mobile-header-sidenav{
    background-color: var(--col-prim);
}

#mobile-header-sidenav *{
    color: white;
}

/* ----------------------------------------------------- */
/* Footer */

.page-footer h2,
.page-footer h3,
.page-footer h4,
.page-footer h5,
.page-footer a{
    color: white;
}

.page-footer{
    color: white;
}

/* Formating */
.format-inline-icon{
    display: flex!important;
    align-items: center;
}

.format-inline-icon > i{
    margin-right: 0.2rem;
}