﻿.div_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F0;
}

.button-container {
    text-align: right;
    padding: 10px;
}

.button {
    margin-left: 10px;
}

.buttonCss {
    width: 200px;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
}

.buttonMainSiteCss {
    color: white;
    background: black;
    font-size: 20px;
    width: 100%;
    height: 50px;
    font-weight: bold;
}

.bodyCss {
    background: #F0F0F0;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.headerCss {
    background: white;
    width: 100%;
    display: flex;
}

.veryTopStuffCss {
    padding-bottom: 0px;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: 1000px
}

.button-bar {
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    justify-content: flex-end;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    padding: 10px;
}


.myProfileCss {
    background: #475760;
}

.centeredContentCss {
    margin: 0 auto;
    height: 100%;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.errorPngCss {
    width: 100%;
    aspect-ratio: 1;
    height: 700px;
    -o-object-fit: contain;
    object-fit: contain;
}

.timeOutCss {
    font-size: 60px;
    font-weight: bold;
}

.textCss {
    font-size: 18px
}

.mainSiteDivCss {
    width: 80%;
    margin-top: 20px;
}

.footerRowDivContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width:800px;
}

.footerRowDivCss {
    width: 100%;
    background-color: #002e62 !important;
    color: white;
    padding: 5px;
    display: flex;
    gap: 5px;
}

.footerColCss {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    width: 25%;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .bodyCss{
        gap: 20px;
    }
    .veryTopStuffCss {
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
    }
    .button-bar {
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }


    .footerRowDivCss {
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
        width: 100%;
    }

    .footerColCss {
        width: 100%;
        text-align: center;
    }

    .footerInnerTextCss{
        width: 100%;
    }

    .mainSiteDivCss{
        width: 100%;
    }
    .errorPngCss{
        height: 400px;
    }

}