:root {
  /* Colors */
  --color-black: #0e0e0e;
  --color-dark: #252525;
  --color-dim: #545454;
  --color-light: #b4b4b4;
  --color-grey: #e1e1e1;
  --color-white: #f9fbf3;
  --color-text: #4c4c4c;
  --color-button: #737373;

  --color-gold: #ecb70a;
  --color-red: #cc1818;

  --gradient-1: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  --gradient-2: linear-gradient(
    90deg,
    rgba(160, 166, 161, 0.8),
    rgba(55, 72, 54, 1)
  );
  --gradient-3: linear-gradient(
    90deg,
    rgba(249, 251, 243, 1),
    rgba(249, 251, 243, 0)
  );

  /* Spacing */
  --header-height: 80px;
  --spacing-vertical: 80px;
  --spacing-horizontal: 60px;
  --spacing-vertical-middle: 50px;
  --spacing-vertical-small: 30px;
  --spacing-horizontal-small: 30px;
  --btn-gap: 16px;

  @media (max-width: 1024px) {
    --spacing-vertical: 60px;
    --spacing-horizontal: 20px;
    --spacing-vertical-small: 30px;
    --spacing-horizontal-small: 30px;
  }
}

html {
  margin-top: 0 !important;
  body {
    background-color: var(--color-white);
    overflow-x: hidden;
  }

  /* #wpadminbar {
    display: none;
  } */
  #page {
    padding-top: var(--header-height);
  }

  .wc-block-components-spinner:after {
    border-width: 0.1em !important;
  }

  .otgs-development-site-front-end {
    display: none !important;
  }

  a:focus,
  input:focus,
  textarea:focus,
  button:focus {
    outline: 2px solid var(--color-dim);
  }

  .col-full {
    position: relative;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 var(--spacing-horizontal) !important;
  }
}

.mailpoetsignup-593{
position: absolute;
    display: block;
    opacity: 0;
    pointer-events: none;
}

/* Tags */
.tag-small {
  height: fit-content;
  width: fit-content;
  min-width: fit-content;
  white-space: nowrap;
  padding: 5px 10px 5px;
  color: var(--color-dark);
  font-weight: 400;
  border: 1px solid var(--color-dim);
  border-radius: 100px;
  margin-bottom: 0;
  font-family: var(--secondary-font-family);
  font-size: var(--fs-tag);
  line-height: var(--lh-tag);
  transition: all 0.3s ease;
  cursor: pointer;

  &:focus {
    background-color: var(--color-light);
    color: var(--color-black);
    border-color: var(--color-light);
    outline: none;
  }

  &:hover {
    opacity: 0.5;
  }
}

.tag-middle {
  height: fit-content;
  width: fit-content;
  min-width: fit-content;
  white-space: nowrap;
  padding: 4px 14px 4px;
  color: var(--color-text);
  font-weight: 400;
  background-color: var(--color-grey);
  border-radius: 100px;
  margin-bottom: 0;
  font-family: var(--secondary-font-family);
  font-size: var(--fs-14);
  transition: all 0.3s ease;
  cursor: pointer;

  &:focus {
    outline: none;
  }

  &.active {
    background-color: var(--color-light);
    color: var(--color-black);
  }

  &:hover {
    background-color: var(--color-light);
    color: var(--color-black);
  }
}

.tag-large {
  height: fit-content;
  width: fit-content;
  min-width: fit-content;
  margin-bottom: 0;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 16px 8px;
  color: var(--color-dark);
  font-weight: 500;
  border: 1px solid var(--color-dim);
  border-radius: 100px;
  font-size: var(--fs-caption);
  line-height: var(--lh-caption);
  transition: all 0.3s ease;
  cursor: pointer;

  &:focus {
    outline: none;
  }

  &.active {
    background-color: var(--color-grey);
    color: var(--color-black);
    border-color: var(--color-grey);
    outline: none;
  }

  &:hover:not(.active) {
    border-color: var(--color-grey);
  }
}