
input[type=text]
{
width: calc(100% - 101px);
margin-top: -29px;
display: inline-block !important;
font: 12px/30px 'font1';
border-radius: 5px;
float: left !important;
height: 29px;
border: #f6f0f0;
border-style: solid;
background-color: #e9e9ed;
text-align: center;
border-width: 1px;
border-color: #7b7b7b;
}
        .modal {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            background: #FFF;
            box-shadow: 0 0 8px rgba(0,0,0,.3);
            transition: margin-top 0.3s ease, height 0.3s ease;
            transform: translateZ(0);
            box-sizing: border-box;
            z-index: 999;
            border-radius: 3px;
            max-width: 600px;
            display: block;
            height: 400px;
            overflow: scroll;
        }


.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("https://nedabal.com/loading.gif") center no-repeat;
}



body.loading{
    overflow: hidden;   
}

body.loading .overlay{
    display: block;
}


.webplus-loader
{
position: relative;
display:none;

}

.webplus-loader div {
  position: absolute;
  animation: spin 1s infinite linear;
  border: 2px solid rgba(30, 30, 30, 0.5);
  border-left: 4px solid #fff;
  border-radius: 50%;
  height: 50px;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 50px;
  top: 50%;
  left: 50%;

}

.webplus-fade
{
opacity: 0.2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

