#saveformcontainer {
    position: fixed;
    bottom: 8px;
    right: 15px;
    z-index: 5;
}
.btn-normal, .btn-outline {
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 700;
    transition: .2s;
}
.btn-normal {
    background: #222e3c;
    border: 1px solid #222e3c;
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 1px solid #222e3c;
    color: #222e3c;
}

/* << BOOTSTRAP MODIFICATIONS */
.nav-tabs .nav-link {
    color: #222e3c;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    /* background-color: #f2f2f2; */
    background-color: #fff;
    border-color: #222e3c #222e3c #fff;
    font-weight: 700;
}
.nav-tabs .nav-link:hover {
    border-bottom-color: #222e3c;
}
.nav-tabs .nav-link.active:hover {
    border-bottom-color: #fff;
}
.nav-tabs {
    border-bottom: 1px solid #222e3c;
}
/* BOOTSTRAP MODIFICATIONS >> */

/* << CALENDAR */
#calendar {
    width: 100%;
    /* margin: 20px auto; */
    border: 1px solid #222e3c;
    border-radius: 8px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.calendar-week-days,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}
.calendar-header {}
.calendar-week-days {
    background-color: #f2f2f2;
    padding: 10px;
}
.prev-month-btn,
.next-month-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222e3c;
    border: 1px solid #222e3c;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}
.prev-month-btn i {
    margin-left: -4px;
}
.next-month-btn i {
    margin-right: -4px;
}
.today-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    width: 33px;
    height: 33px;
    font-size: 20px;
    color: #222e3c;
    margin-right: 5px;
    cursor: pointer;
    outline: none;
}
.calendar-day-of-week {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #222e3c;
    cursor: pointer;
}
.calendar-day {
    position: relative;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    text-align: center;
    /* cursor: pointer; */
    transition: .2s;
    opacity: .3;
}
.calendar-day.empty-day {
    border-color: transparent;
    cursor: default;
}
.calendar-day.before {
    background: #f2f2f2;
    border-color: #f2f2f2;
    cursor: default;
}
.calendar-day.holiday {
    background: repeating-linear-gradient(45deg, #DDD, #DDD 1px, #f2f2f2 1px, #f2f2f2 7px);
    border-color: #f2f2f2;
    cursor: default;
}
.calendar-day.today {
    background: #d0f6fc;
}
.calendar-day.today.holiday {
    background: repeating-linear-gradient(45deg, #DDD, #DDD 1px, #d0f6fc 1px, #d0f6fc 7px);
    cursor: default;
}
.calendar-day .dateday {
    font-weight: 700;
}
.calendar-day.othermonth {
    background: #fff;
    border-color: #f2f2f2;
}
.calendar-day.othermonth.holiday {
    background: repeating-linear-gradient(45deg, #DDD, #DDD 1px, #fff 1px, #fff 7px);
    cursor: default;
}
.calendar-day.othermonth .dateday {
    color: #AAA;
}
.calendar-day.othermonth.today {
    background: #d0f6fc;
}
.calendar-day.available {
    border-color: var(--blue);
    cursor: pointer !important;
    opacity: 1;
}
.calendar-day.available .dateday {
    color: var(--blue);
}

.calendar-day.selected {
    background: #222e3c;
    border-color: #222e3c;
}
.calendar-day.selected .dateday {
    color: #fff;
}
.calendar-day.available:hover {
    background: #fffbdb;
    border-color: var(--blue) !important;
}

/* .calendar-day:not(.empty-day):not(.holiday):not(.before):hover {
    background: #fffbdb;
    border-color: #222e3c;
} */
.calendar-day.selected:not(.empty-day):not(.holiday):hover {
    background: #222e3c !important;
    border-color: #222e3c !important;
    color: #fff !important;
}
.current-month-year {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.has-slots {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
}
/* .has-slots:after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2.5px;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background-color: #28a745;
    opacity: 0.5;
    animation: pulsar 1.5s infinite alternate;
} */
@keyframes pulsar {
    to {
        transform: scale(1.2);
        opacity: 0;
    }
}

#scheduleinbulk {
    margin-top: 15px;
}
#scheduleinbulk h3 {
    font-weight: 700;
    color: #222e3c;
}
.inputlabel {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}
.inputfield.check, 
.inputfield.inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.inputfield.check .custom-control {
    min-height: unset;
    margin-bottom: 0;
}
.inputfield.check .custom-control-label:after,
.inputfield.check .custom-control-label:before {
    top: -1px;
}
.inputfield.check .custom-control-input:checked~.custom-control-label:before {
    border-color: #222e3c;
    background-color: #222e3c;
}
/* CALENDAR >> */

/* << TIME SLOTS */
#time-slots .slots {
    padding: 10px;
}
#time-slots .empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    padding: 10px 20px;
    height: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #222e3c;
    border: 1px dashed #222e3c;
    border-radius: 8px;
}
#time-slots .slots .slots-header {
    margin-top: 5px;
}
#time-slots .slots .slots-footer {
    margin-top: 20px;
    text-align: center;
}
#time-slots .slots h3 {
    font-weight: 700;
    color: #222e3c;
}
.slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 10px;
    border: 1px solid #222e3c;
    border-radius: 5px;
    margin-top: 10px;
}
.slot i {
    font-size: 26px;
}
.slot .dragdrop, 
.slot .actions {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slot .dragdrop {
    cursor: pointer;
}
.slot .timerange {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.slot .actions button {
    background: none;
    border: none;
}
.slot .actions button i {
    color: var(--red);
}
#time-slots .slots .slots-footer .btn-addslot {
    background: #222e3c;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 700;
    color: #fff;
}
/* TIME SLOTS >> */
