/**
 * checkout.css — Styles for the checkout flow.
 *
 * Covers: cart review (step 1), address entry form, product item rows,
 * totals display, promo code, review screen, payment container, and confirmation.
 *
 * Screen order: cart-screen → address-screen → review-screen
 */

 /* ─── Persistent Top Bar  ──────────────────── */

.checkout-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    max-width: 960px;
    margin: 0 auto;
}

.checkout-topbar .ch-logo {
    font-family: "trajan-pro-3", serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #452508;
    text-decoration: none;
    text-transform: uppercase;
}

.checkout-topbar .ch-logo:hover {
    color: #b45313;
}

.checkout-topbar .ch-secure-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #888;
}

.checkout-topbar .ch-secure-badge svg {
    opacity: 0.5;
}

/* ─── Distraction-Free Checkout Header ─────────────────── */

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #fff;
}

.checkout-header .ch-back {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #AE902C;
    text-decoration: underline;
    cursor: pointer;
    min-width: 0;
    flex: 1;
    text-align: left;
}

.checkout-header .ch-back:hover {
    color: #967b24;
}

.checkout-header .ch-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    flex: 1;
    text-align: center;
}

.checkout-header .ch-cart-count {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #564c3e;
    flex: 1;
    text-align: right;
}


 
/* ─── Checkout Container / Screen Switching ─────────────── */

.cart-checkout .checkout {
    font-size: 12px;
}

/* Cart screen (step 1) */
#checkout-container.screen-cart .cart-screen     { display: block; }
#checkout-container.screen-cart .address-screen  { display: none;  }
#checkout-container.screen-cart .review-screen   { display: none;  }

/* Address screen (step 2) */
#checkout-container.screen-address .cart-screen    { display: none;  }
#checkout-container.screen-address .address-screen { display: block; }
#checkout-container.screen-address .review-screen  { display: none;  }

/* Review screen (step 3) */
#checkout-container.screen-review .cart-screen    { display: none;  }
#checkout-container.screen-review .address-screen { display: none;  }
#checkout-container.screen-review .review-screen  { display: block; }

/* ─── Cart Review Screen (Step 1) ───────────────────────── */

.cart-screen {
    padding-top: 10px;
}

.cart-review-list {
    margin-bottom: 0;
}

.cart-review-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-review-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Product thumbnail */
.cart-review-img-wrap {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: #f5f3ee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-review-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
    line-height: 1;
}

/* Product details column */
.cart-review-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cart-review-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
    line-height: 1.35;
    text-align: left;
}

.cart-review-variant {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.cart-review-unit-price {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    text-align: right;
}

/* Bottom row: qty | line total | remove */
.cart-review-bottom-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-review-qty-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #564c3e;
}

.cart-review-qty-wrap input.pqty {
    width: 42px;
    height: 26px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 2px 4px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.cart-review-price {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #564c3e;
    white-space: nowrap;
    margin-left: auto; /* push price to right of qty */
}

.cart-review-remove {
    font-size: 11px;
    color: #aaa;
    cursor: pointer;
    text-decoration: underline;
    white-space: nowrap;
}

.cart-review-remove:hover {
    color: #cc0000;
}

/* Cart review totals summary */
.cart-review-summary {
    padding: 14px 0 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 2px solid rgba(0, 0, 0, 0.15);
    margin-top: 2px;
}

.cart-review-subtotal-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #564c3e;
}

.cart-review-subtotal-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.cart-review-subtotal-amount {
    font-size: 20px;
    font-weight: bold;
}

/* ─── Purchase Layout ───────────────────────────────────── */

.purchase-cart-container {
    position: relative;
}

.purchase-cart-container.step1 {
    display: block;
}

.purchase {
    position: relative;
    display: block;
}

.purchase-divider {
    height: 1px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.purchase-divider.above-items {
    margin-bottom: 5px;
}

.purchase-divider.above-product-review {
    margin-top: 10px;
}

/* ─── Address Section ───────────────────────────────────── */

.purchase-address-container.step2 {
    position: relative;
    display: flex;
    padding-top: 10px;
    padding-bottom: 25px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.cart-address-col {
    position: relative;
    flex: 1;
    min-width: 180px;
    color: #564c3e;
    font-size: 12px;
    line-height: normal;
}

.address-item-block {
    display: inline-block;
    padding-right: 15px;
}

.address-block-container {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.address-block-container ul {
    padding: 0;
    margin: 0;
}

/* ─── Address Headings ──────────────────────────────────── */

.cart-address-heading-flexbox {
    position: relative;
    display: flex;
    height: 20px;
    justify-content: space-between;
    align-items: flex-end;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cart-address-heading-flexbox.mdheight {
    height: 40px;
}

.cart-address-heading-flexbox.innerbox {
    margin-top: 8px;
}

.cart-address-heading-flexbox .heading-label {
    position: relative;
    color: #000;
}

.cart-address-heading-flexbox .shipoptions-container {
    margin-bottom: 2px;
}

/* ─── Address Fields ────────────────────────────────────── */

.address-fields-block {
    position: relative;
}

.address-fields-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.address-fields-item,
.list-item {
    height: 35px;
    margin-bottom: 5px;
    position: relative;
}

.address-fields-item.nopad {
    padding-left: 0;
}

.address-fields-item.textfield {
    height: 80px;
}

.address-fields-item.short {
    width: 50%;
    margin-right: 5px;
}

.address-fields-item.short:not(.nopad) {
    padding-left: 4px;
}

.address-fields-item.short.last-child {
    margin-right: 0;
}

.address-fields-item input,
.address-fields-item textarea,
.address-fields-item select {
    color: #564c3e;
}

.address-fields-item input:not(.hintFontSize) {
    font-size: 14px;
}

.address-fields-item input,
.address-fields-item select {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 4px 8px;
    border: 1px solid #ccc;
    font-family: Arial, Helvetica, sans-serif;
}

.address-fields-item textarea {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 6px 8px;
    border: 1px solid #ccc;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    resize: vertical;
}

.address-fields-item.review {
    padding-left: 0;
    background-image: none;
    font-size: 14px;
    text-transform: none;
    margin-bottom: 0;
    height: auto;
}

.address-field-item-flexbox {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ─── Pickup / Shipping Labels ──────────────────────────── */

.use-pick-up-label {
    padding-bottom: 5px;
}

.use-shipping-label,
.use-pick-up-label {
    font-size: 9px;
    text-transform: none;
    white-space: nowrap;
    text-align: right;
}

.use-shipping-label label,
.use-pick-up-label label {
    display: inline-block;
    margin: 0;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
}

.use-shipping-label.isshipping label,
.use-pick-up-label.isshipping label {
    color: #AE902C;
    text-decoration: underline;
}

#customer_pickup {
    margin-right: 4px;
    vertical-align: middle;
}

/* ─── Pickup Column Slide-Out ───────────────────────────── */

.pickup-address-col {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 0px;
    max-width: 0;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: -30px;
    transition: flex-basis 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                min-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                margin-left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease 0.1s;
    color: #564c3e;
    font-size: 12px;
    line-height: normal;
}

.pickup-address-col.pickup-visible {
    flex-basis: 260px;
    max-width: 260px;
    min-width: 180px;
    opacity: 1;
    overflow: visible;
    margin-left: 0;
}

.pickup-address-col input:disabled,
.pickup-address-col select:disabled {
    background-color: #f5f3ee;
    color: #8a7e6e;
    border-color: #ddd;
    cursor: default;
}

.cart-address-col input:disabled,
.cart-address-col select:disabled,
.cart-address-col textarea:disabled {
    background-color: #f5f3ee;
    color: #8a7e6e;
    border-color: #ddd;
    cursor: default;
}

.pickup-address-col .cart-address-heading-flexbox {
    position: relative;
    display: flex;
    height: 20px;
    justify-content: space-between;
    align-items: flex-end;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin-bottom: 3px;
    white-space: nowrap;
}

.pickup-address-col .heading-label {
    position: relative;
    color: #000;
}

.pickup-address-col .address-fields-block {
    position: relative;
}

.pickup-address-col .address-fields-list {
    margin-bottom: 0;
    padding-left: 0;
}

/* ─── Product Item Rows (address/review screens) ────────── */

.product-list {
    position: relative;
    display: block;
    min-height: 160px;
    font-size: 12px;
}

.product-item-row-container {
    position: relative;
}

.product-item-row-flexbox {
    position: relative;
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #564c3e;
}

.product-item-row-flexbox.fullwidth {
    width: 100%;
}

.product-item-row-flexbox.labelrow {
    padding-top: 0;
    padding-bottom: 0;
    text-transform: uppercase;
}

.product-label-col-1 {
    width: 150px;
    text-align: left;
}

.product-label-col-1.itemtext {
    line-height: 1.4;
    text-transform: none;
}

.product-label-col-2 {
    width: 30px;
    text-align: center;
}

.product-label-col-3 {
    width: 60px;
    text-align: right;
}

.product-label-col-nil {
    width: 55px;
    color: #888;
    text-align: center;
    cursor: pointer;
    font-size: 11px;
}

.product-label-col-nil:hover {
    color: #cc0000;
    text-decoration: underline;
}

.purchase-items-block {
    width: 300px;
    flex: 0 0 300px;
}

.product-item-row-flexbox input.pqty {
    width: 30px;
    height: 22px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 2px;
}

/* ─── Totals Section ────────────────────────────────────── */

.purchase-totals-section {
    padding-top: 10px;
}

.totals-container {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.totals-flexbox {
    display: flex;
    justify-content: flex-end;
    color: #564c3e;
    padding-bottom: 5px;
}

.totals-item-label {
    margin-right: 20px;
}

.purchase-total-values {
    width: 70px;
    text-align: right;
}

/* ─── Promo Code ────────────────────────────────────────── */

.promo-code-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.promo-code-block input {
    width: 120px;
    height: 28px;
    font-size: 12px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    text-transform: uppercase;
}

.promo-apply-btn,
.promo-remove-btn {
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    color: #AE902C;
    text-decoration: underline;
}

.promo-apply-btn:hover,
.promo-remove-btn:hover {
    color: #967b24;
}

#promo-discount-row.hidden {
    display: none;
}

#promo-discount-row .totals-item-label {
    color: #4CAF50;
}

.promo-applied-badge {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
}

.promo-applied-badge.visible {
    display: flex;
}

.promo-applied-code {
    font-weight: bold;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.promo-applied-check {
    color: #4CAF50;
    font-size: 13px;
}

/* ─── Purchase Controls / Buttons ───────────────────────── */

.purchase-controls {
    padding-top: 15px;
    padding-bottom: 15px;
}

.purchase-controls.above-items {
    padding-bottom: 10px;
}

.purchase-controls.address {
    padding-top: 10px;
}

.checkout-link,
a.checkout-link {
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    color: #fff;
    background-color: #AE902C;
    text-decoration: none;
    border: none;
    transition: background-color 0.2s;
}

.checkout-link:hover,
a.checkout-link:hover {
    background-color: #967b24;
    color: #fff;
}

.checkout-link.mobile {
    display: none;
}

.checkout-link.main {
    display: inline-block;
}

.checkoutBuynowAddress,
.checkoutSubmitCartOrder,
.checkoutContinueToShipping {
    cursor: pointer;
}

.checkoutSubmitCartOrder.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.checkoutreturn,
.reviewreturn,
.backtocart {
    cursor: pointer;
    font-size: 12px;
    color: #AE902C;
    text-decoration: underline;
    margin-right: 15px;
}

.checkoutreturn:hover,
.reviewreturn:hover,
.backtocart:hover {
    color: #967b24;
}

/* ─── Checkout Navigation ───────────────────────────────── */

.checkout-nav-left {
    display: inline-block;
}

.checkout-nav-right {
    display: inline-block;
    float: right;
}

/* ─── Review Screen ─────────────────────────────────────── */

.review-screen .purchase-address-container.step2 {
    align-items: flex-start;
}

.review-date {
    font-size: 13px;
    color: #564c3e;
    margin-bottom: 10px;
    text-align: left;
}

.review-shipping-method {
    font-size: 13px;
    font-weight: bold;
    color: #564c3e;
    margin-bottom: 15px;
    text-align: left;
}

.review-shipping-address {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.review-shipping-address .address-fields-item.review {
    font-size: 14px;
    line-height: 1.5;
    height: auto;
    margin-bottom: 0;
    text-align: left;
}

.review-pickup-col {
    display: none;
    text-align: left;
}

.review-pickup-col.visible {
    display: block;
}

.review-pickup-address {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.review-pickup-address .address-fields-item.review {
    font-size: 14px;
    line-height: 1.5;
    height: auto;
    margin-bottom: 0;
    text-align: left;
}

/* ─── Square Payment Container ──────────────────────────── */

#square-card-container {
    min-height: 90px;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fafafa;
}

/* ─── Confirmation / Messages ───────────────────────────── */

#confirmation-message {
    padding: 20px 0;
}

.order-success-message {
    text-align: center;
    padding: 30px 20px;
}

.order-success-message h3 {
    font-size: 18px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.order-success-message p {
    font-size: 14px;
    color: #564c3e;
    line-height: 1.5;
}

.order-pending-message {
    text-align: center;
    padding: 20px;
    background-color: #FFF8E1;
    border: 1px solid #AE902C;
    border-radius: 4px;
}

.order-pending-message .square-pending {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Empty cart */
#emptycart-feedback {
    display: none;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.empty-cart-message {
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* Validation */
.validation-message {
    color: #cc0000;
    font-size: 12px;
    margin-bottom: 10px;
    min-height: 16px;
}

/* ─── Section Heading ───────────────────────────────────── */

.h6-checkout {
    font-size: 11px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.section {
    margin-top: 20px;
}

/* ─── Empty Cart Page ────────────────────────────────────── */

.empty-cart-page {
    text-align: center;
    padding: 60px 20px 80px;
}

.empty-cart-icon {
    margin-bottom: 20px;
}

.empty-cart-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px;
}

.empty-cart-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0 0 5px;
    line-height: 1.6;
}

/* ─── Responsive ────────────────────────────────────────── */

@media screen and (max-width: 767px) {
    .purchase-address-container.step2 {
        flex-direction: column;
        gap: 20px;
    }

    .cart-address-col {
        width: 100%;
        min-width: 0;
        flex: none;
        margin-bottom: 0;
    }

    .address-block-container {
        flex-direction: column;
    }

    .address-fields-item.short {
        width: 100%;
        margin-right: 0;
    }

    .purchase-items-block {
        width: 100%;
        flex: none;
    }

    .checkout-link.mobile {
        display: inline-block;
    }

    .checkout-link.main {
        display: none;
    }

    .product-label-col-1 {
        width: 120px;
    }

    .pickup-address-col {
        margin-left: 0;
    }
    .pickup-address-col.pickup-visible {
        max-width: none;
        flex-basis: auto;
        flex: none;
        width: 100%;
        margin-left: 0;
    }

    /* Cart review screen on mobile */
    .cart-review-row {
        gap: 12px;
    }

    .cart-review-img-wrap {
        width: 65px;
        height: 65px;
    }

    .cart-review-bottom-row {
        gap: 8px;
    }

    .cart-review-price {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .totals-container {
        font-size: 16px;
    }

    .product-label-col-nil {
        width: 45px;
        font-size: 10px;
    }

    .product-label-col-1 {
        width: 100px;
        font-size: 11px;
    }

    .checkout-link,
    a.checkout-link {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .cart-review-img-wrap {
        width: 56px;
        height: 56px;
    }

    .cart-review-title {
        font-size: 12px;
    }
}


/* ═══════════════════════════════════════════════════════════
   SQUARE PAYMENT LIGHTBOX
   Ported from the registration system (em_f_functions.js).
   ═══════════════════════════════════════════════════════════ */

.stop-scroll {
    height: 100%;
    overflow: hidden;
}

.lightbox-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1005;
    animation: lightbox 0.5s both;
}
.lightbox-hide {
    animation: lightboxhide 0.5s both;
}
.lightbox-content {
    position: unset;
}

.lightbox-content .lightboxBusyContainer {
    position: absolute;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    text-align: center;
    border: 1px solid rgb(174, 144, 44);
    width: 500px;
    height: 250px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox-content .lightboxBusyContainer::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 980px;
    height: 656px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(transparent, rgba(174, 144, 44, 1), transparent 30%);
    animation: rotate 4s linear infinite;
}
.lightbox-content .lightboxBusyContainer::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: #fff;
    border-radius: 5px;
}

@keyframes rotate {
    100% { transform: rotate(1turn); }
}
@keyframes lightbox {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes lightboxhide {
    0%   { opacity: 1; }
    100% { opacity: 0; }
    from { transform: scale(1); }
    to   { transform: scale(0); }
}

@media screen and (max-width: 640px) {
    .lightbox-content .lightboxBusyContainer {
        width: 300px;
    }
    .lightbox-content .lightboxBusyContainer::before {
        width: 600px;
        height: 455px;
    }
}

@media screen and (max-width: 340px) {
    .lightbox-content .lightboxBusyContainer {
        width: 150px;
        height: 200px;
        font-size: 14px;
    }
    .lightbox-content .lightboxBusyContainer::before {
        width: 330px;
        height: 365px;
    }
}
