@import url(https://fonts.googleapis.com/css?family=Montserrat:400,600,700,900,300|Source+Sans+Pro:400,600,700,300&display=swap);

* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    background-color: #f6f6f6;
    font-family: 'Source Sans Pro',sans-serif;
    font-size: 18px;
    height: 100%;
    color: #4a4a4a;
}
a {
    text-decoration: none;
    color: #0093ee;
    padding: 0 2px;
}
a:hover {
    text-decoration: underline;
}
.fc-flex {
    display: flex;
}
.fc-flex-2 {
    flex: 2;
}
.fc-flex-vcenter {
    align-items: center;
}

.fc-text-right {
    text-align: right;
    justify-content: flex-end;
}
.fc-footer-logo img {
    width: 140px;
    margin-left: 8px;
}

.fc-error-page-container {
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}
.fc-error-page-container .fc-error-page-header,
.fc-error-page-container .fc-error-page-body,
.fc-error-page-container .fc-error-page-footer {
    /* flex: 2; */
}

.fc-error-page-container .fc-error-page-header {
    padding: 16px 8px;
}
.fc-error-page-container .fc-error-page-header img {
    width: 200px;
    /* margin-bottom: 24px; */
}
.fc-error-page-container .fc-error-page-body {
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.12);
    padding: 48px 40px;
    line-height: 23px;
    text-align: center;
}
.fc-error-page-container .fc-error-page-body img {
    width: 350px;
    margin: 0 auto 32px auto;
}
.fc-error-page-container .fc-error-page-footer {
    padding: 16px 8px;
    font-family: 'Source Sans Pro',sans-serif;
    font-size: 12px;
}

.fc-bold {
    font-weight: 600;
}

.fc-heading-style {
    color: #757575;
    font-size: 24px;
    line-height: 18px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 16px 0;
}