@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.ui.popup {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.ui.popup > div {
  background-color: #fff;
  position: relative;
  margin-bottom: 10px;
  max-width: 300px;
  color: #dedede;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  transition: 0.5s;
}
.ui.popup > div > p {
  padding: 10px;
  margin-right: 10px;
}
.ui.popup > div > canvas {
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  border: none;
  outline: none;
  resize: none;
  background: none;
  text-decoration: none;
}
.ui.popup > div.success {
  background-color: #8DB900;
  color: #fff;
}
.ui.popup > div.error {
  background-color: #F44447;
  color: white;
}

.catalog-header-wrapper {
  display: flex;
}
.catalog-header-wrapper > div {
  padding: 20px;
}
.catalog-header-wrapper > div:first-child {
  flex: 1;
}
.catalog-header-wrapper > div:last-child {
  max-width: 280px;
  text-align: right;
}
.catalog-header-wrapper > div:last-child p {
  font-size: 13px;
  margin-bottom: 14px;
  font-weight: 200;
}
.catalog-header-wrapper > div h1 {
  font-weight: 300;
  margin-top: 14px;
}
.catalog-header-wrapper .catalog-path {
  display: flex;
}
.catalog-header-wrapper .catalog-path > a {
  text-decoration: none;
  color: #1A222C;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.catalog-header-wrapper .catalog-path > a:before {
  margin: 0px 10px;
  font-family: "icomoon" !important;
  content: "\e903";
}
.catalog-header-wrapper .catalog-path > a:first-child:before {
  content: "";
  margin: 0px;
}
.catalog-header-wrapper .catalog-path > a:first-child {
  background-color: #F7F7F7;
  padding: 10px;
  border-radius: 6px;
}
.catalog-header-wrapper .catalog-path > a:hover {
  color: #000;
}

.catalog-navigate {
  padding: 20px 14px;
  display: flex;
  flex-wrap: wrap;
}
.catalog-navigate > a {
  background-color: #F7F7F7;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #1A222C;
  margin: 6px;
}
.catalog-navigate > a.selected {
  background-color: #1A222C;
  color: #fff;
}
.catalog-navigate > a.selected:hover {
  text-decoration: none;
}
.catalog-navigate > a:hover {
  text-decoration: underline;
}

.catalog-content-wrapper {
  display: flex;
}
.catalog-content-wrapper > div {
  padding: 20px;
}
.catalog-content-wrapper .catalog-menu {
  width: 280px;
}
.catalog-content-wrapper .catalog-menu > div {
  margin-bottom: 20px;
}
.catalog-content-wrapper .catalog-menu strong {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.catalog-content-wrapper .catalog-content {
  flex: 1;
}

.ui.checkbox {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  cursor: pointer;
  transition: 0.3s;
}
.ui.checkbox::before {
  font-family: "icomoon" !important;
  content: "\e905";
  margin-right: 10px;
  border: 2px solid #1A222C;
  color: transparent;
}
.ui.checkbox:hover::before {
  color: #F7F7F7;
}
.ui.checkbox.selected::before {
  color: #000;
}

.catalog-content {
  display: flex;
  flex-wrap: wrap;
}
.catalog-content > div {
  margin: 10px;
}
.catalog-content.mini {
  margin: 0px auto;
  max-width: 1280px;
}
.catalog-content.mini .item {
  max-width: 406px;
}
.catalog-content.mini .item .item-photo {
  height: 406px;
}

.item {
  position: relative;
  width: 100%;
  max-width: 490px;
}
.item > a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.item .item-photo {
  display: flex;
  width: 100%;
  height: 720px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 6px;
  background-size: cover;
  justify-content: end;
}
.item .item-photo .in-wishlist {
  position: relative;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  color: #1A222C;
  font-size: 22px;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}
.item .item-photo .in-wishlist::before {
  font-family: "icomoon" !important;
  content: "\e907";
}
.item .item-photo .in-wishlist:hover {
  color: #F44447;
  background-color: #fff;
}
.item .item-name {
  margin-top: 10px;
}
.item > div {
  display: flex;
}
.item > div a {
  position: relative;
  z-index: 2;
  margin-right: 10px;
}

.item-price {
  display: flex;
  align-items: center;
  padding: 10px 0px;
}
.item-price > strong {
  font-size: 22px;
  font-weight: 500;
  margin-right: 10px;
}
.item-price > strong:after {
  content: "₽";
  font-size: 80%;
}
.item-price > span {
  color: #c4c4c4;
  position: relative;
}
.item-price > span:before {
  content: "";
  border-bottom: 1px solid #c4c4c4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
.item-price > span:after {
  content: "₽";
  font-size: 80%;
}

.in-cart-button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.in-cart-button::before {
  font-family: "icomoon" !important;
  content: "\e912";
  margin-right: 10px;
}
.in-cart-button::after {
  content: "В корзину";
}
.in-cart-button.ready {
  background-color: #8DB900;
  border-color: #8bb700;
}
.in-cart-button.ready::before {
  content: "\e905";
}
.in-cart-button.ready::after {
  content: "В корзине";
}

.product {
  padding: 20px;
  margin: 0px auto;
  max-width: 1280px;
  display: flex;
}
.product .product-text {
  padding-top: 20px;
  line-height: 1.6;
}
.product .in-wishlist {
  cursor: pointer;
  text-decoration: none;
  color: #1A222C;
  font-size: 22px;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.5);
}
.product .in-wishlist::before {
  font-family: "icomoon" !important;
  content: "\e907";
}
.product .in-wishlist:hover {
  color: #F44447;
  background-color: #fff;
}

.gallery {
  display: flex;
}
.gallery .gallery-mini {
  padding-right: 20px;
}
.gallery .gallery-mini > p {
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2px;
  margin-bottom: 10px;
  border: 3px solid #fff;
  transition: 0.3s;
  cursor: pointer;
}
.gallery .gallery-mini > p:hover {
  border-color: rgba(26, 34, 44, 0.2);
}
.gallery .gallery-preview {
  padding-top: 13px;
  width: 480px;
  height: 640px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

.product-about {
  padding: 20px;
}
.product-about h1 {
  font-size: 16px;
}/*# sourceMappingURL=catalog.css.map */