html {
    box-sizing: border-box;
    width: 100% !important;
    height: 100%;
    overflow: hidden !important;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    font-family: 'Kern Standard', sans-serif !important;
}

body {
    background-color: rgb(212, 208, 198);
    color: black;
    font-weight: bold;
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.vendeur-dispo {
    background-color: #0072da;
}

.vendeur-vente {
    background-color: black;
}

.vendeur-cell {
    color: white;
    margin-right: 1rem;
    padding: 10px 20px;
    border-radius: 20px 0px;
    display: inline-block;
    text-align: center;
    width: calc(4ch + 40px);
}

h1 {
    margin-bottom: 5vh;
}

hr.solid {
    border-top: 3px solid black;
}

.fit-content {
    width: -moz-fit-content;
    width: -webkit-fit-content;
}

.display-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.display-flex-column {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width:320px) {

    /* smartphones, iPhone, portrait 480x320 phones */
    #tables-container {
        overflow: auto;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 0.9rem;
    }

    .row-container {
        font-size: 5vw;
    }
}

@media (min-width:481px) {

    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
    }
}

@media (min-width:641px) {

    /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media (min-width:961px) {

    /* tablet, landscape iPad, lo-res laptops ands desktops */

}

@media (min-width:1025px) {

    /* big landscape tablets, laptops, and desktops */
    .row-container {
        font-size: 3.25vw;
    }

    .row-container-medium {
        font-size: 2.5vmax !important;
    }

    .row-container-large {
        font-size: 3vmax !important;
    }

    .fullwidth {
      width: 100%;
    }
    
    #tables-container {
        overflow-y: visible;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 2vmax;
    }
}

@media (min-width:1281px) {

    /* hi-res laptops and desktops */
    .row-container {
        font-size: 1.1cm;
    }

}

@media screen and (min-width: 1920px) {

    /* For Projectors or Higher Resolution Screens (Full HD) */
    h1 {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 3840px) {

    /* For 4K Displays (Ultra HD) */
    h1 {
        font-size: 5rem;
    }

    .row-container {
        font-size: 4vmin;
    }
}


#error-msg {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #80808082;
  font-size: x-large;
}
