@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=PT+Sans:regular,italic,700&display=swap&subset=cyrillic-ext");

@import url("https://fonts.googleapis.com/css?family=PT+Sans+Narrow:regular&display=swap&subset=cyrillic-ext");
@font-face {
  font-family: "BravoRGRegular";
  font-display: swap;
  src: url("../fonts/BravoRGRegular.woff") format("woff"), url("../fonts/BravoRGRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "ceremonious";
  font-display: swap;
  src: url("../fonts/ceremonious_one.woff") format("woff"), url("../fonts/ceremonious_one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}



@font-face {
  font-family: "PFDin";
  font-display: swap;
  src: url("../fonts/pfdintextcondpro-medium.woff") format("woff"), url("../fonts/pfdintextcondpro-medium.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "PT Sans";
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "PT Sans";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
table,th,td{
  border: 1px solid white;
  text-align:center;
} 

th,td{
   padding:10px;
   color: white;
}
caption{
  font-size:20px;
  color:white;
}
body {
  color: #000;
  font-size: 14px;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  max-width: 970px;
  margin: 0 auto;
  padding: 0 10px;
}


.page {
	padding: 90px 0px 30px 0px;
}
.page__section {
	padding: 30px;
	max-width: 1200px;
	margin: 0px auto;
}
.page__section_1 {
	background-color: #794f45;
}
.page__section_2 {
	background-color: #77608d;
}
.page__section_3 {
	background-color: #7a956b;
}
.page__title {
	font-size: 40px;
	margin: 0px 0px 20px 0px;
}
.page__text {
	font-size: 16px;
	line-height: 150%;
}
.page__text p {
	margin: 0px 0px 20px 0px;
}

.page__sub-title {
	font-size: 30px;
	margin: 0px 0px 20px 0px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: black;
}

.header__container {
	max-width: 1200px;
	margin: 0px auto;
	display: flex;
	padding: 0px 30px;
	align-items: center;
	justify-content: space-between;
	min-height: 70px;
}
.header__logo {
	border-radius: 50%;
	background-color: #fff;
	position: relative;
	z-index: 5;
	width: 40px;
	height: 40px;
}
.header__menu {
}
.menu {
}
.menu__icon {
	display: none;
}
.menu__body {
}
.menu__list {
}
.menu__list > li {
	position: relative;
	margin: 0px 0px 0px 20px;
}
.menu__link {
	color: white;
	font-size: 18px;
}
.menu__link:hover {
	text-decoration: underline;
}
.menu__sub-list {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #000;
	padding: 15px;
	min-width: 200px;
}
.menu__sub-list li {
	margin: 0px 0px 10px 0px;
}
.menu__sub-list li:last-child {
	margin: 0;
}
.menu__sub-link {
	color: #fff;
}
.menu__sub-link:hover {
	text-decoration: underline;
}
.menu__arrow {
	display: none;
}
/* ----------------------- */
body._pc .menu__list > li:hover .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}
body._touch .menu__list > li {
	display: flex;
	align-items: center;
}
body._touch .menu__link {
	flex: 1 1 auto;
}
body._touch .menu__arrow {
	display: block;
	width: 0;
	height: 0;
	margin: 0px 0px 0px 5px;
	transition: transform 0.3s ease 0s;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #fff;
}

body._touch .menu__list > li._active .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
	transform: rotate(-180deg);
}

/* ----------------------- */
@media (min-width: 767px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
	.menu__list > li {
		padding: 10px 0;
	}
	.menu__sub-list {
		transform: translate(0px, 10%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease 0s;
	}
}

@media (max-width: 767px) {
	.menu__icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
	}
	.menu__icon span,
	.menu__icon::before,
	.menu__icon::after {
		left: 0;
		position: absolute;
		height: 10%;
		width: 100%;
		transition: all 0.3s ease 0s;
		background-color: white;
	}
	.menu__icon::before,
	.menu__icon::after {
		content: "";
	}
	.menu__icon::before {
		top: 0;
	}
	.menu__icon::after {
		bottom: 0;
	}
	.menu__icon span {
		top: 50%;
		transform: scale(1) translate(0px, -50%);
	}

	.menu__icon._active span {
		transform: scale(0) translate(0px, -50%);
	}
	.menu__icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -50%);
	}
	.menu__icon._active::after {
		bottom: 50%;
		transform: rotate(45deg) translate(0px, 50%);
	}

	.menu__body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		overflow: auto;
	}
	.menu__body._active {
		left: 0;
	}

	.menu__body::before {
		content: "";
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		height: 70px;
		background-color: black;
		z-index: 2;
	}

	.menu__list > li {
		flex-wrap: wrap;
		margin: 0px 0px 30px 0px;
	}
	.menu__list > li:last-child {
		margin-bottom: 0;
	}
	.menu__list > li._active .menu__sub-list {
		display: block;
	}
	.menu__link {
		font-size: 24px;
	}
	.menu__sub-list {
		position: relative;
		background-color: #fff;
		flex: 1 1 100%;
		margin: 20px 0px 0px 0px;
		display: none;
	}
	.menu__sub-link {
		font-size: 20px;
		color: #000;
	}
}

/* menu */
.form__error {
  color: red;
  margin: 10px 0px 0px 0px;
}

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

.btn:before,
.btn:after {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  content: "";
}

.btn:before {
  top: 0;
  background-color: #1f1e1d;
}

.btn:after {
  bottom: 0;
  background-color: #1f1e1d;
}

.btn__body:before,
.btn__body:after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1d), to(rgba(187, 156, 102, 0))) ;
  background-image: -o-linear-gradient(bottom, #1f1e1d, #1f1e1d);
  background-image: linear-gradient(to top, #1f1e1d, #1f1e1d);
}

.btn__body:before {
  left: 0;
}

.btn__body:after {
  right: 0;
}

.btn__body span {
  min-height: 50px;
  color: #fff;
  font-size: 15px;
  font-family: "PFDin";
  letter-spacing: 2px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 50px;
  position: relative;
}

.btn__body span:after {
  content: "";
  height: 50%;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0.06;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1d), to(rgba(187, 156, 102, 0)));
  background-image: -o-linear-gradient(bottom, #1f1e1d 0%, rgba(187, 156, 102, 0) 100%);
  background-image: linear-gradient(to top, #1f1e1d 0%, rgba(187, 156, 102, 0) 100%);
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

.btn_big .btn__body span {
  font-size: 21px;
  color: #000;
  letter-spacing: 0px;
  padding: 0px 10px;
  font-weight: 500;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}



.input {
  border-radius: 0 !important;
  width: 100%;
  color: #4f4f4f;
  font-size: 15px;
  height: 100%;
  display: block;
  padding: 0px 25px;
}

.input._focus {
  color: #000;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating-block {
  display: table;
  font-size: 0;

}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  position: relative;
  width: 73px;
  height: 47px;
  border: 1px solid #cfcfcf;
  background-color: #ffffff;
}

.quantity__input {
  height: 45px;
  width: 50px;
  text-align: center;
  color: #101010;
  font-weight: 300;
}

.quantity__btn {
  position: absolute;
  top: 11px;
  right: 15px;
  cursor: pointer;
}

.quantity__btn:before {
  font-size: 25px;
  display: inline-block;
  line-height: 10px;
  color: #a9a9a9;
}

.quantity__btn:hover:before {
  color: #da0005;
}

.quantity__btn.dwn {
  top: 25px;
}

.category-params-item-price-table {
  margin-bottom: 25px;
}

.category-params-item-price-table .cell:first-child {
  padding-right: 15px;
  position: relative;
}
/*  */
.text-categories {
  color: #333333;
  font-size: 18px;
  line-height: calc(25 / 15);
  margin-bottom: 50px;
}
/*  */
.category-params-item-price-table .cell:first-child:after {
  content: "-";
  position: absolute;
  right: -4px;
  top: 8px;
  font-size: 20px;
}

.category-params-item-price-table .cell:last-child {
  padding-left: 15px;
}

.category-params-item-price-table .cell input {
  height: 37px;
  border: 2px solid #393939;
  background-color: #ffffff;
  text-align: center;
  font-size: 12px;
  color: #393939;
  font-weight: 500;
  width: 100%;
}

.category-params-item-price-range {
  margin: 0 12px 40px 12px;
  background-color: #c9cecf;
  height: 2px;
  position: relative;
}

.category-params-item-price-range .ui-slider-range {
  background-color: #000;
  height: 2px;
  position: relative;
}

.category-params-item-price-range .ui-slider-handle {
  width: 23px;
  height: 28px;
  border: 3px solid #fbfbfb;
  background-color: #ea5922;
  display: block;
  position: absolute;
  top: -14px;
  margin-left: -12px;
  cursor: pointer;
}

.category-params-item-price-range .ui-slider-handle span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 50px;
  text-align: center;
  font-size: 10px;
  margin-left: -25px;
  font-weight: 500;
  color: #94a6aa;
}

.form__info {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
  line-height: 60px;
  text-align: center;
  color: #888;
  z-index: 2;
  font-size: 14px;
}

.form-range-line {
  position: relative;
  height: 5px;
  border-radius: 0 0 4px 4px;
  background-color: #e0e0e0;
  margin: -2px 0px 0px 0px;
}

.form-range-line .ui-slider-range {
  background-color: #093454;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 4px 4px;
}

.form-range-line .ui-slider-handle {
  background: url("../img/icons/range.svg") 0 0 no-repeat;
  width: 28px;
  height: 28px;
  position: absolute;
  margin: -9px 0px 0px -14px;
  top: 0;
  left: 0;
  cursor: pointer;
}

.form-range-line .ui-state-hover {
  background: url("../img/icons/range_a.svg") 0 0 no-repeat;
}

.form-range-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 0px 0px 0px;
}

.form-range-values__item {
  font-size: 12px;
  color: #888;
}

.title {
  text-align: center;
}

.title__item {
  font-family: "ceremonious";
  color: #a9a9a9;
  font-size: 40px;
  margin: 0px 0px 0.5em 0px;
}

.title__main {
  font-family: "PFDin";
  letter-spacing: 5.25px;
  font-size: 35px;
  line-height: calc(40 / 35);
  text-transform: uppercase;
  font-weight: 500;
}

.title__main_regular {
  font-weight: 400;
}

.title__main_w {
  color: #fff;
}

.block-header__title {
  margin: 0px 0px 20px 0px;
}

.block-decor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-decor__items {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-decor__items:before {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-color: #bb9c66;
}

.block-decor__items:after {
  content: "";
  height: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  /* border: 1px solid #bb9c66; */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0px 5px 0px 5px;
}

.block-decor__items span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 5px;
}

.block-decor__items span:before {
  content: "";
  height: 10px;
  width: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  border-radius: 50%;
  /* border: 1px solid #bb9c66; */
  margin: 0px 5px;
}

.block-decor__items span:after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10.8px;
          flex: 0 0 10.8px;
  width: 10.8px;
  height: 10.8px;
  border: 1px solid #bb9c66;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.block-decor__items:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.block-decor__items:last-child span {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.block-decor__icon {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 145px;
          flex: 0 0 145px;
}

.block-decor__icon img {
  max-width: 70px;
}

.lot {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.lot__header {
  text-align: center;
  margin: 0px 0px 30px 0px;
  position: relative;
}

.lot__image {
  display: block;
  border: 3px solid #bb9c66;
  padding: 0px 0px 98% 0px;
}

.lot__title {
  font-size: 21px;
  line-height: calc(25 / 21);
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  font-family: "PFDin";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  z-index: 2;
  margin: 0px 0px 1.28571em 0px;
}

.lot__btn {
  margin: 0px 25px;
}

.timer-lot {
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 72px;
  height: 72px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2px 0px 0px 0px;
  position: absolute;
  left: 50%;
  bottom: 0;
}

.timer-lot div {
  position: relative;
  z-index: 2;
}

.timer-lot:before {
  content: "";
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.timer-lot__icon {
  margin: 0px 0px 5px 0px;
}

.timer-lot__item {
  font-family: "PT Sans Narrow";
  font-size: 18px;
}

.info-lot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 0px 35px 0px;
}

.info-lot__statistic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.info-lot__icon {
  width: 18px;
  height: 18px;
  margin: 0px auto 10px auto;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-lot__icon picture {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-lot__icon:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #000;
}

.info-lot__value {
  font-size: 14px;
  padding: 0px 0px 5px 0px;
  border-bottom: 1px solid #bb9c66;
}

.info-lot__current-bet {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.current-bet-info-lot {
  padding: 0px 5px;
  position: relative;
}

.current-bet-info-lot:after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid #bb9c66;
}

.current-bet-info-lot div {
  position: relative;
  z-index: 2;
}

.current-bet-info-lot__label {
  margin: 0px 0px 5px 0px;
}

.current-bet-info-lot__value {
  font-family: "BravoRGRegular";
  font-size: 50px;
  white-space: nowrap;
}



.service {
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service__image {
  height: 205px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 10px 0px;
}

.service__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-family: "PFDin";
  font-size: 21px;
  font-weight: 500;
  line-height: calc(25 / 21);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.1px;
}

.service__text {
  color: #F2F2F2;
  font-size: 15px;
  line-height: calc(25 / 15);
  /* max-height: 50px; */
  overflow: hidden;
  margin: 23px 0px 0px 0px;
}
.tex_ver{

}
.service__btn {
  position: relative;
  font-family: "PFDin";
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2.1px;
  text-align: center;
  text-transform: uppercase;
  margin: 30px 0px 0px 0px;
  padding: 20px;
}

.service__btn:before {
  content: "";
  position: absolute;
  background-color: #fcfbf9;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

.service__btn span {
  background-color: black;
  position: relative;
  z-index: 2;
  padding: 0px 15px;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

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

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper > div {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.gm-style-iw-t {
  opacity: 0;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

.popup {
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  visibility: hidden;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  opacity: 1;
  visibility: visible;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}



.actions-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.actions-header__region {
  position: relative;
  z-index: 2;
  padding: 0px 0px 0px 30px;
  line-height: 18px;
  min-width: 18px;
  min-height: 18px;
  background: url("../img/icons/globe.png") left no-repeat;
}


.footer {
  padding: 45px 0;
  background-color: #363232;
  margin-top: 1px 
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__column:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
          display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__column_full {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.footer__logo {
  display: inline-block;
  margin: 0px 0px 25px 0px;
}

.footer__info {
  color: #F2F2F2;
  margin-top: 20px;

}

.footer__menu {
  padding: 0px 30px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__list li {
  margin: 0px 10px 0px 10px;
}

.footer__link {
  font-family: "PFDin";
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.li_n2{
  font-family: "PFDin";
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  
}

.footer__contacts {
  padding: 12px 0px 0px 0px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__phone {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #F2F2F2;
  font-family: "BravoRGRegular";
  font-size: 50px;
  text-transform: uppercase;
}

.footer__phone_f{
  color: #F2F2F2;
  /* font-family: math; */
  font-size: 18px;
  text-transform: uppercase;
  font-family: "PFDin";
}



.footer__phone small {
  margin: 2px 5px 0px 0px;
  font-size: 25px;
}

.footer__callback {
  color: #F2F2F2;
  /* background: url("../img/icons/callback.svg") left no-repeat; */
  padding: 0px 0px 0px 12px;
  margin-top: 20px;

}

.footer__callback span {
  border-bottom: 1px dashed;
}

.page {
  padding: 75px 0px 0px 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.main-slider {
  position: relative;
}

.main-slider .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.main-slider__control {
  position: absolute;
  left: 50%;
  width: 100px;
  height: 100px;
  bottom: 0px;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-slider__control:after {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.item-main-slider {
  text-align: center;
  padding: 30px 0px 100px 0px;
  position: relative;
}

.item-main-slider__content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.item-main-slider__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-main-slider__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.item-main-slider__text {
  font-family: "PFDin";
  font-weight: 400;
  max-width: 700px;
  margin: 25px auto 0px auto;
  color: #fff;
  font-size: 17px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: calc(25 / 15);
}

.item-main-slider__btn {
  margin: 55px 0px 0px 0px;
}

.control-main-slider__arrow {
  position: relative;
  z-index: 2;
  background: url("../img/icons/sl-arrow.png") 0 0 no-repeat;
  width: 14px;
  height: 24px;
  cursor: pointer;
}

.control-main-slider__arrow_next {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.control-main-slider__decor {
  position: relative;
  z-index: 2;
  margin: 0px 12px;
  -webkit-animation: rotate 5s infinite linear;
          animation: rotate 5s infinite linear;
}

@-webkit-keyframes rotate {
  0% {

  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {

  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.lots {
  padding: 85px 0px 63px 0px;
}

.lots__header {
  margin: 0px 0px 40px 0px;
}

.slider-lots__body {
  margin: 0px -50px 50px;
}

.slider-lots__body .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.slider-lots__slide {
  padding: 0px 50px;
}

.control-slider-lots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.control-slider-lots__arrow {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.control-slider-lots__arrow span {
  background: url("../img/icons/sl-arrow.svg") left no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 108px;
          flex: 0 0 108px;
  overflow: hidden;
  width: 108px;
  height: 35px;
}

.control-slider-lots__arrow:after {
  content: "";
  margin: 0px 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #bb9c66;
}

.control-slider-lots__arrow:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.control-slider-lots__arrow:last-child span {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.control-slider-lots__link {
  background: url("../img/icons/circle.png") 0 0 no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "PFDin";
  margin: 0px 20px;
}

@media (min-width: 960px) {
  .cen_tr {
    display: none;
  }
  }

.services {
  z-index: 1;
  padding: 60px 0px 40px 0px;
  background-color: black;
}

.services__header {
  margin: 0px 0px 40px 0px;
}

.services__row {
  margin: 0px -50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.services__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  padding: 0px 50px;
  margin: 0px 0px 50px 0px;
}

.quotes {
  padding: 64px 0px 75px 0px;
}

.slider-quotes__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0 !important;
}

.slider-quotes__slide.swiper-slide-active {
  opacity: 1 !important;
}

.slider-quotes__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.68421%;
          flex: 0 0 33.68421%;
}

  .slider-quotes__image img { 
  max-width: 100%;
  border-radius: 100%;
}

.slider-quotes__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 515px;
          flex: 0 1 515px;
}

.slider-quotes__title {
  font-size: 25px;
  line-height: calc(30 / 25);
  font-style: italic;
  margin: 0px 0px 1.2em 0px;
}

.slider-quotes__info {
  color: #1c242a;
  font-size: 18px;
}

.slider-quotes__info p {
  margin: 0px 0px 7px 0px;
}

.slider-quotes__info p:last-child {
  margin: 0px 0px 0px 0px;
} 

.control-slider-quotes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  margin: 0px auto;
}

.control-slider-quotes__decor {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.control-slider-quotes__decor:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  background-color: #0a0a09;
}

.control-slider-quotes__decor:after {
  content: "";
  margin: 0px 0px 0px 5px;
  width: 10px;
  border-radius: 50%;
  height: 10px;
  border: 1px solid #bb9c66;
}

.control-slider-quotes__decor:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.control-slider-quotes__decor:last-child:after {
  margin: 0px 5px 0px 0px;
}

.control-slider-quotes__link {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.control-slider-quotes__circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #bb9c66;
  background: url("../img/icons/rotate-arrow.svg") center no-repeat;
} */

.info {
  padding: 0px 0px 75px 0px;
}

.info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px -22px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 0px 22px;
  margin: 0px 0px 55px 0px;
}

.info__column:last-child {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.info__item {
  margin: 0px 0px 30px 0px;
}

.info__date {
  color: #bb9c66;
  font-size: 12px;
  margin: 0px 0px 5px 0px;
}

.info__label {
  font-size: 15px;
  color: #333333;
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  margin: 0px 0px 5px 0px;
}

.info__text {
  font-size: 15px;
  line-height: calc(21 / 15);
}

.title-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 35px;
  font-family: "PFDin";
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin: 0px 0px 30px 0px;
  flex-direction: column;
}

.title-info span:first-child {
  margin: 0px 15px 0px 0px;
}

.title-info span:first-child picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


.subscribe__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px -22px;
  align-items: center;
}

.subscribe__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 0px 22px;
}

.subscribe__text {
  font-size: 15px;
  line-height: calc(21 / 15);
}

.form-subscribe {
  height: 50px;
  border: 3px solid #292826;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-subscribe__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.form-subscribe__btn {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95px;
          flex: 0 0 95px;
  /* background-color: #e6e6e6; */
}

.form-subscribe__btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  width: 1px;
  height: 32px;
  background-color: #0f0e0e;
}

.form-subscribe__btn span {
  background: url("../img/icons/pngwing.com.png") right no-repeat;
  padding: 0px 32px 0px 0px;
  /* color: #1c242a; */
  font-family: "PFDin";
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.12px;
}

@media (min-width: 992px) {
  .btn:hover .btn__body span:after {
    opacity: 0.3;
    height: 100%;
  }

  .select__option:hover {
    background: #faf8f8;
  }

  .checkbox a:hover {
    text-decoration: none;
  }

  .lot__title:hover {
    text-decoration: underline;
  }

  .item:hover .item__bg {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .menu__link:hover,
  .actions-header__region:hover {
    text-decoration: underline;
  }

  .user-header__link:hover {
    text-decoration: underline;
  }

  .footer__link:hover {
    text-decoration: underline;
  }
}

@media (max-width: 991.98px) {
  .select__title {
    font-size: 18px;
  }

  .select__options {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .footer__phone {
    font-size: 40px;
  }

  .footer__phone small {
    font-size: 20px;
  }
}

@media (max-width: 975px) {
  .lot__title {
    font-size: 18px;
  }

  .info-lot__current-bet {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .current-bet-info-lot {
    padding: 0px 10px;
  }

  .current-bet-info-lot__value {
    font-size: 40px;
  }

  .slider-lots__body {
    margin: 0px -15px 50px;
  }

  .slider-lots__slide {
    padding: 0px 15px;
  }

  .categories__row:before {
    left: 50%;
  }

  .categories__row:after {
    display: none;
  }

  .categories__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }

  .services__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

@media (max-width: 890px) {
  .actions-header__region {
    padding: 0px 0px 0px 0px;
  }

  .actions-header__region span {
    display: none;
  }

  .actions-header__user {
    margin: 0px 0px 0px 15px;
  }
}

@media (max-width: 767.98px) {
  .form__info {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .title__main {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .block-decor__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 95px;
            flex: 0 0 95px;
  }

  .header__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .lots {
    padding: 33px 0px 63px 0px;
}

  .header__logo {
    position: absolute;
    left: 39%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  .menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .menu__body {
    background-color: black;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: auto;
    padding: 130px 0px 20px 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: center;
  }

  .menu__body:after {
    content: "";
    background-color:black;;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
  }

  .menu__body._active {
    opacity: 1;
    visibility: visible;
  }

  .menu__list {
    display: block;
  }

  .menu__list li {
    margin: 0px 0px 10px 0px;
  }

  .menu__list li:last-child {
    margin: 0px 0px 0px 0px;
  }

  .menu__link,
  .actions-header__region {
    font-size: 24px;
    color: white;
  }

  .icon-menu {
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #858585;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .icon-menu._active span {
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .icon-menu._active span:last-child {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .actions-header__region {
    margin: 30px 0px 0px 0px;
    display: inline-block;
    padding: 0px 0px 0px 30px;
  }

  .actions-header__region span {
    display: inline-block;
  }

  .user-header__menu {
    width: 100%;
  }

  .main-slider .swiper-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .footer__content {
    display: block;
    text-align: center;
  }

  .footer__logo {
    margin: 0;
  }

  .footer__info {
    margin: 25px 0px 0px 0px;
  }

  .footer__menu {
    padding: 0px 15px;
    margin: 0px 0px 20px 0px;
  }

  .footer__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 15px 7px 0px 7px;
  }

  .footer__contacts {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .categories {
    margin: 0px 0px 35px 0px;
  }

  .categories__items {
    margin: 0px 0px 0px 0px;
  }

  .text-categories__body:before {
    display: none;
  }

  .text-categories__body {
    padding: 10px 0px 25px 0px;
    background: none;
  }

  .webp .text-categories__body {
    background: none !important;
  }

  .quotes {
    padding: 35px 0px 35px 0px;
  }

  .info {
    padding: 0px 0px 35px 0px;
  }

  .info__row {
    display: block;
  }

  .info__column {
    margin: 0px 0px 30px 0px;
  }

  .info__item {
    margin: 0px 0px 20px 0px;
  }

  .title-info {
    margin: 0px 0px 15px 0px;
  }

  .subscribe__body {
    display: block;
  }

  .subscribe__text {
    margin: 0px 0px 25px 0px;
  }
}







@media (max-width: 650px) {
  .categories__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .services {
    padding: 40px 0px 0px 0px;
  }

  .services__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

@media (max-width: 570px) {
  .slider-quotes__body {
    margin: 0px 0px 30px 0px;
  }

  .slider-quotes__slide {
    display: block;
  }
}

@media (max-width: 450px) {
  .control-slider-lots__arrow span {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
  }
}

.webp .actions-header__region{ background: url(../img/icons/globe.webp) left no-repeat; }

.webp .user-header__link_1{ background: url(../img/icons/menu/01.webp) 1px center no-repeat; }

.webp .user-header__link_2{ background: url(../img/icons/menu/02.webp) left center no-repeat; }

.webp .user-header__link_3{ background: url(../img/icons/menu/03.webp) 4px center no-repeat; }

.webp .user-header__link_4{ background: url(../img/icons/menu/04.webp) left center no-repeat; }

.webp .control-main-slider__arrow{ background: url(../img/icons/sl-arrow.webp) 0 0 no-repeat; }

.webp .control-slider-lots__link{ background: url(../img/icons/circle.webp) 0 0 no-repeat; }

.webp .text-categories__body{ background: url(../img/categories/decor.webp) left top repeat-y; }

.webp .text-categories__body:before{ background: url(../img/categories/decor_header.webp) 0 0 no-repeat; }

/* .webp .form-subscribe__btn span{ background: url(../img/icons/news.svg) right no-repeat; } */


/* товар */
.store {
	padding-top: 80px;
	padding-bottom: 90px;
	/* margin-bottom: 200px; */

}
.store__container {}
.store__title {
	margin-bottom: 86px;
}
.store__body {}

.body-store {
	display: grid;
    justify-items: center;

}
.body-store__header {
	margin-bottom: 32px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
  flex-direction: column;
}


.body-store__title {
	letter-spacing: 0.08em;
  text-align: center;
	font-size: 15px;
	line-height: 1.5;
	text-transform: uppercase;
	color: #121212;
	font-weight: 600;
}
/*  */
.fon_st_b{
  margin-top: 30px;
font-size: 20px;
}
.svg_center{
  height: 24px;
  width: 35px;
}

.text_fon{
  font-size: 15px;
  font-family: CalSans;
  text-align: center;
  color: #000;
  line-height: calc(25 / 15);
  text-transform: uppercase;
  font-weight: 600;
}
.text_fon:hover{
text-decoration: underline;
}
.body-store__all {
	color: #868686;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
}
.body-store__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	/* max-width: 60%; */
}
.body-store__item {}

.item {
	display: grid;
	border-radius: 5px;
    /* border: 2px solid #88BDBC; */
	align-content: space-between;
}
  .item:hover {
	
	border: 1px solid #363232 ;
  border-radius: 20px;
  
}  
.item-1 {
	display: grid;
	border-radius: 5px;
    /* border: 2px solid #88BDBC; */
	align-content: space-between;
}

.item__image {
	text-align: center;
}
.item__image img{
	margin-top: 20px;
	max-width: 80%;
  border-radius: 10px;
}
.item__image:not(:last-child){
	margin-bottom: 40px;
}

.item__title {
	color: #121212;
	font-weight: 500;
	font-size: 15px;
	line-height:1.5;
	justify-self: start;
}
.item__title:not(:last-child) {
	margin-bottom: 7px;
    margin-bottom: 7px;
   
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* .item__title:hover{
	text-decoration: underline;
} */
.efect_ret{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}



.item__price {
	font-size: 24px;
	line-height: 21px;
	color: black;
	margin-bottom: 20px;
	text-align: center;

}
.price_eret{
display: flex;
}
.price_rec {
  font-size: 18px;
  line-height: 25px;
  color: #808080;
  text-decoration: line-through;
  transform: translateY(-5px);
  margin-left: 12px;
}



@media (max-width: 991.98px) {
	.store{
		padding-top:50px;
		padding-bottom: 50px;

	}
	
	.store__title {
		margin-bottom: 50px;
	}
	.body-store__items {
		grid-template-columns: repeat(2, 1fr);
	}
	/*  */
}


@media (max-width: 767.98px) {
	.store {
		padding-top: 50px;
		padding-bottom: 30px;
	}
	.store__title {
		margin-bottom: 20px;
	}
	.item__image:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media (max-width: 560px) {
	.body-store__items {
		grid-template-columns: repeat(2, 1fr);
		max-width: none;
	}
	.price_rec {
		display: flex;
		flex-direction: column-reverse;
	
	}
}


/* ----------------------------------------------- */

.categories {
	/* padding-top: 90px;
	padding-bottom: 110px; */
}
.categories__container {
	
}
.categories__container_romb{
    display: flex;
    width: 50%;
    justify-content: center;
	/* padding-bottom: 200px; */
}
.categories__container_pidpjatnuk{
	display: flex;
	width: 50%;
    justify-content: center;
}
.categories__title {
	margin-bottom: 80px;
}
.categories__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 70px;
	row-gap: 35px;
	max-width: 40%;
	margin: 0 auto;
	margin-bottom: 75px;
}


.categories__item {}

.item-category {
	position: relative;
}

.item-category:hover .item-category__image img{
	transform: scale(1.1);
}
.item-category__title {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 20px;
	color: #fff;
	font-size: 11px;
	line-height: 1.5;
	font-weight: 600;
	z-index: 3;
	width: 100%;
	border-radius: 25px;


}
.item-category__title_brend{
	color: black;

}

.item-category__image {
	position: relative;
	overflow: hidden;
	border-radius: 25px;
	padding-bottom: 127%;
}
.item-category__image::before{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	border-radius: 25px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.item-category_none{
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.089) 100%);
}
.item-category_none::before{
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.089) 100%);
}
.item-category__image img{
	transition: all 0.3s ease 0s;
	position: absolute;
	width: 100%;
	/* height: 100%; */
	top: 12px;
	left: 0;
	object-fit: cover;
}
@media (max-width: 1230px){
	
	.categories__items {
		column-gap:40px;
	}  
}
@media (max-width: 991.98px) {
	.categories {
		padding-top: 50px;
		padding-bottom: 50px;
	}
 
.categories__title {
		margin-bottom: 50px;
	}
	.categories__items {
		column-gap: 4px;
	}
	.categories__items {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767.98px) {
	.categories {
		padding-top: 15px;
		/* padding-bottom: 77px; */
	}
	.categories__title {
		margin-bottom: 20px;
	}
}
@media (max-width: 479.98px) {
	.categories__items {
		row-gap: 0px;
		grid-template-columns: repeat(3, 1fr);
		max-width: none;
	}

	

.item-category__title {
   
    font-size: 12px;
	border-radius: 25px;
}
}
.buy {
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: rgb(54 50 50);
  width: 85%;
  height: 45px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  border-radius: 20px;
}
.buy:hover {
  background-color: rgba(54, 50, 50, 0.7);
}
/* ---------------------------------------------- */
.brands {
	/* padding-top:110px; */
	/* padding-bottom: 180px;  */
	padding-bottom: 110px;
}
.brands__container {}
.brands__title {
	/* margin-bottom: 75px; */
}
.brands__items {

	display: flex;
	justify-content: center;
}
.brands__item {
	 
	display: flex;
    justify-content: center;

}
.brands__item img{
	max-width: 100%;
	border-radius: 30px;
    margin-top: 100px;

}

@media (max-width: 991.98px){
	.brands {
		/* padding-top: 50px; */
		padding-bottom: 50px;
	}
	.brands__title {
		margin-bottom: 40px;
	}
	.brands__items {
		row-gap: 50px;
		grid-template-columns: repeat(1, auto);
	}
}
@media (max-width: 767.98px) {
	.brands {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.brands__title {
		margin-bottom:20px;
	}
}
@media (max-width:600px) {
	.brands__items {
		row-gap: 20px;
		justify-content: center;
		grid-template-columns: repeat(2, auto);
	}
}


.retrt{
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: #858585;
  width: 85%;
  height: 45px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  border-radius: 0 0px 19px 19px;
}
.color_wn{
  text-decoration: none;
  color: rgb(66, 173, 115);
  background-color: rgb(66 173 115 / 32%);
  border-radius: 30px;
  padding: 0 10px;
}
.info{

}

@media (max-width: 767px){
  .subscribe__body{
display: flex;
flex-direction: column;
align-items: center;
  }
  .subscribe__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    /* padding: 0px 22px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}


}
.insta_per{
  font-size: 27px;
  font-family: -webkit-body;
  color: #78223c;
}
.erter_color{
color: #000;
}

.posyv_1{
  margin-top: 30px;
}

.menu_opus{
padding: 12px 0px 0px 0px;
text-align: right;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
color: white;
}




@media (min-width: 767px){
.posyv_1 {
  display: none;
 
}
.rexxr_t{
width: 580px;
}
}
@media (max-width: 767px){
.rexxr_t{
  width: 100%;
  align-items: center;
  }

  
}


.sertufikat_foto{

}


/*кнопка обратной связи*/
.email-bt {
  background: #746c69;
  border-radius: 50%;
  box-shadow: 0 8px 10px rgba(67, 59, 55, 0.3);
  cursor: pointer;
  border: 2px solid transparent;
  display: block;
  height: 75px;
  width: 75px;
  text-align: center;
  position: fixed;
  left: 8%;
  bottom: 18%;
  z-index: 1;
  transition: .3s ease-in-out;
  -webkit-animation: email-an linear 1s infinite;
  animation: email-an linear 1s infinite;
}

.email-bt:hover {
  background: #fff;
  border: 2px solid #746c69;
}

.email-bt .text-call {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  position: relative;
}

.email-bt .text-call:after {
  content: "\f0e0";
  display: block;
  font-family: fontawesome;
  color: rgb(0, 0, 0);
  font-size: 34px;
  line-height: 75px;
  height: 75px;
  width: 75px;
  opacity: 1;
  transition: .3s ease-in-out;
  -webkit-animation: opsimple 3s infinite;
  animation: opsimple 3s infinite;
}

.email-bt .text-call:hover:after {
  opacity: 0;
}

.email-bt .text-call span {
  color: #746c69;
  display: block;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 999;
  opacity: 0;
  font-size: 7px;
  line-height: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: .3s ease-in-out;
  font-family: 'montserrat', Arial, Helvetica, sans-serif;
}

.email-bt .text-call:hover span {
  opacity: 1;
}

@keyframes email-an {
  0% {
      box-shadow: 0 8px 10px rgba(251, 252, 250, 0.443), 0 0 0 0, 0 0 0 0 rgb(255, 255, 255), 0 0 0 0 rgba(8, 10, 0, 0.443)
  }

  40% {
      box-shadow: 0 8px 10px hsla(0, 5%, 4%, 0.202), 0 0 0 15px rgba(8, 10, 0, 0.443), 0 0 0 0 rgba(251, 252, 249, 0.443)
  }

  80% {
      box-shadow: 0 8px 10px rgba(255, 255, 255, 0.443), 0 0 0 30px rgba(249, 92, 24, 0), 0 0 0 26.7px rgba(255, 255, 255, 0.067)
  }

  100% {
      box-shadow: 0 8px 10px rgba(8, 10, 0, 0.443), 0 0 0 30px rgba(249, 92, 24, 0), 0 0 0 40px rgba(255, 255, 255, 0)
  }
}

@keyframes opsimple {
  0% {
      opacity: 0;
      transform: rotate(0deg);
  }

  40% {
      opacity: 1;
  }

  80% {
      opacity: 1;
  }

  100% {
      opacity: 0;
      transform: rotate(360deg);
  }
}

.center_efect{

}



/* Падаючі елементи */
#snow-container {
  position: fixed;
  top: 17px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.snowflake, .tree {
  position: absolute;
  top: -10px;
  animation-name: fall, sway;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 8s, 3s;
}

.snowflake {
  color: white;
  font-size: 1.2em;
}

.tree {
  font-size: 1.5em;
  color: green;
}

@keyframes fall {
  to {
      transform: translateY(100vh);
  }
}

@keyframes sway {
  0%, 100% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(20px);
  }
}
