/* This CSS contains custom positioning for ITX Chat widget - by default on narrow devices it covers "send" button in chat */

/* Mobile view */
@media screen {
  body iframe.itx-plugin-frame {
    display: none;
  }
}

/*md*/
@media screen and (width >= 48rem) {
  body iframe.itx-plugin-frame {
    display: block;
    bottom: 190px;
  }
}

/*lg*/
@media screen and (width >= 64rem) {
  body iframe.itx-plugin-frame {
    display: block;
    bottom: 70px;
  }
}

/*xl*/
@media screen and (width >= 80rem) {
  body iframe.itx-plugin-frame {
    display: block;
    bottom: 20px;
  }
}
