@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot?hbd5ka');
    src:  url('../fonts/icomoon.eot?hbd5ka#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?hbd5ka') format('truetype'),
    url('../fonts/icomoon.woff?hbd5ka') format('woff'),
    url('../fonts/icomoon.svg?hbd5ka#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-cc-paypal:before {
    content: "\e900";
}
.icon-cc-visa:before {
    content: "\f1f0";
}
.icon-cc-mastercard:before {
    content: "\f1f1";
}
.icon-cc-discover:before {
    content: "\f1f2";
}
.icon-cc-amex:before {
    content: "\f1f3";
}
.icon-cc-jcb:before {
    content: "\f24b";
}
.icon-cc-diners-club:before {
    content: "\f24c";
}
.icon-credit-card-alt:before {
    content: "\f283";
}
.icon-question-circle-o:before {
    content: "\f29c";
}
.pt-100{
    padding-top: 100px !important;
}
/* Основные стили для страницы */
body {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,SF Pro Text,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.main{
    width: 100%;
    height: 100%;
}
input,select{
    box-sizing: border-box;
    outline: none !important;
}
.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #ffffff;
   height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Левая колонка с информацией о заказе */
.left-column {
    width: 50%;
    display: flex;
    min-height: 100vh;
    justify-content: end;
}
.column-inner{
    width: 55%;
    padding: 40px;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.logo-icon {
    font-size: 24px;
    font-weight: bold;
    color: #001f3f;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.test-mode {
    background-color: #feca57;
    color: #333333;
    padding: 3px 7px;
    border-radius: 3px;
    font-size: 12px;
}

.order-summary h2 {
    font-size: 18px;
    margin-bottom: 20px;
}
h4 {
    margin: 0 0 5px 0;
    font-weight: normal;
    font-size: 13px;
    color: #333333b0;
}

.echeck-type {
    font-weight: normal;
    font-size: 13px;
    color: #333333b0;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.product-details select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 14px;
    background-color: #ffffff;
}
.product-details .subtotal{
    font-size: 18px;
    font-weight: bold;
}

.product-details img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
}

.product-details .description{
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    background-color: #ffffff;
}
.product-details .amount{
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    background-color: #ffffff;
    width: 38%;
    border-left: 0;
    text-align: right;
}

.product-name {
    font-size: 16px;
}

.subtotal {
    font-size: 14px;
}

.discount {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    justify-content: space-between;
    align-content: f;
}
.discount .discount-cont{}
.discount .discount-amount{
    color: #999;
}
#couponMessage{
    color: red;
}
#couponSMessage{
    color: green;
}
.discount-code {
    background-color: #f1f1f1;
    padding: 5px 30px 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    color: #666;
    cursor: pointer;
    display: inline-block;
}
.discount-code .close{
    position: absolute;
    right: 19px;
    top: 12px;

}
.discount-code .close:after{
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: #999;
    transform: rotate(-45deg);
    position: absolute;
}
.discount-code .close:before{
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: #999;
    transform: rotate(45deg);
    position: absolute;
}

.discount-percent {
    color: green;
    display: none;
}

.total-due {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
}

.sub-total-due {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 18px;
}

/* Правая колонка с формой оплаты */
.right-column {
    width: 50%;

    min-height: 100vh;
}

 form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.input-group input,
.input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 14px;
    background-color: #ffffff;
}

.fields-group input,
.fields-group select{
    border-bottom: none;
    border-radius: 0;
}
.fields-group .first-field {
    border-radius: 8px 8px 0 0;
}
.fields-group .last-field{
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid #ced4da;
}
.coupon-details{
    display: flex;
    margin-bottom: 10px;
}
.coupon-details .input-group{
    width: 70%;
    margin-bottom: 0;
}
.coupon-details input {
    border-radius: 8px 0 0 8px;

}
.coupon-details button {
    width: 30%;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 16px;
    border: none;
    border-radius: 0px 8px 8px 0;
    cursor: pointer;
}

.card-info {
    /*border-radius: 8px;
    overflow: hidden;*/
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.card-info input[type="text"] {
    border: 1px solid #ced4da;
    border-radius: 0 0 8px 0;
    height: 39px;
}

.card-details input.cardExp{
    border-top:none ;
    border-right: none;
    border-radius: 0 0 0 8px;
}


.card-info input[type="text"].card-number {
    border-radius: 8px 8px 0 0px;
}
.card_number_cont{
    position: relative;
}
.ccresult{display: none}
.ccresult .error {
    color: red;
    margin: 6px 0 0 5px;
    float: left;
    font-weight: bold;
}
.cc-icon {
    font-family: 'icomoon';
    position: absolute;
    right: 4px;
    top: 24px;
    transform: translateY(-50%);
    pointer-events: none;
    height: 30px;
    width: 30px;
    font-size: 22px;
}
.card-info .card-exp {
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid #ced4da;
}

.cvv-cont{
position: relative;
    width: 50%;
}
.cvv-cont b{
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    font-size: 20px;
}
.card-info input.card-cvv {
    border-radius: 0 0 8px 0px;
    border-bottom: 1px solid #ced4da;
    border-top: 0;
}
.exp-cont{
    display: flex;
    width: 50%;
}
.exp-cont select{}
.exp-cont select:first-child {
    border-right: none;
    border-bottom: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    border-radius: 0 0 0 8px;
}
.exp-cont select:last-child {
    border-left: 1px solid #ced4da;
    border-radius: 0 0 0 0;
    border-right: none;
}

.card-details {
    display: flex;
    gap: 0;
}

.card-details input {
    flex: 1;
    border-radius: 0;
    border-right: none;
}
.card-details input,
.card-details select{
    border-top:none;
}

.card-details input:last-child {
    border-radius: 0 0px 8px 0;
    width: 50%;
    border-bottom: 1px solid #ced4da;
    border-top: none;
}



.card-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.card-icons img {
    height: 20px;
    width: auto;
}

.right-column button,
.button{
    width: 100%;
    padding: 15px;
    color: #ffffff;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.legal-links {
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

.legal-links a {
    color: #555555;
    text-decoration: none;
    margin-right: 15px;
}

.legal-links a:hover {
    text-decoration: underline;
}
/* Container for the tabs */
.payment-tabs {
    display: flex;
    justify-content: space-between;
    background-color: #f7f7f8;
    margin-bottom: 20px;
    padding: 2px;
}

/* Individual tab styling */
.payment-tabs .tab {
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    color: #999;
    background-color: transparent;
    transition: background-color 0.3s;
    width: 49%;
    font-size: .7rem;
    cursor: pointer;
}
.payment-tabs .tab:hover{
    color: #333;
}
/*.payment-tabs .tab.active:hover{
    background-color: #fff;
    color: #333;
    bor*er-color: #999;
}*/

/* Active tab styling */
.payment-tabs .tab.active {
    background-color: #fff;
    color: #666;
    border-color: #999;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}
.message{
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.message.success{
    background-color: #b0e8b0;
    max-width: 800px;
    margin: 0 auto 20px;
}
.message.error{
    background-color: #ec9b9b;
    color: #000;
    word-break: break-all;
}
.cvv-cont input { border-top:0 !important; }
.hint { font-size:14px;}
.pppro_footer {
    max-width: 580px;
    margin: 0 auto;
    text-align: center !important;
    padding-top: 15px;
}
.loading{
    position: relative;
}
.loading::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    height: 100%;
    background-color: rgba(0,0,0,0.05);
    background-image: url(../images/loader.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    z-index: 10;
}

@media (min-width: 0px) and (max-width: 1400px){
    .column-inner {
        width: 80%;
    }
}

@media (min-width: 0px) and (max-width: 992px){
    .container {
        flex-wrap: wrap;
        max-width: 630px;
        width: auto;
        margin: 0 auto;
    }
    .left-column,
    .right-column{
        width: 100%;
        width: 100%;
        min-height: auto;
    }
    .column-inner {
        width: auto;
        padding: 20px;
    }
    .left-column .column-inner{
        width: 100%;
    }
    .pt-100 {
        padding-top: 30px !important;
    }
    body {

        display: block;

    }
    .message.success {
        background-color: #b0e8b0;
        max-width: 80%;
        margin: 20% auto;
    }
}

/* Grey-blue theme */

.left-column.grey-blue-theme {
    background-color: #f7f8fa;
}

.logo-text.grey-blue-theme {
    color: #333333;
}

.order-summary h2.grey-blue-theme {
    color: #333333;
}

.total-due.grey-blue-theme {
    color: #333333;
}

.sub-total-due.grey-blue-theme {
    color: #333333;
}

.subtotal.grey-blue-theme {
    color: #777777;
}

.cc-icon.grey-blue-theme {
    color: #001f3f;
}

.cvv-cont b.grey-blue-theme {
    color:#001f3f;
}

button.grey-blue-theme {
    background-color: #001f3f;
}

.right-column button.grey-blue-theme:not(.tab):hover {
    background-color: #001f3f;
}

/* End of Grey-blue theme */

/* Grey-green theme */

.left-column.grey-green-theme {
    background-color: #f7f8fa;
}

.logo-text.grey-green-theme {
    color: #333333;
}

.order-summary h2.grey-green-theme {
    color: #333333;
}

.total-due.grey-green-theme {
    color: #333333;
}

.sub-total-due.grey-green-theme {
    color: #333333;
}

.subtotal.grey-green-theme {
    color: #333333;
}

.cc-icon.grey-green-theme {
    color: #15803d;
}

.cvv-cont b.grey-green-theme {
    color:#15803d;
}

button.grey-green-theme {
    background-color: #15803d;
}

.right-column button.grey-blue-green:not(.tab):hover {
    background-color: #166534;
}

/* End of Grey-green theme */

/* Black-white theme */

.left-column.black-white-theme {
    background-color: #000;
}

.logo-text.black-white-theme {
    color: #fff;
}

.order-summary h2.black-white-theme {
    color: #fff;
}

.total-due.black-white-theme {
    color: #fff;
}

.sub-total-due.black-white-theme {
    color: #fff;
}

.subtotal.black-white-theme {
    color: #fff;
}

button.black-white-theme {
    background-color:#0891b2;
}

.cc-icon.black-white-theme {
    color:#0891b2;
}

.cvv-cont b.black-white-theme {
    color:#0891b2;
}

.right-column button.black-white-green:not(.tab):hover {
    background-color: #155e75;
}

/* End of Black-white theme */