/**
 *
 * Apply Here your Custom CSS
 *
*/
input[type="radio"], input[type="checkbox"] {
    margin: 2px 0 0;
}

.d-flex {
    display: flex;
}
h2.title.d-flex {
    align-items: center;
}

h2.title.d-flex span {
    margin-right: 15px;
}

.list-group-item.main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.justify-space-between {
    justify-content: space-between;
}
.justify-space-around {
    justify-content: space-around;
}
.align-items-center {
    align-items: center;
}

.rooms-wrapper .room {
    border: 1px solid #000;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-flex;
    flex-direction: column;
}
.rooms-wrapper .room .head {
    padding: 5px;
    border-bottom: 1px solid #000;
}

.rooms-wrapper .room .head .name,
.rooms-wrapper .room .head .icons{
    margin-right: 10px;
}

.rooms-wrapper .room .head .icons i {
    font-size: 18px;
}

.rooms-wrapper .room .places {
    display: inline-flex;
    padding: 10px 10px 0 10px;
}
.rooms-wrapper .room .places + .places {
    padding-top: 0;
    padding-bottom: 10px;
}

.rooms-wrapper .room .place {
    cursor: pointer;
    width: 40px;
    height: 70px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    background: #fff;
    border: 1px solid #000;
    position: relative;
}
.rooms-wrapper .room .place i {
    font-size: 14px;
    position: absolute;
    top: 5px;
    left: 5px;
}
.rooms-wrapper .room .place i.place-description {
    bottom: 3px;
    top: inherit;
    left: 11px;
    color: red;
}
.rooms-wrapper .room .place.status-free {
    background: #acffdb;
    border-color: #acffdb;
}
.rooms-wrapper .room .place.status-busy {
    background: #ffbcbc;
    border-color: #ffbcbc;
}
.rooms-wrapper .room .place.status-booked {
    background: #fffE7c;
    border-color: #fffE7c;
}
.rooms-wrapper .room .place.status-hospitalized {
    background: #ccc;
    border-color: #ccc;
}

.rooms-wrapper .room .place .price {
    font-weight: bold;
    font-size: 10px;
    color: #000;
}

.modal-footer {
    text-align: left;
}
.pans-stats {
    margin-top: 30px;
    padding-left: 0px;
    margin-left: 0;
}
.pans-stats li {
    margin-left: 15px;
}
.list-group-item.main .first-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list-group-item.main .first-block .status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
}
.list-group-item.main .first-block .info {
    font-size: 20px;
    margin-left: 5px;
    cursor: pointer;
}
.list-group-item.main .free {
    margin-right: 10px;
}
#pension-checkboxes div{margin-bottom:5px}
#pension-checkboxes span{font-size:14px}