body{
    background-color: #f7f5f2;
}

.thumbnail
{
    max-height:60px;
    max-width:80px;
}

#roomsImgContainer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#roomsImgContainer > div {
    width:80px;
    margin:5px 7px;
    text-align: center;
}

#roomsImgContainer > div div {
    font-size:smaller;
    font-style: italic;
}

.padding-header {
    padding-top:32px !important;
    padding-bottom:20px !important;
}


.lnkMenu {
    display:flex; justify-content: space-between;
}

input[type=checkbox] {
    visibility: hidden;
}


.gdpr
{
    display: flex; 
}

.gdpr-label {
    padding:5px 0px;
}


/**
 * Checkbox Four
 */
 .checkboxFour {
    min-width: 40px;
    margin-right:20px;
    height: 40px;
    background: #ddd;
    border-radius: 100%;
    position: relative;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
 }

 /**
 * Create the checkbox button
 */
.checkboxFour label {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100px;

    transition: all .5s ease;
    cursor: pointer;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;

    background: #333;
    box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
}

/**
 * Create the checked state
 */
 .checkboxFour input[type=checkbox]:checked + label {
    background: #26ca28;
}