body {
    background-color: #fde0e4;
    margin: 0;
    padding: 0;
}

button{
    cursor: pointer;
    padding: 10px 15px 10px 15px;
    border: 0;
    font-size: 13px;
    box-shadow: 0px 0px 10px 1px gray;
    background-color: white;
    margin-top: 5px;
    border-radius: 5em;
}

#right {
    width: 75%;
    background-color: white;
    min-height: 100vh;
}

#left {
    width: 25%;
    background-color: #fde0e4;
}

@media screen {
    #options_for_print {
        display: none;
    }
}

@media print {

    body * {
        visibility: hidden;
    }    

    #left, #checksbtn, #result_submit, #options, #header{
        display: none !important;
    }

    .to_print, .to_print * {
        visibility: visible;
    }

    .not_print, .not_print * {
        display: none !important;
    }

    .to_print {
        width: 280mm;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
    }

    #options_for_print{
        visibility: visible;
        line-height: 1.5;
        padding-bottom: 10px;
        font-size: 20px;
        border-top: 1px dotted rgb(152, 149, 149);
        border-bottom: 1px dotted rgb(152, 149, 149);
        width: 90%;
        margin-left: 5%;
        min-height: 300px;
    }

    .option_price {
        font-size: smaller;
    }

    @page {
        size: a5;
        margin: 2;
        padding: 5;
        size: portrait;
    }
}

footer {
    text-align: center;
    padding: 3px;
    margin-top: 20px;
    color: gray;
}
