/* Google Fonts Import Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  background: #11101d;
  z-index: 100;
  transition: all 0.5s ease;
}
.sidebar.close{
  width: 45px;
}
.sidebar .logo-details{
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details i{
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 45px;
  text-align: center;
  line-height: 50px;
}
.sidebar .logo-details .logo_name{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links{
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover{
  background: #1d1b31;
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}
.sidebar .nav-links li i{
  height: 50px;
  min-width: 45px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name{
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #1d1b31;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
}
.sidebar .nav-links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
  font-size: 12px;
}
.home-section{
  position: relative;
  background: #E4E9F7;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.offcanvas-header .btn-close {
  margin-right: 1rem;
}
.table>:not(caption)>*>*{
  padding: 0.5rem 0.2rem;
}
.sidebar.close ~ .home-section{
  left: 45px;
  width: calc(100% - 60px);
}
.home-section .home-content{
  height: 60px;
  display: flex;
  align-items: center;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text{
  color: #11101d;
  font-size: 35px;
}
.home-section .home-content .bx-menu{
  margin: 0 15px;
  cursor: pointer;
}
.home-section .home-content .text{
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .sidebar.close .nav-links li .sub-menu{
    display: none;
  }
}

.email{
background-color: #FFF8ED;
}
 .telegram{
background-color: #EAEFFF;
}
.lpcrm {
background-color: #EAEAEA;
}
.tele {
width: 95%;
}

@media only screen and (max-width: 600px){
  .hidemobile {
      display: none !important;
  }
  
}

.res-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

    .square:after {
        content: '';
        display: block;
        padding-top: 100%;
    }

    .content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .zoomab:hover {
        transform: scale(103%);
        transition-timing-function: ease-in;
        transition: 0.2s;
    }

    @media screen and (max-width: 576px) {
        .adapt-text {
            font-size: 12px;
        }

        .timer-small {
            display: block;
        }

        .timer-full {
            display: none;
        }
    }

    @media screen and (min-width: 576px) {
        .adapt-text {
            font-size: 12px;
        }

        .timer-small {
            display: block;
        }

        .timer-full {
            display: none;
        }
    }

    @media screen and (min-width: 768px) {
        .adapt-text {
            font-size: 14px;
        }

        .timer-full {
            display: block;
        }

        .timer-small {
            display: none;
        }
    }

    @media screen and (min-width: 768px) {
        .adapt-text {
            font-size: 15px;
        }

        .timer-full {
            display: block;
        }

        .timer-small {
            display: none;
        }
    }



    .simple__flex {
        display: flex;
        justify-content: space-between;
    }

    .simple__card {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* располагаем <div class="simple__text"></div> и <div class="simple__button"></div> вертикально */
    }

    .simple__text {
        flex: 1;
        /* растягиваем <div class="simple__text"></div> на все доступное свободное пространство в карточке <div class="simple__card"></div> */
    }

    .innerbutton {
        display: inline-block;
        vertical-align: bottom;
    }

    .block-2 {
        background: url(pict/title-bg.jpg) repeat;
    }

    .block-2 .wrap {
        padding: 20px;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        font-weight: 400;
        height: auto;
        width: 100%;
    }

    .block-2 h1 {
        font-size: 24px;
        line-height: 1.5em;
        font-weight: 500;
        padding-bottom: 5px;
    }

    .block-2 .wrap>p {
        font-size: 18px;
        line-height: 1.5em;
    }

    .card-body {
        position: relative;
        padding-bottom: 70px;
		padding: 0rem 0rem;
    }

    .tov-button {
        position: absolute;
        bottom: 20;
        height: 50px;
        background: #0C9032;
        background: -moz-linear-gradient(top, #0C9032 0%, #67D281 100%);
        background: -webkit-linear-gradient(top, #0C9032 0%, #67D281 100%);
        background: linear-gradient(to bottom, #0C9032 0%, #67D281 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0C9032', endColorstr='#67D281', GradientType=0);
        /*border-bottom: 2px solid #2D5130; */
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 2px;
    }

    .tov-button2 {



        border: 3px solid #fff;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    .tov-button3 {



        border: 3px solid #BABABA;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
        font-weight: 500;
        color: #BABABA;
        text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    .block-1 {
        background: url(../images/top-bg.jpg) center top no-repeat #fbfaff;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .block-1 .wrap {
        height: 180px;
        padding: 10px;
        height: auto;
        width: 100%;
    }

    .block-1 img {
        position: absolute;
        display: block;
        left: -22px;
        bottom: 0;
    }

    .top-title {
        padding-top: 30px;
        text-align: center;
    }

    .top-title>h2 {
        font-size: 40px;
        line-height: 1.2em;
        padding-bottom: 10px;
        font-weight: 700;
        color: #0AA150;
    }

    .top-title>div {
        font-size: 20px;
        line-height: 1.2em;
        padding-bottom: 38px;
        font-weight: 500;
        background: url(../images/phone-icon.png) center bottom no-repeat;
    }

    .top-title>p {
        padding-top: 14px;
        font-style: italic;
        color: #8d8d8d;
    }

    .price-box {
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
        position: relative;
        height: 70px;
        width: 100%;
        Background: #00B152;
    }

    .price-sale {
        position: absolute;
        background: url(../images/salee.png) no-repeat;
        overflow: visible;
        width: 200px;
        height: 50px;
        margin-left: -10px;
        margin-top: 20px;
		z-index: 1;
    }

    .price-sale-h4 {
        color: #fff;
        margin: 3px 15px;

    }

    .old-price {
        position: absolute;
        Background: #D3D3D3;
        clip-path: polygon(0 0, 100% 0%, 74% 100%, 0% 100%);
        height: 100%;
        Width: 55%;
    }

    .old-price p {
        color: #000;
        margin: 5px 10px;
        font-size: 14px;
    }

    .orice {
        text-decoration: line-through;
        font-size: 22px !important;
        margin: 0 10;
        color: #666666;
    }

    .nprice {
        font-size: 22px;
        margin: 5px 10px;
        color: #fff;
    }

    .new-price {
        position: relative;
        float: right;
        Background: #00B152;
        height: 100%;
        Width: 45%;
    }

    .new-price p {
        color: #fff;
        margin: 5px 10px;
        font-size: 14px;
    }
	.new-price h5{
		 font-size: 26px!important;
		 color: #ffffff;
	}

    @media screen and (max-width: 959px) {

        .orice {
            text-decoration: line-through;
            font-size: 20px;
            margin: 0 10;
            color: #666666;
        }

        .nprice {
            font-size: 20px;
            margin: 0 10;
            color: #fff;
        }
    }


    @media screen and (max-width: 639px) {
        .mob-vis {
            display: block;
        }

        .mob-hid {
            display: none;
        }

        .top-title>h2 {
            font-size: 30px;
            line-height: 1em;
            padding-bottom: 10px;
            font-weight: 700;
            color: #0AA150;
        }

        .block-2 h1 {
            font-size: 20px;
            line-height: 1em;
            font-weight: 500;
            padding-bottom: 5px;
        }

    }
    
    .fa-star{
        color: gainsboro;
    }
    .starred{
        color: #FFD700;
    }
    .tov-button4 {
        border: 3px solid #BABABA;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
        font-weight: 500;
        color: #BABABA;
        text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        float: right;
        height: 50px;
        padding: 10px;
    }

    .card-description .show-description {
        margin: 10px 0 10px 0;
        width: 100%;
        background: #b3ced9;
    }
    .show-description svg {
        transform: rotate(-90deg);
        margin-left: 10px;
        transition: transform 0.3s ease-in;
    }
    .zakazz{
        display: none;
    }

	/* Выравнивание текста */
.has-text-align-center {
  text-align: center;
}

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

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

/* Размеры шрифта */
.has-small-font-size {
  font-size: 0.875rem; /* 14px */
}

.has-normal-font-size {
  font-size: 1rem; /* 16px */
}

.has-large-font-size {
  font-size: 1.5rem; /* 24px */
}

.has-huge-font-size {
  font-size: 2.25rem; /* 36px */
}

/* Цвета текста (пример, можно подставить свои переменные) */
.has-primary-color {
  color: var(--wp--preset--color--primary, #0073aa);
}

.has-secondary-color {
  color: var(--wp--preset--color--secondary, #005177);
}

/* Фоновые цвета */
.has-primary-background-color {
  background-color: var(--wp--preset--color--primary, #0073aa);
}

.has-secondary-background-color {
  background-color: var(--wp--preset--color--secondary, #005177);
}

.sticky-top {
    top: 0;
    z-index: 1000;
    padding-top: 10px;
    padding-bottom: 10px;
}
.group-btn {
    margin-right: 10px; /* расстояние между кнопками */
}

.group-btn:last-child {
    margin-right: 0; /* у последней кнопки отступ не нужен */
}
p strong{
	font-size: 22px;
    color: #009c16;
}
.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
	border: unset;
	margin-right: 5px;
}
.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    border: unset;
    margin-left: 5px;
}
.carousel-control-next {
    right: 0;
    background-color: red;
    height: 40px;
    top: 50%;
}
.carousel-control-prev {
	left: 0;
	background-color: red;
	height: 40px;
	top: 50%;
}
/* Общий стиль для всех кнопок Gutenberg */
.wp-block-button__link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  background-color: #0073aa; /* цвет кнопки */
  color: #fff; /* цвет текста */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Эффект при наведении */
.wp-block-button__link:hover {
  background-color: #005f8d;
  transform: translateY(-2px);
  color: #fff;
}

/* Вариант outline */
.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid #0073aa;
  color: #0073aa;
}

.is-style-outline .wp-block-button__link:hover {
  background: #0073aa;
  color: #fff;
}

/* Выровнять кнопку по центру */
.wp-block-button {
  text-align: center;
}

/* Выровнять по правому краю */
.wp-block-button.alignright {
  text-align: right;
}

/* Выровнять по левому краю */
.wp-block-button.alignleft {
  text-align: left;
}
.card{
	padding: 10px;
}
.square{
	margin-bottom: 20px;
	border: 1px solid #dddddd;
}
.old-price, .new-price{
	padding-left: 15px;
}
.carousel-item img {
	max-height: 300px;
	object-fit: contain;
}
.text-bg-success {
	background-color: #28a745 !important;
	color: #fff !important;
}