@import url(https://fonts.googleapis.com/css?family=Lato);

.rc-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 80;
}
.rc-backdrop.invert {
  background: rgba(1, 1, 1, 0.7);
}

.range-picker-input {
  display: inline-flex;
  border: 1px solid #e4e4e4;
  width: 300px;
}
.range-picker-input * {
  box-sizing: border-box;
}
.range-picker-input__icon {
  display: inline-flex;
  align-items: center;
}
.range-picker-input__start, .range-picker-input__end {
  display: inline-flex;
  flex: 1;
}
.range-picker-input__start .picker-input.range input, .range-picker-input__end .picker-input.range input {
  width: 100%;
  border: none;
}

.picker-input {
  display: inline-block;
  position: relative;
}
.picker-input__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  display: inline-flex;
  align-items: center;
}
.picker-input__text {
  padding: 10px;
  border: 1px solid #e4e4e4;
  outline: none;
  font-size: 16.8px;
}
.picker-input__text:disabled {
  background: #e4e4e4;
}
.picker-input__clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  cursor: pointer;
}

.picker {
  display: inline-block;
}
.picker__container {
  position: absolute;
  z-index: 100;
}
.picker__container.portal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.picker__container__include-time {
  border: 1px solid #e4e4e4;
}
.picker__container__include-time .calendar__item,
.picker__container__include-time .time__container {
  border: none;
}
.picker__container__tab {
  margin: 10px 0;
}
.picker__container__tab button {
  padding: 5px 10px;
  outline: none;
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 2px solid #e4e4e4;
}
.picker__container__tab button.active {
  color: #49599a;
  border-bottom: 2px solid #49599a;
}
.picker__container__tab button:first-child {
  border-right: none;
}
.picker__container__tab button svg {
  margin-right: 5px;
}

.time__container {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e4e4e4;
  padding: 15px;
  background: white;
  font-family: "Lato";
  font-size: 12px;
}
.time__container__div {
  margin: 0 10px;
}
.time__container__type {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.time-input {
  display: inline-block;
  width: 40px;
  overflow: hidden;
}
.time-input__up, .time-input__down {
  border: 1px solid #e4e4e4;
}
.time-input__up button, .time-input__down button {
  outline: none;
  width: 100%;
  cursor: pointer;
  border: none;
}
.time-input__text {
  width: 100%;
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  box-sizing: border-box;
}
.time-input__text input {
  width: 100%;
  box-sizing: border-box;
  border: none;
  font-size: 15px;
  padding: 5px;
  text-align: center;
  outline: none;
}

.calendar {
  display: inline-block;
  background: white;
  font-size: 12px;
}
.calendar *, .calendar *:before, .calendar *:after {
  box-sizing: border-box;
}
.calendar__container {
  width: 270px;
  font-family: "Roboto", sans-serif;
  display: none;
}
.calendar__list {
  display: table;
}
.calendar__item {
  display: table-cell;
  border: 1px solid #ececec;
}
.calendar__item:not(:first-child) {
  border-left: none !important;
}
.calendar--show {
  display: inline-block;
}
.calendar__head {
  position: relative;
  background: #7986cb;
  padding: 10px 6px;
}
.calendar__head--title {
  font-size: 1.3em;
  color: white;
  text-align: center;
  margin: 4px;
}
.calendar__head--button {
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
  font-size: 20px;
}
.calendar__head--button svg {
  fill: white;
}
.calendar__head--prev, .calendar__head--next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.calendar__head--prev {
  left: 0;
}
.calendar__head--next {
  right: 0;
}
.calendar__panel--show {
  display: block !important;
}
.calendar__panel--today {
  background: #aab6fe;
  padding: 5px;
  display: none;
}
.calendar__panel--today h2 {
  margin: 0;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}
.calendar__body--table {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-spacing: none;
  border-collapse: collapse;
}
.calendar__body--table th {
  height: 30px;
  vertical-align: middle;
  color: #212121;
}
.calendar__day {
  vertical-align: top;
  padding-top: 5px;
  height: 40px;
  cursor: pointer;
}
.calendar__day:hover:not(.calendar__day--disabled) {
  background: #aab6fe;
  cursor: pointer;
}
.calendar__day--0 {
  color: red;
}
.calendar__day--6 {
  color: blue;
}
.calendar__day--today {
  background: #FFF9C4;
}
.calendar__day--disabled {
  color: #ddd;
  cursor: initial;
}
.calendar__day--start, .calendar__day--end, .calendar__day--selected {
  background: #7986cb;
  color: #FFFFFF;
}
.calendar__day--start:hover, .calendar__day--end:hover, .calendar__day--selected:hover {
  background: #7986cb;
}
.calendar__day--range {
  background: #dce1ff;
}
.calendar__day--text {
  display: block;
  font-size: 10px;
}
.calendar__year, .calendar__month {
  height: 55px;
  vertical-align: middle;
}
.calendar__year:hover, .calendar__month:hover {
  background: #aab6fe;
  cursor: pointer;
}
#sm-plugin-whatsapp {
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  color: #636363;
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  justify-content: center;
  margin: 5px;
  max-width: 749px;
  min-height: 425px;
  padding: 48px;
  position: relative;
}

#sm-plugin-whatsapp * {
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  outline: 0;
  padding: 0;
}

#sm-plugin-whatsapp ::placeholder {
  color: #A3A3A3;
}

#sm-plugin-whatsapp .overlay-cancel {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
}

#sm-plugin-whatsapp button {
  background-color: transparent;
  cursor: pointer;
}

#sm-plugin-whatsapp #close {
  padding: 12px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}

#sm-plugin-whatsapp .close-icon {
  fill: #DFDFDF;
  width: 18px;
}

#sm-plugin-whatsapp #main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#sm-plugin-whatsapp h1 {
  color: #FC4F2D;
  font-size: 35px;
  font-weight: 700;
  line-height: 41px;
  text-align: center;
}

#sm-plugin-whatsapp h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 11px;
  text-align: center;
}

#sm-plugin-whatsapp h2 .desktop {
  display: block;
}

#sm-plugin-whatsapp h2 .mobile {
  display: none;
  margin-top: 18px;
}

#sm-plugin-whatsapp p.validation {
  color: #FC4F2D;
  display: none;
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  text-align: left;
  width: 100%;
}

#sm-plugin-whatsapp .arrow-down-icon {
  height: 13px;
  position: relative;
  top: 2px;
  width: 12px;
}

#sm-plugin-whatsapp form#optin-email {
  position: relative;
  width: 64%;
}

#sm-plugin-whatsapp form#optin-phone {
  display: none;
  position: relative;
  width: 80%;
}

#sm-plugin-whatsapp form#optin-email input[type="text"],
#sm-plugin-whatsapp form#optin-phone input[type="text"],
#sm-plugin-whatsapp form#optin-email button,
#sm-plugin-whatsapp form#optin-phone button {
  height: 44px;
  line-height: 44px;
}

#sm-plugin-whatsapp form#optin-email input[type="text"],
#sm-plugin-whatsapp form#optin-phone input[type="text"] {
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: #2f2f2f;
  font-size: 15px;
  padding: 0 12px;
}

#sm-plugin-whatsapp form#optin-email input[type="text"] {
  border-color: #FFC82C;
  width: 70%;
}

#sm-plugin-whatsapp form#optin-phone input[type="text"] {
  border-color: #1CB53D;
  width: calc(100% - 247px);
}

#sm-plugin-whatsapp form#optin-email p.validation,
#sm-plugin-whatsapp form#optin-phone p.validation {
  bottom: calc(100% + 8px);
  left: 0;
  padding: 8px 0 0 12px;
  position: absolute;
}

#sm-plugin-whatsapp form#optin-email button,
#sm-plugin-whatsapp form#optin-phone button {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;

}

#sm-plugin-whatsapp form#optin-email button {
  background-color: #FFC82C;
  width: 30%;
}

#sm-plugin-whatsapp form#optin-phone button {
  background-color: #1CB53D;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  width: 247px;
}

#sm-plugin-whatsapp #loading-phone-hide {
  align-items: center;
  display: flex;
}

#sm-plugin-whatsapp form#optin-email,
#sm-plugin-whatsapp #optin-phone {
  height: 44px;
  margin: 45px 0 9px;
}

#sm-plugin-whatsapp .whatsapp-icon {
  height: 24px;
  margin-right: 12px;
  position: relative;
  width: 24px;
}

#sm-plugin-whatsapp .agree {
  color: rgba(0, 0, 0, .5);
  font-size: 14px;
  position: relative;
  text-align: center;
}

#sm-plugin-whatsapp .agree p.validation {
  padding-bottom: 8px;
  text-indent: 1px;
}

#sm-plugin-whatsapp .agree input {
  height: 14px;
  margin-right: 4px;
  position: relative;
  top: 2px;
  width: 14px;
}

#sm-plugin-whatsapp a {
  color: rgba(0, 0, 0, .5);
  display: inline-block;
  font-weight: 700;
}

#sm-plugin-whatsapp i {
  color: rgba(0, 0, 0, .5);
  display: block;
  font-family: 'Roboto', sans-serif !important;
  font-size: 12px;
  font-style: italic !important;
  line-height: 16px;
  margin-top: 24px;
  max-width: 40%;
  text-align: center;
}

#sm-plugin-whatsapp img {
  bottom: 10px;
  height: auto;
  position: absolute;
  right: 16px;
  width: 64px;
}

#sm-plugin-whatsapp small {
  color: #fff;
  font-size: 12px;
  letter-spacing: .5px;
  position: absolute;
  top: calc(100% + 8px);
}

#sm-plugin-whatsapp small a {
  color: #fff;
  font-weight: 700;
}

#sm-plugin-whatsapp #coupon {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sm-plugin-whatsapp #coupon .code,
#sm-plugin-whatsapp #coupon #offers {
  border-radius: 8px;
  font-weight: 500;
  height: 44px;
  text-align: center;
  width: 287px;
}

#sm-plugin-whatsapp #coupon .code {
  border: 2px dashed #FFC82C;
  color: #222D39;
  font-size: 28px;
  line-height: 40px;
  margin: 20px 0 10px;
  position: relative;
  text-transform: uppercase;
  width: 287px;
}

#sm-plugin-whatsapp .copy-icon {
  height: 20px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-48%);
  width: 18px;
}

#sm-plugin-whatsapp #coupon #offers {
  background: #FFCA00;
  font-size: 18px;
  line-height: 44px;
}

#sm-plugin-whatsapp .loading {
  animation-delay: .3s;
  display: none;
  left: 50%;
  line-height: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

#sm-plugin-whatsapp .loading,
#sm-plugin-whatsapp .loading::before,
#sm-plugin-whatsapp .loading::after {
  animation-name: blink;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  background-color: #000;
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

#sm-plugin-whatsapp .loading::before,
#sm-plugin-whatsapp .loading::after {
  content: '';
  position: absolute;
  top: 0;
}

#sm-plugin-whatsapp .loading::before {
  left: -25px;
}

#sm-plugin-whatsapp .loading::after {
  animation-delay: .6s;
  right: -25px;
}

@keyframes blink {
  0% {
    opacity: .2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .2;
  }
}

#sm-plugin-whatsapp.mobile {
  padding: 28px 40px 72px;
  max-width: 100%;
}

#sm-plugin-whatsapp.mobile #close {
  padding: 10px;
}

#sm-plugin-whatsapp.mobile .close-icon {
  width: 24px;
}

#sm-plugin-whatsapp.mobile h1 {
  font-size: 34px;
  line-height: 36px;
}

#sm-plugin-whatsapp.mobile h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

#sm-plugin-whatsapp.mobile h2 .desktop {
  display: none;
}

#sm-plugin-whatsapp.mobile h2 .mobile {
  display: block;
}

#sm-plugin-whatsapp.mobile form#optin-email,
#sm-plugin-whatsapp.mobile #optin-phone {
  margin: 41px 0 12px;
}

#sm-plugin-whatsapp.mobile form#optin-email,
#sm-plugin-whatsapp.mobile form#optin-phone {
  height: auto;
  width: 100%;
}

#sm-plugin-whatsapp.mobile form#optin-email input[type="text"],
#sm-plugin-whatsapp.mobile form#optin-phone input[type="text"],
#sm-plugin-whatsapp.mobile form#optin-email button,
#sm-plugin-whatsapp.mobile form#optin-phone button {
  width: 100%;
}

#sm-plugin-whatsapp.mobile form#optin-email input[type="text"],
#sm-plugin-whatsapp.mobile form#optin-phone input[type="text"] {
  border-bottom: none;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  height: 52px;
  text-align: center;
}

#sm-plugin-whatsapp.mobile form#optin-email input[type="text"] {
  border-right: 2px solid #FFC82C;
}

#sm-plugin-whatsapp.mobile form#optin-phone input[type="text"] {
  border-right: 2px solid #1CB53D;
}

#sm-plugin-whatsapp.mobile form#optin-email button,
#sm-plugin-whatsapp.mobile form#optin-phone button {
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  position: relative;
  right: auto;
  top: auto;
}

#sm-plugin-whatsapp.mobile .agree p.validation {
  text-align: center;
}

#sm-plugin-whatsapp.mobile #coupon .code,
#sm-plugin-whatsapp.mobile #coupon #offers {
  display: none;
}

#sm-plugin-whatsapp.mobile i {
  max-width: 90%;
}

#sm-plugin-whatsapp.mobile img {
  right: auto;
}

#sm-plugin-whatsapp.mobile #loading,
#sm-plugin-whatsapp.mobile #loading::before,
#sm-plugin-whatsapp.mobile #loading::after {
  height: 24px;
  width: 24px;
}

#sm-plugin-whatsapp.mobile #loading::before {
  left: -42px;
}

#sm-plugin-whatsapp.mobile #loading::after {
  right: -42px;
}

#preview {
  background: #ffffff;
  width: 100%;
  color: #3e4854;
  padding: 15px;
  border-radius: 8px;
  position: relative;
}

.container-preview::before {
  content: "";
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #ffffff transparent transparent;
  margin-left: -12px;
  position: absolute;
}

#message {
  white-space: pre-wrap;
  margin-bottom: 10px;
}

#footer-message {
  color: #8792a1;
  margin-top: 8px;
  margin-bottom: -6px;
  display: flex;
  justify-content: space-between;
}

#link {
  width: 100%;
  margin-top: 3px;
}

#link-message {
  border-radius: 20px;
  background: #ffffff;
  color: #48ade5;
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
  padding: 10px;
  font-weight: 500;
  pointer-events: none;
  height: 42px;
  margin-top: 200px;
}

#default-message {
  white-space: pre-wrap;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url([object Module]) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url([object Module]);
    src: url([object Module]?#iefix) format('embedded-opentype'), url([object Module]) format('woff'), url([object Module]) format('truetype'), url([object Module]#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\2022';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.advanced-cropper-line-wrapper--north,
.advanced-cropper-line-wrapper--south {
    height: 12px;
    width: 100%;
}

.advanced-cropper-line-wrapper--north {
    cursor: n-resize;
}

.advanced-cropper-line-wrapper--south {
    cursor: s-resize;
}

.advanced-cropper-line-wrapper--east,
.advanced-cropper-line-wrapper--west {
    width: 12px;
    height: 100%;
}

.advanced-cropper-line-wrapper--east {
    cursor: e-resize;
}

.advanced-cropper-line-wrapper--west {
    cursor: w-resize;
}

.advanced-cropper-line-wrapper--disabled {
    cursor: auto;
}

.advanced-cropper-line-wrapper__content {
    position: absolute;
}

.advanced-cropper-line-wrapper__content--east,
.advanced-cropper-line-wrapper__content--west {
    height: 100%;
}

.advanced-cropper-line-wrapper__content--north,
.advanced-cropper-line-wrapper__content--south {
    width: 100%;
}

.advanced-cropper-line-wrapper__content--east {
    left: 50%;
    transform: translateX(-100%);
}

.advanced-cropper-line-wrapper__content--west {
    right: 50%;
    transform: translateX(100%);
}

.advanced-cropper-line-wrapper__content--north {
    top: 50%;
}

.advanced-cropper-line-wrapper__content--south {
    bottom: 50%;
}

.advanced-cropper-handler-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}

.advanced-cropper-handler-wrapper__draggable {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advanced-cropper-handler-wrapper--west-north {
    cursor: nw-resize;
}

.advanced-cropper-handler-wrapper--north {
    cursor: n-resize;
}

.advanced-cropper-handler-wrapper--east-north {
    cursor: ne-resize;
}

.advanced-cropper-handler-wrapper--east {
    cursor: e-resize;
}

.advanced-cropper-handler-wrapper--east-south {
    cursor: se-resize;
}

.advanced-cropper-handler-wrapper--south {
    cursor: s-resize;
}

.advanced-cropper-handler-wrapper--west-south {
    cursor: sw-resize;
}

.advanced-cropper-handler-wrapper--west {
    cursor: w-resize;
}

.advanced-cropper-handler-wrapper--disabled {
    cursor: auto;
}

.advanced-cropper-bounding-box {
    position: relative;
    height: 100%;
    width: 100%;
}

.advanced-cropper-bounding-box__handler-wrapper {
    position: absolute;
}

.advanced-cropper-bounding-box__handler-wrapper--east,
.advanced-cropper-bounding-box__handler-wrapper--west {
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}

.advanced-cropper-bounding-box__handler-wrapper--south,
.advanced-cropper-bounding-box__handler-wrapper--north {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.advanced-cropper-bounding-box__handler-wrapper--west,
.advanced-cropper-bounding-box__handler-wrapper--west-north,
.advanced-cropper-bounding-box__handler-wrapper--west-south {
    left: 0;
}

.advanced-cropper-bounding-box__handler-wrapper--east,
.advanced-cropper-bounding-box__handler-wrapper--east-north,
.advanced-cropper-bounding-box__handler-wrapper--east-south {
    left: 100%;
}

.advanced-cropper-bounding-box__handler-wrapper--north,
.advanced-cropper-bounding-box__handler-wrapper--west-north,
.advanced-cropper-bounding-box__handler-wrapper--east-north {
    top: 0;
}

.advanced-cropper-bounding-box__handler-wrapper--south,
.advanced-cropper-bounding-box__handler-wrapper--west-south,
.advanced-cropper-bounding-box__handler-wrapper--east-south {
    top: 100%;
}

.advanced-cropper-bounding-box__handler {
    position: absolute;
}

.advanced-cropper-bounding-box__handler--west-north {
    left: 0;
    top: 0;
}

.advanced-cropper-bounding-box__handler--north {
    left: 50%;
    top: 0;
}

.advanced-cropper-bounding-box__handler--east-north {
    left: 100%;
    top: 0;
}

.advanced-cropper-bounding-box__handler--east {
    left: 100%;
    top: 50%;
}

.advanced-cropper-bounding-box__handler--east-south {
    left: 100%;
    top: 100%;
}

.advanced-cropper-bounding-box__handler--south {
    left: 50%;
    top: 100%;
}

.advanced-cropper-bounding-box__handler--west-south {
    left: 0;
    top: 100%;
}

.advanced-cropper-bounding-box__handler--west {
    left: 0;
    top: 50%;
}

.advanced-cropper-bounding-box__line {
    position: absolute;
}

.advanced-cropper-bounding-box__line--north,
.advanced-cropper-bounding-box__line--south {
    left: 0;
    transform: translateY(-50%);
}

.advanced-cropper-bounding-box__line--north {
    top: 0;
}

.advanced-cropper-bounding-box__line--south {
    top: 100%;
}

.advanced-cropper-bounding-box__line--west,
.advanced-cropper-bounding-box__line--east {
    top: 0;
    transform: translateX(-50%);
}

.advanced-cropper-bounding-box__line--west {
    left: 0;
}

.advanced-cropper-bounding-box__line--east {
    left: 100%;
}

.advanced-cropper-artificial-transition {
    will-change: transform;
}

.advanced-cropper-background-image {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    transform-origin: center;
    pointer-events: none;
    max-width: none !important;
}

.advanced-cropper-canvas {
    display: none;
}

.advanced-cropper-source {
    width: 1px;
    height: 1px;
    visibility: hidden;
    position: absolute;
    opacity: 0;
}

.advanced-cropper-fade {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
}

.advanced-cropper-fade--visible {
    opacity: 1;
    visibility: visible;
}

.advanced-cropper-wrapper__fade {
    flex-grow: 1;
    min-height: 0;
}

.advanced-cropper-stencil-grid {
    display: table;
    border-collapse: collapse;
    table-layout: fixed;
    opacity: 0;
    transition: opacity 0.3s;
}

.advanced-cropper-stencil-grid--visible {
    opacity: 1;
}

.advanced-cropper-stencil-grid__row {
    display: table-row;
}

.advanced-cropper-stencil-grid__cell {
    display: table-cell;
    width: 1%;
    height: 1%;
    border: currentColor solid 1px;
}

.advanced-cropper-stencil-grid__cell--top {
    border-top-color: transparent;
}

.advanced-cropper-stencil-grid__cell--left {
    border-left-color: transparent;
}

.advanced-cropper-stencil-grid__cell--right {
    border-right-color: transparent;
}

.advanced-cropper-stencil-grid__cell--bottom {
    border-bottom-color: transparent;
}

.advanced-cropper-stencil-overlay {
    box-sizing: content-box;
    box-shadow: 0 0 0 1000px currentColor;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
}

.advanced-cropper-stencil-wrapper {
    will-change: transform;
}

.advanced-cropper-boundary {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    direction: ltr;
    position: relative;
}

.advanced-cropper-boundary__content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.advanced-cropper-boundary__stretcher {
    pointer-events: none;
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.advanced-cropper-circle-stencil {
    position: absolute;
    height: 100%;
    width: 100%;
    box-sizing: content-box;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.advanced-cropper-circle-stencil__overlay {
    border-radius: 50%;
    overflow: hidden;
}

.advanced-cropper-circle-stencil__preview {
    border-radius: 50%;
}

.advanced-cropper-circle-stencil__draggable-area,
.advanced-cropper-circle-stencil__overlay,
.advanced-cropper-circle-stencil__preview,
.advanced-cropper-circle-stencil__grid {
    position: absolute;
    height: 100%;
    width: 100%;
}

.advanced-cropper-circle-stencil--movable {
    cursor: move;
}

.advanced-cropper-rectangle-stencil {
    position: absolute;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.advanced-cropper-rectangle-stencil__draggable-area,
.advanced-cropper-rectangle-stencil__overlay,
.advanced-cropper-rectangle-stencil__preview,
.advanced-cropper-rectangle-stencil__grid {
    position: absolute;
    height: 100%;
    width: 100%;
}

.advanced-cropper-rectangle-stencil--movable {
    cursor: move;
}

.advanced-cropper-simple-line {
    background: none;
    border-width: 0;
}

.advanced-cropper-simple-line--south,
.advanced-cropper-simple-line--north {
    height: 0;
    width: 100%;
}

.advanced-cropper-simple-line--east,
.advanced-cropper-simple-line--west {
    height: 100%;
    width: 0;
}

.advanced-cropper-simple-line--east {
    border-right-width: 1px;
}

.advanced-cropper-simple-line--west {
    border-left-width: 1px;
}

.advanced-cropper-simple-line--south {
    border-bottom-width: 1px;
}

.advanced-cropper-simple-line--north {
    border-top-width: 1px;
}

.advanced-cropper-simple-handler {
    display: block;
}

.advanced-cropper-preview {
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}

.advanced-cropper-preview__content {
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.advanced-cropper-preview__image {
    display: none;
    pointer-events: none;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform-origin: center;
    max-width: none !important;
}

.advanced-cropper-preview__image--visible {
    display: block;
}

.advanced-cropper-preview__boundary {
    flex-grow: 1;
    min-height: 0;
    min-width: 0;
}

.cropper-preview-wrapper__fade {
    flex-grow: 1;
    min-height: 0;
    width: 100%;
}

.advanced-cropper {
    overflow: hidden;
    max-height: 100%;
    background: black;
    position: relative;
    display: flex;
    flex-direction: column;
    color: white;
}

.advanced-cropper__boundary {
    flex-grow: 1;
    min-height: 0;
    min-width: 0;
}

.advanced-cropper__wrapper,
.advanced-cropper__background-wrapper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.advanced-cropper__stencil-wrapper {
    position: absolute;
}

.advanced-cropper * {
    box-sizing: border-box;
}

.advanced-cropper-simple-handler {
    background: currentColor;
    height: 10px;
    width: 10px;
}

.advanced-cropper-simple-line {
    transition: border 0.5s;
    border-color: rgba(255, 255, 255, 0.3);
    border-style: solid;
}

.advanced-cropper-simple-line--hover {
    border-color: white;
}

.advanced-cropper-circle-stencil__preview {
    border: solid 2px rgba(255, 255, 255, 0.2);
}

.advanced-cropper-stencil-overlay {
    color: rgba(0, 0, 0, 0.5);
}

.advanced-cropper-stencil-grid {
    color: rgba(255, 255, 255, 0.4);
}
#preview {
  background: #ffffff;
  width: 100%;
  color: #3e4854;
  padding: 15px;
  border-radius: 8px;
  position: relative;
}

.container-preview::before {
  content: "";
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #ffffff transparent transparent;
  margin-left: -12px;
  position: absolute;
}

#message {
  white-space: pre-wrap;
  margin-bottom: 10px;
}

#footer-message {
  color: #8792a1;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

#link {
  width: 100%;
  margin-top: 3px;
}

#link-message {
  border-radius: 20px;
  background: #ffffff;
  color: #48ade5;
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
  padding: 10px;
  font-weight: 500;
  pointer-events: none;
  height: 42px;
  margin-top: 200px;
}

#default-message {
  white-space: pre-wrap;
}

