:root {
  --color-link: pink;
  --color-link-hover: #ff9aac;
  --color-text: #555;

  --color-grey-scale: silver;
  --color-accent: pink;
  --color-error: red;
  --color-warning: orange;
  --color-success: lightgreen;
  --color-background: white;
  --color-white: white;

  --sans-serif: 'Trebuchet MS', Helvetica, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-s: 1rem;
  --spacing-g: 1.25rem; /* 20px */
  --spacing-m: 2rem; /* 32px */
  --spacing-l: 4.5rem; /* 72px */
  --spacing-xl: 6rem; /* 96px */

  /* Font sizes */
  --font-size-s: 0.875rem; /* 14px */
  --font-size-m: 1rem;
  --font-size-l: 1.25rem; /* 20px */
  --font-size-xl: 1.875rem; /* 30px */
  --font-size-xxl: 2.25rem; /* 36px */
}

body {
  font-size: 18px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-family: var(--sans-serif);
  line-height: 1.5;
  color: #555;
  color: var(--color-text);
}

p {
  margin: 1.5em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  text-align: center;
}

h1 {
  font-size: 1.5em;
  /* 1.6 * 16 = 24 */
  line-height: 1;
  /* 24 / 24 */
  margin: 1em 0;
}

h2 {
  font-size: 1.375em;
  /* 1.375 * 16 = 22 */
  line-height: 1.0909;
  /* 24 / 22 */
  margin: 1.0909em 0;
}

h3 {
  font-size: 1.25em;
  /* 1.25 * 16 = 20 */
  line-height: 1.2;
  /* 24 / 20 */
  margin: 1.2em 0;
}

h4 {
  font-size: 1.125em;
  /* 1.125 * 16 = 18 */
  line-height: 1.3333;
  /* 24 / 18 */
  margin: 1.3333em 0;
}

h5 {
  font-size: 1em;
  line-height: 1.5;
  /* 1.5 * 16 = 24 */
  margin: 1.5em 0;
}

h6 {
  font-size: 1em;
  line-height: 1.5;
  /* 1.5 * 16 = 24 */
  margin: 1.5em 0;
}

small {
  font-size: 0.875em;
  /* .875 * 16 = 14 */
  line-height: 1.7143;
  /* 24 / 14 */
  margin: 1.7143em 0;
}

textarea {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-family: var(--sans-serif);
}

a {
  color: pink;
  color: var(--color-link);
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  text-decoration: none;
}

a:hover {
  color: #ff9aac;
  color: var(--color-link-hover);
}

body {
  margin: 0;
}

img {
  max-width:100%;
  height:auto;
}
button,
input[type='submit'],
.button {
  background-color: pink;
  background-color: var(--color-accent);
  border-radius: 24px;
  font-size: 0.875rem;
  font-size: var(--font-size-s);
  text-transform: uppercase;
  padding: 1rem 2rem;
  padding: var(--spacing-s) var(--spacing-m);
  border: none;
  color: white;
  color: var(--color-white);
  cursor: pointer;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.3s;
}
button > div, input[type='submit'] > div, .button > div {
    position: absolute;
    top: 0.9rem;
    left: 2rem;
    left: var(--spacing-m);
  }
button:hover, input[type='submit']:hover, .button:hover {
    background-color: #ff9aac;
    background-color: var(--color-link-hover);
  }
button:disabled, input[type='submit']:disabled, .button:disabled {
    background-color: silver;
    background-color: var(--color-grey-scale);
    cursor: default;
  }

input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
select,
textarea {
  font-size: 1em;
  border: none;
  border-bottom: 2px solid silver;
  border-bottom: 2px solid var(--color-grey-scale);
  padding: 0.5em;
  margin-top: 0.5em;
  outline: 0;
  width: 100%;
  box-sizing: border-box;
}

input[type='text']:focus, input[type='email']:focus, input[type='password']:focus, input[type='number']:focus, select:focus, textarea:focus {
    border-bottom: 2px solid pink;
    border-bottom: 2px solid var(--color-accent);
  }

textarea {
  border-left: 2px solid silver;
  border-left: 2px solid var(--color-grey-scale);
  border-bottom: 2px solid silver;
  border-bottom: 2px solid var(--color-grey-scale);
  resize: none;
}

textarea:focus {
    border-left: 2px solid pink;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid pink;
    border-bottom: 2px solid var(--color-accent);
  }

input[type='text'].input-error,
input[type='email'].input-error,
input[type='password'].input-error,
input[type='number'].input-error,
select.input-error {
  border-bottom: 2px solid red;
  border-bottom: 2px solid var(--color-error);
}
.required {
  position: relative;
}
.required input[type='text'],
  .required input[type='email'],
  .required input[type='password'],
  .required input[type='number'],
  .required select {
    background-image: url(/0b9e82a7f889bbe51af0.svg);
    background-position: center right 0.875em;
    background-repeat: no-repeat;
    background-size: 0.875em 0.875em;
  }
.required span {
    position: absolute;
    right: 0.2em;
    top: 0.2em;
    font-size: 0.875em;
    color: red;
    color: var(--color-error);
  }
.required,
.not-required {
  margin-top: 1.5rem;
}
.required label, .not-required label {
    opacity: 0;
    transition: 0.4s;
    font-size: 0.875em;
  }
.required .label, .not-required .label {
    opacity: 1;
  }
.quantity {
  position: relative;
}
.increment {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: white;
  background-color: var(--color-background);
  background-image: url(/c732911dcaf733b4949a.svg);
  background-position: 50% 50%;
  position: absolute;
  top: 0.6rem;
  right: 0.5rem;
  cursor: pointer;
}
.decrement {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: white;
  background-color: var(--color-background);
  background-image: url(/c732911dcaf733b4949a.svg);
  background-position: 50% 50%;
  transform: rotate(180deg);
  position: absolute;
  bottom: 0.6rem;
  right: 0.5rem;
  cursor: pointer;
}

video {
  max-width: 100%;
  height: auto;
}

.video-controls {
  display: flex;
  justify-content: space-between;
}

.video-controls .play,
  .video-controls .pause,
  .video-controls .mute,
  .video-controls .volume,
  .video-controls .full-screen {
    cursor: pointer;
  }

.video-controls .play span, .video-controls .pause span, .video-controls .mute span, .video-controls .volume span, .video-controls .full-screen span {
      width: 36px;
      height: 36px;
      display: inline-block;
      border: none;
    }

.video-controls .play span {
    background-image: url(/242a19687290913e6924.svg);
  }

.video-controls .pause span {
    background-image: url(/b80acc2f69e94011cbdf.svg);
  }

.video-controls .mute span {
    background-image: url(/1d83dd2983d975613250.svg);
  }

.video-controls .volume span {
    background-image: url(/f64823261de02e1f2e6b.svg);
  }

.video-controls .full-screen span {
    background-image: url(/7ea051c2e185e5e69368.svg);
  }

.video-controls input[type='range'] {
    cursor: pointer;
    background: transparent;
    -webkit-appearance: none;
  }

.video-controls input[type='range']:focus {
      outline: none;
    }

.video-controls input[type='range']::-webkit-slider-runnable-track {
      background: #555;
      background: var(--color-text);
      height: 0.2em;
      outline: none;
      border: none;
    }

.video-controls input[type='range']::-moz-range-track {
      background: #555;
      background: var(--color-text);
      height: 0.2em;
      outline: none;
      border: none;
    }

.video-controls input[type='range']::-ms-track {
      background: #555;
      background: var(--color-text);
      height: 0.2em;
      outline: none;
      border: none;
    }

.video-controls input[type='range']::-webkit-slider-thumb {
      background: #555;
      background: var(--color-text);
      cursor: pointer;
      margin-top: -0.5em;
      outline: none;
      -webkit-appearance: none;
      width: 1.2em;
      height: 1.2em;
      border-radius: 50%;
    }

.video-controls input[type='range']::-moz-range-thumb {
      background: #555;
      background: var(--color-text);
      cursor: pointer;
      margin-top: -0.5em;
      outline: none;
      -webkit-appearance: none;
      width: 1.2em;
      height: 1.2em;
      border-radius: 50%;
    }

.video-controls input[type='range']::-ms-thumb {
      background: #555;
      background: var(--color-text);
      cursor: pointer;
      margin-top: -0.5em;
      outline: none;
      -webkit-appearance: none;
      width: 1.2em;
      height: 1.2em;
      border-radius: 50%;
    }

.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.modalContainer {
  background-color: white;
  background-color: var(--color-background);
  border-radius: 8px;
  width: 88%;
  position: relative;
  padding: 3rem 0 2rem;
  box-sizing: border-box;
}

.modalContent {
  max-height: 79vh;
  overflow-y: scroll;
  padding: 0 1rem 2rem;
  box-sizing: border-box;
}

.closeIcon {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  cursor: pointer;
}

.alertDialogue {
  padding: 0 1rem;
  border-radius: 8px;
  position: fixed;
  z-index: 4;
  bottom: 0;
  left: -300px;
  margin: 1rem;
  animation: slide 0.5s forwards;
}

.alertDialogue p {
    display: flex;
    align-items: center;
  }

.alertDialogue svg {
    margin-right: 0.5rem;
    min-width: 24px;
  }

.warning,
.failure,
.success {
  background-color: white;
  background-color: var(--color-background);
}

.warning {
  border: 2px solid orange;
  border: 2px solid var(--color-warning);
}

.failure {
  border: 2px solid red;
  border: 2px solid var(--color-error);
}

.success {
  border: 2px solid lightgreen;
  border: 2px solid var(--color-success);
}

@keyframes slide {
  100% {
    left: 0;
  }
}



.loader-module__loader___NT3xz,
.loader-module__loader___NT3xz:after {
  border-radius: 50%;
}

.loader-module__loaderSmall___nqR99,
.loader-module__loaderSmall___nqR99:after {
  width: 1em;
  height: 1em;
}

.loader-module__loaderLarge___Hy1i7,
.loader-module__loaderLarge___Hy1i7:after {
  width: 5em;
  height: 5em;
}

.loader-module__loader___NT3xz {
  transform: translateZ(0);
  animation: loader-module__spin___u7nNN 0.9s infinite linear, loader-module__fade___md3P9 0.3s linear;
}

.loader-module__loaderSmall___nqR99 {
  border-top: 0.2em solid white;
  border-top: 0.2em solid var(--color-white);
  border-right: 0.2em solid white;
  border-right: 0.2em solid var(--color-white);
  border-bottom: 0.2em solid white;
  border-bottom: 0.2em solid var(--color-white);
  border-left: 0.2em solid transparent;
}

.loader-module__loaderLarge___Hy1i7 {
  border-top: 0.8em solid silver;
  border-top: 0.8em solid var(--color-grey-scale);
  border-right: 0.8em solid silver;
  border-right: 0.8em solid var(--color-grey-scale);
  border-bottom: 0.8em solid var(---color-grey-scale);
  border-left: 0.8em solid transparent;
}

@keyframes loader-module__spin___u7nNN {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-module__fade___md3P9 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


body {
  margin: 0;
  min-height: 100vh;
  overscroll-behavior: none;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.container {
  width: 88%;
  max-width: 1080px;
  margin: 0 auto 8rem;
}

ul {
  list-style: none;
}

ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
}

ul li:nth-child(odd) {
    background-color: var(--color-accent);
  }

label {
  margin-top: 2rem;
  display: block;
  /* color: #d33682; */
}



.signIn-module__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.signIn-module__wrapper form {
  padding: 0 1rem 1rem 1rem;
  min-width: 415px;
}

.navigation-module__navigation {
  display: flex;
  justify-content: space-around;
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--color-accent);
}

