@font-face {
    font-family: 'iranSans';
    src: url('../fonts/iranSans.ttf');
}

* {
    margin: 0;
    padding: 0;
    font-family: 'iranSans', serif;
}

*,
.userSelect {
    user-select: none;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
}

ul {
    direction: rtl;
}

li {
    list-style: decimal !important;
}

a {
    list-style: none;
    text-decoration: none;
}

.cursorPointer,
form label {
    cursor: pointer;
}

form input {
    direction: ltr;
    color: whitesmoke;
    padding: .375rem .75rem;
}

form input::placeholder {
    direction: rtl;
    text-align: right;
}

textarea {
    min-height: 41.6px;
    max-height: 230px;
}

#title,
#firstName,
#lastName {
    direction: rtl;
    text-align: right;
}

.bi {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: -.125em;
    fill: currentColor;
}

.glass {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
}

#mobile-menu {
    z-index: 100;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.relative {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.sidebar {
    transition: transform 0.3s ease-in-out;
}

.sidebar-closed {
    transform: translateX(100%);
}

.sidebar-open {
    transform: translateX(0);
}

.alert-danger {
    display: flex;
    background-color: rgba(255, 99, 71, .1);
    margin-bottom: 7px;
    padding: 1rem;
    align-items: center;
    border: 1px solid tomato;
    border-radius: 5px;
}

.text-danger {
    color: rgb(220, 55, 70);
}

.card {
    position: relative;
    display: flex;
    background-color: rgba(255, 255, 255, .1);
    background-clip: border-box;
    color: whitesmoke;
    min-width: 0;
    flex-direction: column;
    word-wrap: break-word;
    border-radius: .375rem;
    border: 1px solid rgba(255, 255, 255, .1);
}

.card-header {
    background-color: rgba(255, 255, 255, .04);
    padding: .5rem 1rem;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.card-header svg,
.inline-block svg {
    display: inline-block;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem;
}

.table-responsive {
    overflow-x: auto;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
}

.table {
    margin-bottom: 1rem;
    width: 100%;
    vertical-align: top;
}

.table > :not(caption) > * > * {
    text-align: -webkit-center;
    padding: 10px 35px;
    border-bottom-width: 1px;
}

tr,
th,
td {
    white-space: nowrap;
}

tbody th,
tbody td {
    user-select: text;
}

.fixed-size {
    max-width: 100%;
    width: 100%;
    height: 225px;
    object-position: center;
}