.loader {
  border: 6px solid transparent ;
  border-top: 6px solid #385964;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  position: absolute;
  z-index: 9999;
  right: calc( 50% - 15px);
  top: calc( 50% - 15px);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}
label{
  margin-bottom: 7px;
}
.form-group{
  margin-bottom: 22px;
}
.form-control{
  border-radius: 5px;
  box-shadow: none;
  padding: 10px 15px;
  line-height: 1;
  height: 45px;
  border: none;
  background: #f5f5f5;
}
.btn{
  margin-top: 35px;
  border-radius: 5px;
  height: 45px;
}
.btn-success{
  background: #00bea2;
  border-color: #00bea2;
}
.btn-success:hover, .btn-success:active, .btn-success:focus{
  background: #00e0c0;
  border-color: #00e0c0;
}
.progress{
  height: 18px;
}
.progress-bar{
  height: 18px;
  background-color: #00bea2;
}

.progress-status{
  font-weight: bold;
  text-align: left;
  overflow-y: scroll;
  margin-left: 10px;
}
.progress-feed{
  background: #f9f9f9;
  padding: 20px;
  text-align: left;
  overflow-y: scroll;
  height: 206px;
}

.progress-status p{
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}
.progress-feed p{
  font-size: 13px;
  margin-bottom: 6px;
  color: #696969;
}

.status-bar{
  margin-top: 13px;
}

#close_popup_window{
  margin: 0;
  height: 30px;
  padding: 2px 14px;
  font-size: 10px;
  float: right;
  display: none;
}

#popup_window{
  display: none;
  position: fixed;
  z-index: 10000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
}

.popup_window_container{
  border-radius: 5px;
  padding: 30px;
  position: relative;
  background: #fff;
  border: solid 1px #e2e2e2;
  width: 650px;
  height: 400px;
  top: calc( 50% - 200px );
  left: calc( 50% - 325px );
}



@media screen and (max-width: 768px) {
  .popup_window_container{
    width: 90%;
    height: auto;
    margin: auto;
    left: auto;
    top: 40px;
  }
}
