* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

select {
    font-family: IRANSans;
}

input {
    font-family: IRANSans;
}

textarea {
    font-family: IRANSans;
}

:root {
    --primary-transparentcolor: #e4e9ff;
    --primary-bg-color: #0F639C;
    --custom-color: #0F639C;
    --purple-co: #171949;
    --gray-co: #fec234;
}


@font-face {
    font-family: IRANSans;
    src: url(../font/IRANSans.ttf);
}

button {
    border: none;
    background-color: transparent;
}

html {
    /*height: 100%;
    overflow: auto;*/
    padding: 0px;
    margin: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    /*height: 100%;*/
    background: #fff;
    color: #101010;
    font-family: IRANSans;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    overflow: hidden;
}

.content-container {
    max-width: 1024px;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0px;
    overflow: hidden;
}

/* a class for .content-container */
.intro {
    /* background-image: url(../img/background_colorfull.png); */
    direction: rtl;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 30%;
    height: 100vh;
    overflow-y: scroll;
}

/* login class after .content-container */
.container-start {
    overflow-y: hidden;
    height: 100vh;
    width: 100%;
    position: relative;
}

.container-start > img {
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0px;
    padding: 0px;
    margin: 0px;
}

/* header title */
.welcome {
    text-align: center;
    direction: rtl;
    padding: 30px;
    font-weight: bold;
    font-size: 25px;
}

.btn {
    width: 200px;
    height: 60px;
    color: #101010;
    border: #fff;
    background-color: #fff;
    padding: 14px 14px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;

    align-items: center;
    border-radius: 5px;
}

/* On mouse-over */
/* .btn:hover {
  background: #32bb99;
} */

.btn-text {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 24px;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
}

.turnDeviceNotification {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.turnDeviceNotification {
    background-image: url("../img/rotatephone.jpg");
    background-size: cover;
}

/****************** message modal ************************/
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 16%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(15,99,156);  /* Fallback color */
    background-color: rgba(25,109,166,0.4);
    filter: blur(3) /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    background: linear-gradient(
        120deg, rgba(8, 216, 166, 1) 0%, rgba(164, 87, 228, 1) 100%);
    color: white ;
    position: relative;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 90%;
    direction: rtl;
    text-align: center;
    font-size: 1.3rem;
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: #0F639C;
    text-decoration: none;
    cursor: pointer;
}
.modal-text{
    padding-top: 3% ;
}


/* ***********************************loading *************************/

.loading-container {
    width: 100%;
    height: 100%;
    z-index: 100000;
    background-color: rgb(255, 255, 255);
    position: absolute;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line1 {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: var(--custom-color);
}

.line2 {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: var(--gray-co);
}

.line3 {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: var(--purple-co);
}

/*Blue Circle*/
.load-3 .line1:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line1:nth-last-child(2) {
    animation: loadingC 0.6s 0.2s linear infinite;
}

.load-3 .line1:nth-last-child(3) {
    animation: loadingC 0.6s 0.3s linear infinite;
}

/*Red Circle*/
.load-3 .line2:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line2:nth-last-child(2) {
    animation: loadingC 0.6s 0.2s linear infinite;
}

.load-3 .line2:nth-last-child(3) {
    animation: loadingC 0.6s 0.3s linear infinite;
}

/*Green Circle*/
.load-3 .line3:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line3:nth-last-child(2) {
    animation: loadingC 0.6s 0.2s linear infinite;
}

.load-3 .line3:nth-last-child(3) {
    animation: loadingC 0.6s 0.3s linear infinite;
}

@keyframes loadingC {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}
/*.vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgb(232, 232, 232);
    visibility: hidden;

}

.vertical-centered-box:after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.vertical-centered-box .content-loading {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: fadein 1s 1.5s linear forwards;
    -moz-animation: fadein 1s 1.5s linear forwards;
    -o-animation: fadein 1s 1.5s linear forwards;
    animation: fadein 1s 1.5s linear forwards;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
    opacity: 0;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    overflow: hidden;
    -webkit-transform-origin: 50px 50px;
    -moz-transform-origin: 50px 50px;
    -ms-transform-origin: 50px 50px;
    -o-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    mix-blend-mode: hard-light;
    opacity: 0.8;
}

.loader-line-mask .loader-line {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.loader-line-mask.one {
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
}

.loader-line-mask.one .loader-line {
    box-shadow: inset 0 0 0 8px #08d8a6;
}

.loader-line-mask.two {
    -webkit-animation: rotate 1.8s 0.5s infinite linear;
    -moz-animation: rotate 1.8s 0.5s infinite linear;
    -o-animation: rotate 1.8s 0.5s infinite linear;
    animation: rotate 1.8s 0.5s infinite linear;
}

.loader-line-mask.two .loader-line {
    box-shadow: inset 0 0 0 8px #35b3b8;
}

.loader-line-mask.three {
    -webkit-animation: rotate 2s 1s infinite linear;
    -moz-animation: rotate 2s 1s infinite linear;
    -o-animation: rotate 2s 1s infinite linear;
    animation: rotate 2s 1s infinite linear;
}

.loader-line-mask.three .loader-line {
    box-shadow: inset 0 0 0 8px #7280d0;
}

.loader-line-mask.four {
    -webkit-animation: rotate 1.8s 1.4s infinite linear;
    -moz-animation: rotate 1.8s 1.4s infinite linear;
    -o-animation: rotate 1.8s 1.4s infinite linear;
    animation: rotate 1.8s 1.4s infinite linear;
}

.loader-line-mask.four .loader-line {
    box-shadow: inset 0 0 0 8px #a457e4;
}

lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

[not-existing] {
    zoom: 1;
}

lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

[not-existing] {
    zoom: 1;
}*/

/****************** login page ***************/
#loginLoading {
    visibility: visible;
}

.container-login {

    overflow: hidden;
    height: 100vh;
    width: 100%;
    background: #fafafa;
    position: relative;
    z-index: 4;

    /*overflow: hidden;
    height: 100vh;
    width: 100%;
    background: #fafafa;
    position: relative;
    z-index: 4;*/

}

.login-bg {
    /* opacity: .46; */
    width: 104%;
    margin-left: -2%;
    height: 40%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

.back-path {
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

.logo-login {
    margin-top: 40%;
}

.logo-login > img {
    width: 30%;
    display: block;
    margin: auto;
}

.form {
    text-align: center;
    display: block;
    position: relative;
    z-index: 5;
}

.form-login {
    padding-top: 30%;
}

/* login input */
.login-form {
    background-color: transparent;
    border-color: #343434;
    border-top: transparent;
    border-left: transparent;
    border-right: transparent;
    outline: none;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    padding: 10px;
    width: 65%;
    margin-bottom: 60px;
    padding-top: 60%;
    font-family: IRANSans;
    border-width: 2px;
}

.login-form::-webkit-outer-spin-button,
.login-form::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.login-form {
    -moz-appearance: textfield;
}

.input-verify::-webkit-outer-spin-button,
.input-verify::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-verify {
    -moz-appearance: textfield;
}

.loginbtn {
    background-color: #0F639C;
    margin: auto;
    margin-top: 20%;
    border-radius: 10px;
    /* padding-left: 80px;
    padding-right:80px; */
    font-size: 18px;
    position: relative;
    z-index: 22;
    width: 200px;
    text-align: center;
}

.loginerror {
    color: #0F639C;
    margin-top: -50px;
}

/****************** verify page ***************/
/* a class for .welcome in verify page */

.verify-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 12;
    padding: 0px 5px 13px 5px;
    border-collapse: separate;
    /* border-bottom: 0.12rem solid #2c4b44; */
    height: 65px;
}

.previous-verify {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-top: 25px;
    padding-left: 10px;
    padding: 25px 15px 25px 10px;
}

.container-verify {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    background: #fafafa;
    position: relative;
    z-index: 4;
}

.verify-title {
    text-align: center;
    direction: rtl;
    padding: 30px;
    font-weight: bold;
    font-size: 25px;
    padding-top: 30%;
    letter-spacing: 0.1rem;
    color: #fafafa;
}

.form-verify {
    padding-top: 40%;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.input-verify {
    background-color: transparent;
    border-top: transparent;
    border-left: transparent;
    border-right: transparent;
    outline: none;
    color: black;
    margin: 10% 1px;
    border-bottom: 1px solid #738788;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1rem;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9c9c9c;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #9c9c9c;;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #9c9c9c;;
}

/* resend text for verify page */
#resend-code {
    margin-top: -20px;
    text-align: center;
    font-family: IRANSans;
    position: relative;
    z-index: 9;
    visibility: hidden;
}

#resend-code > a {
  color: #101010;
}

#resend-code > a:active {
  color: rgb(99, 99, 99);
}

.verifybtn {
    background-color: #0F639C;
    margin: auto;
    margin-top: 15%;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 180px;
    height: 50px;
}

.verify-bg {
    /* opacity: .46; */
    width: 102%;
    margin-left: -2%;
    height: 40%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

.verifyerror {
    color: #0F639C;
    /* margin-top: -50px; */
}

.verifysendagain {
    text-align: center;
    color: #343434;
    margin-top: 20px;
}

/* *******************start************* */

.startbtn {
    background-color: #fafafa;
    margin: auto;
    margin-top: 50%;
    border-radius: 10px;
    /* padding-left: 80px;
    padding-right:80px; */
    font-size: 18px;
    position: relative;
    z-index: 22;
    width: 200px;
    text-align: center;
}

.start-title {
    text-align: center;
    direction: rtl;
    padding: 30px;
    font-weight: bold;
    font-size: 25px;
    padding-top: 50%;
    letter-spacing: 0.1rem;
    color: #fafafa;
}

.start-bg {
    /* opacity: .46; */
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

.start-btn-text {
    margin-bottom: 5px;
    color: #D83831;
    font-size: 24px;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
    font-weight: bold;
}

/* ***************************home***************************** */

.container-home {
    overflow-y: hidden;
    height: 100vh;
    width: 100%;
    background: #ececec;
    position: relative;
    z-index: 4;
}

.home-back {
    overflow: hidden;
    height: 90vh;
    width: 100%;
    background: #ffffff;
    position: fixed;
    z-index: 4;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
    box-shadow: 5px 5px 40px #c6d1d1;

}

/* ***************************footer*********************** */

.navbar {
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 11;
    display: flex;
    justify-content: space-around;
    height: 10vh;
    align-items: center;
}

.navbar > a {
    flex: 4;
}
.ticket-icon {
    height: 80%;
    width: 80%;
    position: relative;
    z-index: 4;
    display: block;
    margin: auto;
}
.ticket-full {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 4;
    display: block;
    margin: auto;
}

.home-icon {
    position: relative;
    z-index: 4;
    height: 100%;
    width: 100%;
    display: block;
    margin: auto;
}
.sms-full {
    position: relative;
    z-index: 4;
    height: 100%;
    width: 100%;
    display: block;
    margin: auto;
}

.homeoff-icon {

    position: relative;
    z-index: 4;
    height: 80%;
    width: 80%;
    display: block;
    margin: auto;
}

.sms-icon {

    position: relative;
    z-index: 4;
    height: 85%;
    width: 85%;
    display: block;
    margin: auto;
}

.ticket-icon-link {
    height: 50%;
    width: 50%;
}

.home-icon-link {
    height: 60%;
    width: 60%;
}

.homeoff-icon-link {
    height: 50%;
    width: 50%;
}

.sms-icon-link {
    height: 40%;
    width: 40%;
}
.sms-full-link {
    height: 60%;
    width: 60%;
}
.ticket-full-link {
    height: 60%;
    width: 60%;
}

.bg-btn2 {
    width: 100%;
    /* height: 70vh; */
    background: linear-gradient(180deg, rgb(27 34 40) 0%, rgb(12 12 12) 100%);
    /* position: absolute;
      bottom: 0; */
}

.main2-btns {
    padding: 5px 15px;
    /* display: block; */
    position: absolute;
    top: 22%;
    width: 100%;
    height: 54%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-right: -5%;
    padding-bottom: 20%;
}

.btn-box2 {
    border-radius: 27px;
    flex: 40%;
    margin: 4% 4%;
    position: relative;
    background-color: #d83831;
    width: 100%;
    z-index: 4;
    border-color: transparent;
    padding-bottom: -1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

@media screen and (max-width: 330px) {
    .btn-box2 {
        border-radius: 27px;
        flex: 40%;
        margin: 5% 4%;
        position: relative;
        background-color: #d83831;
        width: 100%;
        z-index: 4;
        border-color: transparent;
        padding-bottom: -1px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    }
}

.btn-box-2 {
    background-color: #343434;
}

.btn-box3 {
    border-radius: 27px;
    flex: 40%;
    height: 103%;
    position: absolute;
    background-color: #fafafa;
    width: 70%;
    z-index: -1;
    border-color: #fafafa;
    margin-left: -1px;
    margin-top: -1px;
}

.home-container {
    border-radius: 20px;
    position: absolute;
    background-color: #fafafa;
    width: 85%;
    border-color: #fafafa;
    margin-left: 7%;
    border: 1px solid #a2a2a2;
    bottom: 30px;
}

@media screen and (max-width: 330px) {
    .home-container {
        border-radius: 20px;
        position: absolute;
        background-color: #fafafa;
        width: 85%;
        border-color: #fafafa;
        margin-left: 7%;
        border: 1px solid #a2a2a2;
        bottom: 15px;
    }
}

.home-container-list1 {
    margin-bottom: 10px;
    border-radius: 10px;
    direction: rtl;
    padding: 15px;
    display: flex;
    position: relative;
    justify-content: start;
}

.home-container-totallist1 {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
}

.home-container-totallist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
    margin-top: -30px;
}

.home-list-img {
    padding-left: 10px;
}

.home-list-text {
    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: right;
    font-weight: bold;
    margin-bottom: auto;
}

@media screen and (max-width: 330px) {
    .home-list-text {
        font-family: IRANSans;
        font-size: 1.1rem;
        text-align: right;
        font-weight: bold;
        margin-bottom: auto;
    }
}

@media screen and (min-width: 768px) {
    .home-list-text {
        font-family: IRANSans;
        font-size: 1.7rem;
        text-align: right;
        font-weight: bold;
        margin: 5px;
    }
}

.home-list-text2 {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: bold;
    padding-right: 15px;
}

@media screen and (max-width: 330px) {
    .home-list-text2 {
        font-family: IRANSans;
        font-size: 1.0rem;
        text-align: right;
        font-weight: bold;
        padding-right: 15px;
    }
}

@media screen and (min-width: 768px) {
    .home-list-text2 {
        font-family: IRANSans;
        font-size: 1.6rem;
        text-align: right;
        font-weight: bold;
        padding-right: 15px;
    }
}

.home-container-cost {
    text-align: left;
    direction: rtl;
    padding: 15px;
    font-family: IRANSans;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: auto;
}

@media screen and (max-width: 330px) {
    .home-container-cost {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: auto;
    }
}

@media screen and (min-width: 768px) {
    .home-container-cost {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1.7rem;
        font-weight: bold;
        margin-top: auto;
        margin-bottom: auto;
    }
}

.home-container-cost2 {
    text-align: left;
    direction: rtl;
    padding: 15px;
    font-family: IRANSans;
    font-size: 1.2rem;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .home-container-cost2 {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1.0rem;
        font-weight: bold;
    }
}

@media screen and (min-width: 768px) {
    .home-container-cost2 {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1.6rem;
        font-weight: bold;
    }
}

.main-btn-blur2 {
    background-color: #33363d;
    -webkit-filter: blur(4px) brightness(95%) opacity(0.5);
    border-radius: 13px;
    width: 100%;
    height: 100%;
    /* padding: 40%; */
    position: relative;
    z-index: 0;
}

.main-btn-blur2 > img {
    position: absolute;
    left: 0px;
    bottom: 0%;
    width: 100%;
    /* height: 100%; */
}

.main-btn-mat {
    background-color: #222d31;
    border-radius: 13px;
    width: 100%;
    /* padding: 45%; */
    z-index: 1;
    opacity: 0.4;
}

.btn-shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
}

.btn-intro2 {
    border: 2px solid #3dd4ae;
}

.btn-customer2 {
}

.btn-cash2 {
    /* border: 2px solid #3DD4AE; */
}

.btn-learning2 {
    border: 2px solid #3dd4ae;
}

/* dakhel button ha */
.btn-home-icon {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* opacity: 22%; */
}

.btn-home-icon > img {
    width: 80%;
    display: block;
    margin: auto;
}

.btn-home-text2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-bottom: 5%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    font-weight: bold;
    font-family: IRANSans;
    text-align: center;
    direction: rtl;
    line-height: 1rem;
    width: 100%;
    color: #101010;
}

@media screen and (max-width: 330px) {
    .btn-home-text2 {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-bottom: 5%;
        transform: translate(-50%, -50%);
        font-size: 1.1rem;
        font-weight: bold;
        font-family: IRANSans;
        text-align: center;
        direction: rtl;
        line-height: 1rem;
        width: 100%;
        color: #101010;
    }
}

@media screen and (min-width: 768px) {
    .btn-home-text2 {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-bottom: 5%;
        transform: translate(-50%, -50%);
        font-size: 1.9rem;
        font-weight: bold;
        font-family: IRANSans;
        text-align: center;
        direction: rtl;
        line-height: 1rem;
        width: 100%;
        color: #101010;
    }
}

.home-btn-img {
    width: 48%;
    height: 48%;
    position: absolute;
    top: 25%;
    padding: 10px;
    margin-left: 60%;
    float: right;
}

@media screen and (max-width: 375px) {
    .home-btn-img {
        width: 45%;
        height: 45%;
        position: absolute;
        top: 25%;
        /* padding: 10px; */
        margin-left: 62%;
        float: right;
    }
}

/* ************ hamburger btn red ************** */
/*
.drawer-up-div {
    background-color: #D83831;
    width: 100%;
    background-color: #D83831;
    height: 120px;
    position: absolute;
    top: 50px;
    right: 0px;
    border-bottom-left-radius: 30px;
}

#menuToggle {
    display: block;
    position: relative;
    right: 0px;
    z-index: 2;
    width: 27px;
    height: 27px;
    -webkit-user-select: none;
    user-select: none;
}

 #menuToggle input {
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 1px;
    left: 1px;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

#menuclose {
    display: block;
    position: relative;
    right: 40px;
    bottom: 60px;
    z-index: 2;
    width: 27px;
    height: 27px;
    -webkit-user-select: none;
    user-select: none;
}

.close-ham {
    position: absolute;
    top: 1px;
    left: 1px;
}
 #menu {
    position: absolute;
    width: 300px;
    margin: -100px -50px 0 -50px;
    padding: 50px;
    padding-top: 125px;
    padding-bottom: 100vh;
    right: 0px;
    background: #ececec;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    text-align: right;
    transform-origin: 0% 0%;
    transform: translate(200%, 0);
    box-shadow: 5px 200px 80px #738788;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
    padding: 10px 0;
    font-size: 22px;
}

 #menuToggle input:checked ~ ul {
    transform: none;
}

#menuToggle input:checked {
    left: -216px;
    top: -9px;
    background-color: transparent;
    color: transparent;

}

#menuToggle input:checked:after {
    display: none;
}

.drawer-container-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    border-bottom: 1px #E6E6E6 solid;
    width: 100%;
    margin-top: 60px;
    margin-bottom: -60px;
}

.drawer-text-row {
    padding-top: 15px;
    padding-right: 20px;
    color: #343434;
    font-size: 1.2rem;
    padding-bottom: 15px;
}

.drawer-name-reddiv {
    padding-right: 50px;
    color: #fafafa;
    font-size: 1.2rem;
    padding-bottom: 15px;
    font-weight: 600;
    position: relative;
    top: 40%;
}

.drawer-email-reddiv {
    position: relative;
    bottom: 10%;
    padding-right: 50px;
    color: #fafafa;
    font-size: 1.0rem;
    padding-bottom: 15px;
    font-weight: bold;
    top: 30%;
}

.drawer-div-row {
    padding-top: 15px;
    padding-right: 50px;
    color: #343434;
    font-size: 1.2rem;
    padding-bottom: 200px;
}

.drawer-image-row {
    padding-bottom: 15px;
    padding-top: 20px;
}

.drawer-text-email {
    color: #fff;
    display: flex;
    justify-content: flex-end;
    direction: ltr;
    border-bottom: 1px #E6E6E6 solid;
    padding-bottom: 10px;
    padding-right: 20px;
    width: 100%;
}

.drawer-text-name {
    padding-top: 15px;
    padding-right: 20px;
    color: #fff;
    font-size: 1.2rem;
}  */

/************* hamburger btn ***************/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;

    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    }
    /* gets the actual input out of the way;
    we're going to style the label instead */
    .drawer-name-reddiv {
        padding-right: 30px;
        color: #fafafa;
        font-size: 1.2rem;
        padding-bottom: 15px;
        font-weight: 600;
        position: relative;
        top: 40%;
        text-align: right;
    }

    .drawer-email-reddiv {
        position: relative;
        bottom: 10%;
        padding-right: 30px;
        color: #fafafa;
        font-size: 1.0rem;
        padding-bottom: 15px;
        font-weight: bold;
        top: 30%;
        text-align: right;
    }

    .drawer-container-row {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        height: 50px;
        border-bottom: 1px #E6E6E6 solid;
        width: 100%;
        margin-top: 100px;
        margin-bottom: -100px;
    }

    .drawer-text-row {
        padding-top: 15px;
        padding-right: 20px;
        color: #343434;
        font-size: 1.2rem;
        padding-bottom: 15px;
    }
    .drawer-image-row {
        padding-bottom: 15px;
        padding-top: 20px;
    }

    /* #menu {
        position: absolute;
        width: 300px;
        margin: -100px -50px 0 -50px;
        padding: 50px;
        padding-top: 125px;
        padding-bottom: 100vh;
        right: 0px;
        background: #ececec;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        text-align: right;
        transform-origin: 0% 0%;
        transform: translate(200%, 0);
        box-shadow: 5px 200px 80px #738788;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }
     */
    #drawer-toggle {
    position: absolute;
    opacity: 0;
    }

    #drawer-toggle-label {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    right: 5px;
    top: 15px;
    height:50px;
    width: 50px;
    display: block;
    position: fixed;
    background: rgba(255,255,255,.0);
    z-index: 12;
    }

    /* adds our "hamburger" menu icon */

    #drawer-toggle-label:before {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: #738788;
    right: 15px;
    top: 15px;
    box-shadow: 0 6px 0 #738788, 0 12px 0 #738788;
    }


    /* drawer menu pane - note the 0px width */

    #drawer {
    position: fixed;
    top: 0;
    right:-300px;
    height: 100%;
    width: 300px;
    /*background: ; */
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 20px;
    background-color: #ececec;
    box-shadow: 5px 200px 80px #738788;
    -webkit-overflow-scrolling: touch;
    /* adds animation for all transitions */
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    }

    /* actual page content pane */

    #page-content {
    margin-left: 0px;
    margin-top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    overflow-x:hidden;
    overflow-y:scroll;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    }

    /* checked styles (menu open state) */

    #drawer-toggle:checked ~ #drawer-toggle-label {
    opacity: 0;
    height: 100%;
    width: calc(100% - 300px);
    /* background: rgba(255,255,255,.8);  */
    }

    #drawer-toggle:checked ~ #drawer-toggle-label,
    #drawer-toggle:checked ~ header {
    right: 300px;

    }

    #drawer-toggle:checked ~ #drawer {
    right: 0px;
    /* adds animation for all transitions */
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    }

    #drawer-toggle:checked ~ #page-content {
    margin-left: 300px;
    }

    /* Menu item styles */

    #drawer ul {
    list-style-type:none;
    /* padding-top: 18%; */
    }
    .drawer-close-btn{
        right: 5px;
        height: 50px;
        width: 50px;
        display: block;
        position: absolute;
        top: 15px;
        right: 230px;
        z-index: 1;
    }
    #drawer ul a {
    display:block;
    /* padding:10px;  */
    color:#c7c7c7;
    text-decoration:none;
    text-align: right;
    }

    #drawer ul a:hover {
    color:white;
    }

    /* Responsive MQ */

    @media all and (max-width:350px) {

    #drawer-toggle:checked ~ #drawer-toggle-label {
    height: 100%;
    width: 50px;

    }

    #drawer-toggle:checked ~ #drawer-toggle-label,
    #drawer-toggle:checked ~ header {
    right: calc(100% - 50px);
    }

    #drawer-toggle:checked ~ #drawer {
    width: calc(100% - 50px);
    padding: 20px;
    }

    #drawer-toggle:checked ~ #page-content {
    margin-left: calc(100% - 50px);
    }

    }


/**************** main *******************/
.main-container {
    padding: 10px 5%;
    margin-top: 30%;
}

.notic-box {
    width: 100%;
    padding: 5px;
    background: rgb(8, 216, 166);
    background: linear-gradient(
        120deg,
        rgba(8, 216, 166, 1) 0%,
        rgba(164, 87, 228, 1) 100%
    );
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.notic-icon {
    margin-top: 8px;
    margin-right: 10px;
}

.notic-text {
    width: 100%;
    font-size: 1.2rem;
    font-family: IRANSans;
    font-weight: 400;
    letter-spacing: 0.04rem;
    margin-right: 15px;
    direction: rtl;
}

/***buttons***/
.main-btns {
    padding: 5px;
    display: block;
    position: relative;
    margin-top: 10%;
}

.btn-box {
    border: 2px solid #3dd4ae;
    border-radius: 13px;
    width: 48%;
    position: relative;
}

.main-btn-blur {
    background-color: #222d31;
    -webkit-filter: blur(4px) brightness(90%) opacity(0.5);
    border-radius: 13px;
    width: 100%;
    padding: 40%;
    z-index: 1;
}

.main-btn-mat {
    background-color: #222d31;
    border-radius: 13px;
    width: 100%;
    padding: 40%;
    z-index: 1;
}

.btn-shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
}

.btn-intro {
    position: absolute;
    right: 0px;
    margin-top: 10%;
}

.btn-customer {
    position: absolute;
    left: 0px;
    margin-top: 20%;
}

.btn-cash {
    position: absolute;
    right: 0px;
    margin-top: 55%;
}

.btn-learning {
    position: absolute;
    left: 0px;
    margin-top: 65%;
}

/* dakhel button ha */
.btn-home-icon {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-home-icon > img {
    width: 100%;
    display: block;
    margin: auto;
}

.btn-home-text {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-family: IRANSans;
    text-align: center;
    direction: rtl;
    line-height: 1rem;
    width: 100%;
    color: #fefdff;
}

/**** appbar header****/
.home-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    background: transparent;
    padding: 0px 0px 25px 0px;
    border-collapse: unset;
    height: 70px;
    z-index: 16;
}

.appbar {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.appbar-title {
    color: white;
    font-size: 1.5rem;
    z-index: 1;
    position: flex;
    justify-content: center;
    font-weight: bolder;
    margin-left: 5%;
}

/* *************************************home2**************************** */
.drawer-up-div {
    background-color: #143C71;
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0px;
    right: 0px;
    border-bottom-left-radius: 30px;
}

.appbar-home2 {
    padding: 2% 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}

#menuToggle-home2 {
    display: block;
    position: relative;
    right: 0px;
    z-index: 2;
    width: 27px;
    height: 27px;
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 107%;
}

#menuToggle-home2 input {
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 1px;
    left: 1px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 3; /* and place it over the hamburger */
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

#menuToggle-home2 input:checked ~ ul {
    transform: none;
}

#menuToggle-home2 input:checked {
    left: -216px;
    top: -9px;
    background-color: transparent;
    color: transparent;

}

#menuToggle-home2 input:checked:after {
    display: none;
}

.home2-main2-btns {
    padding: 0px 10%;
    position: absolute;
    top: 40%;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
}

.home2-btn-box3 {
    border-radius: 27px;
    flex: 40%;
    margin: 0% 75%;
    position: absolute;
    background-color: #171949;
    width: 25%;
    border-color: transparent;
    height: 100%;
    z-index: 4;
}

@media screen and (max-width: 330px) {
    .home2-btn-box3 {
        border-radius: 27px;
        flex: 40%;
        margin: 0% 75%;
        position: absolute;
        background-color: #171949;
        width: 25%;
        border-color: transparent;
        height: 100%;
        z-index: 4;
    }
}

.home2-btn-box-2 {
    background-color: #0F639C;
}

.home2-btn-box2 {
    border-radius: 27px;
    flex: 40%;
    position: relative;
    background-color: #fafafa;
    width: 100%;
    border-color: #fafafa;
    margin-top: 5%;
    box-shadow: rgba(0, 0, 0, 0.1) -6px 10px 6px -1px,
    rgba(0, 0, 0, 0.06) -6px 4px 4px -1px;
}

.home2-btn-img {
    width: 70%;
    height: 70%;
    position: absolute;
    top: 15%;
    right: 15%;
    float: right;
    padding: 6%;
}

@media screen and (max-width: 375px) {
    .home2-btn-img {
        width: 70%;
        height: 70%;
        position: absolute;
        top: 15%;
        right: 15%;
        float: right;
        padding: 9%;
    }
}

.home2-title-colomn {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 10%;
    text-align: center;
}

.home2-appbar-title {
    color: white;
    font-size: 1.5rem;
    position: flex;
    justify-content: center;
    font-weight: bolder;
}

.home2-logo {
    height: 60%;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.btn-home2-text2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-bottom: 5%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: bold;
    font-family: IRANSans;
    text-align: center;
    direction: rtl;
    line-height: 1rem;
    width: 100%;
    color: #101010;
}

@media screen and (max-width: 330px) {
    .btn-home2-text2 {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-bottom: 5%;
        transform: translate(-50%, -50%);
        font-size: 1.1rem;
        font-weight: bold;
        font-family: IRANSans;
        text-align: center;
        direction: rtl;
        line-height: 1rem;
        width: 100%;
        color: #101010;
    }
}

@media screen and (min-width: 768px) {
    .btn-home2-text2 {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-bottom: 5%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        font-weight: bold;
        font-family: IRANSans;
        text-align: center;
        direction: rtl;
        line-height: 1rem;
        width: 100%;
        color: #101010;
    }
}

/* *************************paymentdone************************* */

.paymentdonetitle {
    font-size: 1.8rem;
    font-family: IRANSans;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    direction: rtl;
    margin-top: 30%;
    margin-bottom: 10%;
}

.paymentdonetext {
    font-size: 1.5rem;
    font-family: IRANSans;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    direction: rtl;
}

.paymentdone-btn-text {
    margin-bottom: 5px;
    color: white;
    font-size: 24px;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
}

.paymentdonebtn {
    background-color: #0F639C;
    margin: auto;
    margin-top: 24%;
    border-radius: 10px;
    /* padding-left: 80px;
    padding-right:80px; */
    font-size: 18px;
    position: relative;
    z-index: 22;
    width: 200px;
    text-align: center;
}

.sharj-btn2-text {
    margin-bottom: 5px;
    color: white;
    font-size: 24px;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
}

.sharjbtn2 {
    background-color: #0F639C;
    margin: auto;
    margin-top: 5%;
    border-radius: 10px;
    font-size: 18px;
    position: relative;
    z-index: 22;
    width: 20%;
    text-align: center;
    height: 30px;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 100px;
    height: 35px;
    color: white;
}

.paymentdone-bg {
    width: 100%;
    height: 60%;
    z-index: -1;
    position: absolute;
    top: -2px;
}

/* ***************************reports************************** */

.reports-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    padding: 0px 5px 13px 5px;
    height: 65px;
    z-index: 10;
}

.title-row-reports {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.previous-reports {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-top: 25px;
    padding-left: 10px;
    padding: 25px 15px 25px 10px;
}

.textreports {
    padding-top: 1%;
    color: #101010;
    font-size: 1.5rem;
    margin-top: 10px;
    z-index: 1;
    position: flex;
    justify-content: center;
    font-weight: bold;
}

a {
    text-decoration: none;
}

a:focus {
    color: transparent;
    background-color: transparent;
    outline: none;
    border: none;
    text-decoration: none;
}
a:link {
    color: #0F639C;
  }
  /* visited link */
  a:visited {
    color: #0F639C;
  }

  /* mouse over link */
  a:hover {
    color: #0F639C;
  }

  /* selected link */
  a:active {
    color: #0F639C;
  }

.reports-back {
    overflow-y: hidden;
    height: 90vh;
    width: 100%;
    background: #ececec;
    position: relative;
    z-index: 4;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
    box-shadow: 5px 5px 40px #c6d1d1;
}

/****** card *********/

.reports-container {
    border-radius: 20px;
    position: absolute;
    background-color: #fafafa;
    width: 90%;
    border-color: #fafafa;
    margin-left: 5%;
    border: 0px solid #a2a2a2;
    top: 10%;
    height: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
}

@media screen and (max-width: 330px) {
    .reports-container {
        border-radius: 20px;
        position: absolute;
        background-color: #fafafa;
        width: 85%;
        border-color: #fafafa;
        margin-left: 7%;
        border: 0px solid #a2a2a2;
        top: 10%;
        height: 80%;
        overflow-y: scroll;
        overflow-x: hidden;
    }
}

.reports-base-row {
    display: flex;
    flex-direction: row-reverse;
    border-bottom: 1px solid #a2a2a2;
    justify-content: space-around;
}

.reports-container-mainlist {
    text-align: left;
    direction: rtl;
    justify-content: space-around;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 10px;
    flex: 11;
}

.reports-container-totallist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -3%;
    margin-top: -3%;
}

@media screen and (max-width: 330px) {
    .reports-container-totallist {
        text-align: left;
        direction: rtl;
        justify-content: space-between;
        display: flex;
        position: relative;
        margin-bottom: -3%;
        margin-top: -3%;
    }
}

.reports-container-list1 {
    border-radius: 10px;
    direction: rtl;
    padding: 15px;
    display: flex;
    position: relative;
    justify-content: start;
    /* left: 5%; */
    flex: 8;
}

@media screen and (min-width: 600px) {
    .reports-container-list1 {
        border-radius: 10px;
        direction: rtl;
        padding: 15px;
        display: flex;
        position: relative;
        justify-content: start;
    }
}

.reports-imgcolomn {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding-right: 2%;
    justify-content: space-around;
}

@media screen and (min-width: 600px) {
    .reports-imgcolomn {
        display: flex;
        flex-direction: column;
        margin-right: -10%;
        justify-content: space-around;
    }
}

.report-img {
    width: 25px;
    height: 25px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 15%;

}

@media screen and (max-width: 330px) {
    .report-img {
        width: 20px;
        height: 20px;
        margin-left: auto;
        margin-right: auto;
        top: 15%;
    }
}

@media screen and (min-width: 600px) {
    .report-img {
        width: 40px;
        height: 40px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        top: 15%;
    }
}

.reports-list-text {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .reports-list-text {
        font-family: IRANSans;
        font-size: 0.8rem;
        text-align: right;
        font-weight: bold;
    }
}

@media screen and (min-width: 600px) {
    .reports-list-text {
        font-family: IRANSans;
        font-size: 1.4rem;
        text-align: right;
        font-weight: bold;
    }
}

.reports-container-cost {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-left: 4%;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: normal;
    flex: 5;
}

@media screen and (max-width: 330px) {
    .reports-container-cost {
        text-align: left;
        direction: rtl;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 0.8rem;
        font-weight: normal;
    }
}

@media screen and (min-width: 600px) {
    .reports-container-cost {
        text-align: left;
        direction: rtl;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1.4rem;
        font-weight: normal;
    }
}

.reports-list-clock {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: normal;
    color: #a1a1a1;
}

@media screen and (max-width: 330px) {
    .reports-list-clock {
        font-family: IRANSans;
        font-size: 0.9rem;
        text-align: right;
        font-weight: normal;
        color: #a1a1a1;
    }
}

@media screen and (min-width: 600px) {
    .reports-list-clock {
        font-family: IRANSans;
        font-size: 1.4rem;
        text-align: right;
        font-weight: normal;
        color: #a1a1a1;
    }
}

.reports-container-status {
    text-align: left;
    direction: rtl;
    padding-top: 10px;
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: bold;
    color: #44eb8c;
}

@media screen and (max-width: 330px) {
    .reports-container-status {
        text-align: left;
        direction: rtl;
        padding-top: 10px;
        font-family: IRANSans;
        font-size: 0.9rem;
        font-weight: bold;
        color: #44eb8c;
    }
}

@media screen and (min-width: 600px) {
    .reports-container-status {
        text-align: left;
        direction: rtl;
        padding-top: 10px;
        font-family: IRANSans;
        font-size: 1.4rem;
        font-weight: bold;
        color: #44eb8c;
    }
}

.reports-container-more {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 95px;
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: bold;
    color: #328BF5;
    padding-left: 4%;
    flex: 6;
}

@media screen and (max-width: 330px) {
    .reports-container-more {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 95px;
    font-family: IRANSans;
    font-size: 0.8rem;
    font-weight: bold;
    color: #328BF5;
    padding-left: 4%;
    flex: 6;
    }
}

@media screen and (min-width: 600px) {
    .reports-container-more {
        text-align: left;
        direction: rtl;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1.2rem;
        font-weight: bold;
        color: #328BF5;
    }
}

.reports-list-text2 {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: bold;
    padding-right: 15px;
}

@media screen and (max-width: 330px) {
    .reports-list-text2 {
        font-family: IRANSans;
        font-size: 1.0rem;
        text-align: right;
        font-weight: bold;
        padding-right: 15px;
    }
}

.reports-container-cost2 {
    text-align: left;
    direction: rtl;
    padding: 15px;
    font-family: IRANSans;
    font-size: 1.2rem;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .reports-container-cost2 {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1.0rem;
        font-weight: bold;
    }
}

/* *********************portal************************** */

.container-portal {
    overflow-y: hidden;
    height: 100vh;
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 4;
}

.portal-container {
    border-radius: 10px;
    position: relative;
    background-color: #ffffff;
    width: 90%;
    border-color: #ffffff;
    margin: auto;
    border: 0px solid #a2a2a2;
    top: 15%;
    box-shadow: 5px 5px 40px #c6d1d1;
}

@media screen and (max-width: 330px) {
    .portal-container {
        border-radius: 10px;
        position: absolute;
        background-color: #ffffff;
        width: 90%;
        border-color: #ffffff;
        margin: auto;
        border: 1px solid #a2a2a2;
        top: 15%;
        box-shadow: 5px 5px 40px #c6d1d1;
    }
}

.portal-bg {
    width: 100%;
    height: 40%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

.portal-container-list1 {

    border-radius: 10px;
    direction: rtl;
    padding-right: 15px;
    padding-top: 15px;
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;

}

.portal-container-list2 {
    border-radius: 10px;
    direction: rtl;
    padding-right: 15px;
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;

}

.portal-container-list3 {
    direction: rtl;
    padding-bottom: 20px;
    display: flex;
    position: relative;
    justify-content: center;
}

.inputreport {
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 15px;
}

.portal-list-field {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
    padding-right: 15px;
    margin-top: auto;
    margin-bottom: auto;
}

.reports-choosingtext {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
    padding-right: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.portal-btn-list {
    direction: rtl;
    display: flex;
    position: relative;
    justify-content: center;
    top: 25%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.portalbtn {
    background-color: #0F639C;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 120px;
    margin-left: 3px;
    height: 50px;
}

.canclebtn {
    background-color: #171949;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 120px;
    margin: auto;
    margin-right: 3px;
    height: 50px;
}

.bankimg {
    width: 50px;
    height: 50px;
    margin: auto;
}

.imgdiv {
    margin-left: 25px;
}

/* *********************eachunit******************* */
.eachunit-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    background: #ECECEC;
    padding: 0px 0px 25px 0px;
    border-collapse: unset;
    height: 70px;
    z-index: 16;
}

.container-eachunit {
    overflow-y: hidden;
    height: 100vh;
    width: 100%;
    background: #ECECEC;
    position: relative;
    z-index: 4;
}

.eachunit-div-title {
    padding-top: 5%;
    color: #101010;
    font-size: 1.5rem;
    margin-top: 10px;
    z-index: 1;
    text-align: center;
    justify-content: center;
    font-weight: bold;
}

.eachunitopenbtn {
    background-color: #0F639C;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 20px;
    position: absolute;
    z-index: 5;
    width: 50px;
    height: 60px;
    left: 0px;
    bottom: 0px;
    display: block;
}

.eachunitclosebtn {
    background-color: #171949;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 20px;
    position: relative;
    z-index: 5;
    width: 50px;
    height: 60px;
    display: none;
}

.eachunit-base-row {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
}

.eachunit-container-mainlist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.maindiv-eachunit-container {
    overflow-y: scroll;
    background-color: transparent;
    height: 100vh;
    padding-bottom: 25%;
}

.eachunit-container {
    border-radius: 20px;
    position: relative;
    background-color: #ffffff;
    width: 90%;
    border-color: #ffffff;
    margin: auto;
    border: 0px solid #a2a2a2;
    top: 11%;
    margin-bottom: 5%;
    box-shadow: rgba(0, 0, 0, 0.1) -6px 10px 6px -1px,
    rgba(0, 0, 0, 0.06) -6px 4px 4px -1px;
    /* box-shadow: 5px 5px 40px #c6d1d1; */
}

.eachunit-open-img {
    margin: auto;
    margin-top: 60%;
}

.eachunit-close-img {
    margin: auto;
    margin-top: 60%;
}

.eachunit-list1 {
    border-radius: 10px;
    direction: rtl;
    padding-right: 15px;
    padding-top: 15px;
    display: flex;
    position: relative;
    justify-content: flex-start;
}

.eachunit-list2 {
    border-radius: 10px;
    direction: rtl;
    padding-right: 15px;
    display: flex;
    position: relative;
    justify-content: flex-start;
}

.eachunit-list-text {
    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: right;
    font-weight: bold;
}

.eachunit-list-field {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
    padding-right: 15px;
}

.eachunit-btn-list {
    direction: rtl;
    display: flex;
    position: relative;
    justify-content: center;
    top: 25%;
    padding-top: 20px;
    padding-bottom: 40px;
    display: none;
}

.eachunitpaybtn {
    background-color: #d83831;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 120px;
    margin-left: 3px;
    height: 50px;
}

.eachunitcanclebtn {
    background-color: #343434;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 120px;
    margin: auto;
    margin-right: 3px;
    height: 50px;
}

.eachunit-bg {
    width: 100%;
    height: 60%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

/* *******************dashboard************************* */
.dashboard-btns {
    padding: 5px 15px;
    position: absolute;
    top: 17%;
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    margin-right: -5%;
    padding-bottom: 20%;
}

@media screen and (min-width: 600px ) {
    .dashboard-btns {
        padding: 5px 15px;
        position: absolute;
        top: 17%;
        width: 100%;
        height: 90%;
        display: flex;
        flex-direction: column;
        margin-right: -5%;
        padding-bottom: 20%;
        overflow-y: scroll;
    }
}

.dashboardbtn-box2 {
    border-radius: 25px;
    flex-direction: row-reverse;
    justify-content: space-around;
    margin: 4% 4%;
    position: relative;
    background-color: #0F639C;
    z-index: inherit;
    border-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

@media screen and (min-width: 1000px ) {
    .dashboardbtn-box2 {
        border-radius: 25px;
        flex-direction: row-reverse;
        justify-content: space-around;
        flex: 40%;
        margin-top: 8px;
        position: relative;
        background-color: #0F639C;
        z-index: inherit;
        border-color: transparent;
        padding-bottom: -1px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    }
}

.dashboardbtn-box-2 {
    background-color: #171949;
}

.dashboard-btns-list {
    padding-top: 7%;
    border-radius: 10px;
    direction: rtl;
    display: flex;
    position: relative;
    justify-content: space-between;
    padding-bottom: 7%;
}

@media screen and (min-height: 730px ) {
    .dashboard-btns-list {
        padding-top: 9%;
        padding-bottom: 9%;
    }
}

.dashboard-bg {
    /* opacity: .46; */
    width: 100%;
    height: 30%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

.dashboard-btn-img {
    margin-right: 10%;
    margin-bottom: auto;
    margin-top: auto;
}

@media screen and (max-width: 380px) {
    .dashboard-img-size {
        width: 30px;
        height: 30px;
    }
}

@media screen and (min-width: 1000px) {
    .dashboard-img-size {
        width: 50px;
        height: 50px;
    }
}

.btn-dashboard-text2 {
    position: relative;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: IRANSans;
    text-align: right;
    direction: rtl;
    color: #ffffff;
    margin-bottom: auto;
    padding-left: 40px;
}

@media screen and (max-width: 380px) {
    .btn-dashboard-text2 {
        position: relative;
        font-size: 1.3rem;
        font-weight: bold;
        font-family: IRANSans;
        text-align: right;
        direction: rtl;
        color: #ffffff;
        margin-bottom: auto;
        padding-left: 40px;
    }
}

@media screen and (min-width: 1000px) {
    .btn-dashboard-text2 {
        position: relative;
        font-size: 2.1rem;
        font-weight: bold;
        font-family: IRANSans;
        text-align: right;
        direction: rtl;
        color: #ffffff;
        margin-bottom: auto;
        padding-left: 40px;
    }
}

.dashboardbtn-first {
    background-image: url(../img/blue-dashboard.svg);
    background-position: center;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ******************totaldept********************* */
.container-totaldept {
    overflow-y: scroll;
    height: 100vh;
    width: 100%;
    padding-bottom: 50px;
    background: #ececec;
    position: relative;
    z-index: 4;
}

.totaldept-container {
    border-radius: 20px;
    background-color: #fafafa;
    width: 90%;
    border-color: #fafafa;
    margin-left: 5%;
    border: 0px solid #a2a2a2;
    margin-top: 10%;
    margin-bottom: -5%;
    padding-bottom: 10px;
}

.totaldept-container-totallist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
    margin-top: -15px;
}

.totaldept-container-mainlist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
    border-bottom: 1px solid #cccccc;
}

.totaldept-container-sell {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-right: 10px;
}

.totaldept-container-firstlist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-right: 10px;
}

.totaldept-container-cost {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: bold;
    margin-left: 10px;
}

.totaldept-firstcost {
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: auto;
    margin-left: 10%;
    color: #d83831;
}

.totaldept-list-more {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: bold;
    justify-content: center;
    margin-top: 12px;
    margin-left: 20px;
    z-index: 8;
}

.totaldept-text-more {
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: bold;
    justify-content: center;
    margin-top: 12px;
    margin-left: 20px;
    z-index: 8;
    color: #101010;
}

.penalty-totladept {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.0rem;
    margin-left: 10px;
    color: #D83831;
}

.totaldept-list-pay {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: bold;
    justify-content: center;
    margin-left: 30px;
    color: #d83831;
}

.totaldept-pay-text {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: bold;
    justify-content: center;
    margin-right: 10px;
    color: #0F639C;
    margin-top: 10px;
}

.totaldept-btn-list {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    /* position: relative; */
    margin-right: 10px;
    /* top:  100px; */
    margin-top: 20%;
}

.totaldept-container-list1 {
    border-radius: 10px;
    direction: rtl;
    padding: 15px;
    display: flex;
    position: relative;
    justify-content: start;
    left: 10px;
}

.totaldeptbtn {
    background-color: #0F639C;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 100px;
    right: 6%;
    height: 35px;
}

.totaldeptbtn-text {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 20px;
    font-family: IRANSans;
    font-weight: 500;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
}

.totaldeptbtn2 {
    background-color: #d83831;
    border-radius: 10px;
    z-index: 5;
    width: 110px;
    height: 35px;
    margin: auto;
    margin-top: 10px;
}

.totaldept-list-text {
    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: right;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .totaldept-list-text {
        font-family: IRANSans;
        font-size: 1.1rem;
        text-align: right;
        font-weight: bold;
    }
}

.totaldept-list-field {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
    padding-right: 15px;
}

@media screen and (max-width: 330px) {
    .totaldept-list-field {
        font-family: IRANSans;
        font-size: 1rem;
        text-align: right;
        font-weight: normal;
        padding-right: 15px;
    }
}

.totaldept-date {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    color: #101010;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
}

@media screen and (max-width: 330px) {
    .totaldept-date {
        font-family: IRANSans;
        font-size: 0.9rem;
        text-align: right;
        font-weight: normal;
        color: #101010;
        margin-top: auto;
        margin-bottom: auto;
    }
}

.totaldept-title-date {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    color: #101010;
}

/* *************************profile********************* */
.container-profile {
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100vh;
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 4;
}

.profiletitle {
    padding-top: 1%;
    color: #fafafa;
    font-size: 1.5rem;
    margin-top: 10px;
    z-index: 1;
    justify-content: right;
    text-align: right;
    font-weight: bold;
    margin-right: 20px;
}

.profile-email {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: bold;
    position: relative;
    bottom: 10%;
    color: #fafafa;
    font-size: 1.0rem;
    margin-right: 20px;
}

.profile-bg {
    width: 101%;
    height: 20%;
    z-index: -1;
    position: absolute;
    top: 0px;
}

.profile-container {
    border-radius: 10px;
    position: relative;
    background-color: #ffffff;
    width: 90%;
    border-color: #ffffff;
    margin: auto;
    /* border: 0px solid #a2a2a2; */
    top: 25%;
    box-shadow: 5px 5px 40px #c6d1d1;
}

@media screen and (max-width: 330px) {
    .profile-container {
        border-radius: 10px;
        position: relative;
        background-color: #ffffff;
        width: 90%;
        border-color: #ffffff;
        margin: auto;
        /* border: 1px solid #a2a2a2; */
        top: 20%;
        box-shadow: 5px 5px 40px #c6d1d1;
    }
}

.profile-container-list1 {
    border-radius: 10px;
    direction: rtl;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 10px;
}

.profile-list-text {
    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: right;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .profile-list-text {
        font-family: IRANSans;
        font-size: 1.1rem;
        text-align: right;
        font-weight: bold;
    }
}

.profile-list-field {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
}

@media screen and (max-width: 330px) {
    .profile-list-field {
        font-family: IRANSans;
        font-size: 1.0rem;
        text-align: right;
        font-weight: normal;
        padding-right: 15px;
    }
}

.profile-container-cost {
    text-align: left;
    direction: rtl;
    padding: 15px;
    font-family: IRANSans;
    font-size: 1.2rem;
    font-weight: normal;
}

@media screen and (max-width: 330px) {
    .profile-container-cost {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 0.9rem;
        font-weight: normal;
    }
}

.profile-container-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.profile-exit-img {
    padding-bottom: 15px;
    padding-top: 20px;
    margin-right: 10px;
}


/* ****************************receipt****************************** */

.container-receipt {
    overflow-y: hidden;
    height: 100vh;
    width: 100%;
    background: #ececec;
    position: relative;
    z-index: 0;
    margin: auto;
}

.receipt-bg {
    width: 100%;
    height: 10%;
    position: absolute;
    top: 0px;
    z-index: 1;
}

.receipt-container-colomn {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 90px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .receipt-container-colomn {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 20%;
        margin-bottom: 30px;
    }
}

.receipt-text-colomn {
    direction: rtl;
    color: #44eb8c;
    font-size: 1.2rem;
    margin: auto;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .receipt-text-colomn {
        direction: rtl;
        color: #44eb8c;
        font-size: 1.8rem;
        margin: auto;
        font-weight: bold;
    }
}

.receipt-tik-img {
    margin: auto;
}

.receipt-img {
    width: 25px;
    height: 25px;
}

@media screen and (min-width: 768px) {
    .receipt-img {
        width: 45px;
        height: 45px;
    }
}

.receipt-div {
    overflow-y: scroll;
    width: 90%;
    margin: auto;
    background: #ffffff;
    position: relative;
    z-index: 4;
    border-radius: 10px;
    box-shadow: 5px 5px 40px #c6d1d1;
    padding-bottom: 20px;
}

.receipt-container-totallist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
    margin-top: -30px;
}

.receipt-list-text2 {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: bold;
    margin-bottom: 10px;
    direction: rtl;
    padding: 15px;
    display: flex;
    position: relative;
    justify-content: start;
}

@media screen and (max-width: 330px) {
    .receipt-list-text2 {
        font-family: IRANSans;
        font-size: 1rem;
        text-align: right;
        font-weight: bold;
        margin-bottom: 10px;
        direction: rtl;
        padding: 15px;
        display: flex;
        position: relative;
        justify-content: start;
    }
}

.receipt-list-date {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: bold;
    margin-bottom: 10px;
    direction: rtl;
    padding: 15px;
    display: flex;
    position: relative;
    justify-content: start;
    color: #A2A2A2;
}

@media screen and (max-width: 330px) {
    .receipt-list-date {
        font-family: IRANSans;
        font-size: 1rem;
        text-align: right;
        font-weight: bold;
        margin-bottom: 10px;
        direction: rtl;
        padding: 15px;
        display: flex;
        position: relative;
        justify-content: start;
        color: #A2A2A2;
    }
}

.receipt-container-cost2 {
    text-align: left;
    direction: ltr;
    padding: 15px;
    font-family: IRANSans;
    font-size: 1.2rem;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .receipt-container-cost2 {
        text-align: left;
        direction: ltr;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1rem;
        font-weight: bold;
    }
}

.receipt-container-time {
    text-align: left;
    direction: rtl;
    padding: 15px;
    font-family: IRANSans;
    font-size: 1.2rem;
    font-weight: bold;
    color: #A2A2A2;
}

@media screen and (max-width: 330px) {
    .receipt-container-time {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1rem;
        font-weight: bold;
    }
}

.receipt-btn-list {
    direction: rtl;
    display: flex;
    position: relative;
    justify-content: center;
    top: 25%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.receiptbtn {
    background-color: #0F639C;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 120px;
    height: 40px;
    margin-top: 10px;
}

.receipt-btn-text {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 22px;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
}

/* ********************************sharj***************************** */
.inputsharj {
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    width: 20px;
    height: 30px;
    z-index: 10000;
}

.round {
    position: relative;
}

.round input[type="checkbox"] {
    visibility: visible;
}

.inputdivsharj {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 5px;
}

.sharj-container {
    border-radius: 20px;
    background-color: #fafafa;
    width: 90%;
    border-color: #fafafa;
    margin-left: 5%;
    border: 0px solid #a2a2a2;
    margin-bottom: -5%;
    padding-bottom: 10px;
    height: 70%;
    overflow-y: scroll;
    margin-top: 20%;
}

.penaltysharj {
    margin-right: 10px;
}

.sharj-container-nopenalty {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
    margin-top: -15px;
}

.sharj-container-penalty {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
    margin-top: -15px;
}

.sharj-container-mainlist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
    border-bottom: 1px solid #cccccc;
}

.sharj-container-sell {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-right: 10px;
}

.sharj-container-cost {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    margin-left: 10px;
}

.sharj-container-cost2 {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 0.9rem;
    margin-left: 10px;
}

.penalty-container-cost2 {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 0.9rem;
    margin-left: 10px;
    color: #D83831;
}

.sharj-firstcost {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: bold;
    justify-content: center;
    margin-top: auto;
    margin-left: 11%;
    z-index: 8;
    color: #d83831;
}

.sharj-btn-list {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    /* position: relative; */
    margin-right: 10px;
    /* top:  100px; */
    margin-top: 20%;
}

.sharj-container-list1 {
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    position: relative;
    justify-content: start;
    margin-right: 9%;
}

.sharjbtn {
    background-color: #0F639C;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    width: 100px;
    right: 6%;
    height: 35px;
}

.sharjbtn-text {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 20px;
    font-family: IRANSans;
    font-weight: 500;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
}

.sharj-list-field {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
}

@media screen and (max-width: 330px) {
    .sharj-list-field {
        font-family: IRANSans;
        font-size: 1rem;
        text-align: right;
        font-weight: normal;
        padding-right: 15px;
    }
}

.sharj-list2-field {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
}

.penalty-list2-field {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    color: #D83831;
}

/* *********************************eachReports*********************** */

.eachreports-container {
    border-radius: 20px;
    position: absolute;
    background-color: #fafafa;
    width: 90%;
    border-color: #fafafa;
    margin-left: 5%;
    border: 0px solid #a2a2a2;
    top: 10%;
    padding-bottom: 20px;
}

.eachreports-title-div {
    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
    margin-top: 5%;
}

@media screen and (min-width: 600px) {
    .eachreports-title-div {
        font-family: IRANSans;
        font-size: 1.4rem;
        text-align: center;
        font-weight: bold;
        margin-top: 5%;
    }
}

.eachreports-container-totallist {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
    margin-top: -15px;
}

@media screen and (max-width: 330px) {
    .eachreports-container-totallist {
        text-align: left;
        direction: rtl;
        justify-content: space-between;
        display: flex;
        position: relative;
        margin-bottom: -15px;
        margin-top: -15px;
    }
}

.eachreports-container-list1 {
    border-radius: 10px;
    direction: rtl;
    padding: 15px;
    display: flex;
    position: relative;
    justify-content: start;
}

@media screen and (max-width: 330px) {
    .eachreports-container-list1 {
        border-radius: 10px;
        direction: rtl;
        padding: 15px;
        display: flex;
        position: relative;
        justify-content: start;
    }
}

.eachreports-container-cost {
    text-align: left;
    direction: rtl;
    padding: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .eachreports-container-cost {
        text-align: left;
        direction: rtl;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 0.9rem;
        font-weight: bold;
    }
}

@media screen and (min-width: 600px) {
    .eachreports-container-cost {
        text-align: left;
        direction: rtl;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1.4rem;
        font-weight: bold;

    }
}

.eachreports-list-text {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .eachreports-list-text {
        font-family: IRANSans;
        font-size: 0.9rem;
        text-align: center;
        font-weight: bold;
    }
}

@media screen and (min-width: 600px) {
    .eachreports-list-text {
        font-family: IRANSans;
        font-size: 1.4rem;
        text-align: center;
        font-weight: bold;
    }
}

.eachreports-container-status {
    text-align: left;
    direction: rtl;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    font-weight: bold;
    color: #44eb8c;
    padding-left: 5%;
}

@media screen and (max-width: 330px) {
    .eachreports-container-status {
        text-align: left;
        direction: rtl;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 0.8rem;
        font-weight: bold;
        color: #44eb8c;
    }
}

@media screen and (min-width: 600px) {
    .eachreports-container-status {
        text-align: left;
        direction: rtl;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1.4rem;
        font-weight: bold;
        color: #44eb8c;
        margin-left: -3%;
    }
}

.titleEachreports {
    padding-top: 1%;
    color: #101010;
    font-size: 1.5rem;
    margin-top: 10px;
    z-index: 1;
    position: flex;
    justify-content: center;
    font-weight: bolder;
}

.eachreports-container-time {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: normal;
    padding: 15px;
    color: #a1a1a1;
}

@media screen and (max-width: 330px) {
    .eachreports-container-time {
        font-family: IRANSans;
        font-size: 0.8rem;
        text-align: right;
        font-weight: normal;
        padding-right: 15px;
        color: #a1a1a1;
    }
}

@media screen and (min-width: 600px) {
    .eachreports-container-time {
        font-family: IRANSans;
        font-size: 1.4rem;
        text-align: right;
        font-weight: normal;
        padding-right: 15px;
        color: #a1a1a1;
    }
}

.eachreports-list-date {
    font-family: IRANSans;
    font-size: 1.1rem;
    text-align: right;
    font-weight: normal;
    color: #a1a1a1;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
}

@media screen and (max-width: 330px) {
    .eachreports-list-date {
        font-family: IRANSans;
        font-size: 0.8rem;
        text-align: right;
        font-weight: normal;
        color: #a1a1a1;
        margin-top: auto;
        margin-bottom: auto;
    }
}

@media screen and (min-width: 600px) {
    .eachreports-list-date {
        font-family: IRANSans;
        font-size: 1.4rem;
        text-align: right;
        font-weight: normal;
        color: #a1a1a1;
        margin-top: auto;
        margin-bottom: auto;
    }
}

/* *****************************news************************* */
.news-container {
    border-radius: 20px;
    position: absolute;
    background-color: #fafafa;
    width: 90%;
    border-color: #fafafa;
    margin-left: 5%;
    border: 0px solid #a2a2a2;
    top: 10%;
    height: 80%;
    overflow-y: scroll;
}

@media screen and (max-width: 330px) {
    .news-container {
        border-radius: 20px;
        position: absolute;
        background-color: #fafafa;
        width: 85%;
        border-color: #fafafa;
        margin-left: 7%;
        border: 0px solid #a2a2a2;
        top: 10%;
        height: 80%;
        overflow-y: scroll;
    }
}

.previous-news {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-top: 25px;
    padding-left: 10px;
    padding: 25px 15px 25px 10px;
}

.news-row {
    display: flex;
    flex-shrink: 4;
    flex-direction: column;
    justify-content: space-between;
    /* height: 50px; */
    width: 80%;
    position: relative;
    z-index: 2;

}

.news-content {
    color: #101010;
    font-size: 1.1rem;
    padding-right: 15px;
    padding-left: 15px;
    line-height: 1.6rem;
    max-height: 75px;
    margin-bottom: 3%;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    text-align: justify;
    direction: rtl;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    font-weight: bold;
}

.newsimage {
    width: 60%;
    flex-shrink: 8;
}

.news-container-image {
    width: 95%;
    height: 95%;
    position: relative;
    margin-top: 3%;
    margin-bottom: auto;
    border-radius: 5px;
}

.back-news {
    margin-top: 3%;
    display: flex;
    flex-direction: row-reverse;
    border-bottom: 1px solid #CCCCCC;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 3%;
    height: 20%;
}

.news-text-row {
    padding-bottom: 10px;
    padding-top: 10px;
    padding-right: 15px;
    color: #101010;
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 600;
    justify-content: end;
    text-align: end;
}

@media only screen and (max-width: 400px) {
    .news-text-row {
        padding-bottom: 4px;
        padding-top: 10px;
        padding-right: 15px;
        color: #101010;
        font-size: 1rem;
        line-height: 1.1rem;
        font-weight: 600;
        justify-content: end;
        text-align: end;
    }

    .news-content {
        color: #101010;
        font-size: 1rem;
        padding-right: 15px;
        padding-left: 15px;
        line-height: 1.2rem;
        max-height: 40px;
        margin-bottom: 3%;
        padding-bottom: 10px;
        display: flex;
        justify-content: flex-end;
        text-align: justify;
        direction: rtl;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        -webkit-box-orient: vertical;
        font-weight: bold;
    }
}


.news-list-container {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: -15px;
    margin-top: -15px;
}

.news-container-list1 {
    border-radius: 10px;
    direction: rtl;
    padding-right: 15px;
    display: flex;
    position: relative;
}

.news-list1-date {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    padding-left: 5px;
    color: #A1A1A1;
}

@media screen and (max-width: 330px) {
    .news-list1-date {
        font-family: IRANSans;
        font-size: 0.9rem;
        text-align: right;
        font-weight: normal;
        padding-left: 5px;
        color: #A1A1A1;
    }
}

.news-list1-clock {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    padding-right: 5px;
    color: #A1A1A1;
}

.news-container-more {
    text-align: left;
    direction: rtl;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    margin-left: 10px;
    color: #0F639C;
    font-weight: bold;
}

@media only screen and (max-width: 400px) {
    .news-container-more {
        text-align: left;
        direction: rtl;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1rem;
        margin-left: 10px;
    }
}

/* *******************************parking*************************** */
.pelaque-container {
    border-radius: 20px;
    position: absolute;
    background-color: #fafafa;
    width: 90%;
    border-color: #fafafa;
    margin-left: 5%;
    border: 0px solid #a2a2a2;
    top: 10%;
    height: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 10%;
}

@media screen and (max-width: 330px) {
    .pelaque-container {
        border-radius: 20px;
        position: absolute;
        background-color: #fafafa;
        width: 85%;
        border-color: #fafafa;
        margin-left: 7%;
        border: 0px solid #a2a2a2;
        top: 10%;
        height: 80%;
        overflow: hidden;
    }
}

.pelaque-text {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
    padding-right: 5%;
    padding-top: 5%;
    font-weight: bold;
}



.pelaque-input {
    height: 5%;
    width: 90%;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
    text-align: right;
    /* color: #a2a2a2; */
    padding-right: 2%;
    font-size: .9rem;
    background-color: #fafafa;
}

.pelaque-input2 {
    height: 5%;
    width: 20%;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-top: 3%;
    text-align: right;
    /* color: #a2a2a2; */
    padding-right: 2%;
    background-color: #fafafa;
}
@media screen and (max-width: 330px) {
    .pelaque-text {
        font-family: IRANSans;
        font-size: 1rem;
        text-align: right;
        font-weight: normal;
        padding-right: 5%;
        padding-top: 5%;
        font-weight: bold;
    }

.pelaque-input {
    font-size: .8rem;
}

}
.pelaque-motor-smallinput {
    height: 5%;
    width: 24%;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-top: 3%;
    text-align: right;
    /* color: #a2a2a2; */
    padding-right: 2%;
    background-color: #fafafa;
}

.pelaque-motor-biginput {
    height: 5%;
    width: 28%;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-top: 3%;
    text-align: right;
    /* color: #a2a2a2; */
    padding-right: 2%;
    background-color: #fafafa;
}

.whole-input-car-plaque {
    margin-right: -17%;
    margin-left: 5%;
}

.whole-input-motor-plaque {
    text-align: right;
    margin-right: 5%;
}

.pelaque-input-cost {
    height: 5%;
    width: 90%;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
    text-align: right;
    /* color: #a2a2a2; */
    padding-right: 2%;
    background-color: #fafafa;
}

.plaquebtn {
    background-color: #0F639C;
    margin: auto;
    margin-top: 15%;
    border-radius: 7px;
    font-size: 18px;
    position: relative;
    z-index: 22;
    width: 90%;
    text-align: center;
    height: 7%;
}

@media screen and (min-height: 700px) {
    .plaquebtn {
        background-color: #0F639C;
        margin: auto;
        margin-top: 8%;
        border-radius: 7px;
        font-size: 18px;
        position: relative;
        z-index: 22;
        width: 90%;
        text-align: center;
        height: 7%;
    }
}

.plaque-btn-text {
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
    font-weight: bold;
    padding-top: inherit;
    padding-bottom: inherit;
}

/*.plaqueError1{
    display: flex;
    flex-direction: column;
}*/

/***************************** parking *******************************/

.parking-btn-text {
    margin-bottom: 5px;
    color: white;
    font-size: 1.4rem;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
}


@media screen and (max-width: 330px) {
    .parking-btn-text {
        margin-bottom: 5px;
        color: white;
        font-size: 1rem;
        font-family: IRANSans;
        font-weight: 400;
        text-align: center;
        position: relative;
        display: block;
        z-index: 22;
    }
}

.parkingbtn {
    background-color: #0F639C;
    top: 10%;
    border-radius: 10px;
    font-size: 18px;
    position: fixed;
    z-index: 22;
    width: 40%;
    left: 55%;
    height: 5%;
}


.parking-list1 {
    border-radius: 10px;
    direction: rtl;
    display: flex;
    position: relative;
    justify-content: start;
    top: 17%;
    right: 5%;
    align-items: center;
}


.parking-list-img {
    padding-left: 10px;
    margin-bottom: auto;
    margin-top: auto;
}

.parking-list-text {

    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: right;
    font-weight: bold;
    margin-bottom: auto;
    margin-top: auto;
}

@media screen and (max-width: 330px) {
    .parking-list-text {
        font-family: IRANSans;
        font-size: 1.1rem;
        text-align: right;
        font-weight: bold;
        margin-bottom: auto;
        margin-top: auto;
    }
}

@media screen and (min-width: 768px) {
    .home-list-text {
        font-family: IRANSans;
        font-size: 1.7rem;
        text-align: right;
        font-weight: bold;
        margin: 5px;
    }
}

.parking-main-div {
    position: relative;
    top: 17%;
}

.parking-div {
    height: 7%;
    width: 90%;
    border: 1px solid white;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    text-align: right;
    background-color: white;
    box-shadow: 5px 5px 40px #c6d1d1;
    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: right;
    font-weight: bold;
    margin-bottom: auto;
    margin-top: auto;
}

@media screen and (max-width: 330px) {
    .parking-list-text {
        font-family: IRANSans;
        font-size: 1.1rem;
        text-align: right;
        font-weight: bold;
        margin-bottom: auto;
        margin-top: auto;
    }
}

@media screen and (min-width: 768px) {
    .parking-list-text {
        font-family: IRANSans;
        font-size: 1.7rem;
        text-align: right;
        font-weight: bold;
        margin-bottom: auto;
        margin-top: auto;
    }
}

.parking-list-plaque {
    font-family: IRANSans;
    font-size: 1.3rem;
    text-align: right;
    font-weight: bold;
    margin-bottom: auto;
    margin-top: auto;
    margin-right: 5%;
}

.parking-main-div {
    position: relative;
    top: 17%;
}

.parking-div {
    height: 7%;
    width: 90%;
    border: 1px solid white;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    text-align: right;
    background-color: white;
    box-shadow: 5px 5px 40px #c6d1d1;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.parking-div-totallist {
    /* height: 7%; */
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    /* margin-top: 2%; */
}


.parking-list-text {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: bold;
    direction: rtl;
    padding-right: 5%;
    display: flex;
    position: relative;
    justify-content: start;
}

@media screen and (max-width: 330px) {

    .parking-list-text {
        font-family: IRANSans;
        font-size: 1rem;
        text-align: right;
        font-weight: bold;
        margin-bottom: 10px;
        direction: rtl;
        padding-right: 15px;
        display: flex;
        position: relative;
        justify-content: start;
    }
}


.parking-list-cost {
    text-align: left;
    direction: rtl;
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: left;
    font-weight: bold;
    direction: rtl;
    padding-left: 5%;
    display: flex;
    position: relative;
    justify-content: start;
}

@media screen and (max-width: 330px) {
    .parking-list-cost {
        text-align: left;
        direction: rtl;
        padding: 15px;
        font-family: IRANSans;
        font-size: 1rem;
        font-weight: bold;
        display: flex;
        position: relative;
        justify-content: start;
    }
}

/* ******************************tickets************************** */
.tickets-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    padding: 0px 5px 13px 5px;
    height: 65px;
    z-index: 10;
    background-color: white;
}

.tickets-back {
    overflow-y: scroll;
    height: 90vh;
    width: 100%;
    background: #ffffff;
    position: fixed;
    z-index: 4;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
    box-shadow: 5px 5px 40px #c6d1d1;
    padding-top: 5%;
    padding-bottom: 22%;

}
.container-tickets {
    overflow-y: hidden;
    height: 100vh;
    width: 100%;
    background: #ECECEC;
    position: relative;
    z-index: 4;
}

.tickets-div {
    width: 90%;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 4%;
    text-align: justify;
    background-color: white;
    box-shadow: 5px 5px 40px #c6d1d1;
}

.tickets-row {
    display: flex;
    flex-shrink: 4;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    position: relative;
    z-index: 2;
}

.tickets-text-row {
    padding-bottom: 10px;
    padding-top: 10px;
    padding-right: 15px;
    color: #101010;
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: bold;
    justify-content: end;
    text-align: end;
}

@media only screen and (max-width: 400px) {
    .tickets-text-row {
        padding-bottom: 10px;
        padding-top: 10px;
        padding-right: 15px;
        color: #101010;
        font-size: 1.1rem;
        line-height: 1.1rem;
        font-weight: bold;
        justify-content: end;
        text-align: end;
    }
}

.tickets-textlink {
    padding-bottom: 10px;
    padding-left: 15px;
    color: #101010;
    font-size: 19px;
    justify-content: start;
    text-align: start;
}

.tickets-list2-container {
    border-bottom: 1px solid #a2a2a2;
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    height: 23%;

}

.tickets-date-list2 {
    align-items: baseline;
    border-radius: 10px;
    direction: rtl;
    margin-left: 5%;
    display: flex;
    position: relative;
}

.tickets-date-text {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    color: #A1A1A1;
}

@media screen and (max-width: 330px) {
    .tickets-date-text {
        font-family: IRANSans;
        font-size: 0.9rem;
        text-align: right;
        font-weight: normal;
        color: #A1A1A1;
    }
}

.tickets-container-status {
    text-align: left;
    direction: rtl;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    margin-right: 5%;
    color: #00C555;
    font-weight: bold;
}

@media only screen and (max-width: 400px) {
    .tickets-container-status {
        text-align: left;
        direction: rtl;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1rem;
        margin-right: 5%;
    }
}

.tickets-more-text {
    margin-top: 2%;
    margin-bottom: 2%;
    color: #0F639C;
    font-size: 1.2rem;
    font-family: IRANSans;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
    font-weight: bold;
}

.tickets-content {
    color: #101010;
    font-size: 1.1rem;
    padding-right: 5%;
    padding-left: 5%;
    line-height: 1.6rem;
    max-height: 75px;
    margin-bottom: 3%;
    display: flex;
    justify-content: flex-end;
    text-align: justify;
    direction: rtl;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
    font-weight: normal;
}

.back-tickets {
    display: flex;
    flex-direction: row-reverse;
    margin-left: 10px;
    margin-right: 10px;
}

.ticketsbtn {
    background-color: #0F639C;
    top: 12%;
    border-radius: 10px;
    font-size: 18px;
    position: relative;
    z-index: 22;
    width: 40%;
    left: 55%;
    height: 5%;
}

/* *******************************newTicket ****************************/

.ticketError {
    text-align: right;
    margin-right: 5%;
    margin-top: 1%;
    color: red;
}

.newticket-responsiveinput {
    height: 20%;
    width: 90%;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
    text-align: justify;
    color: #a2a2a2;
    padding: 2%;
    direction: rtl;
    resize: none;
}

.newticket-container {
    border-radius: 20px;
    position: relative;
    background-color: #fafafa;
    width: 90%;
    border-color: #fafafa;
    margin-left: 5%;
    border: 0px solid #a2a2a2;
    top: 10%;
    padding-bottom: 5%;
    overflow: hidden;
}

@media screen and (max-width: 330px) {
    .newticket-container {
        border-radius: 20px;
        position: relative;
        background-color: #fafafa;
        width: 85%;
        border-color: #fafafa;
        margin-left: 7%;
        border: 0px solid #a2a2a2;
        top: 10%;
        overflow: hidden;
    }
}

.newticket-text {
    font-family: IRANSans;
    font-size: 1.2rem;
    text-align: right;
    font-weight: normal;
    padding-right: 5%;
    padding-top: 5%;
    font-weight: bold;
}

@media screen and (max-width: 330px) {
    .newticket-text {
        font-family: IRANSans;
        font-size: 1rem;
        text-align: right;
        font-weight: normal;
        padding-right: 5%;
        padding-top: 5%;
        font-weight: bold;
    }
}

.newticket-input {
    height: 5%;
    width: 90%;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
    text-align: right;
    color: #a2a2a2;
    padding-right: 2%;
}

.newticketbtn {
    background-color: #0F639C;
    margin: auto;
    color: white;
    margin-top: 15%;
    border-radius: 7px;
    font-size: 1.2rem;
    position: relative;
    z-index: 22;
    width: 80%;
    height: 6%;
    font-family: IRANSans;
    padding-top: inherit;
    padding-bottom: inherit;
}

@media screen and (min-height: 700px) {
    .newticketbtn {
        background-color: #0F639C;
        margin: auto;
        margin-top: 8%;
        border-radius: 7px;
        font-size: 1.2rem;
        position: relative;
        z-index: 22;
        width: 80%;
        height: 4%;
        padding-top: inherit;
        padding-bottom: inherit;
    }
}

.newticket-btn-text {
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
    font-weight: bold;
}

/* ********************************eachticket *************************/

.bubble {
    position: relative;
    font-family: IRANSans;
    font-size: 1.2rem;
    line-height: 24px;
    width: 90%;
    background: #fff;
    border-radius: 15px;
    padding: 5%;
    text-align: justify;
    color: #101010;
    top: 15%;
    margin: auto;
    margin-bottom: 10%;
    direction: rtl;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.bubble2 {
    position: relative;
    font-family: IRANSans;
    font-size: 1.2rem;
    line-height: 24px;
    width: 90%;
    background: #fff;
    border-radius: 15px;
    padding: 5%;
    text-align: right;
    color: white;
    top: 15%;
    margin: auto;
    margin-bottom: 10%;
    direction: rtl;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    background-color: #3C6494;
}

.bubble-bottom-left:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 24px solid #3C6494;
    border-right: 12px solid transparent;
    border-top: 12px solid #3C6494;
    border-bottom: 20px solid transparent;
    left: 32px;
    bottom: -24px;
}

.bubble-bottom-right:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-right: 24px solid #fff;
    border-left: 12px solid transparent;
    border-top: 12px solid #fff;
    border-bottom: 20px solid transparent;
    right: 32px;
    bottom: -24px;
  }
  .texteachticket{
    padding-top: 1%;
    color: #101010;
    font-size: 1.5rem;
    margin-top: 10px;
    z-index: 1;
    position: flex;
    justify-content: center;
    font-weight: bold;
  }

.eachticket-list-container {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: 2.5%;
    margin-top: -2.5%;
    border-bottom: 1px solid #a2a2a2;
    flex-direction: row-reverse;
}

.eachticket-container-list1 {
    border-radius: 10px;
    direction: rtl;
    display: flex;
    position: relative;
    flex-direction: row-reverse;
}

.eachticket-list1-date {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    padding-right: 5px;
    color: #A1A1A1;
}

@media screen and (max-width: 330px) {
    .eachticket-list1-date {
        font-family: IRANSans;
        font-size: 0.9rem;
        text-align: right;
        font-weight: normal;
        padding-left: 5px;
        color: #A1A1A1;
    }
}

.eachticket-list1-clock {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: left;
    font-weight: normal;
    padding-left: 5px;
    color: #A1A1A1;
}

.eachticket-container-more {
    text-align: left;
    direction: rtl;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    margin-right: 10px;
    color: #0F639C;
    font-weight: bold;
}

@media only screen and (max-width: 400px) {
    .eachticket-container-more {
        text-align: left;
        direction: rtl;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1rem;
        margin-right: 10px;
    }
}
.texteachticket-lable {
    color: #328BF5;
    font-size: 1.2rem;
    line-height: 24px;
    margin-top: 10px;
    z-index: 1;
    position: flex;
    justify-content: right;
    font-weight: normal;
    font-family: IRANSans;
}

.eachticket-list-container2 {
    text-align: left;
    direction: rtl;
    justify-content: space-between;
    display: flex;
    position: relative;
    margin-bottom: 2.5%;
    margin-top: -2.5%;
    border-bottom: 1px solid #CCCCCC;
    flex-direction: row-reverse;
}
.eachticket-container-list2 {
    border-radius: 10px;
    direction: rtl;
    display: flex;
    position: relative;
    flex-direction: row-reverse;
}
.eachticket-list1-date2 {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    padding-right: 5px;
    color: white;
}

@media screen and (max-width: 330px) {
    .eachticket-list1-date2 {
        font-family: IRANSans;
        font-size: 0.9rem;
        text-align: right;
        font-weight: normal;
        padding-right: 5px;
        color: white;
    }
}
.eachticket-list1-clock2 {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: right;
    font-weight: normal;
    padding-left: 5px;
    color: white;
}
.eachticket-container-more2 {
    text-align: left;
    direction: rtl;
    padding-bottom: 15px;
    font-family: IRANSans;
    font-size: 1.1rem;
    margin-right: 10px;
    color: white;
    font-weight: bold;
}

@media only screen and (max-width: 400px) {
    .eachticket-container-more2 {
        text-align: left;
        direction: rtl;
        padding-bottom: 15px;
        font-family: IRANSans;
        font-size: 1rem;
        margin-right: 10px;
    }
}
.texteachticket-box2 {
    color: white;
    font-size: 1.2rem;
    line-height: 24px;
    margin-top: 10px;
    z-index: 1;
    position: flex;
    justify-content: right;
    font-weight: normal;
    font-family: IRANSans;
    text-align: justify;
}

/***************************** messages *******************************/
.messages-back {
    overflow-y: scroll;
    height: 90vh;
    width: 100%;
    background: #ffffff;
    position: fixed;
    z-index: 4;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
    box-shadow: 5px 5px 40px #c6d1d1;
    padding-top: 5%;
    padding-bottom: 22%;

}

.container-messages {
    overflow-y: hidden;
    height: 100vh;
    width: 100%;
    background: #ECECEC;
    position: relative;
    z-index: 4;
}
.messages-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    padding: 0px 5px 13px 5px;
    height: 65px;
    z-index: 10;
    background-color: white;
}

.messages-main-div {
    position: relative;
    top: 12%;
}

.unread-messages-div {
    width: 90%;
    border-radius: 10px;
    border: .5px solid #3E5C7E;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    text-align: right;
    background-color: #F1F9FF;
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.10);
}
.read-messages-div {
    width: 90%;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    text-align: right;
    background-color: white;
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.10);
}
.back-messages {
    display: flex;
    flex-direction: row-reverse;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
}

.messages-row {
    display: flex;
    flex-shrink: 4;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    position: relative;
    z-index: 2;
}

.messages-first-row{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.messages-text-row {
    padding-bottom: 5%;
    padding-top: 5%;
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 600;
    text-align: right;
}
.messages-text-row > span{
    font-size: 1rem;
    color: #D83831;
    position: relative;
    bottom: 3%;
    right:2%;
}

.messages-date-text {
    font-family: IRANSans;
    font-size: 1.0rem;
    text-align: left;
    font-weight: normal;
    color: #A1A1A1;
    padding-top: 5%;

}

.messages-content {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6rem;
    max-height: 75px;
    margin-bottom: 3%;
    display: flex;
    justify-content: flex-end;
    text-align: justify;
    direction: rtl;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
    font-weight: 400;
}
.messages-more-text {
    /* margin-top: 2%; */
    margin-bottom: 2%;
    color: #0F639C;
    font-size: 1.1rem;
    font-family: IRANSans;
    text-align: right;
    position: relative;
    display: block;
    z-index: 22;
    font-weight: bold;
}

@media screen and (min-height: 730px ) {
    .messages-content {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .messages-date-text {
        font-size: 1.3rem;
    }
    .messages-text-row {
        font-size: 1.7rem;
    }
    .messages-more-text {
        font-size: 1.3rem;
    }
}



@media only screen and (max-width: 400px) {
    .messages-text-row {
        /* padding-bottom: 10px;
        padding-top: 10px; */
        font-size: 1.1rem;
        line-height: 1.1rem;
        font-weight: bold;
    }
}


/***************************** messagebody *******************************/
.messages-div {
    width: 90%;
    height: 40%;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    text-align: right;
    background-color: white;
    box-shadow: 5px 5px 40px #c6d1d1;
    overflow-y: scroll;
}

.messagebody-text-row {
    padding-bottom: 5%;
    padding-top: 5%;
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.1rem;
    font-weight: 600;
    text-align: right;
}
.messagebody-date-text {
    font-family: IRANSans;
    font-size: 1.0rem;
    line-height: 1.1rem;
    text-align: left;
    font-weight: normal;
    color: #A1A1A1;
    padding-top: 5%;
}

.messagebody-content {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-bottom: 6%;
    display: flex;
    justify-content: flex-start;
    text-align: justify;
    direction: rtl;
    font-weight: 400;
}


@media only screen and (max-width: 400px) {
    .messagebody-text-row {
        font-size: 1.1rem;
        line-height: 1.1rem;
        font-weight: bold;
    }
}

.comment-div {
    position: absolute;
    bottom: 0%;
    width: 100%;
}
.comment-message{
    width: 90%;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    text-align: right;
    background-color: white;
    box-shadow: 5px 5px 40px #c6d1d1;
}

.back-comment {
    display: flex;
    flex-direction: row-reverse;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
}
.comment-title{
    font-size: 1.2rem;
    line-height: 1.8rem;
    padding: 3% 0%;
    font-weight: bold;
}
.comment-text{
    direction: rtl;
    padding: 2%;
    height: 100px;
    width: 100%;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    resize: none;
    text-align: right;
}
.comment-row {
    display: flex;
    flex-shrink: 4;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
    width: 100%;
    position: relative;
    z-index: 2;
}
.comment-submit{
    width: 20%;
    height: 20%;
    font-size: 1rem;
    font-weight: bold;
    background-color: #0F639C;
    color: #fff;
    border-radius: 5px;
    margin: 5% 0%;
}

/* ***********************************eachnews********************** */
.container-eachnews {
    overflow-y: hidden;
    height: 90vh;
    width: 100%;
    background: #ececec;
    position: relative;
    top: 10%;
    z-index: 4;
}
.back-eachnews{
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    margin-top: 5%;
    height: 75%;
}
.eachnews-img{
    width: 100%;
    height: 25%;
}

.eachnews-img > img{
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.eachnews-title{
    font-size: 1.2rem;
    font-weight: bold;
    direction: rtl;
    height: 10%;
}

.eachnews-content{
    background-color: #fff;
    padding: 5%;
    padding-bottom: 10%;
    margin: 0% -5%;
    direction: rtl;
    font-size: 1.1rem;
    height: 90%;
    position: relative;
    overflow-y: scroll;
}

/* *******************************offline*********************** */

.fallbackbtn{
    background-color: #0F639C;
    margin: auto;
    margin-top: 25%;
    border-radius: 10px;
    font-size: 18px;
    position: relative;
    z-index: 22;
    width: 200px;
    text-align: center;
  }
  .fallback-text{
    font-weight: bolder;
    font-family: IRANSans;
    font-size: 1.1rem;
    line-height: 1.8rem;
    margin-top: 10%;
    color: #0F639C;
    direction: rtl;
    padding: 30px;
    text-align: center;
  }
.fallback-btn-text{
    margin-bottom: 5px;
    color: #CCCCCC;
    font-size: 24px;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: block;
    z-index: 22;
    font-weight: bold;
  }
  .net-icon{
    display: flex;
    justify-content: center;
    margin-top: 20%;
  }
  .container-fallback {
    background-color: #CCCCCC;
    height: 100vh;
    overflow: scroll;
  }



/****************** intro page **************/
.intro-title {
    text-align: center;
    direction: rtl;
    padding: 30px;
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
}

.intro-img {
    display: block;
    margin: auto;
    width: 240px;
    /* height: 320px; */
}

.intro-text {
    text-align: justify;
    direction: rtl;
    padding: 40px 25px 0px 25px;
}

.intro-text-bold {
    text-align: justify;
    direction: rtl;
    padding: 10px 20px 20px 20px;
    margin: 20% 7% 3% 7%;
    font-size: 1.3rem;
}
.index-poshtiban{
    text-align: justify;
    direction: rtl;
    padding: 10px 20px 20px 20px;
   font-weight: 600;
    margin: 3% 7% 0% 7%;
    font-size: 1.3rem;
}
.index-number{
    text-align: justify;
    direction: rtl;
    padding: 0px 20px 20px 20px;
    /* border: 2px solid #32bb99; */
    /* border-radius: 10px; */
    margin: 1% 7% 3% 7%;
    font-size: 1.3rem;
    font-weight: 600;
}
.btn-dnl {
    width: 120px;
    height: 45px;
    color: #101010;
    border: #fff;
    background-color: #0F639C;
    padding: 20px 14px;
    margin: 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10% auto;
    border-radius: 5px;
    position: relative;
    z-index: 9;
}

/* father button class */
.btns {
    /* display: flex;
    justify-content: center; */
    font-weight: 700;
}

/* download button in index.html */
.dnltext {
    text-align: center;
    direction: rtl;
    padding: 0px;
    font-weight: bold;
    font-size: 1.3rem;

}

/* for body text in index.html */
.icon-ios > img {
    width: 20px;
    margin-right: 5px;
    padding-bottom: 5px;
}

.icon-android > img {
    width: 20px;
    margin-right: 5px;

}

.android {
    color: black;
}

.ios {
    color: black;
}

.btn-dnl-text {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
}


.btn .icon-android {
    float: left;
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}

.btn .icon-ios {
    float: left;
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}


.android-nav {
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 12;
    background: linear-gradient(0deg, #efefef 0%, #fffffd 100%);
    padding: 0px 5px 13px 5px;
    border-collapse: separate;
    /* border-bottom: 0.12rem solid #2c4b44; */
    height: 65px;

}

.title-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}
.textandroid {
    padding-top: 2px;
    color: #595959;
    font-size: 1.5rem;
    font-family: IRANSans;
    margin-top: 3%;
    /* margin-right: -17%; */
    z-index: 1;
    display: flex;
    justify-content: center;
}

.previous-android {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-top: 25px;
    padding-left: 10px;
    padding: 25px 15px 25px 10px;
}


/************** android download ************/

.content-container-android {
    max-width: 1024px;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0px;

}


.bg-container-android-download {
    overflow-y: scroll;
    height: 100vh;
    width: 100%;
    /* background: linear-gradient(180deg, #A457E4 0%, #08D8A6 100%); */
    position: relative;
    z-index: 4;
}


.android-download {
    /* background-image: url(../img/background_colorfull.png); */
    direction: rtl;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 0px;
    height: 100vh;
}


.android-download-title {
    text-align: center;
    direction: rtl;
    padding: 30px;
    font-weight: 600;
    font-size: 1.4rem;
}

.android-download-text {
    font-size: 1.1rem;
    text-align: justify;
    direction: rtl;
    padding: 40px 40px 20px 40px;
}

.android-download-text > span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/**************/


.btn-dnl-android {
    width: 170px;
    height: 45px;
    color: #fff;
    border: #fff;
    background-color: #0F639C;
    padding: 14px 14px;
    margin: 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
}


.btns-android {
    display: flex;
    justify-content: center;
    font-weight: 700;
}

.btn-text-android {
    float: right;
    width: 120px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.2rem;
    font-family: IRANSans;
    font-weight: 400;
    text-align: center;
}


.icon-android-download > img {
    width: 20px;
}

/**************/

.android-download-version-text {
    text-align: justify;
    direction: rtl;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 40px 40px 0px 40px;
}


.android-download-images {
    width: 100%;
    padding: 20px;
}

/**************ios download************/

.content-container-ios {
    max-width: 1024px;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0px;
    overflow-y: hidden;
}

.bg-container-ios-download {
    overflow-y: scroll;
    height: 100vh;
    width: 100%;
    /* background: linear-gradient(180deg, #A457E4 0%, #08D8A6 100%); */
    position: relative;
    z-index: 4;
}


.ios-download-title {
    text-align: center;
    direction: rtl;
    padding: 30px;
    font-weight: 600;
    font-size: 1.4rem;
}

.ios-download-images {
    margin-left: 5px;
    margin-bottom: -10px;
}

.ios-download-text {
    font-size: 1.1rem;
    text-align: justify;
    direction: rtl;
    padding: 40px 40px 20px 40px;
}

.ios-download-text > span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/********************** app size ********************/
.back-size{
    background-image: url(../img/app-open.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.bigdisplay-text{
    width: 30%;
    text-align: right;
    font-size: 1.8rem;
    direction: rtl;
    position: absolute;
    right: 10%;
    top: 40%;
}
.bigdisplay-link{
    width: 40%;
    text-align: right;
    font-size: 1.8rem;
    direction: rtl;
    position: absolute;
    right: 10%;
    top: 65%;
    text-decoration: none;
    color: slateblue;
}
@media only screen and (min-width: 1025px) {
    .back-size{
        display: block;
    }
 }
 @media only screen and (max-width: 1024px) {
    .back-size{
        display: none;
    }
 }

 /****************** message modal ************************/
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 16%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(10,10,10,0.4);
    filter: blur(3) /* Black w/ opacity */
    }

    /* Modal Content */
    .modal-content {
    background-color: #fefefe;
    background: linear-gradient(90deg, #0F639C 0%, #171949 100%);
    color: white ;
    position: relative;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 90%;
    direction: rtl;
    text-align: center;
    font-size: 1.3rem;
    }

    /* The Close Button */
    .close {
    color: white;
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 20px;
    }

    .close:hover,
    .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    }
    .modal-text{
        padding-top: 3% ;
    }
