@font-face {
    font-family: 'Bahij-Janna';
    src: url('../fonts/bahij/BahijJanna.eot');
    src: url('../fonts/bahij/BahijJanna.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahij/BahijJanna.woff2') format('woff2'),
    url('../fonts/bahij/BahijJanna.woff') format('woff'),
    url('../fonts/bahij/BahijJanna.ttf') format('truetype'),
    url('../fonts/bahij/BahijJanna.svg#BahijJanna') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bahij-Janna-bold';
    src: url('../fonts/bahij/BahijJanna-Bold.eot');
    src: url('../fonts/bahij/BahijJanna-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahij/BahijJanna-Bold.woff2') format('woff2'),
    url('../fonts/bahij/BahijJanna-Bold.woff') format('woff'),
    url('../fonts/bahij/BahijJanna-Bold.ttf') format('truetype'),
    url('../fonts/bahij/BahijJanna-Bold.svg#BahijJanna-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/******************************/
/******************************/
:root {
    --primary: #b5dbfa;
    --secondary: #144272;
    --gray: #e7e7e7;
    --black: #000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

body {
    font-family: 'Bahij-Janna';
    color: var(--black);
    background: var(--white);
    font-size: 16px;
}

p:last-of-type {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: bold;
    color: var(--white);
}

button,
li,
a {
    color: var(--primary);
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
}

.no-padding {
    padding: 0 !important;
}

.form-control {
    border-radius: 0;

}

textarea.form-control {
    height: 200px;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
    color: var(--primary);
}

.main-title h2 {
    color: var(--black);
    font-size: 36px;
    position: relative;
    z-index: 2;
    font-weight: bold;
    margin: 30px 0;
}

.main-btn a {
    position: relative;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    background-color: transparent;
    padding: 8px 36px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    transition: all .35s ease-in-out;
}

.main-btn:hover a {
    color: var(--white) !important;
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    transform: translateY(-5px);

}


@media (max-width: 768px) {
    .main-btn a {
        padding: 5px 28px;
    }


}

@media (max-width: 500px) {
    .main-btn {
        font-size: 12px;
    }

    .main-title h2 {
        font-size: 28px;
    }
}

/******************************/
/* && search &&*/
/******************************/
#header-search {
    display: inline-block;
}

#search-header.open {
    background: rgba(0, 0, 0, 0.8);
}

#search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translate(0px, 0px) scale(0.7, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#search-header.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

#search-header .search-form {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

#search-header input[type="search"] {
    font-size: 44px;
    color: #fff;
    font-weight: 300;
    border: 0;
    outline: none;
    width: 70%;
    height: 90px;
    line-height: normal;
    border-bottom: 1px solid;
}

#search-header .search-submit {
    z-index: 10;
    border: none !important;
}

#search-header .search-submit,
.search-icon {
    background: none;
    border: none;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 20px;
}

.search-icon:before {
    font-family: 'Font Awesome 5 Brands';
    content: "\f3eb";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: #fff;
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-out;
}

#search-header .close:hover {
    opacity: 0.8;
}

#search-header .close i {
    display: none;
}

#search-header .close:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

#search-header button.close {
    border: 2px solid #fff;
    height: 37px;
    width: 37px;
    border-radius: 200em;
}

#search-header input[type="search"] {
    background: rgba(0, 0, 0, 0);
    border-color: #5f5f5f;
}

#search-header .search-submit {
    color: transparent;
}

#search-header input[type="search"] {
    color: #fff;
}


/******************************/
/* && header &&*/
/******************************/
.header-icon-desc {
    display: none;
}

.header-icon-mob {
    display: block;
}

.head-logo .open-search {
    color: var(--primary) !important;
}

.header-content {
    justify-content: flex-start;
}


.head-logo .header-icon a {
    margin: 0 10px;
    font-size: 24px;
}


.dd-trigger {
    display: inline-block;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.head-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 0;
}

.head-logo .header-icon {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.header-icon {
    margin-top: 0;
}

.menu-icons a:not(:last-of-type) {
    margin-inline-end: 10px;
}

.nav-list > li.menu-item-has-children > a:after {
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    color: var(--white);
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.nav-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    text-align: center;
    margin-inline-end: 10px;
    color: var(--secondary) !important;
    padding: 0;
    display: block;
    background-color: var(--primary);
    transition: all 0.5s ease-in-out;
}

html[dir="ltr"] .mobile-nav-list {
    left: 0;
    transform: translateX(-100%);
}

html[dir="rtl"] .mobile-nav-list {
    transform: translateX(100%);
    right: 0;
}

.mobile-nav-list {
    width: 40%;
    height: 95%;
    padding: 15px;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    z-index: 6;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    overflow-y: scroll;
    transition: all .5s linear;
}

.mobile-nav-list .sell {
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
    margin-top: 50px;
}

.mobile-nav-list .menu-item {
    position: relative;
    border-bottom: 1px solid var(--primary);
}

.mobile-nav-list .menu-item:not(:last-of-type) a {
}

.mobile-nav-list .menu-item > a {
    display: block;
    color: var(--black);
    padding: 15px;
}

.mobile-nav-list .menu-item.menu-item-has-children > a {
    width: calc(100% - 34px);
    display: inline-block;
}

.mobile-nav-list .menu-item > a:hover,
.mobile-nav-list .menu-item.active > a {
    color: var(--primary);
}

html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
    border-left: 1px solid var(--black);
}

html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
    border-right: 1px solid var(--black);
}

.mobile-nav-list .menu-item.menu-item-has-children i {
    color: var(--black);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;

    transform-origin: center;
    transition: all .3s linear;
}

.mobile-nav-list .menu-item i.open {
    color: var(--primary);
}

.sub-menu {
    list-style: none;
    background-color: var(--primary);
}

.mobile-nav-list .sub-menu a {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    transition: all .3s linear;
}

.mobile-nav-list .sub-menu a:hover {
    color: #393839;
}

.trans-none {
    transform: none !important;
}

html[dir="ltr"] .nav-overlay {
    right: 0;
    transform: translateX(100%);
}

html[dir="rtl"] .nav-overlay {
    left: 0;
    transform: translateX(-100%);
}

.nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    transition: all .35s ease-in-out;
}

.mobile-nav-list::-webkit-scrollbar {
    display: none;
}

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

header {
    padding: 20px 0;
    z-index: 1;
}

.head-home-inside {
    background: #e9f4fc;
}

.head-home-inside:before {
    content: none;

}

.head-home:before {
    content: " ";
    background: #e9f4fc;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 400px;
}

.dropdown {
    position: relative;
    display: inline-block;

}

.dropdown-button {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 0 5px;
    font-weight: bold;
    width: 150px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline-end: 10px;
    transition: all .35s ease-in-out;
}

.dropdown-button:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary);
    min-width: 150px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 999 !important;
}

.dropdown-content a {
    background: transparent;
    color: var(--secondary);
    padding: 10px 5px;
    transition: all .35s ease-in-out;
    display: block;
    border-radius: 15px;
    font-weight: bold;
    margin-inline-start: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header--icon {
    display: flex;
    align-items: center;
}

.header--icon .user, .header--icon .sell {
    background: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);
    transition: all .35s ease-in-out;
    padding: 0px 5px;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;

    margin-inline-end: 10px;
}

.header--icon .user:hover, .header--icon .sell:hover {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}

.header--icon .user i {
    margin-inline-end: 10px;
}

.header--icon .lang {

    padding: 0;
    border-radius: 0;
    border: none;
}


@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
    }

    .head-logo {
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {
    .dropdown-button, .header--icon .user, .header--icon .sell {
        width: 100px;
        height: 40px;
        font-size: 12px;
    }

    .header--icon .lang {
        width: 40px;
        height: 40px;
    }

    .top-header {
        flex-direction: column;
    }

    header {
        position: relative;
    }


}


/******************************/
/* && footer &&*/
/******************************/
footer {
    position: relative;
    padding: 50px 0;
    background: #e9f4fc;
}

footer .iframe {
    height: 200px !important;
    overflow-y: scroll;
}

.footet-menu-link li a {
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
    transition: all ease-in-out .5s;
}

.footet-menu-link li:hover a {
    color: var(--secondary);
    transition: all ease-in-out .5s;
}

.subscribe-form button:hover {
    background: var(--secondary);

}

.powerd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.powerd .content {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.powerd .content .desc {
    margin-top: 3px;
    font-weight: bold;
}

.social .soc {
    color: var(--secondary);
    background: var(--primary);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-inline-end: 10px;
    font-size: 18px;
}


.powerd .content a {
    color: #0078d7;
!important;
    margin: 0 3px;
}


@media (max-width: 768px) {
    .main-footer-tit {
        margin: 30px 0;
    }

    .content {
        margin-bottom: 20px;
    }

    .main-footer-content {
        flex-wrap: wrap;
    }

    .main-footer-content .info {
        flex: 0 0 33.3%;
        max-width: 33.3%;
        margin-bottom: 30px;
    }

    .powerd .visitor {
        margin-top: 20px;
    }

    .whats {
        right: 10px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

@media (max-width: 500px) {
    .main-footer-content .main-footer-tit {
        margin-bottom: 20px;
    }

    .powerd .social {
        margin-bottom: 10px;
    }

    .footet-menu-link {
        display: flex;
        order: 2;
        text-align: center;

    }

    .powerd .content {
        display: flex;
        order: 1;
    }

    .powerd {
        flex-direction: column;
    }

    .main-footer-content {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .main-footer-content > div {
        margin-bottom: 20px;
    }

    .main-footer-content .info {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .powerd {
        padding: 10px 12px;

    }

    .powerd .content .desc {
        margin: 5px 0;
    }

    .powerd .content {
        font-size: 14px;
        flex-direction: column;
    }
}

/******************************/
/* && single &&*/
/******************************/
/*------------------*//*------------------*/
/*------------------*//*------------------*/
/*------------------*//*------------------*/
/*------------------*//*------------------*/
/*------------------*//*------------------*/
/*------------------*//*------------------*/
/*------------------*//*------------------*/
.main-tables {
    margin: 30px 0;
}

.main-tables .col-tables {
    height: 100%;
}

.main-tables .main-tables-items {
     padding: 15px;
    border-radius: 15px;
    width: 100%;
    height: 150px;
    margin-bottom: 30px;
    position: relative;
    background-image: url("../images/bg-table.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: all .35s ease-in-out;

}

.main-tables .main-tables-items.active-table-item:before {
    content: " ";
    background: #0077D2;

    border-radius: 15px;

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    transition: all .35s ease-in-out;

}

.main-tables-items-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.main-tables-items .main-tables-items-content span {
    color: var(--white);
    font-weight: bold;
}

.main-tables-items .main-tables-items-content .icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    margin-inline-end: 15px;

    transition: all .35s ease-in-out;

}

.main-tables .main-tables-items.active-table-item .main-tables-items-content .icon i {
    background: var(--primary);
    color: var(--white);
}

.main-tables-items .main-tables-items-content .number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.table-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-search .search-table {
    display: flex;
    align-items: center;
    width: 45%;
}

.table-search .search-input {
    padding: 5px 15px 5px 0;
    height: 50px;
    border: none;
    background: #F5F5F5;

    border-radius: 35px;
    flex: 1;
}

.table-search .search-button {
    padding: 0;
    width: 140px;
    height: 40px;
    background-color: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 35px;
    margin: 0 -150px 0 5px;
    cursor: pointer;
}

.main-table-order {
    margin: 30px 0;
}

.main-table-order table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.main-table-order table thead tr {
    border-radius: 10px 10px 0px 0px;

}

.main-table-order th, .main-table-order td {
    padding: 12px;
    text-align: right;
    color: #151515;

}

.main-table-order table thead tr th:first-of-type {
    border-radius: 0 10px 0px 0px;
}

.main-table-order table thead tr th:last-of-type {
    border-radius: 10px 0 0px 0px;
}

.main-table-order th {
    background: #DFF1FF;
    color: #000;
}

.main-table-order tr:nth-child(even) td {
    background-color: #F5F5F5;

}

.main-table-order tr:nth-child(odd) td {
    background-color: #fff;

}

.table-search .tit {
    color: #0077D2;

    text-align: right;

    font-size: 27px;
}

.main-table-order .main-table-order-icons {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.main-table-order .main-table-order-but {
    text-align: end;
}

.main-table-order .main-table-order-but a {
    width: 67px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 5px;
    margin-inline-start: 10px;
    color: var(--white);
}

.main-table-order .main-table-order-but a.accepted {
    background: #1ABA00;
}

.main-table-order .main-table-order-but a.rej {
    background: #B90000;
}

.main-table-order .main-table-order-icons i {
    font-size: 16px;
    margin-inline-start: 10px;
    background: #0077D2;
    padding: 5px;
    border-radius: 5px;
    color: var(--white);
}

.main-table-order tr td .st-state {
    padding: 5px 10px;
    border-radius: 5px;
    max-width: 100px;
    text-align: center;
    color: var(--white);
    display: block;
}

.main-table-order tr td.payed span {
    background-color: #1ABA00;
    color: #fff;
    border-color: #1ABA00;
}

.main-table-order tr td.rejected span {
    background-color: #B31312;
    color: #ffe0e0;
    border-color: #B31312;
}

.main-table-order tr td.wait span {
    background-color: #FDA403;
    color: #ffe0e0;
    border-color: #FDA403;
}

.search-table .form-group {
    margin: 0;
}

.wallet-main .table-search .search-table {
    width: 65%;
}

.search-table .form-group input {
    width: 100%;
    height: 50px;
    border-radius: 35px;
    margin-inline-end: 25px;
}

.wallet-main .table-search .search-input {
    margin-inline-end: 20px;
}

.wallet-modify-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.wallet-modify-content .tit-btn {
    display: flex;
    align-items: center;
}

.wallet-modify-content .tit-btn .tit {
    margin-inline-end: 20px;
    color: #0077D2;
    text-align: right;
    font-size: 27px;
}

.wallet-modify-content .wallet-inv {
    color: var(--gray);
    font-size: 20px;
}

.wallet-modify-content .wallet-inv span {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.wallet-modify-content .btn {
    width: 160px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    text-align: center;
    color: var(--white);
    border-radius: 10px;
    background: #10446F;


}

.wallet-modify .tit-inf-wel {
    color: var(--secondary);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.table-wallet-information-content .tit {
    color: var(--secondary);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.wallet-modify-content .btn i {
    margin-inline-end: 10px;
}

.item-income {
    padding: 15px;
    border-radius: 15px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    position: relative;
    transition: all .35s ease-in-out;
}

.item-income:before {
    content: " ";
    background-image: url(../images/bg-table.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    border-radius: 35px;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -1;
    transition: all .35s ease-in-out;
}

.item-income .val {
    color: var(--white);
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
}

.item-income .tit {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
}

.input-daterange {
    border: 1px solid #E6EAF0;
    border-radius: 20px;
    height: 45px;
    align-items: center;
}

.input-daterange input {
    border: none;
}

.input-group-addon {
    margin-inline-end: 15px;
}

.main-selected-effectiv {
    position: relative;
    height: 992px;
}

.item-income .total {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 14px 15px;
    border-radius: 32px;
    color: #424242;
    font-weight: 700;
    cursor: pointer;
}

.item-income .total-tit {
    margin-inline-start: 25px;
}

.main-selected-effectiv:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: url("../images/bg-search.png");
    background-size: cover;
    width: 100%;
    height: 992px;
    background-repeat: no-repeat;
    z-index: 2;
}

.main-selected-effectiv-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: table;
    margin: 0 auto;
    z-index: 3;
}

.main-selected-effectiv-items .main-title {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 50px;
}

.selected-effectiv-content .select2-container .select2-selection--single {
    height: 50px !important;
    border-radius: 35px !important;

}

.selected-effectiv-content .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px !important;
    color: var(--black) !important;
}

.selected-effectiv-content .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px !important;
    padding-right: 15px !important;
    color: var(--black) !important;

}

.selected-effectiv-content .select2-container {
    width: 100% !important;
    height: 50px !important;
}

.ticket-buy-effctive .ticket-buy-effctive-content .effctive-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.ticket-buy-effctive .ticket-buy-effctive-content .effctive-content a {
    color: var(--secondary);
}

.ticket-buy {
    padding: 50px 0;
}

.ticket-buy-form {
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.17);
    margin: 0 0 50px;

}

.form-group-file #customFileLabel{
    text-align: center;
    border-radius: 10px;
    padding: 20px 0;
    width: 100%;
    border: 1px dashed rgba(0, 0, 0, 0.20);
}

.ticket-buy-form input, .ticket-buy-form select {
    border-radius: 35px !important;
    padding: 0 15px;
}

.ticket-buy-form label {
    color: #2F2F2F;
    text-align: right;
    font-size: 20px;
}

.ticket-buy-form .main-btn {
    width: 100%;
    background: #10446F;
    border-radius: 50px;
    height: 50px;
    color: #FFF;
    font-size: 20px;
    margin: 20px 0;
}

.form-group-file img {
    margin: 10px auto;
    display: table;
}

#customFileContainer {
    display: none; /* Hide the default file input */
}

.table-wallet-information {
    margin-bottom: 30px;
}

.table-wallet-information-content {
    border-radius: 15px;
    background: #F4F4F4;
    padding: 10px;
    margin-bottom: 20px;

}

.table-wallet-information-content .item .tit {
    margin-bottom: 10px;
    color: #0077D2;
    font-size: 21px;

}

.table-wallet-information-content .item .val {
    font-weight: bold;
}

.date-wallet {
    margin-inline-start: 10px;
}

.pay-main .main-table-order th {
    background: transparent;
}

.pay-main .main-table-order thead {
    border-bottom: 1px solid var(--gray);
}

.pay-main .table-search {
    margin: 30px 0;
}

.pay-main .table-search .search-table {
    width: 80%;
}

.pay-main .main-table-order td.image img {
    margin-bottom: 10px;
}

.pay-main-payed {
    margin-bottom: 30px;
}

.pay-main-payed .tit {
    color: #0077D2;
    font-size: 21px;
    margin-bottom: 10px;
}

.pay-main-payed .des {
    color: #000;
    font-size: 18px;
}

.profile-cramp {
    position: relative;
    height: 240px;
    margin-bottom: 150px;
}

.profile-cramp:before {
    content: " ";
    background-image: url("../images/bred-efec.png");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 240px;
    z-index: 2;
}

.profile-cramp .img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 3;
}

.profile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}

.profile-nav .sell {
    color: var(--white);
    width: 148px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50px;
    background: #10446F;
}

.profile-nav .nav-tabs .nav-item {
    margin-bottom: 0;
}

.profile-nav .nav-tabs {
    border-bottom: 1px solid transparent;
}

.profile-nav .nav-tabs .nav-item .nav-link {
    font-size: 18px;
    font-weight: bold;
    color: var(--gray);

}

.profile-nav .nav-tabs .nav-item.show .nav-link, .profile-nav .nav-tabs .nav-link.active {
    color: var(--secondary);
    background-color: #fff;
    border-color: transparent;
}

.profile-nav .nav-tabs .nav-link:focus, .profile-nav .nav-tabs .nav-link:hover {
    border-color: transparent;

}

.main-effective .image {
    position: relative;
    border-radius: 15px 15px 0px 0px;
}

.main-effective .image .price {
    position: absolute;
    bottom: 25px;
    left: 15px;
    font-weight: bold;
    width: 104px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 10px;
    background: #FFDFDF;
}

.main-effective-content {
    box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.25);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 0px 0px 15px 15px;
}

.main-effective-content .tit {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-effective-content .place i {
    margin-inline-end: 10px;
}

.main-effective-content .ticket-number-approved {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.main-effective-content .ticket-number-approved .num {
    color: #151515;
}

.main-effective-content .ticket-number-approved .approved {
    font-size: 18px;
    color: var(--black);
    font-weight: bold;
}

.main-effective-content .cat span {
    font-size: 18px;
    color: #151515;
    font-weight: bold;
}

.main-effective-content .date span {
    font-size: 18px;
    display: block;
    color: #151515;
    font-weight: bold;
}

.icon-show-download {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;

}
.icon-show-download img{
    max-width: 50px;
}
.icon-show-download a {
    color: #151515;
    font-size: 18px;
    font-weight: bold;
}

.top-view-ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.top-view-ticket .form-group:first-of-type{
    flex: 0 0 48% !important;
    max-width: 48% !important;
    margin-bottom: 20px !important;
}
.top-view-ticket .custom-radio{
    flex: 0 0 48% !important;
    max-width: 48% !important;

    margin-bottom: 20px !important;
}
.top-view-ticket .custom-radio span{
    margin-inline-start: 10px;
}
.top-view-ticket .form-group:last-of-type{
    flex: 0 0 100% !important;
    max-width: 100% !important;
}


.ticket-view-form .form-group {
    display: flex;
    flex: 1;
    margin: 0;
    border-radius: 35px;
}

.ticket-view-form .form-group select {
    border-radius: 35px;

}

.top-view-ticket .custom-radio {
    border: 1px solid #ced4da;
    /*margin: 0 10px;*/
    height: calc(2.25rem + 2px);
    padding: 5px;
    border-radius: 35px;

}

.ticket-view-form .text-view {
    color: #0077D2;
    text-align: center;
    font-size: 27px;
    margin-bottom: 20px;
}

.ticket-view-form .view-buy {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 35px;
    background: #0077D2;
    text-align: center;
    color: #fff !important;
}

.ticket-view-form .sell-view {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;

    border-radius: 35px;
    background: #F11;
    text-align: center;

    color: #fff !important;
}

.ticket-view-form .main-table-order {
    border-radius: 15px;
    background: #FFF;

    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.17);

}

.ticket-view-form .view-star {
    color: rgba(255, 206, 33, 1);
}

.ticket-view .main-table-order th {
    background: transparent;
}

.ticket-view .main-table-order tr:nth-child(even) td {
    background-color: #fff;
}

.ticket-view .main-table-order select {
    border-radius: 35px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(255, 255, 255, .5);

}

.select2-container--open .select2-dropdown {
    background: rgba(35, 35, 35, .95);
    border-radius: 25px;
    padding: 15px;
}
 
.select2-results__options .select2-results__option{
    color: var(--white);
    border-bottom: 1px solid var(--gray);
    margin-bottom: 10px ;
    padding-bottom: 10px;

}
.select2-results__options .select2-results__option:last-child{
    border-bottom: none;
    margin-bottom: 10px ;
    padding-bottom: 10px;
}
.select2-results__options .select2-results__option:first-child{
    display: none;
}
.wallet-table-order tbody tr td.image img {
    max-width: 100px;
}

.wallet-table-order .wallet-st span {
    display: block;
    width: 100px;
    color: var(--white);
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 15px;
}

.wallet-table-order.main-table-order tr:nth-child(even) td {
    background-color: transparent;
}

.wallet-table-order .tr-coll {
    border-bottom: 1px solid var(--gray);
}

.wallet-table-order .td-coll {
    padding: 0;

}

.collapsible-wellet-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collapsible-wellet-content div {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
}

.collapsible-wallet-items {
    padding: 10px;
    background: #1A508B;
    border-radius:0 0 10px 10px;

}



.collapsible-wellet-content div span {
    color: var(--gray);
    display: block;
    margin-inline-start: 10px;
}

.collapsible-wellet-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
    background-color: #ffffff33;
    border-radius: 32px;
    padding: 10px;
}

.collapsible-wellet-items div {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.collapsible-wellet-items div span {
    display: block;
}

.collapsible-wellet-items div.thi {
    background: var(--primary);
}

.collapsible span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    background: limegreen;
    color: var(--white);
}
.tazkarty-table-order .image img{
    max-width: 100px;

}
.main-old-order-date-ord{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.main-old-order-date-ord a{
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--white);
}
.main-old-order-date-ord a.agree{
    background: #4EC432;
}
.main-old-order-date-ord a.info{
    background: #173D64;
}
.radio-circle a{
    color: #173D64;

}
@media (min-width: 768px) {
    .main-table-order.tazkarty-table-order table tr .state {
        display: none;
    }
}
.main-table-order.wallet-table-order table tr{
    margin-bottom: 15px;
}
.main-table-order.wallet-table-order table tr.changeBgTr{
    margin-bottom: 0;
       border: 0px solid transparent;


}
.main-table-order.wallet-table-order table tr.tr-coll{
    margin-bottom: 0;

}
.content-mod{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #173D64;
    border-radius: 10px;
    margin-bottom: 5px;
    padding: 15px 5px;
}
.content-mod .show-down{
    color: #173D64;
    font-weight: bold;
}
.content-mod form {
    color: #0077D2;
    font-weight: bold;
}
.modify-mod{
    text-align: center;
}
.modify-mod h4{
    color: #173D64;
    font-weight: bold;
    margin-bottom: 10px;
}
.modify-mod span{
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.modify-mod form label{
    width: 100%;
}
.modify-mod form .num input{
    border: 1px solid var(--gray);
    width: 80%;
    height: 45px;
}
.modify-mod form button{
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color:#173D64 ;
    margin: 30px auto 20px;
}
.thanks-content{
    text-align: center;
    margin: 100px  auto;
    display: table;
}
.thanks-content .text-thanks{
    color:#173D64 ;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;

}
.thanks-content .to-tazakry a{
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #173D64;
    border-radius: 35px;
    margin-bottom: 50px;

    color: var(--white);
}
.thanks-content .tohome a{
    width: 160px;
    height: 40px;
    line-height: 40px;
    border-radius: 35px;
    margin-bottom: 50px;
    text-align: center;
    background: #0077D2;
    color: #fff;
}
.pay-main-ord-load{
        position: relative;
}
.faq-answer{
background: var(--secondary) !important;
    color: var(--white) !important;
    border: 1px solid var(--secondary) !important;
}
.allcol{
    flex-direction: column;
    align-items: center;
}
#loader-content:before{
    content: " ";
    background: rgba(0,0,0,.5);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height:100%;
}
@media (min-width: 768px) {
    .head-logo .sell{
        display: none;
    }
}
@media (max-width: 768px) {
    .head-logo .sell{
        display: block;
    }
    .head-logo .sell {
        background: var(--secondary);
        color: var(--white);
        border: 1px solid var(--secondary);
        transition: all .35s ease-in-out;
        padding: 0 5px;
        min-width: 85px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-inline-end: 0;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 100;
    }
 
    .search-table .form-group input {
        margin-inline-end: 0;
    }

    .pay-main .main-table-order td.image {
        flex-direction: column;
    }

    .pay-main .main-table-order table tr {
        justify-content: space-between;
    }

    .pay-main .main-table-order table tr td {
        display: flex;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .wallet-main .table-search .search-table {
        width: 100%;
    }

    .pay-main .table-search .search-table {
        width: 100%;
    }

    .main-selected-effectiv {
        height: 700px;
    }

    .main-selected-effectiv:after {
        height: 700px;
    }

    .main-table-order table tr {
        display: flex;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .wallet-table-order.main-table-order table thead tr {
        display: none;
    }


    .wallet-main .table-search .search-table {
        flex-direction: column;
        align-items: normal;

    }

    .table-search .search-button {
        margin: 20px auto;
        display: table;
    }

    .wallet-main .table-search .search-input {
        margin-inline-end: 0px;
        margin: 10px 0;

    }

    .wallet-table-order.main-table-order table tr th {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .main-table-order table tr th {
        display: flex;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .main-table-order.wallet-table-order table tr {
        display: flex;
        flex-wrap: wrap;
        border: 1px solid var(--gray);
        /*border-radius: 15px;*/
        padding:0 ;

    }
    .collapsible-wellet-items div{
        font-size: 14px;
    }
    .wallet-table-order.main-table-order table tr td.wallet-1 {
        display: flex;
        flex: 0 0 35%;
        max-width: 99%;
    }

    .wallet-table-order.main-table-order table tr td.wallet-2 {
        display: flex;
        flex: 0 0 64%;
        max-width: 99%;
    }

    .wallet-table-order.main-table-order table tr td.wallet-3 {
        display: flex;
        flex: 0 0 15%;

        max-width: 99%;
    }

    .wallet-table-order.main-table-order table tr td.wallet-4 {
        display: flex;
        flex: 0 0 32%;

        max-width: 100%;
    }

    .wallet-table-order.main-table-order table tr td.wallet-5 {
        display: flex;
        flex: 0 0 32%;

        max-width: 100%;
    }

    .wallet-table-order.main-table-order table tr td.wallet-6 {
        display: flex;
        flex: 0 0 52%;
        max-width: 100%;

    }

    .wallet-table-order.main-table-order table tr td.wallet-7 span {
        width: 99%;
        margin: 0 10px;
    }

    .wallet-table-order.main-table-order table tr td.wallet-7 {
        display: flex;
        flex: 0 0 99%;
        max-width: 100%;
    }

    .wallet-table-order.main-table-order table tr td.wallet-8 {
        display: flex;
        flex: 0 0 99%;
        justify-content: center;
        max-width: 100%;
    }

    .wallet-table-order.main-table-order table tr td {
        font-weight: bold;
        font-size: 16px;

    }

    .main-table-order table tr td {
        display: flex;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .table-search {
        flex-direction: column;
        align-items: flex-start;

    }

    .table-search .tit {
        margin-bottom: 10px;
    }

    .table-search .search-table {
        width: 100%;
    }

    .profile-nav .nav-tabs {
        flex: 1;

    }

    .main-table-order.wallet-table-order .tr-coll {
        border: none;

    }
    .collapsible-wellet-content .one {
        display: flex;
        flex: 0 0 30%;
        max-width: 30%;
    }
    .collapsible-wellet-content .two{
        display: flex;
        flex: 0 0 68%;
        max-width: 68%;
    }
    .collapsible-wallet-items {
        padding: 10px;
     

    }
.collapsible-wallet-items:last-of-type {
            margin-bottom: 30px;

}
    .collapsible-wellet-content{
        flex-wrap: wrap;

    }
    .collapsible-wellet-content div span{
        margin-inline-start: 3px;
        color: var(--gray);

    }
    .collapsible-wellet-content .three{
        display: flex;
        flex: 0 0 49%;
        max-width: 49%;
    }
    .collapsible-wellet-content .four{
        display: flex;
        flex: 0 0 49%;
        max-width: 49%;
    }
    .cat-item .icon img {
        width: 75px;
        height: 75px;
        max-height: 75px;
        max-width: 75px;
    }

    .wallet-table-order .td-coll {
        padding: 0;
        flex: 0 0 100%;
        max-width: 100%;
        display: block;

    }

    .main-table-order.tazkarty-table-order table thead tr {
        display: none;
        opacity: 0;
    }

    .main-table-order.tazkarty-table-order table tr {
         border: 1px solid var(--gray);
        padding: 5px 0;
        flex-wrap: wrap;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .main-table-order.tazkarty-table-order table tr .state {
        display: block;
        background: transparent;
        margin-inline-end: 10px;
        font-size: 18px;
        font-weight: bold;
        color: var(--secondary);
    }

    .main-table-order.tazkarty-table-order table tr td {
        display: flex;
        flex: 0 0 49%;
        padding: 5px 12px;
        max-width: 100%;
    }
    .main-table-order.tazkarty-table-order table tr td.image{
        flex: 0 0 35%;
    }
    .main-table-order.tazkarty-table-order table tr td.order-3{
        flex: 1 0 49%;
        order: 0;
    }
    .main-table-order.tazkarty-table-order table tr td.order-4{
        flex: 0 0 45%;
    }

    .main-table-order tr td .st-state {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .main-table-order.tazkarty-table-order tr:nth-child(even) td {
        background: transparent;
    }

    .main-table-order.tazkarty-table-order table tr td.order-2 {
        order: 11;
        flex: 1 0 100%;

    }

}

@media (max-width: 500px) {
    .pay-man-items .main-table-order th, .pay-man-items .main-table-order td{
        padding: 5px 0;
    }
    .pay-man-items .main-table-order .image img{
        max-width: 75px;
    }
    .profile-nav .sell {
        width: 100px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }

    .profile-nav .nav-tabs .nav-item .nav-link {
        font-size: 16px;
        margin: 0;
        padding: 0;
    }

    .profile-nav .nav-tabs {
        flex: 1;

    }

    .profile-nav .nav-tabs li {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .nav-tabs {
        justify-content: space-evenly;
    }

    .pay-main .main-table-order table tr td {
        display: flex;
        flex: 0 0 35%;
        max-width: 100%;
    }

    .pay-main .main-table-order table tr th {
        display: flex;
        flex: 0 0 35%;
        max-width: 100%;
    }

    .pay-method-check .custom-radio {
        margin-inline-end: 10px;
    }

    .pay-method-check .custom-radio img {
        max-width: 75px;
    }

    .pay-main .main-table-order td.image span {
        font-size: 14px;
    }

    .wallet-modify-content {
        justify-content: space-between;
    }

    .wallet-modify-content .tit-btn {
        justify-content: space-between;
        width: 100%;
    }

    .table-wallet-information-content .item {
        margin-bottom: 20px;
    }

    .form-group-file {
        margin: 20px 0;
    }

    .main-selected-effectiv-items .main-title {
        color: var(--white);
        font-size: 38px;
        margin-bottom: 20px;
    }

    .main-selected-effectiv {
        height: 500px;
    }

    .main-selected-effectiv:after {
        height: 500px;
    }

    .date-wallet {
        margin-inline-start: 2px;
    }

    .main-old-order-table thead {
        opacity: 0;
        display: none;
    }

    .main-old-order-table table tr {
        display: block;
    }

    .main-old-order-table table tr .image {
        display: block;
    }

    .main-old-order-table .table-container td.image img {
        width: 100%;
        max-width: 100%;

    }
    .main-old-order-table .table-container td.image img{
        max-width: 100% !important;
    }
    .main-old-order-table table tr td {
        display: inline-block;
        max-width: 100%;
    }

    .main-old-order-table .main-old-order-tit {
        width: 150px;
        font-size: 24px;
        font-weight: bold;
        background: transparent;

    }

    .main-old-order-table tr:nth-child(even) td {
        background: transparent !important;

    }

    .main-old-order-table .main-old-order-it {
        width: 150px;

    }

    .main-old-order-table .main-old-order-date {
        width: 150px;

    }

    .main-old-order-table .main-table-order-but {
        display: flex;
        align-items: center;
        justify-content: space-evenly;

    }

    .main-old-order-table .main-table-order-but a {
        margin-inline-start: 0px;

    }

    .profile-cramp:before {
        height: 100px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    .profile-cramp {
        height: 100px;
        margin-bottom: 100px;
    }

    .profile-cramp a img {
        max-width: 100px;
    }
    .main-old-order-date-ord{
        display: flex !important;
        width: 100% !important;
        align-items: center;
        justify-content: space-between;
    }
}
.form-group-sel .select2-container--default .select2-selection--single{
      height: 50px;
}
.form-group-sel .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{
         height: 50px;
}

.form-group-sel .select2-container--default .select2-selection--single{
      height: 50px;
}
.form-group-sel .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{
         height: 50px;
             line-height: 50px;

}
.form-group-sel .select2-container--default .select2-selection--single .select2-selection__arrow{
    top : 13px;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    background: rgba(255, 255, 255, 1);
}
.event-row a img{
        width: 100px;
    height: 100px;
        margin-inline-end: 10px;
}

.event-row a {
    display: flex;
    align-items: center;
      color: var(--black);
    margin-bottom: 5px;
}
.search-info .modal{
    top: 70px;
    border-radius: 10px;
}
 
 @media (max-width: 768px) {
     .search-info .modal{
         height: 500px;
     }
     .autocomplete-items{
         display: none;
     }
 }
 @media (max-width: 500px){
    .event-row a img{
        width: 50px;
    height: 50px;
      
}
 
 }
