@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

:root {
  --clr-primary-900: hsl(0, 0%, 16%);
  --clr-primary-800: hsl(162, 52%, 34%);
  --clr-accent: hsl(162, 61%, 85%);
  --clr-neutral-900: hsl(0, 0%, 0%);
  --clr-neutral-400: hsl(0, 2%, 53%);
  --clr-neutral-300: hsl(0, 4%, 37%);
  --clr-neutral-200: hsl(0, 0%, 98%);
  --clr-neutral-100: hsl(0, 0%, 100%);
  --form-control-color: hsl(162, 52%, 34%);
  --ff-primary: "Poppins", sans-serif;
  --ff-body: var(--ff-primary);
  --fw-regular: 400;
  --fw-semi-bold: 500;
  --fw-bold: 600;
  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
  --fs-xxxs: 0.875rem;
  /*14*/
  --fs-xxs: 1rem;
  /*16*/
  --fs-xs: 1.375rem;
  /*22*/
  --fs-s: 1.625rem;
  /*26*/
  --fs-m: 1.75rem;
  /*28*/
  --fs-l: 1.875rem;
  /*30*/
  --fs-xl: 2.3rem;
  /*36.8*/
  --fs-xxl: 3rem;
  /*48*/
  --fs-body: var(--fs-xxs);
  --fs-nav: var(--fs-xxs);
  --fs-button: var(--fs-xxs);
  --fs-very-small: var(--fs-xs);
  --fs-small: var(--fs-s);
  --fs-small-header: var(--fs-m);
  --fs-secondary-heading: var(--fs-l);
  --fs-primary-heading: var(--fs-xl);
}

@media (min-width: 50em) {
  :root {
    --fs-body: var(--fs-xxs);
    --fs-nav: var(--fs-xxs);
    --fs-secondary-heading: var(--fs-l);
    --fs-heading: var(--fs-xl);
    --fs-primary-heading: var(--fs-xxl);
  }
}

@media (max-width: 57em) {
  :root {
    --fs-primary-heading: var(--fs-l);
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  position: relative;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  --max-width: 1110px;
  --padding: 1rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2));
  margin-inline: auto;
}

.container-bg {
  --max-width: 1500px;
  background-color: hsl(162deg 61% 85% / 90%);
  --padding: 1rem;
  width: min(var(--max-width), 100% - (var(--padding) * 2));
  margin-inline: auto;
  border-radius: 20px;
}

.wider-container {
  --max-width: 1400px;
  --padding: 1rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2));
  margin-inline: auto;
}

.even-columns {
  display: grid;
  gap: 1rem;
}

.even-rows {
  display: grid;
  grid-auto-flow: row;
}

.low-opacity-txt {
  font-size: var(--fs-xxl);
  color: rgba(42, 134, 106, 0.07);
}

@media (min-width: 50em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

@media (max-width: 63em) {
  .even-columns-bikeshop {
    grid-auto-flow: row;
  }
}

/* general styling */

body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-primary-400);
}

main {
  padding-block: var(--size-800);
}

.button {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  padding: 1.25em 2.5em;
  font-weight: var(--fs-bold);
  font-size: var(--fs-button);
  line-height: 1;
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary-800);
  outline: none;
  border: none;
  transition: 0.5s ease-in-out;
  border-radius: 100vmax;
}

.button:hover,
.button:focus-visible {
  background-color: var(--clr-accent);
  color: var(--clr-primary-900);
}

.button[data-type="menu"] {
  font-size: var(--fs-xxxs);
  padding: var(--fs-xxxs) var(--fs-xxs);
}

.button[data-type="light"] {
  background-color: var(--clr-accent);
  color: var(--clr-primary-900);
  outline: none;
  border: none;
}

.button[data-type="light"]:hover,
.button[data-type="light"]:focus-visible {
  background-color: var(--clr-primary-800);
  color: var(--clr-primary-900);
}

.button[data-type="dark"] {
  background-color: var(--clr-primary-900);
  color: var(--clr-neutral-100);
  width: 100%;
  padding: 1em 2em;
}

.button[data-type="dark"]:hover,
.button[data-type="dark"]:focus-visible {
  background-color: var(--clr-primary-800);
  color: var(--clr-neutral-100);
}

.count-button {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  font-weight: var(--fs-bold);
  font-size: var(--fs-button);
  line-height: 1;
  color: var(--clr-neutral-100);
  background-color: var(--clr-neutral-900);
  outline: none;
  border: none;
  transition: 0.5s ease-in-out;
  border-radius: 3px;
}

button.tag {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  padding: 0.7em;
  font-weight: var(--fw-bold);
  font-size: 12px;
  line-height: 1;
  color: black;
  background-color: rgba(193, 240, 226, 0.7);
  outline: none;
  border: none;
  transition: 0.5s ease-in-out;
  border-radius: 2px;
  text-transform: uppercase;
}

/* navigation */

.primary-header {
  padding: var(--size-500);
  background-color: var(--clr-primary-900);
  color: var(--clr-neutral-100);
  cursor: pointer;
  z-index: 5;
  width: 100%;
  position: fixed;
}

.header-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
  margin-bottom: var(--size-500);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  align-items: center;
  font-size: var(--fs-xxxs);
  gap: clamp(var(--size-500), 5vw, var(--size-500));
  font-weight: var(--fw-semi-bold);
}

.nav-list a {
  text-decoration: none;
  color: var(--clr-neutral-100);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--clr-accent);
}

.nav-logo {
  /*max-width: calc(var(--size-600)*1.1);*/
  max-width: calc(var(--size-600) * 2.3);
}

.icon-hamburger {
  max-width: var(--size-600);
}

.social-links {
  display: flex;
  gap: var(--size-300);
  flex-direction: row;
}

[data-type="social-links"] {
  display: none;
}

[data-type="social-links"] img {
  max-width: var(--size-700);
}

/*-------------------------------------------------------*/

.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  height: auto;
}

.header .menu > .menu-item {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
}

.header .menu .menu-item::after {
  content: "";
  width: 0;
  height: 0.1rem;
  border-radius: 0.2rem;
  position: absolute;
  left: 1rem;
  top: 1.3rem;
  background-color: var(--clr-accent);
  transition: width 200ms ease-in;
}

.header .menu .menu-item.no-animation:hover::after,
.header .menu .menu-item.no-animation:focus::after {
  height: 0rem;
  width: 0px;
}

.header .menu .menu-item:hover::after,
.header .menu .menu-item:focus::after {
  width: 85%;
}

.header .menu > .menu-item > a {
  display: block;
}

.header .opened-menu {
  position: relative;
  display: none;
  cursor: pointer;
  border: 0;
  opacity: 0;
  visibility: hidden;
  background: 0 0;
  transform: rotate(0deg);
  transition: all 0.35s ease;
}

.header .closed-menu {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  outline: none;
  background: 0 0;
}

.header .closed-menu img.closed-icon {
  display: block;
  width: 1rem;
  height: auto;
}

.header .overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media (max-width: 80em) {
  .header .menu > .menu-item {
    padding: 0 0.3rem;
    transition: all 1s ease-in;
  }
}

@media (max-width: 63em) {
  .nav-logo {
    max-width: calc(var(--size-600) * 1.5);
  }

  .wider-container {
    --max-width: 1210px;
    --padding: 1rem;

    width: min(var(--max-width), 100% - (var(--padding) * 0.5));
    margin-inline: auto;
  }

  .header .wrapper {
    gap: 0rem;
  }
}

.address {
  background-color: var(--clr-accent);
}

.address-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-400);
  justify-content: center;
  align-items: center;
}

.address-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--size-300);
  font-size: var(--fs-xxxs);
}

.address-info img {
  width: var(--size-400);
  height: var(--size-400);
}

.phone-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: var(--size-900);
  cursor: pointer;
  -webkit-box-shadow: 4px 0px 44px 20px rgba(198, 202, 202, 0.27);
  -moz-box-shadow: 4px 0px 44px 20px rgba(198, 202, 202, 0.27);
  box-shadow: 4px 0px 44px 20px rgba(198, 202, 202, 0.27);
  z-index: 100000;
  border-radius: 50%;
  transition: transform 250ms;
  display: none;
}

.phone-cta:hover {
  transform: translateY(-1rem);
  transform: scale(1.175);
}

/*#page-wrapper {
  padding-block: var(--size-900);
}*/

.hero-section {
  position: relative;
  background: var(--clr-primary-900);
  margin-bottom: var(--size-900);
}

.hero-section::before {
  content: url("images/circles-full-opacity.svg");
  position: absolute;
  left: -60px;
}

.hero-section::after {
  content: url("images/circles-full-opacity.svg");
  position: absolute;
  right: 0px;
  bottom: 30px;
  overflow: hidden;
}

@media (max-width: 63em) {
  .hero-section::after,
  .hero-section::before {
    content: "";
  }

  .hero-section {
    padding-top: 0 !important;
  }

  .phone-cta {
    display: block;
  }
}

.headings-column-hero {
  margin-top: var(--size-900);
  margin-right: var(--size-200);
}

.hero-bike {
  box-shadow: 33px 33px 0px -12px var(--clr-primary-800);
  border-radius: 20px;
  transform: translateY(3.5rem);
}
/*
.hero-section::before {
  content: "";
  background-image: url('./images/bg-forest.jpg');
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.4;
}
*/
.hero-section .container {
  position: relative;
}

.social-links-main-menu ul {
  display: flex;
  gap: var(--size-200);
}

.social-links-main-menu img {
  min-width: var(--size-200);
  max-width: var(--size-600);
  height: auto;
}

.social-links-main-menu img:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@media (max-width: 68.5em) {
  main {
    margin-top: 0;
  }

  .address {
    display: none;
  }

  [data-type="social-links"] {
    display: flex;
    align-items: center;
  }

  .social-links-main-menu {
    display: none;
  }

  [data-type="social-links"] img {
    max-width: var(--size-600);
  }

  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .header .navbar {
    position: fixed;
    top: 0;
    left: -18rem;
    width: 18rem;
    height: 100%;
    padding: 1rem 0;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .header .navbar.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header .menu {
    width: 100%;
    height: auto;
    margin-top: 3.5rem;
  }

  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }

  .header .menu > .menu-item > a {
    padding: var(--size-500);
    color: #121212;
    border-bottom: 1px solid #f2f2f2;
  }

  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #f2f2f2;
  }

  .header .menu .menu-item::after {
    content: none;
  }

  .header .opened-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .header .closed-menu {
    position: absolute;
    display: flex;
    top: 1rem;
    right: 0.5rem;
  }

  .nav-list {
    display: grid;
    gap: var(--size-200);
    text-align: center;
    font-weight: var(--fw-bold);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--clr-neutral-900);
  }

  .address-wrapper {
    gap: var(--size-200);
  }
}

/* Utility classes */
.opened {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.justify-end {
  justify-self: end;
}

.template-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

@media (max-width: 55em) {
  .template-columns {
    grid-template-columns: 1fr;
  }

  .img-wrapper {
    display: none;
  }
}

@media (max-width: 40em) {
  [data-type="social-links"] img {
    max-width: calc(var(--size-500) * 1.1);
  }
}

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-primary-800 {
  color: var(--clr-primary-800);
}

.text-accent-400 {
  color: var(--clr-accent);
}

.text-accent-100 {
  color: var(--clr-accent);
}

.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.text-neutral-300 {
  color: var(--clr-neutral-300);
}

.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-accent-400 {
  background-color: var(--clr-accent);
}

.bg-accent-100 {
  background-color: var(--clr-accent);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-semi-bold {
  font-weight: var(--fw-semi-bold);
}

.fw-regular {
  font-weight: var(--fw-regular);
}

.fs-primary-heading {
  font-size: var(--fs-primary-heading);
  line-height: 1.1;
  z-index: 10;
  text-transform: uppercase;
}

.fs-secondary-heading {
  font-size: var(--fs-secondary-heading);
}

.fs-small-header {
  font-size: var(--fs-small-header);
}

.fs-very-small {
  font-size: var(--fs-very-small);
}

.fs-small {
  font-size: var(--fs-small);
}

.fs-heading {
  font-size: var(--fs-heading);
}

.padding-block-300 {
  padding-block: var(--size-200);
}

.padding-block-400 {
  padding-block: var(--size-400);
}

.padding-block-500 {
  padding-block: var(--size-500);
}

.padding-block-700 {
  padding-block: var(--size-700);
}

.padding-block-900 {
  padding-block: var(--size-900);
}

.display-sm-none {
  display: none;
}

.m-bottom {
  margin-bottom: var(--size-600);
}

.m-top {
  margin-top: var(--size-400);
}

.m-top-xl {
  margin-top: var(--size-900);
}

.m-bottom-sm {
  margin-bottom: var(--size-400);
}

.m-bottom-xl {
  margin-bottom: var(--size-900);
}

.flex {
  display: flex;
}

.text-center {
  text-align: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.small-gap {
  gap: var(--size-400);
}

.bigger-gap {
  gap: var(--size-700);
}

.link {
  text-decoration: var(--clr-accent) solid underline;
  color: var(--clr-primary-800);
  text-decoration-thickness: 1.2px;
}

@media (min-width: 50em) {
  .display-md-inline-flex {
    display: inline-flex;
  }
}

/*2nd section*/
.offer-photo {
  width: 33rem;
  box-shadow: 33px 33px 0px -12px var(--clr-primary-800);
  border-radius: 20px;
}

.offer-photo2 {
  width: 20rem;
  -webkit-box-shadow: -33px 33px 0px -12px var(--clr-primary-800);
  -moz-box-shadow: -33px 33px 0px -12px var(--clr-primary-800);
  box-shadow: -33px 33px 0px -12px var(--clr-primary-800);
  border-radius: 20px;
}

@media (max-width: 50em) {
  .offer-photo2 {
    margin-top: var(--size-500);
  }
}

/* 3rd section */
.bike-photo {
  width: 20rem;
  height: auto;
  margin: 0 auto var(--size-400);
}

.bikes-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: self-end;
  -ms-flex-align: self-end;
  align-items: self-end;
}

.bikes-wrapper-category {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  -webkit-box-align: self-end;
  -ms-flex-align: self-end;
  align-items: self-end;
}

.bikes-wrapper-category a {
  align-self: flex-end;
}

.bikes-wrapper-category a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

.bikes-wrapper div {
  align-self: flex-end;
}

.note {
  color: var(--clr-primary-900);
  text-decoration: underline;
  text-underline-offset: 0.3em;
  cursor: pointer;
  font-weight: bold;
  display: block;
  text-align: right;
}

@media (max-width: 50em) {
  .bikes-wrapper,
  .bikes-wrapper-category {
    justify-content: center;
  }
}

.arrow {
  margin-left: 1rem;
  display: inline;
}

/* 4th section */
.prices-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 50em) {
  .prices-wrapper {
    justify-content: center;
  }
}

p.offer {
  font-size: var(--fs-m);
}

table {
  border-collapse: collapse;
  background-color: hsla(162, 49%, 96%, 1);
}

td,
th {
  text-align: center;
  padding: var(--size-400) var(--size-600);
}

.rounded-corners-left {
  border-radius: 10px 0 0 0;
}

.rounded-corners-right {
  border-radius: 0 10px 0 0;
}

thead th {
  font-weight: var(--fw-semi-bold);
  background-color: var(--clr-accent);
}

.questions {
  background: linear-gradient(
    270.08deg,
    #9ae2cd 0.07%,
    rgba(154, 226, 205, 0.85) 74.47%,
    rgba(154, 226, 205, 0.44) 99.14%
  );
  position: relative;
}

.questions::before {
  content: url("images/circles.svg");
  /* with class ModalCarrot ??*/
  position: absolute;
  z-index: 1000;
  /*a number that's more than the modal box*/
  left: -50px;
  top: 10px;
}

.questions img {
  width: var(--size-900);
  height: var(--size-900);
}

.questions .telephone {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* form */
.contact-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: var(--size-700) 0;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.contact-column {
  border: 1px solid rgba(42, 134, 106, 0.11);
  border-right: 0;
}

.contact-info p {
  font-size: var(--fs-xxxs);
}

form {
  margin: 0 auto;
  width: 100%;
}

.img-wrapper {
  background-size: cover;
  background-image: url("/images/contact.jpg");
  border-radius: 20px;
  -webkit-box-shadow: 13px 13px 0px 2px var(--clr-primary-800);
  -moz-box-shadow: 13px 13px 0px 2px var(--clr-primary-800);
  box-shadow: 13px 13px 0px 2px var(--clr-primary-800);
}

.form-group {
  position: relative;
  display: flex;
  width: 100%;
}

.form-group .form-field {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 1%;
  margin-top: 0;
  margin-bottom: 0;
}

.form-group .span {
  width: 2rem;
  background: #c0f0e2;
  padding: 1em 2em;
  border-radius: 0px 15px 15px 0;
}

.span img {
  position: absolute;
  width: 2rem;
  right: 1em;
  top: 0.7rem;
}

.form-list {
  list-style: none;
  padding: 0;
  margin: var(--size-600) auto;
  width: min(1000px, calc(70% + 100px));
}

.form-list li:last-of-type {
  text-align: right;
}

form li + li {
  margin-top: 1em;
}

.form-list label {
  display: block;
  width: 100%;
  text-align: left;
}

.form-list input {
  background-color: var(--clr-neutral-200);
  border: none;
  border-radius: 15px;
  outline: none;
  padding: var(--size-400);
  width: 100%;
}

.form-list input[type="email"] {
  border-radius: 15px 0 0 15px;
}

textarea {
  resize: none;
  background-color: var(--clr-neutral-200);
  border: none;
  border-radius: 15px;
  outline: none;
  padding: var(--size-400);
  font-size: var(--fs-xxxs);
  width: 100%;
}

/* footer */
footer {
  background-color: var(--clr-primary-900);
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2.5;
}

@media (max-width: 50em) {
  .footer-nav {
    justify-content: flex-start;
  }

  form {
    box-shadow: 9px 7px 96px 2px rgba(42, 134, 106, 0.11);
  }

  .contact-info,
  .contact-column {
    padding: var(--size-300);
  }
}

h3.about {
  color: var(--clr-primary-800);
}

.footer-nav a {
  text-decoration: none;
  color: var(--clr-neutral-100);
}

.footer-nav a:hover {
  color: var(--clr-accent);
}

.svg-icon {
  width: var(--size-600);
  height: var(--size-600);
}

/*second page*/
.desc {
  color: var(--clr-neutral-900);
  padding: var(--size-500) var(--size-300);
}

.desc-font {
  font-size: var(--fs-xxs);
}

.desc-font-hero {
  color: var(--clr-neutral-900);
}

.phone-number {
  font-size: var(--fs-s);
}

.bikes-wrapper div {
  cursor: pointer;
}

/*third page*/
.desc-column {
  padding: var(--size-700) var(--size-500);
}

p.offer {
  font-size: var(--fs-s);
}

/*swiper*/
.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper {
  --max-width: 1110px;
  --padding: 1rem;
  width: min(var(--max-width), 100% - (var(--padding) * 2));
  height: 100%;
}

.swiper-pagination {
  position: static !important;
}

.swiper-pagination-bullet {
  border-radius: 0 !important;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  object-fit: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.pagination {
  position: relative;
  margin-top: 2em;
}

.pagination span {
  background-color: var(--clr-primary-800);
  width: 1.7rem;
  height: 1rem;
}

.accordion {
  width: 100%;
  max-width: 100%;
  margin: 2em auto;
}

.accordion-item {
  background-color: #fff;
  color: var(--clr-primary-900);
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.accordion-item-header {
  padding: 0.5em 3em 0.5em 0.3em;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem 0;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

ul li {
  list-style-type: none;
}

.shopping-item > img {
  max-width: 17rem;
  margin: auto;
}

.hvr-grow-shadow {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  padding: var(--size-400);
}

.title-bike {
  font-size: 20px;
}

.bike-desc {
  font-size: 14px;
}

.bag-item {
  font-size: 18px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-50 {
  flex: 50%;
  padding: 0 16px;
}

@media (max-width: 67em) {
  .col-50 {
    flex: 100%;
  }
}

.box-shadow input[type="text"] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.box-shadow input[type="text"]:focus {
  outline: 1px solid var(--clr-primary-800);
}

.box-shadow label {
  margin-bottom: 10px;
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.shopping-item {
  gap: var(--size-700);
}

.box-shadow {
  box-shadow: 0 1px 5px 0 rgb(26 26 26 / 5%);
  padding: 2rem;
}

.box-shadow hr {
  border-top: 0.5px solid var(--clr-accent);
  margin-bottom: 1rem;
}

.select {
  position: relative;
  display: inline-block;
  width: 50%;
}

.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 12px;
  outline: 0;
  border: 0px solid #000000;
  border-radius: 0px;
  background: #e5fbf4;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select select::-ms-expand {
  display: none;
}

.select select:hover,
.select select:focus {
  color: #000000;
  background: #e3f9f2;
}

.select select:disabled {
  opacity: 1;
  pointer-events: none;
}

.select_arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 7px;
  height: 7px;
  border: solid #7b7b7b;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
  border-color: #000000;
}

.select select:disabled ~ .select_arrow {
  border-top-color: #cccccc;
}

.delete-button {
  margin-left: var(--size-500);
}

.shopping-wrapper {
  gap: var(--size-400);
  justify-content: center;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.shopping-wrapper > div,
.shopping-wrapper .box-shadow {
  border-radius: 20px;
}

.shopping-item {
  display: flex;
  flex-direction: column;
}

@media (max-width: 61em) {
  .shopping-wrapper {
    grid-auto-flow: row;
  }

  .shopping-item {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 36em) {
  .shopping-item {
    flex-direction: column;
  }

  .bigger-gap {
    gap: var(--size-200);
  }
}

.header .menu > .menu-item > a .expand {
  position: relative;
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
  margin-left: 0.35rem;
  border: none;
  outline: none;
  pointer-events: none;
}

.header .menu > .menu-item > a .expand:before,
.header .menu > .menu-item > a .expand:after {
  position: absolute;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #121212;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .menu > .menu-item > a .expand::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item > .sub-menu {
  position: absolute;
  right: 20%;
  top: 1.7rem;
  width: 15rem;
  height: auto;
  padding: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  border-top: 6px solid var(--clr-accent);
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(1rem);
  transition: all 0.4s ease;
  z-index: 9999;
}

.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .opened-menu span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: #121212;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header .closed-menu {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  outline: none;
  background: 0 0;
}

.header .closed-menu img.closed-icon {
  display: block;
  width: 1rem;
  height: auto;
}

@media only screen and (min-width: 993px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .header .menu > .menu-item-has-children:hover > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media only screen and (max-width: 992px) {
  .header .navbar.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header .menu {
    width: 100%;
    height: auto;
    margin-top: 3.5rem;
  }

  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }

  .header .menu > .menu-item-has-children > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #f2f2f2;
  }

  .header .menu > .menu-item > a .expand::before,
  .header .menu > .menu-item > a .expand::after {
    background: #121212;
  }

  .header .menu > .menu-item-has-children.active > a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .header .menu > .menu-item > .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  .header .opened-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .header .closed-menu {
    position: absolute;
    display: flex;
    top: 1rem;
    right: 0.5rem;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top: 10rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(210, 210, 210, 0.31);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-top: 6px solid var(--clr-accent);
  width: 60%;
  text-align: center;
}

.modal-content .button {
  font-size: 14px;
}

@media (max-width: 70em) {
  .modal {
    padding-top: 15rem;
  }

  .modal-content {
    width: 100%;
  }
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.shopping-bag .button {
  font-size: var(--fs-xxxs);
  padding: 1rem;
  width: 100%;
  display: block;
}

.shopping-bag-menu {
  width: 1.8rem;
  transform: translateY(6px);
}

.button.shop {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
}

.full-width-button {
  width: 100%;
  display: block;
}

.full-width {
  width: 100%;
}

@media (max-width: 63em) {
  .shopping-bag.main-menu {
    display: none !important;
  }
}

.shopping-bag-menu {
  transform: translateY(9px);
}

.empty-basket-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: var(--size-600);
}

.empty-basket-container button {
  font-size: 14px;
}

img.empty-basket {
  width: 13rem;
  background: hsl(160, 43%, 93%);
  border-radius: 100vmax;
  padding: 2rem;
}

.badge::after {
  content: attr(value);
  font-size: 12px;
  color: #fff;
  background: var(--clr-primary-800);
  border-radius: 100vmax;
  padding: 0 5px;
  position: relative;
  left: -8px;
  top: -10px;
  opacity: 0.9;
}

@media (max-width: 63em) {
  img.empty-basket {
    margin-top: var(--size-800);
  }

  .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--size-400);
  }
}

li {
  list-style-type: none;
}

.form-control + .form-control {
  margin-top: 1em;
}

input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--form-background);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.05em solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: CanvasText;
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.input-wrapper {
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  place-items: center;
  justify-content: flex-start;
}

.man {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  object-position: 30% 55%;
  opacity: 1;
}

#completion {
  width: 60%;
  height: 60%;
  margin: auto;
  display: block;
}

.st0 {
  fill: #51bba0;
  fill-opacity: 0.4;
}

.st1 {
  fill: var(--clr-accent);
  fill-opacity: 0.9;
}

.st2 {
  fill: var(--clr-primary-800);
}

@keyframes hideshow {
  0% {
    opacity: 0.2;
  }
  10% {
    opacity: 0.2;
  }
  15% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

#cirkel {
  animation: hideshow 0.4s ease;
}

#check {
  animation: hideshow 0.4s ease;
}

#stars {
  animation: hideshow 1s ease;
  opacity: 0.9;
}

@keyframes hideshow {
  0% {
    transform: scale(0.2);
    transform-origin: initial;
  }
  100% {
    transform: scale(1);
    transform-origin: initial;
  }
}

@keyframes draaien {
  0% {
    transform: rotate(40deg);
    transform-origin: initial;
  }
  100% {
    transform: scale(0deg);
    transform-origin: initial;
  }
}

#check {
  animation: draaien 0.8s ease;
}

@keyframes transparant {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#check {
  animation: transparant 2s;
}

.motor-attribs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: var(fs-xs);
  gap: 2rem;
  line-height: 28px;
}

.motor-attribs-item:not(:last-child) {
  border-right: 1px solid #d8d8d8;
}

.motor-attribs-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 64em) {
  .motor-attribs-item {
    font-size: 13px;
  }

  .bikes-wrapper-category a {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .tag {
    margin-top: var(--size-200);
  }

  .motor-attribs-item:not(:last-child) {
    border-right: 0px;
  }
}

.tag {
  margin-top: var(--size-200);
}
.motor-attribs h4 {
  text-transform: uppercase;
  font-weight: var(--fw-semi-bold);
}

/*
.pricing-options {
  background-color:lightgrey;
  display:inline-flex;
  padding:var(--size-300);
  border-radius:50px;
  border: 1px solid var(--clr-accent);
  background: hsla(162, 49%, 96%, 1);
  gap:var(--size-300);
}
button.pricing-option {
  background-color: var(--clr-primary-900);
  color:white;
  outline:none;
  border:none;
  padding:var(--size-300);
  border-radius:50px;
}*/

.toggle {
  display: flex;
  width: fit-content;
  padding: 0.5rem;
  background-color: hsla(162, 49%, 96%, 1);
  border-radius: 100vmax;
  border: 1px solid var(--clr-accent);
}

.toggle > input {
  display: none;
}

.toggle > label {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border-radius: inherit;
  color: black;
  width: unset;
  cursor: pointer;
}

.toggle input:checked + label {
  background-color: var(--clr-primary-900);
  color: white;
}

@media (max-width: 50em) {
  .toggle label {
    font-size: calc(var(--fs-xxxs) * 0.9);
  }
}

tr:nth-child(2n + 1) {
  background-color: white;
}
tr:first-child {
  background-color: var(--clr-primary-800);
  color: white;
  font-weight: var(--fw-semi-bold);
}

@media (max-width: 50em) {
  th,
  tr,
  td {
    font-size: calc(var(--fs-xxxs) * 0.9);
  }

  td,
  th {
    padding: var(--size-400);
  }
}

@media (max-width: 40em) {
  td,
  th {
    padding: var(--size-400) var(--size-200);
  }
}

.odd-margin {
  margin-top: -32px;
}

[data-action]:hover {
  cursor: pointer;
}

.box-shadow input[type="password"] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.table-small-head {
  font-size: 14px;
}
.table-small-head td {
  padding: var(--size-200) var(--size-400);
}

.order-finish td {
  background-color: hsl(0deg 100% 91%);
}

.modal-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  border-top: 10px solid var(--clr-primary);
  min-width: 170px;
  max-width: 450px;
  padding: 1.3rem;
  min-height: 250px;
  position: absolute;
  z-index: 2;
  top: 15vh;
  background-color: white;
  border-radius: 15px;
}

.modal-info .agree-btn {
  background-color: var(--clr-primary-900);
  display: inline;
}

.modal-info .flex {
  display: flex;
  justify-content: flex-end;
}

.btn-close {
  padding: 0.5rem 0.7rem;
  color: var(--clr-primary-900);
  background: #eee;
  border: none;
  border-radius: 50%;
}

.overlay-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.hidden {
  display: none;
}

@media screen and (max-width: 1080px) {
  .show-mobile {
    display: flex; /* Pokaż flagi na gorze na małych ekranach */
	justify-content: center;
  }

  .hide-mobile {
    display: none;
  }
}

/*TABLE*/

.responsive-table li {
  border-radius: 3px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f8f8f8;
}

.responsive-table .table-header {
  background-color: var(--clr-primary-900);
  color: white;
  font-size: 12px;
  border-radius: 7px 7px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.responsive-table .table-row {
  background-color: #fff;
}

.responsive-table img {
  max-width: 16px;
}

.table-row {
  font-size: 13px;
}

.responsive-table .col-order,
.responsive-table .col-rent,
.responsive-table .col-phone,
.responsive-table .col-address {
  flex-basis: 15%;
  display: flex;
  gap: 0.5rem;
  align-items: end;
}

.responsive-table .col-rent {
  flex-basis: 13%;
}

.responsive-table .col-email,
.responsive-table .col-bikes {
  flex-basis: 20%;
  display: flex;
  gap: 0.5rem;
  align-items: end;
}

.responsive-table .col-bikes {
  flex-basis: 22%;
}

.responsive-table .bikes-orders {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

p.bike-order {
  padding: 0.3rem;
  background-color: #f8e3d3;
  font-weight: var(--fw-semi-bold);
  border-radius: 4px;
}

.col-bikes .bike-order:nth-child(2n) {
  background-color: #f8e3d3;
}

.col-bikes .bike-order:nth-child(2n + 1) {
  background-color: #ede7fb;
}

@media all and (max-width: 1340px) {
  .responsive-table .table-header {
    font-size: 11px;
  }
}

@media all and (max-width: 970px) {
  .responsive-table .table-header {
    display: none;
  }

  .responsive-table li {
    display: block;
  }

  .responsive-table .col {
    flex-basis: 100%;
  }

  .responsive-table .col {
    display: flex;
    padding: 10px 0;
  }

  .responsive-table .col:before {
    color: #6c7a89;
    padding-right: 10px;
    content: attr(data-label);
    flex-basis: 40%;
  }
}

#datepicker {
  background-color: #fff;
  padding: 0.4rem;
  color: #000;
  font-size: 13px;
  outline: none;
  -webkit-box-shadow: 0px 10px 20px rgba(200, 200, 200, 0.15);
  box-shadow: 0px 10px 20px rgba(200, 200, 200, 0.15);
  -webkit-border-radius: 6px;
  border-radius: 6px;
  outline: none;
  border: 1px solid #f8f8f8;
  min-width: 13rem;
}

.input-icon {
  background: url("images/fi_arrow.svg") no-repeat 100%;
}

@media (max-width: 30em) {
  .date-range {
    flex-direction: column;
    display: flex;
  }
}

.hover-effect {
  transition: transform 0.2s ease-in-out;
  z-index: 4;
}

.hover-effect:hover {
  transform: scale(1.1);
}

.gs_reveal2 {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.unit[data-time="1677020400000"] {
  background-color: red;
}

@media (max-width: 63em) {
  .img_container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
}

.small-font {
  font-size: var(--fs-xxxs);
}

.form-control-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-control-checkbox label {
  position: relative;
  display: block;
  padding-left: 30px;
  cursor: pointer;
}

.form-control-checkbox label:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 0;
  display: block;
  height: 20px;
  width: 20px;
  background-color: var(--clr-accent);
  border-radius: 3px;
}

.form-control-checkbox label:hover:before {
  background-color: var(--clr-primary-800);
}

.form-control-checkbox label:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 39%;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.form-control-checkbox input:checked + label:after {
  opacity: 1;
}

.traductor-mobile {
  background-color: var(--clr-primary-900);
  width: 100%;
}