/* stylelint-disable scss/dollar-variable-pattern */
/* stylelint-enable scss/dollar-variable-pattern */
/* correction for product tile hover border*/
.error_page-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 768px) {
    .error_page-logo {
        top: 40px;
    }
}
.error_page-background {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}
.error_page-content {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px 20px 30px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%);
}
@media (min-width: 768px) {
    .error_page-content {
        max-width: 808px;
    }
}
.error_page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.error_page-description {
    margin-bottom: 15px;
}
@media (max-width: 767.98px) {
    .error_page-tel {
        text-decoration: underline;
    }
}
