/* Display */
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}

/* Direction */
.flex-row {
    flex-direction: row !important;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-column-reverse {
    flex-direction: column-reverse !important;
}

/* Wrap */
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-nowrap {
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

/* Justify Content */
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-around {
    justify-content: space-around !important;
}
.justify-content-evenly {
    justify-content: space-evenly !important;
}

/* Align Items */
.align-items-start {
    align-items: flex-start !important;
}
.align-items-end {
    align-items: flex-end !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-baseline {
    align-items: baseline !important;
}
.align-items-stretch {
    align-items: stretch !important;
}

/* Align Content */
.align-content-start {
    align-content: flex-start !important;
}
.align-content-end {
    align-content: flex-end !important;
}
.align-content-center {
    align-content: center !important;
}
.align-content-between {
    align-content: space-between !important;
}
.align-content-around {
    align-content: space-around !important;
}
.align-content-stretch {
    align-content: stretch !important;
}

/* Align Self */
.align-self-auto {
    align-self: auto !important;
}
.align-self-start {
    align-self: flex-start !important;
}
.align-self-end {
    align-self: flex-end !important;
}
.align-self-center {
    align-self: center !important;
}
.align-self-baseline {
    align-self: baseline !important;
}
.align-self-stretch {
    align-self: stretch !important;
}



/*rooms*/

#manage .room_icon {
    border: 1px solid #000;
    border-radius: 3px;
    padding-top: 10px;
    background-color: #daf0ff;
    margin-right: 30px;
}

.img_right_text {
    text-align: right;
    padding-right: 20px;
    font-size: 2.2em;
    font-style: italic;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.roomListBox{
    text-align: center;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px 0 0 10px;
    margin: 10px;
    display: inline-block;
}


/*global*/
.text-center{
    text-align: center !important;
}

.text-blue{
    color: #4049FB;
}

.text-blue:hover{
    color: black !important;
}

.text-secondary{
    color: #D3D2D2;
}

.btn{
    height: 30px;
    margin: 0 2px;
    padding: 0 10px !important;
    background-color: #daf0ff;
    border: 1px solid #000;
    color: #000;
    background-repeat: no-repeat;
    vertical-align: bottom;
    cursor: pointer;
    font-size: .9em;
    display: inline-flex !important;
    align-items: center;
    border-radius: 3px;
}

.btn:hover{
    background: white;
    color: black;
}

/*input[type=checkbox]{*/
/*    background-color: #FA9E57;*/
/*}*/

.remove_button {
    background: #882f2f !important;
    color: black !important;
    margin-left: -8px;
    display: inline-flex;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
}

.remove_button:hover {
    background-color: #c97575 !important;
    color: black !important;
    /*border: 1px solid grey;*/
}

.deletedWarning{
    padding: 10px;
    border: 2px solid #FD2C14;
    color: #FD2C14;
    margin-bottom: 10px;
    font-weight: 600;
}