/* Custom, iPhone Retina */
.flex-container {
    display: flex;
    flex-direction: column;
    margin: 20px; /* Optional margin for spacing */
}

.flex-row {
    display: flex;
    justify-content: space-between; /* Space between cells */
    margin-bottom: 10px; /* Space between rows */
    align-items: center;
}

.flex-cell {
    flex: 1; /* Allow cells to take equal space */
    flex-basis: 50%;
    padding: 10px; /* Add some padding inside cells */
}
body {
    -webkit-text-size-adjust: 100%;
    -webkit-text-fill-color: black;
    /*font-size: 32px;*/
    font-family: sans-serif;
    display: flex;
    justify-content: center;
} 

h1 {
    font-size: 2em;
    padding-left: .5em;
}

form {
    font-size: 1em;
    margin-bottom: 0;
}

table {
    border-spacing: .9em;
    
}

td {
    font-size: 1em;
}

input, select {
    width: 100%;
    padding: .6em;
    font-size: 1em;
    border: 0;
    background-color: #F5F5F5;
    height: 2.5em;
    border-radius: .6em;
}

input {
    width: calc(100% - 1.2em);
    height: 1.3em;
    outline-color: #DBF2FF;
    &#submit {
        width: 100%;
        height: 3em;
        background-color: #DBF2FF;
        box-shadow: 0px .6em 1em 0px rgb(0 0 0 / 11%);
        &:active, &:hover {
            background-color: #B8E5FF;
        }
    }
}

.img-btn {
    border: 0;
    background: unset;
    padding: 0;
}

.orderresult {
    font-size: 1em;
    &.-span{
        &.--success {
            background-color: #E8FADC;
            color: #689F44;
            border-color: #D2F0BE;
            /*-webkit-text-fill-color:#689F44;*/
            border-radius: 1em;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        &.--error {
            background-color: #FADCDC;
            color: #9F4444;
            border-color: #F0BEBE;
            /*-webkit-text-fill-color:#689F44;*/
            border-radius: 1em;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        & svg {
            width: 2.5em;
            height: 2.5em;
        }
        & p {
            margin-left: .6em;
            margin-right: .6em;
        }
    }
}


@media (max-width: 420px) {
    .flex-row {
        flex-direction: column;
        align-items: normal;
    }
    .flex-cell {
        flex-basis: 100%;
    }
}
/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    body {
        font-size: 16px;
    }

    .orderresult {
        &.-span{
            & svg {
                width: 1.5em;
                height: 1.5em;
            }
        }
    }
}