.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 50em) {
  .container {
    max-width: 50em;
  }
}

@media (min-width: 73em) {
  .container {
    max-width: 73em;
  }
}

/* all the classes here */

.btn {
  text-decoration: none;
  --border-opacity: 1;
  border-color: black;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  padding: 0.25em 0.5em 0.24em;
  transition: border 0.2s ease 0s;
}

.btn:hover {
  --border-opacity: 1;
  border-color: #df967c;
  border-color: rgba(223, 150, 124, var(--border-opacity));
}

.btn-active {
  --border-opacity: 1;
  border-color: black;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

@media (min-width: 50em) {
  .btn {
    --border-opacity: 1;
    border-color: #f5f8f6;
    border-color: rgba(245, 248, 246, var(--border-opacity));
  }

  .btn:hover {
    --border-opacity: 1;
    border-color: black;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .btn-active {
    --border-opacity: 1;
    border-color: #df967c;
    border-color: rgba(223, 150, 124, var(--border-opacity));
  }
}

.btn-black {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --bg-opacity: 1;
  background-color: black;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
  border-width: 2px;
  border-color: transparent;
  fill: config('colors.white');
}

.btn-black:hover,
.btn-black:active {
  --text-opacity: 1;
  color: black;
  color: rgba(0, 0, 0, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  border-width: 2px;
  --border-opacity: 1;
  border-color: black;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  fill: config('colors.black');
}

.btn-underline {
  --text-opacity: 1;
  color: black;
  color: rgba(0, 0, 0, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  border-width: 2px;
  --border-opacity: 1;
  border-color: black;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  fill: config('colors.black');
}

.btn-underline:hover,
.btn-underline:active {
  text-decoration: underline;
}

.tooltip {
  cursor: pointer;
  position: relative;
  display: inline-block;
  border-bottom-width: 1px;
  border-style: dotted;
}

.tooltiptext {
  visibility: hidden;
  --bg-opacity: 1;
  background-color: black;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  text-align: left;
  padding: 0.5rem;
  border-radius: 0.5rem;
  position: absolute;
  left: 105%;
  bottom: 105%;
  z-index: 1;
}

.toggle-input:not(checked) ~ .toggle-content{
  display: none;
}

.toggle-all-input:checked ~ .toggle-all-content .toggle-content{
  display: block;
}

.toggle-input:checked ~ .toggle-content{
  display: block;
}

/* makes sure that the component is min height is 100vh */

/* use page instead of main wrapper */

.page,
.main-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.w {
  width: 100%;
}

@media (min-width: 50em) {
  .w {
    width: auto;
  }
}

.w-screen {
  max-width: 100%;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.row-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.col {
  flex-basis: 100%;
}

@media (min-width: 50em) {
  .col {
    flex-basis: 50%;
  }
}

.col-1\/3 {
  flex-basis: 100%;
}

@media (min-width: 50em) {
  .col-1\/3 {
    flex-basis: 33.33333333%;
  }
}

.col-1\/4 {
  flex-basis: 50%;
}

@media (min-width: 50em) {
  .col-1\/4 {
    flex-basis: 25%;
  }
}

.flex-basis-1 {
  flex-basis: 100%;
}

.flex-basis-1\/2 {
  flex-basis: 50%;
}

.flex-basis-1\/4 {
  flex-basis: 25%;
}

.center {
  justify-content: center;
}

/* vertical center */

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

.space-y-0 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0px * var(--space-y-reverse));
}

.space-y-1 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1rem * var(--space-y-reverse));
}

.space-y-0\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.hidden {
  display: none;
}

.flex-1 {
  flex: 1 1 0%;
}

.font-bold {
  font-weight: 700;
}

.h-14 {
  height: 14rem;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-h4 {
  font-size: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

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

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-0\.25 {
  margin-top: 0.25rem;
}

.mb-0\.25 {
  margin-bottom: 0.25rem;
}

.max-w-40 {
  max-width: 40rem;
}

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

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

.italic {
  font-style: italic;
}

.w-15 {
  width: 15rem;
}

.w-full {
  width: 100%;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

/* all the utils,(modifiers) here */

.pointer {
  cursor: pointer;
}

@media (min-width: 50em) {
  .t\:space-y-auto > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(auto * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(auto * var(--space-y-reverse));
  }

  .t\:flex {
    display: flex;
  }

  .t\:flex-row {
    flex-direction: row;
  }

  .t\:justify-end {
    justify-content: flex-end;
  }

  .t\:mt-minus {
    margin-top: -7.5rem;
  }

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

@media (min-width: 73em) {
}

@media (min-aspect-ratio: 13/9), (hover: hover) and (orientation: landscape) {
}
