:root {
  --primary: #d8ff3e;
  --secondary: #737373;
  --accent: #ea3323;
  --lightgreen: #a5de60;
  --darkgreen: #b3de07;
  --darkgray: #2b2e31;
  --dark: #3c3f42;
  --navbar-active-color: var(--primary);
  --heading-color: var(--secondary);
  --white: #fff;
  --black: #0d0d0d;
  --background: #10161b;
  --section-space: 2.5rem 0;
  --font-family: "Golos", sans-serif;
  --second-family: "Oswald", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --section-space: 1.5rem 0;
  }
}
@font-face {
  font-family: "Oswald";
  src: url("/static/fonts/Oswald-Light.woff2") format("woff2-variations"), url("/static/fonts/Oswald-Light.ttf") format("truetype-variations");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("/static/fonts/Oswald-SemiBold.woff2") format("woff2-variations"), url("/static/fonts/Oswald-SemiBold.ttf") format("truetype-variations");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Golos";
  src: url("/static/fonts/GolosText-Regular.woff2") format("woff2-variations"), url("/static/fonts/GolosText-Regular.ttf") format("truetype-variations");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Golos";
  src: url("/static/fonts/GolosText-Bold.woff2") format("woff2-variations"), url("/static/fonts/GolosText-Bold.woff2") format("truetype-variations");
  font-weight: 700;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

._lock,
html:has(.modal-open) {
  overflow: hidden;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--primary);
  background-color: var(--background);
}

a {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

button {
  background: transparent;
  border: unset;
  padding: 0;
}

ul {
  padding: 0;
  margin: 0;
}

main {
  flex: 1 0 auto;
  position: relative;
}

footer {
  flex-shrink: 0;
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
}

button:focus,
button:active,
a:focus,
a:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
  box-shadow: none !important;
  outline: none !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 78.125rem;
  margin: 0 auto;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
button:focus:not(:focus-visible),
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: unset !important;
  background-color: unset !important;
  border-color: unset !important;
}

.g-5 {
  --bs-gutter-y: 1.875rem;
  --bs-gutter-x: 1.875rem;
}
@media screen and (max-width: 991px) {
  .g-5 {
    --bs-gutter-y: 1.2rem;
    --bs-gutter-x: 1.2rem;
  }
}

.g-6 {
  --bs-gutter-y: 3rem;
  --bs-gutter-x: 1.875rem;
}
@media screen and (max-width: 991px) {
  .g-6 {
    --bs-gutter-y: 1.2rem;
    --bs-gutter-x: 1.2rem;
  }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

section {
  padding: var(--section-space);
}
section .container {
  z-index: 1;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

h1,
h2,
h3,
h5,
h4,
p {
  color: var(--primary);
}

.icon {
  width: 0.9375rem;
  height: 1.0625rem;
}

.full {
  gap: 1.25rem;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .full > .col {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

.equal {
  gap: 1.25rem;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .equal > .col {
    flex: 0 0 calc(33% - 1rem);
    max-width: calc(33% - 1rem);
  }
}

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

.btn {
  border-radius: 0.4375rem;
  padding: 0.75rem 1.625rem;
  line-height: 100%;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--background);
  text-transform: uppercase;
  border: 2px solid var(--primary);
}
.btn-primary {
  background-color: var(--primary);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:focus-visible {
  background-color: var(--background);
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
}
.btn-outline:hover, .btn-outline:active, .btn-outline:focus, .btn-outline:focus-visible {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: var(--background) !important;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  border-radius: 5rem;
  color: var(--secondary);
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus, .btn-secondary:focus-visible {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: unset;
}
.btn-long {
  padding: 1.8125rem 6.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: 1rem;
  font-family: "Oswald", sans-serif;
  color: var(--darkgreen);
  border-color: var(--darkgreen);
  background-color: var(--white);
}
.btn-long:hover {
  border-color: var(--background);
}
.btn__cart {
  width: 100%;
  margin-top: 1.4375rem;
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  padding: 1.125rem;
  border-radius: 0.625rem;
  background: var(--background);
  color: var(--darkgreen);
  border-color: var(--background);
}
.btn__cart:hover {
  border-color: var(--darkgreen);
  color: var(--darkgreen);
  background-color: transparent;
}
@media screen and (max-width: 991px) {
  .btn-long {
    padding: 1.4125rem 2.25rem;
    font-size: 1rem;
  }
}

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

.breadcrumbs {
  padding-bottom: 0;
}

.breadcrumb {
  font-family: "Oswald", sans-serif;
}

.breadcrumb-item a {
  font-size: 1.125rem;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--darkgreen);
  font-weight: 600;
}
.breadcrumb-item {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

.background-white {
  background-color: var(--white);
}

.background-dark {
  background-color: var(--background);
}

.content + .btn {
  color: var(--darkgreen);
}

.border-top {
  padding-top: 2.6875rem;
  border-color: var(--background) !important;
}

.border-bottom {
  border-color: var(--background) !important;
}

.heading h1 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--darkgreen);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.heading h2 {
  font-weight: 600;
  font-size: 2.25rem;
  text-transform: uppercase;
  color: var(--background);
  margin-bottom: 1.1875rem;
}
.heading p {
  font-size: 1.125rem;
  margin: 0;
  text-transform: uppercase;
  color: var(--background);
}
.heading .btn {
  min-width: 21.3125rem;
  margin-top: 2rem;
  padding: 1.4375rem 0;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  border-radius: 12px;
}
@media screen and (max-width: 991px) {
  .heading h1 {
    font-size: 2.25rem;
    margin-bottom: 0.4375rem;
  }
  .heading h2 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
  .heading p {
    font-size: 0.625rem;
  }
  .heading .btn {
    min-width: 18.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .heading h1 {
    font-size: 1.5rem;
    margin-bottom: 1.1875rem;
  }
  .heading h2 {
    font-size: 1rem;
    margin-bottom: 9px;
  }
}

.back {
  position: absolute;
  left: 0;
  top: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0;
}
.back:focus:not(:focus-visible) {
  background: transparent !important;
}
.back img {
  transform: rotate(180deg);
  width: 1.625rem;
  height: 1.375rem;
}

.text {
  font-size: 1.125rem;
  text-transform: initial;
}

.disabled {
  background: #bfbfbf !important;
}

.heading {
  justify-content: center;
  z-index: 1;
}

.content {
  max-width: 66.0625rem;
  margin-bottom: 3.125rem;
}
.content a {
  text-decoration: underline;
  color: var(--darkgreen);
}
.content h2 {
  margin-bottom: 2rem;
  font-size: 2.25rem;
}
.content p + h2 {
  margin-top: 4.125rem;
}
.content h3 {
  font-size: 1.5rem;
  color: var(--darkgreen);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.content h4 {
  font-size: 1.25rem;
  color: var(--darkgreen);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.content blockquote {
  font-size: 1.5rem;
  color: var(--darkgreen);
  font-weight: 600;
  text-align: left;
  margin: 2.375rem 0;
}
.content blockquote strong {
  color: var(--background);
}
.content blockquote {
  border-left: 0.875rem solid var(--darkgreen);
  padding-left: 1.5rem;
}
.content img {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 37.5rem;
  margin: 2rem 0;
}
.content ol {
  text-align: left;
  font-size: 1.125rem;
  color: var(--background);
}
.content ol ol {
  padding-left: 0.875rem;
  list-style-type: none;
}
.content ol ol li::before {
  content: counters(item, ".") " ";
  position: absolute;
  left: -1.9rem;
  font-weight: 400;
}
.content ol {
  counter-reset: item;
  list-style: none;
  padding-left: 1rem;
}
.content ol li {
  counter-increment: item;
  position: relative;
}
.content ol {
  font-family: "Golos";
}
.content ol li::before {
  content: counters(item, ".") ". ";
  position: absolute;
  left: -1rem;
  font-weight: 600;
}
.content p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  text-transform: initial;
}
.content hr {
  height: 1px;
  color: var(--background);
  opacity: 1;
  margin: 2.5rem 2rem;
}
.content hr:has(+ img) {
  margin-bottom: 1rem;
}
.content hr:last-child {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

p.text {
  text-transform: initial;
}

@media screen and (min-width: 768px) {
  .back {
    display: none;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 20.6px;
  }
  .container {
    max-width: 85.625rem;
  }
  section {
    padding: 4.375rem 0;
  }
}
@media screen and (max-width: 1250px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  .container {
    padding: 0;
    max-width: 45.125rem;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 16px;
  }
  .text {
    font-size: 1rem;
  }
  .content {
    margin-bottom: 2rem;
  }
  .content p + h2 {
    margin-top: 2.125rem;
  }
  .content h2 {
    font-size: 1rem;
    margin: 1rem 0;
  }
  .content h3,
  .content h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .content img {
    max-height: 25rem;
    margin: 1rem 0;
  }
  .content p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .content blockquote {
    font-size: 1rem;
    margin: 1rem 0;
    padding-left: 0.5rem;
    border-width: 5px;
  }
  .content li {
    font-size: 0.875rem;
  }
  .content hr {
    margin: 2rem 0.5rem;
  }
  .mt-2 {
    margin-top: 0.5rem;
  }
  .mt-3 {
    margin-top: 1rem;
  }
  .mt-4 {
    margin-top: 2rem;
  }
}
.btn-close {
  background: url("/img/icons/close.svg") center/2.0625rem 2.0625rem no-repeat;
  opacity: 1;
}

.btn-close:focus {
  box-shadow: none;
}

.btn-close:hover {
  opacity: 0.7;
}

.btn-close {
  width: 2.0625rem;
  height: 2.0625rem;
  position: absolute;
  right: 4.375rem;
  top: 4.375rem;
  padding: 0;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 26px;
  }
  .container {
    padding: 0;
    max-width: calc(100% - 32px);
    position: relative;
  }
  .btn-close {
    width: 1.5625rem;
    height: 1.5625rem;
    position: absolute;
    right: 1.375rem;
    top: 1.375rem;
    padding: 0;
    z-index: 99;
  }
}
@media screen and (max-width: 560px) {
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 420px) {
  html {
    font-size: 16px;
  }
}
.header {
  z-index: 1;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header * {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
.header__bottom {
  padding: 0.5625rem 0;
}
.header__bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4.25rem;
}
.header__bottom ul li {
  list-style-type: none;
}
.header__bottom ul a {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.header__bottom ul .active {
  color: var(--primary);
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.375rem;
  background: var(--darkgray);
}
.header__nav {
  padding: 0.5625rem 0;
}
.header__nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.375rem;
}
.header__nav li {
  list-style-type: none;
}
.header__nav a {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.header__search {
  flex: 1;
  max-width: 15rem;
  position: relative;
}
.header__search button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: unset;
  padding: 0;
  padding-right: 1rem;
  color: var(--primary);
  display: none;
}
.header__search {
  background-color: var(--dark);
}
.header__search input {
  padding: 0.5625rem;
  padding-left: 2.75rem;
  background: url("../img/icons/search.png") no-repeat 0.5rem center;
  background-size: 1.3125rem 1.3125rem;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: "Oswald", sans-serif;
  color: var(--secondary);
  text-transform: uppercase;
  background-color: transparent;
  border: unset;
}
.header__search input:focus, .header__search input::after {
  color: var(--secondary);
  outline: none;
  background-color: transparent;
}
.header__search input {
  color: var(--secondary);
}
.header__search input::-moz-placeholder {
  color: var(--secondary);
  font-style: normal;
  opacity: 1;
}
.header__search input::placeholder {
  color: var(--secondary);
  font-style: normal;
  opacity: 1;
}
.header__search input::-moz-placeholder {
  color: var(--secondary);
  font-style: normal;
  opacity: 1;
}
.header__search input:-ms-input-placeholder {
  color: var(--secondary);
  font-style: normal;
}
.header__search input::-webkit-input-placeholder {
  color: var(--secondary);
  font-style: normal;
}

.location__row {
  padding: 0.5625rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.location__row span {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}

.logo img {
  width: 6.5625rem;
  height: 5rem;
}

.burger__btn:hover {
  filter: brightness(0) saturate(100%) invert(99%) sepia(46%) saturate(2167%) hue-rotate(19deg) brightness(104%) contrast(115%);
}
.burger__btn img {
  width: 1.625rem;
  height: 1.125rem;
}
.burger__btn span {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.burger__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8125rem;
}

.header__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.header__buttons .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9375rem;
}
.shop__buttons .count {
  position: absolute;
  left: 0.875rem;
  bottom: -0.75rem;
  background: #ea3323;
  border-radius: 50%;
  width: 1.625rem;
  height: 1.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop__buttons .btn {
  padding: 0;
  background-color: transparent;
  border: unset;
  position: relative;
}
.shop__buttons .btn img {
  width: 1.875rem;
  height: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.375rem;
}
.shop__buttons .btn span {
  font-size: 0.88rem;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
}
.shop__buttons .btn:hover .text {
  color: var(--primary);
}

.login__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9375rem;
}

.burger__menu {
  font-family: "Oswald", sans-serif;
  position: fixed;
  left: -120vw;
  transition: 0.3s all ease;
  top: 0;
  z-index: 99999999;
  background: var(--background);
  width: 100%;
  height: 100vh;
  max-height: 56.25rem;
}
.burger__menu .container {
  padding-top: 5.3125rem;
  padding-bottom: 5.3125rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.opened .burger__menu {
  left: 0;
}

.menu__col:last-child {
  padding-left: 0.875rem;
  border-left: 2px solid var(--primary);
}

.menu__cols {
  padding-top: 2.5rem;
  padding-left: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.menu__cols ul {
  padding: 0;
  margin: 0;
}
.menu__cols li {
  list-style-type: none;
  padding-bottom: 1rem;
}
.menu__cols li:last-child {
  padding-bottom: 0;
}
.menu__cols a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
.menu__cols .active,
.menu__cols .hovered {
  color: var(--primary);
}

@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
  .header__bottom ul {
    gap: 1.625rem;
  }
  .header__bottom ul a {
    font-size: 0.875rem;
  }
  .header__buttons {
    gap: 1.125rem;
  }
  .header .btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.9375rem;
  }
  .burger__btn {
    gap: 0.5rem;
  }
  .burger__btn img {
    width: 0.9375rem;
    height: 0.6875rem;
  }
  .burger__btn span {
    font-size: 0.875rem;
  }
  .logo img {
    width: 3.6875rem;
    height: 2.8125rem;
  }
  .shop__buttons {
    gap: 1.75rem;
  }
  .shop__buttons .btn {
    padding: 0;
  }
  .shop__buttons .btn .text {
    display: none;
  }
  .shop__buttons .btn img {
    width: 1.5625rem;
    height: 1.4375rem;
    margin: 0;
  }
  .shop__buttons .btn .count {
    width: 0.9375rem;
    height: 0.9375rem;
    font-size: 0.5rem;
    bottom: -0.35rem;
  }
  .menu__cols a {
    font-size: 0.875rem;
  }
  .menu__cols li {
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .burger__menu .container {
    max-width: 100%;
  }
  .header__bottom {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 999999;
    padding: 0.4375rem 0;
    background-color: var(--background);
  }
  .header__bottom .container .logo {
    margin: 0 auto;
  }
  .header__search {
    max-width: 8rem;
  }
  .header__search input {
    padding-left: 1.75rem;
    background-size: 0.75rem 0.75rem;
  }
  .logo img {
    width: 3.6875rem;
    height: 2.8125rem;
  }
  .shop__buttons .btn img {
    width: 1.625rem;
    height: 1.625rem;
  }
  .burger__btn img {
    width: 1.875rem;
    height: 1.375rem;
  }
  .burger__btn span {
    display: none;
  }
  .burger__open img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(46%) saturate(2167%) hue-rotate(19deg) brightness(104%) contrast(62%);
  }
  .burger__open {
    margin-right: 1.875rem;
  }
  .burger__menu {
    top: 2.5rem;
    height: calc(100vh - 91px);
  }
  .burger__menu .container {
    width: 95%;
    margin: 0;
    padding: 0.5rem 0.875rem;
    overflow-y: scroll;
    padding-bottom: 4rem;
  }
  .burger__menu .container::-webkit-scrollbar {
    width: 12px;
    background: #ffffff;
    border-radius: 6px;
  }
  .burger__menu .container::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 6px;
  }
  .burger__menu .container::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 6px;
    border: 3px solid #ffffff;
  }
  .burger__menu .container {
    scrollbar-width: thin;
    scrollbar-color: #fff #ffffff;
    height: calc(100vh - 91px);
  }
  .burger__menu .burger__btn img {
    width: 1.225rem;
    height: 1.225rem;
  }
  .menu__cols {
    padding: 1rem 0 0;
    flex-direction: column;
    gap: 1rem;
  }
  .menu__cols li {
    padding-bottom: 1rem;
  }
  .menu__cols a {
    font-size: 1.25rem;
  }
  .menu__col:last-child {
    padding-left: 0;
    border: unset;
  }
  .opened .burger__open img {
    filter: unset;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__bottom a:hover {
    color: var(--primary);
  }
  .header__nav a:hover {
    color: var(--primary);
  }
  .location__row:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7494%) hue-rotate(143deg) brightness(105%) contrast(102%);
  }
  .burger__btn:hover {
    filter: brightness(0) saturate(100%) invert(99%) sepia(46%) saturate(2167%) hue-rotate(19deg) brightness(104%) contrast(115%);
  }
  .shop__buttons .btn:hover .text {
    color: var(--primary);
  }
  .menu__cols a:hover {
    color: var(--primary);
    text-decoration: underline;
  }
}
.cart .content {
  margin-bottom: 1rem;
}
.cart__top {
  border-top: 1px solid var(--background);
  border-bottom: 1px solid var(--background);
  padding: 0.75rem;
}
.cart__top button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.cart__top button img {
  width: 1.625rem;
  height: 1.625rem;
}
.cart__top button span {
  font-size: 1rem;
}
.cart__top button:focus {
  color: var(--background) !important;
}
.cart__item {
  padding: 1.8125rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  border-bottom: 1px solid var(--black);
}
.cart__item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  justify-content: flex-end;
  min-width: 17.9rem;
  max-width: 17.9rem;
}
.cart__item-image img {
  width: 5.625rem;
  height: 6.4375rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart__item-title {
  text-decoration: underline;
  color: var(--darkgreen);
  font-size: 1.125rem;
}
.cart__item-color {
  color: var(--black);
  font-size: 0.875rem;
  margin-top: 2.375rem;
}
.cart__item-prices {
  min-width: 9.25rem;
  max-width: 9.25rem;
}
.cart__item-price-registered {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  display: flex;
  flex-direction: column;
  max-width: 4.5625rem;
}
.cart__item-price-registered strong {
  color: var(--darkgreen);
  font-size: 1.125rem;
}
.cart__item-price-regular {
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  color: var(--black);
}
.cart__item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6875rem;
}
.cart__item-remove img {
  width: 1.625rem;
  height: 1.625rem;
}
.cart__item-remove:focus {
  color: var(--background) !important;
}
.cart__item-counter {
  border-radius: 0.4375rem;
  background-color: #f6f6f6;
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__item-counter .counter__btn {
  padding: 0 0.625rem;
  width: 2.5rem;
  font-size: 1.5rem;
}
.cart__item-counter .counter__btn:focus, .cart__item-counter .counter__btn:active {
  color: var(--black) !important;
}
.cart__item-counter .counter__value {
  padding: 0.75rem 0.4rem;
  font-size: 1.5rem;
  color: var(--black);
  width: 5.625rem;
  border: unset;
  text-align: center;
}
.cart__total {
  border-radius: 1rem;
  background: var(--primary);
  margin-top: 1.8125rem;
}
.cart__total p,
.cart__total strong {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.625rem;
}
.cart__total-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.cart__review {
  padding: 2.75rem 2.375rem 1.1875rem 2rem;
}
.cart__final {
  border-top: 1px solid var(--black);
}
.cart__final .cart__total-item {
  padding: 1.1875rem 2rem 1.75rem 2rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
.cart__final .cart__total-item p {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
}
.cart__final .cart__total-item strong {
  font-weight: 600;
  font-size: 1.5rem;
}
.cart__empty {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 991px) {
  .cart__item-info {
    min-width: 12.9rem;
    max-width: 12.9rem;
  }
  .cart__item-price-regular {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .cart__item {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .cart__item-image img {
    width: 4.625rem;
    height: 6.4375rem;
  }
  .cart__item-prices {
    display: flex;
    min-width: unset;
    max-width: unset;
    justify-content: space-between;
    width: 100%;
    order: 3;
    margin-top: 1rem;
  }
  .cart__item-actions {
    width: 100%;
    margin-top: 1rem;
  }
  .cart .cart__item-info,
  .cart .cart__item-image {
    width: 25%;
  }
  .cart .cart__item-counter .counter__value {
    width: 8.625rem;
  }
  .cart__review {
    padding: 1.75rem 1.375rem 1.1875rem 1rem;
  }
  .cart__final .cart__total-item {
    padding: 1.1875rem 1rem 0.75rem 1rem;
  }
}

.breadcrumbs {
  display: none;
}

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

input[type=number] {
  -moz-appearance: textfield;
}/*# sourceMappingURL=cart.css.map */