@charset "UTF-8";
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.padding-50 {
  padding: 50px !important;
}

.checkbox {
  text-align: center;
}

/* для элемента 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: 2em;
  height: 2em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #f09c01;
  border-radius: 5px;
  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: #c98303;
}

/* стили для активного чекбокса (при нажатии на него) */
.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: #f09c01;
  background-color: #f09c01;
  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;
}

/* Стили для input type=range */
input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #8b8b8b;
  border-radius: 25px;
  border: 0px solid #000101;
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background: #f09c01;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #8b8b8b;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #8b8b8b;
  border-radius: 25px;
  border: 0px solid #000101;
}

input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background: #f09c01;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background: #f09c01;
  cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
  background: #ac51b5;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ac51b5;
}

body {
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.container-p {
  padding: 0;
}

.config-group .config.config-padding {
  padding: 30px;
}

.top-main {
  background: #fff;
}

.top-main .text {
  margin: 0px 0 70px 20px;
  position: relative;
  padding: 30px 40px;
  background-color: #fafafa;
  margin-left: -50px;
  z-index: 2;
}

.top-main .text .title {
  font-size: 2.4em;
  text-transform: uppercase;
  color: #111;
}

.top-main .text .content {
  margin: 20px 0;
  font-size: 1.6em;
}

.top-main .img-bg {
  background: url(/uploads/backgrounds/5.webp);
  background-size: cover;
  background-position: center;
  min-height: 700px;
  position: relative;
  border-right: 10px solid #fff;
}

.top-main .img-bg .logo-wrapper {
  position: absolute;
  left: 30px;
  top: -5px;
  padding-right: 30px;
  z-index: 2;
}

.top-main .img-bg .logo-wrapper .logo {
  padding: 0;
}

.top-main .img-bg .logo-wrapper .logo .logo-area {
  background: #fff;
  padding: 20px;
}

.top-main .img-bg .logo-wrapper .logo .logo-area .logo__img {
  position: static;
}

.top-main .img-bg .title-wrapper {
  position: absolute;
  bottom: -20px;
  right: 0px;
  width: 300px;
  background: #f09c01;
  z-index: 2;
  padding: 30px;
}

.top-main .img-bg .title-wrapper .h3 {
  color: #fff;
  text-transform: uppercase;
}

.top-main .img-bg .title-wrapper p {
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 0;
}

.top-main .top-content {
  position: relative;
  padding: 30px;
  padding-left: 40px;
  padding-bottom: 80px;
}

.top-main .top-content .top-social-wrapper {
  display: flex;
}

.top-main .top-content .top-social-wrapper .top__menu-social {
  display: flex;
  justify-content: flex-start;
  margin-right: 20px;
  margin-top: 0;
}

.top-main .top-content .top-social-wrapper .top__menu-social .info__item-title {
  font-size: 13px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 400;
  color: #bdbdbd;
}

.top-main .top-content .top-social-wrapper .top__menu-social .social-messages a {
  color: #444;
  text-align: right;
}

.top-main .top-content .top-social-wrapper .top__menu-social .social-messages a:nth-child(2) {
  margin-left: 10px;
}

.top-main .top-content .top-social-wrapper .top__menu-social .social-messages a svg {
  position: relative;
  top: -1px;
}

.top-main .top__contact,
.top-main .top__contact-sm {
  display: flex;
  flex: 1 1 250px;
  flex-wrap: wrap;
  margin-top: 0px;
  padding-bottom: 40px;
}

.top-main .top__contact .top__contact-info,
.top-main .top__contact-sm .top__contact-info {
  margin-bottom: 20px;
}

.top-main .top__contact .top__contact-info:not(:last-child),
.top-main .top__contact-sm .top__contact-info:not(:last-child) {
  margin-right: 40px;
}

.top-main .top__contact .info__item-title,
.top-main .top__contact-sm .info__item-title {
  font-size: 12px;
  margin-bottom: 10px;
}

.top-main .top__contact .info__item-phone a,
.top-main .top__contact .info__item-link a,
.top-main .top__contact-sm .info__item-phone a,
.top-main .top__contact-sm .info__item-link a {
  color: #444;
  text-decoration: none;
  font-size: 20px;
}

.top-main .top__contact .info__item-phone a i,
.top-main .top__contact .info__item-link a i,
.top-main .top__contact-sm .info__item-phone a i,
.top-main .top__contact-sm .info__item-link a i {
  display: none;
}

.top-main .top__contact-sm {
  display: none;
}

.top-main .top-menu-2 {
  position: absolute;
  bottom: 40px;
}

.top-main .top-menu-2 ul:before {
  left: 0;
  display: none;
}

.top-main .top-menu-2 ul li {
  padding-left: 0;
  margin-right: 20px;
}

.top-main .top-menu-2 ul li a {
  color: #000;
  text-transform: uppercase;
  transition: ease 0.3s all;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  padding: 15px 20px 15px 20px;
  background-color: #eee;
  position: relative;
  border-left: 4px solid #f09c01;
}

.top-main .top-menu-2 ul li a:hover {
  background-color: #f09c01;
  color: #fff;
}

.top-main .top-menu-2 ul li:first-child a:before {
  background: url(/uploads/icons/svg/1/briefcase-solid.svg);
}

.top-main .top-menu-2 ul li:last-child a:before {
  background: url(/uploads/icons/svg/1/envelope-solid.svg);
}

.top-prehead2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0;
  margin-bottom: 20px;
  position: relative;
}

.top-prehead2 .prehead {
  display: flex;
  align-items: center;
}

.top-prehead2 .cart-list {
  position: absolute;
  display: none;
  z-index: 2;
  left: -10px;
  top: 60px;
  background: #fff;
  transition: 0.3s all;
}

.top-prehead2 .cart-list ul {
  padding: 0;
  margin-bottom: 0;
  width: 100%;
}

.top-prehead2 .cart-list ul:before {
  display: none;
}

.top-prehead2 .cart-list ul .basketTable {
  margin: 0 !important;
  padding: 0 !important;
}

.top-prehead2 .cart-list ul .basketTable tbody .captions {
  display: none;
}

.top-prehead2 .cart-list ul .basketTable tbody .item {
  width: 80%;
  height: 50px !important;
  cursor: pointer;
}

.top-prehead2 .cart-list ul .basketTable tbody .item td:nth-child(4),
.top-prehead2 .cart-list ul .basketTable tbody .item td:nth-child(5),
.top-prehead2 .cart-list ul .basketTable tbody .item td:nth-child(6) {
  display: none;
}

.top-prehead2 .cart-list ul .basketTable tbody .item .nameTd a {
  white-space: nowrap !important;
  overflow: hidden !important;
  display: block !important;
  width: 200px !important;
  text-overflow: ellipsis !important;
}

.top-prehead2 .cart-list ul .basketTable tbody .item td .price {
  font-weight: 500;
}

.top-prehead2 .cart-list ul .basketTable tbody .item:hover {
  background: #f09c01;
}

.top-prehead2 .cart-list ul .basketTable tbody .totalTr {
  display: none;
}

.top-prehead2 .cart-list ul li {
  padding-left: 0;
  padding: 15px;
  transition: 0.3s all;
  border-bottom: 1px solid #ececec;
}

.top-prehead2 .cart-list ul li a {
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
}

.top-prehead2 .cart-list ul li a img {
  width: 60px;
  height: 60px;
}

.top-prehead2 .cart-list ul li a .text-block {
  margin-left: 20px;
}

.top-prehead2 .cart-list ul li a .text-block .h4 {
  font-size: 18px;
}

.top-prehead2 .cart-list ul li a .text-block .desc {
  font-size: 14px;
  line-height: 16px;
  width: 130px;
}

.top-prehead2 .cart-list ul li a .price {
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  align-self: center;
  margin-left: 50px;
}

.top-prehead2 .cart-list ul li:hover {
  background: #f09c01;
}

.top-prehead2 .cart-list.active {
  display: block;
  transition: 0.3s all;
}

.top-prehead2 .cart-list .cart-list-btn {
  padding: 15px;
}

.top-prehead2 .cart-list .cart-list-btn .btn {
  background: #f09c01;
  color: #fff;
}

.top-prehead2 .cart-list .cart-list-btn .btn:hover {
  background: #c98303;
}

.top-prehead2 .top-menu-1 {
  display: flex;
  justify-content: flex-end;
}

.top-prehead2 .top-menu-1 .top__menu-nav {
  margin-top: 0;
}

.top-prehead2 .top-menu-1 .top__menu-nav li a {
  text-transform: uppercase;
  color: #fff;
}

.top-prehead2 .top-menu-1 ul:before {
  left: 0;
  display: none;
}

.top-prehead2 .top-menu-1 ul li {
  padding-left: 0;
  margin-right: 30px;
}

.top-prehead2 .top-button .btn {
  background: #f09c01;
  color: #fff;
  font-weight: 300;
  border: none;
}

.top-prehead2 .top-button .btn:hover {
  background: #c98303;
  color: #fff;
}
