/* Booking Form Styles */
.altajets-booking-form-container {
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
}

.altajets-trip-type-tabs {
    display: flex;
    overflow: hidden;
    width: 350px;
    border-radius: 0;
    margin-bottom: 0;
}

.trip-type-tab {
    flex: 1;
    padding: 15px 30px;
    text-align: center;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: #102A56;
    transition: all 0.3s ease;
    box-shadow: none;
    outline: none;
    margin-right: 0;
    position: relative;
}

.trip-type-tab.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
    z-index: 1;
}

.trip-type-tab:first-child {
    border-radius: 8px 0 0 0;
}

.trip-type-tab:last-child {
    border-radius: 0 8px 0 0;
}

.altajets-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.altajets-form-group {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input-wrapper::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.date-group, .return-date-group {
    flex: 0.8;
}

.passengers-group {
    flex: 0.6;
}

.search-btn-group {
    flex: 0.8;
}

.altajets-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #102A56;
    font-size: 14px;
    font-family: "Source Sans 3", Sans-serif;
}

.altajets-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #102A56!important;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    height: 40px;
    font-family: "Source Sans 3", Sans-serif;
    color: #333;
    background-color: #fff;
    box-shadow: none;
    outline: none;
}

.passenger-selector {
    display: flex;
    align-items: center;
    border: 1px solid #102A56;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
    background-color: #fff;
    justify-content: space-between;
}

.passenger-btn {
    background-color: #f5f5f5;
    border: none;
    color: #102A56;
    font-size: 18px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.passenger-btn:hover {
    background-color: #e0e0e0;
}

#passengers {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    padding: 0;
    margin: 0;
    height: 40px;
    background: transparent;
    font-family: "Source Sans 3", Sans-serif;
    color: #333;
    appearance: textfield;
    -moz-appearance: textfield;
}

#passengers::-webkit-outer-spin-button,
#passengers::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.altajets-search-btn {
    width: 100%;
    padding: 0;
    height: 40px;
    line-height: 40px;
    background-color: #102A56;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Source Sans 3", Sans-serif;
    text-align: center;
}

.altajets-search-btn:hover {
    background-color: #0c1f3d;
}

.airport-suggestions {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 10;
    display: none;
    font-family: 'Source Sans 3';
}

.airport-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
}

.airport-suggestion-item:hover {
    background-color: #f5f5f5;
}

input[type="date"].altajets-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 10px;
}

input[type="date"].altajets-input::-webkit-calendar-picker-indicator {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .altajets-form-group {
        flex: 100%;
    }
    
    .altajets-form-row {
        flex-direction: row;
    }
}


.altajets-form-row {
    width: 100%;
    background-color: #F7F7F7;
}/**
 * AltaJets Custom Checkout Styles
 */

.altajets-checkout-wrapper {
    max-width: 1450px;
    margin: 0 auto;
    padding-top: 20px;
    font-family: 'Source Sans 3', sans-serif;
    color: #333;
}

.checkout-title {
    text-align: center;
    color: #1a3a5f;
    font-size: 32px;
    margin-bottom: 30px;
}

.form-row.place-order {
    display: none;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress step styling */
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Connecting lines between steps */
.progress-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 5px;
    position: relative;
    top: -15px;
}

/* Completed line styling */
.progress-line.completed-line {
    background-color: #1a3a5f;
}

/* Step number styling */
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
}

/* Active step styling with 3D-like border */
.progress-step.active .step-number {
    background-color: #4a90e2;
    color: #fff;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
    border: 2px solid #fff;
}

/* Completed step styling */
.progress-step.completed .step-number {
    background-color: #1a3a5f;
    color: #fff;
}

.step-label {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 5px;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: #1a3a5f;
    font-weight: bold;
}

/* Two-Column Layout */
.checkout-columns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.checkout-column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.left-column {
    flex: 1;
    min-width: 60%;
}

.right-column {
    width: 35%;
}

/* Checkout Sections */
.checkout-section {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.checkout-section h3, .checkout-section h4, .checkout-section h5 {
    margin-top: 0;
}

.section-title {
    color: #1a3a5f;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-bottom: 10px;
    margin-top: 0;
}

.checkout-section .section-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4a90e2;
}

/* Itinerary Section */
.itinerary-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

.aircraft-info {
    margin-top: 15px;
}

.aircraft-type {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding-bottom: 15px;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.departure, .arrival {
    text-align: center;
    flex: 1;
}

.airport-code {
    font-size: 24px;
    font-weight: bold;
    color: #1a3a5f;
}

.airport-name {
    font-size: 14px;
    color: #666;
}

.flight-date {
    font-size: 14px;
    color: #666;
}

.flight-direction {
    flex: 0 0 80px;
    text-align: center;
}

.flight-direction img {
    width: 40px;
    height: auto;
}

/* Traveler Details Section */
.traveler-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

.traveler-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.traveler-title {
    font-size: 16px;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 15px;
}

.form-group {
    flex: 1;
    padding: 0 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

/* Input and Select Styling */
.form-group input,
.form-group select,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout textarea,
.time-input,
.traveler-form input,
.traveler-form select,
.woocommerce-billing-fields__field-wrapper input {
    padding: 12px 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    color: #333 !important;
    background-color: #fff !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease-in-out !important;
    height: auto !important;
    line-height: 1.5 !important;
    min-height: 45px !important;
    max-height: none !important;
    width: 100% !important;
}

/* Focus state */
.form-group input:focus,
.form-group select:focus,
.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout input[type="password"]:focus,
.woocommerce-checkout input[type="number"]:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.time-input:focus,
.traveler-form input:focus,
.traveler-form select:focus,
.woocommerce-billing-fields__field-wrapper input:focus,
.woocommerce-billing-fields__field-wrapper select:focus {
    outline: none !important;
    border-color: #4a90e2 !important;
    box-shadow: 0 0 0 1px rgba(74, 144, 226, 0.2) !important;
}

/* Select styling */
select,
.woocommerce-page form .form-row select,
.woocommerce form .form-row select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 16px !important;
    padding-right: 30px !important;
}

/* Label styling */
.form-group label,
.woocommerce-checkout label,
.traveler-form label,
.woocommerce form .form-row label {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 500 !important;
}

/* Required field indicator */
.woocommerce form .form-row .required {
    color: #e2574c;
    font-weight: normal;
    border: 0;
}

/* Date of birth selects */
.dob-selects select {
    padding-right: 30px;
}

.date-of-birth label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.dob-selects {
    display: flex;
    gap: 10px;
}

.dob-selects .form-group {
    flex: 1;
}

/* Custom styling for date selectors */
.dob-selects select {
    height: 45px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    padding: 0 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.dob-selects select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 1px rgba(74, 144, 226, 0.2);
}

/* Departure Time Section */
.optional-label {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.departure-time-info {
    margin-bottom: 15px;
    color: #666;
}

.time-selector {
    max-width: 100%;
}

.time-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Payment Section */
.payment-method-wrapper {
    margin-top: 20px;
}

/* Order Summary Section (Right Column) */
.order-summary-section {
    position: sticky;
    top: 20px;
}

.aircraft-title {
    color: #1a3a5f;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.more-details-link {
    margin-bottom: 20px;
}

.details-link {
    color: #4a90e2;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.price-summary {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-summary-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.deposit-fee {
    font-weight: bold;
    color: #1a3a5f;
    font-size: 16px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

/* Booking Process Info */
.process-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.process-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20%;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.step-icon img {
    width: 20px;
    height: 20px;
}

.step-check {
    color: #4a90e2;
    font-weight: bold;
    font-size: 18px;
}

.booking-step.active .step-icon {
    background-color: #4a90e2;
}

.booking-step.active .step-icon img,
.booking-step.active .step-check {
    color: #fff;
}

.step-text {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.booking-step.active .step-text {
    color: #1a3a5f;
    font-weight: 600;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 5px;
}

/* Terms Agreement */
.terms-agreement {
    margin: 20px 0;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.terms-checkbox input {
    margin-right: 10px;
    margin-top: 3px;
}

.terms-link {
    color: #4a90e2;
    text-decoration: none;
}

/* Checkout Actions */
.checkout-actions {
    margin-top: 30px;
}

.not-ready-message {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inquire-now-btn {
    display: inline-block;
    background-color: #4a90e2;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
}

.inquire-now-btn:hover {
    background-color: #3a80d2;
    color: #fff;
}

.place-order-wrapper {
    margin-top: 20px;
}

#place_order {
    background-color: #102A56 !important;
    color: #fff !important;
    font-weight: bold !important;
    padding: 15px 30px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    font-size: 16px !important;
}

#place_order:hover {
    background-color: #3a80d2 !important;
}

/* WooCommerce Payment Methods Customization */
#payment {
    background-color: #fff !important;
    border-radius: 6px !important;
    border: 1px solid #e0e0e0 !important;
}

#payment .payment_methods {
    padding: 20px !important;
}

#payment .payment_methods li {
    margin-bottom: 15px !important;
}

#payment .payment_box {
    background-color: #f9f9f9 !important;
    border-radius: 4px !important;
}

#payment .payment_box:before {
    border-bottom-color: #f9f9f9 !important;
}

/* Hide some default WooCommerce elements we don't need */
.woocommerce-additional-fields,
.woocommerce-shipping-fields {
    display: none;
}

/* WooCommerce Billing Fields Customization */
#customer_details {
    margin-bottom: 30px !important;
    background-color: #f9f9f9 !important;
    padding: 20px !important;
    border-radius: 6px !important;
}

.woocommerce-billing-fields {
    margin-bottom: 20px !important;
}

.woocommerce-billing-fields h3 {
    color: #1a3a5f !important;
    font-size: 16px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.woocommerce-billing-fields__field-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -10px !important;
}

.woocommerce-billing-fields__field-wrapper p {
    padding: 0 10px !important;
    margin-bottom: 15px !important;
    width: 50% !important;
}

.woocommerce-billing-fields__field-wrapper p.form-row-wide {
    width: 100% !important;
}

/* Direct targeting of WooCommerce form fields */
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.input-text,
.woocommerce-input-wrapper input {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    color: #333 !important;
    background-color: #fff !important;
    box-shadow: none !important;
    min-height: 45px !important;
    line-height: 1.5 !important;
    font-family: 'Source Sans 3', sans-serif !important;
}

/* Select2 Overrides */
.select2-container--default .select2-selection--single {
    height: 45px !important;
    padding: 0px 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    background-color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
    line-height: 28px !important;
    font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #333 transparent transparent transparent !important;
}

.select2-dropdown {
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
}

.select2-container--open .select2-dropdown--below {
    border-top: none !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.select2-search--dropdown .select2-search__field {
    padding: 8px !important;
    border: 1px solid #e0e0e0 !important;
}

.select2-results__option {
    padding: 8px 15px !important;
    font-size: 14px !important;
}

/* Billing details title */
.checkout-section h2.section-title + #customer_details {
    margin-top: 20px;
}

/* Billing labels */
.woocommerce-billing-fields label,
.woocommerce-billing-fields__field-wrapper label,
.required_field {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 500 !important;
}

/* Fix for woocommerce input wrapper */
.woocommerce-input-wrapper {
    width: 100% !important;
    display: block !important;
}

/* Phone field */
.woocommerce-checkout input[type="tel"] {
    height: 45px;
}

.woocommerce-form-coupon-toggle {
    display: none;
}

.checkout-title {
    margin-top: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
    .checkout-columns {
        flex-direction: column;
    }
    
    .left-column,
    .right-column {
        width: 100%;
    }
    
    .order-summary-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    .flight-direction {
        margin: 20px 0;
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 18px;
    }
    
    .checkout-progress:before {
        left: 20%;
        right: 20%;
    }
    
    .booking-steps {
        flex-wrap: wrap;
    }
    
    .booking-step {
        width: 45%;
        margin-bottom: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .woocommerce-billing-fields__field-wrapper p {
        width: 100%;
    }

    .checkout-section {
        padding: 20px;
    }

    #customer_details {
        padding: 10px !important;
    }

    .traveler-block {
        padding: 10px;
    }
    
    .form-group {
        padding: 0 0px;
    }
}

fieldset#wc-square-credit-card-credit-card-form {
    border: none;
}

.form-row.date-of-birth {
    display: block;
}


.route-type {
    display: flex;
    align-items: center;
    gap: 30px;
}

.route-line {
    width: 80px;
    height: 1px;
    background-color: #102A56;
}

.route-title {
    font-size: 8px;
    font-weight: 600;
    color: #102A56;
}

.one-way-label {
    font-size: 12px;
    font-weight: 600;
    color: #102A56;
    padding: 3px 8px;
    background-color: #f0f4f9;
    border-radius: 3px;
}

.tc-icon {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.route-distance {
    font-size: 9px;
    font-weight: 600;
    color: #102A56;
    text-align: center;
}

.tc-icon img {
    width: 20px;
}/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* AJ-HERO-SEENIN : "As seen in" + Modern Luxury Riviera + Private Jet Card Comparisons on one row */
.elementor-element-9c62ecd > .e-con-inner{flex-direction:row !important;flex-wrap:wrap !important;justify-content:center !important;align-items:center !important;align-content:center !important;}
.elementor-element-9c62ecd > .e-con-inner > *{flex:0 0 100% !important;max-width:100% !important;}
.elementor-element-9c62ecd > .e-con-inner > .elementor-element-84ec5e0,
.elementor-element-9c62ecd > .e-con-inner > .elementor-element-49a642d,
.elementor-element-9c62ecd > .e-con-inner > .elementor-element-875e933{flex:0 0 auto !important;width:auto !important;max-width:none !important;margin:0 !important;--container-widget-width:auto !important;}
.elementor-element-9c62ecd > .e-con-inner > .elementor-element-84ec5e0{padding:0 !important;}
.elementor-element-84ec5e0 .elementor-heading-title{margin:0 !important;white-space:nowrap;}
.elementor-element-49a642d img{height:62px !important;width:auto !important;display:block;}
.elementor-element-875e933 img{height:56px !important;width:auto !important;display:block;}
@media (max-width:1024px){
.elementor-element-49a642d img{height:46px !important;}
.elementor-element-875e933 img{height:42px !important;}
}
@media (max-width:767px){
.elementor-element-9c62ecd > .e-con-inner{column-gap:10px !important;row-gap:14px !important;}
.elementor-element-84ec5e0 .elementor-heading-title{font-size:11px !important;}
.elementor-element-49a642d img{height:28px !important;}
.elementor-element-875e933 img{height:26px !important;}
}

.elementor-element-49a642d a:not([href]),.elementor-element-875e933 a:not([href]){display:none !important;}
.elementor-element-49a642d .elementor-widget-container,.elementor-element-875e933 .elementor-widget-container{line-height:0 !important;}
.elementor-element-9c62ecd > .e-con-inner > .elementor-element-49a642d,
.elementor-element-9c62ecd > .e-con-inner > .elementor-element-875e933{width:fit-content !important;}
.elementor-element-49a642d .elementor-widget-container,
.elementor-element-875e933 .elementor-widget-container{padding:0 !important;margin:0 !important;}
/* /AJ-HERO-SEENIN */

/* AJ-MOBILE : phone layout - full-frame jet video, uncropped photography */
@media (max-width:767px){

html body .elementor-13 .elementor-element.elementor-element-9c62ecd{
 background-image:none !important;
 background-color:#0f1c2e !important;
 min-height:0 !important;
 --min-height:0px !important;
 padding-top:0 !important;
}
html body .elementor-13 .elementor-element.elementor-element-9c62ecd > .e-con-inner{
 row-gap:18px !important;
 column-gap:10px !important;
 padding-bottom:32px !important;
}
html body .elementor-13 .elementor-element.elementor-element-9c62ecd > .e-con-inner > .elementor-background-video-container{
 display:block !important;
 position:relative !important;
 inset:auto !important;
 order:-1;
 flex:0 0 auto !important;
 margin:0 -15px 4px !important;
 width:calc(100% + 30px) !important;
 max-width:none !important;
 height:auto !important;
 aspect-ratio:4/3;
 overflow:hidden;
 background:#0f1c2e;
}
html body .elementor-13 .elementor-element.elementor-element-9c62ecd .elementor-background-video-hosted{
 position:relative !important;
 top:auto !important;
 left:auto !important;
 width:100% !important;
 height:100% !important;
 max-width:none !important;
 object-fit:cover !important;
 transform:none !important;
 display:block !important;
}
html body .elementor-13 .elementor-element.elementor-element-84ec5e0 .elementor-heading-title{color:#ffffff !important;opacity:.85;font-size:min(11px,3.1vw) !important;}
html body .elementor-13 .elementor-element.elementor-element-6f7a6b9{width:max-content !important;max-width:100% !important;--container-widget-width:max-content !important;}
html body .elementor-13 .elementor-element.elementor-element-49a642d img{filter:brightness(0) invert(1) !important;opacity:.92;height:min(26px,6.6vw) !important;}
html body .elementor-13 .elementor-element.elementor-element-875e933 img{height:min(24px,6.0vw) !important;}
html body .elementor-13 .elementor-element.elementor-element-9c62ecd .aj-tb,
html body .elementor-13 .elementor-element.elementor-element-9c62ecd .aj-tb *{color:#ffffff !important;}
html body .elementor-13 .elementor-element.elementor-element-84ec5e0{width:auto !important;--width:auto !important;--container-widget-width:auto !important;max-width:max-content !important;flex:0 0 auto !important;}

html body .elementor-13 .elementor-element.elementor-element-ed73bb0.elementor-element-ed73bb0.elementor-element-ed73bb0.elementor-element-ed73bb0.elementor-element-ed73bb0{
 background-size:100% auto !important;
 background-repeat:no-repeat !important;
 background-position:center top !important;
 background-attachment:scroll !important;
 background-color:#1d1710 !important;
 padding-top:calc(100vw * 0.6657 + 30px) !important;
}

html body .elementor-13 .elementor-element.elementor-element-1a8fc9e.elementor-element-1a8fc9e.elementor-element-1a8fc9e.elementor-element-1a8fc9e.elementor-element-1a8fc9e{
 background-size:cover, 100% auto !important;
 background-repeat:no-repeat, no-repeat !important;
 background-position:center top, center top !important;
 background-attachment:scroll, scroll !important;
 background-color:#1d1710 !important;
 padding-top:calc(100vw * 0.667 + 30px) !important;
}

html body .elementor-location-footer.elementor-location-footer.elementor-location-footer{
 background-size:cover, 100% auto !important;
 background-repeat:no-repeat, no-repeat !important;
 background-position:center top, center bottom !important;
 background-attachment:scroll, scroll !important;
 background-color:#16110c !important;
 padding-bottom:calc(100vw * 0.3255 + 24px) !important;
}

html,body{overflow-x:clip;}

}
/* /AJ-MOBILE */
:root{--woocommerce:#720eec;--wc-green:#7ad03a;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px}.woocommerce .woocommerce-error .button,.woocommerce .woocommerce-info .button,.woocommerce .woocommerce-message .button,.woocommerce-page .woocommerce-error .button,.woocommerce-page .woocommerce-info .button,.woocommerce-page .woocommerce-message .button{float:right}.woocommerce .col2-set,.woocommerce-page .col2-set{width:100%}.woocommerce .col2-set::after,.woocommerce .col2-set::before,.woocommerce-page .col2-set::after,.woocommerce-page .col2-set::before{content:" ";display:table}.woocommerce .col2-set::after,.woocommerce-page .col2-set::after{clear:both}.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1{float:left;width:48%}.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2{float:right;width:48%}.woocommerce img,.woocommerce-page img{height:auto;max-width:100%}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{float:left;width:48%}.woocommerce #content div.product div.thumbnails::after,.woocommerce #content div.product div.thumbnails::before,.woocommerce div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::before,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::before,.woocommerce-page div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::before{content:" ";display:table}.woocommerce #content div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::after{clear:both}.woocommerce #content div.product div.thumbnails a,.woocommerce div.product div.thumbnails a,.woocommerce-page #content div.product div.thumbnails a,.woocommerce-page div.product div.thumbnails a{float:left;width:30.75%;margin-right:3.8%;margin-bottom:1em}.woocommerce #content div.product div.thumbnails a.last,.woocommerce div.product div.thumbnails a.last,.woocommerce-page #content div.product div.thumbnails a.last,.woocommerce-page div.product div.thumbnails a.last{margin-right:0}.woocommerce #content div.product div.thumbnails a.first,.woocommerce div.product div.thumbnails a.first,.woocommerce-page #content div.product div.thumbnails a.first,.woocommerce-page div.product div.thumbnails a.first{clear:both}.woocommerce #content div.product div.thumbnails.columns-1 a,.woocommerce div.product div.thumbnails.columns-1 a,.woocommerce-page #content div.product div.thumbnails.columns-1 a,.woocommerce-page div.product div.thumbnails.columns-1 a{width:100%;margin-right:0;float:none}.woocommerce #content div.product div.thumbnails.columns-2 a,.woocommerce div.product div.thumbnails.columns-2 a,.woocommerce-page #content div.product div.thumbnails.columns-2 a,.woocommerce-page div.product div.thumbnails.columns-2 a{width:48%}.woocommerce #content div.product div.thumbnails.columns-4 a,.woocommerce div.product div.thumbnails.columns-4 a,.woocommerce-page #content div.product div.thumbnails.columns-4 a,.woocommerce-page div.product div.thumbnails.columns-4 a{width:22.05%}.woocommerce #content div.product div.thumbnails.columns-5 a,.woocommerce div.product div.thumbnails.columns-5 a,.woocommerce-page #content div.product div.thumbnails.columns-5 a,.woocommerce-page div.product div.thumbnails.columns-5 a{width:16.9%}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{float:right;width:48%;clear:none}.woocommerce #content div.product .woocommerce-tabs,.woocommerce div.product .woocommerce-tabs,.woocommerce-page #content div.product .woocommerce-tabs,.woocommerce-page div.product .woocommerce-tabs{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::before{content:" ";display:table}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li{display:inline-block}.woocommerce #content div.product #reviews .comment::after,.woocommerce #content div.product #reviews .comment::before,.woocommerce div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::before,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::before,.woocommerce-page div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::before{content:" ";display:table}.woocommerce #content div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::after{clear:both}.woocommerce #content div.product #reviews .comment img,.woocommerce div.product #reviews .comment img,.woocommerce-page #content div.product #reviews .comment img,.woocommerce-page div.product #reviews .comment img{float:right;height:auto}.woocommerce ul.products,.woocommerce-page ul.products{clear:both}.woocommerce ul.products::after,.woocommerce ul.products::before,.woocommerce-page ul.products::after,.woocommerce-page ul.products::before{content:" ";display:table}.woocommerce ul.products::after,.woocommerce-page ul.products::after{clear:both}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{float:left;margin:0 3.8% 2.992em 0;padding:0;position:relative;width:22.05%;margin-left:0}.woocommerce ul.products li.first,.woocommerce-page ul.products li.first{clear:both}.woocommerce ul.products li.last,.woocommerce-page ul.products li.last{margin-right:0}.woocommerce ul.products.columns-1 li.product,.woocommerce-page ul.products.columns-1 li.product{width:100%;margin-right:0}.woocommerce ul.products.columns-2 li.product,.woocommerce-page ul.products.columns-2 li.product{width:48%}.woocommerce ul.products.columns-3 li.product,.woocommerce-page ul.products.columns-3 li.product{width:30.75%}.woocommerce ul.products.columns-5 li.product,.woocommerce-page ul.products.columns-5 li.product{width:16.95%}.woocommerce ul.products.columns-6 li.product,.woocommerce-page ul.products.columns-6 li.product{width:13.5%}.woocommerce-page.columns-1 ul.products li.product,.woocommerce.columns-1 ul.products li.product{width:100%;margin-right:0}.woocommerce-page.columns-2 ul.products li.product,.woocommerce.columns-2 ul.products li.product{width:48%}.woocommerce-page.columns-3 ul.products li.product,.woocommerce.columns-3 ul.products li.product{width:30.75%}.woocommerce-page.columns-5 ul.products li.product,.woocommerce.columns-5 ul.products li.product{width:16.95%}.woocommerce-page.columns-6 ul.products li.product,.woocommerce.columns-6 ul.products li.product{width:13.5%}.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-result-count{float:left}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:right}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce .woocommerce-pagination ul.page-numbers::before,.woocommerce-page .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::before{content:" ";display:table}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::after{clear:both}.woocommerce .woocommerce-pagination ul.page-numbers li,.woocommerce-page .woocommerce-pagination ul.page-numbers li{display:inline-block}.woocommerce #content table.cart img,.woocommerce table.cart img,.woocommerce-page #content table.cart img,.woocommerce-page table.cart img{height:auto}.woocommerce #content table.cart td.actions,.woocommerce table.cart td.actions,.woocommerce-page #content table.cart td.actions,.woocommerce-page table.cart td.actions{text-align:right}.woocommerce #content table.cart td.actions .input-text,.woocommerce table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text{width:80px}.woocommerce #content table.cart td.actions .coupon,.woocommerce table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon{float:left}.woocommerce .cart-collaterals,.woocommerce-page .cart-collaterals{width:100%}.woocommerce .cart-collaterals::after,.woocommerce .cart-collaterals::before,.woocommerce-page .cart-collaterals::after,.woocommerce-page .cart-collaterals::before{content:" ";display:table}.woocommerce .cart-collaterals::after,.woocommerce-page .cart-collaterals::after{clear:both}.woocommerce .cart-collaterals .related,.woocommerce-page .cart-collaterals .related{width:30.75%;float:left}.woocommerce .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .cross-sells{width:48%;float:left}.woocommerce .cart-collaterals .cross-sells ul.products,.woocommerce-page .cart-collaterals .cross-sells ul.products{float:none}.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:48%}.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .shipping_calculator{width:48%;clear:right;float:right}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce .cart-collaterals .shipping_calculator::before,.woocommerce-page .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::before{content:" ";display:table}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2{width:47%}.woocommerce .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cart_totals{float:right;width:48%}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.cart_list li::before,.woocommerce-page ul.product_list_widget li::after,.woocommerce-page ul.product_list_widget li::before{content:" ";display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.cart_list li img,.woocommerce-page ul.product_list_widget li img{float:right;height:auto}.woocommerce form .form-row::after,.woocommerce form .form-row::before,.woocommerce-page form .form-row::after,.woocommerce-page form .form-row::before{content:" ";display:table}.woocommerce form .form-row::after,.woocommerce-page form .form-row::after{clear:both}.woocommerce form .form-row label,.woocommerce-page form .form-row label{display:block}.woocommerce form .form-row label.checkbox,.woocommerce-page form .form-row label.checkbox{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{width:100%}.woocommerce form .form-row .input-text,.woocommerce-page form .form-row .input-text{box-sizing:border-box;width:100%}.woocommerce form .form-row-first,.woocommerce form .form-row-last,.woocommerce-page form .form-row-first,.woocommerce-page form .form-row-last{width:47%;overflow:visible}.woocommerce form .form-row-first,.woocommerce-page form .form-row-first{float:left}.woocommerce form .form-row-last,.woocommerce-page form .form-row-last{float:right}.woocommerce form .form-row-wide,.woocommerce-page form .form-row-wide{clear:both}.woocommerce form .password-input,.woocommerce-page form .password-input{display:flex;flex-direction:column;justify-content:center;position:relative}.woocommerce form .password-input input[type=password],.woocommerce-page form .password-input input[type=password]{padding-right:2.5rem}.woocommerce form .password-input input::-ms-reveal,.woocommerce-page form .password-input input::-ms-reveal{display:none}.woocommerce form .show-password-input,.woocommerce-page form .show-password-input{background-color:transparent;border-radius:0;border:0;color:var(--wc-form-color-text,#000);cursor:pointer;font-size:inherit;line-height:inherit;margin:0;padding:0;position:absolute;right:.7em;text-decoration:none;top:50%;transform:translateY(-50%);-moz-osx-font-smoothing:inherit;-webkit-appearance:none;-webkit-font-smoothing:inherit}.woocommerce form .show-password-input::before,.woocommerce-page form .show-password-input::before{background-repeat:no-repeat;background-size:cover;background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23111111"/></svg>');content:"";display:block;height:22px;width:22px}.woocommerce form .show-password-input.display-password::before,.woocommerce-page form .show-password-input.display-password::before{background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23111111"/></svg>')}.woocommerce #payment .form-row select,.woocommerce-page #payment .form-row select{width:auto}.woocommerce #payment .terms,.woocommerce #payment .wc-terms-and-conditions,.woocommerce-page #payment .terms,.woocommerce-page #payment .wc-terms-and-conditions{text-align:left;padding:0 1em 0 0;float:left}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:right}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-billing-fields::before,.woocommerce .woocommerce-shipping-fields::after,.woocommerce .woocommerce-shipping-fields::before,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-billing-fields::before,.woocommerce-page .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-shipping-fields::before{content:" ";display:table}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-shipping-fields::after{clear:both}.woocommerce .woocommerce-terms-and-conditions,.woocommerce-page .woocommerce-terms-and-conditions{margin-bottom:1.618em;padding:1.618em}.woocommerce .woocommerce-oembed,.woocommerce-page .woocommerce-oembed{position:relative}.woocommerce-account .woocommerce-MyAccount-navigation{float:left;width:30%}.woocommerce-account .woocommerce-MyAccount-content{float:right;width:68%}.woocommerce-account .woocommerce-MyAccount-content mark{background-color:transparent;color:inherit;font-weight:700}.woocommerce-page.left-sidebar #content.twentyeleven{width:58.4%;margin:0 7.6%;float:right}.woocommerce-page.right-sidebar #content.twentyeleven{margin:0 7.6%;width:58.4%;float:left}.twentyfourteen .tfwc{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfwc .product .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfwc div.product.hentry.has-post-thumbnail{margin-top:0}@media screen and (min-width:673px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfwc{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfwc{margin-right:54px}.full-width .twentyfourteen .tfwc{margin-right:auto}}.twentyfifteen .t15wc{padding-left:7.6923%;padding-right:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15wc .page-title{margin-left:0}@media screen and (min-width:38.75em){.twentyfifteen .t15wc{margin-right:7.6923%;margin-left:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15wc{margin-left:8.3333%;margin-right:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.twentysixteen .site-main{margin-right:7.6923%;margin-left:7.6923%}.twentysixteen .entry-summary{margin-right:0;margin-left:0}#content .twentysixteen div.product div.images,#content .twentysixteen div.product div.summary{width:46.42857%}@media screen and (min-width:44.375em){.twentysixteen .site-main{margin-right:23.0769%}}@media screen and (min-width:56.875em){.twentysixteen .site-main{margin-right:0;margin-left:0}.no-sidebar .twentysixteen .site-main{margin-right:15%;margin-left:15%}.no-sidebar .twentysixteen .entry-summary{margin-right:0;margin-left:0}}.rtl .woocommerce .col2-set .col-1,.rtl .woocommerce-page .col2-set .col-1{float:right}.rtl .woocommerce .col2-set .col-2,.rtl .woocommerce-page .col2-set .col-2{float:left}