.toast {
    position: fixed;
    z-index: 999999;
    width: 250px;
    right: 20px;
    top: 20px;

    transform: translateX(120%);
    opacity: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 10px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    text-align: left;
    border:none;
}

.toast.show {
    transform: translateX(0%);
    opacity: 1;
}
.toast.success {
    background: #249124;
    color: #fff;
    font-weight: bolder;
}
.toast.danger {
    background: #d55a5a;
    color: #000;
    font-weight: bolder;
}
.show {
    display: block !important;
}
.hide{
    display: none !important;
}
.app-title {
    margin: -30px -30px 5px;
    padding: 5px 30px;
}
.tile {
    margin-bottom: 5px;
    padding: 5px;
}
.inactive td {
    background-color: #c35353 !important;
}
.pending td {
    background-color: 82c1cb !important;
}
.inprogress td {
    background-color: #0dcaf0 !important;
}
.dashboard h4 {
    font-size: 13px !important;
    font-weight: bold !important;
    font-family: arial !important;
    text-transform: capitalize !important;
}
.modal-body .icons i {
    padding: 5px 5px;
    font-size: 20px;
    background: #15beae;
    border-radius: 5px;
    cursor: pointer;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.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: 26px;
    width: 26px;
    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%;
}
@media (max-width: 767px) {
    .user-tabs {
        flex-direction: row !important;
    }
    .app-title {
        margin: -15px -15px 5px;
        padding: 5px 30px;
    }
}