﻿p {
    margin: 0;
    margin-bottom: 0 !important;
}

.container-fluid {
    padding-left: 0 !important;
    margin-left: 20px !important;
}

/*#region ErrorPage Height*/
#formErrorPage {
    height: 94% !important;
    /*to disable horizontal scrollbar*/
    width: 100%;
    overflow-x: hidden;
}

/*#endregion*/

/*#region Header*/
#HeaderLogo {
    height: 24px;
}

.masterTopButtons {
    color: #000000;
    font: 12px Tahoma, Geneva, sans-serif;
    border: none;
    background: no-repeat;
    padding: 4px;
}

.hoverUnderline:hover {
    border-bottom: 2px solid #504e4e;
}

.bg-light {
    /*For ErrorPage.aspx top header bar*/
    background-color: #ffffff !important;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 3px 12px 0 rgba(0, 0, 0, 0.19);
}

/*#endregion*/

/*#region Content Styles*/

.errorpage-main-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.errorpage-image-container {
    height: inherit;
    width: 30%;
    /* background: whitesmoke; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.errorpage-details-container {
    height: inherit;
    width: 70%;
    /* background: lightgray; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-bar {
    width: 80%;
    height: 50px;
    background: #F6CF19;
}

.image-bar-top {
    border-top-left-radius: 20px;
}

.image-bar-bottom {
    border-bottom-left-radius: 20px;
}

.image-container {
    width: 80%;
    height: 300px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 2px solid #F6CF19;
    display: flex;
    justify-content: center;
    align-items: center;
}

.errorpage-content-wrapper {
    width: 90%;
    height: inherit;
    padding: 10px;
    margin: 15px auto;
    /* background: #fff; */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.error-generic-header {
    /* color: #777; */
    color: #000;
    font: 16px Tahoma, Geneva, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    /*set margin top to align properly*/
    margin-top: 150px;
}

.error-message {
    color: #777;
    font: 12px Tahoma, Geneva, sans-serif;
    margin: 5px;
}

.error-more-information {
    color: #000;
    font: 11px Tahoma, Geneva, sans-serif;
    font-weight: 600;
    margin-top: 50px;
    cursor: pointer;
}

.error-stacktrace {
    color: #777;
    font: 12px Tahoma, Geneva, sans-serif;
    margin: 5px;
}
/*#endregion*/

/*media query for mobile devices*/

/*#region Break Points*/
@media all and (max-width:992px) {
    .errorpage-image-container {
        display: none;
    }

    .errorpage-details-container {
        height: 100%;
        width: 90%;
    }

    .error-stacktrace {
        width: 100%;
        overflow: auto;
    }
}

@media (min-width: 992px) {
    #smaller-header {
        height: 50px;
    }
}
/*#endregion*/


