﻿
.wsLightBox
{
    font-family: 'Source Sans Pro', sans-serif;
    position: fixed;
    left: 0px;
    right: 0px;
    background-color: #fff;
    margin: auto;
    display: none;
    padding: 5px;
    z-index: 1;
}

/*ToolBar*/
.wsLightBox .wsToolBar
{
    margin-bottom: 5px;
}

.wsLightBox .wsToolBar > div:first-child
{
    display: inline-block;
    height: 30px;
}

.wsLightBox .wsToolBar .wsClose
{
    display: inline-block;
    background-image: url("/file/app/1/editor/icon/close.svg?color1=r0g0b0");
    background-size: cover;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
}

/*img*/
.wsLightBox .wsImg
{
    background-repeat: no-repeat;
    background-position: center center;
}

/*Arrows*/
.wsLightBox .wsArrowLeft, .wsLightBox .wsArrowRight
{
    background-image: url("/file/app/1/editor/icon/selector.svg?color1=r255g255b255");
    background-size: cover;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    display: none;
}

.wsLightBox .wsArrowLeft
{
    left: -80px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.wsLightBox .wsArrowRight
{
    right: -80px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

/*Footer*/
.wsLightBox .wsFooter 
{
    height: 100px;
    display: none;
    overflow: auto;
}

.wsLightBox .wsFooter > div
{
    margin: 5px 10px 0px 10px;
}

.wsLightBox .wsFooter > div:nth-child(1)
{
    font-weight: bold;
}

/*Modal*/
.wsLightBox.wsModal
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .75;
    display: none;
}

.wsLoadingFlexContainer
{
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.wsLoadingSpinnerBlack
{
    margin: 6em auto;
    font-size: 8px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(0, 0, 0, 0.2);
    border-right: 1.1em solid rgba(0, 0, 0, 0.2);
    border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
    border-left: 1.1em solid #000000;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

.wsLoadingSpinnerBlack,
.wsLoadingSpinnerBlack:after
{
    border-radius: 50%;
    width: 10em;
    height: 10em;
    outline: 1px solid transparent;
}

@-webkit-keyframes load8 
{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 
{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

