.error-pages {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    padding: 40px 16px;
    font-family: 'Open Sans';
    width: 100%;
}

#wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-img {
    max-width: 343px;
    min-width: 0;
}

.not-authorized {
    max-width: 178px;
    min-width: 0;
}

.not-authorized-img {
    height: 176px;
    width: 180px;
}

.error-description {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

.error-description form {
    width: 100%;
}

.title-and-description {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.title {
    align-items: center;
    color: #404040;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.description {
    align-items: center;
    color: #404040;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
}

.trace-info {
    align-items: center;
    color: #404040;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    display: inline;
}

.trace-info text {
    font-weight: 600;
    margin-inline-start: 4px;
}

.btn-back-homepage {
    align-items: center;
    background: #448DCB;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    min-height: 44px;
    padding: 11px 16px;
    white-space: normal;
    width: 100%;
}

.error-search {
    font-size: 14px;
    height: 34px;
    padding: 6px 12px;
}

#main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.search-margin {
    margin-inline-start: 5px;
}

.simple-header {
    width: 100%;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr min-content;
}

.searchBar {
    grid-column: span 3 / span 3;
    width: 100%;
    height: 48px;
    transition: height 0.2s ease;
    overflow: hidden;
}

.searchBar[data-collapsed="true"] {
    height: 0;
}

.bar {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0px 12px;
}

    .bar input {
        grid-column-start: 1;
        grid-row-start: 1;
        padding: 6px 12px;
        padding-inline-start: 48px;
        border: 1px solid #448dcb;
    }

    .bar button {
        all: unset;
        pointer-events: auto;
        cursor: pointer;
        grid-column-start: 1;
        grid-row-start: 1;
        aspect-ratio: 1 / 1;
        width: 20px;
        height: 20px;
        align-self: center;
        margin-inline-start: 10px;
    }

.logo360-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo360 {
    height: 60px;
    width: 150px;
}

.grey-separator-line {
    border-bottom: 4px solid #cfd9dd;
}

.mobile-show-searchBar {
    padding-inline-start: 12px;
}

.showSearchBar {
    all: unset;
    border-bottom: 2px solid #448DCB;
    font-size: 20px;
    display: inline-block;
    height: 64px;
    width: 50px;
    color: #448dcb;
    display: flex;
    justify-content: center;
    align-items: center;
}

#showSearchBar[data-collapsed="true"] {
    border-bottom: 0
}

.icon-search:before {
    font-family: "FontAwesome";
    content: "\f002";
    font-style: normal;
    display: inline-block;
}

.header-wrapper {
    border-bottom: 4px solid #448DCB;
    flex-shrink: 0;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('/Content/font/font-awesome/4.7.0/fontawesome-webfont.eot?v=4.7.0');
    src: url('/Content/font/font-awesome/4.7.0/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('/Content/font/font-awesome/4.7.0/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('/Content/font/font-awesome/4.7.0/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('/Content/font/font-awesome/4.7.0/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('/Content/font/font-awesome/4.7.0/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-style: normal;
    font-weight: normal;
}

@media (min-width: 768px) {
    .error-pages {
        flex-direction: row;
        gap: 80px;
    }

    .title-and-description,
    .description {
        align-items: flex-start;
        text-align: justify;
    }

    .btn-back-homepage {
        font-size: 12px;
        font-weight: 600;
        min-height: 40px;
        width: 50%;
    }

    .error-description {
        align-items: flex-start;
    }

    .not-authorized {
        max-width: 272px;
        min-width: 0;
    }

    .error-img {
        max-width: 700px;
        min-width: 0;
    }

    .error-description {
        width: 387px;
    }

    .simple-header {
        height: 105px;
        grid-template-columns: 3fr 6fr 2fr;
        grid-template-rows: 1fr;
        width: 750px;
        align-items: center;
        padding-inline-end: 15px;
        padding-inline-start: 15px;
        margin-inline-end: auto;
        margin-inline-start: auto;
    }

    .searchBar {
        grid-column: unset;
        width: 100%;
        height: auto !important;
    }

    .mobile-show-searchBar,
    .grey-separator-line {
        display: none;
    }

    .logo360 {
        height: auto;
        width: auto;
    }

    .collapse {
        all: unset;
    }
}

@media (min-width: 992px) {
    .simple-header {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .simple-header {
        width: 1170px;
    }
}