/*
 Theme Name: Twenty Nineteen Child
 Theme URI: https://www.element8.ae
 Author: Element8
 Author URI: https://www.element8.ae
 Template: twentynineteen
 Description: Child theme for Twenty Seventeen.
 Version: 0.1
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags:
 Text Domain: twentynineteen-child
 */

:root {
    --color-black: #091016;
    --color-light: #f3f3f3;
    --font-primary: 'DIN 2014', sans-serif;
    --time: .35s;
    --holder-color: #d6d6d6;
    --container-width: calc(1300px + 30px);
    --sm-radius: 6px;

}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    color: #000;
    font-size: 16px;
    background: #ffffff;
    font-family: var(--font-primary);
}

.main {
    --space-x: 120px;
    --space-y: 140px;
    --space-z: 160px;
}

a {
    color: #000;
    text-decoration: none;
    -moz-transition: all var(--time) ease;
    -o-transition: all var(--time) ease;
    -webkit-transition: all var(--time) ease;
    -ms-transition: all var(--time) ease;
    transition: all var(--time) ease;
}

a:hover {
    text-decoration: none;
}

p:only-child,
p:last-child {
    margin-bottom: 0;
}

h1,
h1 {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 30px;
}

h2,
h2 {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 25px;
}

h3 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 15px;
}

h5 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 15px;
}

h6 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    line-height: 24px;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
}

img,
svg {
    vertical-align: middle;
}

input,
select,
button,
textarea {
    cursor: pointer;
    font-family: var(--font-primary);
}

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

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type='submit'] {
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

button {
    cursor: pointer
}

:disabled {
    cursor: default
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    line-height: inherit;
}

span {
    display: inline-block;
}

select {
    background-image: url('assets/images/down-arrow.png');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    -ms-progress-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

:focus {
    outline: none;
}

label {
    display: inline-block;
    margin: 0 0 7px 0;
    font-size: 13px;
}

textarea {
    height: 100px;
    resize: none;
    padding: var(--padding);
}


iframe {
    border: 0;
    vertical-align: bottom;
}

.w-100 {
    width: 100%;
}

.relative {
    position: relative;
}

/* -------------------------------------------------------------- */
.primary_btn {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #ffffff;
    background: #0065b3;
    border-radius: var(--sm-radius);
    padding: 10px 15px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    cursor: pointer;
    border: none;
    outline: none;
}

.primary_btn:hover {
    transition: 0.35s all ease;
    background: #004d88;
}

.secondary_btn {
    color: var(--color-black);
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    background: rgba(0, 101, 179, 0.05);
    border-radius: var(--sm-radius);
    padding: 10px 15px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.35s all ease;
}

.secondary_btn:hover {
    background: rgba(0, 101, 179, 0.1);
    color: #3384C2;
}

.white_btn {
    color: var(--color-black);
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    background: rgba(254, 254, 254, 0.75);
    border-radius: var(--sm-radius);
    padding: 12px 15px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.35s all ease;
}

.white_btn:hover {
    background: #f2f7fc;
}

.black_btn {
    color: #ffffff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    background: #000000;
    border-radius: var(--sm-radius);
    border: 2px solid #000000;
    padding: 10px 15px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    cursor: pointer;
    transition: 0.35s all ease;
}

.black_btn:hover {
    background: #ffffff;
    color: #000000;
}

.hm_banner .white_btn {
    color: var(--color-black) !important;
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    background: rgba(254, 254, 254, 0.75) !important;
    border-radius: var(--sm-radius) !important;
    padding: 10px 17px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    box-shadow: 6px 4px 20px 0px rgba(0, 0, 0, 0.06) !important;
    transition: 0.35s all ease !important;
}

.white_btn:hover {
    background: #f2f7fc !important;
    color: #3384C2 !important;
    box-shadow: 6px 4px 20px 0px rgba(0, 0, 0, 0.2) !important;
}

.hm_banner .banner-text {
    background: linear-gradient(90deg,
            rgba(19, 185, 235, 1) 0%,
            rgba(0, 94, 202, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary) !important;
    font-size: 80px;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.hm_banner .banner_paragraph {
    font-family: var(--font-primary) !important;
    font-weight: 400 !important;
}

.banner_sub_title {
    font-family: var(--font-primary) !important;
}

.hm_banner .tparrows {
    background: #41aafb !important;
    border-radius: var(--sm-radius);
    transition: all 0.35s ease;
}

.hm_banner .tparrows:hover {
    background: #004d88 !important;
}

/* -------------------------------------------------------------- */

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

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

.text-white {
    color: #ffffff;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

/* -------------------------------------------------------------- */

.bg-light {
    background: #F2F7FC;
}

.bg-primary {
    background: var(--color-primary);
}

.bg-secondary {
    background: var(--color-secondary);
}

/* -------------------------------------------------------------- */

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

/* -------------------------------------------------------------- */

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: var(--container-width);
}

.header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: calc(1400px + 30px);
}

.content_para p {
    color: #6e6e6e;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

/* -------------------------------------------------------------- */
.pt_100 {
    padding-top: 100px;
}

.pb_100 {
    padding-bottom: 100px;
}

.pt_90 {
    padding-top: 90px;
}

.pb_90 {
    padding-bottom: 90px;
}

.pt_70 {
    padding-top: 70px;
}

.pb_70 {
    padding-bottom: 70px;
}

.pt_60 {
    padding-top: 60px;
}

.pb_60 {
    padding-bottom: 60px;
}

.pt_50 {
    padding-top: 50px;
}

.pb_50 {
    padding-bottom: 50px;
}


.pt_40 {
    padding-top: 40px;
}

.pb_40 {
    padding-bottom: 40px;
}

.pt_30 {
    padding-top: 30px;
}

.pb_30 {
    padding: 30px;
}

.pt_25 {
    padding-top: 25px;
}

.pb_25 {
    padding-bottom: 25px;
}

.pt_20 {
    padding-top: 20px;
}

.pb_20 {
    padding-bottom: 20px;
}

.pt_15 {
    padding-top: 15px;
}

.pb_15 {
    padding-bottom: 15px;
}



/* --------------------------------- */
.d_flex_wrap {
    display: flex;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-top {
    align-items: flex-start;
}

.space-between {
    justify-content: space-between;
}

@media (max-width: 1550px) {
    :root {
        --container-width: calc(1243px + 30px);
    }

    .header-container {
        max-width: calc(1340px + 30px);
    }
}


@media (max-width: 1480px) {
    :root {
        --container-width: calc(1193px + 30px);
    }

    .header-container {
        max-width: calc(1280px + 30px);
    }

    p {
        font-size: 15px;
        line-height: 22px;
    }

    .pt_100 {
        padding-top: 85px;
    }

    .pb_100 {
        padding-bottom: 85px;
    }

    .pt_90 {
        padding-top: 78px;
    }

    .pb_90 {
        padding-bottom: 78px;

    }

    .pt_70 {
        padding-top: 60px;
    }

    .pb_70 {
        padding-bottom: 60px;
    }

    .pt_60 {
        padding-top: 55px;
    }

    .pb_60 {
        padding-bottom: 55px;
    }

    .pt_50 {
        padding-top: 45px;
    }

    .pb_50 {
        padding-bottom: 45px;
    }


    .primary_btn,
    .secondary_btn,
    .white_btn,
    .black_btn {
        font-size: 15px;
        line-height: 17px;
        height: 40px;

    }

    .section_title p {
        font-size: 17px;
    }

    .content_para p {
        font-size: 15px;
        line-height: 24px;
    }

    .hm_banner .tparrows.tp-rightarrow {
        left: 96% !important;
    }

    .hm_banner .tparrows.tp-leftarrow {
        left: 4% !important;
    }

}

@media (max-width: 1480px) {
    .hm_banner .white_btn {
        font-size: 15px !important;
        line-height: 17px !important;
        padding: 8px 17px !important;
        height: 44px !important;
    }
}

@media (max-width: 1300px) {
    .hm_banner .tparrows.tp-rightarrow {
        left: 95% !important;
    }

    .hm_banner .tparrows.tp-leftarrow {
        left: 5% !important;
    }

}

@media (max-width: 1280px) {
    .header-container {
        padding: 0 30px;
    }

    .container {
        padding: 0 30px;
    }

    .hm_banner .tparrows.tp-rightarrow {
        left: calc(100% - 30px) !important;
    }

    .hm_banner .tparrows.tp-leftarrow {
        left: 30px !important;
    }
}

@media (max-width: 992px) {
    .pt_100 {
        padding-top: 75px;
    }

    .pb_100 {
        padding-bottom: 75px;
    }

    .pt_90 {
        padding-top: 70px;
    }

    .pb_90 {
        padding-bottom: 70px;

    }

    .pt_70 {
        padding-top: 54px;
    }

    .pb_70 {
        padding-bottom: 54px;
    }

    .pt_60 {
        padding-top: 48px;
    }

    .pb_60 {
        padding-bottom: 48px;
    }

    .pt_50 {
        padding-top: 38px;
    }

    .pb_50 {
        padding-bottom: 38px;
    }

    .pt_30 {
        padding-top: 20px;
    }

    .pb_30 {
        padding-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .pt_100 {
        padding-top: 45px;
    }

    .pb_100 {
        padding-bottom: 45px;
    }

    .pt_90 {
        padding-top: 38px;
    }

    .pb_90 {
        padding-bottom: 38px;

    }

    .pt_70 {
        padding-top: 32px;
    }

    .pb_70 {
        padding-bottom: 32px;
    }

    .pt_60 {
        padding-top: 40px;
    }

    .pb_60 {
        padding-bottom: 40px;
    }

    .pt_50 {
        padding-top: 25px;
    }

    .pb_50 {
        padding-bottom: 25px;
    }

    .pt_30 {
        padding-top: 15px;
    }

    .pb_30 {
        padding-bottom: 15px;
    }

    .primary_btn,
    .secondary_btn,
    .white_btn {
        font-size: 14px;
        line-height: 15px;
        height: 40px;
    }

    .hm_banner .white_btn {
        font-size: 14px !important;
        line-height: 16px !important;
        padding: 6px 15px !important;
        height: 40px !important;
    }

}

@media (max-width: 480px) {
    .header-container {
        padding: 0 25px;
    }

    .container {
        padding: 0 25px;
    }
}


/* WooCommerce Pagination - Box Style */
.woocommerce nav.woocommerce-pagination ul.page-numbers,.blog-page-pagination nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 187px 0 0;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li, .blog-page-pagination nav.woocommerce-pagination ul.page-numbers li {
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers a,.blog-page-pagination nav.woocommerce-pagination ul.page-numbers a
.woocommerce nav.woocommerce-pagination ul.page-numbers span, .blog-page-pagination nav.woocommerce-pagination ul.page-numbers span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 43px;
    height: 43px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.6;
    text-decoration: none;
    border-radius: 0px;
    /* adjust for more roundness */
    background: rgba(0, 101, 179, 0.05);
    color: #6E6E6E;
    transition: all 0.2s ease-in-out;
}

/* Hover effect */
.woocommerce nav.woocommerce-pagination ul.page-numbers a:hover, .blog-page-pagination nav.woocommerce-pagination ul.page-numbers a:hover {
    background: #0065B3;
    color: #ffffff;
    opacity: 1;
}

/* Current page */
.woocommerce nav.woocommerce-pagination ul.page-numbers .current, .blog-page-pagination nav.woocommerce-pagination ul.page-numbers .current {
    background: #0065B3;
    color: #ffffff;
    opacity: 1;
}

.product_list_filter .product_list_header {
    display: none;
}

.woocommerce-result-count {
    visibility: hidden;
}



#variation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
    overflow: hidden;
}

#variation-popup .popup-content {
    background: #fff;
    width: 90%;
    max-width: 984px;
    margin: auto;
    padding: 25px;
    border-radius: 0;
    position: relative;

}

#variation-popup .popup-content::-webkit-scrollbar {
    display: none;
    height: 0;
}

.variation-table-wrap {
    overflow: auto;
}

.variations-table {
    width: 100%;
    border-collapse: collapse;
}

.variations-table th {
    background-color: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
}

.variations-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
}

.variations-table td.sku {
    min-width: 100px;
}

.variations-table .pro-quantity input {
    text-align: center;
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;

}

.variations-table .pro-quantity {
    margin: 0;
}

.out-of-stock-row {
    background-color: #fff8f8;
}

.out-of-stock-row:hover {
    background-color: #ffefef;
}

.attr {
    font-weight: 500;
}

.sku {
    color: #6c757d;
    font-family: monospace;
}

.price {
    color: #28a745;
    font-weight: 500;
}

.variations-table .quantity {
    width: 100%;
}

.variations-table .quantity input {
    width: 115px;
    padding: 8px 15px;
    height: 44px;
    background: #f3f3f3;
    border-radius: 7px;
    color: #091016;
    border: 0;
    outline: 0;
}

.add-to-cart-btn-ajax-btn {
    background-color: #000000;
    border: 2px solid #000000;
    color: white;
    padding: 8px 24px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 115px;
    height: 44px;
    font-size: 16px;
    transition: all 0.4s ease;

}

.add-to-cart-btn-ajax-btn:hover {
    background-color: #ffffff;
    color: #000000;
}


.stock.out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

.notify-btn,
.notify_button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border: 2px solid #000000;
    border-radius: 6px;
    cursor: pointer;
    min-width: 115px;
    height: 44px;
    font-size: 16px;
    transition: all 0.4s ease;

}

.notify-btn:hover,
.notify_button:hover {
    background: #ffffff;
    color: #000;
}

.popup-right .notify_button {
    min-width: 224px;
}

.popup-right th.label {
    display: block;
    text-align: start;

}

.popup-content {
    position: relative;
    max-width: 800px;
    background: white;
    padding: 25px;
    border-radius: 8px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}


.color-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
    overflow: hidden;

}

.color-pop_wrapper {
    height: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: start;
    overflow: auto;
}

.color-popup .popup-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    margin: auto;
    padding: 40px 25px 30px 35px;
    border-radius: 0;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 4px;
    right: 6px;
    ;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.close-popup img {
    width: 15px !important;
}

.close-popup:hover img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(62%) saturate(6858%) hue-rotate(194deg) brightness(93%) contrast(105%);
}




/* ------------new---------- */

.career-form-sec .wpcf7-form.init, .career-form-block form{ 
      max-width: 800px;
    margin-left: auto;
    margin-right: auto;
 
}







.career-form-sec .upload-instructions{ width: 100%; padding-top: 10px;}

.career-form-sec .wpcf7 input[type="file"]{ height: unset; padding: 17px 30px;}


@media (max-width: 1480px) {
    body {
        font-size: 15px;
    }

    .add-to-cart-btn-ajax-btn {
        height: 40px;
        font-size: 15px;
    }

    .color-popup .popup-content {
        padding: 35px 20px 25px 30px;
    }

    .pop-up-inner_wrap {
        gap: 44px;
    }

    .color-popup-image img {
        width: 150px;
    }

    .color-popup-image #popup-sku {
        font-size: 15px;
    }

    .color-popup-info h2 {
        font-size: 22px;
    }

    .color-popup-info {
        margin-bottom: 15px;
    }

    .popup-header #popup-price>span {
        font-size: 28px;
    }

    .notify-btn {
        height: 40px;
        font-size: 15px;
    }

    .variations-table .quantity input {
        height: 40px;
    }

    .woocommerce nav.woocommerce-pagination ul.page-numbers,.blog-page-pagination nav.woocommerce-pagination ul.page-numbers {
        margin: 177px 0 0;
    }

}

@media (max-width: 1200px) {
    .woocommerce nav.woocommerce-pagination ul.page-numbers, .blog-page-pagination nav.woocommerce-pagination ul.page-numbers {
        margin: 100px 0 0;
    }

}

@media (max-width: 700px) {
    .pop-up-inner_wrap {
        flex-direction: column;
    }

    .pop-up-inner_wrap {
        gap: 15px;
    }

    .popup-header #popup-price>span {
        font-size: 24px;
    }

    .color-popup-info h2 {
        font-size: 20px;
    }

    .popup-header {
        flex-direction: column;
        gap: 0;
        margin-bottom: 10px;
    }

    .woocommerce nav.woocommerce-pagination ul.page-numbers {
        margin: 50px 0 0; flex-wrap: wrap;
    }
}
.woocommerce-checkout form label {
  text-transform: capitalize !important;
}


.hisense-product-purchase1 .value-label-wrap{ display: flex ; align-items: center;}
.hisense-product-purchase1 table.variations td{ align-items: center;}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  color: #46b450;
}
.verified-badge {
  display: none;
}
.hide-add-info {
  display: none;
}
#tab-more-info table td {
  border-bottom: 1px solid #dadada;
  padding: 10px;
}
#tab-more-info table {
  border: 1px solid #dadada;
  padding: 15px;
}
.mesco-product .product-detail-price-wrap .price-regular .woocommerce-Price-currencySymbol i {
  font-size: 12px !important;
}
.mesco-product .product-detail-price-wrap .price-regular {
  padding-left: 8px;
}
.single_variation_wrap {
  margin-top: 15px;
}