:host {
  position: relative;
  box-sizing: border-box;
}
:host *, :host *::before, :host *::after {
  box-sizing: inherit;
}

/* stylelint-disable */
:host {
  display: inline-block;
}

:host(.full-width) {
  display: flex;
  width: 100%;
}

.callout {
  position: relative;
  display: flex;
  min-width: 381px;
  max-width: 580px;
  padding: 16px;
  color: #111111;
  background-color: #f4f4f5;
  border-radius: 16px;
}
.callout--blue {
  color: #3c82ff;
  background-color: #eaf6ff;
}
.callout--orange {
  color: #f5963d;
  background-color: #ffead6;
}
.callout--green {
  color: #0ab15f;
  background-color: #e5fff3;
}
.callout--red {
  color: #e04747;
  background-color: #fff4f4;
}
.callout--full-width {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.callout__icon-container {
  display: flex;
  align-items: baseline;
  justify-content: baseline;
}
.callout__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-left: 16px;
}
.callout__tooltip-container {
  position: absolute;
  top: 8px;
  right: 8px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.callout__tooltip-content {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.callout__tooltip-icon {
  margin-left: 4px;
  color: #636b7e;
}
.callout__title {
  display: flex;
  width: 100%;
  margin-bottom: 4px;
}
.callout__title-tooltip {
  max-width: calc(100% - 96px);
}
.callout__detail {
  margin-top: 8px;
}
.callout__button {
  margin-top: 12px;
}
@media (max-width: 380px) {
  .callout {
    flex-direction: column;
    min-width: 280px;
    max-width: 380px;
  }
  .callout__content {
    margin-top: 16px;
    margin-left: 0;
  }
  .callout--simple {
    flex-direction: row;
  }
  .callout--simple > .callout__content {
    margin-top: 0;
    margin-left: 16px;
  }
  .callout--full-width {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .callout--full-width .callout__tooltip-container {
    position: relative;
    justify-content: flex-start;
    margin-left: 16px;
  }
}