
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --black: #020202;
    --white: #FFFFFFFF;
    --warmWhite: #FFFAFA;
    --blue: #251D86;
    --green: #229222;
    --red: #F01014;
    --lightGrey: #C8C8C8;
    --grey: #929292;
    --darkGrey: #616161;
    --iconGrey: #99616161;
    --loaderBgColor: #000000aa;
    --transparent: #00000000;
}
.row {
    --bs-gutter-x: 0;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background-color: var(--warmWhite);
    color: var(--black);
    min-height: 100vh;
}

header {
    border-bottom: 1px solid var(--lightGrey);
    box-shadow: var(--lightGrey) 0 0 10px;
    background-color: var(--white);
    /* background-color: salmon; */
    display: flex;
    padding: 1rem 0.75rem 1rem 1.5rem;
    color: var(--black);
    /* font-size: 1.75em; */
}
nav.navbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

img.brand-logo {
    width: 12rem;
    max-width: 100%;
}
.content-wrapper {
    padding: 1.5rem;
    height: 100%;
}

.loader-overlay {
    z-index: 10;
    background-color: var(--loaderBgColor);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    text-align: center;
}

.loader-overlay.show {
    display: block;
}

.info {
    font-size: 2.5em;
}

.input-iban-wrap {
    position: relative;
}
.input-iban {
    margin: 1em 0 1em 0;
    padding-right: 1.5em;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 1em;
    border-width: 0 0 8px 0;
    border-color: var(--blue);
    background-color: transparent;
}
.cancel-iban {
    position: absolute;
    top: 22%;
    right: 0;
    font-size: 1.25em;
    color: var(--lightGrey);
    cursor: pointer;
}

.button-check-wrap {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5em;
}
.btn-primary.check {
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--blue);
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--lightGrey);
    border-color: var(--lightGrey);
    color: var(--darkGrey)
}
.btn-primary:hover {
    background-color: #1c1858;
    border-color: #1c1858;
}
.btn-primary:focus,
.btn-primary:active {
    background-color: #1c30a3;
    border-color: #1c30a3;
}
.valid-wrap {
    display: flex;
    align-items: center;
}
.valid-wrap  .icon {
    margin-right: 0.25em;
    font-size: 1.75em;
}
.valid-wrap  .icon .valid {
    color: var(--green);
}
.valid-wrap  .icon .invalid {
    color: var(--red);
}

.valid-wrap  .message {
    font-size: 1.15em;
    font-weight: 500;
    color: var(--grey);
}

.param {
    margin: 1em 0;
}

.param .warning {
    color: var(--red);
    font-size: 1.5em;
    font-weight: bold;
}
.param .name {
    color: var(--grey);
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

.param .value {
    font-size: 1.25em;
    font-weight: bold;
    overflow-wrap: break-word;
}

.param .value:last-child {
    margin-bottom: 1em;
}

hr.divider {
    margin: 2em 0;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--grey);
}
footer {
    bottom: 0;
    width: 100%;
    /* height: 45px; */
    padding: 1em;
    background: var(--white);
    border-top: 1px solid var(--lightGrey);
    box-shadow: var(--lightGrey) 0 0 10px;
}
footer .footer-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

footer .copyright,
footer .localhost-link {
    padding: 0 0.5em;
}
footer .copyright {
    color: var(--grey);
}
footer .localhost-link {
    text-decoration: none;
    color: var(--blue);
}
.hidden {
    display: none;
}
.store .store-buttons {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.store .store-buttons > .button {
    margin: 1rem 0;
    text-align: center;
}
.store img {
    width: 240px;
    max-width: 100%;
}
.download-app {
    margin: 0;
    text-align: center;
}
@media (min-device-width: 481px) {
    .input-iban {
        font-size: 1.15em;
    }
}

@media (min-width: 640px) {
    .store img {
        max-width: none;
    }
    .download-app {
        text-align: left;
    }
    .store .store-buttons {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: row;
    }
    .store .store-buttons > .button {
        text-align: left;
        margin: 1rem 1rem 0 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (min-device-width: 992px) {
    .input-iban-wrap {
        max-width: 100%;
        font-size: 1.25em;
    }
    .param .value {
        margin-left: 1em;
        margin-right: 1em;
        color: var(--black);
        font-size: 1.75em;
        font-weight: bold;
    }
    .button-check-wrap {
        max-width: 100%;
    }
    footer .footer-content-wrapper {
        flex-direction: row;
    }
}

@media (min-width: 1400px) {
    .content-wrapper {
        margin: 0 auto;
        width: 1400px;
    }
}


