*{
  margin: 0;
  padding: 0; 
  font-family: "GothamBook";
  color: white;
}

html{
  scroll-behavior: smooth;
}

.text{
  width: min-content !important;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
  75% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.5s ease;
}

button:hover {
  cursor: pointer;
}

.aligned-image {
  vertical-align: text-bottom;
}

.grad {
  background-image: linear-gradient(transparent, rgba(39, 23, 23, 0.9));
}

@font-face {
  font-family: 'GothamBold';
  src: url('/assets/fonts/gotham/Gotham-Bold.otf') format("opentype");
}

@font-face {
  font-family: 'GothamLight';
  src: url('/assets/fonts/gotham/Gotham-Light.otf') format("opentype");
}

@font-face {
  font-family: 'GothamMedium';
  src: url('/assets/fonts/gotham/Gotham-Medium.otf') format("truetype");
}

@font-face {
  font-family: 'GothamBook';
  src: url('/assets/fonts/gotham/Gotham-Book.otf') format("truetype");
}

.hide-on-desktop{
  display: block !important;
}

.hide-on-desktop-flex{
  display: flex !important;
}

.hide-on-desktop-768{
  display: block !important;
}

.hide-on-mobile{
  display: none !important;
}

.hide-on-mobile-768{
  display: none !important;
}

.group .circle, .group .num *, .group .line-svg{
  transition: fill 320ms ease-in;
}

.group .circle{
  fill: black;
}

.group.active .circle, .group.active .line-svg{
  fill: #f7ebdf !important;
}

.group.active .num *{
  fill: rgb(0, 0, 0) !important;
}

#progress-bar{
  width: 100%;
  max-width: 960px;
}

input[type="radio"]{
  appearance: none;
  cursor: pointer;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;

  background: #383838;
  border: 8px solid #383838;

  transition: all 0.15s;
}

input[type="radio"]:checked{
  background: #FFFFFF;
  border: 8px solid rgb(37, 189, 117);

  transition: all 0.15s;
}

input[type="checkbox"]{
  outline: none;
  box-shadow: none;
  border-style: solid;
  border-color: var(--form-default-color);
  border-width: 1px;
  border-radius: 5px;
  appearance: none;
  cursor: pointer;
  position: relative;
  width: 25px !important;
  height: 25px !important;
  aspect-ratio: 1/1 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background: url("../img/icons/check.svg");
  background-size: 0% !important;
  transition: background-size 0.15s, background-color 0.15s, border-color 0.15s;
}

input[type="checkbox"]:checked{
  background-color: rgb(37, 189, 117);
  background-size: 65% !important;
  transition: background-size 0.15s, background-color 0.15s, border-color 0.15s;
  border-color: rgb(37, 189, 117);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

body{
  background-color: black;
}

#header-content div{
  display: flex;
  gap: 40px;
}

.flex-col{
  display: flex;
  flex-direction: column;
}

#main-header{
  height: 83px;
  width: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 20;
}


#header-content div{
  display: flex;
  gap: 40px;
}

#header-content{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 27px 30px;
  align-items: center;
}

#logo-vitaldom{
  width: 160px;
  height: 34px;
}

#header-content #logo-button{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  width: 160px;
}

.cart-passive{
  display: none;
}

.cart-active{
  display: flex;
  background-color: black;
  position: fixed;
  height: 400px;
  width: 300px;
  right: 0;
  top: 100px;
}

#close-button img{
  width: 30px;
  height: 30px;
}

#delete-button{
  height: fit-content;
  width: auto;
  background-color: black;
  border: none;
}

#delete-button img{
  width: 30px;
  height: 30px;
}


#hero{
  background-image: url('/assets/img/boxer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 65% center;
  height: 100vh;
  justify-content: center;
}

#hero button{
  width: 320px;
  height: 60px;
  background-color: rgb(37, 189, 117);
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: GothamMedium;
  padding-top: 1px;
}

#product-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 60px;
  background-color: rgb(37, 189, 117);
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-family: GothamBold;
  padding-top: 1px;
}

#header-content a{
  font-family: GothamBold;
  font-size: 16px;
  text-decoration: none;
}

#menu-button{
  background-color: transparent;
  border: none;
}

#hero h1{
  font-family: GothamBold;
  font-size: 50px;
  text-align: center;
}

#hero h1 u{
  font-family: GothamBold;
}

#hero .container{
  gap: 50px;
  flex-wrap: nowrap;
}

#hero p{
  font-size: 20px;
  max-width: 260px;
  margin: auto;
  text-align: center;
  line-height: 28px;
}

#hero p span{
  font-family: GothamBold;
}

.container{
  max-width: 360px;
  padding: 0px 20px;
  margin: auto;
}

#flex-image{
  margin-top: -50px;
  width: 320px;
  height: auto;
  filter: drop-shadow(0mm 20mm 9.75rem rgba(154, 149, 61, 0.324));
}

.product-benefit{
  font-family: GothamBold;
  color: rgb(204, 170, 133);
  font-size: 30px;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper{
  width: 100%;
}

#swiper-1{
  margin-top: 40px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  object-fit: cover;
}

.swiper-pagination{
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

}

.swiper-pagination-bullet{
  width: 14px !important;
  height: 14px !important;
  border: 4px solid;
  border-color: rgb(204, 170, 133) !important
}

.swiper-pagination-bullet-active {
  background-color: rgb(204, 170, 133) !important;
}

.swiper-box{
  vertical-align: middle;
  justify-content: center;
  height: 200px;
  width: auto;
  align-items: center;
  flex-direction: column;
}

.swiper-box p{
  color: rgb(204, 170, 133);
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  margin-top: 45px;
}

#product{
  background-color: rgb(32, 25, 17)
}

#swiper-info {
  font-size: 20px;
  max-width: 260px;
  margin: auto;
  text-align: center;
  background-color: transparent;
}

#swiper-info div{
  align-items: center;
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 100px;
}

#swiper-info div p span{
  font-family: GothamBold;
  text-decoration: underline;
}

#product-detail{
  justify-content: center;
  vertical-align: middle;
  align-items: center;
}

.column{
  text-align: center;
  font-weight: bold;
  gap: 95px;
  padding-top: 73px;
}


#column-left{
  padding-right: 60px;

}

#column-right{
  padding-left: 60px;
}


#product-info{
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  width: auto;
}

#flex-image-box{
  width: fit-content;
  height: auto;
}


.swiper .swiper-wrapper div{
  display: flex;
}

.swiper .swiper-wrapper{
  height: 220px;
}

.swiper-box img{
  height: fit-content;
  width: fit-content;
}

#advantages{
  background-image: url('/assets/img/1st\ bg\ mobile.png');
  height: fit-content;
  position: relative;
}

h2 {
  font-size: 50px;
  text-align: center;
  font-family: GothamBold;
}

#advantages .container{
  padding-top: 100px;
}

#advantages .container p{
  font-size: 20px;
  text-align: center;
  padding-top: 40px;
  line-height: 28px;
}

#advantages .container .swiper p{
  padding-top: 40px;
  padding-bottom: 70px;
  margin: 0;
  font-weight: normal;
  line-height: 30px;
}

#advantages .container .swiper p b{
  color: rgb(205,171,134);
}

#preco-prave img{
  padding-left: 12px;
}

#swiper-2 span{
  color: rgb(204, 170, 133);
  font-weight: bold;
}

#preco-prave{
  display: flex;
  justify-content: center;
  align-items: center;
}

#advantages .swiper{
  padding-top: 100px;
  padding-bottom: 100px;
}

#benefits-bar{
  display: flex;
  padding-top: 100px;
  flex-direction: row;
  align-items: center;
  gap: 44px;
  padding-bottom: 195px;
  justify-content: center;
}

#benefits-bar div{
  gap: 32px;
  justify-content: center;
  align-items: center;
}

#benefits-bar div img{
  width: fit-content;
  height: fit-content;
}

#benefits-bar div p{
  line-height: 20px;
  padding-top: 0px !important; 
  text-align: center;
  font-size: 16px;
}

#benefits-bar div p b{
  color: rgb(204, 170, 133);
}

#line{
  padding-bottom: 105px;
  padding-left: 0px;
}

#advantages .container{
  z-index: 10;
  position: relative;
}


#pic-absolute1{
  position: absolute;
  z-index: 2;
  margin-top: -70px;
  margin-left: -25px;
  height: 150px;
  width: auto;
}

#pic-absolute2{
  position: absolute;
  z-index: 2;
  height: 235px;
  right: 0px;
  bottom: -100px;
}

#satisfied-users{
  background-color: rgb(32, 25, 17);
  transition: max-height 0.5s ease-in-out;
  position: relative;
  align-items: center;
}

h3{
  font-family: GothamBold;
  font-size: 50px;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 70px;
}

h3 span{
  font-family: GothamBold;
}

.swiper-box-3{
  display: flex;
  flex-direction: column;
  height: 366px;
  width: 290px;
  background-color: white;
  border-radius: 35px;
  border: 2px solid rgb(70, 42, 11);
  align-items: center;
}

#satisfied-users .swiper .swiper-wrapper {
  height: 366px;
}

.line{
  height: 2px;
  width: 74px;
}

.name{
  color: rgb(72, 42, 11);
  font-family: GothamBold;
  font-size: 20px;
}

.job{
  color: rgb(173, 160, 146);
  font-size: 16px;
  letter-spacing: 4px;
  text-align: center;
}

.profile{
  align-items: center;
  gap: 20px;
  padding-bottom: 50px;
  padding-top: 50px;
}

#statement{
  padding-top: 50px;
  color: rgb(70, 42, 11);
  font-size: 20px;
  text-align: center;
  padding-bottom: 50px;
}

#swiper-3 .swiper-pagination{
  padding-bottom: 100px;
  padding-top: 50px;
}

#h3-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#h3-box img{
  vertical-align: text-bottom;
}

#satisfied-users-desktop {
  display: flex;
  flex-direction: row;
  gap: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease-in-out;
  transition: padding-bottom 0.5s ease-in-out;
  padding-bottom: 120px;
}

.updated-satisfied {
  max-height: 1600px !important;
  z-index: 1;
}

#show-more{
  display: flex;
  justify-content: center;
  width: 216px;
  height: 40px;
  align-items: center;
  background-color: rgb(37, 189, 117);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-family: GothamBold;
  position: absolute;
  bottom: 200px;
  z-index: 3;
  padding-top: 1px;
  transition: bottom 0.5s ease-in-out;
}

.show-less {
  bottom: 40px !important;
}

.satisfied-users-column{
  gap: 40px;
  position: relative;
  height: fit-content;
}

#type-2{
  height: 297px;
}

#type-3{
  height: 400px;
}

#type-4{
  height: 297px;
}

.satisfied-users-column .swiper-box-3 .name{
  padding-top: 50px;
  text-align: center;

}

#order{
  /*background-image: url('/assets/img/bgtexture.jpg/');*/
}

#order-box{
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  overflow-x: hidden;
  padding-left: 50px;
  padding-right: 50px;
}

#order-bar{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#bar-segment{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.circle-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  overflow: visible;
}

.circle-passive{
  background-color: rgb(14, 7, 1);
  color: rgb(247, 235, 223);
}

.circle-active{
  background-color: rgb(247, 235, 223);
  color: rgb(14, 7, 1);
}

#bar-segment hr{
  width: 60px;
  height: 2px;
  border: 0;
  margin-bottom: 60px;
  transition: color,background-color 150ms ease-out;
}

.circle-box p{
  font-weight: bold;    
  font-size: 16px;
  padding-top: 18px;
  height: 40px;
  text-align: center;
  white-space: nowrap;
  width: 100px;
}

.hr-active{
  color: rgb(247, 235, 223);
  background-color: rgb(247, 235, 223);
}

.hr-passive{
  color: rgb(49, 47, 45);
  background-color: rgb(49, 47, 45);
}

#order-visual{
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 80px;
}

#order-description{
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

#description-title{
  color: rgb(37, 189, 117);
  text-align: center;
  font-family: GothamBold;
  font-size: 44px;
}

.price{
  font-family: GothamBold;
  font-size: 30px;
}

.price span{
  font-family: GothamBook;
  color: rgb(62, 58, 55);
  letter-spacing: 5px;
  margin-left: 10px;
}

#description{
  font-weight: normal;
  color: rgb(116, 116, 116);
  font-size: 20px;
  text-align: center;
}

#show-details{
  font-weight: normal;
  text-align: center;
  font-size: 20px;
}

.number-button{
  width: 320px;
  background-color: white;
  height: 60px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.number-button button{
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 0px 30px;
  font-weight: bold;
  color: black;
}

.number-button p{
  font-weight: bold;
  font-size: 18px;
}

.order-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 60px;
  background-color: rgb(37, 189, 117);
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-family: GothamMedium;
  padding-top: 1px;
}

.buttons-box{
  gap: 20px;
}

#black-box{
  height: 470px;
  justify-content: flex-start;
  align-items: center;
}

#adress-info p{
  color: rgb(111, 111, 111);
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  padding-top: 100px;
}

#terms-conditions{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#terms-conditions a{
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
}

#green-box{
  height: 335px;
  background-color: rgb(75, 192, 110);
  gap: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  position: relative;
}

.contacts-box{
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contacts-box{
  font-size: 20px;
  font-weight: bold;
}

#hand{
  position: relative;
  height: 260px;
  width: auto;
}

#black-box-bar{
  justify-content: center;
  align-items: center;
  gap: 55px;
  width: 966px;
  max-width: 100%;
}

#dividing-line{
  width: 100%;
  color: rgb(32, 25, 17);
  background-color: rgb(32, 25, 17);
  border: none;
  height: 1px;
}

#phone-number{
  text-decoration: none;
}

#hand-text{
  gap: 12px;
  position:absolute;
  font-size: 20px;
  font-weight: bolder;
  padding: 0;
  bottom: 120px;
  left: 20px;
}

#hand-text p{
  background-color: white;
  color: rgb(204, 170, 133);
  width: fit-content;
  font-size: 18px;
}

#pic-absolute3{
  position: absolute;
  width: fit-content;
  height: auto;
  right: 6%;
  margin-bottom: 20px;
}

.amountParagraph{
  color: black;
}

#grad-box{
  position:absolute;
  background-image: linear-gradient(transparent 10%,rgba(38, 30, 22, 1) 70%);
  height: 540px;
  width: 100%;
  bottom: 0;
  z-index: 2;
}

.updated-grad{
  display: none !important;
}

.step-active{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.step-passive{
  display: none;
}

.cart-detail{
  display: flex;
  flex-direction: column;
}

#step-2 img{
  width: 170px;
  height: 180px;
}

.step-2-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex-grow: 1;
  max-width: 966px;
}

.step-2-wrapper .shipping-summary{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.step-2-wrapper .shipping-summary *{
  font-size: 20px;
  color: white;
  font-family: GothamBold;
}

.step-2-wrapper .shipping-summary > p:first-child{
  font-family: GothamBook;
}

.step-2-wrapper .shipping-summary > p:last-child{
  font-size: 14px;
  font-family: GothamBook;
  width: 220px;
  text-align: center;
}

.step-2-title{
  font-weight: bold;
  font-size: 44px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.discount{
  display: flex;
  width: 320px;
  height: 60px;
  align-items: center;
  justify-content: space-between;
}

.discount input{
  border: none;
  background-color: white;
  width: 280px;
  height: 100%;
  padding: 0px 20px;
  margin-right: -150px;
  border-radius: 30px;
  color: rgb(127, 127, 127);
  font-size: 18px;
  text-align: left;
} 

.discount button{
  height: 60px;
  width: 150px;
  background-color: rgb(75, 192, 110);
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  font-family: GothamBold;
}

.discount-box{
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.price-info{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#discount-info{
  display: none;
}

#discount-info.active{
  display: block;
}

#discount-info{
  font-size: 14px;
  color: rgb(204, 170, 133);
}

.price-total{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.price-total p{
  text-align: center;
}

.nav-buttons{
  gap: 20px;
  display: flex;
  flex-direction: column-reverse;
}

.nav{
  width: 320px;
  height: 60px;
  border-radius: 30px;
  font-size: 18px;
}

.nav-fd{
  background-color: rgb(75, 192, 110);
  border: none;
  font-family: GothamMedium;
  padding-top: 1px;
}

.nav-bd{
  background-color: transparent;
  border: 2px solid;
  border-color: white;
  padding-top: 1px;
}

.step-2-wrapper .price{
  margin-bottom: 40px;
  margin-top: 40px;
}

.title-box{
  justify-content: center;
  align-items: center;
}

.line-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%}

.line-1-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.order-line{
  width: 100%;
  height: 2px;
  background-color: rgb(69, 60, 53);
  border: none;
}

.order-line.company-line{
  margin-top: 30px;
}

.error-message{
  position: absolute;
  font-size: 12px;
  bottom: -22px;
  left: 30px;
  color: #FF511D;
}

.order-line-1{
  margin-top: 10px;
  margin-bottom: 10px;
}

.order-line-2{
  margin-bottom: 20px;
}

.order-line-3{
  margin-bottom: 60px;
  margin-top: 10px;
}

.step-1-row-wrapper{
  display: flex;
  flex-direction: column;
}

.step-3-wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
}

.radio-box{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.radio-input{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.radio-input label{
  color: white;
  font-size: 20px;
}

.personal-info{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#company-info{
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#gift-info{
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.input-box{
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 20px;
  position: relative;
}

.input{
  width: 260px;
  border-radius: 30px;
  height: 60px;
  color: black;
  font-size: 18px;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
}

input[type="text"]:focus, input[type="email"]:focus{
  border: none;
  outline: none;
}

.input::placeholder{
  color: rgb(127, 127, 127);
}

.input-box-wrapper{
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.checkbox{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.checkbox label{
  width: calc(100% - 45px);
  line-height: 16px;
}

.step-3-wrapper .nav-buttons{
  margin-top: 70px;
}

.step-4-wrapper{
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.payment-wrapper{
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}

.payment{
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  font-size: 20px;
}

.payment-method{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.payment-method .radio-input{
  padding: 24px 30px;
  display: flex;
  gap: 24px;
  border-radius: 5px;
  border: 1px solid white;
}

.payment-method .radio-input p{
  font-size: 20px;
}

.payment-method div div{
  display: flex;
  width: calc(100% - 48px);
  justify-content: space-between;
}

.card-payment-img{
  gap: 20px;
  justify-content: normal !important;
  width: fit-content !important;
}

.card-payment-img img{
  height: 17px;
  width: auto;
}

.shipping{
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 20px;
  width: 320px;
}

.shipping div div{
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.terms{
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 320px;
}

.termsbox-wrapper{
  display: flex;
  flex-direction: column;
  position: relative;
}

.termsbox-wrapper .error-message{
  left: 45px;
}

.termsbox{
  display: flex;
  gap: 20px;
  align-items: center;
  line-height: 16px;
}

.termsbox label{
  font-size: 16px;
  line-height: 120%;
  width: calc(100% - 45px);
}


.shipping .flex-col{
  gap: 40px;
}

#nav-menu{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 19;
  position: fixed;
  margin-top: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity ease-out 0.2s;
  pointer-events: none;
}

#close-button{
  display: none;
  background-color: transparent;
  border: none;
}

.menu-inner{
  display: flex;
  flex-direction: column;
  margin-bottom: 127px;
  gap: 60px;
}

.menu-inner a{
  text-decoration: none;
  font-size: 26px;
  font-family: GothamBold;
  color: rgb(204, 170, 133);
  text-align: center;
}

.button-hover{
  transition: filter 0.5s ease;
}

.button-hover:hover{
  filter: brightness(1.1);
}

.step-1-img{
  width: 320px;
  height: auto;
}

.poitner-events-on{
  pointer-events: auto !important;
}

.amountParagraph{
  color: black;
  border: none;
  text-align: center;
  font-size: 16px;
  min-width: none;
}

.step-5-wrapper{
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.step-5-wrapper img{
  width: 320px;
  height: auto;
}

.finalization-text{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.success-title{
  text-align: center;
  color: rgb(75, 192, 110);
  font-size: 44px;
  font-family: GothamBold;
}

.success-text{
  text-align: center;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .container{
    max-width: 768px;
  }
  #pic-absolute1{
    height: 250px;
  }
  #pic-absolute2{
    height: 400px;
  }

  .hide-on-desktop-768{
    display: none !important;
  }

  .hide-on-mobile-768{
    display: block !important;
  }
}

@media screen and (min-width: 650px) {
  #order-box{
    align-items: center;
  }
}