/*


Когда нужна картинка или любой элемент слева или справа текста/заголовка
.bullts li:before {
    content: "";
    width: 10px;
    height: 14px;
    display: inline-block;
    background-image: url(/wp-content/imgs/bullit1.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 22px;
}

Градиентная окантовка:
 border-radius: 80px;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#3020ff);
  background-origin: border-box;
  background-clip: padding-box, border-box;



Добавляем шрифты:
@font-face {
	font-family: 'MuseoSansCyrl-900';
	src: url('../fonts/museosanscyrl-900.woff2') format('woff2');
}

.ms900 {
font-family: 'MuseoSansCyrl-900';
}

 */




 


/*  Шрифты  */



 
@font-face {
	font-family: 'Inter-ExtraLight';
	src: url('../fonts/Inter-ExtraLight.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter-Light';
	src: url('../fonts/Inter-Light.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter-Regular';
	src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter-Medium';
	src: url('../fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter-Bold';
	src: url('../fonts/Inter-Bold.woff2') format('woff2');
}


.inter100, .inter100 li, .inter100 span, .inter100 a, .inter100 p, .inter100 div {font-family: 'Inter-ExtraLight', sans-serif;}

.inter200, .inter200 li, .inter200 span, .inter200 a, .inter200 p, .inter200 div {font-family: 'Inter-Light', sans-serif;}

.inter300, .inter300 li, .inter300 span, .inter300 a, .inter300 p, .inter300 div {font-family: 'Inter-Regular', sans-serif;}

.inter400, .inter400 li, .inter400 span, .inter400 a, .inter400 p, .inter400 div {font-family: 'Inter-Medium', sans-serif;}

.inter500, .inter500 li, .inter500 span, .inter500 a, .inter500 p, .inter500 div {font-family: 'Inter-Bold', sans-serif;}


thin {font-family: 'Inter-ExtraLight', sans-serif;} 
bold {font-family: 'Inter-Bold', sans-serif;} 


:root {
  --orange: #EE7F1A;
  --green: #E1E7DD;
  --gray: #B0B4AA;
  --black: #000000;
  --white: #FFFFFF;
  --widthsite: 1300px;
  --icon-size:60px;
  --ifont100:'Inter-ExtraLight';
  --ifont200:'Inter-Light';
  --ifont300:'Inter-Regular';
  --ifont400:'Inter-Medium';
  --ifont500:'Inter-Bold';
}




/*  Стили макета  */


body {
    background:#105000;
}

.site-main {
	background:#ffffff;
   padding:40px;
}


#header {
 
}

.widthsite {
	max-width: var(--widthsite);
    margin: 0 auto;
}

 

main#main {
    
	 max-width: var(--widthsite);
    margin: 0 auto;
	background: #fff;
	    overflow: hidden;
}


.inner-main {
max-width: var(--widthsite);
    margin: 0 auto;
	
}



/*  Цвета  */
 
 
 
.white {color:var(--white);}
.orange {color:var(--orange);}
.green {color:var(--green);}
.gray {color:var(--gray);}
.black, .black a, .black .sub-menu a {color:var(--black);}
.black a:hover {color:var(--black); opacity:0.5;}
 
 
.b-orange, .b-orange:after {background-color:var(--orange);}
.b-green, .b-green:after  {background-color:var(--green);}
.b-gray, .b-gray:after  {background-color:var(--gray);}
.b-white, .b-white:after  {background-color:var(--white);}
 
.grad-gray {
background: -webkit-linear-gradient(180deg, rgb(214, 218, 207), rgb(186, 192, 176));
background: -moz-linear-gradient(180deg, rgb(214, 218, 207), rgb(186, 192, 176));
background: linear-gradient(180deg, rgb(214, 218, 207), rgb(186, 192, 176));
}

.grad-lite {
background: -webkit-linear-gradient(45deg, rgb(239, 239, 239), rgb(250, 250, 250));
background: -moz-linear-gradient(45deg, rgb(239, 239, 239), rgb(250, 250, 250));
background: linear-gradient(45deg, rgb(239, 239, 239), rgb(250, 250, 250));
}
 
 
/*  Типография  */  

.title, .title_n {
padding:30px 0px;
font-family:var(--ifont500);
line-height: 1.3;
font-size:3rem;	
color:var(--black);
text-transform: uppercase;
}

 

@media (max-width: 768px) {
	.title, .title_n { font-size:2rem;}
}


/*  Иконки контактов и соц сетей  */ 

 

.icon_3736:before  {
    width: 25px;
    height: 25px;   
    background-image: url(/wp-content/imgs/24_7.svg);    
   
}

.icon_3736, .icon_3737   {
padding-left: 35px;
}

.icon_3737:before { 
 width: 25px;   
    height: 25px;   
    background-image: url(/wp-content/imgs/location.svg);    
    
}

 

.btn-orange, .btn1 {
	padding:15px 40px;
	border-radius:50px;
	background-color:var(--orange);
	color:var(--white);
	font-family: var(--ifont200), sans-serif; 
	 display: block;
	    font-size: 1rem;
			width:100%;
			 transition: background 0.4s ease;
			 text-align: center;
			 display: flex;
    justify-content: center;
    align-items: center;
}

 

.btn-orange:hover, .btn1:hover  {
	background-color:var(--black);
}

.btn-gray, .btn2  {
	padding: 15px 40px;
	border-radius:50px;
	background-color:var(--gray);
	color:var(--white);
	font-family: var(--ifont200), sans-serif; 
	font-weight: 500;
	    font-size: 1rem;
		width:100%;
		 cursor: pointer;
		 transition: background 0.4s ease;
		 text-align: center;
		 display: block;
		 display: flex;
    justify-content: center;
    align-items: center;
}

.btn-gray:hover, .btn2:hover  {
	background-color:var(--black);
}

@media (max-width: 768px) {
	.btn-gray, .btn-orange { font-size: 0.9rem;  padding:15px 30px;}
}

.btn-blue:hover, .tab-button.active {
	background-color:var(--green);
}
 

ul.icons li, ul.icons li a {
display: flex;
height:var(--icon-size);
align-items: center;
gap: 0px 8px
}

.icon {
width: var(--icon-size); 
height: var(--icon-size);  
  }

  
 
  
  
  

.icon_tg:after {
background: url('/wp-content/imgs/tg.svg') no-repeat center;
 
}
  
.icon_wa:after {
background:url('/wp-content/imgs/wa.svg') no-repeat center;
 
}

.icon_max:after {
background:url('/wp-content/imgs/max.svg') no-repeat center;
 
}


.icon_phone a:after {
mask: url('/wp-content/imgs/phone.svg') no-repeat center;
-webkit-mask: url('/wp-content/imgs/phone.svg') no-repeat center;
}

.icon:after{
content:"";
 background-size: contain;
width: var(--icon-size); 
height: var(--icon-size); 
display:block;
transition: all 0.4s ease;
}



.icon:hover{

transition: all 0.4s ease;
}

.icon:hover:after{
transform: scale(1.2);
 
}

 
/*  Стили для табов  */

.my-content img {
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
}

.my-buttons .tab-button {
	text-align: left;
	font-size: 1.2rem;
}

.my-buttons .tab-button {
	position:relative;
}

.my-buttons .tab-button:after {
	position:absolute;
    content: "";
    display: inline-block; 
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
	right: -2%;
	top:50%;
	transform: translate(-50%, -50%);
	 width: 36px;
    height: 36px;   
    background-image: url(/wp-content/imgs/arrow_circle.svg);    
 }
 
 
 /*  Стили слайдера фото  */
 
 #swiper-431-1 img {
    border-radius: 300px;
   height: 500px;
    object-fit: cover;
}

 

.wpps-slider   {

	position:relative;
}

.card-slide  {
	background: #fdf9f0;
    padding:20px;
    border-radius: 40px;
}
 


 
.wpps-template-card .card-image {
    overflow: hidden;
    position: relative;
    padding-top: 90%;
}
.wpps-template-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	 object-position: top;
    transition: transform 0.3s ease;
}
.wpps-template-card .card-slide:hover .card-img {
    transform: scale(1.05);
}
.wpps-template-card .card-content {
 text-align: center;
}
.wpps-template-card .card-category {
    margin-bottom: 12px;
}
.wpps-template-card .cat-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    color: #333;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.wpps-template-card .card-title {
    margin: 0 0 12px 0;
   
    line-height: 1.4;
	text-align: center;
}
.wpps-template-card .card-title a {
     
    text-decoration: none;
    transition: color 0.3s ease;
}
.wpps-template-card .card-title a:hover {
    color: var(--green);
}
.wpps-template-card .card-meta {
    margin-bottom: 15px;  
}


.swiper-button-next,
.swiper-button-prev {
    color: #FFFFFF;
    background: var(--green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}
.swiper-pagination-bullet-active {
    background: #0073aa;
}

.swiper-button-next, .swiper-button-prev {
    ::slotted(svg), svg { 
   
        width: 20% !important;
	}
	 
	}
	
.swiper-button-next {
    right: -20px;
}

.swiper-button-prev {
    left: -20px;
}

.box_487392 .swiper-button-next {
    right: 20px;
}

.box_487392 .swiper-button-prev {
    left: 20px;
}




.license .swiper-wrapper {
  
}

.license .swiper-slide img{
  border-radius:40px;
}




 


 

 





 
.wp-custom-tabs-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}
 



/* Контейнер корзины в шапке */
.header-cart {
    position: relative;
    display: inline-block;
}

/* Выпадающий блок корзины */
.custom-mini-cart-content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 520px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none; /* скрыт по умолчанию */
    margin-top: 10px;
}

/* Стрелочка */
.custom-mini-cart-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    transform: rotate(45deg);
}

 

/* Внутренности мини-корзины */
.custom-mini-cart-content .woocommerce-mini-cart {
    padding: 15px;
    margin: 0;
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
	font-family:var(--ifont200);
}

/* Товар в мини-корзине */
.custom-mini-cart-content .woocommerce-mini-cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.custom-mini-cart-content .woocommerce-mini-cart-item img {
    width: 50px;
    height: auto;
}

.custom-mini-cart-content .woocommerce-mini-cart-item a {
    text-decoration: none;
    color: #333;
	display: flex;
    gap: 20px;
}
}

.custom-mini-cart-content .quantity {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Кнопки удалить */
.custom-mini-cart-content .remove_from_cart_button {
    color: #f44336;
    font-size: 18px;
    text-decoration: none;
}

/* Итог и кнопки */
.custom-mini-cart-content .woocommerce-mini-cart__total {
    padding: 10px 15px;
    border-top: 1px solid #ddd;
    font-weight: bold;
}

.custom-mini-cart-content .woocommerce-mini-cart__buttons {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
}

 
 
@media (max-width: 768px) {
	.custom-mini-cart-content .woocommerce-mini-cart__buttons {flex-direction: column;}
}
 

/* Адаптив для мобильных */
@media (max-width: 480px) {
    .custom-mini-cart-content {
        width: 280px;
        right: -50px;
    }
}

 
 /* Стили для форм */
 
 .quikform {
    font-family: var(--ifont100);
	 max-width: 500px;
	  margin: 0 auto;
	  display: flex;
    flex-direction: column;
    gap: 20px;
}

 
p.form-title1 {
    font-family: var(--ifont300);
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
}

p.form-title2 {
    font-family: var(--ifont200);
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.2;
}


.quikform input[type="text"], .quikform input[type="tel"] {
    width: 100%;
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 50px;
    padding-left: 20px;
    height: 50px;
    outline: none;
    transition: all 0.2s ease;
    background: transparent;
    position: relative;
    z-index: 2;
	cursor:pointer;
}

.quikform br {
    display: none;
}

 

.quikform label {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

 
 
 
 .btn_form input {
	padding:15px 40px;
	border-radius:50px;
	background-color:var(--orange);
	color:var(--white);
	font-family: var(--ifont200), sans-serif; 
	 display: block;
	    font-size: 1rem;
			width:100%;
			 transition: background 0.4s ease;
			 text-align: center;
			 display: flex;
    justify-content: center;
    align-items: center;
  
}

 /* Стили для попапа */
body.popup-open {
    overflow: hidden;
}

 
  /* Стили для переключателя языков */
 .gt_float_switcher {
    font-family: 'Inter-ExtraLight', sans-serif !important;    
    font-size: 16px !important;  
    border-radius: 20px !important;
    box-shadow: none !important;  
}

 
.gt-current-lang img {
    display: none !important; 
}



.docs-list {
     
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    display: grid;
    gap: 20px;
}

.docs-document img, .docs-image img {
    height: 400px;
    object-fit: cover;
}