@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

*,
 :hover,
 :active,
 :focus {
	outline: none;
 }
a,
input[type=radio],
input[type=checkbox],
select {
	cursor: pointer;
}
 
body {
    margin: 0;
    color: #000000;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: #080808;
	-webkit-transition: color 0.25s ease-in-out;
	-o-transition: color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out;
}

a:focus,
a:hover {
	text-decoration: none;
	outline: none;
	-webkit-transition: .3s ease-out;
	-webkit-transition-delay: 0.3s;
	-o-transition: .3s ease-out;
	-o-transition-delay: 0.3s;
	-moz-transition: .3s ease-out;
	-moz-transition-delay: 0.3s;
	transition: .3s ease-out;
	transition-delay: 0.3s;
}

div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}

h1 {
    font-weight: bold;
    font-size: 45px;
    line-height: 60px;
    text-align: center;
    color: #292A5A;
}

h2 {
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
}

h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
}

p {
    width: 100%;
}

.section {
    display: flex;
    align-items:baseline;
}

.btn {
  cursor: pointer;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  transition: all .6s;
}

.btn:hover {
    background-color: #1859FF;
    border: none;
    color: #fff;
}

.btn:focus {
    background-color: #292B86;
    border: none;
    color: #fff;
}

.btn:active {
    background-color: #3148DC;
    border: none;
    color: #fff;
}

.btn_secondary {
    cursor: pointer;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    transition: all .6s;
    background: #FFFFFF;
    border: 2px solid #3148DC;
    color: #3148DC;
    padding: 10px 20px 12px;
  }
  
.btn_secondary:hover {
    background-color: #1859FF;
    border: 2px solid #1859FF;
    color: #fff;
}
  
.btn_secondary:focus {
    background: #EAF2FF;
    border: 2px solid #3148DC;
    color: #3148DC;
}
  
.btn_secondary:active {
    background-color: #3148DC;
    border: 2px solid #1859FF;
    color: #fff;
}


.menu {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 125px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: 10;
    padding-bottom: 10px;
}

.top_menu {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.bottom_menu {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu_link {
    padding: 10px 0px 10px 0px;
    font-size: 18px;
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}


.menu_semibold {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.menu_link_active {
    border-bottom: cadetblue 3px solid;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left_links {
     position: relative;
     display: inline-block;
}

.dropdown_content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 190px;
    z-index: 3;
}


.menu_link_arrow {
    width: 32px;
    height: 32px;
    transition: all .6s;
}

.left_links:hover .dropdown_content {
    display: flex;
    flex-direction: column;
}

.left_links:hover .menu_link_arrow {
    transform: rotate(180deg);
}

.dropdown_item {
    color: #000;
    text-decoration: none;
    padding: 16px 16px;
    font-weight: 600;
}

.dropdown_item:hover {
    color: #3148DC;
    background: #F5F5F5;
}

.links {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#cartMessage .modal-content{
    min-height: unset !important;
}

#cartMessage .modal-header{
    overflow: hidden;
}

#cartMessage .modal-title{
    float: left;
}

#cartMessage a{
    font-weight: 600;
}

.nav_icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.menu_logo {
    max-width: 155px;
}


.right_menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu_auth_btn {
    cursor: pointer;
    background-color: transparent;
    border: 1px solid;
    border-radius: 25px;
    padding: 6px 10px 6px 10px;
    border-color: skyblue;
    margin: 0 5px;
    min-width: 80px;
}

.menu_catalog {
    padding: 10px 2px 0 2px;
}

.checkout_privacy{
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #BDBDBD;
    margin-top: 40px;
    margin-bottom: 24px;
}

.checkout_privacy a{
    color: #1859FF;
}

.help_btn {
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-height: 35px;
}

.order_total_products_title{
    color: #808080;
    margin-bottom: 20px;
}

.order_form_submit_text, .order_form_submit_text_total{
    width: 100%;
}

.order_form_submit_text .light_content{
    display: block;
    float: left;
}

.order_form_submit_text .bold_content{
    display: block;
    float: right;
    text-align: right;
}

.order_total_products_title b{
    font-weight: 600;
    margin-right: 10px;
    font-size: 24px;
    line-height: 35px;
    color: #000;
}

.order_total_products{
    padding-left: 14px;
}


/* mobile menu */

.mobile_menu_phone {
    margin: 0.5rem;
    padding: .8rem;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    /* text-align: center; */
    width: 100%;
}
.main-nav {
    display: none;
}

.main-nav input[type=checkbox] {
    display: none;
}

.main-nav .hamburger-menu {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 100;
    margin-left: auto;
}
.main-nav .hamburger-menu span {
    position: absolute;
    width: 17px;
    height: 2px;
    top: 5px;
    background: #000;
    border-radius: 1px;
    transition: 0.25s;
}
.main-nav .hamburger-menu span::before {
    content: "";
    width: 50%;
    position: absolute;
    top: 6px;
    left: 4px;
    height: 2px;
    background: #000;
    border-radius: 5px;
    transition: 0.25s;
}
.main-nav .hamburger-menu span::after {
    content: "";
    width: 100%;
    position: absolute;
    top: 13px;
    height: 2px;
    background: #000;
    border-radius: 5px;
    transition: 0.25s;
}
.main-nav__items {
    display: flex;
    margin-right: 1rem;
    min-height: 72px;
    align-items: center;
    list-style: none;
}
.main-nav__link {
    color: #efefef;
    text-decoration: none;
    margin: 0.5rem;
    padding: 1rem;
    position: relative;
    transition: 0.5s;
}
.main-nav__link::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    bottom: 0.5rem;
    left: 50%;
    background: #33f1e7;
    transition: 0.5s;
}

  .main-nav__link:hover {
    color: #33f1e7;
  }
  .main-nav__link:hover::before {
    width: 90%;
    left: 5%;
  }

  
  @media (max-width: 2400px) {
    .main-nav {
        flex-wrap: wrap;
    }
    .main-nav__items {
        display: block;
        position: absolute;
        top: 11vh;
        left: 0px;
        width: 101vw;
        text-align: left;
        background: #292A5A;
        transition: max-height 0.5s;
        max-height: 0px;
        min-height: 0px;
        overflow: hidden;
        z-index: 2;
        padding: 0;
        height: 89vh;
        margin: 0;
    }
    .main-nav__link {
        display: inline-block;
        width: 50%;
    }
    .main-nav .hamburger-menu {
        display: block;
    }
    .main-nav #check-box-dropdown:checked + .hamburger-menu span {
        transform: rotate(45deg);
        width: 100%;
        top: 10px;
        left: 0px;
    }
    .main-nav #check-box-dropdown:checked + .hamburger-menu span::before {
        height: 0px;
        background: #000;
    }
    .main-nav #check-box-dropdown:checked + .hamburger-menu span::after {
        top: 0px;
        transform: rotate(-90deg);
        left: 0px;
      
    }
    #check-box-dropdown:checked ~ .main-nav__items {
        max-height: 90vh;
        border-bottom: 2px solid #efefef;
        
    }
  }

  .nav_catalog {
      display: none;
      background: #fff;
  }

  .main-nav__black {
      color: #000;
  }

/* end of mobile menu */

@media (max-width:1200px) {
    .logo {
        width: auto;
    }

    .menu_logo {
        max-width: 140px;
    }
}

@media (min-width:769px) {
    #menuToggle {
        display: none;
    }
    #menuToggle {
      display: none;
    }
}

/* ************************************************************************
/* End of Nav section
************************************************************************ */



/* ************************************************************************
/* Banner section
************************************************************************ */


.banner_section
{   
    margin: 0;
    margin-top: max(90px, 11vh);
}

.banner_background_img
{
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 480px;
}

.banner_background_img img
{
    width: 100%;
    height: 100%;
}

.baner {
    height: 58vh;
    /* max-height: 548px; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}


.img_main {
    position: absolute;
    z-index: 2;
    align-self: flex-end;
    justify-self: flex-end;
    top: 12vh;
    right: 10vw;
    height: 47%;
}

.img_main img {
    width: auto;
    height: 100%;
}


.content_main {
    align-self: center;
    z-index: 3;
    margin-top: 120px;
}





.text_main h1 {
    font-size: 3rem;
    font-weight: 500;
    margin: .5rem 0 .7rem 0;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
}

.text_main h4 {
    font-size: 1.2rem;
    font-weight: 200;
    margin: 0 0 1.6rem 0;
}

.banner_frames {
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner_frame {
    width: 350px;
    height: 150px;
    background: #E4F6FF;
    border: 6px solid #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 11px 25px rgba(49, 72, 220, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    margin-bottom: 15px;
}

.banner_frame h3 {
    margin-bottom: 0;
}

.banner_frame_img {
    width: 46px;
    height: 46px;
    /*border: 3px solid #000000;*/
    box-sizing: border-box;
    border-radius: 7px;
}



/* ************************************************************************
/* End of Banner section
************************************************************************ */





/* ************************************************************************
/* Approach section
************************************************************************ */
.approach_section {
  margin-top: 80px;
}

.approach_content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
}

.approach_header {
    width: 100%;
    text-align: center;
    color: #292A5A;
    font-style: normal;
    font-weight: bold;
    font-size: 45px;
    line-height: 60px;
}

.approach_left {
    max-width: 445px;
    max-height: 653px;
    width: 50%;
    height: 100%;
}

.approach_sertificate {
    width: 100%;
    height: 100%;
}

.approach_right {
    width: 50%;
    height: 100%;
    min-height: 490px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.approach_right_item {
    display: flex;
    align-items:center;
    justify-content: space-evenly;
}

.approach_icon {
    width: 104px;
    height: 104px;
}

.approach_right_item_content {
    width: 70%;
}

.approach_right_item_content h4{
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 1rem;
}



/* ************************************************************************
/* End of Approach section
************************************************************************ */



/* ************************************************************************
/* Products section
************************************************************************ */

.category_products_section .products_section {
    margin-top: 80px;
    width: calc(100% - 285px);
}

.products h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products .row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.products .product-layout {
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    transition: all .6s;
    margin: 0 2em;
    width: 28%;
}

.products .product-layout:hover {
    background: #FFFFFF;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    border-radius: 4px;
}

.product-thumb {
    border: none;
    margin-bottom: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.products .product-layout .caption{
    min-height: auto;
    text-align: center;
}   

.products .product-layout .caption p{
    display: none;
}  

.products .product-layout .caption .price{
    display: block;
}  

.product-thumb .button-group {
    border: none;
    background-color: transparent;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb .button-group::before {
    content: "";
}

.product-thumb .button-group button + button {
    border: none;
}

.button-group button:nth-child(2) {
    display: none;
}


.button-group button:nth-child(3) {
    display: none;
}

.button-group button:first-child {
    cursor: pointer;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    transition: all .6s;
    display: none;
    width: 100%;
    height: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
}

.button-group button:first-child:hover {
    background-color: #1859FF;
    border: none;
    color: #fff;
}

.products .product-layout:hover .product-thumb .button-group::before {
    display: none;
}

.products .product-layout:hover button:first-child {
    display: block;
}

.products_header {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products_header h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
}

.products_header_btn {
    color: #3148DC;
    background: transparent;
    width: 230px;
    height: 50px;
    border: 2px solid #3148DC;
    box-sizing: border-box;
}

.products_bottom_btn {
    color: #3148DC;
    background: transparent;
    width: 90%;
    height: 50px;
    border: 2px solid #3148DC;
    box-sizing: border-box;
    margin: auto;
    display: none;
}

.products_list {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
}

.product {
    width: 20%;
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    transition: all .6s;
}

.product:hover {
    background: #FFFFFF;
    box-shadow: 0px 11px 25px rgba(49, 72, 220, 0.15);
    border-radius: 4px;
}

.product_content_availability {
    width: 220px;
    height: 50px;
    color: #00BC40;
    font-weight: 600;
    font-size: 10px;
    line-height: 27px;
    margin: 0;
    text-align: center;
}

.product_content_name {
    font-size: 16px;
    line-height: 24px;
}

.product_content_price {
    font-size: 16px;
    line-height: 24px;
}

.product_content_btn {
    display: none;
    width: 100%;
    height: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
}

.product:hover .product_content_availability{
    display: none;
}

.product:hover .product_content_btn{
    display: flex;
}

.top_product {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.top_product img {
    width: 100%;
    height: 100%;
}

.product_content {
    width: 100%;
    height: 40%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
}

.product_content * {
    margin: 5px 0;
}


.products_on_main>.row>.product-layout {
    width: 20%;
}

/* ************************************************************************
/* End of Products section
************************************************************************ */



/* ************************************************************************
/* News section
************************************************************************ */

.news_section {
  margin-top: 80px;
}

.news_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.all_news h2 {
    margin-top: 0;
    font-style: normal;
    font-weight: bold;
    font-size: 45px;
    line-height: 60px;
    color: #292A5A;
}

.all_news_btn {
    width: 220px;
    height: 50px;
    background: #FFFFFF;
    border: 2px solid #3148DC;
    color: #3148DC;

    padding: 10px 20px 12px;

}

.all_news {
    width: 30%;
}

.main_news {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 250px;
}

.main_news h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    margin-top: 0;
    color: #080808;
}

.main_news p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #080808;
}

.main_news_btn {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: #1859FF;
    border: none;
    background: transparent;
    cursor: pointer;
}
/* ************************************************************************
/* End of News section
************************************************************************ */




/* ************************************************************************
/* Form section
************************************************************************ */

.form_section {
    margin-top: 80px;
    position: relative;
    padding: 10em 0;
    width: 80%;
    margin: auto;
}

.form_section_background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: fill;
    top: 0;
}

.form_section .form {
    background: #FFFFFF;
    box-shadow: 0px 11px 25px rgba(49, 72, 220, 0.15);
    min-height: 600px;
    padding: 4em 0;
    position: relative;
    z-index: 2;    
}

.feedback-container{
    max-width: 850px;
    position: relative;
}

.feedback-container:before{
    content: '';
    display: block;
    position: absolute;
    width: 48.7%;
    background: url('../image/callback_top.svg') center top no-repeat;
    background-size: contain;
    right: -10%;
    height: 100%;
    z-index: 1;
    top: 5em;
}

.feedback-container:after{
    content: '';
    display: block;
    position: absolute;
    width: 74%;
    left: -10%;
    bottom: 0;
    background: url('../image/callback_bottom.svg') center bottom no-repeat;
    z-index: 1;
    height: 100%;
    bottom: 9%;
}


.form_header h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 45px;
    line-height: 60px;
    text-align: center;
    color: #292A5A;
    margin: 0;
}

.form_header {
    margin-bottom: 0.5em;
}

.form_header p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #080808;
}

.form_content {
    display: flex;
    justify-content: space-between;
    min-height: 400px;
    width: 80%;
    margin: auto;
}

.form_content .right_content {
    margin-top: 30px;
}

.contact_form {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 252px;
}

#form-feedback{
    max-width: 100%;
}

.contact_form_label {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #808080;
    margin-bottom: 10px;
}

.contact_form_input {
    width: 100%;
    height: 34px;
    border: none;
    border-radius: 4px;
    background: #F5F5F5;
}

.contact_form_textarea {
    width: 100%;
    border: none;
    border-radius: 4px;
    background: #F5F5F5;
}

.contact_form_btn {
    width: 230px;
    height: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
    align-self: flex-start;
}

.form-control {
    width: 100%;
    margin-bottom: 20px;
}

.right_content {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.light_content {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #808080;
}

.bold_content {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #080808;
    margin-bottom: 30px;
}

.medium_content {
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: #080808;
    font-weight: 500;
}
/* ************************************************************************
/* End of Form section
************************************************************************ */




/* ************************************************************************
/* Breadcrumbs section
************************************************************************ */

.breadcrumbs_section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    margin-top: 125px;
    
}

.breadcrumbs {
    overflow: auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.breadcrumb_current {
    text-decoration: none;
    font-size: 13px;
    line-height: 24px;
    color: #C4C4C4;
    padding-left: 10px;
    min-width: fit-content;
}

.breadcrumbs a {
    text-decoration: none;
    font-size: 13px;
    line-height: 24px;
    color: #3148DC;
    min-width: fit-content;
    padding-left: 10px;
}

.breadcrumbs a:last-child {
    color: #C4C4C4!important;

}

.vl {
    border-right: solid 1px #C4C4C4;
    height: 13px;
    padding-left: 10px;
}

.vl:first-child,
.vl:last-child {
    display: none;
}

.breadcrumbs>a:last-child {
    text-decoration: none;
    font-size: 13px;
    line-height: 24px;
    color: #C4C4C4;
    padding-left: 10px;
    min-width: fit-content;
}

.sidebar {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 255px;
    min-height: 50vh;
    background: #fff;
    transition: all .6s;
    width: 255px;
}

.sidebar_categories {
    display: flex;
    flex-direction: column;
    border: 1px solid #EAF2FF;
    justify-content: flex-start;
    width: 100%;
}


.filters_text_input {
    width: 100%;
    height: 34px;
    border: none;
    border-radius: 4px;
    background: #F5F5F5;
}

.close_sidebar_filters_btn {
    display: none;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 5px;
    top: 5px;
}

.apply_sidebar_filters_btn {
    display: none;
    height: 31px;
    background: #3148DC;
    padding: 5px 5px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border-radius: 4px;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 23px;
}

.input_apply_button {
    background: #fff;
    box-shadow: 0px 5px 20px rgba(49, 72, 220, 0.25);
    padding: 16px;
    position: absolute;
    width: 100%;
    right: -290px;
    top: -20px;
    max-width: 282px;
    min-width: 282px;
}

.input_apply_button::before {
    content: "";
    position: absolute;
    left: -20px;
    width: 0;
    height: 0;
    border-right: 20px solid #fff;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
}

.apply_filters_btn {
    display: revert;
    width: 100%;
    background: #3148DC;
    border: none;
    padding: 6px 6px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border-radius: 4px;
    font-size: 11px;
    line-height: 25px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.fiters_header h3 {
    margin-top: 0;
}

.top_categories {
    display: none;
    justify-content: flex-start;
    width: 100%;
    background-color: #808080;
    position: relative;
}

.top_categories .this_category {
    background: #EAF2FF;
    width: 33%;
    min-width: 200px;
}

.sidebar_categories .this_category{
    display: none;
}

.top_categories .this_category:after {
    content: "";
    position: absolute;
    right: -15px;
    bottom: 0%;
    width: 0;
    height: 0;
    border-left: 15px solid #eaf2ff;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
}

.this_category_top_arrow {
    display: flex;
    align-items: center;
    align-items: center;
    transform: rotate(180deg);
    transition: all .6s;
}

.this_category_top_arrow_rotate {
    transform: rotate(0);
}

.sidebar_filters {
    position: relative;
}

.sidebar_filters_form {
    margin-top: 30px;
}


.show_filters_btn {
    width: 0;
    height: 0;
    align-items: center;
    justify-content: center;
    position: unset;
    top: 35vh;
    z-index: 2;
    left: 0px;
    background: #3148DC;
    box-shadow: 0px 5px 10px rgb(49 72 220 / 25%);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

}

.top_categories .sub_categories {
    max-height: 0px;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 48px;
    z-index: 3;
    border: 1px solid #EAF2FF;
    transition: all .6s;
}

.topSubCategories {
    max-height: 0px;
}

.top_categories .topSubCategoriesOpened {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
    overflow: auto;
}

.this_category {
    font-weight: 600;
    font-size: 17px;
    line-height: 35px;
    color: #080808;
    background: #EAF2FF;
    padding: 6px 10px 7px 10px;
    cursor: pointer;
    position: relative;
}

.sub_categories {
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    width: 100%;
}

.sub_category {
    font-weight: normal;
    font-size: 18px;
    line-height: 25px;
    color: #333333;
    padding: 10px 10px 10px 20px;
    cursor: pointer;
}

.sub_category:hover {
    background: #808080;
    color: #fff;
}

/* input Range */


.input-range__label {
    color: #8f9fb5;
    font-family: "Helvetica Neue", san-serif;
    font-size: 0.8rem;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    white-space: nowrap;
}

.input-range__slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #0b719d;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.65rem;
    outline: none;
    position: absolute;
    top: 50%;
    -webkit-transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
    width: 1rem;
}

.input-range__label-container {
    left: -50%;
    position: relative;
}


.input-range__label--value {
    position: absolute;
    bottom: -1.8rem;
}

.input-range__track {
    width: 100%;
    min-width: 100px;
    background: none;
    border-radius: 0.3rem;
    cursor: pointer;
    display: block;
    height: 0.3rem;
    position: relative;
    -webkit-transition: left 0.3s ease-out, width 0.3s ease-out;
    transition: left 0.3s ease-out, width 0.3s ease-out;
}


.input-range__track--background {
    /*  */
}

.input-range__track--active {
    background: #0b719d;
    left: 30%;
    width: 35%;
}

.input-range__slider-container {
    -webkit-transition: left 0.3s ease-out;
    transition: left 0.3s ease-out;
}

.rs-container {
    font-family: "Source Sans Pro", sans-serif;
}

.rs-container .rs-pointer {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 1.5rem;
    margin-top: -0.85rem;
    outline: none;
    position: absolute;
    -webkit-transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
    width: 1.5rem;
    top: 26%;;
    background: #3148DC;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 2px 4px rgba(49, 72, 220, 0.25);
}

.rs-tooltip {
    color: #333;
    width: auto;
    min-width: 60px;
    height: 30px;
    position: relative;
    background: transparent; 
    border: none; 
    border-radius: 3px;
    position: absolute;
    transform: translate(-50%, 20px);
    left: 13px;
    text-align: center;
    font-size: 13px;
    padding: 6px 10px 0;
}

.rs-container .rs-selected {
    background-color: #0b719d;
    border: none;
    transition: all 0.2s linear;
    width: 0;
}

.rs-container .rs-pointer::before, .rs-container .rs-pointer::after {
    content: none;
}

.rs-container .rs-scale {
    display: none;
}

.rs-tooltip {
    color: #8f9fb5;
    font-family: "Helvetica Neue", san-serif;
    font-size: 0.8rem;
    white-space: nowrap;
}
.rs-container.sliding .rs-selected, .rs-container.sliding .rs-pointer {
    transition: none;
    background: #3148DC;
}

.rs-container .rs-bg, .rs-container .rs-selected {
    border: none;

    border-radius: 50px;
    height: 3px;
    top: 9px;
}

input {

    font-family: "Source Sans Pro", sans-serif;
    font: sans-serif;
    padding: 1px 2px;
    border-width: 2px;
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}

/* end of input range */


.min_max_filter {
    height: 5em;
}

.checkbox_filters {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 12vh;
}

.checkbox_filters .form_controll {
    position: relative;
}

.form_controll {
    margin-bottom: 1rem;
}

/* text inputs */

#filter-group-cutom2 {
    display: flex;
    justify-content: space-between;
    position: relative;
}

#filter-group-cutom2 .form_controll {
    display: flex;
    flex-direction: column;
    width: 48%;
}


#filter-group-cutom2 .input_apply_button {
    right: -330px;
    top: 0;
}


.min_max_filter .input_apply_button {
    right: -330px;
    top: 0;
}

/* checkboxes */


  .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .cbx:not(:last-child) {
    margin-right: 6px;
  }
  .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0,16,75,0.05);
  }
  .cbx span:first-child svg {
    position: absolute;
    top: 4px;
    left: 3px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
    width: 70%;
  }
  .cbx:hover span:first-child {
    border-color: #292A5A;
  }
  .inp-cbx {
    position: absolute;
    visibility: hidden;
  }

  .inp-cbx:checked + .cbx span:first-child {
    background: #292A5A;
    border-color: #292A5A;
    animation: wave 0.4s ease;
  }
  .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }

  .inp-cbx-product {
    position: absolute;
    visibility: hidden;
  }

  .inp-cbx-product:checked + .cbx span:first-child {
    background: #292A5A;
    border-color: #292A5A;
    animation: wave 0.4s ease;
  }
  .inp-cbx-product:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
  }
  @media screen and (max-width: 640px) {
    .cbx {
      width: 100%;
      margin-bottom: 4px;
      display: inline-block;
    }
  }
  @-moz-keyframes wave {
    50% {
      transform: scale(0.9);
    }
  }
  @-webkit-keyframes wave {
    50% {
      transform: scale(0.9);
    }
  }
  @-o-keyframes wave {
    50% {
      transform: scale(0.9);
    }
  }
  @keyframes wave {
    50% {
      transform: scale(0.9);
    }
  }
  
  
/* ************************************************************************
/* End of Sidebar
************************************************************************ */


/* ************************************************************************
/* End of Category products section
************************************************************************ */

.category_products_section {
    position: relative;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.category_products {
    width: calc(100% - 285px);
    margin-right: 0;
}

.category_products_list {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.category_products_list .product {
    width: 26%;
    height: auto;
    margin-bottom: 30px;
    margin: 1em 1em;
}

.show_more_products {    
    color: #3148DC;
    background: transparent;
    width: 90%;
    height: 50px;
    border: 2px solid #3148DC;
    box-sizing: border-box;
    margin: auto;
    width: 204px;
    height: 47px;
    margin-top: 30px;
}

.category_products_paginateion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
    margin-top: 30px;
}


  
.pagination li a {
    color: black;
    float: left;
    padding: 4px 10px;
    text-decoration: none;
    transition: background-color .3s;
}
  
.pagination .active {
    background-color: #3148DC;
    color: white;
    border-radius: 50%;
	    padding: 4px 10px;
    text-decoration: none;
    transition: background-color .3s;
	
}

.pagination .active a {
width: 6px;
    background-color: #3148DC;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color .3s;
    display: flex;
    justify-content: center;
	
}
  
.pagination li a:hover:not(.active) {
    color: #3148DC;
}

.pagination_arrow {
    display: flex;
    align-items: center;
}

.pagination_prew {

    width: 15px;
    height: 15px;
}

.pagination_next {
    transform: rotate(180deg);
    width: 15px;
    height: 15px;
}


.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
    list-style: none;
}



/* ************************************************************************
/* End of Category products section
************************************************************************ */


/* ************************************************************************
/* Cart section
************************************************************************ */

#cart {
    position: relative;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
}

#cart .dropdown-menu {
    position: absolute;
    right: 0;
    width: 20vw;
    min-width: auto;
}


.cartInfo {
    display: none;
}

.cartInfo_show {
    display: block;
}

.products_in_cart_section {
    margin-top: 80px;
    flex-direction: column;
}


.form-cart {
    width: 100%;
}


.products_in_cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product_in_cart {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 25px 10px 25px 10px;
    border-bottom: 1px solid #F5F5F5;
}

.product_cart_delete {
    flex: 11%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_cart_about_name {
    color: #080808;
}

.cart_delete {
    width: 32px;
    height: 32px;
    cursor: pointer;
}


.product_cart_about {
    flex: 34%;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #080808;
}


.product_cart_image {
    margin-right: 1em;
}


.product_cart_count {
    flex: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product_cart_price {
    flex: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #080808;
}


.product_cart_count {
	position: relative;
	width: 100px;
}

.product_cart_count_span {
    margin-left: 20px;
}

.product_cart_count .product_cart_count_input {
    background: #F5F5F5;
    font-size: 16px;
    border: none;
	display: block;
	height: 52px;
    width: 52px;
	line-height: 32px;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-align: center;
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}

.product_cart_count .product_cart_count_input::-webkit-outer-spin-button,
.product_cart_count .product_cart_count_input::-webkit-inner-spin-button {
	display: none;
}

.count_minus {
    background: #F5F5F5;
    font-size: 36px;
    font-weight: 100;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
}
.count_plus {
    background: #F5F5F5;
    font-size: 36px;
    font-weight: 100;
	width: 52px;
    height: 52px;
	padding: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}


.cart_total {
    margin-top: 50px;
    width: 100%;
    height: 170px;
    background: url('/image/catalog/base/cart_total.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 8px;
}


.cart_total_order {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.cart_total_order_btn,
.order_form_submit_button input[type=submit] {
    text-decoration: none;
    height: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
    align-self: flex-start;
    font-size: 16px;
}








#page0 select {
    width: 100%;
    height: 34px;
    border: none;
    border-radius: 4px;
    color: #000000;
    background: #F5F5F5;
}

#page0 input {
    width: 100%;
    height: 34px;
    border: none;
    border-radius: 4px;
    color: #000000;
    background: #F5F5F5;
}

textarea#custom_comment {
    width: 100%;
    border: none;
    border-radius: 4px;
    background: #F5F5F5;
}

.qc .ve-radio--selected {
    color: #080808 !important;
}

#login_popup {
    display: none;
}

.qc-row {
    display: flex;
}

#payment_address_fields {
    display: flex;
    flex-direction: column;
}

#child0 {
    display: none;
}

#child1 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    width: 100%;
    margin-top: 2px;
}

#child2 {
    display: none;

}

#child3 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    width: 100%;
}

#child4 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    width: 100%;
    margin-top: 2px;
}

#child5 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    width: 100%;
}

#child6 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    margin-top: 2px;
    width: 100%;
}

#child7 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    margin-top: 2px;
    width: 100%;
}

#child8 {
    display: none;
}

#child9 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    width: 100%;
}

#child10 {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 30px;
    width: 100%;
}

.payment-method-image {
    display: none;
}

.qc-confirm .ve-clearfix {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qc .qc-name a, .qc label a b {
    font-size: 12px;
    color: #2D9CDB !important;
    text-decoration: none;
}

.col-full {
    width: 100%;
    padding: 0;
    display: block;
}

#row1 {
    width: 100%;
}

#col0 {
    width: 37%;
}

#col1 {
    width: 37%;
}

.qc-field-col {
    width: 100%;
}

.ve-card {
    box-shadow: none;
}

.qc .ve-btn--primary, .qc a.ve-btn--primary, .qc-btn.ve-btn--primary {
    background: #23a1d1 !important;
    color: #fff !important;
}

.qc-row {
    display: flex;
    align-items: baseline;
    justify-content: space-around;
}

#row1 .qc-row {
    flex-direction: column;
}


#row1 .qc-col-sm-6 {
    width: 100%;
    padding: 0;
}

.qc-field {
    width: 100%;
}


.qc-checkout-product hr {
    display: none;
}

.d-vis hr {
    display: none;
}

.ve-card > hr {
    display: none;
}

.col-half {
    width: 100%;
    padding: 0; 
    float: left; 
}

#custom_fields {
    display: flex;
    flex-direction: column;
}

.qc-coupon {
    display: none;
}

.qc-voucher {
    display: none;
}

.qc-quantity {
    display: none;
}

.qc-image {
    display: none;
}

.qc .qc-name a, .qc label a {
    font-size: 16px;
    line-height: 24px;
    color: #000000 !important;
}

.qc .ve-checkbox [type=checkbox]:checked + i:before {
    border: 1px solid #292A5A !important;
    background-color: #292A5A !important;
}

.qc .ve-btn--primary, .qc a.ve-btn--primary, .qc-btn.ve-btn--primary {
    width: 230px;
    height: 50px;
    background: #3148DC !important;
    border: none;
    color: #FFF;
    align-self: flex-start;
}

.qc .ve-btn--primary:hover, .qc a.ve-btn--primary:hover, .qc-btn.ve-btn--primary:hover {
    background: #24a8da !important;
}

.qc .ve-btn--primary:hover, .qc a.ve-btn--primary:hover, .qc-btn.ve-btn--primary:hover {
    background-color: #1859FF !important;
    border: none;
    color: #fff;
}

.ve-input {
    font-family: 'Open Sans', sans-serif;
}

.ve-h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #080808;
}

.ve-card__header {
    border-bottom: none;
}

.qc-total {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

td.qc-total {
    width: auto;
    display: table-cell;
}

.ve-label {
    max-width: none;
    flex: none;
    width: 50%;
    text-align: left;
}


.order_section,
.simplecheckout-step {
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.order_card_header {
    font-weight: 600;
    font-size: 24px;
    line-height: 57px;
    color: #080808;
}

.order_card_form_controll {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 90%;
    align-self: center;
}

.order_top_card_label_p {
    margin: 10px 10px 10px 26px;
}

.order_card_form_controll h3 {
    font-weight: 500;
    margin-bottom: 0;
}


.order_form {
    display: flex;
    flex-direction: column;
}


.order_left {
    width: 62%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 730px;
}

.order_top_card {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 65px;
    width: 100%;
}

.order_bottom_card {
    background: #fff;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 83px;
    margin-top: 2px;
    width: 100%;
}


.order_right {
    width: 43%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 495px;
    position: sticky;
    top: 18vh;
}

.order_form_submit_text_total_products {
    display: none;
}

.order_form_submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order_form_submit_total {
    width: 100%;
    display: flex;
    justify-content: space-between;
}


.order_form_policy_total {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order_form_policy_total a {
    color: #2D9CDB;
    text-decoration: none;
}


.order_form_submit_button {
    width: 100%;
}

.order_form_submit_button button {
    width: 100%;
}

.order_total_products {
    list-style: url('/image/catalog/icons/list_style.svg');
}

.order_total_products li {
    font-size: 16px;
    line-height: 24px;
    
    color: #000000;  
}

.order_total_products li::marker {
    margin-right: 10px;
}

.cart_total_order_edit_btn {
    padding: 10px 40px 12px;
}






/* Order confirm */


.order_confirm_section {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 300px;
    padding: 30px;
}

.confirm_icon {
    width: 85px;
    height: 85px;
}

.confirm_header {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    text-align: center;
    color: #292A5A;
}

.confirm_text {
    font-size: 16px;
    line-height: 24px;
    width: 40%;
    text-align: center;
    color: #080808;
}

.confirm_btn {

}

.confirm_button {
    width: 275px;
    height: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
    align-self: flex-start;
}




.cartInfo_show {
    list-style: none;
    padding: 20px;
    
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    border-radius: 4px;
}

#cart .dropdown-menu li > div {
    min-width:auto;
    padding: 0 10px;
}

#cart .dropdown-menu {
    background: #FFFFFF;
    z-index: 1001;
}

/* ************************************************************************
/* End of Cart section
************************************************************************ */

.rs-container * {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.rs-container {
    font-family: Arial, Helvetica, sans-serif;
    height: 45px;
    position: relative;
}
.rs-container .rs-bg, .rs-container .rs-selected {
    background-color: #eee;
    border: 1px solid #ededed;
    height: 10px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 100%;
    border-radius: 3px;
}
.rs-container .rs-selected {
    background-color: #00b3bc;
    border: 1px solid #00969b;
    transition: all 0.2s linear;
    width: 0;
}
.rs-container.disabled .rs-selected {
    background-color: #ccc;
    border-color: #bbb;
}
.rs-container .rs-pointer {
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 4px;
    cursor: pointer;
    height: 20px;
    left: -10px;
    position: absolute;
    top: 0;
    transition: all 0.2s linear;
    width: 30px;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 6px #ebebeb, 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.rs-container.disabled .rs-pointer {
    border-color: #ccc;
}
.rs-container .rs-pointer::before,
.rs-container .rs-pointer::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 9px;
    background-color: #ddd;
    left: 12px;
    top: 5px;
}
.rs-container .rs-pointer::after {
    left: auto;
    right: 12px;
}
.rs-container.disabled .rs-pointer {
    cursor: default;
}
.rs-container.sliding .rs-selected,
.rs-container.sliding .rs-pointer {
    transition: none;
}
.rs-container .rs-scale {
    left: 0;
    position: absolute;
    top: 5px;
    white-space: nowrap;
}
.rs-container .rs-scale span {
    float: left;
    position: relative;
}
 .rs-container .rs-scale span::before {
    background-color: #ededed;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 1px;
}
.rs-container.rs-noscale span::before {
    display: none;
}
.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
    display: block;
}
.rs-container .rs-scale span:last-child {
    margin-left: -1px;
    width: 0px;
}
.rs-container .rs-scale span ins {
    color: #333;
    display: inline-block;
    font-size: 12px;
    margin-top: 20px;
    text-decoration: none;
}
.rs-container.disabled .rs-scale span ins {
    color: #999;
}
.rs-tooltip {
    color: #333;
    width: auto;
    min-width: 60px;
    height: 30px;
	position: relative;
	background: #fff;
	border: 1px solid #00969b;
    border-radius: 3px;
    position: absolute;
    transform: translate(-50%, -35px);
    left: 13px;
    text-align: center;
    font-size: 13px;
    padding: 6px 10px 0;
}
.rs-container.disabled .rs-tooltip {
    border-color: #ccc;
    color: #999;
}


/* ************************************************************************
/* Blog section
************************************************************************ */

.posts_section {
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.post_card {
    width: 48%;
    display: flex;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(49, 72, 220, 0.25);
    transition: all .6s;
    cursor: pointer;
    max-height: 500px;
    min-height: 500px;
}

.post_card:hover {
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
}

.post_card img {
    width: 100%;
    max-height: 40%;
    object-fit: cover;
}

.post_card h3 {
    width: 90%;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #000000;
    padding: 0 30px;
    margin: 0;
}

.post_card p {
    width: 90%;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    padding: 0 30px;
    margin: 0;
}

.latest_read_more {
    padding: 0 30px;
    margin-bottom: 30px;
}

/* ************************************************************************
/* End of Blog section
************************************************************************ */


/* ************************************************************************
/* Post section
************************************************************************ */

.post_section {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post_image {
    width: 100%;
    
}

.post_image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.post_content {
    width: 80%;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.post_content h1 {
    margin-bottom: 0;
}

.post_content h2 {
    width: 60%;
}

.post_modifications {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.modification_list {
    width: 45%;
}

.modification_list p {
    padding-left: 20px;
}

.modification_header {
    width: 100%;
    background: #E3EFFF;
    border-radius: 4px;
    padding: 13px 20px;
}

.modification_header h4 {
    margin: 0;
}

.horizontal {
    width: 100%;
    overflow: hidden;
}

.post_hr {
    width: 100%;
    height: 1px;
    background: #C4C4C4;
    margin-top: 60px;
}


.text-center img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ************************************************************************
/* End of Post section
************************************************************************ */




/* ************************************************************************
/* Contact section
************************************************************************ */


.contact_section {
    margin-top: 36px;
    width: 100%;

    margin-bottom: -100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 700px;

}

.contact_cart_background_img {
    width: 100%;
    height: 500px;
    bottom: 0;
    position: absolute;
}

.google_map {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* bottom: -100px; */
    left: 0;
    z-index: 1;
    opacity: .7;
}

.map_box_shadow_top {
    position: absolute;
    width: 100%;
    z-index: 2;
    -webkit-box-shadow: 0px 40px 46px 30px rgb(255 255 255);
    box-shadow: 0px 30px 50px 80px rgb(255 255 255);
}

.map_box_shadow_bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-box-shadow: 0px 40px 46px 30px rgb(255 255 255);
    box-shadow: 0px -30px 50px 80px rgb(255 255 255);
}

.contact_content {
    min-height: 600px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}



.contact_right {
    background: #FFFFFF;
    box-shadow: 0px 11px 25px rgba(49, 72, 220, 0.15);
    padding: 65px;
    width: 55%;
    z-index: 3;
}

.contact_right h2 {
    margin-top: 0;
}

.contact_right h3{
    margin-top: -6px;
}

.contact_left {
    padding: 5em;
    padding-bottom: 0;
    width: 40%;
    z-index: 3;
    height: 36vh;
}

.contact_content form{
    max-width: unset !important;
}

.contact_content .contact_form_label{
    margin-bottom: 0px;
    font-size: 13px;
}


.contact_left h2 {
    margin-top: 0;
}


.contact_form_header p {
    text-align: left;
}


.contact_page_form {
    width: 100%;
}


/* ************************************************************************
/* End of Contact section
************************************************************************ */





/* ************************************************************************
/* Product section
************************************************************************ */


.product_page_section {
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    position: relative;
}

.slider_images {
    width: auto;
}

.product_left {
    width: 65%;
    max-width: 760px;
}

.product_slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 100px;
}

.slider_controll {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider_btn {
    background: #3148DC;
    padding: 10px;
    color: #FFF;
    border: none;
}

.slider_btn_left {
    transform: rotate(-90deg);
}

.slider_btn_right {
    transform: rotate(90deg);
}

.slider_image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.product_slider_image {
    width: auto;
    height: 100%;
    max-width: 350px;
}

.product_characteristics {
    width: 100%;
    margin-bottom: 50px;
}

.product_characteristic span {
    font-size: 16px;
}

.product_characteristics_list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product_characteristic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
    height: 44px;
    margin-bottom: 2px;
}

.product_characteristic:nth-child(odd) {
    background: #E3EFFF;
}

.product_characteristic:nth-child(even) {
    background: #F5F5F5;
}

.product_features {
    margin-bottom: 50px;
}

.product_features_ul {
    list-style: url(/image/catalog/icons/list_style.svg);
    padding-left: 15px;
}

.product_features_ul li {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}


.product_short_about ul {
    list-style: url(/image/catalog/icons/list_style.svg);
    padding-left: 15px;    
}

.product_short_about li {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.product_short_about {
    margin-bottom: 50px;
}

.product_right {
    width: 31%;
    max-width: 420px;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    background: #FFFFFF;
    position: sticky;
    top: 17vh;
    right: 0;
}

.product_right_header {
    background: #EAF2FF;
    padding: 30px;
}

.product_right_header_about {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product_right_modifications {
    padding: 30px;
    display: flex;
    flex-direction: column;
}


.product_custom_radio {
	cursor: pointer;
	position: relative;
    margin-right: 10px;
}

.product_custom_radio_input {
    opacity: 0;
	position: absolute;
    cursor: pointer;
}

.product_custom_radio_input + span {
	color: #292A5A;
	border-radius: 50%;
	padding: 14px 20px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
    background: #FFFFFF;
    border: 1px solid #292A5A;
}

.product_custom_radio_input:checked + span {
	color: #D9E7FD;
    background-color: #292A5A;
}

.product_custom_radio_input:focus + span {
	color: #fff;
}

.product_right_btn {
    width: 100%;
    height: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
    align-self: flex-start;
}

.product_right_modifications .form_controll {
    margin-bottom: 2em;
}

.product_right_modifications h3 {
    margin-top: 0;
}

.product_right_price {
    margin-bottom: 2em;
    position: relative;
}

.product_right_price .bold_content {
    font-size: 24px;
}

.product_old_price {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #808080;
    text-decoration: line-through;
}

.product_right_availibility {
    color: #00BC40;
    font-size: 13px;
    line-height: 24px;
    position: absolute;
    right: 0;
    top: 0;
}



/* slider */

.splide__list {
    min-width: 600px;
}

.splide__arrow {
    position: absolute;
    z-index: 2;
    bottom: -10vh;
    top: unset;
    transform: translateY(-50%);
    border: none;
    padding: 0;
    background: transparent;
    background: #3148dc;
    border-radius: 0;
    padding: 10px;
    height: 42px;
    width: 42px;
    opacity: 1;
    border-radius: 4px;
}

.splide__pagination {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6.46vh;
    padding: 0;
}

.splide__pagination__page {
    width: 10px;
    height: 10px;
}

.splide__arrow svg {
    width: 2.5em;
    height: 2.5em;
    fill: #fff;
    transition: fill .2s linear;
}

.splide--draggable>.splide__track>.splide__list>.splide__slide {
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_slider_image {
    width: auto;
    height: 100%;
    max-width: 300px;
    height: auto;
    /* object-fit: cover; */
}

.splide__pagination__page.is-active {
    transform: scale(1.2);
    background: #3148DC;
}


/* ************************************************************************
/* End of Product section
************************************************************************ */



/* ************************************************************************
/* AboutUs section
************************************************************************ */

.about_banner_section {
    margin-top: 36px;
    background: #0963B6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 390px;
}

.about_banner_content {
    width: 42%;
}

.about_banner_background_img {
    width: 45%;
    height: 100%;
    min-height: 390px;
    background: url('/image/catalog/base/about.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about_banner_content h1 {
    font-size: 45px;
    margin-top: 0;
    line-height: 60px;
    font-weight: 600;
    color: #FFFFFF;
}

.about_banner_content p {
    font-size: 16px;
    line-height: 24px;
    color: #E3EFFF;
}


.becoming_section {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.becoming_section h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    text-align: center;
    color: #292A5A;
}

.becoming_cards {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #F5F5F5;
    margin-bottom: 60px;
}

.becoming_card {
    width: 25%;
    min-height: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0px 0 0 20px;

}

.becoming_card h3 {
    margin-top: 0;
}

.becoming_card p {
    width: 70%;
}


.becoming_card_first {
    background: url(/image/catalog/base/Union_1.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.becoming_card_second {
    background: url(/image/catalog/base/Union_2.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.becoming_card_third {
    background: url(/image/catalog/base/Union_3.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.becoming_card_fourth {
    background: url(/image/catalog/base/Union_4.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.becoming_footer {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #333333;
}


.about_services_section {
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about_btn {
    width: auto;
    height: 50px;
    margin-top: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
}


.about_approach {
    width: 100%;
    height: 100%;
    margin-top: 80px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}


.about_approach_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

/* ************************************************************************
/* End of AboutUs section
************************************************************************ */




/* ************************************************************************
/* Cooperation section
************************************************************************ */

.cooperation_section {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    text-align: left;
}



.cooperation_text_with_image {
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    justify-content: space-between;
}

.cooperation_text_left {
    width: 47%;
}

.cooperation_image_right {
    max-width: 445px;
    width: 45%;
}

.cooperation_image_right img {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.coopration_ul {
    list-style: url(/image/catalog/icons/list_style.svg);
    padding-left: 15px;
}

.coopration_ul li {
    font-size: 16px;
    line-height: 24px;
    color: #080808;
}


.cooperation_application_section {
    margin-top: 80px;
    width: 100%;
    min-height: 460px;
    background: #0963B6;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cooperation_application_section h2 {
    font-size: 45px;
    line-height: 60px;
    text-align: center;
    margin-top: 0;
    color: #FFFFFF;
}

.cooperation_form_inputs {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.cooperation_form_left {
    width: 47%;
}

.cooperation_form_right {
    width: 47%;
}

.cooperation_form_left label {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 24px;
    color: #F5F5F5;
    margin-bottom: 10px;
}

.cooperation_form_left input {
    width: 95%;
    height: 46px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #E3EFFF;  
	color: #000;
}

.cooperation_form_left .form-control {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.cooperation_form_right label {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 24px;
    color: #F5F5F5;
    margin-bottom: 10px;
}

.cooperation_form_right .form-control {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.cooperation_form_right textarea {
    border-radius: 4px;
    background: #fff;
    border: 1px solid #E3EFFF;  
    width: 99%;
	color: #000;
}

.cooperation_form_btn {
    width: 244px;
    height: 50px;
    background: #ffffff;
    border: none;
    color: #3148DC;
    padding: 10px 40px 12px;
}


/* ************************************************************************
/* End of Cooperation section
************************************************************************ */



/* ************************************************************************
/* Services section
************************************************************************ */

.services_section {
    margin-top: 32px;
    margin-bottom: 80px;
    background: linear-gradient(0.32deg, rgba(235, 243, 255, 0) 7.24%, #EAF2FF 99.74%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services_cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.services_card {
    width: 47%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.services_card img {
    width: 60px;
    height: 60px;
}

.services_card span {
    width: 84%;
    text-align: left;
}

.services_btn {
    width: 230px;
    height: 50px;
    margin-top: 50px;
    background: #3148DC;
    border: none;
    color: #FFF;
    padding: 10px 40px 12px;
	white-space: nowrap;
}

.services_quality {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.quality_img {
    width: 45%;
}

.quality_img img {
    width: 100%;
    height: auto;
}

.quality_text {
    width: 45%;
}


.services_exp {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.quality_img {
    width: 48%;
}

.exp_text {
    width: 48%;
}

.exp_img img {
    width: 100%;
    height: auto;
}

.exp_img {
    width: 45%;
    border-radius: 10px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .modal_open {
    display: block;
  }
  
  .modal .close {
    position: sticky;
    top: 0px;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: all 0.5s;
	z-index: 99;
  }
  .modal .close:hover, .modal .close:focus {
    color: #c51111;
    text-decoration: none;
    font-size: 32px;
    cursor: pointer;
  }
  .modal .bg-modal {
    position: absolute;
    z-index: 1;
    /* Sit on top */
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    top: 0;
    right: 0;
    background-color: black;
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
  }
  .modal .modal-content {
    width: 50%;
    min-height: 500px;
    overflow-y: auto;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 2px 2px 4px 0px #a7a7a79e;
    z-index: 2;
    position: relative;
    margin: auto;
  }
.modal-body>.contact_form {
	width:100%;
}
footer {
    padding: 10px;
    margin-top: 100px;
    padding-top: 50px;
    background: #E3EFFF;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 24px;
    position: relative; 
    z-index: 2;
}

.footer_logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.footer_links {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_about_span {
    color: #000000;
}

.footer_about {
    width: 33%;
}

.footer_menu {
    width: 63%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.links_column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.links_column a {
    color: #080808;
    text-decoration: none;
    margin-bottom: 15px;
}

.links_column h5 {
    color: #080808;
    text-decoration: none;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #080808;
    margin-bottom: 15px;
}

.footer_bio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* ************************************************************************
/* End of Footer section
************************************************************************ */







/* ************************************************************************
/* Media 
************************************************************************ */



@media (max-width:768px) {
    h1 {
        font-size: 33px;
        line-height: 38px;
    }

    h2 {
        font-size: 18px;
        line-height: 27px;
        color: #292A5A;
    }
}



@media (max-width:1200px) {
    .links {
        width: 70%;
    }

    .menu_link {
        padding: 10px 2px 10px 2px;
        font-size: 13px;
    }

    #cart .dropdown-menu {
        width: 38vw;
    }
}

@media (max-width:992px) {
    .text_main h1 {
        font-size: 33px;
        font-weight: 500;
        margin: .5rem 0 .7rem 0;
        text-align: center;
    }

    .product_right_header {
        padding: 16px;
    }

    .product_right_modifications {
        padding: 16px;
    }

    .product_custom_radio_input + span {
        padding: 10px 16px;
    }


    .splide--draggable>.splide__track>.splide__list>.splide__slide {
        justify-content: space-between;
    }

    #cart .dropdown-menu {
        width: 52vw;
    }

}


@media (max-width:920px) {
    .products_list {
        flex-wrap: wrap;
        justify-content: space-around;
    }

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

    #cart .dropdown-menu {
        width: 52vw;
    }

}


@media (max-width:768px) {


    /* nav */

    .main-nav {
        display: block;
    }
    

    .menu {
        padding-bottom: 0;
    }

    .links {
        justify-content: flex-end;
    }

    .menu_link_desc {
        display: none;
    }



    .nav_icon:first-child {
        margin-right: 20px;
    }

    .left_links {
        position: unset;
    }

     .dropdown_content {
        flex-direction: column;
        width: 100vw;
        left: 0;
        top: 11vh;
    }



    /* banner */

    .banner_section {
        margin: 0;
        margin-top: 11vh;
    }

    .content_main {
        margin-top: 20px;
    }

    .text_main h1 {
        font-size: 33px;
        line-height: 38px;
        margin: 1em 0 1em 0;
    }

    .banner_background_img {
        height: 33%;
    }

    .banner_frames {
        flex-direction: column;
        min-height: 60vh;
    }

    .baner {
        height: auto;
    }

    .banner_frame {
        width: 90%;
        height: 150px;
    }




    /* approach */

    .approach_header {
        font-weight: 600;
        font-size: 33px;
        line-height: 38px;
    }

    .approach_right_item {
        flex-direction: column;
        align-items: flex-start;
    }

    .approach_left {
        max-width: 330px;
        max-height: 480px;
        width: 45%;
        height: 100%;
    }

    .approach_right_item_content h4 {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    .approach_right_item_content p {
        font-size: 14px;
        line-height: 24px;
    }




    /* about */

    .about_banner_section {
        flex-direction: column;
    }

    .about_banner_content {
        width: 90%;
    }

    .about_banner_background_img {
        width: 100%;
    }
    
    .about_approach {
        flex-direction: column;
    }

    .becoming_cards {
        flex-direction: column;
    }

    .becoming_card {
        width: 100%;
        margin-bottom: 10px;
    }

    .becoming_section {
        padding: 0;
        width: 90%;
    }




    /* products */

    .products_in_cart {
        padding: 0;
    }

    .products_header h5 {
        font-size: 33px;
    }

    .product {
        width: 22%;
        height: 100%;
    }

    .product_content_name {
        font-size: 12px;
    }

    .product_content_price {
        font-size: 12px;
    }
    
    .product_content_btn {
        width: auto;
        padding: 6px 40px 6px;
        font-size: 18px;
        height: auto;
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .product_content_availability {
        display: none;
    }




    /* news */

    .all_news h2 {
        margin-top: 0;
        font-size: 33px;
        line-height: 38px;  
    }

    .main_news {
        width: 30%;
    }

    .main_news h5 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .main_news p {
        font-size: 14px;
    }

    .main_news_btn {
        font-size: 18px;
    }

    .all_news_btn {
        width: 160px;
        height: 50px;
        font-size: 12px;
    }




    /* contact form */

    .form_section {
        width: 100%;
    }

    .form_header h2 {
        font-size: 33px;
        line-height: 38px;
    }

    .form_header p {
        font-size: 14px;
        width: 60%;
    }

    .light_content {
        font-size: 14px;
    }

    .bold_content {
        font-size: 14px;
    }





    /* footer */

    footer {
        margin-top: 50px;
        padding-top: 20px;
    }

    .footer_by {
        display: none;
    }

    .footer_links {
        width: 90%;
    }

    .footer_bio {
        padding: 10px 10px;
        width: 90%;
    }



    /* Category page */

    .sidebar {
        visibility: hidden;
        min-height: auto;
        top: -11vh;
        max-height: 76vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
        opacity: 0;
    }

    .sidebar_show {
        visibility: visible;
        opacity: 1;
    }

    .apply_sidebar_filters_btn {
        display: flex;
    }

    .show_filters_btn {
        position: fixed;
        width: 43px;
        height: 43px;
        cursor: pointer;
        display: flex;
    }

    .category_products {
        width: 100%;
    }

    .category_products_section .products_section {
        width: 100%;
    }

    .products .row {
        justify-content: center;
    }

    .sidebar_categories {
        display: none;
    }

    .top_categories {
        height: 48px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top_categories .this_category {
        font-size: 22px;
    }

    .breadcrumbs_section {
        flex-direction: column;
        height: auto;
        width: 90%;
    }

    .category_products_section {
        width: 90%;
    }
    



    /* Cart page */ 


    .product_cart_delete {
        margin-bottom: 20px;
    }

    .product_cart_about {
        margin-bottom: 20px;
    }

    .cart_total {
        margin-top: 30px;
        width: 90%;
        align-self: center;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }


    .order_section {
        margin-top: 20px;
        flex-direction: column;
    }

    .order_left,
.simplecheckout-left-column	{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: none;
    }
.simplecheckout-right-column,
    .order_right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: none;
        margin-top: 24px;
    }

    .order_right .order_top_card {
        display: none;
    }

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

    .order_form_submit_total {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .order_form_submit_total .bold_content {
       margin-bottom: 0;
    }

    .order_form_policy_total {
        display: none;
    }

    .cart_total_order_btn_div {
        position: absolute;
        top: 100px;
        width: 100%;
        align-self: center;
    }
    
    .cart_total_order {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        align-self: flex-end;
    }

    .cart_total_order_sum {
        align-self: flex-end;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .cart_total_order_sum .bold_content{
        margin-bottom: 0;
    }

    .cart_total_order_btn,
    .order_form_submit_button input[type=submit] {
        padding: 10px 5px 10px;
        width: 100%;
    }

    .cart_total_order_edit_btn {
        padding: 10px 5px 10px;
    }

    .order_form_submit_text_total_products {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }

    .order_form_submit_text_total_products .bold_content {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .order_form_submit {
        flex-direction: row;
    }


    /* Product page */ 

    .product_left {
        width: 55%; 
    }

    .product_right {
        width: 40%;
    }

    .product_slider_image {
        width: 97%;
        height: 100%;
        max-width: 350px;
        object-fit: cover;
    }



    /* Services page */

    .services_cards {
        padding: 0;
        width: 90%;
    }
    .services_card {
        width: 100%;
    }

    .services_quality {
        flex-direction: column;
    }

    .services_expirience {
        padding: 0;
        width: 90%;
    }

    .quality_img {
        width: 100%;
    }

    .quality_text {
        width: 100%;
    }

    .services_exp {
        flex-direction: column;
    }

    .exp_text {
        width: 100%;
    }

    .exp_img {
        width: 100%;
    }



    /* blog */

    .posts_section {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
    }

    .post_card {
        width: 90%;
        align-items: center;
        min-height: 400px;
    }

    .post_card h3 {
        padding: 0;
    }

    .post_card p {
        padding: 0;
    }

    .post_card a {
        margin-bottom: 15px;
    }



    /* Post */

    .post_section {
        padding: 0;
    }

    .post_content h1 {
        font-size: 23px;
    }

    .post_content h2 {
        font-size: 18px;
        width: auto;
    }

    .post_content {
        width: 90%;
    }



    /* Contact page */

    .contact_left {
        padding: 2em;
    }

    .contact_right {
        padding: 2em;
    }

    .contact_form_header p {
        width: 100%;
    }
}



@media (max-width:590px) {


    /* nav */

    .top_menu {
        width: 90%;
        align-items: center;
        padding-top: 2px;
    }

    .bottom_menu {
        width: 90%;
    }

    .logo {
        width: auto;
    }

    .menu {
        padding-bottom: 0;
    }

    .nav_catalog {
        display: block;
    }
    .main-nav__link {
        margin: 0.5rem;
        padding: .8rem;
    }

    .mobile_menu_phone {
        display: flex;
        font-size: 22px;
        align-items: center;
        justify-content: center;
    }
    .menu_phone {
        display: none;
    }

    .links {
        width: 22%;
        justify-content: space-between;
    }

    .menu_link_desc {
        display: none;
    }

    .nav_icon:first-child {
        margin-right: 20px;
    }



    /* banner */

    .banner_section {
        margin: 0;
        margin-top: 11vh;
    }

    .text_main h1 {
        font-size: 33px;
        line-height: 38px;
        margin: 1em 0 1em 0;
    }

    .banner_background_img {
        height: 50%;
    }

    .banner_frames {
        flex-direction: column;
        min-height: 60vh;
    }

    .baner {
        height: auto;
    }

    .banner_frame {
        width: 90%;
        height: 150px;
    }



    /* approach */

    .approach_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .approach_header {
        font-weight: 600;
        font-size: 33px;
        line-height: 38px;
    }

    .approach_right_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .approach_left {
        max-width: 90%;
        max-height: 100%;
        height: auto;
        width: auto;
    }

    .approach_right {
        width: 90%;
        height: 100%;
      
    }

    .approach_right_item_content h4 {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    .approach_right_item_content p {
        font-size: 14px;
        line-height: 24px;
    }




    /* products */

    .products_list {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .products_header {
        text-align: center;
    }

    .products_header h5 {
        font-size: 33px;
        width: 100%;
    }

    .products_header_btn {
        display: none;
    }

    .products_bottom_btn {
        display: block;
    }

    .product {
        width: 40%;
        height: 100%;
        margin-bottom: 2em;
    }

    .product_content_name {
        font-size: 12px;
    }

    .product_content_price {
        font-size: 12px;
    }
    
    .product_content_btn {
        width: auto;
        padding: 6px 20px 6px;
        font-size: 14px;
        height: auto;
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .products .product-layout {
        height: auto;
    }

    .product_content_availability {
        display: none;
    }




    /* news */

    .news_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    .all_news {
        width: 90%;
    }

    .all_news_btn {
        display: none;
    }

    .all_news h2 {
        margin-top: 0;
        font-size: 33px;
        line-height: 38px;  
    }

    .main_news {
        width: 90%;
        margin-bottom: 50px;
    }

    .main_news h5 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .main_news p {
        font-size: 14px;
    }

    .main_news_btn {
        font-size: 18px;
    }





    /* contact form */

    .form_section {
        width: 100%;
        padding: 0;
    }

    .form_header {
        width: 90%;
        margin: auto;
        margin-bottom: 3.5em;
    }

    .form {
        box-shadow: none;
    }

    .form_section_background {
        display: none;
    }

    .form_header h2 {
        font-size: 33px;
        line-height: 38px;
    }

    .form_header p {
        font-size: 14px;
        width: 100%;
    }

    .form_content {
        flex-direction: column;
        width: 85%;
    }

    .contact_form {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact_form_btn {
        width: 100%;
    }

    .right_content {
        width: 100%;
        margin-top: 3em;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .light_content {
        font-size: 14px;
    }

    .bold_content {
        font-size: 14px;
    }

    .category_products .products_list {
        justify-content: space-around;
    }
    
    .category_products_list .product {
        width: 34%;
        height: auto;
        margin-bottom: 30px;
    }


    .product_page_section {
        padding: 0;
    }


    /* modal */

    .modal .modal-content {
        width: 90%;
        min-height: 500px;
        overflow-y: auto;
        padding: 10px 10px;
        background-color: #fff;
        box-shadow: 2px 2px 4px 0px #a7a7a79e;
        z-index: 2;
        position: relative;
        margin: 12vh auto 0 auto;
        max-height: 88vh;
        overflow: auto;
        z-index: 11;
    }

    /* cooperation */

    .cooperation_section {
        width: 95%;
        padding: 0;
    }

    .cooperation_section_h1 {
        text-align: left;
    }

    .cooperation_text_with_image {
        flex-direction: column;
    }

    .cooperation_text_left {
        width: 100%;
    }

    .cooperation_image_right {
        width: 100%;
    }

    .cooperation_form_inputs {
        flex-direction: column;
        padding: 0;
        width: 90%;
        margin: auto;
    }

    .cooperation_form_left {
        width: 100%;
    }

    .cooperation_form_right {
        width: 100%;
    }

 
    .cooperation_form_right textarea {
        width: 95%;
    }

    
    .cooperation_form_btn_div {
        padding: 0;
        width: 90%;
        margin-bottom: 30px;
    }


    
    /* Post */

    .post_section {
        padding: 0;
    }
    
    .post_image img {
        border-radius: 0;
    }

    .post_modifications {
        flex-direction: column;
    }

    .modification_list {
        width: 100%;
    }

    .modification_header {
        width: auto;
    }

    /* footer */

    footer {
        margin-top: 0;
        padding-top: 20px;
    }
    
    
    .footer_links {
        flex-direction: column;
    }

    .footer_about {
        width: 100%;
    }

    .footer_menu {
        width: 100%;
        margin-top: 2em;
    }



    .order_section {
        padding: 0;
    }


    .order_top_card {
        padding: 30px;
        width: auto;
    }

    .order_bottom_card {
        padding: 30px;
        width: auto;
    }

    .order_confirm_section {
        padding: 0;
        min-height: 50vh;
    }

    .confirm_text {
        width: 90%;
    }



    /* contact page */

    .contact_section {
        margin-bottom: 0;
    }

    .contact_content {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .contact_left {
        width: 80%;
        
    }

    .contact_right {
        width: 80%;
    }

    #cart .dropdown-menu {
        width: 80vw;
    }

}

@media (max-width: 520px) {
    .main-nav__link {
        margin: 0.4rem;
        padding: .4rem;
    }

    .product_page_section  {
        flex-direction: column;
        align-items: center;
    }

    .product_left {
        width: 90%;
    }

    .product_right {
        width: 100%;
        position: relative;
        max-width: none;
        background: #FFFFFF;
        top: auto;
        right: auto;
    }
}



@media (max-width: 420px) {
    .product_page_section  {
        flex-direction: column;
    }
}


@media (max-width: 320px) {

    .sidebar_show {
        visibility: visible;
        opacity: 1;
        width: 95vw;
        top: -18.5vh;
        max-height: 80vh;
    }


    .main-nav__items {
        top: 90px;
    }

    .main-nav__link {
        margin: 0.2rem;
        padding: .5rem;
    }

    .text_main h1 {
        font-size: 23px;
        line-height: 38px;
        margin: 1em 0 1em 0;
    }

    .banner_section {
        margin: 0;
        margin-top: 90px;
    }

    .order_form_submit {
        flex-direction: column;
    }


    .order_section {
        padding: 0;
    }

    .order_form_submit_text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .order_form_submit_text_total_products {
        margin-bottom: 30px;
        width: 100%;
        display: flex;
    }

    .modal .modal-content {
        width: 90%;
        min-height: 300px;
        overflow-y: auto;
        padding: 10px 10px;
        background-color: #fff;
        box-shadow: 2px 2px 4px 0px #a7a7a79e;
        z-index: 2;
        position: relative;
        margin: 16vh auto 0 auto;
        max-height: 84vh;
        overflow: auto;
        z-index: 11;
    }
}


/* ************************************************************************
/* End of Media
************************************************************************ */




.display_none {
    display: none;
}


div.search {
    position: relative;
    width: 32px;
    height: 32px;
    height: auto;
    display: none;
}

.search_input {
    position: absolute;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background-color: white;
    background-image: url(/image/catalog/icons/search.png);
    background-position: 0px 3px;
    background-repeat: no-repeat;
    padding: 7px 5px 7px 26px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
   
    top: -20px;
    cursor: pointer;
}

.search_submit {
    background: transparent;
    border: none;
    display: none;
    z-index: 3;
    top: -20px;
    left: -8px;

    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
}

.search_input_focus {
    outline: none;
    width: 300px;
    cursor: auto;
    box-shadow: 0px 11px 25px rgb(49 72 220 / 15%);
    padding: 7px 5px 7px 40px;
    height: 38px;
    background-image: none;
    border: 1px solid #f0f0f0;
    background: #F5F5F5;
    box-shadow: 0px 5px 10px rgb(49 72 220 / 25%);
    border-radius: 4px;
}

.search_submit_focus {
    position: absolute;
    display: flex;
    border-radius: unset;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border: 2px solid #3148DC;
    background: #3148DC;
    height: auto;
}

.search_submit_focus:hover {
    border: 2px solid #3148DC;
}

.rs-container * {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.rs-container {
    font-family: Arial, Helvetica, sans-serif;
    height: 45px;
    position: relative;
}
.rs-container .rs-bg, .rs-container .rs-selected {
    background-color: #eee;
    border: 1px solid #ededed;
    height: 10px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 100%;
    border-radius: 3px;
}
.rs-container .rs-selected {
    background-color: #00b3bc;
    border: 1px solid #00969b;
    transition: all 0.2s linear;
    width: 0;
}
.rs-container.disabled .rs-selected {
    background-color: #ccc;
    border-color: #bbb;
}
.rs-container .rs-pointer {
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 4px;
    cursor: pointer;
    height: 20px;
    left: -10px;
    position: absolute;
    top: 0;
    transition: all 0.2s linear;
    width: 30px;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 6px #ebebeb, 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.rs-container.disabled .rs-pointer {
    border-color: #ccc;
}
.rs-container .rs-pointer::before,
.rs-container .rs-pointer::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 9px;
    background-color: #ddd;
    left: 12px;
    top: 5px;
}
.rs-container .rs-pointer::after {
    left: auto;
    right: 12px;
}
.rs-container.disabled .rs-pointer {
    cursor: default;
}
.rs-container.sliding .rs-selected,
.rs-container.sliding .rs-pointer {
    transition: none;
}
.rs-container .rs-scale {
    left: 0;
    position: absolute;
    top: 5px;
    white-space: nowrap;
}
.rs-container .rs-scale span {
    float: left;
    position: relative;
}
 .rs-container .rs-scale span::before {
    background-color: #ededed;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 1px;
}
.rs-container.rs-noscale span::before {
    display: none;
}
.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
    display: block;
}
.rs-container .rs-scale span:last-child {
    margin-left: -1px;
    width: 0px;
}
.rs-container .rs-scale span ins {
    color: #333;
    display: inline-block;
    font-size: 12px;
    margin-top: 20px;
    text-decoration: none;
}
.rs-container.disabled .rs-scale span ins {
    color: #999;
}
.rs-tooltip {
    color: #333;
    width: auto;
    min-width: 60px;
    height: 30px;
	position: relative;
	background: #fff;
	border: 1px solid #00969b;
    border-radius: 3px;
    position: absolute;
    transform: translate(-50%, -35px);
    left: 13px;
    text-align: center;
    font-size: 13px;
    padding: 6px 10px 0;
}
.rs-container.disabled .rs-tooltip {
    border-color: #ccc;
    color: #999;
}

/*lang */
#form-language {
	padding-left: 10px;
	max-height: 35px;
	padding: 6px 10px 6px 10px;
    display: flex;
    align-items: center;
    margin: 0 5px;
    min-width: 80px;
}

#form-language button, .btn-cart-remove {
	background: transparent;
	border: none;
	box-shadow: none;
	    font-size: 13px;
}

.btn-lang .fa {
	padding-left: 10px;
}

.lang  {
	    min-width: 60px;
    text-align: center;
}

.cart-btn {
	position: relative;
}

.cart-btn #cart {
	position: absolute;
    top: -10px;
    right: -10px;
    width: 16px;
    height: 16px;
    font-size: 10px;
}

#cart-total b{
    background: #1859FF;
    color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart_total_order_sum {
	display: flex;
}

.cart_total_order_sum span {
	display: none;
}
.cart_total_order_sum span:last-child,
.cart_total_order_sum span:nth-last-child(2)
 {
display: block;
padding-left: 10px;
}

#ocfilter,
.ocfilter-option {
	border: none;
}
#ocfilter .panel-heading {
	border: none;
	font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
	background: transparent;
}


.btn {
    /* display: contents; */
}

.modal h2{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
    text-align: left;
}

.modal .contact_form{
    width: 100%;
}

.sub_category.current{
    background: #808080;
}

.sub_category.child{
    padding-left: 36px;
}

.scale{
   background: unset !important;
   padding-top: 30px;
   position: relative;
   padding-bottom: 100px;
}

.noUi-background .noUi-background{
    background: #C2DBFF !important;
    border-radius: 2px;
}

.noUi-base{
    height: 3px !important;
    background: #C2DBFF
}

.noUi-draggable{
    background: #3148DC;
}

.min-value, .max-value{
    position: absolute;
    font-size: 13px;
    color: #808080;
    top: 0;
}

.min-value{
    left: -12px;
}

.max-value{
    right: -12px;
    text-align: right;
}

.min-cont, .max-cont{
    position: absolute;
    bottom: 0;
    font-size: 13px;
    color: #808080;
    width: 48%;
}

.min-cont{
    left: -12px;
}

.max-cont{
    right: -12px;
}

.min-cont input, .max-cont input{
    border: none;
    height: 44px;
    padding: 10px 16px;
    background: #F5F5F5;
    border-radius: 4px;
    color: #080808;
    font-size: 16px;
    width: 100%;
    margin-top: 3px;
}

#option-10018 h4 span{
    display: none;
}

.menu_link_desc.current{
    font-weight: 600;
}

.radio-category{
    text-align: center;
    width: 100%;
    margin-bottom: 96px;
}

.radio-category h3{
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 35px;
    color: #292A5A;
}

.radio-category p{
    display: block;
    margin: auto;
    max-width: 430px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #080808;
}

.radio-category a{
    background: #3148DC;
    border-radius: 4px;
    margin-top: 10px;
    width: 221px;
    height: 41px;
    line-height: 41px;
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
}

.radio-category:before{
    display: inline-block;
    content: '';
    width: 81px;
    height: 81px;
    background: url('../image/antenna 1.svg') center center no-repeat;
    background-size: contain;

}
/**
* Update Styles
*/
.news_content .main_news h5
{
    margin-bottom: 0;
}
.contact_content form input[type=text],
.contact_content form textarea,
.feedback-container form input[type=text],
.feedback-container form textarea {
    border: 1px solid #000;
}
body .posts_section .post_card {
    max-height: initial;
    min-height: initial;
}
body .product_right_modifications h3 {
    font-size: 16px;
}
body .product_right_header {
    padding: 15px 30px;
}
body .product_right_modifications .form_controll {
    margin-bottom: 0.5em;
}
body .product_custom_radio_input + span {
    padding: auto;
    height: 35px;
    width: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
font[face="Comic Sans MS"] {
    font-family: 'Open Sans', sans-serif;
}
body .banner_section {
    background-image: url(/image/catalog/base/banner.png);
    background-size: cover;
    max-height: 480px;
}
body .banner_section .baner {
    height: initial;
}
body .banner_section .content_main {
    margin-top: 114px;
    margin-bottom: 100px;
}
body .banner_section .text_main h1 {
    font-size: 45px;
}
@media (max-width: 1440px){
    body .banner_section{

    }
    body .banner_section .banner_frames{
        gap: 30px;
    }
    body .banner_section .banner_frames a{
        display: flex;
        width: 100%;
    }
    body .banner_section .banner_frames .banner_frame{
        width: 100%;
    }
    body .product_page_section {
        margin-top: 0px;
    }
    body .product_right_header,
    body .product_right_modifications{
        padding: 5px 15px;
    }
    body .product_right_header{
        font-size: 14px;
    }
    body .product_right_modifications h3{
        font-size: 14px;
        margin: 0;
    }
    body .product_right_modifications .form_controll {
        margin-bottom: 0;
    }
    body .product_custom_radio_input + span{
        padding: 16px;
        width: 25px;
        height: 25px;
    }
    body .product_custom_radio{
        margin-bottom: 0px;
    }
    body .product_right_price {
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    body .banner_section {
        max-height: initial;
        background-image: none;
    }
    body .banner_section .baner{
        margin: 0;
        padding: 0;
        min-width: 100%;
    }
    body .banner_section .content_main {
        background: linear-gradient(58.49deg, #29BFFF 19.74%, #0500FF 73.84%), radial-gradient(43.12% 107.41% at 100.05% 0.39%, #000B6F 0%, rgba(0, 8, 82, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, radial-gradient(76.42% 179.81% at 2.99% 7.87%, #00C2FF 0%, rgba(0, 87, 255, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
        height: 230px;
        margin-top: 65px;
        width: 100%;
        margin-bottom: 0;
    }
    body .banner_section .text_main h1{
        font-size: 33px;
        font-weight: 600;
    }
    body .banner_section .banner_frames{
        padding: 0 40px;
        margin-top: -50px;
        z-index: 9;
        gap: 24px;
    }
    body .banner_section .banner_frames .banner_frame{
        margin-bottom: 0px;
    }
    .approach_section{
        margin-top: 40px;
    }
    .approach_content{
        gap: 30px;
    }
    section.products_section .product_content_name{
        max-height: 48px;
        overflow: hidden;
    }
}
@media (max-width: 425px){
    body .banner_section .content_main{
        height: 395px;
        padding: 0 45px;
    }
}
* {
    font-family: 'Open Sans', sans-serif!important;
}

/**
* Update Styles 12.09.2023
*/
/**
* Sub Category
*/
.sidebar_categories .sub_categories .sub_category.child{
    background-color: #F5F5F5;
}
body .sidebar_categories .sub_categories .sub_category.current a{
    color: #fff;
    font-weight: 700;
}
.sidebar_categories .sub_categories .sub_category:not(.child) a {
    font-weight: 700;
    color: rgb(51 51 51 / 80%);
}
.products_list .product {
    border: 1px solid #c4c4c4;
    border-radius: 4px;
}
body .radio-category {
    margin-top: 96px;
}
/**
* Header
*/
body .nav_section img.menu_logo{
    max-width: 185px;
    width: 185px;
    margin-top: 8px;
}
/**
* Footer
*/
body .links_column span,
body .links_column a{
font-size: 15px;
}
.links_column h5{
    font-size: 18px;
}
footer + .cooperation_application_section {
    margin-top: 0px;
}
/**
* Checkout
*/
body .products_in_cart_section .cart_total{
    background-image: none;
    height: 140px;
    margin-top: 54px;
    border-top: 2px solid #c4c4c4;
    border-radius: 0;
    padding-top: 35px;
}
body .products_in_cart .product_in_cart:last-child {
    border-bottom: 0px;
}
body .products_in_cart_section .cart_total .cart_total_order{
    align-items: end;
    font-weight: 400;
}
body .products_in_cart_section .cart_total .cart_total_order .cart_total_order_sum {
    width: 100%;
    justify-content: space-between;
}
body .products_in_cart_section .products_in_cart .product_in_cart {
    width: 100%;
}
body .products_in_cart_section .products_in_cart .product_in_cart .product_cart_about {
    font-weight: 400;
    text-align: left;
}
body .products_in_cart_section .products_in_cart .product_cart_price {
    justify-content: end;
}
body .simplecheckout-error-text.simplecheckout-rule {
    color: #e91212;
}
body #shipping_field22 {
    width: 380px;
    height: 73px;
}
/**
* Blog
*/
body .post_card img {
    height: 200px;
}
body .post_card h3 {
    min-height: 70px;
}
body .post_section {
    gap: 20px;
    margin-top: 20px;
}
body .post_section .post_content h1{
text-align: left;
}
body .post_section h2,
body .post_section h3 {
    color: #080808;
    font-weight: 600;
}
body .post_section .post_content {
    gap: 12px;
}
body .post_section img {
    width: 100%!important;
    object-fit: cover;
    aspect-ratio: 2.7;
    border-radius: 10px;
}
body .post_section .date_formated {
    font-size: 16px;
    color: #808080;
    font-weight: 400;
    text-transform: lowercase;
}
body .post_section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}
body .post_section ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #3148DC;
    display: inline-block;
    margin-right: 10px;
    border-radius: 2px;
}
body .post_section table {
    border-collapse: separate;
    border-spacing: 15px 5px;
    margin-bottom: 0px;
}
body .post_section p,
body .post_section b,
body .post_section table,
body .post_section h1,
body .post_section h2,
body .post_section h3 {
    margin-top: 0;
    margin-bottom: 0;
}
body .post_section table th {
    background-color: #E3EFFF;
    border-radius: 4px;
    color: #292A5A;
    font-size: 16px;
    font-weight: 700;

}
body .post_section table th, body .post_section table td {
    border: 0px;
}
/**
* Product Card
*/
body .product .product_content {
    min-height: 192px;
}
body .product .product_content .preorder_desc {
    color: #808080;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0px;
    text-align: center;
}
body .product .product_content .have_desc {
    color: #808080;
}
body .product_right_modifications .product_old_price {
    margin-left: 10px;
}
body .product_right_modifications .price_special_label {
    margin: 10px 0;
}
body .product .top_product {
    position: relative;
}
body .product .top_product .price_special_label{
    position: absolute;
    bottom: 10px;
    left: 10px;
}
body .price_special_label > span {
    background: #E91212;
    font-size: 16px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    padding: 6px 8px;
    border-radius: 5px;
    color: #fff;
}
/**
* Filter Catalog
*/
body .scale-inputs {
    display: flex;
    width: 100%;
    gap: 14px;
}
body .scale-inputs > div {
    width: 50%;
}
body .scale-inputs > div label {
    font-size: 13px;
    font-weight: 400;
    color: #808080;
    text-transform: lowercase;
}
body .scale-inputs > div input {
    width: 100%;
    height: 44px;
    border-radius: 4px;
    background-color: #F5F5F5;
    padding: 10px 16px;
    border: none;
    color: #080808;
    font-size: 16px;
    font-weight: 400;
}
body .scale {
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 39px;
    margin-bottom: 20px;
    position: relative;
}
body .scale .scale-labels {
    position: absolute;
    top: -30px;
    left: -10px;
    right: -10px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #808080;
}

/**
* Update View approach
*/
body .approach_content {
    flex-direction: column;
    gap: 25px;
}
body .approach_content .approach_left {
    width: 100%;
    display: flex;
    max-height: inherit;
    gap: 89px;
    max-width: 657px;
    margin: 0 auto;
}
body .approach_content .approach_left .approach_sertificate {
    aspect-ratio: 0.6;
    width: 284px;
    filter: drop-shadow(0px 11px 25px rgba(49, 72, 220, 0.15));
}
body .approach_content .approach_right {
    width: 100%;
    flex-direction: row;
    gap: 56px;
    min-height: initial;
}
body .approach_content .approach_right .approach_right_item {
    flex-direction: column;
    align-items: baseline;
    min-height: 318px;
}
body .approach_content .approach_right .approach_right_item p{
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
@media (max-width: 425px) {
    body .approach_content .approach_left {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    body .approach_content .approach_right {
        flex-direction: column;
        gap: 24px;
    }
    body .approach_content .approach_right .approach_right_item {
        align-items: center;
    }
}
#d_quickcheckout legend {
    border-bottom: 0px;
}