label {
    font-size: 0.75rem;
}

.grid_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}

.flex_column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.checkbx {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
}

.checkbx input{
    width: 20%;
}

.checkbx label{
    width: 100%;
    font-size: 1rem;
}

.mk_table tr td{
    font-size: 1rem;
    text-align: left;
}

.mk_table tr td:first-of-type{
    width: 20px;
    text-align: center;
    padding: 0;
}

.mk_table tr td.price_table {
    width: 200px;
    text-align: right;
}

.mk_table tr:nth-of-type(odd){
    background-color: #ccc;
}

.mk_table label{
    font-weight: 500;
}

.width_full{
    width: 100%;
    display: flex;
    flex-direction: column;
}

fieldset:nth-of-type(odd){
    background-color: #f4f4f4;
}

.empty_field{
    border-color: red !important;
}

#rechner{
    position: fixed;
    right: 20px;
    bottom: 0px;
    border: solid 1px black;
    width: 350px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: white;
    max-height: 400px;
    overflow: auto;
    overflow-x: hidden;
}

#mk_xtr_message {
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
    justify-content: space-between;
}

.buchungen{
   display: block;
}

.hide{
    display: none;
}

#rechner hr {
    margin-top: 4px;
    margin-bottom: 4px;
}

.aussteller_info {
    padding: 10px;
    margin-top: 20px;
}

.aussteller_info_head {
    background-color: #ddd;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    margin-bottom: 20px;
}

.aussteller_body_information {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.aussteller_info_body {
    display: flex;
    flex-direction: row;
    align-items:flex-start;
}

.aussteller_body_information div {
    width: 47%;
}

.aussteller_body_image {
    width: 35%;
}

.padding_tb {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media only screen and (max-width: 765px){
    #rechner{
        position: fixed;
        left: 50%;
        width:500px;
        margin-left: -250px;
        padding: 20px;
    }

   .buchungen_kw{
       display: none;
   }

   .aussteller_body_information {
        flex-direction: column;
    }

    .aussteller_body_image {
        width: 50%;
    }
}

@media only screen and (max-width: 568px){
    #rechner{
        position: fixed;
        left: 50%;
        width:350px;
        margin-left: -175px;
        padding: 20px;
    }

    .aussteller_body_image {
        display: none;
    }
    
    .grid_2 {
        grid-template-columns: 1fr;
    }
}