@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-100.woff") format("woff");
 font-weight: 100;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-300.woff") format("woff");
 font-weight: 300;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-400.woff") format("woff");
 font-weight: 400;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-500.woff") format("woff");
 font-weight: 500;
}

@font-face {
 font-family: "Helvetica";
 src: url("/webfonts/HelveticaNeueCyr-700.woff") format("woff");
 font-weight: 700;
}

:root {
  --main-container: 1200px;
  --small-container: 1000px;
  --radzel-margin: 170px;
  --radzel-dop: 130px;
  --offset-container: 50px;  
  --offset-content: 60px;    
}

::selection {
    color:#fff;
    background:#007263; 
}

* {
	margin: 0;
	padding: 0;
    box-sizing:border-box;
}

html,
body {
    font-size: 18px;
    font-family: 'Helvetica', serif;
    color: #000000;
    font-weight: 300;
    background-color: white;
    line-height: 1.3; 
}


.container {
  width: var(--main-container);
  position: relative;
  left: 50%;
  transform: translateX(calc(-50% + 120px));
  transition: transform 0.3s ease;
}



.content {
    display: flex;
}

.content__left {
    width: 33%;
    padding-right: 40px;
}

.content__right {
    width: 66%;
    padding-left: 40px;
}


.content__left__50 {
    width: 50%;
    padding-right: 40px;
}

.content__right__50 {
    width: 50%;
    padding-left: 40px;
}


.content-menu {
    background-color: #007263;     
}

.content-form {
    background-color: #676666;      
    padding-top: 40px;
    padding-bottom: 40px;  
}

h1, h2, h3, h4, h5 {
    color: #007263; 
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 20px;    
}

h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 40px;    
}

h3 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 40px;    
    margin-bottom: 20px;    
}

h5 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 40px;    
    margin-bottom: 10px;    
}

p {
   line-height: 130%;
   margin-bottom: 20px;
}

b, strong {
    font-weight: 700;
}

ol, ul {
    padding-left: 50px;
    padding-top: 10px;    
    padding-bottom: 30px;
}
li {
    margin-bottom: 7px;
}

.ul-dash {
padding-left: 30px;    
}

    .ul-dash li {
        list-style-type: none; 
    }

    .ul-dash li:before {
        content: "—  ";
        margin-right: 7px;
    }

img {
	max-width: 100%;
	display:block; 
}

input, textarea {
    font-size: 18px;
}

.input-text {
    padding: 10px;
    width: 100px;
}

.input-big {
    margin-right: 15px;
    height: 60px;
}

.input-find {
    padding: 15px; 
    width: 100%;
}

.table {
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #dddddd;
	border-collapse: collapse; 
}
.table th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}
.table td {
	border: 1px solid #dddddd;
	padding: 5px;
}

a {
	color: #0000FF;
    transition: 0.7s;
}

a:hover {
	color: #FF0000; 
	text-decoration: none;
    transition: 0.3s;
}

.aLinkWhite {
  color: #fff;
  text-decoration: none;
}

.aLinkWhite:hover {
    color: #e1e1e1;
    text-decoration: none;
}

.aLinkBlack {
    color: #393E46;
    text-decoration: none;
}
.aLinkBlack:hover {
    color: #F96D00;
    text-decoration: none;
}

.aLinkMotion {
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.aLinkMotion:after {
    display: block;
    position: absolute;
    left: 0; /*изменить на right:0;, чтобы изменить направление подчёркивания */
    width: 0; /*задаём длинну линии до наведения курсора*/
    height: 2px; /*задаём ширину линии*/
    background-color: #FF0000; /*задаём цвет линии*/
    content: "";
    transition: width 0.3s ease-out; /*задаём время анимации*/
}

.aLinkMotion:hover:after,
.aLinkMotion:focus:after {
	width: 100%; /*устанавливаем значение 100% чтобы ссылка подчёркивалась полностью*/
}

.aLinkActive {
    color: #FF0000;
}

.aLinkBrand {
    color: #007263;
}

.aLinkBrand:hover {
    color: #F96D00;
    text-decoration: none;
}

.aLinkNoDot {
    text-decoration: none;
}



.menu-smart {
    display: none;
}

.menu-full, .modal-full {
    visibility: hidden;
    opacity: 0;
    position: fixed; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    color: #000;
    background-color: white; 
    padding-top: 5px;
    z-index: 10; 
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.menu-full-content {
    margin-top: 20px;
    margin-left: 0px;
}


.div-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 15px;
}

.div-flex-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 0px;
}

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

.div-flex-left h1{
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-top-link {
    margin-left: 50px;
    display: flex;
    flex-direction: row; 
}

.header-top-link-item {
    margin-left: 30px;
    font-weight: 500; 
}

.header-top-logo {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

.header-top-button {
    justify-content: flex-end;
}

.form-message {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 20px;
}

.form-message-left, .form-message-right  {
    display: flex;
    flex-direction: row;
    margin-top: 0px;
}

.form-message-left, .form-message-right  {
    justify-content: flex-start;
}

.form-message-right {
    justify-content: flex-end;    
}

.form-message-left-item {
    margin-right: 40px;
}

.form-message-right-item {
    margin-left: 40px;
}

.razdel {
    margin-top: var(--radzel-margin);
}

.razdel-dop {
    margin-top: 60px;
}

.razdel-foto {
    margin-top: 50px;    
}

.razdel-additional__underscore {
    padding-top: 0px;
    margin-bottom: 25px;
    width: 40px;
    border-bottom: 1px solid #000;
}

.div-smart {
    visibility: hidden;
    display: none; 
    opacity: 0;
}

.div-desktop {
    visibility: visible;
    display: block; 
    opacity: 1;
}

.div-catalog span {
    margin-left: 10px;
}

.div-input-radio {
    margin-bottom: 10px;
}

.div-footer {
    margin-top: 200px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #007263;
    color: white;
}

.div-footer h4, .div-footer p {
    color: white;
}

.div-flex3{
    display:flex;
    flex-wrap:wrap;
}

.div-flex3-item {
    height: 200px;
    width:calc( ( 100% - 140px ) / 3 );
    margin:0 0 80px;
}

.div-flex3-item:nth-child(3n-1){
    margin-left:70px;
    margin-right:70px;
}

.div-flex3-item h4 {
    margin-top: 10px;
    text-transform: uppercase;
}

.div-catalog-item {
    width:calc( ( 100% - 3*20px ) / 4 );
    margin:0 0 80px;
    margin-right:20px;
}
.div-catalog-item:nth-child(4n){
    margin-right:0px;
}

.div-catalog-item p {
    margin-top: 10px;
    text-align: center;
}

.div-item-color {
    background-color:#cda;    
}

.div-adress h5 {
    margin-top: 60px;
}

.div-adress p {
    margin-top: 7px;
    margin-bottom: 7px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.page-background {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 720px;
}

.page-main-text {
    padding-left: 50px;
    width: 50%;
}

.page-index-main-text {
    padding-top: 120px;
}

.infoNavigationFon {
  margin-top: 20px;
  margin-left: 0px;
  margin-right: 0px;
}

.infoNavigationFon ul {
  padding-left: 0px;
  padding-right: 0px;
  margin-bottom: 0px;
}

.infoNavigationFon li {
  font-size: 14px;
  margin-left: 0px;
}

.button-small {
    font-size: 18px;
    font-weight: 700; 
    width: 240px;
    height: 60px;
}

.button-normal {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    max-width: 380px;
    height: 80px;
}

.button-large {
    font-size: 24px;
    font-weight: 700;     
    width: 320px;
    height: 70px;
}

.button-border-no {
    border-radius: 0;
}

.button-red {
   color: #fff ;
   font-weight: 700; 
   background-color: #FF0000;
   cursor: pointer;
   border: 1px solid #FF0000;
   box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
   border-radius: 3px;
}

.button-red:hover {
    background-color: #cc0000;
    border: 1px solid #cc0000;    
    transition: 0.5s;
}

.button-brand {
    color: #fff;
    font-weight: 700; 
    background-color: #007263;
    cursor: pointer;
    border: 1px solid #007263;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    transition: background-color 0.3s, border 0.3s, transform 0.1s, box-shadow 0.1s;
}

.button-brand:hover {
    background-color: #004d43;
    border: 1px solid #004d43;
}

.button-brand:active {
    transform: translateY(2px);
    box-shadow: 0px 2px 2px rgba(0,0,0,0.25);
}


.button-default {
   color: #090909 ;
   font-weight: 700; 
   background-color: #F1EEEE;
   cursor: pointer;
   border: 1px solid #D9D9D9;
   box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
   border-radius: 3px;
}

.button-default:hover {
    background-color: #E5E5E5;
    border: 1px solid #E5E5E5;    
    transition: 0.5s;
}


.button-no-active {
   color: #fff ;
   font-weight: 700; 
   background-color: #1eb09d;
   cursor: pointer;
   border: 1px solid #1eb09d;
   border-radius: 3px;
}

.button-motion-brand {
}

.button-motion-brand:before {
}

.buttonCursor:hover {
  cursor: pointer;
}

#buttonTovarCartHidden {
    display: none;
}

.input__bottom {
    padding-bottom: 20px;
}

.p-big {
    font-size: 24px;
}

.p-small {
    font-size: 14px;
    margin-bottom: 0px;
}

.p-small-label {
    font-size: 14px;
    margin-top: 7px;
    margin-bottom: 0px;
    margin-bottom: 0px;
}

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

.span-shadow {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.span-warning {
    color: red;
}

.span-underline {
    text-decoration: underline;    
}

.span-discontinuity {
    
}

.span-small {
   font-size: 13px;
}

.span-agree {
   color: green ;
   font-weight: 700; 
}

.space10 {
    margin-right: 10px;
}

.svgLine2 {
    margin-left: -15px;
}

.svgLine21 {
    stroke-dasharray: 40;
    stroke-dashoffset: 25;
} 

.svgLine2:hover {
    stroke-dashoffset: 0;
}

.form-control, .form-control-textarea, .form-control-full, .form-control-textarea-full {
    height: 80px;
    padding: 5px 10px;
    line-height: 1.5;
    background-clip: padding-box;
    border: 1px solid #676666;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control, .form-control-textarea {
    width: 350px;
}

.form-control-full, .form-control-textarea-full {
    width: 100%;
}

.form-control-textarea-full {
    height: auto;
}

.form-control-textarea-full {
    width: 100%;
}
.button-motion-brand {
  text-decoration: none;
  outline: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: .2s ease-in-out;
}

.button-motion-brand:before {
 content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.5));
  height: 80px;
  width: 50px;
  position: absolute;
  top: -8px;
  transform: skewX(-45deg);
  animation: shine 2s linear infinite;
}


@keyframes shine {
  from {left: -75px;}
  to {left: 320px;}
}


.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

  /* для элемента input c type="checkbox" */
    .custom-checkbox {
      position: absolute;
      z-index: -1;
      opacity: 0;
    }

    /* для элемента label, связанного с .custom-checkbox */
    .custom-checkbox+label {
      display: inline-flex;
      align-items: center;
      user-select: none;
    }

    /* создание в label псевдоэлемента before со следующими стилями */
    .custom-checkbox+label::before {
      content: '';
      display: inline-block;
      width: 1em;
      height: 1em;
      flex-shrink: 0;
      flex-grow: 0;
      border: 1px solid #adb5bd;
      border-radius: 0.25em;
      margin-right: 0.5em;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 50% 50%;
    }

    /* стили при наведении курсора на checkbox */
    .custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
      border-color: #b3d7ff;
    }

    /* стили для активного чекбокса (при нажатии на него) */
    .custom-checkbox:not(:disabled):active+label::before {
      background-color: #b3d7ff;
      border-color: #b3d7ff;
    }

    /* стили для чекбокса, находящегося в фокусе */
    .custom-checkbox:focus+label::before {
      box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
    .custom-checkbox:focus:not(:checked)+label::before {
      border-color: #80bdff;
    }

    /* стили для чекбокса, находящегося в состоянии checked */
    .custom-checkbox:checked+label::before {
      border-color: #0b76ef;
      background-color: #0b76ef;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    }

    /* стили для чекбокса, находящегося в состоянии disabled */
    .custom-checkbox:disabled+label::before {
      background-color: #e9ecef;
    }

    
    
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0.95;
}
.flash-message.success { background-color: #28a745; } /* зелёный */
.flash-message.error { background-color: #dc3545; }   /* красный */




