/* ============================DATA TABLE==================================== */
table:not(.table-condensed) thead {
    background-color: #808080;
    color: #ffffff;
}
table:not(.table-condensed) tbody tr:nth-child(even) {
    background-color: #EBEBEB;
}
table:not(.table-condensed) tbody tr:nth-child(odd) {
    background-color: #DDDDDD;
}

/* ================================================================ */
.far.fa-trash-alt {
    cursor: pointer;
}

.text-decoration-underline {
    text-decoration: underline !important;
}
/* ===============================DROPDOWN GROUP=========================== */
.dropdown-group {
    display: flex;
    width: 50%;
}

.dropdown-group .dropdown-label {
    min-width: 68px;
    font-size: 16px;
    padding: 9px 18px;
    text-align: center;
    display: flex;
    background-color: #707070;
    color: #ffffff;
}
.dropdown-group select {
    border-radius: unset;
    font-size: 16px;
}
/* ============================NOTIFICATION ============================ */
.notification {
    position: relative;
}
.notification-modal {
    display: block;
    position: absolute;
    background-color: #eeeeee;
    z-index: 111111;
    right: 0;
    width: 450px;
    padding: 10px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 10px;
}
.dissmiss-notification {
    font-size: 15px;
    line-height: 25px;
    width: 30px;
    text-align: center;
    cursor: pointer;
}
.notification-item .booking-pending {
    color: #000000;
}
.notification-item .booking-canceled {
    color: #980000;
}
.notification-modal hr {
    margin-top: 0;
}
.notification-item:last-child hr {
    display: none;
}
.notification-btn {
    background-color: #fffb00;
    color: #000000;
}
.notification-btn.empty {
    background-color: #939393;
    color: #ffffff;
}
@-webkit-keyframes glowing {
    0% { background-color: #fffb00; -webkit-box-shadow: 0 0 3px #fffb00; }
    50% { background-color: #939393; -webkit-box-shadow: 0 0 10px #939393; }
    100% { background-color: #fffb00; -webkit-box-shadow: 0 0 3px #fffb00; }
  }

  @-moz-keyframes glowing {
    0% { background-color: #fffb00; -moz-box-shadow: 0 0 3px #fffb00; }
    50% { background-color: #939393; -moz-box-shadow: 0 0 10px #939393; }
    100% { background-color: #fffb00; -moz-box-shadow: 0 0 3px #fffb00; }
  }

  @-o-keyframes glowing {
    0% { background-color: #fffb00; box-shadow: 0 0 3px #fffb00; }
    50% { background-color: #939393; box-shadow: 0 0 10px #939393; }
    100% { background-color: #fffb00; box-shadow: 0 0 3px #fffb00; }
  }

  @keyframes glowing {
    0% { background-color: #fffb00; box-shadow: 0 0 3px #fffb00; }
    50% { background-color: #939393; box-shadow: 0 0 10px #939393; }
    100% { background-color: #fffb00; box-shadow: 0 0 3px #fffb00; }
  }
.notification-btn.active{
    /* background-color: #fffb00 !important; */
    /* background-color: #fffb00; */
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.ui-tooltip{
    max-width: 200px !important;
    padding: 0.25rem 0.5rem !important;
    text-align: center !important;
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 0.25rem !important;
    font-size: 12px !important;
    border: none !important;
    box-shadow: none !important;
}
