@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
    --theme-color: #657048;
    --green1: #9aa773;
    --marunF0: #F0E8EA;
    --bodyBG: #e8e9e6;
    --marun8D: #8D8798;
    --lebelColor: #7F798C;
    --inputBorder: #BAB7C1;
    --placeholder: #9C888C;
    --black: #000000;
    --dark0D: #0D0719;
    --white: #FFFFFF;
    --gray74: #747474;
    --gray74: #747474;
    --purple: #5F4A88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Lato', sans-serif;
}

.text-theme-color {
    color: var(--theme-color) !important;
}

.text-green1 {
    color: var(--green1) !important;
}

.text-lebel {
    color: var(--lebelColor) !important;
}

.text-purple {
    color: var(--purple) !important;
}


.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 16px;
    color: var(--lebelColor);
    font-weight: 400;
    margin-bottom: 0.35rem;
}

.form-select {
    background-image: url(../../images/down-arrow.svg);
    background-size: 18px 16px;
}

.form-control,
.form-select {
    height: 48px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    border-radius: 12px;
    border-color: var(--inputBorder);
}

.form-control::placeholder {
    color: var(--lebelColor);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--theme-color);
}

.form-switch .form-check-input {
    width: 2.35em;
    height: 1.35em;
    background-color: var(--marunF0);
    border-color: var(--marunF0);
    background-image: url(../../images/switch_off.svg);
}

.form-switch .form-check-input:focus {
    box-shadow: none;
    outline: none;
    background-image: url(../../images/switch_off.svg);
}

.form-switch .form-check-input:checked {
    background-image: url(../../images/switch_on.svg);
}

.checkbox .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.radio .form-check-input {
    width: 18px;
    height: 18px;
    border-width: 2px;
    border-color: #bbb8c2;
}

.radio label {
    font-size: 16px;
    color: var(--lebelColor);
    font-weight: 400;
}

.radio .form-check-input:checked[type=radio] {
    background-image: url(../../images/switch_on.svg);
    background-color: transparent;
    border-color: var(--theme-color);
}

.radio .form-check-input:checked[type=radio]~label {
    color: #0D0719;
}

.select2-container--default .select2-selection--single {
    height: 48px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    border-radius: 12px;
    border-color: var(--inputBorder);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000;
    line-height: 45px;
    padding-left: 0.75rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    right: 6px;
    width: 25px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 0;
    width: 18px;
    height: 16px;
    background-image: url(../../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: -8px;
    margin-top: -4px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    background-image: url(../../images/down-arrow.svg);
    transform: rotate(-180deg);
}

.select2-search--dropdown .select2-search__field:focus,
.select2-search--dropdown .select2-search__field:focus-visible {
    box-shadow: none !important;
    outline: none !important;
    border-color: var(--inputBorder);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f5f0f1;
    color: var(--theme-color);
}

.select2-dropdown {
    border-color: var(--inputBorder);
    border-radius: 12px;
    overflow: hidden;
}



span.error,
label.error {
    font-size: 14px !important;
    color: red !important;
    font-weight: 400 !important;
}


/*//// THEME BUTTONS ////*/
.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn-theme {
    color: var(--white);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
}

.btn-theme:hover {
    color: var(--white);
    background-color: #839457;
    border-color: #839457;
}

.btn-light-brown {
    color: var(--dark0D);
    background-color: #E8E7EA;
    border-color: #E8E7EA;
}

.btn-light-brown:hover {
    background-color: #dbdbdb;
    border-color: #dbdbdb;
}

/*//// END THEME BUTTONS ////*/

/*//// LOING PAGES STYLES ////*/
.auth-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--theme-color);
    /* background-image: url(../../images/auth-bg.png); */
    background-size: cover;
    background-position: center center;
    z-index: 150;
}

.auth-wrapper .main-row {
    min-height: 100vh;
    align-items: center;
}

.auth-wrapper .logo {
    max-width: 300px;
}

.auth-form-wrapper {
    position: relative;
    max-width: 500px;
    min-height: 600px;
    margin: 50px auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    border-radius: 20px;
}

.auth-form-wrapper .title {
    font-size: 34px;
    text-align: center;
    color: var(--theme-color);
    font-weight: 400;
}

.auth-form-wrapper .sub-title {
    font-size: 16px;
    text-align: center;
    color: var(--gray74);
    font-weight: 400;
    margin-bottom: 30px;
}

.auth-form-wrapper .forgot-pass-link {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--theme-color);
    background-color: transparent;
    border-color: var(--theme-color);
    text-decoration: none;
}

.auth-form-wrapper .btns {
    margin-top: 1.5rem;
}

.auth-form-wrapper .back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--black);
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
}

.auth-form-wrapper .back-btn:hover {
    color: var(--green1);
}

.auth-form-wrapper .back-btn img {
    margin-right: 10px;
}

/*//// END LOING PAGES STYLES ////*/

.body-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-left: 250px;
    background-color: var(--bodyBG);
}

.body-container .container-fluid {
    padding-left: 25px;
    padding-right: 25px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    overflow: auto;
    z-index: 1025;
}


.mask-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-color: var(--theme-color);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
}

.clogo {
    position: relative;
    display: flex !important;
    align-items: center;
    color: var(--theme-color) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

.clogo .icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: var(--theme-color);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    margin-right: 8px;
}

.clogo span {
    font-weight: 400 !important;
    display: inline-block;
    padding-left: 5px;
}

.sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar ul li {
    position: relative;
    padding: 5px 15px;
}

.sidebar ul li a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    padding: 10px 15px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.sidebar ul li a .mask-icon {
    width: 26px;
    height: 26px;
    margin-right: 8px;
}

.sidebar ul li a:hover {
    color: var(--theme-color);
    background-color: var(--bodyBG);
}

.sidebar ul li a.active {
    color: var(--white);
    background-color: var(--theme-color);
}

.sidebar ul li a img {
    width: 28px;
    margin-right: 8px;
}

.sidebar ul li a.active .mask-icon {
    background-color: var(--white);
    /* filter: brightness(10); */
}

.sidebar ul li.logo-item {
    padding: 15px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 150;
}

.sidebar ul li.logo-item a {
    padding: 0;
}

.sidebar ul li.logo-item a:hover {
    background-color: transparent;
}

.sidebar ul li.logo-item a .logo {
    width: 100%;
}

.sidebar .sidebar-overlay {
    display: none;
}



.page-header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    z-index: 1024;
}

.page-header .nav-view {
    display: flex;
    align-items: center;
}

.page-header .nav-view .navbar-brand {
    max-width: 50px;
    margin-right: 10px;
}

.sidebar-hamburger {
    min-width: 45px;
    background-color: transparent;
    border: 0;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    padding: 0;
    margin-right: 5px;
    border-radius: 12px;
}

.sidebar-hamburger:hover {
    /* color: var(--white);
    background-color: #7f011d;
    border-color: #7f011d; */
}

.sidebar-hamburger span {
    position: relative;
    display: block;
    width: 60%;
    height: 2px;
    background-color: var(--theme-color);
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.sidebar-hamburger span:before,
.sidebar-hamburger span:after {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 75%;
    height: 2px;
    background-color: var(--theme-color);
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.sidebar-hamburger span:after {
    bottom: -8px;
    top: auto;
}

.sidebar-hamburger.active span:after {
    display: none;
}

.sidebar-hamburger.active span {
    transform: rotate(45deg);
}

.sidebar-hamburger.active span:before {
    transform: rotate(-90deg);
    top: 0;
    width: 100%;
}


.header-search {
    background-color: var(--bodyBG);
    border-radius: 12px;
    margin-bottom: 20px;
}

.page-header .nav-view .header-search {
    margin-bottom: 0;
}

.header-search-outline {
    background-color: transparent;
    border: 1px solid var(--inputBorder);
}

.header-search .btn {
    width: 50px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.header-search .btn img {
    width: 23px;
}

.header-search .form-control {
    background-color: transparent;
    border: 0;
    padding-left: 0;
    font-size: 16px;
    color: var(--black);
}

.header-search .form-control::placeholder {
    color: var(--placeholder);
}

.page-title-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 20px; */
}

.page-title-row .title {
    font-size: 22px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: flex;
    flex: 1;
    align-items: center;
}

.page-title-row .title img {
    max-width: 12px;
    margin-right: 10px;
}

.theme-card {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    border: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.profile-card .card-body {
    display: flex;
}

.profile-card .profileView {
    flex: 1;
    display: flex;
}

.profile-card .profileView .userImg {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
}

.profile-card .profileView .content {
    flex: 1;
    padding-left: 20px;
}

.profile-card .profileView .content h4 {
    font-size: 22px;
    color: var(--black);
    margin-bottom: 20px;
}

.profile-card .profileView .content p {
    position: relative;
    color: var(--marun8D);
    font-size: 17px;
    padding-left: 30px;
}

.profile-card .profileView .content p:last-child {
    margin-bottom: 0;
}

.profile-card .profileView .content p img {
    width: 22px;
    position: absolute;
    left: 0;
    top: 3px;
}

.profile-card .btn {
    font-size: 16px;
    margin-left: 10px;
}

.pass-input {
    position: relative;
}

.pass-input .icon {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 12px;
    background-image: url(../../images/eye-icon.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 150;
}

.icon.eye-slash-icon {
    background-image: url(../../images/eye-slash-icon.png);
}

.edit-profile-form .avtarView {
    position: relative;
    width: 173px;
    height: 173px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #cecdcd;
}

.edit-profile-form {
    display: flex;
    flex-wrap: wrap;
}

.edit-profile-form .row {
    flex: 1;
    padding-left: 20px;
}

.edit-profile-form .avtarView .profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit-profile-form .avtarView .upload-btn {
    position: absolute;
    bottom: 6px;
    right: 8px;
    width: 35px;
    height: 35px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.edit-profile-form .avtarView .upload-btn img {
    width: 100%;
    height: 100%;
}

.edit-profile-form .avtarView .upload-btn .file-upload {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/*//// SETTINGS PAGES STYLES ////////*/
.sec-title {
    font-size: 22px;
    color: #000;
    font-weight: 500;
}

.setting-card {
    position: relative;
    min-height: 100%;
    text-decoration: none;
    transition: transform 0.3s;
}

a.setting-card:hover {
    transform: scale(0.95);
}

.setting-card .arrow-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 9px;
    transform: rotateY(180deg);
}

.setting-card p {
    font-size: 16px;
    color: var(--marun8D);
    margin-top: 10px;
    margin-bottom: 10px;
}

.setting-card h4 {
    font-size: 20px;
    color: var(--dark0D);
    margin-bottom: 0;
}

table.dataTable thead .sorting {
    background-size: 10px;
}

.theme-table tr th,
.theme-table tr td {
    font-size: 16px;
    color: var(--dark0D);
    padding: 15px !important;
    vertical-align: middle;
}

.theme-table thead tr th {

    background-color: var(--theme-color);
    color: var(--white);
    font-weight: 400;
    padding: 15px;
}

.theme-table thead tr th:first-child {
    border-top-left-radius: 12px;
}

.theme-table thead tr th:last-child {
    border-top-right-radius: 12px;
}

.theme-table tbody tr th,
.theme-table tbody tr td {
    background-color: var(--white);
    border-color: #dee2e6;
}

.theme-table tbody tr:last-child th,
.theme-table tbody tr:last-child td {
    border-bottom: 0;
}

.theme-table tbody tr:last-child th:first-child,
.theme-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.theme-table tbody tr:last-child th:last-child,
.theme-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.theme-table .action-btns {
    text-align: right;
}

.theme-table .btn,
.theme-table .action-btns .btn {
    padding: 0;
    margin: 0 5px;
}

.theme-table .action-btns .btn:first-child {
    margin-left: 0;
}

.theme-table .action-btns .btn:last-child {
    margin-right: 0;
}

.theme-modal .modal-content {
    border: 0;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.theme-modal .modal-title {
    font-size: 22px;
    color: #160B28;
    margin-bottom: 0;
}

.theme-modal .modal-body p.lead {
    font-size: 17px;
    color: #483E5A;
    font-weight: 400;
}

.dt-block {
    position: relative;
    width: 100%;
    padding: 0 10px;
    background-color: #A39FAD;
    border-radius: 12px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
    border-radius: 12px;
    background-color: #E8E7EA;
    transition: left 0.3s;
}

.dt-block:hover .overlay {
    left: -80px;
}

.dt-block h5 {
    font-size: 17px;
    color: #483E5A;
    margin-bottom: 0;
}

.dt-block .btns {
    width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.dt-block a {
    margin-left: 5px;
}

.form-group .doller-sign {
    position: absolute;
    right: 23px;
    top: 40px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--placeholder);
}

.theme-radio {
    position: relative;
}

.theme-radio .btn {
    position: relative;
    font-size: 16px;
    color: var(--lebelColor);
    font-weight: 400;
    margin-right: 10px;
    padding-left: 40px;
    margin-bottom: 0;
}

.theme-radio .btn:before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url(../../images/radio_off.png);
    background-size: 100%;
    position: absolute;
    left: 12px;
    top: 11px;
}

.theme-radio .btn-check:checked+.btn {
    color: var(--dark0D);
    background-color: var(--marunF0);
    border-color: var(--marunF0);
}

.theme-radio .btn-check:checked+.btn:before {
    background-image: url(../../images/radio_on.png);
}

.theme-radio span.error,
.theme-radio label.error {
    position: absolute;
    left: 0;
    top: 100%;
}

/*//// END SETTINGS PAGES STYLES ////*/
.theme-ul {
    position: relative;
    margin: 0;
    padding: 0;
    /* padding-left: 25px; */
    list-style: none;
}

.theme-ul li::marker {
    font-size: 25px;
    color: var(--theme-color);
}

.theme-ul li {
    position: relative;
    font-size: 18px;
    color: #5F566F;
    margin-bottom: 1rem;
}

.theme-ul li:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
    border-radius: 50%;
    margin-right: 10px;
}

.hr {
    border-width: 3px;
    border-color: #F8F8F8;
    opacity: 1;
}

/*//// START SPONSOR PAGES STYLES ////*/
.theme-tabs .nav-pills {
    width: 100%;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.theme-tabs .nav .nav-link {
    position: relative;
    font-size: 16px;
    color: #766E83;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    margin-right: 15px;
}

.theme-tabs .nav .nav-link.active {
    background-color: transparent;
    color: var(--dark0D);
    border-color: var(--dark0D);
}

.add-sponsor-tab .nav .nav-link {
    border-bottom: 0;
    margin-right: 0;
}

.add-sponsor-tab .nav .nav-link::before {
    content: '';
    width: 32px;
    height: 2px;
    display: inline-block;
    background-color: #D9D9D9;
}

.add-sponsor-tab .nav .nav-link .count {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #E8E7EA;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    color: #766E83;
    font-size: 17px;
    margin-right: 10px;
}

.add-sponsor-tab .nav .nav-link.active .count {
    background-color: var(--theme-color);
    color: var(--white);
}

.add-sponsor-tab .nav .nav-item:first-child .nav-link::before {
    display: none;
}

.add-sponsor-tab .nav .nav-link::before {
    content: '';
    width: 36px;
    height: 2px;
    display: inline-block;
    background-color: #D9D9D9;
    margin-bottom: 3px;
    margin-right: 10px;
    border-radius: 10px;
    margin-left: 10px;
}

.add-sponsor-tab .nav .nav-link.active::before {
    background-color: var(--theme-color);
}

.document-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.document-list li {
    position: relative;
    padding: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #F4F4F5;
    border-radius: 12px;
    margin-bottom: 15px;
}

.document-list li:first-child {
    background-color: transparent;
    border: 1px solid #A39FAD;
}

.document-list li .leftCol,
.document-list li .rightCol {
    position: relative;
    width: 130px;
}

.document-list .centerCol {
    position: relative;
    flex: 1;
    text-align: center;
}

.document-list li .leftCol {
    display: flex;
    align-items: center;
}

.document-list li .leftCol .dots-img {
    width: 12px;
}

.document-list li .count {
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 6px;
    margin-left: 10px;
}

.document-list li .rightCol {
    position: relative;
    text-align: right;
}

.document-list li h5 {
    font-size: 17px;
    margin-bottom: 0;
    color: #483E5A;
}

.document-list li .rightCol .form-check .form-check-input {
    float: none;
    margin: 0;
    width: 1.2em;
    height: 1.2em;
}

.selectDocsRow .Col {
    border-top: 1px solid #E8E7EA;
    padding-left: 0;
    padding-top: 15px;
    margin-bottom: 15px !important;
}

.selectDocsRow .Col {
    border-top: 1px solid #E8E7EA;
    padding-left: 0;
    padding-top: 15px;
    margin-bottom: 15px !important;
}

.selectDocsRow .Col:last-child,
.selectDocsRow .Col:nth-last-child(-n + 2),
.selectDocsRow .Col:nth-last-child(-n + 3) {
    margin-bottom: 0 !important;
}

.selectDocsRow label {
    font-size: 17px;
    color: #7F798C;
    word-break: break-all;
}

.selectDocsRow .form-check-input {
    width: 1.1em;
    height: 1.1em;
    border-color: #BAB7C1;
}

.selectDocsRow .form-check-input:checked~label {
    color: var(--theme-color);
}

p.form-control {
    height: auto;
    border: 0;
    padding: 0;
    margin-bottom: 0;
}

.sponsor-brand-logo {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    background-color: var(--bodyBG);
}

/*//// START SPONSOR PAGES STYLES ////*/

.edit-profile-form .avtarView .delete-btn {
    position: absolute;
    bottom: 6px;
    left: 8px;
    width: 35px;
    height: 35px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    overflow: hidden;
}

.sponsor-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*//// START SPONSOR PAGES STYLES ////*/
table.dataTable.no-footer {
    border-bottom-color: #dee2e6;
}

.dataTables_wrapper {
    padding-top: 60px;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    float: none;
    width: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 150;
}

.dataTables_wrapper .dataTables_length select {
    width: 100px;
    display: inline;
    height: 48px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    padding: 0.375rem 0.75rem;
    padding-right: 20px;
    border-radius: 12px;
    border-color: var(--inputBorder);
    background-image: url(../../images/down-arrow.svg);
    background-size: 18px 16px;
    background-repeat: no-repeat;
    appearance: none;
    background-position: 95%;
    box-shadow: none !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_filter {
    text-align: right;
    left: auto;
    right: 0;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0;
}

#data-table_info {
    font-size: 15px;
    color: #8D8798;
}

.dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    padding-top: 12px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    width: 25px;
    height: 25px;
    padding: 0;
    color: #8D8798 !important;
    text-align: center;
    line-height: 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    border: 0 !important;
    margin: 0 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: var(--white) !important;
    background-color: var(--theme-color) !important;
    background: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
    position: relative;
    font-size: 0;
    background-color: #F0E8EA;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: transparent !important;
    background: none !important;
    color: #8D8798 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
    background-color: #F0E8EA !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous::before,
.dataTables_wrapper .dataTables_paginate .paginate_button.next::before {
    content: '';
    width: 50%;
    height: 50%;
    background-image: url(../../images/arrow-left.png);
    background-size: contain;
    background-position: center center;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.dataTables_wrapper .dataTables_paginate .paginate_button.next::before {
    transform: translate(-50%, -50%) rotateY(180deg);
}

.jqibox {
    z-index: 1026 !important;
}

.jqibox .jqi {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.jqibox .jqi {
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 3rem 1rem;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

div.jqi .jqibuttons {
    background-color: transparent !important;
    border: 0 !important;
    text-align: center !important;
}

div.jqi .jqibuttons button {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    width: 30%;
    color: var(--white);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    margin: 0 15px;
}

div.jqi .jqibuttons button:hover {
    color: var(--white);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

div.jqi .jqibuttons button.jqidefaultbutton {
    color: var(--dark0D);
    background-color: #E8E7EA;
    border-color: #E8E7EA;
}

div.jqi .jqititle {
    color: #160B28;
    margin-bottom: 8px;
    font-size: 18px;
    text-align: center;
    border: 0;
    padding: 0;
}

div.jqi .jqiclose {
    font-size: 18px;
    right: 10px;
    color: var(--theme-color);
}

/*//// ADD MEMBER PAGE STYLE ////*/
.doc-block {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: #F2F1F3;
    border-radius: 12px;
}

.doc-block p {
    margin-bottom: 0;
    font-size: 17px;
    color: var(--dark0D);
    flex: 1;
    padding: 0 15px;
}

.doc-block .close-btn {
    width: 20px;
}

.doc-block .close-btn img {
    width: 100%;
}


/* START UPLOAD VIEW */
.upload-file-view {
    position: relative;
    display: flex;
}

.upload-file-view .drop-area {
    font-size: 16px;
    font-weight: 500;
    color: #7F798C;
    height: 48px;
    display: flex;
    align-items: center;
    border: 2px dashed var(--inputBorder);
    padding: 0 20px;
    text-align: center;
    border-radius: 12px;
}

.upload-file-view .drop-area .file-name {
    margin-bottom: 0;
    color: #000;
}

.upload-file-view .file-input {
    display: none;
}

.upload-file-view .flex1 {
    flex: 1;
}

.upload-file-view .browse-btn {
    font-size: 17px;
    font-weight: 500;
    color: #5855DA;
    height: 48px;
    line-height: 45px;
    text-decoration: underline;
    margin-left: auto;
}

/* START UPLOAD IMAGE VIEW */
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-size: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: red;
    color: #fff;
    border-color: red;
}

.input-icon-wraper {
    position: relative;
}

.input-icon-wraper input {
    max-width: 170px;
    padding-left: 0;
    padding-right: 27px;
    text-align: center;
    cursor: pointer;
}

.input-icon-wraper .icon {
    position: absolute;
    right: 15px;
    top: 11px;
    width: 18px;
    pointer-events: none;
}

.datepicker table tr td span.active {
    background-color: var(--theme-color) !important;
    background-image: none !important;
}