 .nativechat-launcher-icon-open,
 .nativechat-launcher-icon-close {
   position: fixed;
   right: 30px;
   bottom: 15px;
   z-index: 9999;
   cursor: pointer;
   width: 60px;
   height: 60px;
   cursor: pointer;
   transform-origin: center;
 }

 .nativechat-launcher-icon-open {
   background: url("./chat-open.svg") center no-repeat;
   background-size: contain;
 }

 .nativechat-launcher-icon-close {
   background: url("./chat-close.svg") center no-repeat;
   background-size: contain;
   display: none;
 }

 .nativechat-launcher-modal {
   position: fixed;
   width: 400px;
   height: 600px;
   right: 30px;
   bottom: 90px;
   background: #fff;
   box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
   padding: 0;
   z-index: 998;
   border-radius: 6px;
 }

 .nativechat-launcher-modal iframe {
   width: 100%;
   height: 100%;
   border: none;
 }

 @media only screen and (min-device-width: 325px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) {
   .nativechat-launcher-modal {
     top: 0;
     left: 0;
     right: 0;
     bottom: 180px;
     width: auto;
     height: auto;
     box-shadow: none;
   }
 }