@font-face {
    font-family: 'yekan';
    src: url("../font/YekanBakhFaNum-Medium.woff2") format('woff2');
}

body {
    font-family: yekan, serif !important;
    direction: rtl;
}

[type=email], [type=number], [type=tel], [type=url] {
    direction: rtl !important;
}

html {
    direction: rtl;
}

a {
    text-decoration: none;
}

.text-white {
    color: #fff;
}

span[role=alert] {
    color: #c00;
    margin: 10px 0;
    display: inline-block;
}


.v-toast__item.v-toast__item--top-right, .v-toast__item.v-toast__item--bottom-right {
    flex-direction: row-reverse;
}

.v-toast__item .v-toast__icon {
    margin-left: 0;
    margin-right: 1em;
}

.activeItem .v-list-item--density-default.v-list-item--one-line {
    background-color: #fff !important;
    color: #333 !important;
}

.v-list-item-title {
    text-decoration: none !important;
}

a{
    text-decoration: none !important;
}

.card-text{
    height: 50px;
}

.text-overflow-2 {
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.py-50{
    padding: 50px 0;
}

.card-img-top{
    height: 220px;
    object-fit: cover;
}

.bounce-enter-active {
    animation: bounce-in 0.3s;
}
.bounce-leave-active {
    animation: bounce-in 0.3s reverse;
}
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
