/************ General Styles ****************/
@import url("bootstrap-icons.css");
* {
    box-sizing: border-box;
}

@font-face {
    font-family: "bootstrap-icons";
    src: url("../fonts/bootstrap-icons.woff2"),
    url("../fonts/bootstrap-icons.woff")
}

@font-face {
    font-family: Bebas;
    src: url(../fonts/Bebas-Regular.otf);
}

@font-face {
    font-family: Frutiger-Roman;
    src: url(../fonts/FrutigerLTArabic55Roman.ttf);
}

@font-face {
    font-family: Frutiger-bold;
    src: url(../fonts/FrutigerLTArabic65Bold.ttf);
}

@font-face {
    font-family: SHPinscher;
    src: url(../fonts/SHPinscher-Regular.otf);
}

@font-face {
    font-family: digital;
    src: url(../fonts/digital-7.ttf);
}

::-webkit-scrollbar { width: 5px }

::-webkit-scrollbar-track { background: #333 }

::-webkit-scrollbar-thumb { background: #cf152d }

::-moz-selection {
    color: #fff;
    background: #cf152d;
}

::selection {
    color: #fff;
    background: #cf152d;
}

:root {
    --black: #333132;
    --red: #ed1c24;
    --green: #00af4c;
    --yellow: #febc11;
    --gray: #3e3c3c;
    --desert: #f29b1f;
    --blue: #134b63;
    --light-blue: #007bff;
    --purple: #6f42c1;
}

html {
    scroll-behavior: smooth;
    overflow: hidden;
    background-color: #2a2a2e;
}

body {
    background-color: #2a2a2e;
    overflow: hidden;
}

.container-fluid {
    background-color: var(--black);
    width: 98%;
    margin: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Bebas, serif !important;
    direction: rtl;
    color: #212529;
    letter-spacing: 7px;
}

p, span, a, td {
    font-family: SHPinscher, sans-serif !important;
    text-decoration: none;
    color: #212529;
    font-size: .9em;
    font-weight: bold;
}

.ar h1, .ar h2, .ar h3, .ar h4, .ar h5, .ar h6 {
    font-family: Frutiger-bold, serif !important;
    direction: rtl;
    color: #212529;
    letter-spacing: 0px;
}

.ar p, .ar span, .ar a, .ar td {
    font-family: Frutiger-Roman, sans-serif !important;
    text-decoration: none;
    color: #212529;
    font-size: .9em;
    font-weight: bold;
}

.table-bordered td, .table-bordered th {
    border: 10px solid var(--black)
}

.table td {
    background-color: var(--gray);
    padding: 0;
    margin: 0;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    font-size: 1.6em;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ar .table td {
    font-size: 1.3em;
    letter-spacing: 0px;
}

.table-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--desert);
    padding: 0.5rem;
}

.table-header .plan-icon {
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    /*background-color: var(--black);*/
    /*padding: 1rem 0.5rem;*/
    width: 3.5rem;
    height: 3.5rem;
    /*line-height: 3.5rem;*/
}

.table-header .plan-icon i {
    color: var(--desert);
    font-size: 2em;
}

.text-light {
    color: var(--desert) !important;
}

.spinner-border {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border: .35em solid currentcolor;
    border-right-color: transparent;
}

.flip-container {
    perspective: 2000px;
    position: relative;
    width: 100%;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    background-color: var(--black);
}

.flip-back {
    transform: rotateY(180deg);
}

.flip-container.flipped .flip-inner {
    transform: rotateY(180deg);
}

.footer {
    position: fixed;
    bottom: 0;
    background-color: var(--black);
    left: 0;
    margin: 0;
    width: 100%;
}

.footer img {
    width: 150px;
    height: 80px;
}

.footer h3 {
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--white);
}

.footer .digitalClock {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer span:not(.dot) {
    display: block;
    margin: 0 3px;
    font-size: 1.2em;
    background-color: var(--desert);
    /*padding: 5px 10px;*/
    width: 3.5rem;
    height: 3rem;
    border-radius: 4px;
    line-height: 3rem;
    text-align: center;
    /*font-family: digital, serif !important;*/
    letter-spacing: 3px;
    font-family: SHPinscher, sans-serif !important;
}

.footer .dot {
    display: block;
    font-size: 1.2em;
    color: var(--desert);
    padding-bottom: .8rem;
}


