@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
:root {
  --nav_background_color: #0C0404;
  --nav_font_family: "Roboto", sans-serif;
  --nav_font_size: 17px;
  --nav_font_color: #D8B03E;
  --nav_fontActive_size: white;
  --validation_fontFamily: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--nav_font_family);
  margin: 0;
  padding: 0;
  background-color: #111111;
}

.fa-icon {
  font-family: "Font Awesome 6 Pro", sans-serif;
  display: inline-block;
}

[data-title]:hover:after {
  opacity: 0.7;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
}

[data-title]:after {
  content: attr(data-title);
  position: absolute;
  bottom: -1.7em;
  left: 0px;
  padding: 2px 4px 2px 4px;
  color: #222;
  white-space: nowrap;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -moz-box-shadow: 0px 0px 2px #222;
  -webkit-box-shadow: 0px 0px 2px #222;
  box-shadow: 0px 0px 2px #222;
  background-image: -moz-linear-gradient(top, rgba(248, 248, 248, 0.4196078431), rgba(204, 204, 204, 0.3490196078));
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f8f8f8), color-stop(1, #cccccc));
  background-image: -webkit-linear-gradient(top, rgba(248, 248, 248, 0.4196078431), rgba(204, 204, 204, 0.3490196078));
  background-image: -moz-linear-gradient(top, rgba(248, 248, 248, 0.4196078431), rgba(204, 204, 204, 0.3490196078));
  background-image: -ms-linear-gradient(top, rgba(248, 248, 248, 0.4196078431), rgba(204, 204, 204, 0.3490196078));
  background-image: -o-linear-gradient(top, rgba(248, 248, 248, 0.4196078431), rgba(204, 204, 204, 0.3490196078));
  opacity: 0;
  z-index: 99999;
  visibility: hidden;
  font-family: var(--nav_font_family);
  font-weight: 200;
  color: #111111;
  font-size: 0.8em;
}

[data-title] {
  position: relative;
}

.topnav {
  position: fixed;
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
  height: 80px;
  align-items: center;
  flex-direction: row;
  background-color: #111111;
  box-shadow: 0px 0px 10px 0px #111111;
  font-family: var(--nav_font_family);
  top: 0;
}

#navigationBar {
  transition: top 0.8s ease-in-out;
}

.hideUser {
  visibility: hidden;
  opacity: 0;
}

.active {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 42%;
  opacity: 0.9;
  position: fixed;
  z-index: 5;
  height: 100vh;
  top: 0;
  right: 0;
}

.topnav a {
  font-family: var(--nav_font_family);
  color: var(--nav_font_color);
  text-align: center;
  margin: 13px 5px;
  letter-spacing: -1px;
  text-decoration: none;
  font-size: var(--nav_font_size);
  font-size: 0.8rem;
}

.topnav a:hover {
  color: gold;
  font-size: 0.85rem;
}

.topnav a.active {
  color: wheat;
  font-size: 0.85rem;
}

.topnav__logo {
  transition: all 0.5s ease;
  color: var(--nav_font_color);
  width: 200px;
  height: 65px;
  flex-grow: 0;
  flex-shrink: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: var(--nav_font_family);
  background-image: url("../../assets/images/logo/logo.png");
  background-size: cover;
  background-position: center;
}

.logo__text {
  max-width: 220px;
  min-width: 220px;
  flex-grow: 2;
  margin-left: 6px;
  font-family: var(--nav_font_family);
  color: black;
  font-size: 1.3rem;
  letter-spacing: -2px;
}

.header {
  width: 100vw;
  z-index: 15;
  position: absolute;
}

.header__portfolio {
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 1;
  margin-top: 16px;
  margin-left: 40px;
}

@keyframes leftToRight {
  from {
    transform: translateX(0vw);
  }
  to {
    transform: translateX(100vw);
  }
}
#navLeftToRight {
  animation: leftToRight 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 70px;
  justify-content: center;
  width: 100%;
  position: fixed;
  z-index: 2;
  height: 100vh;
  top: 0;
  right: 0;
}

nav ul {
  display: none;
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: #030203;
  transition: all 0.1s ease-in-out;
  list-style-type: none;
  margin: 0;
  padding: 0;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  z-index: 3;
  justify-self: flex-start;
  translate: 2.5vw;
}

ul li a {
  flex-grow: 0;
  flex-shrink: 1;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  font-family: var(--nav_font_family);
  text-transform: uppercase;
  color: var(--nav_font_color);
  cursor: pointer;
  z-index: 3;
  padding-left: 20px;
}

#checkbox {
  display: none;
}

@keyframes rightToLeft {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0vw);
  }
}
#checkboxLabel {
  transition: all 0.1s ease-in-out;
  content: url(../images/menu/bmenu.svg);
  outline: none;
  position: absolute;
  right: 0;
  z-index: 6;
  color: var(--nav_font_color);
  display: inline-block;
  grid-column: 2;
  height: 50px;
  width: 50px;
  margin-right: 48px;
  background-size: cover;
  border: none;
  cursor: pointer;
}

.activeJob {
  color: white;
}

:focus {
  outline: none;
}

.checkbox__burger {
  width: 200px;
  height: 2px;
  background-color: white;
}

* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
}

input {
  color: #171717;
}

.searchD {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  flex: 1;
}

.login-bar {
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.login-button {
  color: var(--nav_font_color);
  transition: all 0.1s ease-out;
  font-weight: 400;
  font-size: 1rem;
}

.login-button:hover {
  color: var(--nav_font_color);
  color: gold;
  cursor: pointer;
  font-size: 1.1rem;
}

.fa-cart-shopping {
  position: relative;
  color: var(--nav_font_color);
  font-size: 0.9rem;
  transition: all 0.1s ease-out;
  margin-top: 0px;
}

.inBasket {
  transition: all 0.1s ease-in-out;
  position: absolute;
  display: hidden;
  opacity: 0;
  color: white;
  background-color: var(--nav_font_color);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 10px;
  top: -10px;
  right: -5px;
  width: 20px;
  height: 20px;
  padding-left: 6px;
  padding-top: 1.8px;
  box-shadow: -5px 3px 5px rgba(24, 24, 24, 0.5);
  font-family: var(--nav_font_family);
  overflow: hidden;
  cursor: default;
}

.fa-cart-shopping:hover {
  color: gold;
  cursor: pointer;
  font-size: 1.05rem;
}

#basketVisible {
  transition: all 0.25s ease-in-out;
  display: block;
  opacity: 0.9;
  letter-spacing: -1.5px;
  text-shadow: rgba(24, 24, 24, 0.8) -1px 3px 10px;
  font-size: 0.6em;
  color: rgb(71, 71, 71);
  font-family: var(--nav_font_family);
  font-weight: 400;
}

#basketVisible:hover {
  cursor: pointer;
  transform: scale(1.1);
  background-color: gold;
}

#cartWiggle {
  animation-name: wiggle;
  -webkit-animation-name: wiggle;
  -ms-animation-name: wiggle;
  animation-duration: 1000ms;
  -ms-animation-duration: 1000ms;
  -webkit-animation-duration: 1000ms;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
}

.cartBox {
  width: 33px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topnav__logo:hover {
  width: 180px;
  height: 65px;
  filter: brightness(125%);
}

.topnav:first-child > span {
  margin-right: auto;
}

.topnav:last-child > span {
  margin-left: auto;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(10deg);
  }
  25% {
    -webkit-transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(20deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-ms-keyframes wiggle {
  0% {
    -ms-transform: rotate(1deg);
  }
  25% {
    -ms-transform: rotate(-1deg);
  }
  50% {
    -ms-transform: rotate(1.5deg);
  }
  75% {
    -ms-transform: rotate(-5deg);
  }
  100% {
    -ms-transform: rotate(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(10deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (prefers-color-scheme: dark) {
  input {
    color: #f1f1f1;
  }
  .search-bar input {
    box-shadow: 0 0 0 0.4em var(--nav_font_color) inset;
  }
  .search-bar input:focus,
  .search-bar input:valid {
    background: #222222;
    box-shadow: 0 0 0 0.1em var(--nav_font_color) inset;
  }
  .search-btn {
    background: var(--nav_font_color);
  }
}
@media only screen and (min-width: 768px) {
  .topnav {
    min-width: 100vw;
  }
  .topnav__logo {
    width: 200px;
    cursor: pointer;
  }
  .topnav__logo:hover {
    filter: brightness(125%);
    height: 70px;
    width: 210px;
  }
  .logo__img {
    width: 170px;
    height: 150px;
  }
  ul li a {
    flex-grow: 0;
    font-size: 0.85rem;
    text-transform: capitalize;
    color: gold;
  }
  .header__portfolio {
    margin-top: 16px;
    margin-left: 70px;
  }
  #checkboxLabel {
    display: none;
    content: none;
    position: absolute;
  }
  #checkbox {
    display: none;
    content: none;
    position: absolute;
  }
  .header {
    width: 100%;
    max-width: 100%;
  }
  .header__nav {
    position: sticky;
  }
  #uList {
    display: flex;
    justify-content: center;
    width: auto;
    grid-template-rows: 0;
    background-color: transparent;
    grid-column-start: 1;
    grid-column-end: 3;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
    align-content: center;
    z-index: 3;
    color: gold;
    height: 70px;
    flex: 1;
    flex-shrink: 0;
  }
  nav {
    display: flex;
    width: 100%;
    align-items: center;
    height: 75px;
    margin: 0;
  }
  nav ul li {
    padding: 0;
    text-decoration: none;
    color: gold;
  }
}
@media only screen and (max-width: 768px) {
  .topnav {
    min-width: 100vw;
    justify-content: start;
  }
  .topnav__logo {
    width: 180px;
    align-items: start;
  }
  nav ul {
    translate: 0;
  }
  #checkboxLabel {
    transition: all 0.1s ease-in-out;
    content: url(../images/menu/bmenu.svg);
    outline: none;
    outline-color: green;
    position: absolute;
    right: 0;
    z-index: 6;
    color: var(--nav_font_color);
    display: inline-block;
    grid-column: 2;
    height: 50px;
    width: 50px;
    margin-right: 30px;
    margin-top: 1px;
    background-size: cover;
    border: none;
    cursor: pointer;
  }
  #checkboxLabel:hover {
    transform: scale(1.14);
    color: gold;
  }
  #uList {
    width: 100vw;
    background-blend-mode: darken;
    align-items: center;
    justify-content: center;
    gap: 10vh;
    margin-left: 0;
    padding-left: 0;
    left: 0;
    z-index: 2;
    height: 100vh;
  }
  .active li a {
    font-size: 2rem;
  }
  .active li a:hover {
    font-size: 2.2rem;
  }
  .topnav a:hover {
    color: gold;
    font-size: 2.2rem;
  }
  .topnav a.active {
    color: wheat;
    font-size: 2.2rem;
  }
  .searchD {
    position: absolute;
    right: 0;
    z-index: 6;
    color: var(--nav_font_color);
    display: inline-block;
    grid-column: 2;
    height: auto;
    width: auto;
    margin-right: 20%;
    cursor: pointer;
    display: flex;
    flex: 0;
  }
  .fa-cart-shopping {
    font-size: 1.5rem;
    margin-top: 3px;
    pointer-events: none;
  }
  .fa-cart-shopping:hover {
    font-size: 1.4rem;
  }
  .search-bar {
    display: none;
    width: 200px;
    min-width: 100%;
    max-width: 100%;
  }
  .inBasket {
    opacity: 0;
    top: -10px;
    right: -10px;
    width: 22px;
    padding-top: 0px;
    height: 17px;
    padding-left: 6px;
  }
  #basketVisible {
    transition: all 0.25s ease-in-out;
    display: block;
    opacity: 0.9;
    letter-spacing: -1.5px;
    text-shadow: rgba(24, 24, 24, 0.8) -1px 3px 10px;
    font-size: 0.9em;
    font-weight: 400;
  }
  .cartBox {
    margin-right: 10px;
  }
  .login-bar {
    margin-right: 10px;
    width: 30px;
  }
  .login-button {
    color: var(--nav_font_color);
    font-size: 1.5rem;
    margin-top: 2px;
    width: 30px;
  }
  .login-button:hover {
    color: var(--nav_font_color);
    font-size: 1.6rem;
  }
}
.container {
  font-family: var(--nav_font_family);
  color: rgba(18, 38, 32, 0.6117647059);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container-signup {
  background-color: #F4F3EA;
  border-radius: 10px;
  padding: 20px;
  padding-top: 5px;
  margin: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 470px;
  width: 100%;
  display: none;
  transition: all 0.2s ease-out;
  opacity: 0;
  margin-top: 90px;
}

.form-container {
  background-color: #F4F3EA;
  border-radius: 10px;
  padding: 40px;
  margin: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  transition: all 0.2s ease-out;
  opacity: 1;
}

.form-container-reset {
  background-color: #F4F3EA;
  border-radius: 10px;
  padding: 20px;
  padding-top: 20px;
  padding-top: 5px;
  margin: 10px;
  margin-top: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 470px;
  width: 100%;
  display: none;
  transition: all 0.2s ease-out;
  opacity: 0;
  margin-top: 0px;
}

.container h1 {
  margin-bottom: 5px;
  color: #D8B03E;
  font-size: 24px;
  font-weight: 600;
}

.container form {
  display: flex;
  flex-direction: column;
}

.container label {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
}

#email {
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #F4EBD0;
  color: #122620;
  font-size: 16px;
  font-weight: 500;
}

#signup-number {
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #F4EBD0;
  color: #122620;
  font-size: 16px;
  font-weight: 500;
}

input[type=text],
input[type=password] {
  padding: 8px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #F4EBD0;
  color: #122620;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  width: 77%;
}

#signup-number {
  padding: 8px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #F4EBD0;
  color: #122620;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  width: 77%;
}

.form-container button {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #D8B03E;
  color: #122620;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #122620;
  color: #F4EBD0;
}

.form-container-signup button {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #D8B03E;
  color: #122620;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.form-container-signup button:hover {
  background-color: #F4EBD0;
  color: #122620;
}

.sign-in-up {
  width: 200px;
  margin-top: 20px;
  margin-bottom: 0px;
}

.signup-box {
  width: 100%;
}

.signup-text {
  margin-top: 20px;
}

.signup-back-box {
  display: flex;
  width: 100%;
  height: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  margin-top: 10px;
  transition: all 0.1s ease-out;
}

.signup-back-box:hover {
  cursor: pointer;
  color: #D8B03E;
  background-color: #122620;
  border-radius: 25px;
}

.signup-back {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

#signup-back-arrow {
  margin-right: 5px;
  font-size: 0.6rem;
}

#signup-form {
  width: 100%;
}

.signupBox {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

#email {
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #F4EBD0;
  color: #122620;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  width: 77%;
}

.reset--form-box {
  position: relative;
}

.emailCheck {
  position: absolute;
  top: 43px;
  right: 55px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: default;
}

.emailCheckLogin {
  position: absolute;
  top: 38px;
  right: 50px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: default;
}

.resetBtn {
  width: 40%;
  height: 40px;
  margin: auto;
  border-radius: 5px;
  background-color: #D8B03E;
  color: #122620;
  font-weight: bold;
  font-family: var(--nav_font_family);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.resetBtn:hover {
  background-color: #122620;
  color: white;
}

#password {
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  background-color: #F4EBD0;
  color: #122620;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  width: 77%;
}

.login-error {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.error-message {
  position: absolute;
  bottom: -2px;
  color: #ff0033;
  font-size: 0.6em;
  transition: all 0.1s ease-out;
}

.checkBoxTos {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.checkBoxTos input {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  cursor: pointer;
}

#acceptTos-error {
  bottom: 15px;
  text-align: center;
  width: 100%;
  height: 10px;
}

.acceptTos--href {
  color: #e4c200;
}

#login-form {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.login--button {
  width: 100px;
}

#glemtLogin:hover {
  color: rgb(216, 184, 0);
}

@media screen and (max-width: 480px) {
  .form-container-signup {
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    max-width: 350px;
    width: 100%;
    margin-top: 85px;
  }
  .form-container {
    padding: 30px;
  }
  h1 {
    font-size: 20px;
  }
  input[type=text],
  input[type=password] {
    padding: 10px;
  }
  button {
    padding: 10px;
  }
  #acceptTos-error {
    bottom: 5px;
    text-align: center;
    width: 100%;
    height: 10px;
  }
  .error-message {
    bottom: -10px;
    font-size: 0.85rem;
    transition: all 0.1s ease-out;
  }
  .checkBoxTos {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #register {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .signupBox input {
    width: 85%;
    margin-bottom: 5px;
  }
  #signup-number {
    width: 85%;
  }
  .container label {
    font-weight: bold;
    margin-bottom: 2px;
    font-size: 14px;
  }
  .signupBox {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    height: 70px;
  }
  .emailCheck {
    top: 40px;
    right: 40px;
  }
  .emailCheckLogin {
    top: 33px;
    right: 50px;
  }
}
@media screen and (min-width: 480px) and (max-width: 1500px) {
  .error-message {
    font-size: 0.75em;
  }
}
#cart {
  color: #122620;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-direction: column;
  align-items: baseline;
  justify-items: center;
  align-items: center;
  width: 30%;
  position: fixed;
  height: 100vh;
  min-width: 500px;
  padding-top: 90px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  background-color: rgba(244, 243, 234, 0.631372549);
  border-left: 2px solid rgba(18, 38, 32, 0.7529411765);
  box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.3);
  font-family: var(--nav_font_family);
  overflow: scroll;
}

#PayNow {
  width: 65%;
  height: 45px;
  min-height: 45px;
  border-radius: 5px;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  margin-top: 13px;
  margin-bottom: 13px;
  outline: none;
  color: #122620;
  font-family: var(--nav_font_family);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--nav_font_color);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.hiddenCart {
  top: 0;
  right: -100vw;
  display: flex;
  opacity: 0;
  overflow: hidden;
}

.back {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  height: 75px;
  cursor: pointer;
}

.cart-back {
  width: 20vw;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 0.9rem;
  cursor: pointer;
}

.fa-arrow-left {
  margin-right: 30px;
}

.cart-back__text {
  color: #122620;
  font-family: var(--nav_font_family);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline;
  overflow: hidden;
  flex-shrink: 0;
}

.activeCart {
  right: 0;
  top: 0;
  display: flex;
  z-index: 0;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

#cart h2 {
  font-family: var(--nav_font_family);
  font-weight: 300;
  margin: 0;
  margin-top: 20px;
  color: #122620;
}

#cart ul {
  margin-top: 10px;
  margin-bottom: 20px;
  list-style-type: none;
  padding: 0;
}

#cart ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 27vw;
  height: 150px;
  align-items: center;
  background-color: transparent;
  border-radius: 15px;
  position: relative;
  opacity: 1;
  transition: all 0.25s ease-out;
}

#cart-items {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: auto;
  width: auto;
  overflow: hidden;
}

#cart ul li button {
  width: 90px;
  height: 100px;
  font-size: 1rem;
  color: #122620;
  background-color: transparent;
  position: absolute;
  left: -23px;
  transition: all 0.25s ease-out;
}

#cart ul li button:hover {
  border-style: none;
  color: #B68D40;
  cursor: pointer;
}

.cart-item__title {
  position: absolute;
  color: #122620;
  font-size: 1rem;
  letter-spacing: -1px;
  font-weight: 200;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
}

.cart-item-desc {
  position: absolute;
  color: #122620;
  left: 230px;
  white-space: nowrap;
  overflow: hidden;
  width: 280px;
  text-overflow: ellipsis;
  letter-spacing: -1px;
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.7;
  bottom: 70px;
}

.cart-item__price {
  position: absolute;
  color: black;
  margin-bottom: -84px;
  left: 230px;
  font-family: var(--nav_font_family);
  font-weight: 400;
}

.cart-item__salePrice {
  position: absolute;
  color: #b62d2d;
  text-decoration: line-through;
  bottom: 41px;
  left: 240px;
  font-family: var(--nav_font_family);
  font-weight: 200;
  opacity: 0.5;
  font-size: 0.7em;
}

.cart-item-inStock {
  font-family: var(--nav_font_family);
  font-weight: 400;
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 80px;
  height: 40px;
  right: 30px;
  bottom: 20px;
  justify-content: space-evenly;
  align-items: center;
  cursor: default;
}

@keyframes scroll2 {
  0% {
    left: 0px;
  }
  20% {
    left: 0px;
  }
  30% {
    left: -30px;
  }
  50% {
    left: -100px;
  }
  70% {
    left: -200px;
  }
  90% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes scroll2 {
  0% {
    left: 0px;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: -200%;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.cart-t-box {
  position: absolute;
  color: #122620;
  font-size: 1rem;
  letter-spacing: -1px;
  font-weight: 200;
  left: 230px;
  height: 35px;
  top: 26px;
  white-space: nowrap;
  overflow: hidden;
  width: 440px;
  text-overflow: ellipsis;
}

.marquee-anim-cart-t {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  animation-name: scroll2;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll2;
  -webkit-animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
}

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

#cart p {
  margin: 0;
}

#cart-total {
  font-weight: bold;
}

.quant-box {
  width: 95px;
  height: 30px;
  border: 1px solid #122620;
  right: 40px;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.cart_quant {
  background-color: transparent;
  height: 100%;
  border: none;
  color: #122620;
  width: 30px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  font-size: 0.7rem;
}

.quant-plus {
  height: 100%;
  width: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 0.7rem;
  padding-right: 5px;
  cursor: pointer;
}

.quant-minus {
  padding-left: 5px;
  height: 100%;
  width: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 0.7rem;
  cursor: pointer;
}

.cart-item-image {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 75px;
  cursor: pointer;
}

#cart-count {
  font-family: var(--nav_font_family);
  font-weight: 100;
}

#cart-total {
  font-family: var(--nav_font_family);
  font-weight: 400;
  font-size: 0.9rem;
}

#confirm-item-delete {
  width: 100%;
  height: 100%;
  z-index: 100;
  transition: all 0.5s ease-in-out;
  animation: all 1ms ease-in;
  border-radius: 5px;
  backdrop-filter: grayscale(30%) blur(3px);
  -webkit-backdrop-filter: grayscale(30%) blur(3px);
}

.custom-confirmation {
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#cart-discount {
  font-size: 0.9rem;
}

#cart-vat {
  font-size: 0.9rem;
}

#cart-final {
  font-size: 1.1rem;
}

@media only screen and (max-width: 1920px) and (min-width: 768) {
  #cart-items {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: auto;
    width: auto;
    overflow: hidden;
  }
  #cart ul li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 90%;
    height: 300px;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    position: relative;
    animation: all 1ms ease-in;
  }
}
@media only screen and (max-width: 768px) {
  .activeCart {
    display: flex;
    z-index: 0;
    opacity: 1;
    overflow: visible;
  }
  #cart {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 100vw;
    position: fixed;
    height: 100%;
    padding-top: 90px;
    transition: all 0.5s ease-in-out;
    min-width: 0;
    border-left: none;
    overflow-y: scroll;
  }
  .hiddenCart {
    right: -100vw;
    display: flex;
    opacity: 0;
    overflow: hidden;
  }
  #cart-items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    width: 94vw;
    overflow-y: scroll;
  }
  #cart ul {
    margin-top: 10px;
    margin-bottom: 20px;
    list-style-type: none;
    padding: 0;
  }
  #cart ul li {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    height: 200px;
    min-height: 200px;
    align-items: center;
    border-radius: 15px;
    position: relative;
  }
  #cart ul li button {
    width: 55px;
    height: 140px;
    font-size: 1rem;
    left: 0px;
  }
  .cart-item__title {
    font-size: 1.2rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cart-t-box {
    overflow: hidden;
    text-overflow: ellipsis;
    left: 55px;
    width: 260px;
  }
  .cart-item__price {
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    font-size: 1.3rem;
    left: 50vw;
    right: auto;
  }
  .cart-item__salePrice {
    bottom: 66px;
    left: 57vw;
    font-size: 0.85em;
    right: auto;
  }
  .cart_quant {
    font-size: 1rem;
  }
  .cart-item-image {
    width: 120px;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    left: 55px;
    bottom: 0;
  }
  .cart-item-desc {
    top: 50px;
    margin-top: 0px;
    width: 280px;
    letter-spacing: -1px;
    font-weight: 400;
    font-size: 1rem;
    left: 55px;
  }
  .back {
    height: 70px;
  }
  .cart-back {
    width: 100%;
  }
  .cart-item-inStock {
    width: 80px;
    height: 40px;
    right: auto;
    bottom: 75px;
    left: 50vw;
    margin-left: 45px;
  }
  .quant-box {
    right: auto;
    left: 50vw;
    margin-left: 13px;
    margin-bottom: -160px;
  }
  .quant-minus {
    font-size: 1rem;
  }
  .quant-plus {
    font-size: 1.1rem;
  }
  #cart-total {
    font-size: 1.2rem;
  }
  #cart-discount {
    font-size: 1.2rem;
  }
  #cart-vat {
    font-size: 1.2rem;
  }
  #cart-final {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 2300px) and (min-width: 1750px) {
  .cart-item__salePrice {
    bottom: 42px;
    left: 205px;
    font-size: 0.75em;
  }
  #cart-items {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: auto;
    width: 98%;
    overflow-y: scroll;
  }
  .cart-item-image {
    width: 120px;
    border-radius: 5px;
    left: 57px;
  }
  .cart-item-desc {
    left: 201px;
    width: 60%;
    bottom: 72px;
  }
  .cart-item__price {
    left: 200px;
  }
  .cart-t-box {
    left: 200px;
    width: 60%;
  }
  #cart ul li button {
    width: 40px;
    height: 140px;
    font-size: 1rem;
    left: 0px;
  }
  .cart-item-inStock {
    width: 70px;
    height: 40px;
    right: 5px;
    bottom: 20px;
  }
  .quant-box {
    right: 80px;
    width: 80px;
    margin-bottom: -67px;
  }
  .quant-minus {
    font-size: 0.8rem;
  }
  .quant-plus {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 1750px) and (min-width: 768px) {
  #cart-items > li {
    min-height: 155px;
  }
  #cart-items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    width: 98%;
    overflow-y: scroll;
  }
  #cart ul li {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    height: 160px;
  }
  .cart-t-box {
    width: 80%;
  }
  .cart-item-image {
    width: 120px;
    border-radius: 5px;
    left: 57px;
    margin-top: -30px;
  }
  .cart-item-desc {
    left: 200px;
    width: 60%;
    top: 28px;
  }
  .cart-item__price {
    left: 200px;
    margin-bottom: -5px;
  }
  .cart-item__salePrice {
    bottom: 85px;
    left: 205px;
    font-size: 0.85em;
  }
  .cart-t-box {
    left: 200px;
    width: 60%;
    top: 5px;
  }
  #cart ul li button {
    width: 40px;
    height: 140px;
    font-size: 1rem;
    left: 0px;
  }
  .cart-item-inStock {
    width: 50px;
    height: 40px;
    right: 4vw;
    bottom: 25px;
  }
  .quant-box {
    left: 200px;
    width: 80px;
    height: 27px;
    margin-bottom: -67px;
  }
  .quant-minus {
    font-size: 0.8rem;
  }
  .quant-plus {
    font-size: 0.9rem;
  }
}
.footer {
  transition: all 0.1s ease-in-out;
  width: 100vw;
  display: flex;
  background: #111111;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-family: var(--nav_font_family);
  bottom: 0;
}

.footer__ {
  transition: all 0.1s ease-in-out;
  width: 100vw;
  height: 400px;
  display: flex;
  background: #111111;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-family: var(--nav_font_family);
  bottom: 0;
}

.footer__kontakt {
  min-width: 200px;
  color: var(--nav_font_color);
  letter-spacing: -1px;
  width: 20vw;
}

.kontakt__text {
  color: var(--nav_font_color);
  letter-spacing: -1px;
  list-style-type: none;
  font-style: italic;
  font-weight: 200;
}

.kontakt__header {
  font-family: var(--nav_font_family);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -1px;
  list-style-type: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.footer__copyright {
  font-weight: 200;
  width: 20vw;
  height: 181px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.copyright__text_p {
  letter-spacing: -1px;
  padding: 0;
  margin-bottom: 0;
  color: var(--nav_font_color);
}

.copyright__text {
  letter-spacing: -1px;
  padding: 0;
  margin-bottom: 0;
  color: var(--nav_font_color);
  font-weight: 100;
}

.footer__partner {
  letter-spacing: -1px;
  width: 20vw;
  display: flex;
  flex-direction: column;
  align-items: end;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.partner__text {
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--nav_font_color);
  font-weight: 400;
  list-style-type: none;
}

.partner__link {
  color: rgba(255, 217, 0, 0.493);
  letter-spacing: -1px;
  list-style-type: none;
  font-weight: 100;
}

.link__partnerA {
  text-decoration: none;
  color: rgba(230, 197, 10, 0.699);
  transition: all 0.1s ease-in-out;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.link__partnerA:hover {
  text-decoration: underline;
  color: rgb(255, 217, 0);
  transition: all 0.1s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
    width: 100vw;
    min-width: 200px;
    font-size: 0.85rem;
    flex-direction: column;
    height: 400px;
    gap: 40px;
    margin-bottom: 30px;
  }
  .footer__ {
    width: 100vw;
    min-width: 200px;
    font-size: 0.85rem;
    flex-direction: column;
    height: 400px;
    gap: 40px;
  }
  .footer__kontakt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 100px;
  }
  .footer__partner {
    min-width: 200px;
    width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer__copyright {
    width: 270px;
    height: 50px;
    display: flex;
    order: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .copyright__text {
    margin: 0;
    letter-spacing: -1px;
  }
}
.stop-scrolling {
  height: 100%;
  overflow-y: hidden;
}

.body {
  background-color: #F4EBD0;
}

.footer {
  display: none;
}