html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
  font-family: Open Sans;
  font-style: normal;
  font-size: 16px;
  background: white;
}

/* to change font of ICE button */
button {
  font-family: Open Sans! important;
  font-style: normal !important;
}

#__next {
  margin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* disabling outline for all dom, because for each browser outline is different */
* {
  outline: none !important;
}

/* Hack to change default font of Quilljs */
.ql-editor {
  font-family: "Open Sans" !important;
  background: white !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  padding: 7px 7px !important;
}

/* Hack to make Quilljs tooltip top of all other DOM element */
.ql-tooltip {
  z-index: 120;
}

#select-portal {
  z-index: 9999;
  position: absolute;
}

#dropzone-portal {
  z-index: 111;
  position: absolute;
}

.customize-tooltip-style {
  opacity: 1 !important;
  font-size: 12px !important;
  padding: 8px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  z-index: 10000 !important;
}

.react-select-input input {
  font-family: Open Sans;
  color: rgba(0, 0, 0, 0.85);
  font-style: normal;
  font-weight: normal;
  min-width: 300px;
  width: 300px;
  line-height: 20px;
  font-size: 14px ;
}

/*
  display: block - it will not allow to render text until font will get download from server(from cache)
                   that way we can avoid text font switching flicker
 */

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: local('Open Sans'), local('OpenSans'),
  url('/tracker/static/fonts/opensans/open-sans-v13-latin-regular.woff2') format('woff2'),
  url('/tracker/static/fonts/opensans/fonts/open-sans-v13-latin-regular.woff') format('woff')
}

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
  url('/tracker/static/fonts/opensans/open-sans-v13-latin-600.woff2') format('woff2'),
  url('/tracker/static/fonts/opensans/open-sans-v13-latin-600.woff') format('woff')
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width:300px;
}
