#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#root > section {
    flex: 1
}

.HideInPortal {
    display: none;
}

.footer-section:first-child {
    background-color: #D6E5F2;
    text-align: center;
}
.footer-section:last-child {
    background-color: rgb(0, 102, 153);
    color: #F5F5F5;
}
.footer-section > .container {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}
.footer-section:first-child > .container > div {
    flex: 1;
}
.footer-section > .container > div:not(:last-child) {
    margin-right: 15px;
}
.footer-section p {
    margin-bottom: 0;
}

body {
    font-family: "Open sans";
    overflow-y: scroll;

}

.sp-navbar {
    font-weight: bold;
    font-size:14px;
    display:flex;
    align-items:flex-end;
    padding-bottom:8px;
        background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(120,9,121,1) 45%, rgba(0,212,255,1) 100%);
}


 input:required, textarea:required {
    border: 1px solid red;
} 