:root {
  --primary: red;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  background-color: #e8e8e4;
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
}

// TODO: temporal

// TODO: temporal
.canvas__container {
  // background: rgb(255, 110, 203);
  // background: linear-gradient(
  //   180deg,
  //   rgba(255, 110, 203, 1) 0%,
  //   rgba(135, 135, 255, 1) 50%,
  //   rgba(188, 125, 255, 1) 100%
  // );

  background-image: url("https://picsum.photos/200");
  background-position: center center;
  background-size: cover;
  overflow-y: auto;
  position: relative;

  // NOTE: Se agregan las dimensiones por default
  // width: 410px;
  // max-height: 823px;
  height: 100%;
}
.min-h-section {
  min-height: 120px !important;
}

app-root {
  *[data-dot="rotate"] {
    background-color: transparent !important;
    background-image: url("https://findicons.com/files/icons/1620/crystal_project/16/rotate_ccw.png") !important;
    background-repeat: no-repeat;
    border: none !important;
  }

  div[data-wrapper="true"] {
    -webkit-touch-callout: none !important;
    pointer-events: none;
    position: absolute;
    transform-origin: top left;
    user-select: none !important;

    * {
      pointer-events: all !important;
    }

    & > *:first-child {
      pointer-events: all !important;
      position: relative;
      transform: translate(-50%, -50%);
      user-select: none;
    }
  }

  .dv__slider[data-slides-per-view="1"]
    > .dv__slider__sliders
    > .dv__slider__sliders--slide {
    width: 100% !important;
  }

  .dv__slider[data-slides-per-view="2"]
    > .dv__slider__sliders
    > .dv__slider__sliders--slide {
    width: 50% !important;
  }

  .dv__slider[data-slides-per-view="3"]
    > .dv__slider__sliders
    > .dv__slider__sliders--slide {
    width: calc(100% / 3) !important;
  }
}

[class^="ffi-"] {
  width: 100%;
}

[class^="ffi-send"] {
  width: fit-content;
}
