@font-face {
    font-family: 'iranyekan';
    font-style: normal;
    font-weight: 300;
    src: url('../Fonts/medium.woff');
    src: url('../Fonts/medium.woff') format('woff'),
        url('../Fonts/medium.eot?#iefix') format('embedded-opentype'),
        url('../Fonts/medium.ttf') format('truetype')
}

@font-face {
    font-family: 'iranyekan';
    font-style: bold;
    font-weight: 700;
    src: url('../Fonts/extraBold.woff');
    src: url('../Fonts/extraBold.woff') format('woff'),
        url('../Fonts/extraBold.eot?#iefix') format('embedded-opentype'),
        url('../Fonts/extraBold.ttf') format('truetype')
}


@font-face {
    font-family: 'farhang';
    font-style: normal;
    src: url('../Fonts/farhang.woff');
    src: url('../Fonts/farhang.woff') format('woff'),
        url('../Fonts/farhang.ttf') format('truetype')
}



::selection {
    background-color: #17469E;
    color: white;
}



html {
    direction: rtl;
    font-family: 'iranyekan';
    font-size: 16px;

    word-break: break-word;

    background: rgb(44, 162, 221);
    background: linear-gradient(90deg, rgba(44, 162, 221, 0.3) 0%, rgba(44, 162, 221, 0.3) 10%, rgba(44, 162, 221, 1) calc(100% - 100px));


}

* {
    font-family: 'iranyekan';
}

*.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

*.left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    direction: ltr;
}

*.pointer {
    cursor: pointer;
}


*.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

span.empty {
    width: 100%;
    height: 2rem;
}

@media only screen and (min-width:0px) and (max-width:959px) {
    .mobileOff {
        display: none;
    }

    input[type="checkbox"] {
        width: 2rem;
        height: 2rem;
    }

    input[type="radio"] {
        width: 2rem;
        height: 2rem;
    }
}



@media only screen and (min-width:0px) and (max-width:959px) {
    html {
        font-size: 12px;

        background: linear-gradient(0deg, rgba(44, 162, 221, 0.3) 0%, rgba(44, 162, 221, 0.3) 10%, rgba(44, 162, 221, 1) calc(100% - 50px));

        overflow: hidden;
    }
}

@media only screen and (min-width:960px) and (max-width:1024px) {
    html {
        font-size: 14px;

        background: linear-gradient(0deg, rgba(44, 162, 221, 0.3) 0%, rgba(44, 162, 221, 0.3) 10%, rgba(44, 162, 221, 1) calc(100% - 50px));
    }
}

body {
    position: relative;
    overflow: hidden;

    line-height: 1.5rem !important;
}

body::after {
    content: '';
    background: url(../Image/Logo.webp);
    width: 30vw;
    background-repeat: no-repeat;
    background-position: left bottom;
    display: block;
    height: 30vw;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
    rotate: 45deg;
    transform-origin: center center;
    background-size: contain;
}

@media only screen and (min-width:0px) and (max-width:959px) {
    body::after {
        rotate: 25deg;
        width: 50vw;
        height: 50vw;
    }
}

body>div {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body>div>div {
    width: 35%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
    box-sizing: border-box;
    box-shadow: 0 0 20px 2px #17469E;
    border-radius: 1rem;
    margin-bottom: 20vh;
}


body>div>div>label {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

body>div>div>label>input {
    width: 70%;
    box-sizing: border-box;
}

body>div>div>button.submit {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    min-width: 4rem;
    border: 0;
    border-radius: 0.5rem;
    background-color: #17469E;
    color: #fff;
    width: 30%;
    box-shadow: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



body>div>div>button.submit:hover {
    box-shadow: 0 0 10px #17469E;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body>div>div>button.submit:active {
    background-color: #477fe7;
}


body>div>div>button.back {
    display: none;
}



body>div>div.forgot>button.back {
    display: initial;
    margin-right: 1rem;
}


body>div>div>button.forgot {
    margin-top: 1rem;
    width: 100%;

    background-color: transparent;
    border: 0;
}


body>div>div.forgot>label.ppss {
    display: none;
}


body>div>div.forgot>button.forgot {
    display: none;
}



@media only screen and (min-width:0px) and (max-width:959px) {
    body>div>div {
        width: 90%;
        box-shadow: 0 0 20px 2px #17469E;
        border-radius: 1rem;

        font-size: 1.5rem;
    }
}


body:not([role="none"])>ul+div {
    display: none !important;
}


body>ul {
    position: relative;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;

    background-color: transparent;
    display: flex;
    flex-direction: column;
}

body[role="none"]>ul {
    display: none !important;
}

body>ul::before {
    content: '';
    height: 100vh;
    width: 8rem;

    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    z-index: 10;
}

body>ul>li {
    width: 100%;
    height: 100svh;
    position: absolute;
    left: 0;
    top: 0;

    overflow: hidden;
}

body>ul>li>a {
    color: white;
    background-color: #17469E;
    position: absolute;
    width: 8rem;
    height: 50px;
    right: 0;
    top: calc(var(--n) * 50px);
    border: 0;
    border-radius: 0;
    z-index: 100;
    font-size: 0.8rem;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

body>ul>li.bottom>a {
    top: unset;
    bottom: calc(var(--n) * 50px);
}

body>ul>li.active>a {
    color: black;
    background-color: transparent;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

body>ul>li.free>a {
    background-color: #17469E;
    top: calc(var(--n) * 50px);
    height: 1000px;
}


body>ul>li>a::after {
    line-height: 50px;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 8rem;
    justify-content: center;
}




body>ul>li.myProfile>a::after {
    content: 'پروفایل من';
}

body>ul>li.checkFlight>a::after {
    content: 'بررسی پروازها';
}

body>ul>li.newTicket>a::after {
    content: 'ثبت تیکت جدید';
}


body>ul>li.myManager>a::after {
    content: 'اطلاعات مدیر';
}



body[role="superAdmin"]>ul>li.myUsers>a::after {
    content: 'ادمین‌های سایت';
}

body[role="admin"]>ul>li.myUsers>a::after {
    content: 'آژانس‌های من';
}

body[role="agency"]>ul>li.myUsers>a::after {
    content: 'کارمندان من';
}

body[role="user"]>ul>li.myUsers>a::after {
    content: none;
    display: none;
}

body[role="user"]>ul>li.myUsers>a {
    cursor: default;
}


body>ul>li.ticketsReport>a::after {
    content: 'مدیریت تیکت‌ها';
}



body>ul>li.myWallet>a::after {
    content: 'مدیریت مالی';
}

body[role="user"]>ul>li.myWallet>a::after {
    content: none;
    display: none;
}

body[role="user"]>ul>li.myWallet>a {
    cursor: default;
}


body>ul>li.ticketPrice>a::after {
    content: 'قیمت سیستمی';
}

body:not([role="superAdmin"])>ul>li.ticketPrice>a::after {
    content: none;
    display: none;
}

body:not([role="superAdmin"])>ul>li.ticketPrice>a {
    cursor: default;
}


body>ul>li.penaltyPrice>a::after {
    content: 'نرخ کنسلی';
}

body:not([role="superAdmin"])>ul>li.penaltyPrice>a::after {
    content: none;
    display: none;
}

body:not([role="superAdmin"])>ul>li.penaltyPrice>a {
    cursor: default;
}


body>ul>li.darsadForosh>a::after {
    content: 'درصد فروش';
}

body:not([role="superAdmin"])>ul>li.darsadForosh>a::after {
    content: none;
    display: none;
}

body:not([role="superAdmin"])>ul>li.darsadForosh>a {
    cursor: default;
}

body>ul>li.systemLog>a::after {
    content: 'لاگ سیستم';
}

body:not([role="superAdmin"])>ul>li.systemLog>a::after {
    content: none;
    display: none;
}

body:not([role="superAdmin"])>ul>li.systemLog>a {
    cursor: default;
}


body>ul>li.exit>a::after {
    content: 'خروج';
}


body>ul>li>section {
    width: calc(100% - 8rem);
    height: 100vh;
    position: absolute;
    right: 100%;
    top: 0;
    opacity: 0;
    display: block;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    z-index: 0;
    overflow-y: auto;
}

body>ul>li.active>section {
    right: 8rem;
    opacity: 1;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    z-index: 1;
}

body>span.menu {
    display: none;
}

@media only screen and (min-width:0px) and (max-width:959px) {
    /* body>ul::before {
        width: 100vw;
        height: 60px;
        background-color: #17469E;
    } */

    html {
        height: 100svh;
    }

    body {
        height: 100svh;
    }

    body>ul {
        height: 100svh;
    }


    body[role="none"]>span.menu {
        display: none;

    }

    body:not([role="none"])>span.menu {
        display: initial;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 60px;
        height: 60px;
    }

    body>span.menu>div,
    body>span.menu>div::before,
    body>span.menu>div::after {
        width: 30px;
        height: 6px;
        background-color: #17469E;
        position: absolute;
        top: 40px;
        left: 20px;
        border-radius: 5px;
        -webkit-transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
        box-shadow: 0 0 10px 0px #17469E;
    }

    body>span.menu>div::before {
        content: '';
        top: -12px;
        left: 0;
    }

    body>span.menu>div::after {
        content: '';
        top: 12px;
        left: 0;
    }

    body.open>span.menu>div {
        box-shadow: 0 0 30px 0px #fff;
        background-color: #fff;
        width: 0;
        left: 35px;
    }


    body.open>span.menu>div::before {
        box-shadow: 0 0 30px 0px #fff;
        background-color: #fff;
        width: 42px;
        top: 0;
        left: -15px;
        rotate: 45deg;
        -webkit-transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }

    body.open>span.menu>div::after {
        box-shadow: 0 0 30px 0px #fff;
        background-color: #fff;
        width: 42px;
        top: 0;
        left: -15px;
        rotate: -45deg;
        -webkit-transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }





    body>ul::before {
        width: 100vw;
        height: 60px;
        background-color: #17469E;
        top: -100vh;
    }

    body.open>ul::before {
        top: 0;
    }

    body>ul>li>a {
        width: 100%;
        height: 50px;
        top: -100vh;
        left: 0;

        text-align: center;
        font-size: 1.5rem;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    body>ul>li.bottom>a {
        top: unset;
        bottom: -100vh;
    }


    body.open>ul>li>a {
        top: calc((var(--n) + 1) * 50px);
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    body.open>ul>li.bottom>a {
        top: unset;
        bottom: calc((var(--n) * 50px));
    }


    body>ul>li>a::after {
        width: 100%;
        line-height: 50px;
    }

    body>ul>li.active>a {
        background-color: #17469E;
        color: #fff;
    }

    body>ul>li.free>a {
        top: -100vh;
        height: calc(100vh - ((var(--n) + 1) * 50px));
    }

    body.open>ul>li.free>a {
        top: calc((var(--n) + 1) * 50px);
    }




    body>ul>li>section {
        width: 100%;
        height: 100svh;
        right: 0;
        left: unset;
        top: -100vh;
        -webkit-transition: all 0s ease;
        -moz-transition: all 0s ease;
        -o-transition: all 0s ease;
        transition: all 0s ease;
    }

    body>ul>li.active>section {
        top: 0;
        right: 0;
        left: unset;
        -webkit-transition: all 0s ease;
        -moz-transition: all 0s ease;
        -o-transition: all 0s ease;
        transition: all 0s ease;
    }
}

























body>ul>li>section {
    display: flex;
    flex-direction: column;
}

body>ul>li>section>div {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem 0 0;
    width: 60%;
    box-sizing: border-box;
}

body>ul>li>section>div:nth-last-child(1) {
    padding-bottom: calc(3rem + 50px) !important;
}

body>ul>li>section>div.big {
    padding: 3rem 2rem 0 1rem;
    width: 100%;
}





body[role="server"]>ul>li>section .server,
body[role="superAdmin"]>ul>li>section .superAdmin,
body[role="admin"]>ul>li>section .admin,
body[role="agency"]>ul>li>section .agency,
body[role="user"]>ul>li>section .user {
    display: none;
}

*[mydir="ltr"] {
    text-align: left;
}



body>ul>li>section>div>h2 {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    line-height: 2rem;
    position: relative;
    display: flex;
    min-height: 2rem;
}


*.role::after {
    content: '';
    font-size: 1.5rem;
    line-height: 2rem;
    height: 2rem;

    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    justify-content: flex-start;
}

body[role="admin"] *.role0::after,
body[role="superAdmin"] *.role::after {
    content: attr(textbefore) 'مدیر سایت' attr(textafter);
}

body[role="agency"] *.role0::after,
body[role="admin"] *.role::after,
body[role="superAdmin"] *.role1::after {
    content: attr(textbefore) 'ادمین' attr(textafter);
}

body[role="user"] *.role0::after,
body[role="agency"] *.role::after,
body[role="admin"] *.role1::after {
    content: attr(textbefore) 'آژانس' attr(textafter);
}

body[role="user"] *.role::after,
body[role="agency"] *.role1::after {
    content: attr(textbefore) 'کارمند' attr(textafter);
}




body>ul>li>section>div>div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    margin-bottom: 0.5rem;
    align-items: center;
    margin-right: 30%;
}

body>ul>li>section>div label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5rem;
    align-items: center;
}

body>ul>li>section>div label.nospace {
    justify-content: flex-start;
}

body>ul>li>section>div p {
    margin-bottom: 0.5rem;
}

body>ul>li>section>div>div>label {
    width: 48%;
}

body>ul>li>section>div label input {
    width: 70%;
    box-sizing: border-box;
}

body>ul>li>section>div label select {
    width: 70%;
    box-sizing: border-box;
}


body>ul>li>section>div label span>input {
    width: 30%;
    box-sizing: border-box;
    margin-left: 1rem;
}


body>ul>li>section>div label.nospace input {
    margin-right: 1rem;
}


body>ul>li>section>div label>textarea {
    width: 70%;
    box-sizing: border-box;
}

body>ul>li>section>div label>textarea.telToken {
    cursor: pointer;
    height: 12rem;
}

.bot1.hidden,
.bot2.hidden {
    display: none;
}

body>ul>li>section>div label>div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    box-sizing: border-box;
}

body>ul>li>section>div label>span {
    width: 70%;
    box-sizing: border-box;
    cursor: text;
}







body>ul>li>section>div label>span>a {
    text-decoration: underline;
    color: #17469E;
}

body>ul>li>section button {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 50%;
    padding: 0.5rem 1rem;
    min-width: 4rem;
    border: 0;
    background-color: #17469E;
    color: #fff;
    width: 30%;
    box-shadow: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body>ul>li>section button:hover {
    box-shadow: 0 0 10px #17469E;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body>ul>li>section button:active {
    background-color: #477fe7;
}












body>ul>li>section>div>section {
    width: 100%;
    overflow: auto;
    box-shadow: 0 0 30px #17469E;
    border-radius: 1rem;
    margin-bottom: 3rem;
    background-color: #e0ffff;
}

body>ul>li>section>div>section>table {
    display: none;
}

body>ul>li>section>div>section>table.full {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}


body>ul>li>section>div>section>table>thead {
    background-color: #17469E;
    color: #fff;
    padding: 0.5rem 0;
    box-sizing: border-box;
    font-size: 0.7rem;
    border-radius: 1rem 1rem 0 0;
}

body>ul>li>section>div>section>table>tbody {
    max-height: 70vh;
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    background-color: #e0ffff;
    scrollbar-color: #17469E transparent;
}

body>ul>li>section>div>section>table tr {
    width: 100%;
    display: flex;
    flex-direction: row;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

body>ul>li>section>div>section>table>tbody>tr:nth-child(2n) {
    color: #000;
    background-color: rgba(0, 0, 0, 0.05);

}

body>ul>li>section>div>section>table>tbody>tr:hover {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}




body>ul>li>section>div>section>table tr>td {
    padding: 0.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

body>ul>li>section>div>section>table tr>td:nth-child(1) {
    padding-right: 1rem;
}

body>ul>li>section>div>section>table tr>td:nth-last-child(1) {
    padding-left: 1rem;
}

body>ul>li>section>div>section>table tr>td {
    flex: calc(var(--www));
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    word-break: initial;
    overflow: hidden;
}

body>ul>li>section>div>section>table tr>td>* {
    width: 100%;
    text-align: center;
}

body>ul>li>section>div>section>table tr>td>a {
    width: 100%;
    text-align: left;
}

body>ul>li>section>div>section>table tr>td>a+a {
    margin-top: 1rem;
}



body>ul>li>section>div>section>table tr>td>button {
    margin: 0;
}

body>ul>li>section>div>section>table tr>td>img {
    width: 40px;
    height: 40px;
    margin-left: 1rem;
    filter: drop-shadow(1px 1px 4px #333);
}



body>ul>li>section>div>section>table tr>td.statusFlag {
    display: flex;
    justify-content: center;
    align-items: center;
}

body>ul>li>section>div>section>table tr>td.statusFlag::after {
    font-family: 'farhang';
    font-size: 2rem;
    line-height: 2rem;
    width: 2rem;
    height: 2rem;

    filter: drop-shadow(0px 0px 5px var(--pen-color));

    /* animation: cheshmak 3s ease-in-out 0s infinite normal none; */
    color: var(--pen-color);
}

@keyframes cheshmak {
    0% {
        filter: drop-shadow(0px 0px 0px var(--pen-color));
    }

    50% {
        filter: drop-shadow(0px 0px 20px var(--pen-color));
    }

    51% {
        filter: drop-shadow(0px 0px 0 var(--pen-color));
    }

    100% {
        filter: drop-shadow(0px 0px 0 var(--pen-color));
    }
}

body>ul>li>section>div>section>table tr>td.statusFlag.wait::after {
    content: '\f254';
}

body>ul>li>section>div>section>table tr>td.statusFlag.search::after {
    content: '\f002';
}

body>ul>li>section>div>section>table tr>td.statusFlag.buy::after {
    content: '\f291';
}

body>ul>li>section>div>section>table tr>td.statusFlag.money::after {
    content: '\f09d';
}

body>ul>li>section>div>section>table tr>td.statusFlag.ticket::after {
    content: '\f00c';
}

body>ul>li>section>div>section>table tr>td.statusFlag.remove::after {
    content: '\f00d';
}

body>ul>li>section>div>section>table tr>td.statusFlag.pause::after {
    content: '\f28c';
}

body>ul>li>section>div>section>table tr>td.statusFlag.fail::after {
    content: '\f05e';
}





@media only screen and (min-width:0px) and (max-width:959px) {
    body>ul>li>section>div {
        width: 100%;
        padding: 3rem 1rem 0;
    }

    body>ul>li>section>div.big {
        width: 100%;
        padding: 3rem 1rem 0;
    }

    body>ul>li>section>div>h2 {
        font-size: 2rem;
        margin: 2rem 0 3rem;
        line-height: 2.5rem;
        min-height: 2.5rem;
    }

    *.role::after {
        font-size: 2rem;
        line-height: 2.5rem;
        height: 2.5rem;
    }

    body>ul>li>section>div>div {
        width: 100%;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    body>ul>li>section>div label {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
        font-size: 1.5rem;
        line-height: 1.8rem;
    }



    body>ul>li>section>div label input {
        width: 100%;
        margin-top: 0.8rem;
    }

    body>ul>li>section>div label>textarea {
        width: 100%;
        margin-top: 0.8rem;
    }

    body>ul>li>section>div label>div {
        width: 100%;
        margin-top: 0.8rem;
    }

    body>ul>li>section>div label>span {
        width: 100%;
        margin-top: 0.8rem;
    }

    body>ul>li>section button {
        font-size: 1.5rem;
        margin: 1rem auto;
        padding: 1rem 0;
        min-width: 6rem;
        width: 50%;
        box-shadow: 0 0 10px #17469E;
        border-radius: 1rem;
    }













    body>ul>li>section>div>section>table.size100 {
        width: 100%;
    }

    body>ul>li>section>div>section>table.size120 {
        width: 120%;
    }

    body>ul>li>section>div>section>table.size150 {
        width: 150%;
    }

    body>ul>li>section>div>section>table.size200 {
        width: 200%;
    }

    body>ul>li>section>div>section>table.size300 {
        width: 300%;
    }

    body>ul>li>section>div>section>table>tbody>tr:nth-child(2n) {
        color: #000;
        background-color: rgba(0, 0, 0, 0.15);
    }

    body>ul>li>section>div>section>table>tbody>tr:hover {
        color: #000;
        background-color: transparent;
    }

    body>ul>li>section>div>section>table>tbody>tr:nth-child(2n):hover {
        color: #000;
        background-color: rgba(0, 0, 0, 0.15);
    }


    body>ul>li>section>div>section>table tr>td>button {
        margin: 0;
        font-size: 1rem !important;
    }

    body>ul>li>section>div>section>table tr>td>input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

}

















































.selectFilter {
    width: 100%;
    display: flex;
    flex-direction: column !important;
    position: relative;
}


.selectFilter::after {
    font-family: "Farhang";
    content: "\f078";
    font-size: 1rem;
    line-height: 1rem;
    padding: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transform-origin: center center;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.selectFilter.fill::after {
    content: "\f00d";
}

.selectFilter.show:not(.fill)::after {
    transform: rotateX(180deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.selectFilter.multiSelect::after {
    content: unset;
}

.selectFilter.multiSelect.fill::after {
    content: "\f00d";
}


.selectFilter>input {
    font-size: 1rem;
    line-height: 1.2rem;
    height: 2rem;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.selectFilter>button {
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    width: 2rem;
    height: 2rem;
    border: 0;
    z-index: 1;
    margin: 0 !important;
    box-shadow: unset;
}

.selectFilter>button:hover {
    box-shadow: unset !important;
}

.selectFilter>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: auto;

    scrollbar-width: thin;
    -ms-overflow-style: none;

    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: 2;
}

.selectFilter.show>div {
    max-height: 10rem;
    height: 10rem;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}


.selectFilter.multiSelect>div {
    position: relative;
    top: unset;
    left: unset;
    background-color: #fff;
    height: 10rem;
    z-index: 1;
}

.selectFilter.show>div::-webkit-scrollbar {
    display: none;
}


.selectFilter>div>span {
    font-size: 0.8rem;
    line-height: 2rem;
    height: 2rem;
    width: 100%;
    padding: 0 1rem;
    display: initial;
    box-sizing: border-box;

    background-color: #477fe7;
    color: white;
    cursor: pointer;
}


.selectFilter.multiSelect>div>span {
    background-color: #fff;
    color: #000;
}


.selectFilter>div>span.hidden {
    display: none;
}

.selectFilter>div>span:hover {
    background-color: #17469E;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.selectFilter.multiSelect>div>span:hover {
    background-color: #477fe7;
    color: white;
}

.selectFilter.multiSelect>div>span.active {
    background-color: #17469E;
    color: white;
}



.selectFilter.disabled {
    pointer-events: none;
    opacity: 0.4;
}


@media only screen and (min-width:0px) and (max-width:959px) {
    .selectFilter::after {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .selectFilter>input {
        font-size: 1.5rem;
        line-height: 2rem;
        height: 3rem;
        box-sizing: border-box;
        margin-top: 0;
    }

    .selectFilter>button {
        width: 3rem;
        height: 3rem;
    }

    .selectFilter>button:hover {
        box-shadow: unset !important;
    }

    .selectFilter>div {
        top: 3rem;
    }

    .selectFilter.show>div {
        max-height: 15rem;
        height: 15rem;
    }


    .selectFilter.multiSelect>div {
        height: 15rem;
    }



    .selectFilter>div>span {
        font-size: 1.2rem;
        line-height: 3rem;
        height: 3rem;
    }
}

















.myCalendar {
    width: 100%;
    display: flex;
    flex-direction: column !important;
    position: relative;
}


.myCalendar>p {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1rem;
    line-height: 2rem;
    margin-right: 1rem;
    display: none;
}


.myCalendar>input {
    font-size: 1rem;
    line-height: 1.2rem;
    height: 2rem;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.myCalendar>div {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    height: 0;

    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: 2;

    padding: 0 2rem;

    box-sizing: border-box;

    overflow: hidden;
    background-color: #477fe7;
}

.myCalendar.show>div {
    padding: 1.5rem 2rem;
    height: 11rem;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}




.myCalendar>div>label {
    width: 70%;
    display: flex;
    height: 1.7rem;
    justify-content: space-between;
    margin-bottom: 0rem;
}

.myCalendar>div>span {
    width: 30%;
    height: 1.7rem;
    padding-right: 1rem;
    box-sizing: border-box;
}


.myCalendar>div>div {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 1.7rem;
    justify-content: space-around;
}

.myCalendar>div>div>button {
    height: 1.7rem;
    padding: 0 3rem;
    font-size: 0.85rem;
    margin: 0 0.5rem;
    width: unset;
}




@media only screen and (min-width:0px) and (max-width:959px) {

    .myCalendar>p {
        font-size: 1.2rem;
        line-height: 3rem;
    }


    .myCalendar>input {
        font-size: 1.2rem;
        line-height: 2rem;
        height: 3rem;
        margin-top: 0 !important;
    }

    .myCalendar>div {
        top: 3rem;
        display: none;
    }

    .myCalendar.show>div {
        height: 15rem;
    }




    .myCalendar>div>label {
        height: 2.5rem;
        flex-direction: row;
        align-items: center;
    }

    .myCalendar>div>label>input {
        width: 70% !important;
        margin-top: 0 !important;
    }

    .myCalendar>div>span {
        height: 2.5rem;
        font-size: 1.2rem;
        display: flex;
        flex-direction: row;
        align-items: center;
    }


    .myCalendar>div>div {
        margin-top: 1rem;
    }

    .myCalendar>div>div>button {
        height: 3rem;
        padding: 0 4rem;
        font-size: 1rem;
        margin: 0 0.5rem;
        width: unset;
    }

}










.promptBox {
    display: none;
}



.promptBox.show {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000e5;
    display: flex;
    justify-content: center;
    align-items: center;
}


.promptBox>div {
    width: 30%;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;

    padding: 0 !important;
    box-shadow: 0 0 10px #FFF !important;
}


.promptBox>div>p.title {
    width: 100%;
    font-size: 1.5rem;
    line-height: 4rem;
    text-align: center;
    background-color: #17469E;
    color: #fff;
}



.promptBox>div>p.message {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
    min-height: 5rem;
    padding: 1rem;
    text-align: center;
}


.promptBox>div>button {
    padding: 0.5rem;
    margin: 0.5rem 2rem 2rem 2rem;
    min-width: 6rem;
    width: calc(50% - 4rem);
}

.promptBox>div>button.hidden {
    display: none;
}







@media only screen and (min-width:0px) and (max-width:959px) {
    .promptBox>div {
        width: 90%;
    }


    .promptBox>div>p.title {
        font-size: 1.5rem;
        line-height: 4rem;
    }



    .promptBox>div>p.message {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

}










.waiting {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
}

.waiting::after {
    content: '';
    position: fixed;
    /* top: calc(50vh - 50px);
    left: calc(50vw - 50px); */
    width: 100px;
    height: 100px;
    z-index: 10000;
    background-image: url(../Image/waiting.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px;
    animation: waitingAnime 5s ease-in-out 0s infinite forwards normal;
    rotate: calc(45deg - atan(var(--ratio)));
}


@keyframes waitingAnime {
    0% {
        top: calc(110vh - 50px);
        left: calc(-10vw - 50px);
        opacity: 0;
        rotate: calc(45deg - atan(var(--ratio)));
    }

    25% {
        opacity: 1;
        rotate: calc(45deg - atan(var(--ratio)));
    }

    50% {
        top: calc(-10vh - 50px);
        left: calc(110vw - 50px);
        opacity: 0;
        rotate: calc(45deg - atan(var(--ratio)));
    }

    51% {
        top: calc(-10vh - 50px);
        left: calc(-10vw - 50px);
        opacity: 0;
        rotate: calc(45deg + atan(var(--ratio)));
    }

    75% {
        opacity: 1;
        rotate: calc(45deg + atan(var(--ratio)));
    }

    100% {
        top: calc(110vh - 50px);
        left: calc(110vw - 50px);
        opacity: 0;
        rotate: calc(45deg + atan(var(--ratio)));
    }
}

.waiting.show {
    display: flex;
}











.messageBox {
    display: flex;
    align-items: flex-start;
    width: unset;

    min-width: 300px;

    max-width: 25%;

    height: unset;
    color: black;
    background-color: #FFF;
    position: absolute;
    bottom: 20px;
    left: -100%;
    z-index: 1000;
    padding: 0.5rem 1rem calc(0.5rem + 5px);
    box-shadow: 4px 4px 10px 1px black;
    border-radius: 0.3rem;
    overflow: hidden;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;

    cursor: pointer;

    z-index: 2000000003;
}

.messageBox::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(var(--darsad) * 1%);
    height: 5px;
    background-color: #17469E;
}

.messageBox.success {
    background-color: #82DD55;
}

.messageBox.error {
    background-color: #E23636;
}

.messageBox.warning {
    background-color: #EDB95E;
}

.messageBox.show {
    left: 20px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}




@media only screen and (min-width:0px) and (max-width:959px) {
    .messageBox {
        min-width: 50%;
        max-width: 90%;
        box-sizing: border-box;
        min-height: 5rem;
    }

    .messageBox.show {
        left: 5%;
        min-height: 5rem;
    }
}










*.ticketPrint {
    display: none;
}






@media print {
    @page {
        size: A5;
        margin: 0cm;
    }

    html {
        /* background: none; */
        width: 149mm;
        height: 200mm;
        padding: 0cm;
        margin: 0cm;
    }

    body {
        width: 100%;
        height: 100%;
        /* display: flex;
        justify-content: center;
        align-items: center; */

        box-sizing: border-box;
    }


    body * {
        display: none;
    }

    body>div.ticketPrint {
        background-color: unset;
        display: initial;

        /* width: 100%; */
        height: 3rem;
        text-align: center;
        border: 1px solid black;
        margin: 0;
        padding: 0;

        font-size: 2rem;
        line-height: 3rem;
        position: absolute;
        top: 0;
        left: 0;
    }

    body>div.ticketPrint * {
        display: initial;
    }
}





.chargeConfirm {

    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;

    background-color: #477fe7;

    z-index: 10000;
    display: none;
}

.chargeConfirm.show {
    display: flex;
}

.chargeConfirm>div {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 40vh;
}

.chargeConfirm>div>p {
   margin-bottom: 2rem;
   text-align: justify;
}

.chargeConfirm>div>button {
   padding: 1rem;
   display: none;
 }

 .chargeConfirm>div>button.show {
    display: initial;
  }