@font-face {
    font-family: 'Yekan Bakh';
    src: url('../fonts/YekanBakh-Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Yekan Bakh Bold';
    src: url('../fonts/YekanBakh-Bold.otf');
    font-weight: bold;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Yekan Bakh Light';
    src: url('../fonts/YekanBakh-Light.otf');
    font-weight: bold;
    font-style: normal;
    font-display: block;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

:root {
    --primary-color: #286CFB;
    --secondary-color: #F6B50E;
}

.tooltip {
    --bs-tooltip-max-width: 30rem !important;
}

html {
    width: 100vw;
    height: 100vh;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Yekan Bakh';
    background-image: url('../image/mask.png'), linear-gradient(180deg, #2768E7 43.31%, #0047D2 100%);
    background-position: bottom;
    background-repeat: repeat-x;
    position: relative;
    font-size: 0;
    display: flex;
}

nav {
    flex-direction: column;
    display: flex;
    min-width: 16rem;
    justify-content: start;
    margin-right: 1rem;
}

.logo-container {
    text-align: center;
    height: 20%;
}

.logo {
    height: calc(100% - 1.25rem);
}

.logo-splitor {
    width: 16rem;
    height: 0.125rem;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) -7.77%, rgba(255, 255, 255, 0.22) 30.81%, rgba(255, 255, 255, 0.22) 69.14%, rgba(255, 255, 255, 0.00) 106.33%);
    display: flex;
    margin: 1rem auto;
}

.just-mobile {
    display: none;
}

.ignore-bottom-right-border {
    border-bottom-right-radius: 0 !important;
}

.ignore-bottom-left-border {
    border-bottom-left-radius: 0 !important;
}

.ellipsis {
    background: var(--secondary-color);
    border-top-right-radius: .25rem;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    position: relative;
    width: 2rem;
    height: 1rem;
    display: inline-block;
    vertical-align: sub;
    font-family: math;
    margin: 0 .5rem;
}

    .ellipsis span {
        height: 1rem;
        display: inline;
        position: absolute;
        color: white;
        top: 0;
        left: 50%;
        transform: translate(-50%, 15%);
        line-height: 0;
        font-size: 2rem;
        letter-spacing: 1px;
    }

.rotate-180 {
    rotate: 180deg;
}

section,
.content {
    position: relative;
}

.backdrop {
    width: 100vw;
    height: 100vh;
    position: fixed;
}

textarea {
    color: #545454;
}

.hidden {
    display: none;
}

.modal-print {
    cursor: pointer;
}
.highlight {
    color: #ff9b00;
}