 .cartanza-collection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    margin: auto;
    max-width: var(--container-width);
    width: 100%;
  }
  .cartanza-collection-grid img {
    width: 100%;
    height: 300px;
  }
  @media (max-width: 600px) {
    .cartanza-collection-grid figure {
      flex-basis: 100%;
    }
  }
  @media only screen and (min-width: 64rem) {
    .cartanza-collection-card {
        margin-bottom:40px;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(33.33333% - 40px);
    }
  }
  .cartanza-collection-card-info {
    background-color: var(--background-color);
    border-radius: 0 0 10px 10px;
    flex: 1;
    height: 190px;
    overflow: hidden;
    padding: 25px 20px 0px 20px;
    position: relative;
  }
  .cartanza-collection-card {
    background-color: var(--background-color);
    border: 1px solid var(--color-lightgrey);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 500px;
    width: 300px;
    margin-bottom: 20px;
    position: relative;
    transition: all .25s cubic-bezier(.02,.01,.47,1);
    z-index: 1;
  }
  .cartanza-collection-card:hover {
    transform: translateY(-5px)
  }
  .cartanza-collection-card:hover:before {
    box-shadow: var(--article-shadow-hover),0 0 0 transparent
  }
  .cartanza-collection-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.3),0 0 0 transparent
  }
  .cartanza-collection-card-picture {
    background-color: var(--secondary-subtle-color);
    border-radius: 10px 10px 0 0;
    height: 300px;
    width: 300px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
  }
  .cartanza-collection-card-picture-background {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 0
  }

  .cartanza-header-cart {
    width: 400px;
    position: absolute;
    right: 10px;
    z-index: 1100;
    left: auto;
    padding: 20px;
    border-top: 3px solid #e6e6e6;
    background-color: white;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transform-origin: top right;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    z-index: 1100;
  }

  .show-header-dropdown {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .gh-portal-for-switch label,
  .gh-portal-for-switch .container {
      position: relative;
      display: inline-block;
      width: 44px !important;
      height: 26px !important;
      cursor: pointer;
  }
  
  .gh-portal-for-switch label p,
  .gh-portal-for-switch .container p {
      overflow: auto;
      color: var(--color-lightgrey);
      font-weight: normal;
  }
  
  .gh-portal-for-switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }
  
  .gh-portal-for-switch .input-toggle-component {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--color-midgrey);
      transition: .3s;
      width: 44px !important;
      height: 26px !important;
      border-radius: 999px;
      transition: background 0.15s ease-in-out, border-color 0.15s ease-in-out;
      cursor: pointer;
  }
  
  .gh-portal-for-switch label:hover input:not(:checked) + .input-toggle-component,
  .gh-portal-for-switch .container:hover input:not(:checked) + .input-toggle-component {
      border-color: var(--color-midgrey);
  }
  
  .gh-portal-for-switch .input-toggle-component:before {
      position: absolute;
      content: "";
      top: 3px !important;
      left: 3px !important;
      height: 20px !important;
      width: 20px !important;
      background-color: white;
      transition: .3s;
      border-radius: 999px;
  }
  
  .gh-portal-for-switch input:checked + .input-toggle-component {
      background: var(--ghost-accent-color);
      border-color: transparent;
  }
  
  .gh-portal-for-switch input:checked + .input-toggle-component:before {
      transform: translateX(18px);
      box-shadow: none;
  }
  
  .gh-portal-for-switch .container {
      width: 38px !important;
      height: 22px !important;
  }
  .gh-portal-list-detail {
      flex-grow: 1;
  }
  .gh-portal-list section {
      display: flex;
      margin: 0 -20px 20px;
      padding: 0 20px 20px;
      border-bottom: 1px solid var(--color-lightgrey);
  }
  .gh-portal-list section:last-of-type {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none;
  }
  .gh-portal-section {
    width: 80%;
    margin: auto;
  }
  .gh-portal-list {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--color-lightgrey);
  }
  .gh-portal-logged-out-form-container {
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
  }
  .gh-portal-input-label {
      color: var(--color-midgrey);
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 2px;
      letter-spacing: 0px;
  }
  .gh-portal-input {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      display: block;
      box-sizing: border-box;
      font-size: 1.5rem;
      color: inherit;
      background: transparent;
      outline: none;
      border-width: 2px;
      border-radius: 6px;
      width: 100%;
      height: 42px;
      margin-bottom: 16px;
      padding: 0 12px;
      letter-spacing: 0.2px;
      transition: border-color 0.25s ease-in-out;
      border-color: #e1e1e1;
  }
  .gh-portal-list-toggle-wrapper {
      display: flex;
      align-items: flex-start;
  }
  .gh-account-button {
      align-items: center;
      background: var(--ghost-accent-color);
      border-radius: 48px;
      display: inline-flex;
      font-size: 1.6rem;
      font-weight: 600;
      height: 44px;
      justify-content: center;
      letter-spacing: -.005em;
      padding: 8px 20px;
  }
  .gh-portal-btn {
      position: relative;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1em;
      letter-spacing: 0.2px;
      text-align: center;
      white-space: nowrap;
      text-decoration: none;
      background: white;
      border: 1px solid var(--color-lightgrey);
      min-width: 80px;
      height: 44px;
      padding: 0 1.8rem;
      border-radius: 6px;
      cursor: pointer;
      transition: all .25s ease;
      box-shadow: none;
      user-select: none;
      outline: none;
  }
  .gh-portal-btn-branded {
      color: var(--ghost-accent-color);
  }