/*
    * MyStyle v1.0 (https://saftariyadi.com/)
    * Copyright 2011-2025 By Safta Riyadi
*/

body {
    font-family: Arial, sans-serif;
}

.container {
    max-width: 720px;
    margin-top: 35px;
}

.table {
    margin-top: 5px;
    margin-bottom: 10px;
}

.table td, .table th {
    vertical-align: middle;
    text-align: center;
}

.table td {
    padding-top: 2px;
    padding-bottom: 2px;
}

.arabic-text {
    font-family: 'Amiri', 'Scheherazade New', 'Arial', sans-serif;
    font-size: 30px;
    /* text-align: justify; */
    direction: rtl;
    line-height: 2;
}

.indo-text {
    text-align: justify;
    line-height: 1.5;
}

.perdatate-text {
    text-align: justify;
    line-height: 1.3;
}

.notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #adb5bd;
     /*-moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;*/
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    display: inline-flex;
}

.notification div.marquee {
    font-size: 18px;
    display: flex;
    flex-basis: 100%;
    padding-left: 100%;
    animation: marquee 75s linear infinite;
    -moz-animation: marquee 75 linear infinite;
    -webkit-animation: marquee 75s linear infinite;
}

.notification div.marquee:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}