/* Payment method custom start*/
.payment-method-list-card-bank-transfer{
    display: flex;
    padding: 24px var(--spacing-small, 16px);
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    /*width: 376px;*/
    height: 175px;
    background: linear-gradient(332deg, #FED42B 18.23%, #FFEDA7 100%);
    background-image: url('/wp-content/themes/wemastertrade/assets/images/Payment-Method-Card-bank-transfer.png');
    background-repeat: no-repeat;
}
.payment-method-list-card-method-name{
    margin-top: 24px;
    /* Heading/Heading 3 */
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.payment-method-list-card-radio-label
{
    /* Label/xs-size/regular 500 */
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    margin-right: 20px;
}

.payment-method-list-card-content
{
    /* Text/xs-size/regular 500 */
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 18px */
}

.payment-method-list-card-deel{
    display: flex;
    padding: 24px var(--spacing-small, 16px);
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    /*width: 376px;*/
    height: 175px;
    background: linear-gradient(332deg, #7070E6 18.23%, #7674E7 100%);
    background-image: url('/wp-content/themes/wemastertrade/assets/images/Payment-Method-Deel.png');
    background-repeat: no-repeat;
    color: #fff;
}

.payment-method-list-card-paypal{
    display: flex;
    padding: 24px var(--spacing-small, 16px);
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    /*width: 376px;*/
    height: 175px;
    background: #181C89;
    background-image: url('/wp-content/themes/wemastertrade/assets/images/Payment-Method-Paypal.png');
    background-repeat: no-repeat;
    color: #fff;
}

.payment-method-add-new-card{
    display: flex;
    width: 376px;
    height: 175px;
    padding: 24px var(--spacing-small, 16px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-image: url('/wp-content/themes/wemastertrade/assets/images/Payment-Method-add-new-bg.png');
    background-repeat: no-repeat;
    border-radius: 8px;
    background: #FFF8EA;
}
.payment-method-add-new-button {
    display: block;
    color: var(--buttons-tertiary-label, #967800);
    text-align: center;

    /* Text/regular-size/regular 400 */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */

}

.payment-method{
    --tw-border-opacity: 0 !important;
}

#modal_payment_method_confirm  .btn-danger{
    background-color: #cc2727 !important;
    color: #fff !important;
}

#modal_payment_method_add .form-actions,
#modal_payment_method_confirm .form-actions,
#modal_primary_payment_method_confirm .form-actions{
    margin-top: unset !important;
}

#modal_payment_method_add p,
#modal_payment_method_confirm p,
#modal_primary_payment_method_confirm p{
    margin: 15px 0 15px 0 !important;
}

#modal_payment_method_add{
    max-width: 878px !important;
}

.payment-method-container {
    display: flex;
    align-items: stretch;
    gap: var(--Spacing-small, 16px);
    align-self: stretch;
}

@media screen and (max-width: 640px) {
    .payment-method-container {
        flex-direction: column;
    }

    .form-field-bank .form-control {
        margin-bottom: 16px;
    }
}
.payment-form .form-actions button{
    margin-top: 24px;
}


.payment-method-container .payment-method {
    height: 65px;
    display: flex;
    min-width: 140px;
    padding: 20px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    border-radius: 7px;
    background: #EFEFEF;
}

.payment-method-container .payment-method.active {
    border: 1px solid var(--Border-border-secondary, #967800);
    background: var(--Surface-surface-tertiary, #FFF8EA);
}

.modal .error{
    color: red !important;
}
#add_payment_method_show_primary_hint{
    margin-top: 20px;
    background-color: #FFF8EA;
    border: 2px #967800 solid;
    border-radius: 8px;
    padding: 24px;
    height: 100px;
    width: 100%;
}
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 0 dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    height: 85px;
    width: 320px;
    background-color: #fff8ea;
    color: #2b2b2b;
    text-align: justify;
    padding: 20px 5px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 25%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.button-add-new-right{
    display: flex;
    height: 48px;
    min-width: 160px;
    max-height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--buttons-primary-background, #FACC15);
    float: right;
}
.blocker{
    z-index: 1000 !important;
}

.kyc-unverifying-notice-container{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.kyc-text-notice-container{
    display: flex;
    padding: var(--spacing-large, 40px) 0px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}

.kyc-not-verifying-text{
    color: var(--text-text-primary-1, #2B2B2B);
    text-align: center;
    /* Heading/Heading 3 */
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.kyc-verifying-text{
    color: var(--text-text-primary-1, #2B2B2B);
    text-align: center;
    /* Heading/Heading 3 */
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.kyc-reject-text{
    color: var(--text-text-primary-1, #2B2B2B);
    text-align: center;
    /* Heading/Heading 3 */
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.kyc-button-redirect{
    display: flex;
    height: 48px;
    min-width: 160px;
    max-height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--buttons-primary-background, #FACC15);
}
/* Payment method custom end*/