body#module-psy_paymenthelper-order,
body#module-psy_paymenthelper-payment,
body#module-psy_paymenthelper-validation{
    background: #eaeaea;
    background: #f6f6f6;
    height: auto;
}

#module-psy_paymenthelper-order #wrapper,
#module-psy_paymenthelper-payment #wrapper,
#module-psy_paymenthelper-validation #wrapper{
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.content-paymenthp{
    width: 100%;
    margin: 80px 0;
}
.lang-rtl .content-paymenthp,
.rtl .content-paymenthp{
    direction: rtl;
}
.content-paymenthp a:focus,
.content-paymenthp a:hover {
    text-decoration: none;
}
.content-paymenthp .alert p {
    margin-bottom: 0;
}

#paymenthp {
    background: #fff;
    width: 100%;
    max-width: 500px;
    margin: auto;
    /*padding:20px 20px 40px;*/
    box-shadow: 0 .5rem 1.9rem 0 rgba(0,0,0,.11);
    border-radius: 10px;
}

.paymenthp-section-header {
    padding:20px 10px;
    /*margin: -20px -20px 40px;*/
    border-radius: 10px 10px 0 0;
    display: flex;
}
.paymenthp-section-icon{
    max-width: 200px;
    padding: 0 25px;
}
.paymenthp-section-icon img {
    width: 100% !important;
    margin: 0;
    display: inline-block;
}

.paymenthp-section-title{
    color: #fff;
    text-align: left;
    margin:25px 0 0;
}
.paymenthp-section-title h4{
    font-size:20px;
    margin: 0 0 .5rem;
}
.rtl .paymenthp-section-title,
.lang-rtl .paymenthp-section-title{
    text-align: right;
}
.rtl .paymenthp-section-title h4,
.lang-rtl .paymenthp-section-title h4{
    font-size:23px;
}
.paymenthp-section-content{
    padding:20px 20px 40px;
}
.paymenthp-section-text p{
    color: #343d60;
    line-height: 22px;
    font-size: 13px;
}
.paymenthp-section-links {
    display: flex;
    margin: 30px 0 0;
}
.paymenthp-section-links > a{
    font-size: 13px;
    padding: 0.375rem 1rem;
    margin: 5px;
    text-decoration: none;
}
.paymenthp-section-links .psy-btn{
    font-size: 14px;
    padding: 0.675rem 1.5rem;
}

.alert-payment hr,
#paymenthp-section hr{
    margin: 40px auto;
    width: 90%;
    height: 0;
    border-top: 2px dashed rgba(0,0,0,0.3);
    border-bottom: none;
}


.paymenthp-error .paymenthp-section-header {
    /*background: #f84a49;*/
    background: #f3bfbf;
}
.paymenthp-error .paymenthp-section-title h4,
.paymenthp-error .paymenthp-section-title {
    color: #d72929;
}
.paymenthp-error .paymenthp-section-icon img{
    /*width: 80px;*/
    width: 60%;
}
.paymenthp-error .paymenthp-section-links .btn{
    color: #fff;
    background-color: #f84a49;
    border: none;
}
.paymenthp-error .paymenthp-section-links .btn:hover{
    background-color: #c82333;
}


.paymenthp-send .paymenthp-section-header {
    background: #343d60;
    display: block;
}
.paymenthp-send .paymenthp-section-icon{
    max-width: 100%;
    padding: 0;
}
.paymenthp-send .paymenthp-section-icon img{
    width: auto !important;
    margin:10px auto;
    display: block;
}
.paymenthp-send .paymenthp-section-title {
    margin: 30px 0 0;
    text-align: center;
}
.paymenthp-send .paymenthp-section-text {
    text-align: center;
}
.paymenthp-send .paymenthp-section-links{
    justify-content: center;
}

.paymenthp-validate .paymenthp-section-header {
    background: #eef9ea;
}
.paymenthp-validate .paymenthp-section-icon img{
    width: 60%;
}
.paymenthp-validate .paymenthp-section-title h4,
.paymenthp-validate .paymenthp-section-title {
    color: #34a30c;
}

.paymenthp-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    overflow: hidden;
}
.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
}
.circle-1 {
    background-color: #49b8e5;
}
.circle-1:before {
    background-color: #49b8e5;
    animation-delay: 200ms;
}
.circle-2 {
    background-color: #1e98d4;
}
.circle-2:before {
    background-color: #1e98d4;
    animation-delay: 400ms;
}
.circle-3 {
    background-color: #2a92d0;
}
.circle-3:before {
    background-color: #2a92d0;
    animation-delay: 600ms;
}
.circle-4 {
    background-color: #3a88c8;
}
.circle-4:before {
    background-color: #3a88c8;
    animation-delay: 800ms;
}
.circle-5 {
    background-color: #507cbe;
}
.circle-5:before {
    background-color: #507cbe;
    animation-delay: 1000ms;
}
@keyframes scale {
    0% {
        transform: scale(1);
    }
    50%, 75% {
        transform: scale(2.5);
    }
    78%, 100% {
        opacity: 0;
    }
}


.paymenthp-invoice{

}
.paymenthp-invoice-amount{
    display: flex;
    justify-content: space-between;
    border: 1px solid #c7c7c7;
    font-size: 15px;
    color: #353535;
    background: #fbfbfb;
    padding: 10px 15px;
    margin:50px 0 10px;
    font-weight: 700;
    border-radius: 4px;
}
.paymenthp-amount{
    /*color:#727b26;*/
    /*color:red;*/
}

.paymenthp-invoice-list{
    margin: 40px 0 0;
}
.paymenthp-invoice-list > h6{
    text-align: center;
}

.paymenthp-invoice-list .paymenthp-method:hover{
    background: #f0f0f0;
}
.paymenthp-invoice-list .paymenthp-method:hover h6{
    color: #181717;
}
.paymenthp-invoice-list .paymenthp-method img{
    margin-left: 15px;
}

.paymenthp-title-reference{
    font-size: 13px;
    line-height: 22px;
    color: #232933;
    padding-top: 10px;
}
.paymenthp-title-reference span{
    color: #333;
}
.paymenthp-header-text p{
    font-size: 13px;
    line-height: 22px;
    color: #232933;
    padding: 10px 0 0;
    margin: 0 0 1rem;
}

.paymenthp-section-checkout .paymenthp-checkout-reference{
    font-size: 13px;
    line-height: 22px;
    color: #232933;
    margin-bottom: 4px;

}
.paymenthp-section-checkout .paymenthp-checkout-reference span{
    color: #81858b;
}
.paymenthp-checkout-message{
    color: #d72929;
    text-align: right;
    display: block;
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0;
}
.paymenthp-approval .paymenthp-checkout-message{
    color: inherit;
}
.paymenthp-checkout .paymenthp-section-links > a{
    margin-left: 20px;
}

.paymenthp-section-alert {
    /*color: #555555;*/
    line-height: 22px;
    font-size: 13px;
    text-align: right;

    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    margin: 2rem 0;
    padding: .75rem .5rem .75rem 1.25rem;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}
.paymenthp-section-alert > p{
    color: #856404;
    line-height: 22px;
    font-size: 13px;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.wrapper-alert-payment {
    padding-top: 10px;
}
.alert-payment{
    display: flex;
    padding: 1.2rem;
}
.alert-payment-simple{
    justify-content: space-between;

    line-height: 37px;
    font-size: 14px;
    text-align: right;

    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    margin: 2rem 0;
    padding: 1.25rem;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}
.alert-payment-list{
    flex-direction: column;
    /*1justify-content: space-between;*/

    line-height: 37px;
    font-size: 14px;
    text-align: right;

    color: #515151;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1rem 0 2rem;
    padding: 1.25rem;
}
.alert-payment-list .alert-payment-title{
    font-size: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.alert-payment-list .alert-payment-title p {
    float: left;
    font-size: 13px;
    color: #856404;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}
.alert-payment-list .list-order{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding-bottom: 20px;
}
.alert-payment-list .list-order:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.list-order-info{
    display: flex;
}
.list-order-info > div{
    margin-left: 20px;
}

.list-order-info > div span{
    padding-left: 5px;
    font-size: 13px;
}

.alert-payment-order{
    flex-direction: column;
    /*1justify-content: space-between;*/

    font-size: 14px;
    text-align: right;

    color: #515151;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    padding: 1.25rem 1.25rem 0;
}
.alert-payment-order .paymenthp-submit{

}

.alert-payment .psy-btn-outline-warning{
    color: #856404;
    border-color: #856404;
    font-size: 13px;
}
.alert-payment-links a{
    margin-right: 10px;
}
.alert-payment-links .psy-btn-outline-secondary {
    color: #353535;
    font-size: 13px;
}

.paymenthp-checkout-transactions{
    margin: 20px 0;
}

.paymenthp-checkout-tr{
    display: flex;
    padding: 12px 0;
    border-bottom:1px solid rgba(0,0,0,0.07);
}
.paymenthp-checkout-tr:last-child{
    border-bottom: none;
}
.paymenthp-checkout-td{
    width: 20%;
    display: flex;
    flex-direction: column;
    font-size: 13px;
}
.paymenthp-td-description{
    width: 40% !important;
}
.paymenthp-checkout-td b{
    color: #999999;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 12px;
}
.paymenthp-checkout-td span{
    font-size: 12px;
}

.psy-btn-outline-secondary {
    border:none !important;
}

#paymenthp {
    max-width: 800px;
}


.paymenthp-reselect-methods h4{
    font-size: 1.125rem;
    margin-bottom: .7rem;
    font-weight: 700;
    line-height: 1.1;
    color: #232323;
}

.paymenthp-reselect .payment-options .payment-option{
    border-bottom: 1px solid #f0f0f0;
    padding: 0 8px 6px;
    margin: 0;
    cursor: pointer;
}
.paymenthp-reselect .payment-options .payment-option:last-child{
    border:none;
}
.paymenthp-reselect .payment-options .payment-option label{
    cursor: pointer;
    font-size: .875rem !important;
    line-height: 25px;
}
.paymenthp-reselect .payment-options label img{
    float: right;
    margin-left: 10px;
    max-height: 25px;
}
.paymenthp-reselect .payment-options .payment-option.payment-selected{
    cursor: default;
}
.paymenthp-reselect .payment-options .payment-option .psy-radio-group{
    margin: 20px 0 5px;
}
.paymenthp-reselect .payment-options .payment-option .payment-option-radio .checkmark{
    transition: background-color 0.2s;
    position: relative;
    top: 0;
    height: 25px;
    width: 25px;
    background-color: #eeeeee;
    border-radius: 50%;
    left: 0;
    float: right;
    margin-left: 10px;
    margin-right: 0;
}
.paymenthp-reselect .payment-options .payment-option.payment-selected .payment-option-radio .checkmark{
    background-color: #4fba6f;
}
.paymenthp-reselect .payment-options .payment-option .payment-option-radio .checkmark:after{
    content: "";
    position: absolute;
    display: block;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
}
.paymenthp-reselect .payment-options .custom-radio {
    display: none !important;
}

.paymenthp-reselect-order {
    font-size: 13px;
}
.paymenthp-reselect-order > div{
    padding: 10px 0;
    /*border-bottom: 1px solid #f0f0f0;*/
}
.paymenthp-reselect-order > div b{
    padding-left: 30px;
}

.paymenthp-reselect-amount{
    font-size: 10px;
}
.paymenthp-reselect-amount b{
    font-size: 18px;
    line-height: 25px;
}

.paymenthp-submit{
    display: flex;
    margin: 30px -20px 20px;
    justify-content: space-between;
    padding: 5px 20px;
    /*border-bottom: 1px solid #d0d0d0;
    border-top: 1px solid #d0d0d0;
    box-shadow: 0 .5rem 1.9rem 0 rgba(0,0,0,.11);*/
}
.paymenthp-submit-btns {
    padding-top: 5px;
}
.paymenthp-submit .psy-btn{
    font-size: 14px;
    padding: 0.675rem 1.5rem;
    text-decoration: none;
}
.paymenthp-submit .psy-btn-outline-secondary {
    color: #353535;
    font-size: 13px;
}



.paymenthp-approval .paymenthp-section-header {
    background-color: #d9edf7;
}
.paymenthp-approval .paymenthp-section-title h4,
.paymenthp-approval .paymenthp-section-title {
    color: #31708f;
}
.paymenthp-approval .paymenthp-section-icon img{
    width: 60%;
}

.options-ps16 .psy-radio-group{
    display: flex;
}

.options-ps16 .payment-option-radio{
    margin-left: 5px;
}
.options-ps16 .payment-option-radio label img{
    margin-right: 5px;
}

.content-paymenthp #psy-logo a {
    display: block;
    text-align: center;
    margin: 30px auto;
}



/* mobile */
@media (max-width: 1300px) {}

@media (max-width: 1200px) {}

@media (max-width: 991px) {}
@media (min-width: 992px) {}
@media (min-width: 768px) and (max-width: 845px){}

@media (max-width: 768px) {}

@media (max-width: 575px) {
    #module-psy_paymenthelper-payment .container,
    #module-psy_paymenthelper-validation .container{
        padding-top: 0;
        margin-top: 0;
    }
    .content-paymenthp{
        margin: 0;
    }
    #paymenthp{
        background: transparent;
        width: 100%;
        max-width: 100%;
        margin:0;
        box-shadow: none;
        border-radius: 0;
    }
    .paymenthp-section-header {
        border-radius: 0;
    }
    .paymenthp-section-title {
        margin-bottom: 30px;
        font-size: 23px;
    }
    .paymenthp-section-text p {
        line-height: 28px;
        font-size: 15px;
    }

    #module-psy_paymenthelper-payment #wrapper,
    #module-psy_paymenthelper-validation #wrapper{
        padding-top: 0;
        margin-top: 0;
    }

    .paymenthp-section-header {
        flex-direction: column;
        align-items: center;
    }

    .wirepayment-tracking-form .col-4 {
        float: none;
        width: 100%;
        padding: 10px 0 !important;
    }

    .wirepayment-tracking-form button {
        margin-top: 10px;
    }

    .paymenthp-submit {
        display: block;
    }
    .paymenthp-submit-btns {
        display: flex;
        justify-content: flex-end;
        padding-top: 20px;
    }
}

@media (min-width: 576px) {

}

@media (max-width: 440px) {}