:root {
  --color-white: #fff;
  --color-light: #f1f5f8;
  --color-black: #121212;
  --color-night: #001633;
  --color-purple: #9b27b0;
  --color-indigo: #63f;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* a {  text-decoration: none;
    color: #FFFFFF; }  */
a:visited,
a:link,
a:active {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #ff6f61;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 100;
  box-sizing: inherit;
  /* list-style: none; */
  /* list-style-type: none; */
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Quicksand", sans-serif !important;
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  /* max-width: 83rem; */
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  width: 220px;
}

.brand-link {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  border: none;
  outline: none;
  color: var(--color-indigo);
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  /* color: var(--color-black); */
  /* background: var(--color-white); */
  /* box-shadow: var(--shadow-large); */
}

.navbar .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.navbar .burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  transform: rotate(0deg);
  transition: 0.35s ease-in-out;
}

.navbar .burger-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--color-black);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navbar .burger-line:nth-child(1) {
  top: 0;
}

.navbar .burger-line:nth-child(2),
.navbar .burger-line:nth-child(3) {
  top: 0.5rem;
}

.navbar .burger-line:nth-child(4) {
  top: 1rem;
}

.navbar .burger.active .burger-line:nth-child(1),
.navbar .burger.active .burger-line:nth-child(4) {
  top: 1.25rem;
  width: 0%;
  left: 50%;
}

.navbar .burger.active .burger-line:nth-child(2) {
  transform: rotate(45deg);
}

.navbar .burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.navbar .menu-inner {
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  align-items: center;
  /* gap: 2rem; */
}

.navbar .menu-link {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: inherit;
  border: none;
  color: var(--color-black);
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  transition: all 0.35s ease-in-out;
}

.menu-item {
  margin-left: 2rem;
}

.navbar .menu-link.active,
.navbar .menu-link:hover {
  border: none;
  outline: none;
  /* color: var(--color-indigo); */
}

@media only screen and (max-width: 1450px) {
  .menu-separator {
    display: none;
  }

  .navbar .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .navbar .menu {
    width: 100%;
    max-height: 0rem;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    /* overflow: hidden; */
    /* transition: all 0.35s ease; */
  }

  .navbar .menu.active {
    opacity: 1;
    visibility: visible;
  }

  .navbar .menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* gap: 0.75rem; */

    padding: 1rem 0;
  }

  .menu-item {
    margin-top: 0.75rem;
    margin-left: 0;
  }

  .cart-preview {
    position: absolute !important;
    z-index: 100 !important;
    width: 40% !important;
    top: 0 !important;
    right: 0 !important;
  }
}

@media only screen and (max-width: 1000px) {
  .cart-preview {
    display: none !important;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.062);
  z-index: 1;
  cursor: pointer;
}

.dropdown-content li {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li:hover {
  background-color: rgb(226, 226, 226);
}

/* .dropdown:hover .dropbtn {background-color: #3e8e41;} */

.grid-selector-container {
  width: 100%;
  display: flex;
  margin-bottom: 25px;
  cursor: pointer;
}

.grid-selector-container>img {
  width: 25px;
  height: 25px;
}


.footer-dark {
  margin-top: 4rem;
  padding: 50px 0;
  color: #f0f9ff;
  background-color: #565656;
  width: 100%;
  align-self: flex-end;
}

.footer-dark button {
  color: #fff;
  width: 100px;
  height: 25px;
  background-color: #565656;
  border: 1px solid #ff6e61;
  margin-bottom: 10px;
}

.footer-dark button:hover {
  color: #fff;
  background-color: #ff6e61;
}

.footer-dark h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-dark ul a {
  color: inherit;
  text-decoration: none;
}

.footer-dark ul a:hover {
  color: #ff6e61;
}

.footer-dark img {
  filter: invert(10%);
  filter: brightness(150%);
}

@media (max-width: 767px) {
  .footer-dark .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }
}

.footer-dark .item.text {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .footer-dark .item.text {
    margin-bottom: 0;
  }
}

.footer-dark .item.text p {
  opacity: 0.6;
  margin-bottom: 0;
}

.footer-dark .item.social {
  text-align: center;
}

@media (max-width: 992px) {
  .footer-dark .item.social {
    text-align: center;
    margin-top: 20px;
  }
}

.footer-dark .item.social>a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
}

.footer-dark .item.social>a:hover {
  color: #ff6e61;
}

.footer-dark .copyright {
  text-align: center;
  padding-top: 24px;
  opacity: 0.3;
  font-size: 13px;
  margin-bottom: 0;
}

.copyright {
  margin-top: 15px;
}

.sidebar-select-grid>img {
  width: 50px;
}

.buble-cunter {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 75px;
  width: 21px;
  height: 21px;
  border-radius: 30px;
  background-color: #ff6f61;
  color: white;
}

@media (max-width: 1450px) {
  .buble-cunter {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 320px;
    left: 45px;
    width: 21px;
    height: 21px;
    border-radius: 30px;
    background-color: #ff6f61;
    color: white;
  }
}

#info-box {
  display: block;
  position: absolute;
  margin: auto;
  width: 500px;
  height: 150px;
  background-color: #ff6e61;
  top: -170px;
  right: 0;
  left: 0;
  text-align: center;
  color: white;
  padding-top: 40px;
  line-height: 40px;
  z-index: 120;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  opacity: 1;
  filter: alpha(opacity=80);
}

#info-box>div {
  margin-top: 30px;
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
}

@media (max-width: 768px) {
  #info-box {
    display: block;
    position: absolute;
    margin: auto;
    width: 90%;
    height: 150px;
    background-color: #ff6e61;
    top: -170px;
    right: 0;
    left: 0;
    text-align: center;
    color: white;
    padding-top: 40px;
    line-height: 40px;
    z-index: 120;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    opacity: 1;
    filter: alpha(opacity=80);
  }

  #info-box>div {
    margin-top: 30px;
    font-size: 18px;
    font-family: "Quicksand", sans-serif;
  }

}




.slide-in {
  animation: slide-in 0.5s forwards;
  -webkit-animation: slide-in 0.5s forwards;
}

.slide-out {
  animation: slide-out 0.5s forwards;
  -webkit-animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
  100% {
    transform: translateY(90%);
  }
}

@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateY(90%);
  }
}

@keyframes slide-out {
  0% {
    transform: translateY(90%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateY(90%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

.progress-status {
  width: 100%;
  height: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.checkpoint {
  font-size: 2.4rem;
  width: 60px;
  height: 60px;
  display: block;
  position: sticky;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 50%;
  background-color: #efefef;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
  color: #fff;
  opacity: 1;
  z-index: 2 !important;
}

.progress-status p {
  padding: 10px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
}

.checkpoint hr {
  position: absolute;
  width: 340%;
  top: 10%;
  left: 100%;
  background-color: #efefef;
  height: 5px;
  z-index: 1 !important;
  opacity: 0.5;
}

.cart-preview {
  position: fixed;
  float: right;
  display: none;
  top: 76px;
  right: 0;
  width: 25%;
  height: 60%;
  overflow-y: auto;
  z-index: 10;
  background-color: #fff;
}


.cart-preview .cart-product-tab-left {
  display: flex;
  align-items: center;
}

.cart-preview .cart-product-tab-left p {
  font-weight: 400;
  font-size: 12px;
}

.cart-preview .cart-product-tab-left img {
  width: 50px;
  margin-right: 6.25px;
}

.cart-preview .quantity {
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.cart-preview .quantity .input-text.qty {
  width: 25px;
  height: 40px;
  padding: 0 2.5px;
  text-align: center;
  background-color: transparent;
  border: 0.5px solid #efefef;
}

.cart-preview .quantity.buttons_added {
  text-align: left;
  position: relative;
  white-space: nowrap;
  vertical-align: top;
}

.cart-preview .quantity.buttons_added input {
  display: inline-block;
  margin: 0;
  vertical-align: top;
  box-shadow: none;
}

.cart-preview .quantity.buttons_added .minus,
.cart-preview .quantity.buttons_added .plus {
  height: 40px;
  width: 25px;
  background: #eeeeee;
  color: #575757;
  border: 0.5px solid #efefef;
  cursor: pointer;
}


.cart-preview .quantity.buttons_added .minus {
  border-right: 0;
}

.cart-preview .quantity.buttons_added .plus {
  border-left: 0;
}

.cart-preview .quantity.buttons_added .minus:hover,
.cart-preview .quantity.buttons_added .plus:hover {
  background-color: #ff6e61;
}

.cart-preview .quantity input::-webkit-outer-spin-button,
.cart-preview .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

.cart-preview .quantity.buttons_added .minus:focus,
.cart-preview .quantity.buttons_added .plus:focus {
  outline: none;
}

.cart-preview .cart-product-tab-right {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}

.cart-preview .cart-product-tab-right p {
  float: right;
  font-size: 12px;
  margin: 0 5px 0 5px;

}

.cart-preview .cart-product-tab-right img {
  float: right;
  width: 20px;
  cursor: pointer;
}

.cart-preview .cart-product-tab-right img:hover {
  background: #ff6e61;
}

.cart-preview h1 {
  margin: 0 auto;
  margin-top: 10px;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  color: #575757;
}

.cart-preview button {
  margin: 0 auto;
  margin-top: 15px;
  display: block;
  text-align: center;
  color: #dfdfdf;
  background: #ff6e61;
  border-radius: 0;
}

@media (max-width: 768px) {
  .progress-status {
    display: none;
  }
}

.foormat {
  width: 220px;
}

.foormat-link {
  margin-top: 50px;
  /* font-family: inherit; */
  font-size: 1.75rem;
  font-weight: 700;
  /* line-height: inherit; */
  /* border: none;
  outline: none; */
  color: var(--color-indigo);
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.input_error {
  border: 1px solid red;
}

.input_correct {
  border: 1px solid green;
}

#clientDataSave {
  background-color: #efefef;
  border: 1px solid #ff6e61;
  display: block;
  float: right;
}

#clientDataSave:hover {
  color: white;
  background-color: #ff6e61;
}

.hide {
  display: none !important;
}