* {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    margin: 0;
    padding: 0;
}

body {
    background-color: transparent;
    margin: 0;
    font-family: Montserrat, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}

b, strong {
    display: inline !important;
}

[hidden] {
    display: none !important
}

.title {
    font-size: 30px;
    margin: 10px 0 15px 0;
}

.background {
    width: 100%;
    height: 100%;
}

.floating {
    position: absolute;
    background-color: floralwhite;
    color: black;
    border: solid 5px black;
    border-radius: 43px;
    top: 0;
    left: 0;
    padding: 25px;
    z-index: 10;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    align-items: center;
    text-align: center;
}

.all_screen_break {
    position: fixed;
    left: 0;
    top: 0;
    color: black;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.input_label {
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    font-size: 48px;
}

.input_box {
    box-sizing: border-box;
    font-size: 24px;
    text-align: center;
    border: solid 2px black;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

.input_box:focus {
    border: solid 2px coral;
}

.input_box:disabled {
    border: none;
    border-radius: 0;
}

.info_frame {
    font-size: 20px;
}

.info_frame_fixed {
    font-size: 20px;
    min-width: 30%;
    max-width: 60%;
    min-height: 30%;
    max-height: 60%;
    border: solid 5px black;
    border-radius: 40px;
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.info_frame_child {
    padding-top: 10px;
    width: 100%;
    height: 100%;
}

.info_frame_waiting {
    border: 0;
    border-radius: 0;
    min-width: unset;
    min-height: unset;
    width: 128px;
    height: 128px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    justify-content: center;
}

.sumup_card_container {
    align-items: stretch;
}

.waiting_image {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    background-color: transparent;
    margin: 30px 0;
}

.buttons_container {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.button {
    background-color: #FF831C;
    color: #1200ff;
    font-size: 20px;
    border-radius: 14px;
    margin: 30px 0;
    padding: 5px;
    font-weight: bolder;
    max-width: max-content;
}

.checkout_button_container {
    width: max-content;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error_container {
    width: 100%;
    box-sizing: border-box;
    color: black;
    text-align: center;
    display: flex;
    font-size: 40px;
    font-weight: bold;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 960px) {
    .floating {
        flex-flow: column nowrap;
        flex-grow: 0.1;
    }

    .input_box {
        width: 80%;
    }
}

@media screen and (max-width: 540px) {
    .floating {
        flex-flow: column nowrap;
        flex-grow: 0.1;
        width: 80%;
    }

    .title {
        font-size: 27px;
    }

    .input_box {
        width: 80%;
    }

    .button {
        margin: 0;
    }
}