/* Error Pages 404 and 403 */
.error-not-found {
	height: calc(100vh - 200px);
	text-align: center;
	position: relative;
	min-height: 500px;
}
.error-not-found .site-logo {
	text-align: left;
	width: 100%;
	padding-top: 10px;
}
.error-not-found .site-logo a {
	display: inline-block;
}
.error-not-found .site-logo a svg g:not(:last-child) path {
	fill: #1d1d1d;
}
.error-not-found .message-error-site {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: table;
    width: 100%;
}
.error-not-found .error-text {
    font-size: 260px;
    line-height: 260px;
    font-family: 'proxima_nova_rgbold';
    text-transform: uppercase;
    color: #1d1d1d;
}
.error-not-found h1 {
    margin-top: 30px;
    line-height: 35px;
    font-size: 35px;
    font-family: 'proxima_nova_rgregular';
    text-transform: uppercase;
    color: #1d1d1d;
}
.error-not-found .btnNotFound {
    margin-top: 50px;
}
.error-not-found .btnNotFound a {
    display: inline-block;
    margin-bottom: 0;
    min-width: 240px;
}
.error-not-found .btnNotFound a:last-child {
    margin-left: 20px;
}

@media only screen and (max-width: 640px) {
    .error-not-found .error-text {
        font-size: 200px;
        line-height: 200px;
    }
    .error-not-found h1 {
        line-height: 30px;
        font-size: 30px;
    }
    .error-not-found .btnNotFound a {
        display: block;
        margin: auto !important;
    }
    .error-not-found .btnNotFound a {
        display: block;
        margin: 0px auto 20px auto !important;
    }
}

@media only screen and (max-width: 375px) {
    .error-not-found .error-text {
        font-size: 160px;
        line-height: 160px;
    }
    .error-not-found h1 {
        line-height: 30px;
        font-size: 30px;
    }
    .error-not-found .btnNotFound a {
        display: block;
        margin: auto !important;
    }
    .error-not-found .btnNotFound a {
        display: block;
        margin: 0px auto 20px auto !important;
    }
}