/**
 * * ----------------------------------------
 * * animation tracking-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes tracking-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation tracking-out-expand-fwd
 * * ----------------------------------------
 * */
@keyframes tracking-out-expand-fwd {
  0% {
    transform: translateZ(0);
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    letter-spacing: 1em;
    transform: translateZ(300px);
    opacity: 0;
  }
}
/**
 * * ----------------------------------------
 * * animation move-up
 * * ----------------------------------------
 * */
@keyframes move-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation move-down
 * * ----------------------------------------
 * */
@keyframes move-down {
  0% {
    transform: translateY(-20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-expand
 * * ----------------------------------------
 * */
@keyframes focus-in-expand {
  0% {
    visibility: visible;
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes focus-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(300px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    visibility: visible;
    transform: translateZ(0);
    filter: blur(0);
    opacity: 1;
  }
}
/**
 * * ----------------------------------------
 * * animation text-focus-in
 * * ----------------------------------------
 * */
@keyframes text-focus-in {
  0% {
    visibility: visible;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
.text-anim-in {
  animation: focus-in-expand 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.title {
  font-weight: 100;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: white;
  line-height: 100%;
  font-family: Din Pro;
}

.sub-title {
  font-weight: 100;
  font-size: 1.5rem;
  color: white;
  margin: 0;
  line-height: 1.2;
}

#main-app {
  min-height: 100vh;
}

.btn-wrap {
  display: table;
}

.btn-primary {
  display: table;
  padding: 0.3rem 1rem;
  background-color: #671c90;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: background-color 0.22s cubic-bezier(0, 0, 0.2, 1);
}
.btn-primary:hover {
  background-color: #7f24b4;
}

.btn-secondary {
  display: table;
  padding: 3px 5px;
  background-color: #f5d000;
  border-radius: 5px;
  color: #000000;
  cursor: pointer;
}

.link-white {
  color: #FFFFFF;
}

.logo-deep__text {
  width: 45px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1000px) {
  .title {
    font-size: 2.8rem;
  }
}
/*=========================================  600  ============================================*/
@media only screen and (max-width: 600px) {
  .title {
    font-size: 2rem;
  }
}
/*=========================================  450  ============================================*/
@media only screen and (max-width: 450px) {
  .title {
    font-size: 1.8rem;
  }
  .sub-title {
    font-size: 1.2rem;
  }
}
/*=========================================  350  ============================================*/
@media only screen and (max-width: 350px) {
  .title {
    font-size: 1.5rem;
  }
}
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.mt-4 {
  margin-top: 4rem;
}

.pt-4 {
  padding-top: 4rem !important;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mtb-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.img-responsive2 {
  height: 350px;
  width: auto;
}

.color-black {
  color: #000000;
}

.items-between {
  justify-content: space-between;
}

.items-center {
  justify-content: center;
}

.items-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.basis-100 {
  flex-basis: 100%;
}

.flex {
  display: flex;
}

.align-end {
  align-items: flex-end;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

body {
  background-color: #000000;
  --text: #898989;
  --text-dark: #4b4b4b;
  --accent: #671c90;
  --accent-light: #7f24b4;
  --decoration-dark: #232323;
  --transition-func: cubic-bezier(0,0,.2,1);
  --border-radius: 25px;
}

h2, h3 {
  font-weight: normal;
}

.layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 190px;
  overflow-x: hidden;
  position: relative;
}

.container-layout {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 30px;
  color: #FFFFFF;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.text-white {
  color: #FFFFFF;
}

.text-grey {
  color: var(--text);
}

.text-grey2 {
  color: var(--text-dark);
}

.bg-dark {
  background-color: #1b1b1b;
}

.flat-btn {
  border: none;
  cursor: pointer;
  color: var(--accent);
  background-color: transparent;
  transition: color 0.22s var(--transition-func);
}
.flat-btn:hover {
  color: var(--accent-light);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  text-align: center;
  width: 70px;
}

.count-controls__container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.count-controls {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  transition: background-color 0.22s var(--transition-func);
  background-color: transparent;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
}
.count-controls:hover {
  background-color: var(--decoration-dark);
}
.count-controls svg {
  height: inherit;
  width: inherit;
}

.basket__form {
  width: 100%;
}
.basket__form .form__title {
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}
.basket__form .form__subtitle {
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text);
}
.basket__form .separator {
  width: 100%;
  height: 1px;
  background-color: var(--decoration-dark);
  border: none;
  margin: 2rem 0;
}
.basket__form .list-products__item {
  gap: 2rem;
  align-items: flex-start;
}
.basket__form .list-products__item .item__img__wrap {
  width: 50%;
  max-width: 220px;
  height: auto;
}
.basket__form .list-products__item .item__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.basket__form .list-products__item__title {
  margin-top: 0;
  margin-bottom: 10px;
}
.basket__form .list-products .col-1 {
  align-items: flex-start;
  flex-grow: 1;
  gap: 4rem;
}
.basket__form .list-products .col-2 {
  flex-shrink: 1;
  flex-basis: 50%;
  justify-content: space-between;
}

.coupon__input {
  width: 200px;
  border-radius: var(--border-radius);
  border: none;
  padding: 10px 1rem;
  background-color: #1f1f1f;
  color: #FFFFFF;
  text-transform: uppercase;
}
.coupon__btn {
  border-radius: var(--border-radius);
  padding: 10px 1rem;
  background-color: #626262;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.22s var(--transition-func);
}
.coupon__btn:hover {
  background-color: #757575;
}
.coupon__width {
  width: 200px;
}
.coupon__total {
  align-items: flex-end;
}
.coupon__total__price {
  font-size: 1.5rem;
  margin-top: 0;
}

@media only screen and (max-width: 900px) {
  .basket__form .list-products .col-1, .basket__form .list-products .col-2 {
    width: 100%;
    max-width: 500px;
  }
  .basket__form .list-products .col-2 {
    flex-basis: 100%;
  }
  .basket__form .list-products .col-1 {
    justify-content: space-between;
    gap: 10px;
  }
  .basket__form .count-controls__wrap {
    width: 50%;
    max-width: 220px;
    align-items: center;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    padding: 0 15px;
  }
  .coupon__width {
    width: 100%;
    max-width: 400px;
  }
  .coupon__total {
    width: 100%;
  }
  .coupon__total__title {
    width: 100%;
  }
  .count-controls {
    width: 36px;
    height: 36px;
  }
  .count-controls svg {
    width: inherit;
    height: inherit;
  }
}
@media only screen and (max-width: 380px) {
  .list-products__item .text-about {
    font-size: 14px;
  }
  .coupon__input {
    width: 60%;
  }
}