/* ==================================================
   CHECKOUT PAGE LAYOUT
   ================================================== */

.vt-checkout-page {

    background:
        radial-gradient(
            circle at top,
            #0b1631,
            #060d1f 70%
        );

    padding: 40px 0 80px;

    color: #fff;

    font-family:
        Inter,
        sans-serif;
}


/* ==================================================
   CHECKOUT HEADER
   ================================================== */

.vt-checkout-header {

    max-width: 1320px;

    margin: 0 auto 28px;

    padding: 0 24px;

    padding-top: 200px;
}


/* ==================================================
   STEPPER
   ================================================== */

.vt-stepper {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 26px 32px;

    background:
        rgba(12,22,48,.84);

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 24px;

    backdrop-filter: blur(18px);
}


/* ==================================================
   STEP
   ================================================== */

.vt-step {

    display: flex;

    align-items: center;

    gap: 14px;

    color:
        rgba(255,255,255,.55);
}

.vt-step.active {
    color: #fff;
}


.vt-step span {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.08);
}

.vt-step.active span {
    background: #1d67ff;
}


.vt-step strong {

    display: block;

    font-size: 14px;
}

.vt-step small {

    font-size: 12px;

    opacity: .7;
}


/* ==================================================
   CONNECTOR LINE
   ================================================== */

.vt-step-line {

    flex: 1;

    height: 1px;

    background:
        rgba(255,255,255,.08);
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

    .vt-stepper {

        padding: 18px;

        gap: 10px;

        overflow-x: auto;
    }

    .vt-step strong {
        font-size: 12px;
    }

    .vt-step small {
        display: none;
    }

    .vt-step-line {
        min-width: 24px;
    }

}


/* ==================================================
   CHECKOUT INTRO
   ================================================== */

.vt-checkout-intro {

    max-width: 1320px;

    margin: 0 auto;

    padding: 0 24px 28px;
}


/* ==================================================
   INTRO HEADLINE
   ================================================== */

.vt-intro h1 {

    margin: 0 0 14px;

    color: #fff;

    font-size: 48px;

    font-weight: 700;

    line-height: 1.1;
}


/* ==================================================
   INTRO TEXT
   ================================================== */

.vt-intro p {

    margin: 0;

    color:
        rgba(255,255,255,.72);

    font-size: 18px;
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

    .vt-intro h1 {
        font-size: 32px;
    }

    .vt-intro p {
        font-size: 15px;
    }

}



/* ==================================================
   CHECKOUT GRID LAYOUT
   ================================================== */

.vt-checkout-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        420px;

    gap: 36px;

    max-width: 1320px;

    margin: 0 auto;

    padding: 0 24px;
}


.vt-checkout-main {

    display: flex;

    flex-direction: column;

    gap: 28px;
}


/* ==================================================
   GENERIC CARD
   ================================================== */

.vt-card {

    padding: 34px;

    background:
        rgba(10,20,45,.88);

    border:
        1px solid rgba(255,255,255,.05);

    border-radius: 28px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 18px 48px rgba(0,0,0,.22);
}


/* ==================================================
   SECTION TITLE
   ================================================== */

.vt-section-title {

    margin-bottom: 28px;

    color: #fff;

    font-size: 24px;

    font-weight: 700;
}


/* ==================================================
   SELECTION CARD
   ================================================== */

.vt-selection-item {

    display: flex;

    justify-content: space-between;

    gap: 24px;

    margin-bottom: 18px;

    padding: 24px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.05);

    border-radius: 22px;

    transition: .25s;
}

.vt-selection-item:hover {

    background:
        rgba(255,255,255,.045);
}


/* ==================================================
   SELECTION LEFT
   ================================================== */

.vt-selection-left {

    display: flex;

    gap: 18px;
}


/* ==================================================
   ICON
   ================================================== */

.vt-selection-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #132957;

    color:
        rgba(255,255,255,.88);
}


/* ==================================================
   TEXT ELEMENTS
   ================================================== */

.vt-label {

    margin-bottom: 6px;

    color: #7fb2ff;

    font-size: 13px;
}

.vt-title {

    color: #fff;

    font-size: 22px;

    font-weight: 600;
}

.vt-subline {

    margin-top: 8px;

    color:
        rgba(255,255,255,.66);

    font-size: 14px;
}


/* ==================================================
   PRICE COLUMN
   ================================================== */

.vt-selection-right {
    text-align: right;
}

.vt-price {

    color: #fff;

    font-size: 28px;

    font-weight: 700;
}


/* ==================================================
   RUNTIME BADGE
   ================================================== */

.vt-runtime {

    display: inline-flex;

    margin-bottom: 14px;

    padding: 12px 16px;

    background: #102348;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 14px;
}


/* ==================================================
   SUCCESS BADGE
   ================================================== */

.vt-badge {

    display: inline-flex;

    margin-top: 12px;

    padding: 6px 10px;

    background: #0e7c42;

    color: #baf7cf;

    font-size: 11px;

    border-radius: 999px;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1024px) {

    .vt-checkout-grid {

        grid-template-columns: 1fr;
    }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

    .vt-card {
        padding: 22px;
    }

    .vt-selection-item {
        flex-direction: column;
    }

    .vt-selection-right {
        text-align: left;
    }

    .vt-price {
        font-size: 24px;
    }

}

/* ==================================================
   TRUSTBAR
   ================================================== */

.vt-bottom-trustbar {

    max-width: 1320px;

    margin: 20px auto 60px;

    padding: 5px 28px 28px;

    background:
        rgba(10,20,45,.7);

    border:
        1px solid rgba(255,255,255,.05);

    border-radius: 24px;
}


/* ==================================================
   TRUST GRID
   ================================================== */

.vt-trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 32px;

    padding: 28px 30px;
}


/* ==================================================
   TRUST ITEM
   ================================================== */

.vt-trust-item {

    display: flex;

    align-items: center;

    gap: 16px;
}


/* ==================================================
   TRUST ICON
   ================================================== */

.vt-trust-icon {

    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #132957;

    border-radius: 14px;

    color: #4ba8ff;
}

.vt-trust-icon svg {

    width: 24px;
    height: 24px;
}


/* ==================================================
   TRUST CONTENT
   ================================================== */

.vt-trust-content {

    display: flex;

    flex-direction: column;
}

.vt-trust-title {

    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-size: 17px;

    font-weight: 600;
}

.vt-trust-text {

    color:
        rgba(255,255,255,.65);

    font-size: 14px;
}


/* ==================================================
   TRUSTBAR TABLET
   ================================================== */

@media (max-width: 1024px) {

    .vt-trust-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ==================================================
   TRUSTBAR MOBILE
   ================================================== */

@media (max-width: 767px) {

    .vt-trust-grid {

        grid-template-columns:
            1fr;

        gap: 18px;

        padding: 20px;
    }

}


/**************************************************/
/* widget ergänzung*/
/* ========================================
   TRUSTBAR
======================================== */

.vt-bottom-trustbar{
    background: rgba(10,20,45,.7);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 24px;

    max-width: 1320px;

    margin: 24px auto 60px;

    padding: 28px;
}

.vt-trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
}

.vt-trust-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.vt-trust-icon{

    width:58px;
    height:58px;

    min-width:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#132957;

    border-radius:14px;

    color:#4ba8ff;
}

.vt-trust-icon svg{
    width:24px;
    height:24px;
}

.vt-trust-content strong{
    display:block;

    color:#fff;

    font-size:16px;
    font-weight:600;

    margin-bottom:4px;
}

.vt-trust-content span{
    color:rgba(255,255,255,.7);
    font-size:14px;
}

@media (max-width:1024px){

    .vt-trust-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:767px){

    .vt-trust-grid{
        grid-template-columns:1fr;
    }
}

/* widget 1 raus ergänzungen */
.vt-bottom-trustbar .e-con-inner{
    max-width:1320px !important;
    width:100% !important;
    margin:0 auto !important;
}

.vt-bottom-trustbar{

    max-width:none;

    width:100%;

    padding:0 24px;

    margin:24px 0 60px;
}
.vt-bottom-trustbar .e-con-inner{

    max-width:1320px;

    margin:0 auto;

    background:rgba(10,20,45,.7);

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding: 38px 40px;
     
}

.vt-trust-grid{
    gap:40px;
}

.vt-bottom-trustbar{
    margin-top:40px !important;
}

.vt-bottom-trustbar{
    background: transparent;
    border:0;
    border-radius:24px;
    margin-bottom: 60px !important;
}

.vt-bottom-trustbar-wrapper{
    background:transparent !important;
    border:none !important;
}



/* ==================================================
   CHECKOUT INTRO widgt
================================================== */

.vt-checkout-intro {

    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 28px;
}

.vt-intro h1 {

    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 14px;
    font-weight: 700;
}

.vt-intro p {

    font-size: 18px;
    color: rgba(255,255,255,.72);
    margin: 0;
}

@media (max-width: 767px) {

    .vt-intro h1 {

        font-size: 32px;
    }

    .vt-intro p {

        font-size: 15px;
    }
}

.vt-checkout-intro {

    width: 100% !important;
    max-width: 1320px !important;

    margin: 0 auto !important;
    padding: 0 24px 12px !important;
}

.vt-checkout-intro > .e-con-inner {

    width: 100% !important;
    max-width: 1320px !important;

    padding: 0 !important;
}



/* ==================================================
   CHECKOUT STEPPER
================================================== */

.vt-checkout-header {

    max-width: 1320px;
    margin: 0 auto 28px;
    padding: 0 24px;

    padding-top: 200px;
}

.vt-stepper {

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 26px 32px;

    background: rgba(12,22,48,.84);

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;

    backdrop-filter: blur(18px);
}

.vt-step {

    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255,255,255,.55);
}

.vt-step.active {

    color: #fff;
}

.vt-step span {

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.vt-step.active span {

    background: #1d67ff;
}

.vt-step strong {

    display: block;
    font-size: 14px;
}

.vt-step small {

    font-size: 12px;
    opacity: .7;
}

.vt-step-line {

    flex: 1;
    height: 1px;

    background: rgba(255,255,255,.08);
}

@media (max-width: 767px) {

    .vt-stepper {

        padding: 18px;
        gap: 10px;

        overflow-x: auto;
    }

    .vt-step small {

        display: none;
    }

    .vt-step strong {

        font-size: 12px;
    }

    .vt-step-line {

        min-width: 24px;
    }
}


.vt-checkout-header {

    max-width: 1320px !important;
    margin: 0 auto 28px !important;

    padding: 0 24px 0 !important;
}

/*
.vt-checkout-header {

    max-width: 1320px !important;
    margin: 20px auto 28px;

    padding: 0 24px;
}
*/


.vt-stepper {
    display:flex;
    align-items:center;
    gap:18px;

    padding:26px 32px;

    background:rgba(12,22,48,.84);
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;

    backdrop-filter:blur(18px);
}


.vt-step span{
    width:44px;
    height:44px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#132957;
    border:1px solid rgba(255,255,255,.08);
}

.vt-step.active span{
    background:#1d67ff;
    box-shadow:0 0 18px rgba(29,103,255,.35);
}


/* ==================================================
   PAYMENT PAGE
================================================== */
/*
.vt-pay-grid {

    max-width: 1320px;

    margin: 0 auto;

    padding: 0 24px;

    display: grid;

    grid-template-columns:
        minmax(0,1fr) 420px;

    gap: 36px;
}
*/
.vt-pay-grid {
    display:grid;
    grid-template-columns:
        minmax(0, 1fr)
        560px;
    gap:26px;
    max-width:1320px;
    margin:0 auto;
    padding:0 24px;
}



.vt-pay-order,
.vt-pay-payment {

    background:
        rgba(10,20,45,.88);

    border:
        1px solid rgba(255,255,255,.05);

    border-radius: 28px;

    padding: 34px;

    backdrop-filter:
        blur(18px);
}


.shop_table {

    width: 100%;

    border: 0;

    background: transparent;

    color: #fff;
}

.shop_table th,
.shop_table td {

    border: 0;

    color: #fff;

    padding: 14px 0;
}

.shop_table thead {

    display: none;
}

.shop_table tfoot tr {

    border-top:
        1px solid rgba(255,255,255,.08);
}

.shop_table .product-name {

    font-weight: 600;
}

.shop_table .product-total {

    text-align: right;
}


.vt-pay-order a,
.vt-pay-order a:visited {

    color: #ffffff !important;

    text-decoration: none;
}


.vt-order-card{
    background:rgba(12,22,48,.84);
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:32px;
}

.vt-order-card h2{
    margin:0 0 28px;
    color:#fff;
}

.vt-order-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.vt-order-item-info strong{
    display:block;
    color:#fff;
}

.vt-order-meta{
    margin-top:8px;
    color:rgba(255,255,255,.65);
    font-size:14px;
}

.vt-order-item-price{
    color:#fff;
    font-weight:600;
}

.vt-order-divider{
    height:1px;
    background:rgba(255,255,255,.08);
    margin:24px 0;
}

.vt-order-total-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
}

.vt-order-total-row strong{
    color:#fff;
}

.vt-order-customer{
    margin-top:32px;
}

.vt-order-customer h3{
    margin:0 0 16px;
    color:#fff !important;
    font-size:18px;
}

.vt-customer-data{
    color:rgba(255,255,255,.78);
    line-height:1.9;
    font-size:15px;
}

.vt-pay-payment,
.vt-payment-card,
.vt-order-card{
    background:rgba(11,29,84,.82);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
}


body.woocommerce-order-pay,
body.woocommerce-order-received {
    background:
    radial-gradient(
        circle at top,
        #0b1631,
        #060d1f 70%
    );
}

.vt-pay-order,
.vt-pay-payment {

    background: rgba(16,35,95,.75);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    backdrop-filter: blur(10px);
}

.vt-trust-grid{
    margin-bottom:0px;
    border-radius: 24px;
    border:1px solid rgba(255,255,255,.08);
    background-color: #071633;
}

.wc_payment_method.payment_method_stripe > label img {
   display:none !important; 
}
*/

.entry-title,
.page-title{
 /*   display:none !important; 
opacity: 0;

*/
}

.woocommerce-error,
.woocommerce-notices-wrapper {
    display:none;
}

.vt-agb-error {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 12px;
    background: rgba(220,53,69,.08);
}

.vt-agb-message {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.vt-agb-error{
    border:2px solid #dc3545;
    border-radius:8px;
    padding:12px;
    background:rgba(220,53,69,.08);
}

.woocommerce-form__label .required {
    display:none;
}


.blockUI.blockMsg.blockElement{
    display:none !important;
}

.woocommerce-js .blockUI.blockOverlay::before{
    display:none !important;
}

.blockUI.blockOverlay{
    background:rgba(255,255,255,.15) !important;
}


.woocommerce-js .blockUI.blockOverlay::before{

    width:40px;
    height:40px;

    border:3px solid rgba(255,255,255,.2);
    border-top-color:#0085ff;

    border-radius:50%;

    background:none !important;

    animation:spin .8s linear infinite;
}


.woocommerce-error,
.woocommerce-notices-wrapper {
    display:none;
}

.vt-agb-error{
    border:2px solid #dc3545;
    border-radius:10px;
    padding:12px;
    background:rgba(220,53,69,.08);
}

.vt-agb-message{
    margin-top:10px;
    color:#dc3545;
    font-size:14px;
    font-weight:600;
}

.woocommerce-js .blockUI.blockOverlay::before{
    display:none !important;
}
/*
.vt-agb-error{
    border:2px solid #dc3545;
    border-radius:10px;
    padding:12px;
    background:rgba(220,53,69,.08);
}


*/

.woocommerce-terms-and-conditions-wrapper.vt-agb-error{
    border:1px solid #ff5b5b;
    border-radius:12px;
    background:rgba(255,91,91,.05);
    margin-bottom: 20px;
}

.entry-title {
  opacity: 0;
}

.vt-order-success-header{

    text-align:center;

    margin:40px 0 60px;

}

.vt-order-success-header h1{

    color:#ffffff;

    font-size:36px !important;

    font-weight:700;
    
    text-transform: none ;    

    line-height:1.1;

    margin:0 0 20px;
margin-bottom: 40px;
}

.vt-order-waiting-info,
.vt-order-success-info{

    max-width:900px;

    margin:0 auto;

    padding:20px 30px;

    background:rgba(37,99,235,.15);

    border:1px solid rgba(59,130,246,.4);

    border-radius:12px;

    color:#ffffff;

    font-size:42px;

    font-weight:600;

    line-height:1.5;
}

.vt-order-success-info{
   background: rgba(12,22,48,.84);
   font-size: 28px !important;
   margin-top: 40px !important;
}



.vt-order-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    margin-top:40px;
    margin-bottom: 60px;
}

@media(max-width:768px){

    .vt-order-grid{
        grid-template-columns:1fr;
    }
}


.vt-order-left,
.vt-order-right{

    background:#1f2937;

    background:
        rgba(12,22,48,.84);


    padding:30px;

    border-radius:12px;
}

.vt-order-left {
  align-self: start;
}

.vt-order-right{
  text-align: left;
  line-height: 1.1;
}

.vt-order-left h2,
.vt-order-right h2{

    margin:0 0 20px;

    color:#94a3b8;

    font-size:18px;

    text-transform:uppercase;

    letter-spacing:.05em;
}

.vt-order-item{

    padding:20px 0;

    border-bottom:1px solid rgba(255,255,255,.1);
}

.vt-order-item h3{

    margin:0 0 10px;

    color:#fff;

    font-size:28px;
}

.vt-order-item p{

    color:#94a3b8;

    margin:0 0 8px;
}

.vt-order-item strong{

    color:#fff;

    font-size:20px;
}

.vt-order-right p{

    margin:0 0 12px;
    margin-bottom: 0 !important; 
   color:#fff;
    text-align: left;
    line-height: 1.5;
}

.vt-order-grid{

    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        400px;

    gap:40px;

    align-items:start;
}


@keyframes vt-pulse {

    0%,100%{
        box-shadow:0 0 0 rgba(70,130,255,0);
    }

    50%{
        box-shadow:
            0 0 25px rgba(70,130,255,.35);
    }
}


.vt-order-waiting-info
/*.vt-order-success-info*/
{

    animation:vt-pulse 5s ease-in-out infinite;
/*    animation:
        vtSpin 0.7s linear infinite;
*/
}

.vt-order-waiting-info{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;

    font-size:52px;
    font-weight:700;

    color:#fff;

    padding:24px 30px;

    border:1px solid rgba(70,130,255,.35);
    border-radius:14px;

    background:#10265d;

}

.vt-order-waiting-info::before{
/*
    content:"";

    width:62px;
    height:62px;

    border-radius:50%;

    border:6px solid rgba(255,255,255,.12);

    border-top-color:#4ea4ff;

    animation:vtSpin 8s linear infinite;
*/
}

@keyframes vtSpin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes vtPulse{

    0%,100%{

        box-shadow:
            0 0 0 rgba(78,164,255,0);

    }

    50%{

        box-shadow:
            0 0 30px rgba(78,164,255,.35);

    }

}

.vt-order-waiting-info{

    animation:
        vtPulse 5s ease-in-out infinite;

}


.vt-order-waiting-info{

    font-size:42px;
    font-weight:700;

    text-align:center;
    margin-bottom: 15px !important;
 /*   margin:0; */
}

.vt-order-spinner{

    width:52px;
    height:52px;

    margin:18px auto 18px;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.12);
    border-top-color:#4ea4ff;

/*    animation:vtSpin 12s linear infinite;
*/
    animation: vtSpin 2s linear infinite;
}

.vt-checkout-stepper{
    margin-top:40px;
    margin-bottom:60px;
}

/*
#checkout .vt-checkout-header 
#checkout{
    max-width: 1320px !important;
    margin: 0 auto 28px !important;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 28px;
    margin-left: auto;
    padding: 0 2px 0 !important;
*/
/*    padding-top: 0px;
    padding-right: 2px;
    padding-bottom: 0px;
    padding-left: 2px;
 
    margin-top: 31px !important;
}
*/


.vt-checkout-header {
    max-width: 1200px !important;
    /*width: 1320px !important;*/
    
    margin: 0 auto 28px !important;
}

.order-received-customer-head {
  /*margin-top: 15px; */
  padding-top: 20px;
}


/*
.vt-order-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.vt-order-product h3{
    margin:0;
}

.vt-order-meta{
    margin:4px 0 0;
    font-size:14px;
    color:#94a3b8;
}

.vt-order-row strong{
    white-space:nowrap;
    font-size:20px;
}
*/


.vt-order-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.vt-order-product h3{
    margin:0;
}

.vt-order-meta{
    margin:4px 0 0;
    font-size:14px;
    color:#94a3b8;
}

.vt-order-row strong{
    white-space:nowrap;
    font-size:34px;
}


.vt-order-row strong{
    padding-top:4px;
}


.vt-order-total{
    margin-top:30px;
    padding-top:20px;
/*    border-top:2px solid rgba(255,255,255,.15); */
border-top:3px double rgba(255,255,255,.15);
}


.vt-order-item h3{
    text-transform:none;
    font-size:42px;
    font-weight:700;
}

.vt-order-product:last-child,
.vt-order-item:last-child{
    border-bottom:none !important;
}

/*
.vt-order-item {
    border-bottom:none !important;
}
*/


.vt-order-item::last-of-type{
    border-bottom:none !important; 
}


.vt-order-total{
    margin-top:20px;
    padding-top:16px;
    border-top:2px solid rgba(255,255,255,.15);
}


.vt-order-total strong{
    font-size:42px;
    font-weight:700;
}

.vt-order-total{
    border-bottom:none !important;
}

.vt-order-left > .vt-order-item:nth-last-child(2){
    border-bottom:none !important;
    padding-bottom: 0;
}

.vt-order-waiting-info,
.vt-order-success-info{
    transition:all .5s ease;
}

.vt-status-pending .vt-order-waiting-info{

    background:#18306f;
    border:1px solid #2855d9;

    box-shadow:
        0 0 25px rgba(37,99,235,.35);

}

.vt-status-processing .vt-order-waiting-info{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:none;

    filter:none;

}

.vt-status-processing .vt-order-success-info{

    background:#18306f;

    border:1px solid #2855d9;

    box-shadow:
        0 0 25px rgba(37,99,235,.35);

}

.vt-status-completed .vt-order-success-info{

    background:#18306f;

    border:1px solid #2855d9;

    box-shadow:
        0 0 25px rgba(37,99,235,.35);

}

.vt-status-processing .vt-order-waiting-info{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);

    box-shadow:none;

    filter:none;

    opacity:.75;
}


.vt-status-processing .vt-order-success-info{

    background:#23408f;

    border:1px solid #4d7dff;

    box-shadow:
        0 0 35px rgba(37,99,235,.45);

    font-weight:700;
}


.vt-status-completed .vt-order-waiting-info{

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    box-shadow:none;
    opacity:.75;
}

.vt-status-completed .vt-order-success-info{

    background:#1f7a3fad;
    border:1px solid #33b566;

    box-shadow:
        0 0 25px rgba(51,181,102,.35);
}


/*
.vt-order-wrapper{
    background:
        radial-gradient(
            circle at top center,
            rgba(59,130,246,.08),
            transparent 45%
        );
}


.vt-order-wrapper{
    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.85)
        ),
        url('/wp-content/uploads/2026/03/VisionThinks_Aachen_a-wall-that-has-a-bunch-of-lights-on-it-ki-1.jpeg');

    background-size:cover;
    background-position:center;
}
.vt-checkout-bg{
    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.85)
        ),
        url('/wp-content/uploads/2026/03/VisionThinks_Aachen_a-wall-that-has-a-bunch-of-lights-on-it-ki-1.jpeg');

    background-size:cover;
    background-position:center;
}


.vt-checkout-bg{
    background:
        radial-gradient(
            circle at top center,
            rgba(59,130,246,.08),
            transparent 45%
        );
}
*/

/*
.vt-checkout-bg{
    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.85)
        ),
        url('/wp-content/uploads/2026/03/VisionThinks_Aachen_a-wall-that-has-a-bunch-of-lights-on-it-ki-1.jpeg');

    background-size:cover;
    background-position:center;
}
*/

.vt-checkout-bg{
    position:relative;
}

.vt-checkout-bg::before{
    content:'';
    position:absolute;
    inset:0;

    background:
        url('/wp-content/uploads/2026/03/VisionThinks_Aachen_a-wall-that-has-a-bunch-of-lights-on-it-ki-1.jpeg')
        center/cover;

    opacity:.12;

    pointer-events:none;
}


.vt-checkout-bg{ 
    top: -40px;
    margin-top: 0; 
    padding-top: 0;
    background:
        linear-gradient(
            rgba(0,8,30,.88),
            rgba(0,8,30,.92)
        ),
        url('/wp-content/uploads/2026/03/VisionThinks_Aachen_a-wall-that-has-a-bunch-of-lights-on-it-ki-1.jpeg');

    background-size:cover;
    background-position:center;
}

#page{
    background:
        linear-gradient(
            rgba(0,8,30,.88),
            rgba(0,8,30,.92)
        ),
        url('/wp-content/uploads/2026/03/VisionThinks_Aachen_a-wall-that-has-a-bunch-of-lights-on-it-ki-1.jpeg');

    background-size:cover;
    background-position:center top;
}

/*
.vt-order-success-header .vt-status-failed h1{
 display: none !important;

}


.vt-order-success-info .vt-status-failed{
 background:#8f2f2f;
 border:1px solid #c34b4b;
}

*/

.vt-status-failed .vt-order-success-info{
/*    background:#7f2f2f;
*/
    border:1px solid #b84b4b;

    color:#fff;

    box-shadow:
        0 0 25px rgba(184,75,75,.35);
}

.vt-status-failed .vt-order-waiting-info{
    background:rgba(10,15,30,.85); 

    border:1px solid rgba(184,75,75,.25);

    color:#fff;

    box-shadow:none;
}
