@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
* {
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  color: rgb(35, 49, 75);
}
*::-webkit-scrollbar {
  width: 9px;
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}
*::-webkit-scrollbar-thumb {
  background-color: rgb(35, 49, 75);
}

html, body {
  margin: 0;
  padding: 0;
  background: rgb(255, 255, 255);
  font-size: 15px;
  scroll-padding-top: 150px;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

h1, h2, h3, h4 {
  font-weight: 800;
}

.cta {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: none;
  padding: 0 25px;
  background: rgb(35, 49, 75);
  border-radius: 5px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.cta.loading {
  position: relative;
  color: rgb(35, 49, 75);
}
.cta.loading:after {
  content: "";
  width: 20px;
  height: 20px;
  border: calc(20px / 10) solid rgb(255, 255, 255);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cta.loading:after {
  position: absolute;
}

.input_block {
  width: 100%;
  margin: 0 0 30px;
}
.input_block label {
  width: 100%;
  position: relative;
}
.input_block .note {
  font-size: 15px;
  margin-top: 15px;
}
.input_block .text_label {
  display: block;
}
.input_block .text_label input, .input_block .text_label select {
  width: 100%;
  height: 35px;
  border: none;
  border-bottom: 1px solid rgb(35, 49, 75);
  background: rgb(255, 255, 255) !important;
  padding: 0;
  border-radius: 0;
}
.input_block .text_label input option, .input_block .text_label select option {
  padding: 0;
}
.input_block .text_label select {
  cursor: pointer;
}
.input_block .text_label input[required] + span:after {
  content: "*";
  color: rgb(197, 14, 14);
  margin-left: 3px;
}
.input_block .text_label input:not(:-moz-placeholder-shown) + span {
  top: -10px;
  font-size: 10px;
  color: rgba(35, 49, 75, 0.6);
}
.input_block .text_label input:not(:-ms-input-placeholder) + span {
  top: -10px;
  font-size: 10px;
  color: rgba(35, 49, 75, 0.6);
}
.input_block .text_label input:focus + span, .input_block .text_label input:not(:placeholder-shown) + span {
  top: -10px;
  font-size: 10px;
  color: rgba(35, 49, 75, 0.6);
}
.input_block .text_label input:focus:invalid {
  border-color: rgb(197, 14, 14);
}
.input_block .text_label span {
  display: block;
  position: absolute;
  top: 10%;
  left: 0;
  color: rgb(203, 203, 203);
  transition: 0.2s ease-in-out;
  cursor: text;
}
.input_block .text_label i {
  color: rgb(197, 14, 14);
  font-size: 12px;
  margin-top: 5px;
}
.input_block .checkbox_label {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.input_block .checkbox_label input {
  display: none;
}
.input_block .checkbox_label input:checked + .checkmark {
  background: rgb(35, 49, 75);
}
.input_block .checkbox_label span {
  font-size: 13px;
}
.input_block .checkbox_label span a {
  color: rgb(218, 69, 167);
  font-weight: 700;
}
.input_block .checkbox_label .checkmark {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgb(35, 49, 75);
  border-radius: 5px;
  margin-right: 10px;
  transition: 0.2s ease-in-out;
}
.input_block .checkbox_label .checkmark svg {
  width: 13px;
  height: 13px;
  fill: none;
}
.input_block .checkbox_label .chevron {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-top: calc(10px / 10) solid;
  border-right: calc(10px / 10) solid;
  border-color: rgb(35, 49, 75);
  transform: rotate(135deg);
  margin-left: auto;
  transition: 0.2s ease-in-out;
}
.input_block .checkbox_label:hover .checkmark {
  background: rgba(35, 49, 75, 0.1);
}
.input_block .textarea_label {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.input_block .textarea_label span {
  font-weight: 700;
  margin: 0 0 5px;
}
.input_block .textarea_label textarea {
  width: 100%;
  height: 120px;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 10px;
  padding: 15px;
  resize: none;
}
.input_block .textarea_label textarea::-moz-placeholder {
  color: rgb(203, 203, 203);
}
.input_block .textarea_label textarea:-ms-input-placeholder {
  color: rgb(203, 203, 203);
}
.input_block .textarea_label textarea::placeholder {
  color: rgb(203, 203, 203);
}
@media (min-width: 768px) {
  .input_block .text_label input, .input_block .text_label select {
    font-size: 16px;
  }
  .input_block .text_label input:not(:-moz-placeholder-shown) + span {
    top: -13px;
    font-size: 11px;
  }
  .input_block .text_label input:not(:-ms-input-placeholder) + span {
    top: -13px;
    font-size: 11px;
  }
  .input_block .text_label input:focus + span, .input_block .text_label input:not(:placeholder-shown) + span {
    top: -13px;
    font-size: 11px;
  }
  .input_block .checkbox_label span {
    font-size: 15px;
  }
  .input_block .textarea_label span {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .input_block .textarea_label textarea {
    font-size: 16px;
  }
}

.input_block.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
@media (min-width: 768px) {
  .input_block.split {
    grid-gap: 40px;
  }
}

.input_block.multiple {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.input_block.multiple label:not(:nth-last-child(1)) {
  margin: 0 0 25px;
}
@media (min-width: 768px) {
  .input_block.multiple {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
  .input_block.multiple label:not(:nth-last-child(1)) {
    margin: 0 15px 0 0;
  }
}

.input_block.select_input {
  position: relative;
  width: 100%;
}
.input_block.select_input .results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  background: rgb(255, 255, 255);
  overflow-y: auto;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 5px 10px -3px rgba(20, 20, 20, 0.1);
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  z-index: 3;
}
.input_block.select_input .results .result {
  padding: 8px 10px;
  border-bottom: 1px solid rgb(241, 241, 241);
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.input_block.select_input .results .result:hover {
  background: rgb(241, 241, 241);
}
.input_block.select_input .results p {
  padding: 10px;
  font-size: 13px;
}

#loader {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 9;
}
#loader:after {
  content: "";
  width: 50px;
  height: 50px;
  border: calc(50px / 10) solid rgb(35, 49, 75);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#notification {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -20%;
  left: 1%;
  width: 98%;
  line-height: 1.1;
  background: rgb(35, 49, 75);
  padding: 18px 30px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  color: rgb(255, 255, 255);
  -webkit-animation: notify 5s;
          animation: notify 5s;
  z-index: 100;
}
@-webkit-keyframes notify {
  0% {
    opacity: 0;
    bottom: -20%;
  }
  20% {
    opacity: 1;
    bottom: 10px;
  }
  70% {
    opacity: 1;
    bottom: 10px;
  }
  100% {
    opacity: 0;
    bottom: -20%;
  }
}
@keyframes notify {
  0% {
    opacity: 0;
    bottom: -20%;
  }
  20% {
    opacity: 1;
    bottom: 10px;
  }
  70% {
    opacity: 1;
    bottom: 10px;
  }
  100% {
    opacity: 0;
    bottom: -20%;
  }
}
@media (min-width: 768px) {
  #notification {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 50%;
  }
}

.modal_close {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.circle_logo img {
  width: 120px;
  height: 120px;
}
@-webkit-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .circle_logo img {
    width: 220px;
    height: 220px;
  }
}

.scroll_cta {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 75px;
  height: 75px;
  margin-top: auto;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
  color: rgb(255, 255, 255);
}
.scroll_cta:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-animation: slide 1.5s ease-in-out infinite;
          animation: slide 1.5s ease-in-out infinite;
}
@-webkit-keyframes slide {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  80% {
    width: 140%;
    height: 140%;
    opacity: 1;
  }
  100% {
    width: 140%;
    height: 140%;
    opacity: 0;
  }
}
@keyframes slide {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  80% {
    width: 140%;
    height: 140%;
    opacity: 1;
  }
  100% {
    width: 140%;
    height: 140%;
    opacity: 0;
  }
}

.layout {
  width: 100%;
  max-width: 1500px;
  padding-left: 3vw;
  padding-right: 3vw;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  z-index: 9;
  border-bottom: 1px solid rgb(241, 241, 241);
}
header .layout {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: -1;
}
header .menu_btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  flex-shrink: 0;
}
header .menu_btn span {
  display: block;
  width: 4px;
  height: 4px;
  background: rgb(35, 49, 75);
}
header .menu_btn.opened {
  grid-gap: 0;
  padding-left: 8px;
  padding-right: 8px;
}
header .menu_btn.opened span {
  width: 2px;
  height: 25px;
}
header .menu_btn.opened span:nth-child(1) {
  transform: rotate(-45deg);
  margin-right: -1px;
}
header .menu_btn.opened span:nth-child(2) {
  transform: rotate(45deg);
  margin-left: -1px;
}
header .menu_btn.opened span:nth-child(3), header .menu_btn.opened span:nth-child(4) {
  display: none;
}
header nav {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  margin-left: 65px;
  display: none;
}
header nav a {
  margin-right: 45px;
  transition: 0.2s ease-in-out;
}
header nav a:hover {
  color: rgb(218, 69, 167);
}
header .logo {
  display: flex;
}
header .logo img {
  width: auto;
  height: 21px;
}
header .left {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
}
header .left .lang {
  margin-right: 25px;
  display: none;
}
header .left .lang span {
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 10px;
  font-size: 14px;
  transition: 0.2s ease-in-out;
}
header .left .lang span:hover {
  opacity: 0.7;
  color: rgb(218, 69, 167);
}
header .left .lang span.active {
  color: rgb(218, 69, 167);
}
header .left .cabinet {
  display: none;
  cursor: pointer;
}
header .left .cabinet svg {
  width: 24px;
  height: 24px;
  fill: rgb(35, 49, 75);
  transition: 0.2s ease-in-out;
}
header .left .cabinet:hover svg {
  fill: rgb(218, 69, 167);
}
header .left .admin_btn {
  margin-right: 10px;
  font-size: 12px;
  border: 1px solid rgb(35, 49, 75);
  border-radius: 15px;
  padding: 3px 10px;
  transition: 0.2s ease-in-out;
}
header .left .admin_btn:hover {
  border-color: rgb(218, 69, 167);
  color: rgb(218, 69, 167);
}
header .left .cart_btn {
  display: flex;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
header .left .cart_btn:hover svg {
  fill: rgb(218, 69, 167);
}
header .left .cart_btn svg {
  width: 25px;
  height: 25px;
  fill: rgb(35, 49, 75);
  transition: 0.2s ease-in-out;
}
header .left .cart_btn #cart_amount {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -8px;
  top: -8px;
  width: 20px;
  height: 20px;
  font-size: 12px;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  background: rgb(35, 49, 75);
}
header #menu {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 100%;
  background: rgb(255, 255, 255);
  padding: 30px 20px 30px 3vw;
  border-radius: 0 0 15px 0;
  box-shadow: 0 10px 15px -5px rgba(20, 20, 20, 0.1);
  display: none;
}
header #menu h4, header #menu a, header #menu span {
  line-height: 1.2;
}
header #menu .cabinet {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 0 20px;
  border-bottom: 1px solid rgb(241, 241, 241);
  margin-bottom: 20px;
}
header #menu .cabinet svg {
  width: 20px;
  height: 20px;
  margin-right: 13px;
}
header #menu .cabinet p {
  font-size: 17px;
}
header #menu .links {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 25px;
}
header #menu .links h4 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 10px;
}
header #menu .links a {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 10px;
}
header #menu .lang_social {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
header #menu .lang_social .lang {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  height: 35px;
  border-radius: 4px;
  border: 1px solid rgb(35, 49, 75);
  margin: 0 25px 0 0;
}
header #menu .lang_social .lang span {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  height: 102%;
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 13px;
}
header #menu .lang_social .lang span:nth-child(1) {
  border-radius: 4px 0 0 4px;
}
header #menu .lang_social .lang span:nth-child(3) {
  border-radius: 0 4px 4px 0;
}
header #menu .lang_social .lang span.active {
  background: rgb(35, 49, 75);
  color: rgb(255, 255, 255);
}
header #menu .lang_social .social {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
header #menu .lang_social .social a {
  margin: 0 5px;
}
header #menu .lang_social .social a svg {
  width: 30px;
  height: 30px;
  fill: rgb(35, 49, 75);
}
header #cart {
  position: absolute;
  top: 100%;
  right: 0;
  max-width: 98%;
  background: rgb(255, 255, 255);
  padding: 0 3vw 20px 20px;
  border-radius: 0 0 0 15px;
  box-shadow: 0 10px 15px -5px rgba(20, 20, 20, 0.1);
  display: none;
}
header #cart .overlay {
  right: 0;
  left: auto;
}
header #cart .loader {
  display: none;
  z-index: 3;
}
header #cart.loading {
  min-width: 80%;
  min-height: 50vh;
}
header #cart.loading .loader {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 0 15px;
}
header #cart.loading .loader:after {
  content: "";
  width: 45px;
  height: 45px;
  border: calc(45px / 10) solid rgb(35, 49, 75);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  header {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
  }
  header .menu_btn, header #menu {
    display: none;
  }
  header nav {
    display: flex;
  }
  header .left {
    margin-left: auto;
  }
  header .left .lang, header .left .cabinet {
    display: flex;
  }
  header .left .admin_btn {
    margin: 0 0 0 15px;
    font-size: 14px;
    padding: 5px 10px;
  }
  header .left .cart_btn {
    margin-left: 25px;
  }
  header .left .cart_btn svg {
    width: 30px;
    height: 30px;
  }
  header #cart {
    max-width: 70%;
    padding: 0 3vw 30px 30px;
  }
  header #cart.loading {
    min-width: 30%;
    min-height: 50vh;
  }
  header #cart.loading .loader:after {
    content: "";
    width: 50px;
    height: 50px;
    border: calc(50px / 10) solid rgb(35, 49, 75);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
            animation: rotation 1s linear infinite;
  }
  @-webkit-keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
}
header #menu.visible, header #cart.visible {
  display: flex;
}

section {
  padding-top: 55px;
}

footer {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  padding: 25px 0 35px;
  background: rgb(35, 49, 75);
}
footer h4, footer a, footer p, footer span {
  color: rgb(255, 255, 255);
  text-align: center;
}
footer .top {
  display: flex;
  flex-flow: column-reverse;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
footer .top .social {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  display: none;
}
footer .top .social svg {
  width: 35px;
  height: 35px;
  margin: 0 0 20px;
  fill: rgb(255, 255, 255);
}
footer .top .categories {
  display: none;
}
footer .top .links h4 {
  font-size: 17px;
  margin: 0 0 10px;
}
footer .top .links p {
  font-size: 12px;
  font-weight: 100;
  width: 65%;
  text-align: center;
}
footer .top .links p b {
  color: rgb(255, 255, 255);
  font-weight: 500;
}
footer .top .links .row {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
footer .top .links .row a {
  font-size: 14px;
  margin: 0 10px;
  font-weight: 300;
}
footer .top .contacts_info {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
}
footer .top .contacts_info .line {
  width: 1px;
  height: 15px;
  background: rgb(255, 255, 255);
  margin: 5px 0;
}
footer .top .contacts_info .row {
  margin: 0 0 10px;
}
footer .top .contacts_info .row a {
  margin: 0;
}
footer .top .contacts_info .row span {
  margin: 0 10px;
}
footer .top hr {
  margin: 30px 0 25px;
  width: 90%;
  height: 1px;
  background: rgb(255, 255, 255);
}
footer .bottom {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 60px;
}
footer .bottom svg {
  width: 35px;
  height: 35px;
  margin: 0 5px;
}
footer .bottom p {
  font-size: 12px;
  margin: 5px 0 0;
}
footer .pd {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  max-width: 150px;
  padding: 13px 20px;
  margin: 30px auto 0;
}
footer .pd * {
  font-family: "Jura", sans-serif;
}
footer .pd:before, footer .pd:after {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  transition: 0.3s ease-in-out;
}
footer .pd:before {
  top: 0;
  left: 0;
  border-top: 1px solid #e00;
  border-left: 1px solid #e00;
}
footer .pd:after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #e00;
  border-right: 1px solid #e00;
}
footer .pd span {
  font-size: 10px;
  letter-spacing: 0.7px;
  margin-bottom: -1px;
  color: #eee;
}
footer .pd p {
  font-size: 18px;
  color: #eee;
}
footer .pd p i {
  color: #e00;
}
footer .pd:hover:before, footer .pd:hover:after {
  width: calc(100% - 1px);
  height: calc(100% - 1px);
}
@media (min-width: 768px) {
  footer {
    padding: 70px 0 25px;
  }
  footer .top {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0 5vw 0 10vw;
  }
  footer .top h4, footer .top p, footer .top a, footer .top span {
    text-align: left;
  }
  footer .top .social {
    display: flex;
    margin-right: 40px;
  }
  footer .top .links {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 40px;
  }
  footer .top .links h4 {
    font-size: 17px;
  }
  footer .top .links a {
    margin: 0 0 10px;
  }
  footer .top .links .row {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  footer .top .links .row a {
    margin: 0 0 10px;
  }
  footer .top hr {
    display: none;
  }
  footer .top .contacts_info {
    width: 45%;
    margin: 0;
  }
  footer .top .contacts_info .row {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
  }
  footer .top .contacts_info .row a {
    margin: 0;
  }
  footer .top .contacts_info p {
    width: 100%;
    margin: 0 0 10px;
    text-align: left;
  }
  footer .top .contacts_info .line {
    display: none;
  }
  footer .pd {
    position: absolute;
    bottom: 25px;
    right: 25px;
  }
}

.cart .cart_items {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-height: 55vh;
  padding: 15px 15px 0 0;
  overflow-y: auto;
}
.cart .cart_items::-webkit-scrollbar {
  width: 4px;
}
.cart .cart_items .cart_item {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid rgb(241, 241, 241);
}
.cart .cart_items .cart_item .cart_item_image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.cart .cart_items .cart_item .cart_item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart .cart_items .cart_item .cart_item_info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding-left: 10px;
}
.cart .cart_items .cart_item .cart_item_info .top {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.cart .cart_items .cart_item .cart_item_info .top .title_attrs {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-right: 30px;
}
.cart .cart_items .cart_item .cart_item_info .top .title_attrs .title {
  width: 100%;
  font-weight: 700;
  margin: 0;
  font-size: 17px;
}
.cart .cart_items .cart_item .cart_item_info .top .title_attrs .attr {
  font-size: 12px;
  opacity: 0.9;
}
.cart .cart_items .cart_item .cart_item_info .top .price {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: flex-start;
  flex-shrink: 0;
  margin-left: auto;
}
.cart .cart_items .cart_item .cart_item_info .top .price span {
  font-size: 12px;
  color: rgb(197, 14, 14);
  text-decoration: line-through;
}
.cart .cart_items .cart_item .cart_item_info .top .price p {
  font-weight: 700;
  font-size: 17px;
}
.cart .cart_items .cart_item .cart_item_info .bottom {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  /* Firefox */
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount .plus, .cart .cart_items .cart_item .cart_item_info .bottom .amount .minus {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 21px;
  font-weight: 100;
  background: rgb(241, 241, 241);
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount .minus {
  margin-right: 5px;
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount .plus {
  margin-left: 5px;
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount .disabled {
  color: rgb(203, 203, 203);
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount .counter {
  margin: 0 10px;
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount input {
  width: 35px;
  height: 24px;
  padding: 0 5px;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 5px;
  margin: 0;
  text-align: center;
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount input::-webkit-outer-spin-button, .cart .cart_items .cart_item .cart_item_info .bottom .amount input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart .cart_items .cart_item .cart_item_info .bottom .amount input[type=number] {
  -moz-appearance: textfield;
}
.cart .cart_items .cart_item .cart_item_info .bottom .remove {
  font-weight: 500;
  font-size: 12px;
  color: rgb(197, 14, 14);
  margin-left: 25px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .cart .cart_items {
    max-height: calc(100vh - 300px);
  }
  .cart .cart_items .cart_item .cart_item_image {
    width: 100px;
    height: 100px;
  }
  .cart .cart_items .cart_item .cart_item_info {
    padding-left: 20px;
  }
  .cart .cart_items .cart_item .cart_item_info .title_price {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .cart .cart_items .cart_item .cart_item_info .title_price .title {
    font-size: 17px;
  }
  .cart .cart_items .cart_item .cart_item_info .title_price .price {
    font-size: 17px;
  }
  .cart .cart_items .cart_item .cart_item_info .attr {
    font-size: 12px;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    /* Firefox */
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount .plus, .cart .cart_items .cart_item .cart_item_info .amount_remove .amount .minus {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 21px;
    font-weight: 100;
    background: rgb(241, 241, 241);
    border-radius: 5px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount .minus {
    margin-right: 5px;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount .plus {
    margin-left: 5px;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount .disabled {
    color: rgb(203, 203, 203);
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount .counter {
    margin: 0 10px;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount input {
    width: 35px;
    height: 24px;
    padding: 0 5px;
    border: 1px solid rgb(241, 241, 241);
    border-radius: 5px;
    margin: 0;
    text-align: center;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount input::-webkit-outer-spin-button, .cart .cart_items .cart_item .cart_item_info .amount_remove .amount input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .amount input[type=number] {
    -moz-appearance: textfield;
  }
  .cart .cart_items .cart_item .cart_item_info .amount_remove .remove {
    font-weight: 500;
    font-size: 12px;
    color: rgb(197, 14, 14);
    margin-left: 25px;
    cursor: pointer;
  }
}
.cart .free-delivery-scale {
  width: 100%;
}
.cart .free-delivery-scale .top {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 15px 0;
}
.cart .free-delivery-scale .top svg {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  fill: rgb(35, 49, 75);
}
.cart .free-delivery-scale .top p {
  font-weight: 500;
  margin: 0;
  max-width: 350px;
  font-size: 14px;
}
.cart .free-delivery-scale .scale {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 15px;
}
.cart .free-delivery-scale .scale p {
  font-size: 12px;
  margin: 0;
  font-weight: 600;
}
.cart .free-delivery-scale .scale .line {
  width: 100%;
  background: rgb(241, 241, 241);
}
.cart .free-delivery-scale .scale .line span {
  display: block;
  height: 15px;
  background: rgb(218, 69, 167);
  max-width: 100% !important;
}
.cart .totals {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgb(241, 241, 241);
}
.cart .totals .row {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 10px;
}
.cart .totals .row p {
  font-weight: 700;
}
.cart .cta {
  margin-top: 20px;
}
.cart .empty {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 100px 50px;
}
.cart .empty img {
  width: 60px;
  height: 60px;
  margin: 0 0 25px;
}
.cart .empty p {
  font-size: 15px;
}
@media (min-width: 768px) {
  .cart .empty img {
    width: 75px;
    height: 75px;
    margin: 0 0 15px;
  }
  .cart .empty p {
    font-size: 17px;
  }
}

.modal {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  display: none;
}
.modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.3);
  z-index: -1;
}

.modal#item_modal {
  display: flex;
  padding-top: 80px;
  padding-bottom: 50px;
  overflow-y: auto;
  scrollbar-width: none;
}
.modal#item_modal::-webkit-scrollbar {
  display: none;
}
.modal#item_modal form {
  padding: 25px 15px 50px;
  width: 96%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  background: url(/images/modal_bg.png?43aaa9fa1d72e6b6cd4f8220231ced1c);
  filter: drop-shadow(0 0 10px rgba(20, 20, 20, 0.1));
  background-size: 100% 100%;
  -webkit-animation: fade_in 0.3s ease-in-out;
          animation: fade_in 0.3s ease-in-out;
}
@-webkit-keyframes fade_in {
  from {
    opacity: 0;
  }
}
@keyframes fade_in {
  from {
    opacity: 0;
  }
}
.modal#item_modal form .images {
  position: relative;
  width: 100%;
  height: 230px;
  margin: 0 0 15px;
}
.modal#item_modal form .images .scroller {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.modal#item_modal form .images .scroller::-webkit-scrollbar {
  display: none;
}
.modal#item_modal form .images .scroller img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  scroll-snap-align: start;
}
.modal#item_modal form .images .arrows {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 10px;
}
.modal#item_modal form .images .arrows span {
  cursor: pointer;
}
.modal#item_modal form .images .arrows .left {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-top: calc(16px / 10) solid;
  border-right: calc(16px / 10) solid;
  border-color: rgb(35, 49, 75);
  transform: rotate(-135deg);
}
.modal#item_modal form .images .arrows .right {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-top: calc(16px / 10) solid;
  border-right: calc(16px / 10) solid;
  border-color: rgb(35, 49, 75);
  transform: rotate(45deg);
}
.modal#item_modal form .main_info {
  width: 100%;
  padding: 0 0 15px;
  border-bottom: 1px solid rgb(241, 241, 241);
}
.modal#item_modal form .main_info .title {
  width: 100%;
  font-weight: 700;
  font-size: 17px;
}
.modal#item_modal form .main_info .pcs {
  font-size: 11px;
  font-weight: 300;
  margin: 0 0 5px;
}
.modal#item_modal form .main_info .pcs b {
  font-weight: 500;
}
.modal#item_modal form .main_info .desc {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-between;
  height: 25px;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.modal#item_modal form .main_info .desc p {
  position: relative;
  width: 85%;
  white-space: pre-line;
  font-size: 15px;
}
.modal#item_modal form .main_info .desc p:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 25px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.modal#item_modal form .main_info .desc .chevron {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-top: calc(10px / 10) solid;
  border-right: calc(10px / 10) solid;
  border-color: rgb(35, 49, 75);
  transform: rotate(135deg);
  margin-right: 5px;
}
.modal#item_modal form .main_info .desc.fixed {
  height: auto;
  cursor: inherit;
}
.modal#item_modal form .main_info .desc.fixed p:after {
  display: none;
}
.modal#item_modal form .main_info .desc.fixed .chevron {
  display: none;
}
.modal#item_modal form .main_info .desc.opened {
  height: auto;
}
.modal#item_modal form .main_info .desc.opened p:after {
  display: none;
}
.modal#item_modal form .main_info .desc.opened .chevron {
  transform: rotate(-45deg);
  margin-top: 5px;
}
.modal#item_modal form .attributes_groups {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.modal#item_modal form .attributes_groups p {
  width: 100%;
  text-align: left;
  font-size: 12px;
  margin: 12px 0 5px;
}
.modal#item_modal form .attributes_groups .attributes_group {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 5px;
}
.modal#item_modal form .attributes_groups .attributes_group .attr {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-shrink: 0;
  padding: 10px;
  transition: 0.2s ease-in-out;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgb(35, 49, 75);
}
.modal#item_modal form .attributes_groups .attributes_group .attr:not(:nth-last-child(1)) {
  border-right: 1px solid rgb(35, 49, 75);
}
.modal#item_modal form .attributes_groups .attributes_group .attr:nth-child(1) {
  border-radius: 5px 0 0 5px;
}
.modal#item_modal form .attributes_groups .attributes_group .attr:nth-last-child(1) {
  border-radius: 0 5px 5px 0;
}
.modal#item_modal form .attributes_groups .attributes_group .attr:hover {
  background: rgba(35, 49, 75, 0.1);
}
@media (max-width: 335px) {
  .modal#item_modal form .attributes_groups .attributes_group .attr {
    font-size: 13px;
  }
}
.modal#item_modal form .attributes_groups .attributes_group .attr.disabled {
  border-color: rgb(203, 203, 203);
  color: rgb(203, 203, 203);
}
.modal#item_modal form .attributes_groups .attributes_group .attr.active {
  background: rgb(35, 49, 75);
  color: rgb(255, 255, 255);
}
.modal#item_modal form .amount_price {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid rgb(241, 241, 241);
  border-top: 1px solid rgb(241, 241, 241);
}
.modal#item_modal form .amount_price .amount {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  /* Firefox */
}
.modal#item_modal form .amount_price .amount .plus, .modal#item_modal form .amount_price .amount .minus {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 25px;
  font-weight: 100;
  background: rgb(241, 241, 241);
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.modal#item_modal form .amount_price .amount .disabled {
  color: rgb(203, 203, 203);
  cursor: not-allowed;
}
.modal#item_modal form .amount_price .amount input {
  width: 40px;
  height: 30px;
  padding: 0 5px;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 5px;
  margin: 0 10px;
  text-align: center;
}
.modal#item_modal form .amount_price .amount input::-webkit-outer-spin-button, .modal#item_modal form .amount_price .amount input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.modal#item_modal form .amount_price .amount input[type=number] {
  -moz-appearance: textfield;
}
.modal#item_modal form .amount_price .in_cart {
  margin-left: 15px;
  font-size: 14px;
}
.modal#item_modal form .amount_price .price {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.modal#item_modal form .amount_price .price .full_price {
  color: rgb(197, 14, 14);
  text-decoration: line-through;
  font-size: 14px;
}
.modal#item_modal form .amount_price .price p {
  font-size: 19px;
  font-weight: 700;
  margin-left: 10px;
  margin-bottom: 1px;
}
.modal#item_modal form .amount_price .price .not_in_stock {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: center;
}
.modal#item_modal form .amount_price .price .not_in_stock p {
  font-size: 17px;
  color: rgb(197, 14, 14);
}
.modal#item_modal form .amount_price .price .not_in_stock .notify {
  text-decoration: underline;
  font-size: 12px;
  color: rgb(35, 49, 75);
  cursor: pointer;
}
.modal#item_modal form .discounts {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border: 1px solid rgb(35, 49, 75);
  padding: 10px;
  margin: 15px 0 0;
  border-radius: 5px;
}
.modal#item_modal form .discounts .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 5px;
  overflow: hidden;
}
.modal#item_modal form .discounts .row:not(:nth-last-child(1)) {
  margin: 0 0 10px;
}
.modal#item_modal form .discounts .row > div {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-weight: 500;
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}
.modal#item_modal form .discounts .row .count {
  font-size: 12px;
}
.modal#item_modal form .discounts .row .price {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgb(241, 241, 241);
  border-right: 1px solid rgb(241, 241, 241);
}
.modal#item_modal form .discounts .row .price p {
  color: rgb(197, 14, 14);
  margin: 0;
}
.modal#item_modal form .discounts .row .price span {
  color: rgb(197, 14, 14);
  font-size: 11px;
}
.modal#item_modal form .discounts .row .choose {
  background: rgb(241, 241, 241);
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.modal#item_modal form .discounts .row .choose:hover {
  background: rgba(35, 49, 75, 0.3);
}
.modal#item_modal form .discounts .row .choose span:nth-child(2) {
  display: none;
}
.modal#item_modal form .discounts .row.active p {
  background: rgb(35, 49, 75);
  color: rgb(255, 255, 255);
}
.modal#item_modal form .discounts .row.active .choose:hover {
  background: rgb(35, 49, 75);
}
.modal#item_modal form .discounts .row.active .choose span:nth-child(1) {
  display: none;
}
.modal#item_modal form .discounts .row.active .choose span:nth-child(2) {
  color: rgb(255, 255, 255);
  display: block;
}
.modal#item_modal form .actions {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 40px;
}
.modal#item_modal form .actions #add_to_cart {
  width: 100%;
}
.modal#item_modal form .actions #add_to_cart.disabled {
  background: rgb(203, 203, 203);
  cursor: not-allowed;
}
.modal#item_modal form .actions .modal_close {
  padding-top: 25px;
  font-weight: 500;
}
.modal#item_modal #stock_notify_modal, .modal#item_modal #stock_notify_success {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 35%;
  display: none;
  padding: 50px;
  background: rgb(255, 255, 255);
  border-radius: 15px;
  margin-top: 10vw;
  box-shadow: 0 10px 15px -5px rgba(20, 20, 20, 0.3);
}
.modal#item_modal #stock_notify_modal h3, .modal#item_modal #stock_notify_success h3 {
  font-size: 21px;
  font-weight: 900;
  margin: 0 0 10px;
  text-align: center;
}
.modal#item_modal #stock_notify_modal p, .modal#item_modal #stock_notify_success p {
  font-size: 16px;
}
.modal#item_modal #stock_notify_modal .input_block, .modal#item_modal #stock_notify_success .input_block {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.modal#item_modal #stock_notify_modal .input_block span, .modal#item_modal #stock_notify_success .input_block span {
  font-size: 14px;
  white-space: nowrap;
  margin: 25px 0 15px;
  opacity: 0.8;
}
.modal#item_modal #stock_notify_modal .cta, .modal#item_modal #stock_notify_success .cta {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .modal#item_modal {
    padding-top: 70px;
  }
  .modal#item_modal form {
    width: 40%;
    padding: 25px 25px 50px;
  }
  .modal#item_modal form .images .arrows {
    padding: 0 20px;
  }
  .modal#item_modal form .discounts .row .count {
    font-size: 15px;
  }
  .modal#item_modal form .discounts .row .price {
    font-size: 15px;
  }
}

.modal.auth_modal {
  align-items: center;
}
.modal.auth_modal form {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  background: rgb(255, 255, 255);
  width: 94%;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 15px -5px rgba(20, 20, 20, 0.15);
}
.modal.auth_modal form h3 {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 40px;
}
.modal.auth_modal form .cta {
  width: 100%;
}
.modal.auth_modal form .links {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
}
.modal.auth_modal form .links a {
  cursor: pointer;
  transition: 0.2s ease-out;
}
.modal.auth_modal form .links a:hover {
  color: rgb(218, 69, 167);
}
.modal.auth_modal .confirmation {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  background: rgb(255, 255, 255);
  width: 94%;
  padding: 35px;
  border-radius: 15px;
}
.modal.auth_modal .confirmation h3, .modal.auth_modal .confirmation p {
  text-align: center;
}
.modal.auth_modal .confirmation h3 {
  margin: 0 0 10px;
}
.modal.auth_modal .confirmation .cta {
  width: 100%;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .modal.auth_modal form {
    width: 35%;
  }
  .modal.auth_modal .confirmation {
    width: 35%;
  }
}

.modal.attention_modal {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  z-index: 11;
}
.modal.attention_modal .dialog {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  width: 94%;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 15px -5px rgba(20, 20, 20, 0.15);
  margin: 0 auto;
}
.modal.attention_modal .dialog h3 {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 5px;
  color: rgb(218, 69, 167);
}
.modal.attention_modal .dialog p {
  text-align: center;
}
.modal.attention_modal .dialog .cta {
  width: 100%;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .modal.attention_modal .dialog {
    width: 50%;
  }
}

#error {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 150px;
  padding-bottom: 150px;
}
#error h1 {
  font-weight: 900;
  font-size: 25px;
  margin: 0 0 5px;
  text-align: center;
  font-family: "Raleway", sans-serif;
}
#error img {
  max-width: 90%;
  max-height: 40vh;
  font-family: "Raleway", sans-serif;
}
#error .cta {
  margin-top: 100px;
}

#home {
  width: 100%;
  overflow: hidden;
}
#home .offer {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
  z-index: 1;
}
#home .offer h1, #home .offer p {
  color: rgb(35, 49, 75);
  text-align: center;
  width: 90%;
  font-family: "Raleway", sans-serif;
  opacity: 0;
  -webkit-animation: fade_in 1.5s ease-out forwards;
          animation: fade_in 1.5s ease-out forwards;
}
@keyframes fade_in {
  to {
    opacity: 1;
  }
}
#home .offer h1 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 5px;
}
#home .offer h1 i {
  font-weight: 500;
  color: rgb(35, 49, 75);
}
#home .offer p {
  font-weight: 300;
  font-size: 14px;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
#home .offer p i {
  font-weight: 600;
  color: rgb(35, 49, 75);
}
@media (min-width: 768px) {
  #home .offer {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  #home .offer h1, #home .offer p {
    width: 55%;
  }
  #home .offer h1 {
    font-size: 35px;
  }
  #home .offer p {
    font-size: 20px;
  }
}
#home .gallery {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 94vw;
  aspect-ratio: 1;
  overflow: hidden;
}
#home .gallery img {
  position: absolute;
  top: 0;
  left: 3vw;
  width: calc(100% - 6vw);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  z-index: 1;
}
#home .gallery img.active {
  opacity: 1;
}
#home .gallery .bullets {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  right: calc(3vw + 15px);
}
#home .gallery .bullets span {
  display: block;
  width: 7px;
  height: 7px;
  box-shadow: 0 2px 3px rgba(20, 20, 20, 0.1);
  background: rgb(255, 255, 255);
  border-radius: 50%;
  margin-bottom: 7px;
  z-index: 2;
  opacity: 0.4;
  transition: opacity 0.7s ease-in-out;
}
#home .gallery .bullets span.active {
  opacity: 1;
}
@media (min-width: 768px) {
  #home .gallery {
    display: none;
  }
}
#home .gallery-desktop {
  aspect-ratio: auto;
  min-height: 500px;
  max-height: 500px;
  display: none;
}
#home .gallery-desktop img {
  border-radius: 15px;
}
#home .gallery-desktop .bullets {
  position: absolute;
  bottom: 15px;
  right: calc(3vw + 25px);
}
#home .gallery-desktop .bullets span {
  display: block;
  width: 10px;
  height: 10px;
  box-shadow: 0 2px 3px rgba(20, 20, 20, 0.1);
  background: rgb(255, 255, 255);
  border-radius: 50%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #home .gallery-desktop {
    display: flex;
  }
}
#home .categories {
  display: grid;
  grid-template: 1fr/1fr 1fr;
  grid-gap: 15px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 50px;
}
#home .categories .category {
  position: relative;
  width: 100%;
}
#home .categories .category img {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .categories .category .desktop_image {
  display: none;
}
#home .categories .category p {
  width: 100%;
  text-align: center;
  margin-top: 5px;
  font-weight: 600;
}
@media (min-width: 768px) {
  #home .categories .category:after {
    content: attr(data-title);
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: rgba(20, 20, 20, 0.25);
    font-size: 30px;
    font-weight: 900;
    border-radius: 15px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  #home .categories .category:hover:after {
    opacity: 1;
  }
  #home .categories .category img {
    position: relative;
    border-radius: 15px;
    height: 500px;
  }
  #home .categories .category .desktop_image {
    display: block;
  }
  #home .categories .category .mobile_image {
    display: none;
  }
  #home .categories .category p {
    font-size: 17px;
  }
}
#home .about {
  position: relative;
  background: #F5F9FF;
  padding-top: 50px;
  padding-bottom: 50px;
}
#home .about .circle_logo {
  position: absolute;
  top: -40px;
  right: -50px;
}
#home .about .layout {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
}
#home .about .layout .block {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  width: 80%;
}
#home .about .layout .block:not(:last-child) {
  margin: 0 0 40px;
}
#home .about .layout .block svg {
  width: 40px;
  height: 40px;
}
#home .about .layout .block h3 {
  text-transform: uppercase;
  font-size: 17px;
  margin: 10px 0 5px;
}
#home .about .layout .block p {
  text-align: center;
}
@media (min-width: 768px) {
  #home .about {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  #home .about .circle_logo {
    top: -70px;
    right: -80px;
  }
  #home .about .layout {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
  }
  #home .about .layout .block {
    width: 28%;
  }
  #home .about .layout .block:not(:last-child) {
    margin: 0 60px 0 0;
  }
  #home .about .layout .block h3 {
    font-size: 20px;
  }
  #home .about .layout .block p {
    font-size: 17px;
  }
}
#home .advantages {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 100px;
}
#home .advantages .circle_logo {
  display: none;
}
#home .advantages .advantage {
  display: flex;
  position: relative;
  width: 100%;
}
#home .advantages .advantage img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .advantages .advantage .text {
  position: absolute;
  bottom: -35px;
  left: 3%;
  width: 94%;
  padding: 40px 25px;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 0 15px 1px rgba(20, 20, 20, 0.1);
}
#home .advantages .advantage .text .icon {
  position: absolute;
  top: -25px;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  padding: 5px;
}
#home .advantages .advantage .text .icon svg {
  width: 100%;
  height: 100%;
  fill: rgb(218, 69, 167);
}
#home .advantages .advantage .text h3 {
  text-transform: uppercase;
  color: rgb(218, 69, 167);
  margin: 0 0 5px;
  text-align: center;
  font-size: 15px;
}
#home .advantages .advantage .text p {
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 768px) {
  #home .advantages {
    padding-bottom: 50px;
  }
  #home .advantages .circle_logo {
    position: absolute;
    top: 55%;
    left: -60px;
    display: flex;
  }
  #home .advantages .advantage {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
  }
  #home .advantages .advantage img {
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #home .advantages .advantage .text {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    left: 0;
    top: 0;
    width: 50%;
    padding: 0 8%;
    background: rgb(255, 255, 255);
    border-radius: 0;
    box-shadow: none;
  }
  #home .advantages .advantage .text .icon {
    display: none;
  }
  #home .advantages .advantage .text h3 {
    font-size: 25px;
    color: rgb(35, 49, 75);
    text-align: left;
  }
  #home .advantages .advantage .text p {
    font-size: 20px;
    text-align: left;
  }
  #home .advantages .advantage:nth-child(1) img {
    border-radius: 0 0 10px 0;
  }
  #home .advantages .advantage:nth-child(2) {
    flex-flow: row-reverse;
  }
  #home .advantages .advantage:nth-child(2) .text {
    align-items: flex-end;
  }
  #home .advantages .advantage:nth-child(2) .text h2 {
    text-align: right;
  }
  #home .advantages .advantage:nth-child(2) .text p {
    text-align: right;
  }
  #home .advantages .advantage:nth-child(2) img {
    border-radius: 10px 0 0 10px;
  }
  #home .advantages .advantage:nth-child(3) img {
    border-radius: 0 10px 10px 0;
  }
}

#order form {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 100px;
}
#order form h2 {
  margin: 0 0 20px;
  font-size: 17px;
  text-align: center;
  width: 100%;
}
#order form .left, #order form .right {
  width: 100%;
}
#order form .block {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 20px;
}
#order form .delivery .delivery_type_fields {
  width: 100%;
}
#order form .delivery .delivery_type_fields a {
  color: rgb(218, 69, 167);
}
#order form .delivery .another_recipient {
  width: 100%;
  display: none;
  padding-top: 10px;
}
#order form #cart {
  position: relative;
  margin: 0 0 50px;
}
#order form #cart .free_delivery {
  padding: 10px;
  border: 2px solid rgb(218, 69, 167);
  color: rgb(218, 69, 167);
  border-radius: 5px;
  font-weight: 500;
  margin: 0 0 20px;
}
#order form #cart .free_delivery b {
  color: rgb(218, 69, 167);
  font-weight: 900;
}
#order form #cart .cart {
  width: 100%;
}
#order form #cart .cart .cart_items {
  max-height: 1000vh;
  padding: 0;
  overflow-y: visible;
}
#order form #cart .cart .cta {
  display: none;
}
#order form #cart .cart .totals .row {
  font-size: 12px;
  color: rgb(203, 203, 203);
}
#order form #cart .cart .totals .main_row {
  font-size: 17px;
}
#order form #cart .loader {
  display: none;
}
#order form #promocode {
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  color: rgb(203, 203, 203);
  transition: 0.2s ease-in-out;
  margin: 0 0 40px;
}
#order form #promocode .input_block {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 0;
}
#order form #promocode .input_block button {
  height: 40px;
  background: rgb(35, 49, 75);
  border-radius: 10px;
  padding: 0 30px;
  color: rgb(255, 255, 255);
  margin-left: 15px;
  cursor: pointer;
  border: none;
}
#order form #promocode .heading {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
#order form #cart.loading .loader {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 0 15px;
}
#order form #cart.loading .loader:after {
  content: "";
  width: 45px;
  height: 45px;
  border: calc(45px / 10) solid rgb(35, 49, 75);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#order form .payment .payment_type {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 30px;
}
#order form .payment .payment_type .checkbox_label span {
  font-weight: 900;
  font-size: 15px;
}
#order form .payment .payment_type .details {
  max-height: 0;
  margin-top: 10px;
  line-height: 1.2;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
#order form .payment .payment_type .details b {
  font-weight: 700;
}
#order form .payment .payment_type.selected .checkbox_label .chevron {
  transform: rotate(-45deg);
}
#order form .payment .payment_type.selected .details {
  max-height: 400px;
  visibility: visible;
  opacity: 1;
}
#order form .cta_agree {
  margin-top: 20px;
}
#order form .cta_agree .warning {
  width: 100%;
  margin: 0 0 15px;
}
#order form .cta_agree .warning b {
  color: rgb(197, 14, 14);
}
#order form .cta_agree .cta {
  width: 100%;
}
#order form .cta_agree .agree {
  margin-top: 20px;
}
#order form .cta_agree .agree .input_block {
  margin: 0 0 15px;
}
#order form .cta_agree .agree .input_block .checkbox_label span {
  font-size: 13px;
}
#order form .cta_agree .agree p {
  font-size: 13px;
}
#order form .cta_agree .agree p a {
  color: rgb(218, 69, 167);
  font-weight: 700;
  transition: 0.1s ease-in-out;
}
#order form .cta_agree .agree p a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  #order form {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0 100px;
    padding-top: 50px;
  }
  #order form:after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 1px;
    height: 90%;
    background: rgb(241, 241, 241);
  }
  #order form h2 {
    font-size: 20px;
    margin: 0 0 30px;
  }
  #order form .left, #order form .right {
    width: 50%;
  }
  #order form .block {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 20px;
    flex-shrink: 0;
  }
  #order form #cart {
    flex-basis: 100%;
  }
  #order form #cart .free_delivery {
    padding: 12px;
  }
  #order form #cart .cart_items .cart_item .cart_item_info .title {
    font-size: 17px;
  }
  #order form #cart .cart_items .cart_item .cart_item_info .price {
    font-size: 17px;
  }
  #order form #cart .cart_items .cart_item .cart_item_info .attr {
    font-size: 15px;
  }
  #order form #cart .totals .row p {
    font-size: 15px;
    font-weight: 500;
  }
  #order form #cart .totals .main_row p {
    font-weight: 700;
    font-size: 20px;
  }
  #order form .payment .payment_type.selected .checkbox_label .chevron {
    transform: rotate(-45deg);
  }
  #order form .payment .payment_type.selected .details {
    max-height: 300px;
    visibility: visible;
    opacity: 1;
  }
}
#order #success {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-top: 100px;
  margin-bottom: 150px;
}
#order #success img {
  max-width: 75%;
  max-height: 35vh;
}
#order #success h1 {
  font-size: 25px;
  font-weight: 900;
  margin: 35px 0 5px;
  text-align: center;
}
#order #success p {
  text-align: center;
  width: 70%;
  font-weight: 500;
}
#order #success span {
  font-size: 13px;
  margin: 15px 0 0;
  text-align: center;
}
#order #success .cta {
  margin-top: 60px;
  width: 100%;
}
#order #success .details {
  margin-top: 25px;
}
#order #success .details b {
  margin: 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  #order #success .cta {
    max-width: 40%;
  }
}

#auth {
  padding-top: 90px;
}
#auth form {
  padding-bottom: 100px;
}
#auth form h1 {
  margin: 0 0 25px;
  font-size: 17px;
  text-align: center;
}
#auth form h2 {
  margin: 45px 0 10px;
  text-align: center;
  font-size: 17px;
}
#auth form .cta {
  width: 100%;
}
@media (min-width: 768px) {
  #auth {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
  }
  #auth form {
    width: 50%;
  }
  #auth .password_form {
    width: 35%;
  }
}

#cabinet {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 100px;
}
#cabinet h1 {
  width: 100%;
  text-align: center;
  margin: 0 0 30px;
  font-size: 17px;
}
#cabinet main {
  width: 100%;
}
#cabinet main .column {
  width: 100%;
}
#cabinet main .column .block {
  width: 100%;
  border-top: 1px solid rgb(241, 241, 241);
  border-bottom: 1px solid rgb(241, 241, 241);
  padding-top: 20px;
  padding-bottom: 20px;
}
#cabinet main .column .block .block_title {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#cabinet main .column .block .block_title p {
  font-weight: 900;
}
#cabinet main .column .block .block_title .chevron {
  display: inline-flex;
  width: 12px;
  height: 12px;
  border-top: calc(12px / 10) solid;
  border-right: calc(12px / 10) solid;
  border-color: rgb(35, 49, 75);
  transform: rotate(135deg);
  margin-top: -5px;
  transition: 0.2s ease-in-out;
}
#cabinet main .column .block .block_content {
  width: 100%;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
#cabinet main .column .block .block_content form {
  width: 100%;
}
#cabinet main .column .block .block_content form .cta {
  width: 100%;
}
#cabinet main .column .block .block_content .orders {
  width: 100%;
}
#cabinet main .column .block .block_content .orders .order {
  width: 100%;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(241, 241, 241);
}
#cabinet main .column .block .block_content .orders .order .top {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  cursor: pointer;
}
#cabinet main .column .block .block_content .orders .order .top p {
  font-size: 13px;
}
#cabinet main .column .block .block_content .orders .order .top .left {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
#cabinet main .column .block .block_content .orders .order .top .left .title {
  font-weight: 700;
}
#cabinet main .column .block .block_content .orders .order .top .left .date {
  font-weight: 100;
  font-size: 11px;
}
#cabinet main .column .block .block_content .orders .order .top .right {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: flex-start;
}
#cabinet main .column .block .block_content .orders .order .top .right .status {
  font-weight: 700;
  color: rgb(21, 138, 19);
  white-space: nowrap;
}
#cabinet main .column .block .block_content .orders .order .top .right .show {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  font-size: 11px;
  margin-top: 5px;
}
#cabinet main .column .block .block_content .orders .order .top .right .show .chevron {
  display: inline-flex;
  width: 5px;
  height: 5px;
  border-top: calc(5px / 10) solid;
  border-right: calc(5px / 10) solid;
  border-color: rgb(35, 49, 75);
  transform: rotate(135deg);
  margin-left: 5px;
  transition: 0.2s ease-in-out;
}
#cabinet main .column .block .block_content .orders .order .items {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
#cabinet main .column .block .block_content .orders .order .items .item {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 15px 0;
}
#cabinet main .column .block .block_content .orders .order .items .item:not(:last-child) {
  border-bottom: 1px solid rgb(241, 241, 241);
}
#cabinet main .column .block .block_content .orders .order .items .item .item_image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding-left: 10px;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_info .title_price {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_info .title_price p {
  font-weight: 700;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_info .title_price .title {
  width: 100%;
  padding-right: 30px;
  line-height: 1.1;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_info .title_price .price {
  flex-shrink: 0;
  margin-left: auto;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_info .attr {
  font-size: 12px;
}
#cabinet main .column .block .block_content .orders .order .items .item .item_info .amount {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
}
#cabinet main .column .block .block_content .orders .order .items .total {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0 0;
}
#cabinet main .column .block .block_content .orders .order .items .total p {
  font-weight: 700;
}
#cabinet main .column .block .block_content .orders .order .items .cta {
  margin: 20px 0 0;
  width: 100%;
}
#cabinet main .column .block .block_content .orders .order.opened {
  border-bottom: none;
}
#cabinet main .column .block .block_content .orders .order.opened .top .right .show .chevron {
  transform: rotate(-45deg);
  margin-top: 3px;
}
#cabinet main .column .block .block_content .orders .order.opened .items {
  max-height: none;
  padding-top: 15px;
  visibility: visible;
  opacity: 1;
}
#cabinet main .column .block .block_content .empty {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
#cabinet main .column .block .block_content .empty img {
  width: 60px;
  height: 60px;
  margin: 0 0 15px;
}
#cabinet main .column .block.opened .block_title .chevron {
  transform: rotate(-45deg);
  margin-top: 0;
}
#cabinet main .column .block.opened .block_content {
  display: flex;
  max-height: none;
  visibility: visible;
  padding-top: 40px;
  opacity: 1;
}
#cabinet .logout {
  display: flex;
  width: 100%;
}
#cabinet .logout a {
  padding: 20px 0;
  margin: 0 auto;
  color: rgb(218, 69, 167);
}
@media (min-width: 768px) {
  #cabinet h1 {
    font-size: 20px;
  }
  #cabinet main {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #cabinet main .column .block {
    padding-top: 30px;
    border-top: none;
  }
  #cabinet main .column .block .block_title p {
    font-size: 20px;
  }
  #cabinet main .column .block .block_title .chevron {
    display: none;
  }
  #cabinet main .column .block .block_content {
    display: flex;
    max-height: none;
    visibility: visible;
    opacity: 1;
    padding-top: 40px;
  }
  #cabinet main .column .block .block_content .orders .order .top p {
    font-size: 15px;
  }
  #cabinet main .column .block .block_content .orders .order .top .left .date {
    font-size: 13px;
  }
  #cabinet main .column .block .block_content .orders .order .top .right .show {
    font-size: 13px;
  }
  #cabinet main .column .block .block_content .orders .order .top .right .show .chevron {
    width: 7px;
    height: 7px;
  }
  #cabinet main .column .block .block_content .empty {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
  }
  #cabinet main .column .block .block_content .empty img {
    width: 75px;
    height: 75px;
  }
  #cabinet main .column:nth-child(1) {
    border-right: 1px solid rgb(241, 241, 241);
  }
  #cabinet .logout a {
    font-size: 20px;
    padding: 40px 0;
  }
}

#category {
  padding-bottom: 50px;
}
#category .heading {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 350px;
  z-index: 1;
  overflow: hidden;
  /* @keyframes heading_slide{
      from{
          background-size: 120%;
      }
  }*/
}
#category .heading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.3);
  z-index: -1;
}
#category .heading .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-animation: heading_slide 1.5s ease-out;
          animation: heading_slide 1.5s ease-out;
}
@-webkit-keyframes heading_slide {
  from {
    width: 130%;
    height: 130%;
  }
}
@keyframes heading_slide {
  from {
    width: 130%;
    height: 130%;
  }
}
#category .heading .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#category .heading h1 {
  margin: 0;
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
#category .heading .circle_logo {
  position: absolute;
  bottom: 0;
  right: -50px;
}
#category .heading .circle_logo img {
  width: 100px;
  height: 100px;
}
@media (min-width: 768px) {
  #category .heading h1 {
    font-size: 35px;
  }
  #category .heading .circle_logo {
    right: -75px;
  }
  #category .heading .circle_logo img {
    width: 150px;
    height: 150px;
  }
}
#category .items {
  position: relative;
  width: 100%;
  margin-top: 25px;
  padding-bottom: 50px;
}
#category .items .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 10px;
  margin: 0 0 10px;
  cursor: pointer;
}
#category .items .item .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgb(218, 69, 167);
  font-weight: 500;
  color: rgb(255, 255, 255);
  box-shadow: 0 5px 10px -3px rgba(218, 69, 167, 0.1);
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 14px;
}
#category .items .item .image {
  width: 100%;
  height: 150px;
  margin: 0 0 10px;
}
#category .items .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#category .items .item .info {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#category .items .item .info p {
  color: rgb(35, 49, 75);
  font-weight: 700;
}
#category .items .item .info .price {
  text-align: right;
}
#category .items .item .btn {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: rgb(35, 49, 75);
  border-radius: 50%;
  z-index: 1;
}
#category .items .item .btn svg {
  width: 17px;
  height: 17px;
  fill: rgb(255, 255, 255);
}
#category .items .item .stock_overlay {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 165px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-bottom: 1px solid rgb(241, 241, 241);
  border-radius: 10px;
  color: rgb(35, 49, 75);
  font-size: 17px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  z-index: 2;
}
#category .items .circle_logo {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -100px;
  left: -30px;
}
#category .items .circle_logo svg {
  width: 100px;
  height: 100px;
  fill: rgb(218, 69, 167);
}
@media (min-width: 768px) {
  #category .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
  #category .items .item {
    border-radius: 15px;
    transition: 0.2s ease-out;
  }
  #category .items .item:not(.inactive):hover {
    border-color: rgba(35, 49, 75, 0.5);
  }
  #category .items .item:not(.inactive):hover .info p {
    color: rgb(218, 69, 167);
  }
  #category .items .item .info p {
    font-size: 17px;
    transition: 0.2s ease-out;
  }
  #category .items .item .btn {
    width: 45px;
    height: 45px;
  }
  #category .items .item .btn svg {
    width: 20px;
    height: 20px;
  }
  #category .items .item .stock_overlay {
    border-radius: 15px;
    font-size: 20px;
  }
  #category .items .circle_logo {
    width: 150px;
    height: 150px;
    bottom: -125px;
    left: -50px;
  }
  #category .items .circle_logo svg {
    width: 150px;
    height: 150px;
  }
}

#page {
  padding-top: 85px;
  padding-bottom: 100px;
  overflow: hidden;
}
#page h1 {
  width: 100%;
  text-align: center;
  font-size: 17px;
  margin: 0;
}
#page .logo_line {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 40px 0;
  position: relative;
}
#page .logo_line .line {
  display: flex;
  width: calc(100% - 80px);
  height: 1px;
  background: rgb(218, 69, 167);
}
#page .logo_line .circle_logo {
  position: absolute;
  top: calc(50% - 50px);
  right: -40px;
}
#page .logo_line .circle_logo img {
  width: 100px;
  height: 100px;
}
#page .text p {
  margin: 15px 0;
}
#page .text hr {
  border: none;
  background: rgb(218, 69, 167);
  height: 1px;
  margin: 25px 0;
}
@media (min-width: 768px) {
  #page .text {
    margin: 0 auto;
    max-width: 750px;
    font-size: 17px;
  }
}
