.notes-list-title {
    grid-column: 1/2;
}

.profile-top-tab-text,
.task-top-tab-text, #add-appointment-on-page-toggle {
    white-space: nowrap;
    overflow: hidden;
}

.profile-notes-wrapper {
    min-height: auto;
}

.fc-daygrid-day {
    cursor: pointer;
}

.fc-h-event {
    border: none;
}
/* .fc-h-event .fc-event-main-frame {
    flex-direction: column-reverse;
}

.fc-event-main-frame {
    background-color: var(--theme-light-gray);
    cursor: pointer;
    padding: 10px;
}

.fc-event-main-frame .fc-event-title-container .fc-event-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: var(--theme-text);
    text-overflow: ellipsis;
}

.fc-event-main-frame .fc-event-time {
    font-weight: 500;
    font-size: 12px;
    color: var(--theme-gray);
} */

.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.toggle-switch-view .toggle-switch-title {
    font-weight: 400;
    font-size: 14px;
}

.toggle-switch-view {
    text-align: right;
}

@media only screen and (max-device-width: 768px) {
    .toggle-switch-view {
        text-align: center;
    }
}

@media screen and (max-width: 1170px) {
    .leads-table-avatar {
        height: 32px;
        width: 32px;
    }
}

.leads-table-avatar {
    background-color: #d9d9d9;
    padding: 5px;
    margin-right: 5px;
}

.appointments-search
{
    flex: 0 0 340px;
    max-width: 340px;
    margin-right:5px;
}

.appointments-header-add {
    padding-left: 0px;
}

.border-danger {
    border: 1px solid #dc3545 !important;
}
.error_label_2 {
    color: var(--theme-red);
    font-size: 14px;
    /* display: none; */
}