@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600&display=swap");
.size-1 {
  font-size: 12px;
  line-height: 20px;
}

.size-2 {
  font-size: 14px;
  line-height: 22px;
}

.size-3 {
  font-size: 16px;
  line-height: 24px;
}

.size-4 {
  font-size: 20px;
  line-height: 28px;
}

.size-5 {
  font-size: 24px;
  line-height: 32px;
}

.size-6 {
  font-size: 30px;
  line-height: 38px;
}

.size-7 {
  font-size: 38px;
  line-height: 46px;
}

.size-8 {
  font-size: 46px;
  line-height: 54px;
}

.size-9 {
  font-size: 56px;
  line-height: 64px;
}

.weight-regular {
  font-weight: 400;
}

.weight-semibold {
  font-weight: 500;
}

/**
 * Generator
 */
.input-size-large {
  height: 40px;
}

.input-size-medium {
  height: 32px;
}

.input-size-small {
  height: 24px;
}

.resize-none textarea {
  resize: none;
}

.resize-vertical textarea {
  resize: vertical;
}

.resize-auto textarea {
  height: auto;
  resize: none;
}

.textarea-size-large {
  padding: 4px 0 0 4px;
  min-height: 40px;
}
.textarea-size-large .bcm-input-element {
  min-height: calc((40px - 8px) + 2px);
}
.textarea-size-large .input-clear-button {
  height: calc( 40px - 16px );
  top: 8px;
  padding: 0;
  margin-right: 8px;
}

.textarea-size-medium {
  padding: 4px 0 0 4px;
  min-height: 32px;
}
.textarea-size-medium .bcm-input-element {
  min-height: calc((32px - 8px) + 2px);
}
.textarea-size-medium .input-clear-button {
  height: calc( 32px - 16px );
  top: 8px;
  padding: 0;
  margin-right: 8px;
}

.textarea-size-small {
  padding: 0px 0 0 4px;
  min-height: 24px;
}
.textarea-size-small .bcm-input-element {
  min-height: calc((24px - 8px) + 2px);
}
.textarea-size-small .input-clear-button {
  height: calc( 24px - 16px );
  top: 8px;
  padding: 0;
  margin-right: 8px;
}

* {
  box-sizing: border-box;
}

.bcm-modal {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: calc(14px + 8px);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow: auto;
  padding: 24px;
  transition: opacity 0.5s ease, visibility 0.4s ease-in-out, 0.3s z-index;
}
.bcm-modal__show {
  opacity: 1;
  z-index: 10500;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.4s ease-in-out, 0.3s z-index;
}
.bcm-modal__show .bcm-modal__container {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform: translateY(0);
}
.bcm-modal .overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.6;
  background-color: var(--bcm-new-ds-color-slate-900);
}
.bcm-modal__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 2px 6px 1px rgba(17, 24, 38, 0.1);
  border-radius: 8px;
  background-color: var(--bcm-new-ds-color-white);
  z-index: 2;
  transform: translateY(-50px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.bcm-modal__container.portrait {
  max-width: 312px;
}
.bcm-modal__container.landscape {
  max-width: 475px;
}
.bcm-modal__container.small {
  max-width: 576px;
}
.bcm-modal__container.medium {
  max-width: 768px;
}
.bcm-modal__container.large {
  max-width: 992px;
}
.bcm-modal__container.xlarge {
  max-width: 1024px;
}
.bcm-modal__container.xxlarge {
  max-width: 1200px;
}
.bcm-modal__container.xxxlarge {
  max-width: 1700px;
}
.bcm-modal__container.full-width {
  width: 100%;
  max-width: 100%;
}
.bcm-modal__container.custom-size main {
  overflow: auto;
  height: 100%;
  width: 100%;
}
.bcm-modal__container-main {
  color: var(--bcm-color-grey-8);
  padding: 0;
}
.bcm-modal__container-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 12px 24px;
  font-size: 16px;
  line-height: calc(16px + 8px);
  font-weight: 500;
  color: var(--bcm-new-ds-color-slate-600);
  background-color: var(--bcm-new-ds-color-slate-100);
  position: relative;
}
.bcm-modal__container-header span.full-width {
  width: 100%;
}
.bcm-modal__container-header-close {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 8px;
  cursor: pointer;
  color: var(--bcm-new-ds-color-slate-500);
  transition: color 0.1s ease-in-out;
}
.bcm-modal__container-header-close:hover {
  color: var(--bcm-new-ds-color-slate-600);
}
.bcm-modal__container-header-close:active {
  color: var(--bcm-new-ds-color-slate-700);
}
.bcm-modal__container-header-close:focus-visible {
  color: var(--bcm-new-ds-color-slate-800);
}
.bcm-modal__container-header:after {
  border-radius: 8px 8px 0 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--bcm-color-primary-500);
  position: absolute;
  top: -4px;
  left: 0;
}
.bcm-modal__container-footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: nowrap;
  padding: 12px 24px 24px;
  grid-gap: 8px;
}