@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot");
  src: url("fonts/icomoon.eot?#iefix") format("embedded-opentype"),
    url("fonts/icomoon.ttf") format("truetype"),
    url("fonts/icomoon.woff") format("woff"),
    url("fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.react-viewer-inline {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.react-viewer ul {
  margin: 0;
  padding: 0;
}
.react-viewer li {
  list-style: none;
}
.react-viewer {
  opacity: 0;
}
.react-viewer-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgb(55, 55, 55);
  background-color: rgba(55, 55, 55, 0.3);
  height: 100%;
  filter: alpha(opacity=50);
  z-index: 1000;
}
.react-viewer-btn {
  background-color: #2962ff;
  color: white;
}
.react-viewer-btn:hover {
  background-color: #1b57fd;
}
.react-viewer-close {
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 60px;
  border-radius: 0 0 0 10px;
  height: 60px;
  background-color: #2962ff;
  cursor: pointer;
  z-index: 1010;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 50ms cubic-bezier(0.4, 0, 0.2, 1);
}
.react-viewer-close-desktop {
  width: 60px !important;
  height: 60px !important;
}
.react-viewer-icon-close-desktop {
  font-size: 36px !important;
}
.react-viewer-close:active {
  transform: scale(0.95);
}
.react-viewer-close:hover {
  background-color: #0d47a1;
}
.react-viewer-close > i {
  position: relative;
  font-size: 36px;
}
.react-viewer-canvas {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1005;
}
.react-viewer-canvas > img {
  display: block;
  width: auto;
  height: auto;
  user-select: none;
}
.react-viewer-canvas > img.drag {
  cursor: move;
}
.react-viewer-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  text-align: center;
  z-index: 1005;
}
.react-viewer-inline > .react-viewer-mask,
.react-viewer-inline > .react-viewer-close,
.react-viewer-inline > .react-viewer-canvas,
.react-viewer-inline > .react-viewer-footer {
  position: absolute;
}
.react-viewer-attribute {
  margin: 0 20px;
  margin-bottom: 6px;
  opacity: 0.8;
  color: #ccc;
  font-size: 15px;
}
.react-viewer-showTotal {
  float: right;
}
.react-viewer-toolbar {
  overflow: hidden;
  height: 28px;
  margin-bottom: 6px !important;
}
.react-viewer-toolbar li {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  margin-right: 3px;
  cursor: pointer;
  line-height: 28px;
}
.react-viewer-toolbar li:hover {
  background-color: #0d47a1;
}
.react-viewer li.empty {
  background-color: transparent;
  cursor: default;
}
.react-viewer-navbar {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
.react-viewer-list {
  height: 50px;
  padding: 1px;
  text-align: left;
}
.react-viewer-list > li {
  display: inline-block;
  width: 30px;
  height: 50px;
  cursor: pointer;
  overflow: hidden;
  margin-right: 1px;
}
.react-viewer-list > li > img {
  width: 60px;
  height: 50px;
  margin-left: -15px;
  opacity: 0.5;
}
.react-viewer-list > li.active > img {
  opacity: 1;
}
.react-viewer-transition {
  transition: opacity 0.3s ease-out;
}
.react-viewer-image-transition {
  transition-property: width, height, margin, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.react-viewer-list-transition {
  transition: margin 0.3s ease-out;
}
.react-viewer-icon {
  font-family: "icomoon" !important;
  display: inline-block;
  font-style: normal;
  vertical-align: baseline;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: 13px;
}
.react-viewer-icon-zoomIn:before {
  content: "\ea0a";
}
.react-viewer-icon-zoomOut:before {
  content: "\ea0b";
}
.react-viewer-icon-prev:before {
  content: "\ea38";
}
.react-viewer-icon-next:before {
  content: "\ea34";
}
.react-viewer-icon-close:before {
  content: "\ea0f";
}
.react-viewer-icon-rotateLeft:before {
  content: "\e967";
}
.react-viewer-icon-rotateRight:before {
  content: "\e968";
}
.react-viewer-icon-reset:before {
  content: "\e984";
}
.react-viewer-icon-scaleX:before {
  content: "\ea60";
}
.react-viewer-icon-scaleY:before {
  content: "\ea5f";
}
.react-viewer-icon-download:before {
  content: "\e9c7";
}
.circle-loading {
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  animation: spin 1s infinite linear;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
