.horizontal-items {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    direction: ltr !important;
    cursor: pointer !important;
}

@media (min-width: 1px) {
    .horizontal-items::-webkit-scrollbar {
        display: none;
    }
}

/*Small*/
@media (min-width: 576px) {
    .horizontal-items::-webkit-scrollbar {
        display: none;
    }

}

/*Medium*/
@media (min-width: 768px) {
    .horizontal-items::-webkit-scrollbar {
        display: none;
    }
}

/*Large*/
@media (min-width: 992px) {
    .horizontal-items::-webkit-scrollbar {
        display: none;
    }
}

/*Extra Large*/
@media (min-width: 1200px) {
    .horizontal-items::-webkit-scrollbar {
        display: none;
    }
}

/*Extra Extra Large*/
@media (min-width: 1400px) {
    .horizontal-items::-webkit-scrollbar {
        display: none;
    }
}

.cursor-pointer {
    cursor: pointer !important;
}

.atmc-text-stroke {
    text-shadow: 1px 0 #e1e1e1,
        0 -1px #e1e1e1,
        -1px 0 #e1e1e1,
        0 1px #e1e1e1;
}

@keyframes blinking {
    0% {
        opacity: 1.00;
    }

    50% {
        opacity: 0.00;
    }

    100% {
        opacity: 1.00;
    }
}

.blink {
    animation-name: blinking;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.blink-2 {
    animation-name: blinking;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.blink-3 {
    animation-name: blinking;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

a {
    text-decoration: none !important;
}

ol.breadcrumb::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--highlight-color);
}

.text-justify {
    text-align: justify !important;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

.pagination .page-item .page-link {
    color: var(--primary-color);
}

.bg-transparent a {
    background-color: white !important;
    color: var(--primary-color) !important;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-2:empty::before {
    content: "  \A  ";
    font-weight: 900;
    white-space: pre;
}

.text-truncate-3:empty::before {
    content: "  \A   \A  ";
    font-weight: 900;
    white-space: pre;
}

.crd {
    margin-top: 50px;
}

.crd .img-parent {
    position: relative;
    top: -50px;
    transform: rotate(-1deg);
}

.crd .badges {
    margin-top: -30px;
    margin-bottom: 20px;
}

.owl-carousel .crd {
    margin-top: 0;
    display: contents !important;
    position: static;
    top: 0;
}

.owl-carousel .card-body {
    padding-top: 0;
}

.owl-carousel .crd .img-parent {
    position: static;
    top: 0;
    transform: rotate(0deg);
}

.owl-carousel .crd .badges {
    margin-top: 20px;
}

.owl-dots {
    position: absolute;
    top: -40px;
    text-align: center;
    margin-top: 15px;
}

.owl-dot span {
    width: 10px;
    height: 8px;
    background: rgba(123, 31, 162, 0.5);
    display: block;
    border-radius: 5px;
    margin: 3px;
}

.owl-dot:not(.active) span {
    transition: 500ms;
}

.owl-dot.active span {
    width: 30px;
    transition: 500ms;
    background: rgba(26, 204, 141, 0.75);
}

.owl-nav {
    position: absolute;
    bottom: -70%;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateY(-50%);
    padding: 0 10px;
}

.owl-nav button {
    margin-left: 20px;
    margin-right: 20px;
    border: 1px solid black;
    cursor: pointer;
}

@media (min-width: 768px) {
    .owl-dots {
        position: static;
        top: 0;
    }
}

.d-contents {
    display: contents !important;
}

@keyframes floating {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

.dragscroll-x {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.dragscroll-x > * {
    flex: 0 0 auto;
}
.rtl{
    direction: rtl;
}
.ltr{
    direction: ltr;
}
