/* GENERAL */
@font-face {
    font-family: Hanken Grotesk;
    src: url(https://cdn.postnl.nl/fonts/Hanken-Grotesk.woff2) format("woff2")
}

@font-face {
    font-family: ABC ROM;
    src: url(https://cdn.postnl.nl/fonts/ABCROM-Bold.woff2) format("woff2")
}

body {
    font-family: Hanken Grotesk;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* THEMES */
.theme-light {
    background-color: #fff;
    border-color: #001A73;
}

.theme-dark {
    background-color: #D83D00;
    border-color: #D83D00;
}

.theme-transparent {
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
}

.theme-light span {
    color: #001A73;
}

.theme-dark span {
    color: #fff;
}

.theme-transparent span {
    color: #fff;
}

/* MAIN WIDGET */
.postnl-widget {
    border-style: solid;
    border-radius: 20px;
    border-width: 3px;
}

.postnl-widget-target {
    display: flex;
    padding: 2%;
}

.postnl-widget-logo {
    width: 40%;
}

.postnl-widget-logo img {
    padding: 4em;
}

.postnl-widget-text {
    display: flex;
    align-items: center;
    width: 60%;
    color: black;
    font-size: 8em;
    padding-left: 0.1em;
}

.postnl-widget-text-bold {
    font-family: ABC ROM;
    font-size: 1.2em;
}

/* STATUS */
.loading {
    display: none;
}

/* RESPONSIVE */
@media only screen and (max-width: 280px) {
    .postnl-widget {
        border-radius: 6px;
        border-width: 2px;
    }
}