@font-face {
    font-family: 'Tajawal-ExtraLight';
    src: url(../font/Tajawal-ExtraLight.ttf);
}

@font-face {
    font-family: 'Tajawal-Light';
    src: url(../font/Tajawal-Light.ttf);
}

@font-face {
    font-family: 'Tajawal-Medium';
    src: url(../font/Tajawal-Medium.ttf);
}

@font-face {
    font-family: 'Tajawal-Regular';
    src: url(../font/Tajawal-Regular.ttf);
}

@font-face {
    font-family: 'Tajawal-Bold';
    src: url(../font/Tajawal-Bold.ttf);
}

@font-face {
    font-family: 'Tajawal-ExtraBold';
    src: url(../font/Tajawal-ExtraBold.ttf);
}

@font-face {
    font-family: 'Tajawal-Black';
    src: url(../font/Tajawal-Black.ttf);
}

html, body {
    font-family: 'Tajawal-Regular';
    text-align: right;
    background-color: #f5f5f5;
}

a {
    color: var(--secondaryColor);
}

.headerCont {
    background: linear-gradient( 129deg, #155300, #90EF90);
    color: var(--mainTextColor);
    height: 250px;
    padding: 15px;
    text-align: center;
    position: fixed;
    z-index: 100;
    overflow: hidden;
    border-radius: 0 0 70px 70px;
    width: 100%;
    top: 0;
    left:0;
    transition-duration:0.3s;
}

    .headerCont .logo {
        height: 45px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .headerCont i {
        color: #ce1212;
        font-size: 22px;
        margin-top: 10px;
        background: rgba(255,255,255,0.5);
        padding: 8px;
        width: 40px;
        height: 40px;
        text-align: center;
        border-radius: 7px;
    }

    .headerCont.load{
        height:100px!important;
        border-radius:0!important;
    }

.mainFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--mainColor);
    color: var(--mainTextColor);
    text-align: center;
    height: 80px;
    padding: 20px;
    z-index: 300;
}

    .mainFooter:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: calc(50% - 50px);
        height: 100px;
        width: 100px;
        background: var(--mainColor);
        border-radius: 50% 50% 0 0;
        z-index: -1;
        border-top: 3px solid var(--offersColor);
    }

    .mainFooter i {
        font-size: 30px;
    }

.startScan {
    position: absolute;
    top: -24px;
    left: calc(50% - 35px);
    border-radius: 50%;
    width: 70px;
}

.mainBox {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    height: 200px;
    z-index: 2;
    position: relative;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 5px rgb(0 0 0 / 5%);
}

    .mainBox img{
        height:170px;
        width:100%;
        object-fit:cover;
    }

    .miniBox {
        background: #fff;
        width: 90%;
        margin: 0 auto;
        margin-top: 15px;
        z-index: 2;
        position: relative;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 5px 5px rgb(0 0 0 / 5%);
        display: grid;
        grid-template-columns: 60px auto 20px;
        column-gap: 5px;
    }

.miniBox img{
    width:100%;
}

    .miniBox a {
        text-align: center;
        font-size: 12px;
    }

    .miniBox label {
        font-weight: bold;
        display: block;
        font-size: 15px;
    }

    .miniBox span {
        display: block;
        font-size: 14px;
        color: #a9a9a9;
    }

.sectionTitle{
    margin:0 auto;
    margin-top:15px;
    color:#393939;
    font-weight:bolder;
    width:90%;
}

.appContent {
    height: calc(100vh - 200px);
    overflow: auto;
    z-index: 200;
    position: relative;
    margin-top: 90px;
}

.slick-dots {
    bottom: -18px;
}

#qr-canvas {
    position: fixed!important;
    height: calc(100vh - 250px);
    top: 90px;
    left: 2.5%;
    width: 95%;
    background: #000;
    z-index: 999;
    border-radius: 10px;
    overflow: hidden;
    border: none !important;
    display: grid;
    align-content: center;
}

.btn-danger {
    background-color: #ce1212;
    border-color: #960909;
}

.btn-outline-danger {
    color: #ce1212;
    border-color: #960909;
}

#loader {
    background-image: url(../../lib/img/load.svg);
    height: 100px;
    width: 100px;
    background-size: contain;
    position: fixed;
    z-index: 1000;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
}

.emptyBox {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    margin-top: 15px;
    z-index: 2;
    position: relative;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 5px rgb(0 0 0 / 5%);
}

    .emptyBox label {
        font-weight: bold;
        display: block;
        font-size: 15px;
    }

        .emptyBox label i {
            width: 20px;
            color: #ce1212;
        }

.mainSideBar {
    position: fixed;
    z-index: 2000;
    top: 0;
    right: -80%;
    padding: 15px;
    width: 80%;
    height: 100vh;
    background: #155300;
    color: #fff;
    transition-duration:0.2s;
}

    .mainSideBar.opened{
        right:0!important;
    }

    .mainSideBar:after {
        content: "";
        background: rgba(0,0,0,0.8);
        position: fixed;
        left: -20%;
        top: 0;
        width: 20%;
        height: 100vh;
        z-index: 0;
        transition-duration: 0.2s;
    }

    .mainSideBar.opened:after {
        left: 0 !important;
    }

    .mainSideBar label {
        display: block;
        margin-bottom: 20px;
    }

        .mainSideBar label i {
            width: 30px;
            opacity: 0.7;
        }


    .mainSideBar a {
        display: block;
        margin: 7px 0px;
        font-size: 15px;
        background: linear-gradient( 90deg, rgba(255,255,255,0.1) calc(100% - 30px), #fff 30px);
        padding: 7px;
        border-bottom: 1px dashed rgba(255,255,255,0.2);
    }

        .mainSideBar a i {
            width: 15px;
            color: #ce1212;
            text-align: center;
            margin-left: 10px;
        }