.danger {
    color: #ff4332;
}

.success {
    color: #28a745;
}

.alert-text {
    font-size: 12px;
    padding-bottom: 5px;
}

label {
    font-size: 16px;
    font-weight: 600;
}

/* .write-massage-area .write-massage-content .write-massage-input .input-box select {
    width: 100%;
    height: 68px;
    padding-left: 30px;
    background: #fbf0ee;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    color: #817a78;
}

.write-massage-area .write-massage-content .write-massage-input .input-box select::placeholder {
    opacity: 1;
    color: #817a78;
} */

i, span, a{
    display: block;
}

/* Room Cards */

.card__red {
    width: 70px;
    border: 1px solid #EF9A9A;
    border-radius: 4px;
    color: #D32F2F;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-transform: capitalize;
    margin-top: 10px;
    margin-right: 10px;
}

.card__red-header {
    background-color: #FFEBEE;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid #EF9A9A;
    padding: 5px 10px;
}

.card__red-main {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.card:hover {
    cursor: pointer;
    box-shadow: 10px 10px 32px 0px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.card__blue {
    width: 70px;
    border: 1px solid #80DEEA;
    border-radius: 4px;
    color: #0097A7;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-transform: capitalize;
    margin-top: 10px;
    margin-right: 10px;
}

.card__blue-header {
    background-color: #E0F7FA;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid #80DEEA;
    padding: 5px 10px;
}

.card__blue-main {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.content {
    max-width: 1000px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0 auto;
}

/* End Room Cards */

/* Custom CheckBox */
.squaredTwo {
    width: 28px;
    height: 28px;
    position: relative;
    margin: 20px auto;
    background: #fcfff4;
    background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  }
  .squaredTwo label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    left: 4px;
    top: 4px;
    background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  }
  .squaredTwo label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #fcfff4;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    transform: rotate(-45deg);
  }
  .squaredTwo label:hover::after {
    opacity: 0.3;
  }
  .squaredTwo input[type=checkbox] {
    visibility: hidden;
  }
  .squaredTwo input[type=checkbox]:checked + label:after {
    opacity: 1;
  }
/* End Custom CheckBox */