@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #120E29;
}

body::-webkit-scrollbar {
    width: 12px; /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
    background: #DBEEF5; /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
    background-color: #145185; /* цвет плашки */
    border-radius: 20px; /* закругления плашки */
}

main {
    position: relative;
    top: 76px;
}

a {
    transition: .2s all;
    text-decoration: none;
    color: #120E29;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(269.91deg, #4AA7D3 0%, #DBEEF5 100%);
    z-index: 999;
}

.header_desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_mobile,
.menu-items{
    display: none;
}
.header_mobile .nav-container li {
  list-style: none;
}

.header_mobile .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 15px;
  padding: 0.7rem;
  line-height: 18px;
}

.header_mobile .nav-container a:hover{
    font-weight: bolder;
}
.header-mobile .nav-container .logo a{
    position: absolute;
    z-index: 99999;
    top: -15%;
}
.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
    display: flex;
}

.hamburger-lines {
  display: none;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #00487D;
}

.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.header_mobile .menu-items {
  position: absolute;
  top: -10;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-top: 120px;
  background: linear-gradient(269.91deg, #4AA7D3 0%, #DBEEF5 100%);
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.5s ease-in-out;
}
.header_mobile .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.menu-items{
  background: linear-gradient(269.91deg, #4AA7D3 0%, #DBEEF5 100%);
}
.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}
/* .nav-container input[type="checkbox"]:checked ~ .logo a {
  position: absolute;
  z-index: 999999;
} */
 input[type="checkbox"]:checked ~ .hamburger-lines .line1,
 .hamburger-lines.activated .line1 {
  transform: rotate(45deg);
}

 input[type="checkbox"]:checked ~ .hamburger-lines .line2,
 .hamburger-lines.activated .line2 {
  transform: scaleY(0);
}

 input[type="checkbox"]:checked ~ .hamburger-lines .line3,
 .hamburger-lines.activated .line3 {
  transform: rotate(-45deg);
}
.nav-container input[type="checkbox"]:checked ~ .row {
    margin: none;
}
.menu-items .footer_link{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    text-align: center;
    width: 100%;
}
.footer_link-contacts{
    margin-bottom: 40px;
}
.footer_link-contacts:last-child{
    margin-bottom: 10px;
}
.menu-items a:first-child{
    margin-top: 150px;
}
.logo {
    flex: 1;
}

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

.menu_desktop a {
    font-size: 15px;
    font-weight: 500;
    line-height: 17.58px;
    text-decoration: none;
}

/*.content_page {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 3fr;*/
/*    gap: 20px;*/
/*    margin-top: 10px;*/
/*}*/

.content_page {
    display: flex;
    margin-top: 10px;
}

.left_content {
    width: 25%;
}

.right_content {
    width: calc(75% - 20px);
    margin-left: 20px;
}

.btn_catalog {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: none;
    background: #145185;
    color: #fff;
    display: flex;
    gap: 10px;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    align-items: center;
    line-height: 19.5px;
    text-decoration: none;
}
.catalog_active{
    display: block !important;
    position: absolute;
    z-index: 9999;
    margin-top: 40px;
    margin-right: 10px;
}
.header_info {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 20px;
}

.contact_block {
    display: grid;
    text-align: center;
}

.contact_link {
    font-weight: 800;
    font-size: 18px;
    line-height: 21.09px;
    flex: 1;
}

.contact_link:hover{
    text-decoration: none;
    color: #145185;
}

.open_callback {
    color: #E22319;
    font-size: 15px;
    line-height: 19.5px;
}

.open_callback:hover{
    text-decoration: underline;
    color: #E22319;
}

.search_block {
    flex: 2;
}

.search_block input {
    height: 39px;
}

.btn_search {
    background: #145185;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border: 1px solid #145185;
    padding: 10px;
    height: 100%;
}

.form-control {
    padding-left: 10px;
    border-radius: 0;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-color: #637788;
    font-size: 13px;
    color: #637788;
}

.form-control::-webkit-input-placeholder {
    color: #637788;
}

.form-control:-moz-placeholder {
    color: #637788;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #637788;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #637788;
}

.form-control::-ms-input-placeholder {
    color: #637788;
}

.form-control::placeholder {
    color: #637788;
}

.catalog_menu {
    background: #DBEEF5;
    border: 1px solid #637788;
    border-bottom: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.catalog_menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: #120E29;
    font-weight: 500;
    line-height: 17.58px;
    border-bottom: 1px solid #637788;
    text-decoration: none;
}

.catalog_menu a:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.catalog_menu a:hover {
    background: #fff;
}

.text_catalog_link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.text_catalog_link  img{
    max-width: 25px;
    max-height: 25px;
}

.title_page {
    font-weight: 800;
    font-size: 28px;
    line-height: 35.16px;
    color: #145185;
    margin-bottom: 20px;
}

.text_content {
    line-height: 19.5px;
    background: url('/local/templates/mirkliya/img/bg_content_page.png');
    background-repeat: no-repeat;
    background-position: top right;
    min-height: 420px;
}

.text_content p {
    margin-bottom: 0;
}

.text_content a {
    color: #145185;
    font-weight: 900;
    font-size: 14px;
    line-height: 18.2px;
}

.text_content a:hover{
    text-decoration: underline;
}

.text_content h2 {
    font-weight: normal;
    font-size: 28px !important;
    line-height: 31.2px;
    margin-bottom: 20px;
}

.text_content h3 {
    font-weight: normal;
    font-size: 24px !important;
    line-height: 26px;
    margin-bottom: 20px;
}

.text_content h4 {
    font-size: 22px !important;
}

.text_content h5 {
    font-size: 20px !important;
}

.text_content h6 {
    font-size: 16px !important;
}

.small_text_content {
    font-size: 14px;
    line-height: 19.5px;
}

.contact_page_text {
    display: grid;
    grid-template-columns: 100px 1fr;
    margin-bottom: 10px;
    line-height: 19.5px;
}

.contact_page_text a {
    color: #120E29;
    font-weight: 400;
}

.contact_page_text a:hover {
    color: #145185;
    text-decoration: none;
}

.contact_content {
    background: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

footer {
    position: relative;
    top: 76px;
    background: linear-gradient(269.91deg, #4DA8D4 0%, #DBEEF5 61.04%, #8AC6E2 100%);
    padding: 40px 0;
    margin-top: 40px;
    border-top: 4px solid #E22319
}

.footer_grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.logo_footer {
    margin-bottom: 40px;
}

.info_company_footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 17px;
    margin-bottom: 40px;
}

.footer_title {
    color: #145185;
    font-weight: 900;
    font-size: 18px;
    line-height: 21.6px;
    margin-bottom: 20px;
}

.footer_menu {
    display: grid;
    gap: 0.5em;
}

.footer_menu a {
    color: #120E29;
    font-weight: 500;
}

.footer_menu a:hover{
    color: #fff;
}

.footer_contact {
    display: grid;
    grid-template-columns: 100px 1fr;
    margin-bottom: 10px;
}

.footer_link a, .footer_link span {
    font-weight: 900;
    font-size: 18px;
    line-height: 21.6px;
}

.block_footer {
    flex: 1;
}

.footer_link {
    display: grid;
}

.footer_policy {
    text-align: right;
    display: grid;
    gap: 10px;
    margin-top: 60px;
    line-height: 19.5px;
}

.footer_policy a {
    color: #145185;
}

.carousel-caption {
    text-align: left;
    top: 2.75rem;
    width: 50%;
    left: 4%;
}

.title_banner {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 30.47px;
    text-transform: uppercase;
}

.title_border {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #E22319 71%, rgba(226, 35, 25, 0) 100%);
    margin-top: 5px;
}

.description_banner {
    margin-bottom: 60px;
    line-height: 19.5px;
}

.link_banner {
    color: #fff;
    padding: 16px 30px;
    text-decoration: none;
    background: #E22319;
    transition: .2s all;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 900;
}

.link_banner:hover{
    background: #BA0900;
}

.carousel-inner {
    border-radius: 10px;
}

.caption-maps {
    text-align: center;
    width: 87%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 9.75rem;
}

.caption-maps .title_border {
    background: linear-gradient(90deg, rgba(226, 35, 25, 0) 0%, #E22319 10.55%, #E22319 89.45%, rgba(226, 35, 25, 0) 100%);
}

.proizvoditeli_list {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.proizvoditeli_list img {
    width: 100%;
    object-fit: contain;
}

.sections_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.sections_block {
    border: 1px solid #637788;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.sections_block img {
    width: 100%;
}

.sections_block:hover {
    color: #120E29;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(99, 119, 136, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(99, 119, 136, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(99, 119, 136, 0.2);
}

.title_section {
    margin-top: 20px;
    font-weight: 800;
    font-size: 24px;
}

.title_section_page {
    margin-bottom: 20px;
    color: #145185;
    font-weight: 800;
    font-size: 28px;
}

.product_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.product_item {
    padding: 5px 20px 20px 20px;
    border: 1px solid #A6B1BA;
    border-radius: 6px;
    display: grid;
    gap: 20px;
}

.product_item:hover {
    color: #120E29;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(99, 119, 136, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(99, 119, 136, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(99, 119, 136, 0.2);
}

.title_product {
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
}

.title_product:hover{
    color: #120E29;
}

.article_product {
    font-size: 13px;
}

.add_to_cart {
    background: none;
    border: none;
    color: #145185;
    font-weight: 900;
    font-size: 16px;
    width: 100%;
    text-align: center;
    transition: .2s all;
    display: block;
    bottom: 0;
}

.add_to_cart:hover{
    color: #E22319;
}

.product_item img {
    margin-bottom: 20px;
	width: 100%;
	height: 160px;
	object-fit: contain;
}

.specifications_block table {
    width: 100%;
}

.specifications_block table {
    border: 1px solid #eee;
    table-layout: fixed;
    width: 100%;
    margin-bottom: 20px;
}

.specifications_block table th {
    font-weight: bold;
    padding: 5px;
    background: #efefef;
    border: 1px solid #dddddd;
}

.specifications_block table td {
    padding: 10px;
    border: 1px solid #A6B1BA;
    text-align: left;
}

.specifications_block table tbody tr:nth-child(odd) {
    background: #fff;
}

.specifications_block table tbody tr:nth-child(even) {
    background: #DBEEF5;
}

.product_page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product_img {
    padding-right: 20px;
}

.product_info h1 {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
}

.article_block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}

.product_av {
    font-size: 15px;
    color: #145185;
}

.product_anons {
    padding: 30px 0;
    border-top: 1px solid #A6B1BA;
    border-bottom: 1px solid #A6B1BA;
    margin-bottom: 20px;
}

.product_btn {
    margin-bottom: 20px;
}

.product_info h2 {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 10px;
}

.product_description {
    margin-bottom: 20px;
    line-height: 19.5px;
}

.product_btn {
    display: flex;
    gap: 10px;
}

.add_cart_product_page {
    background: #E22319;
    border: none;
    color: #fff;
    padding: 16px 30px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 18px;
}

.count_input .form-control {
    height: 59px;
    width: 70px;
    text-align: center;
    font-weight: 900;
    border-left: none;
    border-right: none;
    font-size: 18px;
}

.btn_minus, .btn_minus_front, .btn_cart_minus, .btn_plus, .btn_plus_front, .btn_cart_plus {
    background: none;
    border: 1px solid #637788;
    color: #A6B1BA;
    font-weight: 600;
    padding: 0 15px;
    font-size: 25px;
    transition: .2s all;
}

.btn_minus, .btn_minus_front, .btn_cart_minus {
    border-right: none;
    border-radius: 6px;
}

.btn_plus, .btn_plus_front, .btn_cart_plus {
    border-radius: 6px;
    border-left: none;
}

.btn_minus:hover, .btn_plus:hover, .btn_minus_front:hover, .btn_plus_front:hover, .btn_cart_minus:hover, .btn_cart_plus:hover {
    background: rgba(99, 119, 136, .1);
}

.filter_block {
    margin-top: 20px;
    padding: 30px 20px;
    background: #DBEEF5;
    border-radius: 6px;
}

.title_filter {
    font-weight: 900;
    font-size: 18px;
    color: #145185;
}

.save_filter {
    background: none;
    border: none;
    color: #E22319;
    font-weight: 900;
    font-size: 14px;
    padding: 0;
    margin-top: 10px;
}

.proizvodilet_filter {
    height: 200px;
    overflow: auto;
}

.proizvodilet_filter::-webkit-scrollbar {
    width: 6px; /* ширина scrollbar */
}

.proizvodilet_filter::-webkit-scrollbar-track {
    background: #DBEEF5; /* цвет дорожки */
}

.proizvodilet_filter::-webkit-scrollbar-thumb {
    background-color: #145185; /* цвет плашки */
    border-radius: 20px; /* закругления плашки */
}

.cart_item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #A6B1BA;
    margin-bottom: 2px;
}

.left_item_cart {
    display: flex;
    gap: 20px;
}

.title_cart_product {
    color: #120E29;
    font-weight: 800;
    font-size: 24px;
}

.title_cart_product:hover {
    color: #120E29;
    text-decoration: underline;
}

.bottom_info_product_cart {
    display: flex;
    gap: 40px;
}

.article_cart {
    font-size: 15px;
}

.av_cart {
    color: #145185;
}

.info_product_cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.left_item_cart {
    flex: 2;
}

.right_item_cart {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.remove_cart_item {
    height: max-content;
    background: none;
    border: none;
}

.remove_cart_item svg {
    width: 30px;
    height: 30px;
}

.left_item_cart img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.cart_content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
}

.cart_block img {
    width: 30px;
}
.cart_with_counter{
    display: flex;
}

.total_count_color{
    color: red;
    padding-left: 12px;
    font-size: 20px;
    font-weight: 400;
}
.gradient-line{
    width: 100%;
    height: 5px; 
    background: linear-gradient(to right, white, red);
    margin-top: 5px;
}

.form_cart {
    margin-top: 40px;
    display: flex;
    justify-content: end;
}

.form_input {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    width: 50%;
}

.form_input .form-control {
    padding: 16px 20px;
    border: 1px solid #A6B1BA;
    border-radius: 6px;
}

.buy_cart {
    background: #E22319;
    color: #fff;
    padding: 16px 20px;
    border: none;
    font-size: 18px;
    font-weight: 900;
    border-radius: 6px;
}

.result_form_buy {
    padding: 16px 20px;
    font-weight: 900;
    color: #fff;
    font-size: 18px;
    background: #DBEEF5;
}

.carousel-control-prev {
    justify-content: start;
}

.carousel-control-next {
    padding-right: 10px;
    justify-content: end;
}

.left_content {
    position: relative;
}

.open_item_menu {
    position: absolute;
    top: 40px;
    right: 0;
    left: 100%;
    background: #DBEEF5;
    z-index: 99999;
    width: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    display: none;
    border-radius: 6px;
}
.open_item_menu a{
    border: none;
}
.open_item_menu a:hover{
    background: none;
    color: #145185;
}
body > .tablebodytext {
    display: none;
}

.hide-768 {
    display: inherit !important;
}

.show-768 {
    display: none !important;
}

.menu-items .menu-items-header,
.menu-items .btn_catalog {
    display: none;
}

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

.block_footer_copyright .footer_policy {
    display: none;
}

.compact_size {
    font-size: 13px;
    padding: 0 5px;
    max-width: 13%;
    max-height: 39px;
}

.compact_size img {
    height: 39px;
}

.count_input .compact_size_input {
    max-height: 39px;
    width:10px;
}

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