@layer components {
  /*
   * Button — Close
   */
  
  .btn-close {
    border: 1px solid transparent;
    color: var(--color-grey-600);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 500;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 3.125rem;
    text-align: center;
    text-decoration: none;
    top: 1.6rem;
    width: 2.25rem;
    z-index: 10;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: 0.2s ease;
  
    @media (max-width: 1439.98px) {
      right: 2.625rem;
    }
  
    @media (max-width: 991.98px) {
      right: 1.125rem;
    }
  
    @media (max-width: 639.98px) {
      right: 0.375rem;
      top: 1rem;
    }
  
    &:focus {
      outline: none;
    }
  
    &:hover {
      color: var(--color-primary);
      text-decoration: none;
    }
  }
}
