/** base.sass */

.page-content {
    margin: 0 auto;
    padding: 0;
    position: relative;
    max-width: 640px;
}

.block-error {
    padding-left: 12px;
    padding-right: 12px;
}

@media only screen and (min-width: 640px) {
    .page-content {
        max-width: 768px;
    }
}

@media only screen and (min-width: 768px) {
    .page-content {
        width: -webkit-calc(100% - 48px);
        width: calc(100% - 48px);
        padding: 0 24px;
        max-width: 1200px;
    }
    .block-error {
        padding-left: 12px;
        padding-right: 12px;
        margin-left: -12px;
        margin-right: -12px;
    }
}

/** block-details.sass */
.block-error {
    padding-top: 23px;
}

/** block-error.sass */
.block-error__inner {
    padding: 16px 12px 28px;
}

.block-error__title {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}

.block-error__content {
    margin-top: 24px;
}

.block-error__footer {
    text-align: center;
    margin-top: 28px;
}

@media only screen and (min-width: 768px) {
    .block-error {
        padding-top: 44px;
        padding-bottom: 58px;
    }
    .block-error__inner {
        padding: 36px 32px 78px;
    }
    .block-error__content {
        margin-top: 24px;
    }
    .block-error__footer {
        margin-top: 64px;
    }
}

.block-error__inner {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.06);
}

/** button.sass */
.button {
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    padding: 8px 16px;
    line-height: 1.5;
    font-size: 14px;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
}

a.button--back {
    text-decoration: none;
    color: #2fa8b3;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button:visited {
    color: inherit !important;
}

.button--back:visited {
    color: #3dbcc7 !important;
}

.button--back {
    color: #3dbcc7;
    background-color: #fff;
    border: 1px solid #bdbdbd;
}

/** column.sass */
.column__center {
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    .column__center {
        margin: 0 8px;
    }
}

@media only screen and (min-width: 1024px) {
    .column__center {
        margin: 0 16px;
    }
}

.column__center {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .column__center {
        max-width: 880px;
        margin: 0 auto;
    }
}

/** */
.page-content {
    box-sizing: border-box;
    width: 100%;
    padding-top: 16px;
}


/** mediaquery.sass */
@media only screen and (min-width: 768px) {
    .page-content {
        padding-top: 32px;
        z-index: 1;
    }
    .column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: -webkit-calc(100% + 16px);
        width: calc(100% + 16px);
        margin: 0 -8px;
    }
    .button {
        width: auto;
        min-width: 200px;
        padding: 8px 8px;
    }
}

@media only screen and (min-width: 1024px) {
    .column {
        width: -webkit-calc(100% + 32px);
        width: calc(100% + 32px);
        margin: 0 -16px;
    }
}
