/*===================================
=            FONT-FAMILY            =
===================================*/

@font-face {
    font-family: 'NunitoSans-Black';
    src: url('../fonts/nunito-sans/NunitoSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NunitoSans-ExtraBold';
    src: url('../fonts/nunito-sans/NunitoSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NunitoSans-Bold';
    src: url('../fonts/nunito-sans/NunitoSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NunitoSans-SemiBold';
    src: url('../fonts/nunito-sans/NunitoSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NunitoSans-Light';
    src: url('../fonts/nunito-sans/NunitoSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NunitoSans-Regular';
    src: url('../fonts/nunito-sans/NunitoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*=====  End of FONT-FAMILY  ======*/


/*===================================
=         GLOBAL CSS               =
===================================*/

:root {
    --mdc-theme-primary: #2196f3;
    --mdc-theme-secondary: #2196f3;
}

body,
html {
    font-family: 'NunitoSans-Regular', sans-serif;
    margin: 0;
}

body {
    background-color: #E5F4FE;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

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

a:focus {
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

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

input[type=checkbox]:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=radio]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
select:focus,
textarea:focus {
    box-shadow: none!important;
}

select,
option {
    color: rgba(0, 0, 0, .7)!important;
    box-shadow: none!important;
    border-color: rgba(0, 0, 0, .38)!important;
}

select {
    padding: 10px 30px 10px 15px!important;
}


/*=====  End of GLOBAL CSS  ======*/

.wps-link {
    font-family: 'NunitoSans-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: #3F4756;
    display: inline-block;
}

.active {
    color: #004EB6;
    position: relative;
}

.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 3px solid var( --mdc-theme-primary);
    border-radius: 2px;
}

.wps-bg-white {
    background-color: #ffffff;
    margin-right: 15px;
}

.wps-r-8 {
    border-radius: 8px;
}

.wps-pl-4 {
    padding: 0 4px!important;
}

.wps-errorr-8 {
    margin-left: 185px;
    padding-left: 20px;
}

.wps-header-container {
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 15px;
    margin-bottom: 8px;
    margin-right: 15px;
    gap: 6px;
}

.mdc-floating-label {
    color: var( --mdc-theme-primary);
}

.mdc-floating-label--float-above,
.mdc-floating-label--shake {
    color: var( --mdc-theme-primary)!important;
}

.wps-header-title {
    font-family: 'NunitoSans-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: var(--mdc-theme-primary);
    flex: 1 0 60%;
    /* max-width: calc(100% - 270px); */
}

.wps-navbar {
    padding: 0 32px;
    border-bottom: 1px solid rgba(63, 71, 86, 0.25);
}

.wps-navbar__items {
    display: flex;
    flex-wrap: wrap;
}

.wps-navbar__items li {
    margin-right: 0px;
    margin-bottom: 0;
}

.wps-navbar__items li a {
    padding: 12px 16px;
    color: var(--mdc-theme-primary);
}

.wps-section {
    padding: 28px 32px;
}

.wps-form-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 35px;
}

.wps-form-group__label {
    flex: 0 0 100%;
    max-width: 200px;
    padding: 0 15px;
}

.wps-form-group__control {
    flex: 0 0 100%;
    max-width: calc(100% - 200px);
    padding: 0 15px;
}

.wps-form-label {
    font-family: 'NunitoSans-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
}

.wps-form-select:hover select {
    border-color: rgba(0, 0, 0, .87)!important;
    color: rgba(0, 0, 0, .87);
}

.wps-form-select:focus select {
    border-color: #2196f3!important;
}

.mdc-button {
    border-radius: 35px!important;
    padding: 12px 24px!important;
    height: 100%;
}

#wps-wsfw-table-inner-container {
    width: 100%;
}

#wps-wsfw-table-inner-container table thead th {
    font-weight: bold;
    font-size: medium;
    font-family: 'NunitoSans-ExtraBold';
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgb(63 71 86 / 10%);
    border-radius: 8px;
    padding: 16px;
}

.wps-col-wrap {
    margin-bottom: 35px;
}

.wps-shadow-panel {
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(63, 71, 86, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.wps-password-hidden {
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s linear;
    user-select: none;
}

.wps-password-hidden:hover {
    opacity: 1;
}

.wps-options {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22)!important;
}

.content-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.content-wrap .content {
    flex: 0 0 100%;
    max-width: 70%;
    padding: 0 15px;
}

.content-wrap .cta-wrap {
    flex: 0 0 100%;
    max-width: 30%;
    padding: 0 15px;
    text-align: right;
}

.wps-cta-btn {
    flex: 0 0 100%;
    max-width: 100px;
    text-align: right;
    margin: 20px 15px;
}

.wps-cta-btn a {
    color: #ffffff;
}

.wps-form-group__control .mdc-switch__native-control {
    width: 68px;
    height: 48px;
}

.wps-btn-primary {
    color: #ffffff;
    background-color: #6200ee;
    border-color: #004EB6;
}

.wps-btn {
    display: inline-block;
    font-family: 'NunitoSans-Bold';
    font-weight: bold;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 16px 32px;
    font-size: 14px;
    border-radius: 35px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

.wps-btn-primary:hover {
    color: #fff;
}

.wps-shadow-panel h3 {
    display: block;
    font-size: 1.17em;
    font-weight: bold;
}


/* custom css added */
#wps_edit_wallet_action {
    width:110px;
}

.wpg-secion-wrap h3 {
    margin-bottom:30px;
    margin-top:10px;
}
.wps-wpg-number .mdc-text-field+.mdc-text-field-helper-line {
    padding-left:0px!important;
}

.wpg-secion-wrap .button-primary {
    background-color: #2196f3;
    border-radius: 35px!important;
    padding: 10px 20px!important;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.wps-section .notice    {
    margin-left: 0px;
}

.wpg-secion-wrap .enable_paypal_sandbox {
    display:none;
}
/* #export_user_wallet {
	float:right;
} */

.table-view-list tr .column-status {
    text-transform: capitalize;
}

#table_id_wrapper {
    margin:40px 0;
}

.dataTables_wrapper .toolbar {
    float: right;
}

.error {
    color:red;
}

.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td .woocommerce-Price-amount {
    display: inline-flex;
}
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td .woocommerce-Price-amount span {
    display: inline-flex;
}
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td select.approved {
    color: #03dac5 !important;
}
  
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td select.pending, .wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td select.pending1 {
    color: #fdb51a !important;
}
  
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td select.rejected {
    color: #f32121 !important;
}

@media only screen and (min-width:751px) {
    .wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody .dtr-control img {
        display:none!important;
    }
}

.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table .hide_date {
    display:none;
}
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td span.approved {
    display: inline;
    color: #03dac5;
}
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td span.rejected {
    display: inline;
    color: #f32121;
}
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container #wps-wpg-gen-table1 tbody td select {
    font-size:16px;
    padding: 0 24px 0 0!important;
}
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container #wps-wpg-gen-table1 tbody td select option {
    padding: 0 24px 0 0!important;
}

.wps-wpg-withdrawal-section-search table tbody tr td span {
    color: #2196f3;
    font-family: NunitoSans-Bold;
    font-size: 16px;
    padding: 8px 3px;
    display: inline-block;
    cursor:pointer;
}
.wallet-system-for-woocommerce-overview {
    background-color:white;
    border-radius: 10px;
    margin: 15px 15px 8px 0;
    padding: 28px 32px!important;
}
.wallet-system-for-woocommerce-system-status {
    background-color:white;
    border-radius: 10px;
    margin: 15px 15px 8px 0;
    padding: 28px 32px!important;
}
.wps-section .wps-wpg-transcation-section-search table tbody tr td input#min, .wps-section .wps-wpg-transcation-section-search table tbody tr td input#max {
    background: url(../../image/calender.png) no-repeat;
    background-size: 20px;
    background-position: 96% 50%;
}
.wps-wsfw-wallet-system-rest-api {
    padding: 30px 30px!important;
}
.wps-wsfw-wallet-system-rest-api table {
    margin-bottom:30px;
}
.wps-wsfw-wallet-system-rest-api p {
    margin-bottom:25px;
}
.wps-wsfw-wallet-system-rest-api .delete_keys {
    padding:10px 22px!important;
    margin-bottom:20px;
}
.wps-wsfw-wallet-system-rest-api pre {
    background:aliceblue;
    white-space:pre-wrap;
    word-wrap: break-word;
    margin-bottom: 30px;
}
.wps-wsfw-wallet-system-rest-api code {
    font-family:NunitoSans-Regular;
    font-size:16px;
    padding:8px 8px 8px 8px;
}
.wps-wsfw-wallet-system-rest-api  h4 {
    margin-bottom: 20px;
}
.wps-wsfw-wallet-system-rest-api  h5 {
    margin: 20px 0;
    color:#2196f3;
}
.wps-wsfw-wallet-system-rest-api .wps-wsfw-rest-api-table {
    border-collapse:collapse;
    width:100%;
}

.wps-wsfw-wallet-system-rest-api .wps-wsfw-rest-api-table tr th, .wps-wsfw-wallet-system-rest-api .wps-wsfw-rest-api-table tr td {
    border:solid 1px #cccccc;
    padding:10px 15px;
}

.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table {
    width:100%!important
}
.wps-wpg-gen-section-table-wrap h4 a {
    text-decoration: none;
}
.wps-wpg-gen-section-table-wrap h4 a span {
    vertical-align: middle;
}
.wps-wpg-gen-section-table-wrap .wps-wpg-gen-section-table-container .wps-wpg-gen-section-table tbody td #overlay {
    display:none;
    width:69px;
    height:89px;
}
.mdc-text-field+.mdc-text-field-helper-line {
    display: none;
}
.wps-wsfw-gen-section-form .wps-wsfw-text .mdc-text-field-helper-line, .wps-wpg-gen-section-form-container .wps-wsfw-file  .mdc-text-field-helper-line {
    display: block;
}
.wps-form-group2 {
    padding-top: 10px!important;
}
.wps-form-group2 input {
    padding-top: 10px;
    padding-bottom: 10px;
}
.wps-overview__wrapper .wps-wsfsw-iframe-box {
    text-align:center;
}
.wps-overview__wrapper .wps-overview__content .wps-overview__content-description iframe {
    width:560px;
    height:315px;
    margin:30px auto 20px;
}
@media screen and (max-width:700px) {
    .wps-overview__wrapper .wps-overview__content .wps-overview__content-description iframe {
        width:100%;
    } 
}
