::selection {
background: rgba(44, 61, 245, 0.2);
color: inherit;
}
::-moz-selection {
background: rgba(44, 61, 245, 0.2);
color: inherit;
}  .air-modal {
display: none;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 10100;
opacity: 0;
width: 0;
height: 0;
overflow: hidden;
background: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
transition: 0.2s ease-in;
}
.air-modal.active {
display: block;
opacity: 1;
overflow: auto;
}
#air-city-modal.active {
width: 800px;
max-width: 95vw;
height: 70vh;
padding: 20px;
border-radius: 20px;
}
.air-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.5);
z-index: 10099;
}
.air-overlay.active {
display: block;
} :root { --primary: #2C3DF5;
--primary-dark: #1E28B8;
--primary-light: #5B6CF5;
--text-dark: #213777;
--text-gray: #64748B;
--text-muted: #5a6a8a;
--bg-light: #F5F7FF;
--bg-faq: #F5F9FF;
--bg-white: #FFFFFF;
--bg-page: #FAFBFF;
--border: #E6E6FF;
--border-light: #F0F0FF; --gradient-primary: linear-gradient(135deg, #2C3DF5 0%, #5B6CF5 100%);
--gradient-secondary: linear-gradient(135deg, #F5F7FF 0%, #E8ECFF 100%); --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1); --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
--font-family-montserrat: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; --container-max: 1520px;
--container-padding: 120px;
--container-padding-lg: 60px;
--container-padding-md: 24px;
--container-padding-sm: 16px;
--section-gap: 48px;
--section-gap-last: 56px;
} * {
box-sizing: border-box;
}
html {
margin: 0 !important;
padding: 0 !important;
}
body {
font-family: var(--font-family);
color: var(--text-dark);
line-height: 1.6;
background: var(--bg-page);
margin: 0 !important;
padding: 0 !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} .elementor-location-header,
.site-header,
#site-header {
margin: 0 !important;
padding: 0 !important;
} header.air-head {
position: relative;
z-index: 9999 !important;
}
#content,
#main,
.site-content,
.elementor-section-wrap,
.elementor-top-section {
position: relative;
z-index: 1;
} .nt-container {
max-width: var(--container-max) !important;
margin: 0 auto !important;
padding: 0 var(--container-padding) !important;
position: relative;
overflow: visible;
width: 100%;
box-sizing: border-box;
}
@media (max-width: 1600px) {
.nt-container {
padding: 0 var(--container-padding-lg) !important;
}
}
@media (max-width: 1024px) {
.nt-container {
padding: 0 var(--container-padding-md) !important;
}
}
@media (max-width: 768px) {
.nt-container {
padding: 0 var(--container-padding-sm) !important;
}
} .nt-section {
margin-bottom: var(--section-gap);
}
.nt-section:last-of-type {
margin-bottom: var(--section-gap-last);
} h1, h2, h3, h4, h5, h6 {
font-family: var(--font-family-montserrat);
font-weight: 800;
color: var(--text-dark);
line-height: 1.2;
margin-top: 0;
}
h1 {
font-size: 48px;
margin-bottom: 24px;
}
h2 {
font-size: 32px;
margin-bottom: 20px;
}
h3 {
font-size: 24px;
margin-bottom: 16px;
}
h4 {
font-size: 20px;
margin-bottom: 12px;
}
p {
margin: 0 0 16px 0;
line-height: 1.7;
color: var(--text-dark);
}
a {
color: var(--primary);
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: var(--primary-dark);
} @media (max-width: 768px) {
h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
} .nt-section-title {
font-size: 32px;
font-weight: 800;
color: var(--text-dark);
margin: 0 0 32px 0;
text-align: center;
line-height: 1.3;
}
@media (max-width: 768px) {
.nt-section-title {
font-size: 24px;
margin-bottom: 24px;
}
} .nt-card {
background: white;
border-radius: 24px;
padding: 40px;
box-shadow: var(--shadow-md);
margin-bottom: 24px;
transition: all 0.3s ease;
}
.nt-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
.nt-card {
padding: 24px;
border-radius: 16px;
}
} .nt-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 32px;
font-size: 16px;
font-weight: 600;
border-radius: 12px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
font-family: var(--font-family-montserrat);
}
.nt-btn-primary {
background: var(--gradient-primary);
color: white;
box-shadow: 0 4px 12px rgba(44, 61, 245, 0.3);
}
.nt-btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(44, 61, 245, 0.4);
color: white;
}
.nt-btn-secondary {
background: white;
color: var(--primary);
border: 2px solid var(--primary);
}
.nt-btn-secondary:hover {
background: var(--primary);
color: white;
}
.nt-btn-outline {
background: transparent;
color: var(--text-dark);
border: 2px solid var(--border);
}
.nt-btn-outline:hover {
background: var(--bg-light);
border-color: var(--primary);
color: var(--primary);
}
@media (max-width: 768px) {
.nt-btn {
padding: 12px 24px;
font-size: 14px;
}
} .woocommerce-breadcrumb {
font-size: 14px;
color: var(--text-gray);
padding: 20px 0;
}
.woocommerce-breadcrumb a {
color: var(--text-gray);
text-decoration: none;
transition: color 0.3s;
}
.woocommerce-breadcrumb a:hover {
color: var(--primary);
} .nt-breadcrumbs,
.woocommerce-breadcrumb {
padding: 0 !important;
font-size: 14px !important;
display: flex !important;
align-items: center !important;
gap: 8px !important;
flex-wrap: wrap !important;
color: var(--text-gray) !important;
font-family: 'Montserrat', sans-serif !important;
font-weight: 400 !important;
line-height: 1.5 !important;
margin-bottom: 0 !important;
background: transparent !important;
}
.nt-breadcrumbs a,
.nt-breadcrumb-link,
.woocommerce-breadcrumb a {
color: var(--text-gray) !important;
text-decoration: none !important;
transition: color 0.2s ease !important;
display: inline-flex !important;
align-items: center !important;
gap: 4px !important;
font-size: 14px !important;
font-weight: 400 !important;
line-height: 1.5 !important;
border-bottom: none !important;
background: transparent !important;
padding: 0 !important;
font-family: 'Montserrat', sans-serif !important;
}
.nt-breadcrumbs a:hover,
.nt-breadcrumb-link:hover,
.woocommerce-breadcrumb a:hover {
color: #2C3DF5 !important;
text-decoration: underline !important;
background: transparent !important;
transform: none !important;
border-bottom: none !important;
}
.nt-breadcrumbs a:focus,
.nt-breadcrumb-link:focus,
.woocommerce-breadcrumb a:focus {
outline: none !important;
}
.nt-breadcrumb-separator,
.woocommerce-breadcrumb .nt-breadcrumb-separator {
color: var(--text-gray) !important;
margin: 0 4px !important;
font-size: 14px !important;
font-weight: 400 !important;
line-height: 1.5 !important;
user-select: none !important;
font-family: 'Montserrat', sans-serif !important;
}
.nt-breadcrumb-icon {
font-size: 14px !important;
line-height: 1.5 !important;
}
.nt-breadcrumb-current,
.woocommerce-breadcrumb span:not(.nt-breadcrumb-separator) {
color: var(--text-gray) !important;
font-weight: 400 !important;
font-size: 14px !important;
line-height: 1.5 !important;
background: transparent !important;
font-family: 'Montserrat', sans-serif !important;
} @media (max-width: 768px) {
.nt-breadcrumbs,
.woocommerce-breadcrumb {
font-size: 12px !important;
gap: 6px !important;
line-height: 1.4 !important;
}
.nt-breadcrumbs a,
.nt-breadcrumb-link,
.nt-breadcrumb-separator,
.nt-breadcrumb-current,
.nt-breadcrumb-icon,
.woocommerce-breadcrumb a,
.woocommerce-breadcrumb span,
.woocommerce-breadcrumb .nt-breadcrumb-separator {
font-size: 12px !important;
line-height: 1.4 !important;
}
.nt-breadcrumb-separator,
.woocommerce-breadcrumb .nt-breadcrumb-separator {
margin: 0 3px !important;
}
} @media print {
.nt-breadcrumbs,
.woocommerce-breadcrumb {
display: none !important;
}
}    input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
width: 100%;
padding: 14px 20px;
font-size: 15px;
border: 2px solid var(--border);
border-radius: 12px;
background: white;
color: var(--text-dark);
font-family: var(--font-family);
transition: all 0.3s;
}
input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(44, 61, 245, 0.1);
}
textarea {
resize: vertical;
min-height: 120px;
}
label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: var(--text-dark);
font-size: 14px;
} .nt-fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.nt-fade-in.nt-visible {
opacity: 1;
transform: translateY(0);
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; } .nt-grid-2 {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 32px;
}
.nt-grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
}
.nt-grid-4 {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
}
@media (max-width: 1024px) {
.nt-grid-3,
.nt-grid-4 {
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
}
@media (max-width: 768px) {
.nt-grid-2,
.nt-grid-3,
.nt-grid-4 {
grid-template-columns: 1fr;
gap: 16px;
}
}  .single-product .flex-direction-nav,
.single-nt_product .flex-direction-nav,
.nt-product-card .flex-direction-nav,
.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev,
.single-product .flex-nav-next,
.single-product .flex-nav-prev,
.single-nt_product .flex-nav-next,
.single-nt_product .flex-nav-prev {
display: none !important;
visibility: hidden !important;
opacity: 0 !important;
pointer-events: none !important;
} .slick-arrow:not(.slick-prev):not(.slick-next),
.woocommerce-product-gallery .slick-arrow {
display: none !important;
} .nt-product-card .swiper-button-next:not(.gallery-next),
.nt-product-card .swiper-button-prev:not(.gallery-prev),
.single-nt_product .swiper-button-next:not(.gallery-next),
.single-nt_product .swiper-button-prev:not(.gallery-prev) {
display: none !important;
}   .faq-section,
.faq-section * {
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
box-sizing: border-box;
}
.faq-section {
background: #fff !important;
border-radius: 24px !important;
padding: 40px !important;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
margin-bottom: 0 !important;
}
.faq-section .nt-section-title {
font-size: clamp(24px, 4vw, 32px) !important;
font-weight: 800 !important;
color: var(--text-dark) !important;
margin-bottom: 32px !important;
text-align: center !important;
}
.faq-container {
background: var(--bg-faq) !important;
border-radius: 20px !important;
padding: 6px !important;
}
.faq-item {
background: transparent !important;
padding: 26px 32px !important;
margin: 0 !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
border-radius: 16px !important;
}
.faq-item + .faq-item {
margin-top: 4px !important;
}
.faq-item:hover {
background: rgba(44, 61, 245, 0.05) !important;
}
.faq-item.active {
background: #fff !important;
box-shadow: 0 4px 16px rgba(44, 61, 245, 0.12) !important;
}
.faq-question {
display: flex !important;
align-items: center !important;
gap: 20px !important;
font-size: 16px !important;
font-weight: 600 !important;
color: var(--text-dark) !important;
line-height: 1.5 !important;
padding: 0 !important;
margin: 0 !important;
}
.faq-number {
min-width: 38px !important;
width: 38px !important;
height: 38px !important;
border-radius: 12px !important;
background: #fff !important;
color: var(--text-dark) !important;
font-weight: 700 !important;
font-size: 16px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
box-shadow: 0 2px 10px rgba(29, 32, 62, 0.08) !important;
flex-shrink: 0 !important;
transition: all 0.3s ease !important;
}
.faq-item.active .faq-number {
background: var(--primary) !important;
color: #fff !important;
box-shadow: 0 4px 12px rgba(44, 61, 245, 0.3) !important;
transform: scale(1.05) !important;
}
.faq-question-text {
flex: 1 !important;
font-size: 16px !important;
font-weight: 600 !important;
color: var(--text-dark) !important;
}
.faq-icon {
width: 44px !important;
height: 44px !important;
border-radius: 12px !important;
background: #fff !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
position: relative !important;
flex-shrink: 0 !important;
transition: background 0.3s ease !important;
}
.faq-item.active .faq-icon {
background: var(--bg-faq) !important;
}
.faq-icon-line {
position: absolute !important;
background: #213777 !important;
border-radius: 2px !important;
transition: all 0.3s ease !important;
}
.faq-icon-line-horizontal {
width: 16px !important;
height: 2px !important;
}
.faq-icon-line-vertical {
width: 2px !important;
height: 16px !important;
}
.faq-item.active .faq-icon-line-vertical {
opacity: 0 !important;
transform: rotate(90deg) !important;
}
.faq-answer {
max-height: 0 !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
padding: 0 32px 0 76px !important;
font-size: 15px !important;
font-weight: 400 !important;
color: var(--text-muted) !important;
line-height: 1.7 !important;
}
.faq-item.active .faq-answer {
max-height: 600px !important;
padding-top: 16px !important;
}
.faq-answer p {
margin: 0 0 12px !important;
}
.faq-answer p:last-child {
margin-bottom: 0 !important;
} @media (max-width: 768px) {
.faq-section {
padding: 24px 16px !important;
border-radius: 16px !important;
}
.faq-item {
padding: 16px !important;
}
.faq-question {
gap: 12px !important;
}
.faq-number {
width: 36px !important;
height: 36px !important;
min-width: 36px !important;
font-size: 13px !important;
border-radius: 10px !important;
}
.faq-question-text {
font-size: 14px !important;
line-height: 1.4 !important;
}
.faq-icon {
width: 36px !important;
height: 36px !important;
min-width: 36px !important;
border-radius: 10px !important;
}
.faq-answer {
font-size: 14px !important;
padding: 0 0 0 48px !important;
line-height: 1.6 !important;
}
.faq-item.active .faq-answer {
padding-top: 12px !important;
}
.faq-item.active .faq-answer {
padding-top: 12px;
}
}.woocommerce a.button.loading::before,
.woocommerce button.button.loading::before,
.woocommerce input.button.loading::before {
display: none;
}
a.button.loading::after,
button.button.loading::after,
input.button.loading::after{
height: 34px;
width: 100%;
position: absolute;
top: calc(50% - 17px) !important;
right: 0 !important;
content: "" !important;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
background-image: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/Rolling.svg) !important;
background-position: center top;
background-size: contain;
background-repeat: no-repeat;
z-index: 1000;
}
a.button.loading,
button.button.loading,
input.button.loading {
opacity:1 !important;
position: relative;
align-content: center;
padding-right: 0 !important
}
.product a.button.loading,
.product  button.button.loading {
border-color: #F1F2F8 !important;
color: #F1F2F8 !important;
background: #F1F2F8 !important;
}
body {
overflow-x: hidden;
line-height: 20px;
min-height: 100vh;
margin: 0;
padding: 0;
}
html {
font-size: 14px;
line-height: 20px;
}  body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) {
line-height: 1.6;
font-size: 16px;
} body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) .elementor-section,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) .elementor-container,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) .elementor-widget-container,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) .e-con,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) p,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) h1,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) h2,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) h3,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) h4,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) h5,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) h6,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) span,
body.elementor-page:not(.woocommerce):not(.single-nt_product):not(.single-product) div {
line-height: inherit;
}
input[type="text"]:focus, input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="url"]:focus, select:focus, textarea:focus {
border: unset;
border-color: unset;
outline: none;
}
input[type=number] { 
-moz-appearance: textfield;
-webkit-appearance: textfield;
appearance: textfield;
margin: 0; 
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { 
-webkit-appearance: none; 
margin: 0; 
} .e-container .elementor-widget.elementor-widget {
z-index: 1
} #wc-block-search__input-1, .wpc-sorting-form select.wpc-orderby-select {
border: none;
margin: 0;
line-height: 24px;
font-size: 14px;
background: none;
}
#wc-block-search__input-1 {
padding: 0 10px 0 40px;
width: 233px
}
#wc-block-search__input-1::-webkit-input-placeholder {
color:#A2ACC5;
}
#wc-block-search__input-1::-moz-placeholder {
color:#A2ACC5;
}
#wc-block-search__input-1:-ms-input-placeholder {
color:#A2ACC5;
}
#wc-block-search__input-1::-ms-input-placeholder {
color:#A2ACC5;
}
#wc-block-search__input-1::placeholder, .wpc-sorting-form select.wpc-orderby-select {
color:#A2ACC5;
}
.air-woo-widget-right .wc-block-product-search__fields button.wc-block-product-search__button {
background-image: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/search.svg);
border: none;
border-right: none !important;
height: 40px;
padding: 0;
top: 0;
left: 6px;
width: 28px;
background-size: 18px;
}
.air-woo-widget-right .wc-block-product-search__fields, .wpc-sorting-form select.wpc-orderby-select, #secondary a.wpc-filters-open-widget, #secondary .air-cust-sort {
border: none;
border-radius: 8px;
height: 40px;
-ms-flex-line-pack: center;
align-content: center;
background: #f1f2f8;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
#secondary a.wpc-filters-open-widget, #secondary .air-cust-sort {
width: 100%;
color: #A2ACC5
}
#secondary span.wpc-icon-line-1:after, #secondary span.wpc-icon-line-2:after, #secondary span.wpc-icon-line-3:after {
border: 1px solid #A2ACC5;
}
#secondary .wpc-icon-html-wrapper span {
background: #A2ACC5;
}
#secondary a.wpc-filters-open-widget .wpc-button-inner {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-flow: row-reverse;
flex-flow: row-reverse;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;    
}
.wpc-sorting-form {
display: -ms-grid;
display: grid;
grid-template-areas: "select";
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.wpc-sorting-form select.wpc-orderby-select {
-ms-grid-row: 1;
-ms-grid-column: 1;
grid-area: select;
}
.wpc-sorting-form:after {
-ms-grid-row: 1;
-ms-grid-column: 1;
content: "";
width: 0.8rem;
height: 0.5rem;
background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.46875%206.52941L0.46875%201.52941L1.52941%200.46875L5.99908%204.93842L10.4688%200.46875L11.5294%201.52941L6.52941%206.52941C6.23652%206.8223%205.76164%206.8223%205.46875%206.52941Z%22%20fill%3D%22%23A2ACC5%22%2F%3E%0A%3C%2Fsvg%3E%0A");
background-repeat: no-repeat;
-ms-grid-column-align: end;
justify-self: end;
z-index: 1;
margin-right: 10px;
grid-area: select;
}
.air-woo-widget-right {
gap: 12px
}
.air-woo-widget-left h4 {
margin: 0.5rem 0;
font-weight: 700
} .woo-archive-menu {
list-style: none;
-webkit-columns: 260px 3;
-moz-columns: 260px 3;
columns: 260px 3;
-webkit-column-gap: 2rem;
-moz-column-gap: 2rem;
column-gap: 2rem;
}
@media (min-width: 480px) and (max-width: 639px) {
.woo-archive-menu {
width: 70%;
margin: auto;
}
}
.woo-archive-menu img{
display: none;
}
.woo-archive-menu>li>a>img {
display: block;
width:24px;
margin-right: 8px; 
}
.woo-archive-menu-name {
width: 220px
}
.woo-archive-menu-wrap {
background: #FFFFFF;
-webkit-box-shadow: 0px 6px 24px rgba(48, 49, 55, 0.06);
box-shadow: 0px 6px 24px rgba(48, 49, 55, 0.06);
padding: 40px;
}
.woo-archive-menu-wrap>.woo-archive-menu>li>a {
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 24px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 16px
}
.woo-archive-menu-wrap>.woo-archive-menu>li>ul {
margin-left: 32px
}
.woo-archive-menu-wrap .woo-archive-menu li {
margin-bottom: 8px
}
.woo-archive-menu-wrap>.woo-archive-menu>li {
margin-bottom: 30px
}
.woo-archive-menu-wrap>.woo-archive-menu>li>ul>li>ul {
margin-top: 8px;
font-weight: 350;
}
.woo-archive-menu-wrap>.woo-archive-menu>li>ul>li>ul li:before {
content:  "—";
position: relative; }
.woo-archive-menu .woo-archive-menu-count {
color: #a1a6bc;
font-size: 10px;
font-weight: normal;
margin-left: 6px;
} .woo-archive-menu-wrap .show-hide button {
margin: 2rem auto 0;
border-radius: 8px;
border: none;
font-size: 15px;
font-weight: 400;
padding: 15px;
line-height: 15px;
display: block;
}
.woo-archive-menu-wrap .show-hide button.class_link_show_more {
display: none;
}
.woo-archive-menu-wrap .show-hide button.class_link_hide {
display: block;
}
.woocommerce-products-header__title {text-align: center;}
.page-description p, .term-description p, .page-description, .term-description {
font-size: 16px;
margin: 16px auto 32px;
line-height: 24px;
max-width: 650px;
text-align: center;
}
#main .page-description, #main .term-description {display: none;} .air-head {
background-color: #F5F9FF;
display: block;
padding: 12px 0 10px 0;
position: relative;
z-index: 1000;
}
.air-head__header {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr auto 1fr;
grid-template-columns: 1fr auto 1fr;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: 1260px;
margin: 0 auto;
gap: 30px;
padding: 0 40px;
}
.air-head__left {
display: none;
-ms-grid-column: 1;
grid-column: 1;
justify-self: start;
} @media (min-width: 1160px) {
.air-head.active-menu,
.air-head.active-catalog {
position: relative;
}
.air-head.active-menu .air-head__left,
.air-head.active-catalog .air-head__left {
display: flex !important;
align-items: center;
position: fixed;
right: 60px;
top: 40px;
z-index: 10000;
}
.air-head.active-menu .air-head__left .air-head__mobile,
.air-head.active-catalog .air-head__left .air-head__mobile {
display: none !important;
}
.air-head.active-menu .air-head__left .air-head__mega-st,
.air-head.active-catalog .air-head__left .air-head__mega-st {
display: none !important;
}
.air-head.active-menu .air-head__left .air-head__mega-close,
.air-head.active-catalog .air-head__left .air-head__mega-close {
display: block !important;
width: 32px;
height: 32px;
cursor: pointer;
}
}
.air-head__logo-block {
display: flex;
align-items: center;
justify-content: center;
-ms-grid-column: 2;
grid-column: 2;
}
.air-head__header-search {
-ms-grid-column: 3;
grid-column: 3;
justify-self: end;
}
.air-head__mini-cart {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.air-head__mini-cart > div {
position: absolute;
right: 0;
top: -3px; }
.air-head__mini-cart > div > div { }
.air-head__mini-cart a {
padding: 0 !important
}
.air-head__mini-cart i:before {
display: none;
}
.air-head__header input[type=search] {
background: transparent;
border: 0;
border-radius: 0;
border-bottom: 1px solid #000;
} #livesearch{
font-size: 10px;
position: absolute;
background-color: white;
z-index: 1;
width: 100%;
padding: 1.5rem;
border-radius: 0px 0px 0.8rem 0.8rem;
-webkit-box-shadow: 0px 0.4rem 0.5rem -1px #0000001A;
box-shadow: 0px 0.4rem 0.5rem -1px #0000001A;
display: none;
}
.livesearch #livesearch{
display: block;
z-index: 10;
max-height: 60vh;
overflow-y: scroll;
}
.livesearch #livesearch::-webkit-scrollbar {
width: 4px;
height: 2px;
background-color: #F1F2F8;
}
.livesearch #livesearch::-webkit-scrollbar-thumb:hover {
background-color: #E5E5E5;
}
.livesearch #livesearch::-webkit-scrollbar-thumb {
background-color: #E5E5E5;
border-radius: 9em;
}
#submitButton{
background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9.51855' cy='7.07107' r='4' transform='rotate(45 9.51855 7.07107)' stroke='%23213777' stroke-opacity='0.5' stroke-width='2'%3E%3C/circle%3E%3Cline x1='1.29289' y1='15.2973' x2='5.27608' y2='11.3141' stroke='%23213777' stroke-opacity='0.5' stroke-width='2'%3E%3C/line%3E%3C/svg%3E");
}
.searching #submitButton{
width: 1.5rem;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid' style='display:block;shape-rendering:auto' viewBox='0 0 52 52'%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='translate(-24 -24)'%3E%3Canimate attributeName='opacity' begin='-0.9166666666666666s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(30 82.785 -6.785)'%3E%3Canimate attributeName='opacity' begin='-0.8333333333333334s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(60 58.785 17.215)'%3E%3Canimate attributeName='opacity' begin='-0.75s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(90 50 26)'%3E%3Canimate attributeName='opacity' begin='-0.6666666666666666s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(120 44.928 31.072)'%3E%3Canimate attributeName='opacity' begin='-0.5833333333333334s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(150 41.215 34.785)'%3E%3Canimate attributeName='opacity' begin='-0.5s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(180 38 38)'%3E%3Canimate attributeName='opacity' begin='-0.4166666666666667s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(-150 34.785 41.215)'%3E%3Canimate attributeName='opacity' begin='-0.3333333333333333s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(-120 31.072 44.928)'%3E%3Canimate attributeName='opacity' begin='-0.25s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(-90 26 50)'%3E%3Canimate attributeName='opacity' begin='-0.16666666666666666s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(-60 17.215 58.785)'%3E%3Canimate attributeName='opacity' begin='-0.08333333333333333s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3Crect width='6' height='12' x='47' y='24' fill='%232e3de7' rx='3' ry='6' transform='rotate(-30 -6.785 82.785)'%3E%3Canimate attributeName='opacity' begin='0s' dur='1s' keyTimes='0;1' repeatCount='indefinite' values='1;0'/%3E%3C/rect%3E%3C/svg%3E");
}
#searchForm button {
border: 0;
position: absolute;
background-color: transparent;
background-repeat: no-repeat;
width: 2rem;
height: 2rem;
right: 0;
padding: 0;
background-position: center;
bottom: 0.2rem;
}
#closeButton { display: none;
color: #213777;
}
.livesearch #closeButton {
display: block;
}
.livesearch #submitButton, .menusearch #submitButton {
display: none;
}
#livesearch ul {
list-style: none;
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
gap: 0.5rem;
}
#livesearch ul li{
color: #215177;
padding: .7rem ;
background-color: #E1EBF7;
border-radius: 0.8rem;
}
#livesearch ul li a{
font-size: .85rem;
line-height: 1;
color: #215177;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#livesearch ul li a img{
margin: 0 1rem 0.5rem 0;
width: 3rem;
display: block;
height: 3rem;
-o-object-fit: cover;
object-fit: cover;
border-radius: 0.6rem;
}
@media (min-width: 960px) {
#livesearch ul {
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;}
#livesearch{
font-size: 15px;}
#livesearch ul li{
font-size: 1.1rem;
line-height: 1.4rem;}
#livesearch ul li a{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column;
flex-flow: column;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;
}
}
.air-head__header input[type=search] {
background: transparent;
border: 0;
border-radius: 0;
border-bottom: 1px solid #213777;
padding: 0 0 3px 0;
color: #000;
}
.profile-link .air-head__user-menu {
opacity: 0;
-webkit-transition: 0.4s all;
-o-transition: 0.4s all;
transition: 0.4s all;
position: absolute;
top: 80px;
left: 40px;
padding: 12px 2px;
background-color: #fff;
width: 270px;
height: auto;
z-index: -1;
width: 270px;
background: #FFFFFF;
border-radius: 8px;
-webkit-box-shadow: 0 0 10px -5px grey;
box-shadow: 0 0 10px -5px grey;
}
.air-head__mini-menu .profile-link:hover .air-head__user-menu {
top: 60px;
z-index: 1;
opacity: 1;
}
ul.user-menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
gap: 8px;
list-style: none;
}
ul.user-menu li {
width: 100%
}
ul.user-menu li a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0px 0px 0px 24px;
gap: 8px;
font-weight: 400;
font-size: 14px;
line-height: 20px;
margin: 0;
max-width: initial;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
text-decoration: none;
} .air-head__mini-menu ul {
width: 270px
}
.air-head__mini-menu ul.user-menu li a {
height: 48px;
} .woocommerce-MyAccount-navigation ul.user-menu li a {
height: 40px;
}
.woocommerce-MyAccount-navigation ul.user-menu li.myexit {
display: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
background: #FFFFFF;
-webkit-box-shadow: 0px 6px 24px rgba(48, 49, 55, 0.06);
box-shadow: 0px 6px 24px rgba(48, 49, 55, 0.06);
border-radius: 8px;
padding: 12px 0;
width: 23%;
}
.woocommerce-account .woocommerce-MyAccount-content {
width: calc(77% - 30px); 
}
.woocommerce-MyAccount-navigation ul.user-menu li.active {
background: #F3F7FF;
border-left: 2px solid #2C3DF5
}
ul.user-menu li:hover a, ul.user-menu li.active a {
color: #2C3DF5
}
ul.user-menu li a svg {
fill: #213777
}
ul.user-menu li:hover a svg, ul.user-menu li.active a svg {
fill: #2C3DF5
}
ul.user-menu li.myexit a {
color: #F10909
}
ul.user-menu li .um-icon {
width: 22px;
height: 20px
}
.user-menu hr {
display: none
}
.air-head__user-menu .user-menu hr {
display: block;
width: 100%;
height: 0px;
border: 1px solid #EBECF9;
}
.air-head__header-menu-bot, nav.air-head__mini-menu, .air-head__mini-menu .profile-link {
height: 100%;
}
.air-head__mini-menu .profile-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
@media (max-width: 1159px) {
.air-head__header-menu-bot, nav.air-head__mini-menu, .air-head__mini-menu .profile-link {
height: auto;
}
.air-head__mini-menu .profile-link:not(.air-head__header-mob-link) {
display: none;
}
} .air-head__header input[type="search"]::-webkit-search-decoration,
.air-head__header input[type="search"]::-webkit-search-cancel-button,
.air-head__header input[type="search"]::-webkit-search-results-button,
.air-head__header input[type="search"]::-webkit-search-results-decoration { display: none; }
.air-head__header input[type=search]::-webkit-input-placeholder { color: rgba(108, 113, 127, 0.7);
}
.air-head__header input[type=search]::-moz-placeholder { color: rgba(108, 113, 127, 0.7);
opacity: 1;
}
.air-head__header input[type=search]:-ms-input-placeholder { color: rgba(108, 113, 127, 0.7);
}
.air-head__header input[type=search]::-ms-input-placeholder { color: rgba(108, 113, 127, 0.7);
}
.air-head__header input[type=search]::placeholder { color: rgba(108, 113, 127, 0.7);
}
.air-head__header input[type=search]:focus, .air-head__header input[type=search]:focus-visible {
outline: 0 !important
}
nav.air-head__mini-menu a, .air-head__mini-cart > a {
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
font-size: 10px;
max-width: -webkit-max-content;
max-width: -moz-max-content;
max-width: max-content;
margin: 0 5px 0 10px;
}
nav.air-head__mini-menu a svg, .air-head__mini-cart > a svg {
height: 21px;
margin: 0 0 5px 0;
}
.air-head__mini-cart .elementor-menu-cart__toggle .elementor-button-icon {
}
.air-head__mini-cart .elementor-button-icon[data-counter]:before {
background-color: #FF9309 !important;
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0 !important;
top: 3px !important;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
right: -2px !important;
font-size: 8px !important;
height: 13px !important;
width: 13px !important;
}
nav.air-head__mini-menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: right;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
opacity: 1;
max-width: 320px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
} a.air-head__row-catalog {
background: #2C3DF5 !important;
-webkit-box-shadow: 10px 10px 30px rgb(44 61 245 / 30%);
box-shadow: 10px 10px 30px rgb(44 61 245 / 30%);
border-radius: 8px !important;
color: #fff !important;
padding: 14px 32px 14px 24px !important;
font-size: 15px !important;
font-weight: 600 !important;
line-height: 1.2 !important;
display: inline-flex !important;
align-items: center !important;
text-decoration: none !important;
transition: background 0.2s ease !important;
white-space: nowrap !important;
}
a.air-head__row-catalog:hover {
background: #1a2bdb !important;
}
a.air-head__row-catalog svg {
margin: 0 8px 0 0 !important;
flex-shrink: 0;
} .air-head__row-header {
display: -ms-grid;
display: grid;
-ms-grid-columns: auto 1fr;
grid-template-columns: auto 1fr;
gap: 40px;
max-width: 1260px;
margin: 0 auto;
padding: 8px 40px 12px;
align-items: center;
}
.air-head__row-center, .air-head__row-left {
opacity: 1; }
header.air-head.active-menu .air-head__row-center,
header.air-head.active-menu .air-head__row-left {
opacity: 0;
max-height: 0;
overflow: hidden;
}
.air-city {
-webkit-transition: 0.2s all;
-o-transition: 0.2s all;
transition: 0.2s all;
max-width: 322px;
opacity: 1;
white-space: nowrap;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
.air-city img{
margin: 0 10px 0 0;
}
header.air-head.active-menu .air-head__city-block .air-city {
max-width: 0px;
opacity: 0;
}
a.air-city-link {
font-style: normal;
font-weight: 400;
font-size: 15px;
} .air-head__header .air-city .city-icon {
background-image: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/Vector.svg);
width: 11px;
display: block;
height: 16px;
background-size: 11px;
background-repeat: no-repeat;
background-position: center top;
margin-right: 15px;
} .air-head__header-search {
position: relative;
width: 320px;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
header.air-head.active-menu .air-head__header-search {
width: 480px;
} ul#menu-verhnee-menyu li {
white-space: nowrap;
position: relative;
margin: 0;
}
ul#menu-verhnee-menyu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
gap: 32px;
margin: 0;
padding: 0;
list-style: none;
}
ul#menu-verhnee-menyu li a {
font-size: 15px !important;
font-weight: 500 !important;
color: #1a1a2e !important;
text-decoration: none !important;
transition: color 0.2s ease;
}
ul#menu-verhnee-menyu li a:hover {
color: #2C3DF5 !important;
}
ul#menu-verhnee-menyu li ul.sub-menu {
list-style: none;
z-index: -1;
position: absolute;
background: #FFFFFF;
-webkit-box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
padding: 15px;
opacity: 0;
-webkit-transition: 0.6s all;
-o-transition: 0.6s all;
transition: 0.6s all;
top: 50px;
border-radius: 2px;
left: 20px;
min-width: 245px;
}
ul#menu-verhnee-menyu li ul.sub-menu:before {
content: '';
background: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/ug.png);
width: 19px;
height: 15px;
display: block;
position: absolute;
top: -10px;
}   ul#menu-verhnee-menyu li:hover ul.sub-menu {
top: 30px;
z-index: 10000;
opacity: 1;
}
ul#menu-verhnee-menyu li.menu-item-has-children:before {
content: '';
background: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/ga.svg);
width: 9px;
height: 6px;
display: inline-block;
margin: 0 5px 0 0;
}
.air-phone-header {
font-weight: 700;
font-size: 16px;
opacity: 1;
line-height: 99.4%;
text-align: right;
color: #213777;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
.air-head__row-bottom-block-link {
font-style: normal;
font-weight: 400;
font-size: 34px;
color: #213777;
}
header.air-head.active-menu .air-head__row-header .air-phone-header {
font-size: 0;
opacity: 0;
}
ul#menu-verhnee-menyu li ul.sub-menu li {
font-weight: 300;
font-size: 15px;
margin: 0 0 10px 0;
}
ul#menu-verhnee-menyu li ul.sub-menu li:last-child {
margin: 0;
}
ul#menu-verhnee-menyu li a {
font-weight: 400;
font-size: 15px;
line-height: 99.4%;
text-align: center;
color: #213777;
}
.air-head__row-bottom-left nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: auto;
}
.air-head__row-bottom-left nav a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 0 15px 0;
font-weight: 300;
font-size: 20px;
line-height: 28px;
color: #213777;
}
.air-head__row-bottom-left nav a.active {
font-weight: 400;
}
.air-head__row-bottom-left nav a img {
max-width: 40px;
max-height: 40px;
margin: 0 10px 0 0;
}
.air-head__row-bottom-left nav a.air-head__row-bottom-left-sale {
margin: 50px 0 0 0;
}
.air-head__row-bottom-section {
max-width: 1160px;
margin: 45px auto 30px auto;
}
.air-head.active-menu {
padding: 0 0 74px;
}
.air-head.active-menu, .air-head.active-catalog {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 0;
height: 100vh; z-index: 1000;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column;
flex-flow: column;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
width: 100%;
background: #fff;
}
.air-head.active-menu > div, .air-head.active-catalog > div {
width: 100%;
}
.air-head.active-menu .air-head__row-header, .air-head.active-catalog .air-head__row-header {
overflow: auto;
}
@media (min-width: 1159px) {
.air-head.active-menu .air-head__row-header {
display: none;
}
}
body.mega-menu {
overflow: hidden;
}
.air-head.active-menu .air-head__header {
padding: 30px 0 0
}
.air-head.active-menu>div { } .air-head__row-bottom-block {
display: -ms-grid;
display: grid;
-ms-grid-columns: 32% 40px 68%;
grid-template-columns: 32% 68%;
gap: 40px;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
padding: 0 33px;
position: relative;
overflow: hidden;
}
.air-head__row-bottom-left { }
.air-head__row-bottom-right {
position: relative;
}
.air-head__sub-cat-block {
position: absolute;
width: 100%;
left: 0;
top: 50px;
z-index: -1;
opacity: 0;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
span.air-head__sub-count {
color: #6C717F;
font-size: 14px;
}
.air-head__sub-cat-block.air-head__sub-cat-block-active {
top: 0;
z-index: 1;
opacity: 1;
}
.air-head__row-bottom {
max-height: 0;
padding: 0;
margin: 0;
overflow: hidden; }
header.air-head.active-menu .air-head__row-bottom {
max-height: 999px;
overflow-y: auto;
max-width: 1160px;
margin: auto;
}
.air-head__header-menu-bot {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
position: relative;
}
svg.air-head__close-big {
width: 0;
height: 0;
-webkit-transition: 0.5s all;
-o-transition: 0.5s all;
transition: 0.5s all;
cursor: pointer;
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
svg.air-head__close-big:hover {
-webkit-transform: rotate(-360deg);
-ms-transform: rotate(-360deg);
transform: rotate(-360deg);
}
header.air-head.active-menu nav.air-head__mini-menu {
max-width: 0;
opacity: 0;
overflow: hidden;
}
header.air-head.active-menu svg.air-head__close-big {
width: 30px;
height: 30px;
}
.air-head__sub-link {
font-style: normal;
font-weight: 400;
font-size: 22px;
line-height: 88.4%;
color: #213777;
margin: 20px 0 60px 0;
display: inline-block;
}
ul.air-head__sub-link-two {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
}
a.air-head__row-bottom-block-link {
margin: 0 0 15px 0;
display: inline-block;
}
.air-head__sub-link-two {
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 24px;
color: #213777;
}
ul.air-head__sub-link-two,
ul.air-head__sub-three-ul {
list-style: none;
}
ul.air-head__sub-three-ul {
margin: 15px 0 0 0;
}
.air-head__sub-link-three {
font-weight: 300;
}
.air-head__sub-two-li, .air-head__sub-three-li {
margin: 0 0 15px 0;
}
.air-head__row-bottom-left, .air-head__row-bottom-right {
height: 732px;
overflow: auto
} .air-head__row-bottom-left::-webkit-scrollbar, .air-head__row-bottom-right::-webkit-scrollbar, .air-head__row-bottom-section .scroll-wrap::-webkit-scrollbar, header.air-head.active-menu .air-head__row-bottom::-webkit-scrollbar {
width: 4px; height: 2px; background-color: #F1F2F8;
} .air-head__row-bottom-left::-webkit-scrollbar-thumb, .air-head__row-bottom-right::-webkit-scrollbar-thumb, .air-head__row-bottom-section .scroll-wrap::-webkit-scrollbar-thumb, header.air-head.active-menu .air-head__row-bottom::-webkit-scrollbar-thumb {
background-color: #E5E5E5;
border-radius: 9em;
}
.air-head__row-bottom-left::-webkit-scrollbar-thumb:hover, .air-head__row-bottom-right::-webkit-scrollbar-thumb:hover, .air-head__row-bottom-section .scroll-wrap::-webkit-scrollbar-thumb:hover, header.air-head.active-menu .air-head__row-bottom::-webkit-scrollbar-thumb:hover {
background-color: #E5E5E5;
}
@media (max-width: 1159px) {
.air-head__row-bottom-left, .air-head__row-bottom-right { overflow: hidden;
-webkit-transition:0.3s all;
-o-transition:0.3s all;
transition:0.3s all;
}
.air-head__row-bottom-left{
left: 0;
position: relative;
}
.air-head__row-bottom-left.active{
left: -999px;
}
}
@media (max-width: 1159px) {
.air-head__header-search, header.air-head.active-menu .air-head__header-search {
width: 100%;
}
.air-head__row-bottom-section {
max-width: 960px;
margin: 45px auto 30px auto;
}
.air-head__row-bottom-block {
-ms-grid-columns: 35% 25px 65%;
grid-template-columns: 35% 65%;
gap: 25px;
padding: 0;
}
.air-head__header {
max-width: 960px;
margin: 0 auto 30px;
}
.air-head__row-header {
display: -ms-grid;
display: grid;
-ms-grid-columns: 15% 70% 15%;
grid-template-columns: 15% 70% 15%;
max-width: 960px;
margin: 0 auto;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
ul#menu-verhnee-menyu li {
margin: 0 20px;
}
a.air-head__row-catalog {
padding: 13px 35px 13px 25px;
font-size: 14px;
}
}
.air-head__mobile, .air-head__mega {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: relative;
width: 30px;
height: 60px;
}
.air-head__mega img {
position: absolute;
width: 20px;
height: 20px;
}
nav.air-head__mini-menu a.air-head__header-mob-link, .air-head__mobile, .air-head__mega {
display: none;
}
.air-head__ar-mobile{
display: none;
}
.air-head__row-bottom-mobile-block {
display: none;
}
@media (min-width: 480px) and (max-width: 1159px) {
.air-head__row-bottom-right.active .scroll-wrap {
width: 50%;
float: left;
height: 70%
}
.scroll-wrap.right {
padding-left: 20px
}
.scroll-wrap.right ul.air-head__sub-three-ul {
margin: 0;
opacity: 0;
position: absolute;
left: 70px
}
.scroll-wrap.left .air-head__sub-three-ul {
display: none;
}
.woocommerce a.clicked {
color:black;
}
}
.phone__hero{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 5px;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row!important;
flex-direction: row!important;
font-size: 16px!important;
}
@media (max-width: 1159px) {
.phone__hero span{
display: none!important;} header.air-head.active-menu .air-head__row-bottom {
max-height: unset;
overflow: hidden;
}
.air-head__row-bottom-section nav, .air-head__sub-link-two_sub-cat .air-head__sub-three-ul {
padding:0 0 75px;
}
.air-head__row-bottom-left, .air-head__row-bottom-right, .air-head__sub-cat-block.air-head__sub-cat-block-active {
height: 100%
}
.air-head .scroll-wrap {
height: 88%;
overflow-y: scroll;
position: relative;
}
.air-head.active-catalog .air-head__row-bottom, .air-head.active-menu .air-head__row-header {
display: none;
}
body.mega-menu .air-head__header-menu-bot, body.mega-menu .air-phone-header, body.mega-menu .air-head__city-block {
display: none;
}
.air-head__ar-mobile{
display: inline-block;
z-index: 2;
position: relative;
cursor:pointer;
font-weight: 300;
font-size: 16px;
}
.air-head__sub-link {
color: #213777;
margin: 50px 0 30px 0;
width: 100%
}
.air-head__row-bottom-block {
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
height: 100%;
}
.air-head.active-catalog .air-head__row-bottom-mobile-block, .air-head.active-menu .air-head__row-bottom-mobile-block {
display: block;
}
.air-head__row-bottom-mobile-block { }
.we-are-social {
max-width: 100%;
padding: 24px 0 40px;
}
.we-are-social ul {
list-style: none;
display: flex;
align-items: center;
gap: 12px;
margin: 0;
padding: 0;
}
.air-phone-mobile-block {
font-weight: 700;
font-size: 16px;
opacity: 1;
line-height: 99.4%;
color: #213777;
margin-top: 22px;
}
.air-head__mobile-city-block .air-city .city-icon {
background-image: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/loc_lite.svg);
width: 11px;
display: block;
height: 16px;
background-size: 11px;
background-repeat: no-repeat;
background-position: center top;
margin-right: 15px;
}
.air-head__mobile-city-block .air-city {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
}
.air-head__mobile-city-block .air-city-link {
font-weight: 350;
font-size: 12px;
}
.air-head__mobile-city-block .air-city-link:after {
content: '';
background: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/ga.svg);
width: 9px;
height: 6px;
display: inline-block;
margin: 0 0 0 6px;
opacity: .3;
}
header.air-head.active-menu .air-head__header-search {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
max-width: calc(100% - 40px);
margin: 0 20px;
}
.air-head__row-left, #menu-verhnee-menyu > li {
border-bottom: 1px solid #f1f2f8;
}
.air-head.active-menu {
background: #ffffff;
}
ul#menu-verhnee-menyu li a, a.air-head__row-catalog, .air-head__row-bottom-left nav a, .air-head__sub-link-two {
font-size: 24px;
font-weight: 400;
line-height: 30px
}
.air-head__sub-link-three {
font-size: 14px
}
.air-head__sub-link .air-head__sub-count {
display: none;
}
span.air-head__sub-count {
font-size: 12px
}
a.air-head__row-bottom-block-link, .air-head__sub-link {
color:#000 !important;
font-size: 24px;
font-weight: 400;
text-decoration: underline;
text-underline-offset: 3px;
margin: 60px 0 40px;
line-height: 36px;
}
ul.air-head__sub-link-two {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
.air-head__row-bottom-section { margin: auto;
max-width: 960px;
height: 100%
}
.air-head__row-bottom-mobile-block .air-head__row-bottom-section {
margin: 40px auto 0;
padding: 0 20px;
}
.air-head__row-bottom-left {
padding-left: 0;
}
.air-head__row-bottom-left nav {
padding-left: 0;
}  .air-head.active-menu .air-head__row-bottom,
.air-head.active-catalog .air-head__row-bottom {
padding: 0 24px;
}
.air-head__row-bottom-section {
padding: 0 24px !important;
} .air-head.active-menu .air-head__row-header,
.air-head.active-catalog .air-head__row-header {
padding: 0 24px !important;
}
.air-head__row-header-menu {
padding: 0 !important;
} .air-head__row-left {
padding: 0 !important;
} a.air-head__row-catalog {
padding: 16px 0 !important;
margin: 0 !important;
display: block !important;
font-size: 20px !important;
font-weight: 600 !important;
color: #1a1a2e !important;
text-align: left !important;
background: none !important;
box-shadow: none !important;
border-bottom: 1px solid #E8ECF4 !important;
} ul#menu-verhnee-menyu {
padding: 0 !important;
margin: 0 !important;
flex-direction: column !important;
list-style: none !important;
text-align: left !important;
}
ul#menu-verhnee-menyu > li {
margin: 0 !important;
padding: 0 !important;
border-bottom: 1px solid #E8ECF4 !important;
text-align: left !important;
}
ul#menu-verhnee-menyu > li:last-child {
border-bottom: none !important;
} ul#menu-verhnee-menyu > li > a {
font-size: 20px !important;
font-weight: 600 !important;
color: #1a1a2e !important;
text-decoration: none !important;
display: block !important;
padding: 16px 0 !important;
text-align: left !important;
line-height: 1.3 !important;
} ul#menu-verhnee-menyu li ul.sub-menu {
padding: 0 0 8px 0 !important;
margin: 0 !important;
background: transparent !important;
box-shadow: none !important;
position: relative !important;
opacity: 1 !important;
z-index: 1 !important;
}
ul#menu-verhnee-menyu li ul.sub-menu li {
margin: 0 !important;
padding: 0 !important;
border-bottom: none !important;
} ul#menu-verhnee-menyu li ul.sub-menu li a {
font-size: 16px !important;
font-weight: 400 !important;
color: #5A6178 !important;
padding: 10px 0 10px 16px !important;
display: block !important;
text-align: left !important;
border-left: 2px solid #E8ECF4 !important;
margin-left: 0 !important;
line-height: 1.4 !important;
}
ul#menu-verhnee-menyu li ul.sub-menu li a:hover {
color: #2C3DF5 !important;
border-left-color: #2C3DF5 !important;
} .air-head__row-bottom-mobile-block {
display: none;
}
.we-are-social ul {
margin: 0;
padding: 0;
gap: 12px;
justify-content: flex-start;
display: flex;
flex-wrap: wrap;
}
.we-are-social ul li {
list-style: none;
}
.we-are-social ul li a {
display: flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
background: #F0F4FF;
border-radius: 14px;
transition: all 0.2s ease;
}
.we-are-social ul li a:hover,
.we-are-social ul li a:active {
background: #2C3DF5;
}
.we-are-social ul li a svg {
width: 26px !important;
height: 26px !important;
}
.we-are-social ul li a:hover svg circle,
.we-are-social ul li a:hover svg path,
.we-are-social ul li a:active svg circle,
.we-are-social ul li a:active svg path {
fill: white !important;
} a.air-head__row-bottom-block-link {
font-size: 20px !important;
font-weight: 700 !important;
color: #1a1a2e !important;
text-decoration: none !important;
margin-bottom: 16px !important;
padding-bottom: 16px !important;
display: block !important;
border-bottom: 1px solid #E8ECF4 !important;
text-align: left !important;
} .air-head__row-bottom-left nav a {
font-size: 16px !important;
font-weight: 400 !important;
color: #1a1a2e !important;
padding: 14px 0 !important;
display: flex !important;
align-items: center !important;
gap: 12px !important;
border-bottom: 1px solid #E8ECF4 !important;
text-align: left !important;
}
.air-head__row-bottom-left nav a:last-child {
border-bottom: none !important;
}
.air-head__row-bottom-left nav a img {
width: 36px;
height: 36px;
object-fit: contain;
}
nav.air-head__mini-menu .air-head__no-mobile,
.air-head__mini-cart > .air-head__no-mobile {
display: none;
}
nav.air-head__mini-menu a.air-head__header-mob-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
nav.air-head__mini-menu a svg, .air-head__mini-cart > a svg {
height: 14px;
}
nav.air-head__mini-menu a svg path, .air-head__mini-cart > a svg path,
nav.air-head__mini-menu a svg circle, .air-head__mini-cart > a svg circle,
nav.air-head__mini-menu a svg mask, .air-head__mini-cart > a svg mask,
nav.air-head__mini-menu a svg line, .air-head__mini-cart > a svg line {
fill: white;
stroke: #6C717F;
stroke-width: 1;
}
nav.air-head__mini-menu a.active svg path, .air-head__mini-cart.active > a svg path,
nav.air-head__mini-menu a.active svg circle, .air-head__mini-cart.active > a svg circle,
nav.air-head__mini-menu a.active svg mask, .air-head__mini-cart.active > a svg mask,
nav.air-head__mini-menu a.active svg line, .air-head__mini-cart.active > a svg line {
stroke: #2C3DF5;
}
.air-head__row-header {
max-width: 960px; -ms-grid-columns: 1fr;
grid-template-columns: 1fr;
overflow: hidden;
max-height: 0; }
.air-head__mobile, .air-head__mega {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
header.air-head.active-catalog .air-head__mobile,
header.air-head.active-menu .air-head__mobile {
width: 0;
display: none;
}
a.custom-logo-link {
margin: 0;
-webkit-transition: 0.6s all;
-o-transition: 0.6s all;
transition: 0.6s all;
}
header.air-head.active-catalog a.custom-logo-link,
header.air-head.active-menu a.custom-logo-link {
margin: 0 calc(100% - 124px) 0 0;
}
.air-head:not(.active-menu) .air-head__header {
flex-wrap: wrap; }
header.air-head.active-catalog {
background: #fff;
padding-top: 30px
}
.mega-menu div[data-elementor-type='wp-page']{
position: fixed;
}
header.air-head.active-catalog img.air-head__mega-st,
header.air-head.active-menu img.air-head__mega-st {
width: 0;
}
header.air-head.active-catalog img.air-head__mega-close,
header.air-head.active-menu img.air-head__mega-close {
width: 30px;
height: 30px;
}
header.air-head.active-catalog .air-head__mega {
width: 30px;
height: 30px;
}
header.air-head.active-catalog .air-head__row-header {
max-height: 999px;
}
.air-head__header {
display: -ms-grid;
display: grid;
-ms-grid-columns: auto 1fr auto;
grid-template-columns: auto 1fr auto;
padding: 0 20px;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.air-head__left {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 10px;
-ms-grid-column: 1;
grid-column: 1;
justify-self: start;
padding-left: 0;
}
.air-head__logo-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-grid-column: 2;
grid-column: 2;
}
.air-head__header-search {
-ms-grid-column: 3;
grid-column: 3;
justify-self: end;
margin-left: 0;
} .air-head.active-menu .custom-logo-link {
display: none;
}
.air-head:not(.active-menu) .air-head__header-search {
position: absolute;
right: 1999px;
}
.air-head.active-menu .air-head__header-search {
position: static;
right: auto;
}
.air-head.active-menu .air-head__header { width: 100%
}
.air-head.active-menu .air-head__mobile, .air-head.active-menu  a.custom-logo-link {
display: none;
}
.air-head.active-menu .air-head__header {
padding: 72px 20px 0;
max-width: 960px;
position: relative;
width: 100%;
display: block;
box-sizing: border-box;
}
.air-head.active-menu .air-head__left {
position: absolute;
top: 20px;
right: 20px;
height: 30px;
}
.air-head.active-menu .air-head__logo-block {
display: none;
}
form.woocommerce-product-search {
position: relative;
}
.air-head__header-menu-bot {
position: fixed;
bottom: 0;
left: 0;
background: #FFFFFF;
-webkit-box-shadow: 4px 0 4px rgb(0 0 0 / 10%);
box-shadow: 4px 0 4px rgb(0 0 0 / 10%);
z-index: 900;
padding: 15px 0 15px 0;
width: 100%;
}
nav.air-head__mini-menu {
display: -ms-grid;
display: grid;
-ms-grid-columns: (1fr)[5];
grid-template-columns: repeat(5, 1fr);
text-align: right;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 640px;
margin: 0 auto;
}
[data-order="1"] {-webkit-box-ordinal-group: 2;-ms-flex-order: 1;order: 1}
[data-order="2"] {-webkit-box-ordinal-group: 3;-ms-flex-order: 2;order: 2}
[data-order="3"] {-webkit-box-ordinal-group: 4;-ms-flex-order: 3;order: 3}
[data-order="4"] {-webkit-box-ordinal-group: 5;-ms-flex-order: 4;order: 4}
[data-order="5"] {-webkit-box-ordinal-group: 6;-ms-flex-order: 5;order: 5}
.air-head__mini-cart {
display: block;
}
.air-head__mobile img {
width: 23px;
height: 18px;
}
.air-head__mega img {
width: 30px;
height: 30px;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}
.air-head__mega .air-head__mega-close {
width: 0;
height: 0;
}
nav.air-head__mini-menu a, .air-head__mini-cart > a {
font-weight: 350;
font-size: 10px;
line-height: 99.4%;
text-align: center;
color: #6C717F;
margin: 0;
}
nav.air-head__mini-menu a.active, nav.air-head__mini-menu .active a, .air-head__mini-cart > a.active {
color: #2C3DF5;
}
a.air-head__row-catalog svg {
margin: 0 10px 0 0;
display: none;
}
a.air-head__row-catalog {
padding: 16px 0;
-webkit-box-shadow: none;
box-shadow: none;
background: none !important;
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 1.3;
color: #1a1a2e !important;
border-bottom: 1px solid #E8ECF4;
letter-spacing: -0.035em;
color: #213777 !important;
}
ul#menu-verhnee-menyu {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
ul#menu-verhnee-menyu li {
margin: 10px 0 0 0;
padding-bottom: 10px;
}
ul#menu-verhnee-menyu li.menu-item-has-children:before {
display: none;
}
ul#menu-verhnee-menyu li.menu-item-has-children > a:after, .air-head__row-bottom-right nav .has-children a.air-head__sub-link-two:after {
content: '';
background: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/arrow-right.svg);
width: 8px;
height: 12px;
display: inline-block;
margin: 0 0 -1px 10px; background-repeat: no-repeat;
background-position: center bottom;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
ul#menu-verhnee-menyu li.menu-item-has-children.active > a:after {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
ul#menu-verhnee-menyu li ul.sub-menu {
position: relative;
top: 0;
z-index: 100;
opacity: 1;
left: 0;
padding: 10px 0 10px 15px;
background: unset;
-webkit-box-shadow: none;
box-shadow: none;
}
ul#menu-verhnee-menyu li ul.sub-menu:before {
display: none;
}
ul#menu-verhnee-menyu li a {
font-weight: 500;
font-size: 18px;
line-height: 1.4;
letter-spacing: -0.01em;
color: #1a1a2e;
}
ul#menu-verhnee-menyu>li>a {
font-size: 18px;
}
.air-head__city-block {
display: block;
position: absolute;
}
.air-head__city-block {
display: block;
position: fixed;
bottom: 0;
}
.air-phone-header {
display: block;
position: fixed;
bottom: 0;
}
ul#menu-verhnee-menyu li:hover ul.sub-menu {
top: 0;
}
.air-head__row-bottom-right {
position: absolute;
top: 0;
right: -960px;
z-index: 9999;
width: 100%;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
.air-head__row-bottom-right.active {
right: 0;
}
}
@media (max-width: 959px) {
.air-head__header, header.air-head .air-head__row-header, .air-head.active-menu .air-head__header {
max-width: 640px;
}
.air-head__row-bottom-section {
max-width: 640px
}
}
@media (max-width: 639px) {
.air-head__header, .air-head__row-bottom-mobile-block, .air-head.active-menu>div, .air-head:not(.active-menu) .air-head__header,header.air-head.active-menu .air-head__row-bottom {
max-width: 480px;
margin: 0 auto;
}
.air-head__row-bottom-section {
padding: 0 20px;
}
.air-head__header, .air-head.active-menu>div,.air-head:not(.active-menu) .air-head__header {
margin: 0 auto 15px;
}
.air-head.active-menu>div.air-head__row-bottom { }
.air-head__ar-mobile {
font-size: 12px
}
ul#menu-verhnee-menyu li a, .air-head__row-bottom-left nav a, .air-head__sub-link-two {
font-size: 18px;
font-weight: 350;
}
ul#menu-verhnee-menyu .sub-menu li a {
font-size: 14px
}
.air-head__sub-link-three {
font-size: 14px
}
span.air-head__sub-count {
font-size: 10px
}
.air-head__row-bottom-block-link, .air-head__sub-link {
color:#000 !important;
font-size: 24px;
font-weight: 400;
text-decoration: underline;
text-underline-offset: 2px;
}
.air-head.active-menu .air-head__header { }
}    .wc360-container {
width: auto !important;
height: auto !important;
display: none;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: -70px;
margin-bottom: -30px;
margin-right: -160px;
margin-left: -190px; }
.wc360-container .threesixty {
width: 100%;
margin: 0;
}
.elementor-2508 .elementor-element.elementor-element-2488e9d.elementor-element{margin-top: -60px}
@media (max-width: 768px) {
.elementor-2508 .elementor-element.elementor-element-2488e9d.elementor-element{margin-top: -20px}
}
.threesixty-controls {
display: none !important;
}
.preload-image-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: -70px;
margin-bottom: -30px;
margin-right: -160px;
margin-left: -190px;
}
.preload-image-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: -25px;
margin-bottom: 0;
margin-right: -21px;
margin-left: -71px;
}
.preload-image,
.threesixty_images img {
max-height: 640px;
-o-object-fit: contain;
object-fit: contain;
}
.attribute-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0 40px 40px 40px;
}
.attribute-list {
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-right: 10px;
}
.attribute-list + .attribute-list { }
.attribute-item {
font-size: 16px;
padding: 0 10px 0 0;
}
.equipment-list {
display: -ms-grid;
display: grid;
gap: 20px; -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
grid-template-columns: repeat(4, 1fr);
padding-top: 20px;
} .equipment-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: #e1ebf7;
border-radius: 23px;
padding: 5px;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
max-width: 150px;
width: 100%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
border: #2C3DF580 solid 1px;
gap: 10px;
-webkit-box-shadow: 10px 10px 30px 0 rgba(44, 61, 245, 0.3);
box-shadow: 10px 10px 30px 0 rgba(44, 61, 245, 0.3);
}
.equipment-image-wrapper {
width: 90px;
-ms-flex-negative: 0;
flex-shrink: 0;
height: 90px;
background-color: #fff;
border: #2C3DF580 solid 1px!important;
border-radius: 23px;
padding: 17px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.equipment-image {
max-width: 100%;
max-height: 100%;
-o-object-fit: contain;
object-fit: contain;
border: #2C3DF580 solid 1px;
}
.equipment-title {
color: #213777;
font-size: 14px;
font-weight: bold;
line-height: 1.2em;
padding: 0 10px; }
.el-animation {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
} .mini-cart__container {
width: 70px;
height: 70px;
position: fixed; bottom: 0px;
top: 0;
margin: auto; right: 25px;
z-index: 4000;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.mini-cart__container[data-count="0"] {
display: none;
}
.mini-cart__container.hidden {
display: none;
}
.mini-cart__container::after {
content: attr(data-count);
position: absolute;
bottom: -2px;
right: -2px;
background-color: #1d0b52;
color: #f5f9ff;
width: 24px;
height: 24px;
line-height: 24px;
font-size: 14px;
border-radius: 50%;
text-align: center;
}
.mini-cart__container:hover .mini-cart {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.mini-cart__container:hover .mini-cart__tooltip {
opacity: 1;
}
.mini-cart {
background-color: #eef1f7;
border-radius: 50%;
width: 60px;
height: 60px;
-ms-flex-negative: 0;
flex-shrink: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
cursor: pointer;
-webkit-transition: -webkit-transform 0.2s ease-in-out;
transition: -webkit-transform 0.2s ease-in-out;
-o-transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.mini-cart svg {
height: 34px;
width: 34px;
}
.mini-cart__tooltip {
opacity: 0;
position: absolute;
-webkit-transform: translateX(0%) translateY(-50%);
-ms-transform: translateX(0%) translateY(-50%);
transform: translateX(0%) translateY(-50%);
top: 50%;
right: 120%;
white-space: nowrap;
background: #292929;
color: #fff;
font-size: 15px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 9px 13px;
border-radius: 3px;
-webkit-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
cursor: pointer;
}
.mini-cart__tooltip::after {
content: "";
position: absolute;
width: 0;
height: 0;
border: solid transparent;
border-width: 10px;
top: 50%;
right: -20px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
border-left-color: #292929;
}
@media (min-width: 1160px) {
.air-head__row-left{
margin-top:9px;
}
.air-head__header {
margin: 30px auto 20px;
}
ul#menu-verhnee-menyu li a {
height: 100%;
display: inline-block;
line-height: 40px;
}
}
@media (max-width: 1159px) {
.woo-archive-menu-wrap>.woo-archive-menu>li>ul {
display: none
}
.woo-archive-menu-wrap .show-hide button.class_link_show_more {
display: block;
}
.woo-archive-menu-wrap .show-hide button.class_link_hide {
display: none;
}
.preload-image-wrapper,
.wc360-container { margin: auto;
}
.attribute-item {
font-size: 14px;
}
}
@media (max-width: 959px) {
.preload-image-wrapper,
.wc360-container {  margin: auto;
}
.attribute-wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 0 30px 30px 30px;
}
.attribute-list {
padding: 0px;
}
.attribute-list + .attribute-list {
padding: 0px;
}
.equipment-list {
gap: 15px;
-ms-grid-columns: 2fr;
grid-template-columns: repeat(2, 1fr);
}
.mini-cart__container:hover .mini-cart {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.mini-cart__tooltip {
display: none;
}
}
@media (max-width: 639px) {
.preload-image-wrapper,
.wc360-container {
max-height: 39vh;
height: auto;
} }
.woocommerce nav.woocommerce-pagination ul {
border: 0;
}
.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
display: inline-block;
color: rgb(29, 11, 82);
font-size: 16px;
font-weight: 400;
padding-bottom: 4px;
border: 0;
min-width: 34px;
min-height: 34px;
margin: 4px;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
background: #fff !important;
color: #213777;
border-radius: 5px;
border: 1px solid #f5f9ff;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
background: #ebe9eb;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
color: #a19ab4;
border: 1px solid transparent;
} @media (max-width: 1159px) {
.air-head {
padding: 15px 0 0 0;
}
.elementor-3487 .elementor-element.elementor-element-fb7f832 {
width: 35px
}
.elementor-3487 .elementor-element.elementor-element-fb7f832 .elementor-button-icon {
width: 35px;
height: 24px;
}
} .threesixty .threesixty_images img {
max-height: 640px;
}
@media (max-width: 980px) {
.threesixty .threesixty_images img {
max-height: 500px;
}
}
@media (max-width: 840px) {
.threesixty .threesixty_images img {
max-height: 450px;
}
}
@media (max-width: 768px) {
.threesixty .threesixty_images img {
max-height: 300px;
}
}  @media (max-width: 768px) {
.air-modal-cart .woocommerce-cart-form tr.woocommerce-cart-form__cart-item {
display: -ms-grid;
display: grid; 
-ms-grid-columns: 70px 1fr 1fr 32px; 
grid-template-columns: 70px 1fr 1fr 32px; 
-ms-grid-rows: auto auto; 
grid-template-rows: auto auto; 
padding: 4px 0;
grid-template-areas: 
"image title title remove"
"image quantity subtotal remove"; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-thumbnail {
grid-area: image;
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-name {
grid-area: title;
width: 100%;
white-space: inherit;
margin-left: 8px
}
.air-modal-cart tr.woocommerce-cart-form__cart-item  td.product-name a {
font-size: 16px
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-quantity {
grid-area: quantity;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-subtotal {
grid-area: subtotal;
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-remove {
grid-area: remove;
}
}
@media (max-width: 768px){
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-thumbnail {
-ms-grid-row: 1;
-ms-grid-row-span: 2;
-ms-grid-column: 1; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-name {
-ms-grid-row: 1;
-ms-grid-column: 2;
-ms-grid-column-span: 2; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-quantity {
-ms-grid-row: 2;
-ms-grid-column: 2; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-subtotal {
-ms-grid-row: 2;
-ms-grid-column: 3; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-remove {
-ms-grid-row: 1;
-ms-grid-row-span: 2;
-ms-grid-column: 4; 
}
}
@media (max-width: 479px) {
ul#menu-verhnee-menyu li a {
font-size: 16px;
line-height: 16px
}
ul#menu-verhnee-menyu>li>a {
font-size: 18px;
line-height: 18px
}
.air-modal-cart .woocommerce-cart-form tr.woocommerce-cart-form__cart-item {
-ms-grid-columns: 70px 1fr 32px;
grid-template-columns: 70px 1fr 32px; 
grid-template-areas: 
"image title remove"
"image quantity remove"
"image subtotal remove"; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-name {
text-align: center;
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-subtotal {
text-align: center;
width: 100%;
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-thumbnail {
-ms-grid-row: 1;
-ms-grid-row-span: 3;
-ms-grid-column: 1; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-name {
-ms-grid-row: 1;
-ms-grid-column: 2;
-ms-grid-column-span: 1; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-quantity {
-ms-grid-row: 2;
-ms-grid-column: 2; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-subtotal {
-ms-grid-row: 3;
-ms-grid-column: 2; 
}
.air-modal-cart tr.woocommerce-cart-form__cart-item .product-remove {
-ms-grid-row: 1;
-ms-grid-row-span: 3;
-ms-grid-column: 3; 
}
} .air-form-title {
font-size: 36px;
font-weight: bold;
line-height: 36px;
margin-top: 50px;
}
.air-form-image {
margin: -45px 0px 0px -204px;
}
.elementor .air-form-image img{
max-height: 72vh;
max-width: 1116px;
-o-object-fit: contain;
object-fit: contain;
}
@media (max-width: 479px) {
.air-form-title {
font-size: 28px;
}
}
@media (max-width: 1159px) {
.air-form-image {
margin: 0 0 -1px -185px;
}
.elementor .air-form-image img{
height: 533px;
max-width:100vw;
}
} @media (max-width: 479px) {
.air-head__sub-three-ul{
display: none;
font-size: 8px;
line-height: 10px;
}
.air-head__row-bottom-right nav .has-children a.air-head__sub-link-two:after {
display: none !important;
}
.air-head__row-bottom-right nav .has-children a.air-head__sub-link-two:before {
content: '';
background: url(//nakedtechnologies.org/wp-content/themes/hello-elementor-child/assets/img/arrow-right.svg);
width: 10px;
height: 8px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
background-repeat: no-repeat;
background-position: center bottom;
-webkit-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
position: absolute;
left: 0px;
top: 8px;
}
.air-head__sub-two-li {
position: relative;
margin: 6px 0 6px 0;
border-bottom: 1px solid #F1F2F8;
}
a.air-head__sub-link-two {
margin-left: 15px;
font-size: 18px;
line-height: 34px;
}
.air-head__sub-three-li {
margin: 0 0 0 15px;
}
.air-head__sub-link-three {
font-size: 14px;
line-height: 30px; }
.air-head__sub-three-mark {
font-size: 14px;
margin-right: -4px;
line-height: 10px;
}
ul.air-head__sub-three-ul {
margin: 0 0 6px 0;
}
}
.no-equipment {
padding: 25px;
height: 100%;
width: 100%;
background-color: #F3F7FF;
border-radius: 20px 20px 20px 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: 20px;
}
.wpc_show_bottom_widget .wpc-filters-widget-main-wrapper #wpc_sorting_widget-4 .widget-title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.elementor-2508 .elementor-element.elementor-element-e46f83d .elementor-heading-title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-flow: row-reverse;
flex-flow: row-reverse;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
gap: 8px;
}
.elementor-2508 .elementor-element.elementor-element-e46f83d .elementor-heading-title del span.woocommerce-Price-amount.amount {
font-size: 16px;
line-height: 16px;
}
@media (max-width:1024px) {
.elementor-2508 .elementor-element.elementor-element-e46f83d .elementor-heading-title {
-webkit-box-pack:center;
-ms-flex-pack:center;
justify-content:center
}
.elementor-element-5e01599 > .e-con-inner {
gap: 2px;
}
}
@media (max-width:479px) {
.elementor-2508 .elementor-element.elementor-element-e46f83d .elementor-heading-title del span.woocommerce-Price-amount.amount {
font-size: 12px;
line-height: 12px;
}
} body.woocommerce-account .site-main {
max-width: 1160px;
padding: 30px 0;
margin: 0 auto;
} .woocommerce-account .page-header {
display: none;
}
.woocommerce-MyAccount-content.wishlist-content .empty-message, .woocommerce-MyAccount-content.compare-content .empty-message {
display: none;
}
.woocommerce-MyAccount-content .empty-message {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: auto;
height: 200px;
width: 100%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column;
flex-flow: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
h3.empty-message-title {
font-weight: 700;
font-size: 20px;
line-height: 24px;
}
.empty-message a.go-shopping {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 12px 24px;
gap: 10px;
background: #2C3DF5;
border-radius: 8px;
font-weight: 400;
font-size: 14px;
line-height: 24px;
color: #FFFFFF !important;
text-decoration: none;
}
.hidden, [data-id="e6b525b"] {display: none !important;}
@media (min-width:900px) {
body.woocommerce #content div.product .elementor-widget-woocommerce-product-images div.images, body.woocommerce div.product .elementor-widget-woocommerce-product-images div.images, body.woocommerce-page #content div.product .elementor-widget-woocommerce-product-images div.images, body.woocommerce-page div.product .elementor-widget-woocommerce-product-images div.images {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
max-width: 670px;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
gap: 31px;
}
.woocommerce .elementor-26591 .elementor-element.elementor-element-b1ac4d7 .flex-viewport:not(:last-child) {
-ms-flex-preferred-size: 83%;
flex-basis: 83%;
max-width: 550px;
}
.woocommerce .elementor-26591 .elementor-element.elementor-element-b1ac4d7 .flex-control-thumbs {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
max-width: 53px;
-ms-flex-preferred-size: 15%;
flex-basis: 15%;
}
.woocommerce .elementor-26591 .elementor-element.elementor-element-b1ac4d7 .flex-control-thumbs li {
width: 53px;
}
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
left: .5em;
right: 0;
display: none;
}
.teh-haraktiristikiver{
margin: auto;
}
.elementor-element.elementor-element-1a11611.e-con-full.e-flex.e-con[data-id="f445579"]{
display: none;
}
[data-id="1a11611"] > .e-con-inner{
gap: 0!important;
}
[data-id="1a11611"] > .e-con-inner > *{
margin-bottom: 20px!important;
}
.header__phone{
white-space: nowrap!important;
font-weight: 700;
font-size: 16px!important;
padding-right: 20px
} nav.air-head__mini-menu a, .air-head__mini-cart > a {
margin: 0 5px 0 10px;
white-space: nowrap;
}
[data-id="5e01599"],
[data-id="b5bb9d5"]{
-ms-flex-preferred-size: 47%;
flex-basis: 47%;
}
.elementor-element-5a31b91{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
@media (max-width:900px) {
.air-head__header-menu-bot .air-head__mini-menu .whatsapp-icon,
.air-head__header-menu-bot .air-head__mini-menu  .telegram-icon{
display: none;
}
#menu-2-048e55e {
column-count: 2;
margin-inline: auto;
}
}
.elementor-36952 .elementor-element.elementor-element-694d796 img, img[src="https://nakedtechnologies.org/wp-content/uploads/2025/09/86edeee0d37da5e11366963fed4636d67e580872.jpg"], .wp-image-36955 {
max-width: 86px!important;
max-height: 86px!important;
border-radius: 50%!important;
-o-object-position: right!important;
object-position: right!important;
-o-object-fit: cover!important;
object-fit: cover!important;
}
.flex-control-nav.flex-control-thumbs li:nth-child(n+4) {
display: none;
} .woocommerce-product-gallery .flex-control-nav {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
opacity: 1 !important;
visibility: visible !important;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 20px 0 0 0;
}
.custom-prev-btn,
.custom-next-btn{   
position: static;
width: 48px!important;
height: 48px!important;
-webkit-box-shadow: rgba(48, 49, 55, 0.12) 0px 6px 24px!important;
box-shadow: rgba(48, 49, 55, 0.12) 0px 6px 24px!important;
display: -webkit-box;
display: -ms-flexbox;
display: flex!important;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center!important;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center!important;
z-index: 2;
background: rgb(255, 255, 255)!important;
border-radius: 52px!important;
background: #fff !important;
color: #000000!important;
}
.custom-prev-btn svg,
.custom-next-btn svg{ }   
.custom-slider-nav{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
gap: 20px;
margin-top: 15px;
width: 100%;  }
.flex-active-slide{
height: 550px!important;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images .flex-viewport{
height: 550px!important;
}
.elementor-element-77b068f > .elementor-widget-container{ }
[src="https://s.w.org/images/core/emoji/14.0.0/svg/1f7e2.svg"]{
max-height: 14px;
}
.attribute-wrapper {
-webkit-box-orient: vertical!important;
-webkit-box-direction: normal!important;
-ms-flex-direction: column!important;
flex-direction: column!important;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.elementor-36952 .elementor-element.elementor-element-5a31b91.e-con {
--align-self: flex-start;
margin: 0;
padding: 0;
}
@media (max-width: 769px) {
.add_to_cart_button_single {
width: 60% !important;
}
[data-id="6b9ed42"] {
transform: translateY(-70px);
}
.gallery-prev, .gallery-next {
transform: scale(0.7);
}
.gallery-controls {
display: flex;
flex-direction: row;
gap: 10px;
justify-content: space-between;
transform: translateY(440px);
width: 100%;
position: relative;
z-index: 222;
}
.gallery-thumbnails-wrapper, [data-id="cbfb47e"]{
z-index: 12;
}
.gallery-thumbnails .thumb-item:nth-child(n+4){
display:none;
}	
[data-id="053e564"] .tm-woowishlist-button,
[data-id="053e564"] .woo-compare-button {
display: inline !important;
width: 14% !important;
-webkit-box-flex: 0 !important;
-ms-flex: none !important;
flex: none !important;
}
[data-id="053e564"]	.add_to_cart_button_single {
width: 60% !important;
-webkit-box-flex: 0 !important;
-ms-flex: none !important;
flex: none !important;
font-size: 15px !important;
text-transform: uppercase;
max-width: 60%;
}
[data-id="dce1c25"]{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
[data-id="053e564"] .single_product_price_block .c-btn {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 16px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
[style="width: 49%;flex: 0 0 49%;"].single_product_price_block{
width: 100%!important;
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 100% !important;
flex: 1 1 100% !important;
}
}
@media (min-width: 769px) {
.input-group-container{
margin-top: 90px;
}
.equipment-list {
justify-items: center;
}
}   ul#menu-verhnee-menyu li:hover ul.sub-menu{
z-index: 99999999999999999999!important;
}
.elementor-2508 .elementor-element.elementor-element-5912217 {
z-index: 0!important;
}
.elementor-element-694d796 > .elementor-widget-container{
width: fit-content!important;
}
.air-head__row-header-menu #menu-verhnee-menyu #menu-item-37604, [data-id="f445579"], [data-id="f445579"]{
display: none!important;
height: 0;
}
[src="https://yandex.ru/maps-reviews-widget/75986578432?comments"]{
border: solid 1px rgb(44,61,245, 05)!important;
}
[data-id="6ab1cbf"] {
text-align: left!important;
}
.elementor-36952 .elementor-element.elementor-element-2f9d205.e-con,
.elementor-element-2f9d205{
padding: 0;
}
.elementor-element-f445579.e-flex.e-con-boxed.e-con,
.elementor-element-a57b9a6{
display: none!important
}
.air-head__mini-menu .telegram-icon{
width: 0px!important;
}
[src="/wp-content/uploads/2025/09/ic_outline-phone-1.svg"]{
height: 20px!important;
} .calculator .single_product_price_block{
text-transform: none!important;
font-size: 15px!important;
}
[src="https://yandex.ru/maps-reviews-widget/75986578432?comments"]{
border: #2C3DF580 solid 1px!important;
}
.elementor-element-0cbf5da{
height: 100px;
}
.elementor-element-0cbf5da{
height: auto!important}
.elementor-element-dcc63b5,
.elementor-element-8ec04d1,
[data-id="2fb8d4c"] a,
[data-id="8ec04d1"] a{
font-weight: 900!important;
}
.elementor-200 .elementor-element.elementor-element-8ec04d1 .elementor-heading-title,
.elementor-200 .elementor-element.elementor-element-2fb8d4c .elementor-heading-title {
font-weight: 700!important;
}
.elementor-element-f6f6455  .elementor-button-wrapper,
.elementor-element-df6761b  .elementor-button-wrapper{
box-shadow: 10px 10px 30px 0px rgba(43.999999999999986, 60.99999999999994, 245, 0.3);
border-radius: 20px;
}
[data-id="0964c05"] a,
[data-id="053e564"] a{
text-transform: none!important;
}
#calculator-12345 .single_product_price_block{
text-transform: none!important;
}
#calculator-12345  .accordion-header {
padding: 15px 20px 15px 0!important;
justify-content: flex-start!important;
align-items: center!important;
gap: 10px!important;
}  .arcu-widget.right.arcu-message,
.arcontactus-widget.arcontactus-message,
#arcontactus {
bottom: auto !important;
top: 50% !important;
transform: translateY(-50%) !important;
right: 20px !important;
} .arcu-widget .arcu-message-button,
.arcontactus-widget .arcontactus-message-button {
transform: none !important;
} @media (max-width: 768px) {
.arcu-widget.right.arcu-message,
.arcontactus-widget.arcontactus-message,
#arcontactus {
top: auto !important;
bottom: 100px !important;
transform: none !important;
right: 16px !important;
}
} :root {
--page-gap-desktop: 60px;
--page-gap-mobile: 32px;
--container-max-width: 1280px;
--container-padding: 20px;
} .page-container,
.nt-page-container {
max-width: var(--container-max-width);
margin: 0 auto;
padding: 0 var(--container-padding);
} .nt-section {
margin-bottom: var(--page-gap-desktop);
}
.nt-section:last-child {
margin-bottom: calc(var(--page-gap-desktop) * 0.5);
}
@media (max-width: 768px) {
.nt-section {
margin-bottom: var(--page-gap-mobile);
}
.nt-section:last-child {
margin-bottom: calc(var(--page-gap-mobile) * 0.5);
}
} #searchForm.livesearch #livesearch {
display: block;
}
#livesearch {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
border-radius: 0 0 12px 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
max-height: 400px;
overflow-y: auto;
z-index: 1000;
}
#livesearch ul {
list-style: none;
margin: 0;
padding: 0;
}
#livesearch li {
border-bottom: 1px solid #f0f0f0;
}
#livesearch li:last-child {
border-bottom: none;
}
#livesearch li a {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
text-decoration: none;
color: #1a1a2e;
transition: background 0.2s ease;
}
#livesearch li a:hover {
background: #F5F9FF;
}
#livesearch li a img {
width: 48px;
height: 48px;
object-fit: contain;
border-radius: 8px;
background: #f5f5f5;
flex-shrink: 0;
}
#livesearch .search-no-thumb {
width: 48px;
height: 48px;
background: #f0f0f0;
border-radius: 8px;
flex-shrink: 0;
}
#livesearch .search-item-content {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
#livesearch .search-item-title {
font-size: 14px;
font-weight: 500;
color: #1a1a2e;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#livesearch .search-item-price {
font-size: 13px;
font-weight: 600;
color: #2C3DF5;
}
#livesearch .search-no-results {
padding: 20px;
text-align: center;
color: #999;
font-size: 14px;
}
#searchForm.searching #livesearch::before {
content: '';
display: block;
width: 24px;
height: 24px;
margin: 20px auto;
border: 3px solid #f0f0f0;
border-top-color: #2C3DF5;
border-radius: 50%;
animation: search-spinner 0.8s linear infinite;
}
@keyframes search-spinner {
to { transform: rotate(360deg); }
} @media (max-width: 768px) {
#livesearch {
max-height: 60vh;
border-radius: 0 0 8px 8px;
}
#livesearch li a {
padding: 10px 12px;
gap: 10px;
}
#livesearch li a img,
#livesearch .search-no-thumb {
width: 40px;
height: 40px;
}
#livesearch .search-item-title {
font-size: 13px;
}
#livesearch .search-item-price {
font-size: 12px;
}
}  header.air-head,
.air-head {
background-color: #F5F9FF !important;
} @media (min-width: 1160px) {
a.air-head__row-catalog {
background: #2C3DF5 !important;
box-shadow: 10px 10px 30px rgba(44, 61, 245, 0.3) !important;
border-radius: 8px !important;
color: #fff !important;
padding: 13px 46px 13px 37px !important;
font-size: 16px !important;
font-weight: 600 !important;
display: inline-flex !important;
align-items: center !important;
}
a.air-head__row-catalog svg {
margin: 0 10px 0 0 !important;
display: inline-block !important;
}
a.air-head__row-catalog:hover {
background: #1a2bdb !important;
}
}  body,
html {
background-color: #F5F9FF !important;
} .elementor-section.elementor-section-boxed > .elementor-container,
.elementor .e-con {
background-color: transparent;
} #content,
#main,
.site-content {
background-color: #F5F9FF;
} .elementor-page #content,
.elementor-page .site-content {
background-color: #F5F9FF;
} .woocommerce #content,
.woocommerce-page #content {
background-color: #F5F9FF;
}  .arcu-widget svg,
.arcontactus-widget svg,
#arcontactus svg,
.arcu-popup svg,
.arcontactus-popup svg,
.arcu-menu-item svg,
.arcontactus-menu-item svg,
.arcu-message-button svg,
.arcontactus-message-button svg {
max-width: 60px !important;
max-height: 60px !important;
width: auto !important;
height: auto !important;
} .arcu-widget,
.arcontactus-widget,
#arcontactus {
max-width: 80px !important;
}
.arcu-widget .arcu-button,
.arcontactus-widget .arcontactus-button,
.arcu-message-button,
.arcontactus-message-button {
max-width: 60px !important;
max-height: 60px !important;
width: 60px !important;
height: 60px !important;
} .arcu-menu-item,
.arcontactus-menu-item {
max-width: 50px !important;
max-height: 50px !important;
}
.arcu-menu-item svg,
.arcontactus-menu-item svg {
max-width: 32px !important;
max-height: 32px !important;
}  .arcu-widget:not(.arcu-loaded),
.arcontactus-widget:not(.arcontactus-loaded) {
opacity: 0 !important;
pointer-events: none !important;
}  .hits-section a,
.product-card-link,
[class*="product"] a {
display: block;
position: relative;
} .hits-section a img,
.product-card-link img,
[class*="product"] a img {
pointer-events: auto;
}