*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    background-color: #EEEEEE;
    margin: 0;
    color: #333333;
    font-family: Arial, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.seal-body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    background-color: #FFFFFF;
    background-image: url("../img/pci_dss_background.png");
    background-position: -50px bottom;
    background-repeat: no-repeat;
    box-shadow: 2px 2px 4px 0 #ccc;
}

a {
    text-decoration: none;
    color: #333333;
}

a:hover {
    text-decoration: none;
    color: #ea600f;
}

.seal {
    align-self: center;
}

.language-select {
    align-self: flex-end;
    margin: 1em;
    color: lightgray;
}

.language-select a {
    color: #ea600f;
}

.content {
    display: flex;
    justify-content: space-around;
    margin: 0.5em;
}

.left-column {
    display: flex;
    flex-direction: column;
    width: 40%;
    max-width: 50%;
    line-height: 1.5;
}

.right-column {
    width: 40%;
    max-width: 50%;
    margin-top: 1.5em;
    line-height: 1.5;
}

.right-column .pci-link {
    text-align: left;
}

.right-column > p:first-of-type{
    margin-top: 0;
}

.status-valid {
    color: #118F1D;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 0.2em;
}

.status-unknown,
.status-expired {
    color: #f07f1d;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 0.2em;
}

.company-headline {
    color: #ea600f;
    font-size: 1.5em;
}

.text-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compliance-icon-text {
    display: flex;
    align-items: center;
}

.list-scope {
    margin: 0 0 0 0.5em;
}

.list-validation-methods {
    margin-left: 0.5em;
}

ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.passed {
    padding-left: 1em;
    line-height: 1.5;
    background-image: url("../img/check.png");
    background-position: 0 3px;
    background-repeat: no-repeat;
}

.not-passed {
    padding-left: 1.25em;
    line-height: 1.5;
    background-image: url("../img/warning.svg");
    background-position: 0 3px;
    background-repeat: no-repeat;
}

.label-customer-info {
    margin-bottom: 0;
}

.value-customer-info {
    margin-top: 0;
    padding-left: 1em;
}

.label-scope {
    margin-top: 0;
    margin-bottom: 0.2em;
}

.logo-bottom {
    align-self: flex-end;
    margin: 1em;
}

.footer {
    color: #fff;
    line-height: 1.5;
    font-size: 0.8em;
    background-color: #2E353D;
}

.footer a {
    color: #fff;
}

.footer p {
    margin: 1em;
}

.seal-wrapper {
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 0;
}

.text-block p {
    margin: 0;
}

.customer-scope {
    margin-top: 1em;
}

@media only screen and (max-width: 850px) {
    .seal-wrapper {
        padding: 0;
    }
}

@media only screen and (max-width: 500px) {
    body {
        background-position: -80px bottom;
    }

    .seal-wrapper {
        width: initial;
        height: initial;
        display: block;
        padding: 0;
    }

    .seal-body {
        box-shadow: none;
    }

    .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .company-headline {
        align-self: center;
    }

    .right-column,
    .left-column {
        width: 90%;
        max-width: 90%;
    }
}
