/*!
  * Basket v1.1.5
  * https://getbasket.co
  *
  * Copyright (c) 2022 Omar Quazi
  * Licensed under the MIT license
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&display=swap");
:root, [data-theme="light"] {
  --bg-color: #ffffff;
  --bg-grey: #f5f5f5;
  --grey: #f5f5f5;
  --text-color: #000000;
  --blue: #007aff;
  --blue-hover: #006ee6;
  --green: #34c759;
  --green-hover: #2fb350;
  --indigo: #5856d6;
  --indigo-hover: #4441d1;
  --orange: #ff9500;
  --orange-hover: #e68600;
  --red: #ff3b30;
  --red-hover: #ff2317;
  --dark: #333333;
  --dark-hover: #262626;
  --lightness-hsl: 90%;
}

[data-theme="dark"] {
  --bg-color: #000000;
  --bg-grey: #333333;
  --grey: #333333;
  --text-color: #ffffff;
  --blue: #0a84ff;
  --blue-hover: #2491ff;
  --green: #30d158;
  --green-hover: #45d669;
  --indigo: #5856d6;
  --indigo-hover: #6c6bdb;
  --orange: #ff9f0a;
  --orange-hover: #ffa924;
  --red: #ff453a;
  --red-hover: #ff5d54;
  --dark: #333333;
  --dark-hover: #404040;
  --lightness-hsl: 20%;
}

.bg-blue {
  background: var(--blue) !important;
}

.bg-green {
  background: var(--green) !important;
}

.bg-indigo {
  background: var(--indigo) !important;
}

.bg-orange {
  background: var(--orange) !important;
}

.bg-red {
  background: var(--red) !important;
}

.bg-dark {
  background: var(--dark) !important;
}

.bg-grey {
  background: var(--grey) !important;
}

.blockquote {
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem 2rem;
  background: hsl(0, 0%, var(--lightness-hsl));
  color: var(--text-color);
  overflow-x: auto;
  line-height: 1;
}

.blockquote *:last-child {
  margin-bottom: 0;
}

.blockquote-blue {
  border-left: 0.3rem solid var(--blue);
}

.blockquote-green {
  border-left: 0.3rem solid var(--green);
}

.blockquote-indigo {
  border-left: 0.3rem solid var(--indigo);
}

.blockquote-orange {
  border-left: 0.3rem solid var(--orange);
}

.blockquote-red {
  border-left: 0.3rem solid var(--red);
}

.blockquote-dark {
  border-left: 0.3rem solid var(--dark);
}

.blockquote-grey {
  border-left: 0.3rem solid var(--grey);
}

.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: 400;
  border-radius: 5px;
  border-color: transparent;
  text-decoration: none;
  margin-top: 10px;
}

.btn-rounded {
  border-radius: 30px;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.4em;
}

.btn-block {
  width: 100%;
  display: block;
  margin: 0.4em 0;
}

.btn-link {
  background: transparent !important;
  color: inherit;
}

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

.btn-light:hover {
  background: var(--grey);
}

.btn-blue {
  background: var(--blue);
  border: 0.5px solid var(--blue);
}

.btn-blue:hover {
  background: var(--blue-hover);
  border: 0.5px solid var(--blue-hover);
}

.btn-green {
  background: var(--green);
  border: 0.5px solid var(--green);
}

.btn-green:hover {
  background: var(--green-hover);
  border: 0.5px solid var(--green-hover);
}

.btn-indigo {
  background: var(--indigo);
  border: 0.5px solid var(--indigo);
}

.btn-indigo:hover {
  background: var(--indigo-hover);
  border: 0.5px solid var(--indigo-hover);
}

.btn-orange {
  background: var(--orange);
  border: 0.5px solid var(--orange);
}

.btn-orange:hover {
  background: var(--orange-hover);
  border: 0.5px solid var(--orange-hover);
}

.btn-red {
  background: var(--red);
  border: 0.5px solid var(--red);
}

.btn-red:hover {
  background: var(--red-hover);
  border: 0.5px solid var(--red-hover);
}

.btn-dark {
  background: var(--dark);
  border: 0.5px solid var(--dark);
}

.btn-dark:hover {
  background: var(--dark-hover);
  border: 0.5px solid var(--dark-hover);
}

.btn-grey {
  background: var(--grey);
  border: 0.5px solid var(--grey);
}

.btn-grey:hover {
  background: var(--grey-hover);
  border: 0.5px solid var(--grey-hover);
}

button:disabled {
  opacity: .8;
  color: white;
  border: unset;
  background: grey;
}

button:disabled:hover {
  background: grey;
  border: unset;
}

.card {
  width: 100%;
  margin: auto auto;
  border: 0.1rem solid hsl(0, 0%, var(--lightness-hsl));
}

.card .card-body {
  padding: 4rem 2rem;
  background: var(--bg-color);
  color: var(--text-color);
}

.card .card-body img {
  width: 100%;
}

.card-hover:hover {
  -webkit-box-shadow: 0 4px 8px 0 hsl(0, 0%, var(--lightness-hsl));
          box-shadow: 0 4px 8px 0 hsl(0, 0%, var(--lightness-hsl));
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

code {
  margin: 0 0.3rem;
  padding: 0.1rem 0.5rem;
  background: hsl(0, 0%, var(--lightness-hsl));
  color: var(--text-color);
  font-size: 0.95em;
  white-space: nowrap;
}

pre {
  background: hsl(0, 0%, var(--lightness-hsl));
  overflow-y: hidden;
  overflow-y-white-space: pre-line;
}

pre .pre-blue {
  border-left: 0.3rem solid var(--blue);
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 0.9rem 1.5rem;
  white-space: pre;
}

pre .pre-green {
  border-left: 0.3rem solid var(--green);
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 0.9rem 1.5rem;
  white-space: pre;
}

pre .pre-indigo {
  border-left: 0.3rem solid var(--indigo);
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 0.9rem 1.5rem;
  white-space: pre;
}

pre .pre-orange {
  border-left: 0.3rem solid var(--orange);
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 0.9rem 1.5rem;
  white-space: pre;
}

pre .pre-red {
  border-left: 0.3rem solid var(--red);
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 0.9rem 1.5rem;
  white-space: pre;
}

pre .pre-dark {
  border-left: 0.3rem solid var(--dark);
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 0.9rem 1.5rem;
  white-space: pre;
}

pre .pre-grey {
  border-left: 0.3rem solid var(--grey);
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 0.9rem 1.5rem;
  white-space: pre;
}

form {
  width: 100%;
}

label {
  cursor: pointer;
}

input {
  padding: 0.9rem 1rem 0.9rem 2rem;
}

input[type=email], input[type=file], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url] {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  border: 0;
  border-radius: 5px;
  background: var(--grey);
  color: var(--text-color);
}

input[type=checkbox], input[type=radio] {
  border: 0.5px solid black !important;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  outline: none;
  background: var(--grey);
  border-radius: 5px;
  padding: 0.5rem 1rem 0.5rem 1rem;
  margin: 0.9rem 0rem;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-color);
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-color);
  cursor: pointer;
}

.slider-small[type=range] {
  height: 1px;
}

.slider-blue[type=range]::-webkit-slider-thumb {
  background: var(--blue);
}

.slider-blue[type=range]::-moz-range-thumb {
  background: var(--blue);
}

.slider-green[type=range]::-webkit-slider-thumb {
  background: var(--green);
}

.slider-green[type=range]::-moz-range-thumb {
  background: var(--green);
}

.slider-indigo[type=range]::-webkit-slider-thumb {
  background: var(--indigo);
}

.slider-indigo[type=range]::-moz-range-thumb {
  background: var(--indigo);
}

.slider-orange[type=range]::-webkit-slider-thumb {
  background: var(--orange);
}

.slider-orange[type=range]::-moz-range-thumb {
  background: var(--orange);
}

.slider-red[type=range]::-webkit-slider-thumb {
  background: var(--red);
}

.slider-red[type=range]::-moz-range-thumb {
  background: var(--red);
}

.slider-dark[type=range]::-webkit-slider-thumb {
  background: var(--dark);
}

.slider-dark[type=range]::-moz-range-thumb {
  background: var(--dark);
}

.slider-grey[type=range]::-webkit-slider-thumb {
  background: var(--grey);
}

.slider-grey[type=range]::-moz-range-thumb {
  background: var(--grey);
}

select {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  border: 0;
  border-radius: 5px;
  background: var(--grey);
  color: var(--text-color);
  padding: 0.9rem 1rem 0.9rem 2rem;
  margin: 1.2rem 0;
}

textarea {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  border: 0;
  border-radius: 5px;
  background: var(--grey);
  color: var(--text-color);
  resize: vertical;
  min-height: 12rem;
  margin: 0;
  padding: 0.9rem 1rem 0.9rem 2rem;
}

textarea[type=text] {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  border: 0;
  border-radius: 5px;
  background: var(--grey);
  color: var(--text-color);
}

.form-modern input[type=email], .form-modern input[type=file], .form-modern input[type=number], .form-modern input[type=password], .form-modern input[type=search], .form-modern input[type=tel], .form-modern input[type=text], .form-modern input[type=url] {
  background: var(--bg-color);
  border-bottom: 1px solid hsl(0, 0%, var(--lightness-hsl));
  border-radius: 0;
}

.form-modern input:focus {
  border-bottom: 1px solid var(--dark);
}

.form-modern input[type=range] {
  height: 1px;
}

.form-modern input[type=range]:focus {
  border-bottom: 0;
}

.form-modern select {
  background: var(--bg-color);
  border-bottom: 1px solid hsl(0, 0%, var(--lightness-hsl));
  border-radius: 0;
}

.form-modern textarea {
  background: var(--bg-color);
  border-bottom: 1px solid hsl(0, 0%, var(--lightness-hsl));
  border-radius: 0;
  min-height: 5rem;
}

.form-modern textarea:focus {
  border-bottom: 1px solid var(--dark);
}

/* Full sized container using full width of the viewport */
.container-fluid {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

/*
 *  A little smaller container, adding a little padding 5% each side
 *  will be used for mobile screens */
.container {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.row .col {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 1rem;
}

.row .col.col-no-padding {
  padding: 0;
}

.row .col.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.row .col.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.row .col.col-offset-1 {
  margin-left: 8.33333%;
}

.row .col.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.row .col.col-offset-2 {
  margin-left: 16.66667%;
}

.row .col.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row .col.col-offset-3 {
  margin-left: 25%;
}

.row .col.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row .col.col-offset-4 {
  margin-left: 33.33333%;
}

.row .col.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.row .col.col-offset-5 {
  margin-left: 41.66667%;
}

.row .col.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row .col.col-offset-6 {
  margin-left: 50%;
}

.row .col.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.row .col.col-offset-7 {
  margin-left: 58.33333%;
}

.row .col.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.row .col.col-offset-8 {
  margin-left: 66.66667%;
}

.row .col.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.row .col.col-offset-9 {
  margin-left: 75%;
}

.row .col.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.row .col.col-offset-10 {
  margin-left: 83.33333%;
}

.row .col.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.row .col.col-offset-11 {
  margin-left: 91.66667%;
}

.row .col.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row .col.col-offset-12 {
  margin-left: 100%;
}

@media (max-width: 42rem) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .row .col-expand {
    max-width: 100% !important;
  }
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero.hero-sm {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.hero.hero-md {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.hero.hero-lg {
  padding-bottom: 8rem;
  padding-top: 8rem;
}

.hero .hero-body {
  padding: 0.5rem;
}

.modal {
  position: fixed;
  background-color: rgba(200, 200, 200, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1502;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
}

.modal .modal-inner {
  position: relative;
  width: 60vw;
  min-height: 20%;
  max-height: calc(100vh - 30vh);
  background: var(--bg-color);
  color: var(--text-color);
  top: 20vh;
  margin: auto;
}

.modal .modal-header {
  font-size: 1.2em;
  font-weight: 100;
  border-bottom: 0.5px solid var(--active-color);
  display: block;
  width: 100%;
  padding: 0.5em 0;
}

.modal .modal-body {
  padding: 0.5em;
}

.modal .modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 2em;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}

.modal .modal-close:hover {
  color: var(--hover-color);
}

@media only screen and (max-width: 601px) {
  .modal .modal-inner {
    width: 100vw;
  }
}

.navbar {
  overflow: hidden;
}

.navbar-fixed-top {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
}

.navbar-fixed-top .dropdown {
  position: fixed;
  z-index: 1001;
}

.navbar-fixed-bottom {
  position: fixed;
  z-index: 1500;
  width: 100%;
  bottom: 0;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.navbar a.active, .navbar a:hover {
  color: white;
}

.navbar-brand img {
  height: 100%;
  vertical-align: middle !important;
}

.navbar-brand:hover {
  background: unset !important;
}

.navbar-right {
  float: right;
  padding: 0 2em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  opacity: 1;
}

.navbar-blue {
  background: var(--blue);
}

.navbar-blue a.active, .navbar-blue a:hover {
  background: var(--blue-hover);
}

.navbar-green {
  background: var(--green);
}

.navbar-green a.active, .navbar-green a:hover {
  background: var(--green-hover);
}

.navbar-indigo {
  background: var(--indigo);
}

.navbar-indigo a.active, .navbar-indigo a:hover {
  background: var(--indigo-hover);
}

.navbar-orange {
  background: var(--orange);
}

.navbar-orange a.active, .navbar-orange a:hover {
  background: var(--orange-hover);
}

.navbar-red {
  background: var(--red);
}

.navbar-red a.active, .navbar-red a:hover {
  background: var(--red-hover);
}

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

.navbar-dark a.active, .navbar-dark a:hover {
  background: var(--dark-hover);
}

.navbar-grey {
  background: var(--grey);
}

.navbar-grey a.active, .navbar-grey a:hover {
  background: var(--grey-hover);
}

.navbar a.navbar-collapse {
  display: none;
}

.navbar a.navbar-collapse:hover {
  cursor: pointer;
}

.navbar .navbar-items.collapsed {
  display: block;
}

@media (max-width: 42rem) {
  .navbar .navbar-items {
    display: none;
  }
  .navbar .navbar-items .collapsed {
    display: block;
  }
  .navbar .navbar-items a {
    width: 100%;
    text-align: left;
  }
  .navbar a.navbar-brand {
    display: block;
  }
  .navbar a.navbar-collapse {
    display: block;
    float: right;
  }
  .navbar-right {
    float: unset;
    padding: 0;
  }
}

.dropdown {
  display: block;
}

.dropdown-content {
  display: none;
  min-width: 160px;
  z-index: 1000;
  margin-top: 3em;
  background: var(--bg-color);
  color: var(--text-color);
}

.dropdown-content a {
  color: #cccccc;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background: unset;
}

.dropdown:hover .dropdown-content {
  display: block;
  color: var(--text-color);
}

.dropdown-content li {
  list-style: none;
  clear: both;
}

.drop {
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.drop .drop-button {
  margin: 0%;
}

.drop-list a {
  float: right;
}

.drop-name {
  float: left;
  left: 0%;
}

.drop-list {
  display: block;
  position: absolute;
  z-index: 2000;
  background-color: var(--bg-color);
  right: 0;
  width: 100%;
  margin-top: -20%;
  opacity: 0;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  padding: 0 2em;
  height: 80px;
}

.drop:hover .drop-list {
  margin-top: 0%;
  opacity: 1;
}

.table {
  display: table;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  overflow-x: initial;
  text-align: left;
}

.table td, .table th {
  border-bottom: 1px solid hsl(0, 0%, var(--lightness-hsl));
  padding: 1rem 1.2rem;
}

.table td:last-child, .table th:last-child {
  padding-right: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: hsl(0, 0%, var(--lightness-hsl));
}

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

.table-blue td, .table-blue th {
  border-bottom: 1px solid var(--blue-hover);
}

.table-blue.table-bordered td, .table-blue.table-bordered th {
  border: 1px solid var(--blue-hover) !important;
}

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

.table-green td, .table-green th {
  border-bottom: 1px solid var(--green-hover);
}

.table-green.table-bordered td, .table-green.table-bordered th {
  border: 1px solid var(--green-hover) !important;
}

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

.table-indigo td, .table-indigo th {
  border-bottom: 1px solid var(--indigo-hover);
}

.table-indigo.table-bordered td, .table-indigo.table-bordered th {
  border: 1px solid var(--indigo-hover) !important;
}

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

.table-orange td, .table-orange th {
  border-bottom: 1px solid var(--orange-hover);
}

.table-orange.table-bordered td, .table-orange.table-bordered th {
  border: 1px solid var(--orange-hover) !important;
}

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

.table-red td, .table-red th {
  border-bottom: 1px solid var(--red-hover);
}

.table-red.table-bordered td, .table-red.table-bordered th {
  border: 1px solid var(--red-hover) !important;
}

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

.table-dark td, .table-dark th {
  border-bottom: 1px solid var(--dark-hover);
}

.table-dark.table-bordered td, .table-dark.table-bordered th {
  border: 1px solid var(--dark-hover) !important;
}

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

.table-grey td, .table-grey th {
  border-bottom: 1px solid var(--grey-hover);
}

.table-grey.table-bordered td, .table-grey.table-bordered th {
  border: 1px solid var(--grey-hover) !important;
}

.table-borderless td, .table-borderless th {
  border-bottom: 0;
}

.table-bordered td, .table-bordered th {
  border: 1px solid hsl(0, 0%, var(--lightness-hsl));
}

@media (max-width: 42rem) {
  .table {
    display: block;
    overflow-x: auto;
  }
}

.tabs {
  display: inline;
  list-style: none;
}

.tabs li {
  float: left;
  margin: 0em 0.5em;
  padding: 0em 0.2em;
}

.tabs li:first-child {
  margin: 0;
}

.tabs li:hover {
  cursor: pointer;
}

/* I like my header texts with a smaller font weight:  */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1em;
}

/* center, left and right align:  */
.text-center {
  text-align: center;
}

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

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

.text-blue {
  color: var(--blue);
}

.text-green {
  color: var(--green);
}

.text-indigo {
  color: var(--indigo);
}

.text-orange {
  color: var(--orange);
}

.text-red {
  color: var(--red);
}

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

.text-grey {
  color: var(--grey);
}

.text-light {
  color: #ffffff;
}

.text-italic {
  font-style: italic !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-muted {
  color: grey;
}

/* Larger p element for "leading" text */
.lead {
  font-size: 1.2em;
}

.display-1 {
  font-size: 6rem;
  font-weight: 200;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 200;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 200;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1.2;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1.2;
}

.display-6 {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.2;
}

a {
  color: var(--text-color);
}

p {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  overflow-wrap: anywhere;
}

/* Responsive images */
.img-responsive {
  overflow: hidden;
}

.img-responsive img {
  width: 100%;
}

/* Profile image */
.img-rounded {
  border-radius: 50%;
}

/* Custom HR */
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #b3b3b3;
}

/* Custom padding classes */
.padding-1 {
  padding: 0 1em;
}

.padding-2 {
  padding: 0 2em;
}

.padding-3 {
  padding: 0 3em;
}

.width-25 {
  width: 25%;
}

.width-50 {
  width: 50%;
}

.width-75 {
  width: 75%;
}

.width-100 {
  width: 100%;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.border-bottom-blue > li {
  border-bottom: 0.1em solid var(--blue);
}

.border-bottom-blue > li:hover {
  border-bottom: 0.1em solid var(--blue-hover);
}

.border-bottom-blue-hover > li {
  border-bottom: 0.1em solid transparent;
}

.border-bottom-blue-hover > li:hover {
  border-bottom: 0.1em solid var(--blue-hover);
}

.border-bottom-green > li {
  border-bottom: 0.1em solid var(--green);
}

.border-bottom-green > li:hover {
  border-bottom: 0.1em solid var(--green-hover);
}

.border-bottom-green-hover > li {
  border-bottom: 0.1em solid transparent;
}

.border-bottom-green-hover > li:hover {
  border-bottom: 0.1em solid var(--green-hover);
}

.border-bottom-indigo > li {
  border-bottom: 0.1em solid var(--indigo);
}

.border-bottom-indigo > li:hover {
  border-bottom: 0.1em solid var(--indigo-hover);
}

.border-bottom-indigo-hover > li {
  border-bottom: 0.1em solid transparent;
}

.border-bottom-indigo-hover > li:hover {
  border-bottom: 0.1em solid var(--indigo-hover);
}

.border-bottom-orange > li {
  border-bottom: 0.1em solid var(--orange);
}

.border-bottom-orange > li:hover {
  border-bottom: 0.1em solid var(--orange-hover);
}

.border-bottom-orange-hover > li {
  border-bottom: 0.1em solid transparent;
}

.border-bottom-orange-hover > li:hover {
  border-bottom: 0.1em solid var(--orange-hover);
}

.border-bottom-red > li {
  border-bottom: 0.1em solid var(--red);
}

.border-bottom-red > li:hover {
  border-bottom: 0.1em solid var(--red-hover);
}

.border-bottom-red-hover > li {
  border-bottom: 0.1em solid transparent;
}

.border-bottom-red-hover > li:hover {
  border-bottom: 0.1em solid var(--red-hover);
}

.border-bottom-dark > li {
  border-bottom: 0.1em solid var(--dark);
}

.border-bottom-dark > li:hover {
  border-bottom: 0.1em solid var(--dark-hover);
}

.border-bottom-dark-hover > li {
  border-bottom: 0.1em solid transparent;
}

.border-bottom-dark-hover > li:hover {
  border-bottom: 0.1em solid var(--dark-hover);
}

.border-bottom-grey > li {
  border-bottom: 0.1em solid var(--grey);
}

.border-bottom-grey > li:hover {
  border-bottom: 0.1em solid var(--grey-hover);
}

.border-bottom-grey-hover > li {
  border-bottom: 0.1em solid transparent;
}

.border-bottom-grey-hover > li:hover {
  border-bottom: 0.1em solid var(--grey-hover);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 42rem) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

*:focus {
  outline: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 0;
  margin: 0;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 1.6em;
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.6;
  word-wrap: break-word;
  scroll-behavior: smooth;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

/*# sourceMappingURL=basket.css.map */