﻿@charset "UTF-8";
/* ➤➤➤ Side Modal ➤➤➤ */
.bot_modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  visibility: hidden;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  width: 630px;
  max-width: 100%;
  height: 406px;
  max-height: 100%;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .bot_modal-container.bot_opened {
    z-index: 1010;
    visibility: visible;
    pointer-events: auto;
    opacity: 1; }

.bot_modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 630px;
  min-width: 300px !important;
  height: 405px;
  border: 1px solid;
  background-color: #eee;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  border-color: #f48222; }
  .bot_modal.bot_freeze iframe {
    pointer-events: none; }
  .bot_modal__frame {
    border: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%; }
  .bot_modal__header {
    line-height: 50px;
    position: relative;
    height: 50px;
    padding: 0 12px;
    cursor: move;
    background-color: #fff; }
  .bot_modal__title {
    font-size: 24px;
    overflow: hidden;
    min-width: 300px;
    padding-right: 50px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    color: #f48222; }
  .bot_modal__body {
    height: -webkit-calc(100% - 70px);
    height: calc(100% - 70px); }
  .bot_modal__footer {
    height: 20px;
    margin-top: auto;
    cursor: move;
    background-color: #fff; }
  .bot_modal__close {
    font-size: 24px;
    font-weight: 700;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #f48222;
    border: 0;
    background-color: transparent;
    text-shadow: 0 1px 0 #fff; }
    .bot_modal__close span {
      line-height: 50px; }
    .bot_modal__close:hover {
      color: #dc821c; }

.bot_modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background-color: #777; }
  .bot_modal-overlay.bot_opened {
    visibility: visible;
    z-index: 1000;
    opacity: .7; }

.ui-resizable-se {
  width: 16px;
  height: 16px;
  opacity: .6;
  background-image: url(../img/resize.png);
  -webkit-background-size: 16px auto;
          background-size: 16px auto; }

.bot_no-scroll-modal,
.bot_no-scroll-aside {
  overflow: hidden; }

@media screen and (max-width: 767px) {
  .bot_modal-container {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }
  .bot_modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important; } }
