/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.button {
  position: relative;
  isolation: isolate;
  background-color: var(--color-light-base);
  border: 1px solid var(--btn-default-border);
  color: black;
  font-style: normal;
  font-family: var(--font-family-heading);
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -1%;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition:
    background-color 350ms var(--easing),
    color 350ms var(--easing);
  border-radius: 6px;
}

.button:hover,
.button.button--white:hover {
  background-color: var(--black);
  color: var(--white);
}


.button.button--black:hover {
  background-color: var(--white);
  color: var(--black);
}

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

.button.button--black {
  background-color: var(--black);
  color: var(--white);
}


.button .avatar {
  position: relative;
  width: 32px;
  height: 24px;
  border-radius: 999px;
}

.button .avatar-square {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--success);
  border: 2px solid var(--overlay-dark-100);
  bottom: 0px;
  right: 0;
  z-index: 1;
}

.button .icon {
  background-color: var(--color-purple-base);
  border-radius: 2px;
  width: 8px;
  height: 8px;
}

.button .text {
  color: inherit;
  line-height: 1.7;
  font-weight: 500;
}

.button.button--large,
.button.button--small
  font-family: var(--font-family-system);
  font-weight: 500;
}

.button.button--large {
  font-size: 14px;
  line-height: 20px;
}

.button.button--small {
  font-size: 12px;
  line-height: 16px;
}


@media (min-width: 768px) {
  .button {
    font-size: 14px;
  }
  
  .button.button--large {
    font-size: 16px;
    line-height: 24px;
  }

  .button.button--small {
    font-size: 14px;
    line-height: 20px;
  }
}