﻿
.back {
    padding: 0.5em;
    border-radius: 0.3em;
    background-color: #cccccc;
    display: inline-block;
}

body {
    background: white;
    font-size: 16px;
    width: 100%;
    margin: auto;
}

body.destinationpayment {
    max-width: 1080px;
}

    #page {
        background: white;
        min-height: 100vh;
        padding: 20px 40px;
    }

@media all and (max-width: 600px) {
    #page {
        padding: 20px;
    }
}

    #paymentform {
        margin-bottom: 4rem;
    }

        #paymentform .paymentform-inputfields {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 40px;
            margin-bottom: 30px;
        }

    .paymentform-send-via-alternatives {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 20px;
        justify-content: space-between;
    }

.paymentform-send-via-alternatives input {
    min-width: 180px;
}

    #paymentform .dot_loader {
        position: absolute;
        right: 0;
        left: 0;
    }

    fieldset {
        margin: 0.5%;
        border: none;
    }

    input, select {
        width: 100%;
        padding: 0.4em;
        margin: 0.4em 0;
        -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
        -moz-box-sizing: border-box; /* Firefox, other Gecko */
        box-sizing: border-box; /* Opera/IE 8+ */
    }

    .display-label,
    .editor-label {
        margin: 1em 0 0 0;
        font-weight: bold;
    }

    .display-field,
    .editor-field {
        display: inline-block;
        margin: 0.5em 0 0 0;
    }

    .amountInputs {
        box-shadow: 0 4px 20px rgb(0 0 0 / 10%);
        border-radius: 8px;
        margin: 20px 0;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 40px;
    }

    @media all and (max-width: 600px) {
        #paymentform .paymentform-inputfields,
        .amountInputs {
            grid-template-columns: 1fr;
        }
    }

    .amountInputs > div {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .amount-input {
        width: 100%;
    }

    .amountInputs span {
        font-size: 16px;
        line-height: 1em;
        margin-left: 15px;
    }

    .brand_list {
        list-style: none;
        padding: 0;
    }

        .brand_list li {
            background: #1b1464;
            border-radius: 4px;
            font-size: 17px;
            margin-bottom: 1rem;
            transition: all .15s ease-in-out;
        }

            .brand_list li:hover {
                background: #4750a0;
                transform: translateY(-1px);
                transition: all .15s ease-in-out;
            }

            .brand_list li h3 {
                color: white;
                padding: 1.5em 10px;
            }

    .form-control {
        border: 1px solid #e6e5df;
        line-height: 1em;
        height: auto;
        margin: 10px 0;
        padding: 0.75em;
    }

    .form-control.error {
        box-shadow: 0 0 6px red;
    }

    .brand_list .brandlink {
        background-repeat: no-repeat;
        background-position: 20px;
        padding-left: 60px;
        background-size: 24px 15px;
    }

    .brand_list .apollorejserdk {
        background-image: url('/content/Img/denmark.svg');
    }

    .brand_list .apollono {
        background-image: url('/content/Img/norway.svg');
    }

    .brand_list .apollomatkatfi {
        background-image: url('/content/Img/finland.svg');
    }

    .brand_list .apollose {
        background-image: url('/content/Img/sweden.svg');
    }

    .brand_list .apolloreizennl {
        background-image: url('/content/Img/netherlands.svg');
    }

    .brand_list a {
        text-decoration: none;
    }

