/************
 *
 * Text Media Styles
 *
 ***********/
/******* Functions *******/
/******* Mixins *******/
/******* Bootstrap *******/
/**
* Fonts
*/
:root {
  --bs-primary: $blue;
  --bs-secondary: $gray-600;
  --bs-tertiary: $teal;
  --bs-success: $green;
  --bs-info: $cyan;
  --bs-warning: $yellow;
  --bs-danger: $red;
  --bs-light: $gray-100;
  --bs-dark: $gray-900;
}

/******* Variables *******/
.text-media {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-media__bg-half {
  position: absolute;
}
.text-media__bg-half img,
.text-media__bg-half video {
  width: 100%;
}
.text-media__bg-half:hover .edit_image_holder {
  opacity: 1;
}
.text-media__bg-half-right {
  right: 0;
  left: auto;
}
.text-media__bg-half-left {
  left: 0;
  right: auto;
}
.text-media__bg-full {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.text-media__bg-full:hover .edit_image_holder {
  opacity: 1;
}
.text-media__icon {
  font-size: var(--bs-font-size-h2);
  margin-bottom: 2rem;
  display: flex;
}
.text-media__icon.show_empty {
  display: inline;
  font-size: 1rem;
  cursor: pointer;
}
.text-media__icon.show_empty + * {
  margin-top: 24px;
}
.text-media__icon.show_empty:hover {
  background-color: #e9d4ff !important;
}
.text-media__header {
  margin-top: 0;
  margin-bottom: 2rem;
}
.text-media__header.display-1 {
  text-indent: -1em;
  padding-left: 1em;
}
.text-media__text {
  color: var(--bs-quaternary);
}
.text-media .component__buttons-container {
  margin-top: 2.5rem;
}
.text-media--1 {
  min-height: 100vh;
}
.text-media--1 .text-media__bg-half {
  width: 50%;
  height: 100%;
  top: 0;
}
.text-media--2 .text-media__col, .text-media--3 .text-media__col {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.text-media--2 .text-media__bg-half, .text-media--3 .text-media__bg-half {
  right: auto;
  left: auto;
  position: relative;
  width: 100%;
  height: 100%;
}
.text-media--10 .text-media__bg-full, .text-media--11 .text-media__bg-full, .text-media--12 .text-media__bg-full {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.text-media--10 .text-media__header, .text-media--11 .text-media__header, .text-media--12 .text-media__header {
  margin-bottom: 1rem;
}
.text-media--10 .component__buttons-container, .text-media--11 .component__buttons-container, .text-media--12 .component__buttons-container {
  margin-top: 0;
}
.text-media--16 .img-left,
.text-media--16 .img-right {
  position: absolute;
  top: 0;
  bottom: 0;
}
.text-media--16 .img-left {
  left: 0;
}
.text-media--16 .img-right {
  right: 0;
}
.text-media--16 .text-media__col {
  padding: 5rem 4rem;
}
.text-media--16 .text-media__col.content-right {
  padding-right: 1rem;
}
.text-media--16 .text-media__col.content-left {
  padding-left: 1rem;
}
.text-media--16 .text-media__bg-half {
  right: auto;
  left: auto;
  position: relative;
  width: 100%;
  height: 100%;
}
.text-media__content > * {
  margin-bottom: 1.5rem;
}
.text-media__content > *:first-child {
  margin-top: 1.5rem;
}
