/*
****************************************
*              Playground              *
****************************************
*/
:root {
  --color-theme-tui: #1a115a;
  --playground-font: Arial, Helvetica, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

.pg-header,
.pg-body {
  font-family: var(--playground-font);
  color: #000000;
  box-sizing: border-box;
}
.pg-header h1,
.pg-header h2,
.pg-header p,
.pg-header label,
.pg-body h1,
.pg-body h2,
.pg-body p,
.pg-body label {
  margin: 0;
  padding: 0;
}
.pg-header h1,
.pg-body h1 {
  font-size: 20px;
  color: var(--color-theme-tui);
}
.pg-header h2,
.pg-body h2 {
  font-size: 16px;
}
.pg-header p,
.pg-header label,
.pg-body p,
.pg-body label {
  font-size: 13px;
}

.pg-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  gap: 120px;
  background: #70cbf4;
}
.pg-header.expanded {
  height: auto;
}
.pg-header.expanded .pg-header__arrow {
  transform: rotate(180deg);
}
@media only screen and (max-width: 1340px) {
  .pg-header {
    gap: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .pg-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 80px;
    gap: 20px;
    background: #c2e6fa;
    overflow: hidden;
  }
}
.pg-header__logo {
  display: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  gap: 4px;
}
.pg-header__logo img {
  height: 50px;
  margin-top: -10px;
}
@media only screen and (max-width: 1200px) {
  .pg-header__logo {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: -20px -20px 0;
    padding: 20px;
    background: #70CBF4;
    cursor: pointer;
  }
}
.pg-header__arrow {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-theme-tui);
  right: 26px;
  top: 37px;
}
@media only screen and (max-width: 1200px) {
  .pg-header__arrow {
    display: block;
  }
}
.pg-header__attributes {
  display: inherit;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
  gap: 16px;
}
@media only screen and (max-width: 1200px) {
  .pg-header__attributes {
    gap: 12px;
  }
}
.pg-header__attributes-group {
  display: inherit;
  flex-direction: inherit;
  gap: 4px;
}
.pg-header__user {
  display: inherit;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (max-width: 1200px) {
  .pg-header__user {
    width: 100%;
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .pg-header__user {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.pg-header__auth {
  display: inherit;
  flex-direction: column;
  flex-shrink: 0;
  gap: 16px;
  min-width: 280px;
}
@media only screen and (max-width: 1200px) {
  .pg-header__auth {
    min-width: unset;
    flex-shrink: unset;
    flex-grow: 1;
    gap: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .pg-header__auth {
    width: 100%;
  }
}
.pg-header__status {
  display: inherit;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.pg-header__help {
  display: inline-block;
  position: relative;
  margin: 0 0 0 4px;
}
.pg-header__help button {
  all: unset;
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  margin-bottom: 0 !important;
  height: 19px;
  background: transparent;
  font-family: var(--pg-font);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .pg-header__help {
    display: none;
  }
}
.pg-header__tooltip {
  display: none;
  position: absolute;
  top: -20px;
  left: 42px;
  width: 260px;
  background-color: #000000;
  color: #fff;
  text-align: left;
  border-radius: 8px;
  padding: 13px 17px 17px;
  z-index: 99;
}
.pg-header__tooltip span {
  font-family: var(--pg-font);
  font-size: 13px;
}
.pg-header__tooltip.show {
  display: unset;
}
.pg-header__tooltip:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-right: 8px solid #091e28;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  left: -8px;
  top: 22px;
}
@media only screen and (max-width: 1200px) {
  .pg-header__tooltip {
    display: none;
  }
}
.pg-header button {
  display: block;
}
.pg-header textarea {
  display: block;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
}

/*
****************************************
*                 Body                 *
****************************************
*/
.pg-body h2 {
  color: #376af6;
}
.pg-body p {
  font-size: 14px;
  line-height: 20px;
  color: #666f78;
}
.pg-body__container {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}
.pg-body__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #cecece;
  border-radius: 12px;
  gap: 16px;
}
.pg-body__card:first-of-type {
  margin-top: 20px;
}
.pg-body__title {
  display: inherit;
  flex-direction: column;
  gap: 6px;
}
.pg-body__code-wrapper {
  display: inherit;
  flex-direction: column;
  gap: 16px;
}
.pg-body__code-wrapper.expanded .pg-body__plus-icon {
  background: linear-gradient(var(--color-theme-tui) 0 0);
  background-position: center;
  background-size: 50% 2px, 2px 50%;
  background-repeat: no-repeat;
}
.pg-body__code-wrapper.expanded code.payload-example {
  height: auto;
}
.pg-body__code-wrapper.expanded .pg-body__code-description-wrapper {
  display: flex;
}
.pg-body__code {
  position: relative;
  background: #f6f6f6;
  border-radius: 8px;
  padding: 16px 50px 16px 16px;
}
.pg-body__code code.payload-example {
  display: block;
  height: 20px;
  line-height: 20px;
  color: #666f78;
  overflow: hidden;
}
.pg-body__code code.event-details {
  display: none;
  visibility: hidden;
}
.pg-body__expand {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 11px;
  right: 10px;
  background: linear-gradient(#666f78 0 0), linear-gradient(#666f78 0 0);
  background-position: center;
  background-size: 50% 2px, 2px 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.pg-body__code-description-wrapper {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.pg-body__button {
  background: var(--color-theme-tui);
  border: none;
  padding: 14px 24px;
  font-size: 13px;
  color: #fff;
  border-radius: 50px;
  max-width: fit-content;
  cursor: pointer;
}
.pg-body__button:hover {
  background: #376af6;
}

/*# sourceMappingURL=styles.css.map */
