* {
    font-family: "Cairo", serif !important;
}

.form-control:focus::placeholder {
    transform: translate(-5px) !important;
}
.form-control[dir="ltr"]:focus::placeholder {
    transform: translate(5px) !important;
}

.offcanvas-header .btn-close {
    left: unset !important;
    right: -35px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

[dir=rtl] thead, tbody, tfoot, tr, td, th {
    border-color: var(--bs-table-border-color) !important;
}

/* Status progress */
[dir=rtl] .status-progress ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    user-select: none;
}
[dir=rtl] .status-progress ul li {
    flex: 1;
    position: relative;
    background-color: #e7ebef;
    color: white;
    padding: 10px 40px 10px 30px;
    font-weight: 500;
    text-align: center;
    margin-left: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 36px;
    opacity: 0.3;
}
[dir=rtl] .status-progress ul li.active {
    opacity: 1;
}

[dir=rtl] .status-progress ul li .after {
    position: absolute;
    top: 0;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 15px solid #e7ebef;
}
[dir=rtl] .status-progress ul li .before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 15px solid white;
}

[dir=rtl] .status-progress ul li:first-child {
    padding-right: 20px;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
[dir=rtl] .status-progress ul li:first-child .before {
    display: none;
}

[dir=rtl] .status-progress ul li:last-child {
    padding-left: 20px;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    margin-left: 0;
}
[dir=rtl] .status-progress ul li:last-child .after {
    display: none;
}

/* Notifications */
.dropdown-notifications-item b {
    font-weight: 700 !important;
}