.lock_control {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
}

.lock_control .notification {
  border: 1px solid #1c467b;
  background-color: white;
  box-sizing: border-box;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  position: absolute;
}

.lock_control .notification .x_close_dialog{
  position: absolute;
  right: 25px;
  top: 20px;
  width: 20px;
  height: 20px;
  opacity: 0.3;
}
.lock_control .notification .x_close_dialog:hover {
  opacity: 0.9;
  cursor:pointer;
}
.lock_control .notification .x_close_dialog:before, .lock_control .notification .x_close_dialog:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #1c467b;
}
.lock_control .notification .x_close_dialog:before {
  transform: rotate(45deg);
}
.lock_control .notification .x_close_dialog:after {
  transform: rotate(-45deg);
}

.lock_control .notification .notification_title {
  color: #1c467b;
  margin-top: 0;
}

.notification_message a{
	color: #1c467b;
}

.notification_message a:hover{
	color: gray;
}

.notification_buttons {
  display: block;
  text-align: right;
  margin-top: 30px;
}

.notification_buttons li.button {
  display: inline-block;
  padding: 13px 32px;
  color: white;
  text-align: center;
  border-radius: 2px;
  margin-left: 20px;
  cursor: pointer;
}

.notification_buttons li.button.accept {
  background-color: #1c467b;
}

.notification_buttons li.button.accept:hover {
  background-color: #242424;
}

.notification_buttons li.button.cancel {
  background-color: #242424;
}

.notification_buttons li.button.cancel:hover {
  background-color: #1c467b;
}

@-webkit-keyframes animIn {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0
  }
  50% {
    opacity: 1
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0
  }
}

@keyframes animIn {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0
  }
  50% {
    opacity: 1
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0
  }
}

.waiting {
  margin-top: 50px;
}

.loading {
  position: relative;
  left: 50%;
  height: 10px;
  margin-bottom: 25px;
}

.loading .bullet {
  position: absolute;
  padding: 5px;
  border-radius: 50%;
  background: #1c467b;
  -webkit-animation: animIn .8s ease-in-out 0s infinite;
  animation: animIn .8s ease-in-out 0s infinite
}

.loading .bullet:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

.loading .bullet:nth-child(2) {
  -webkit-animation-delay: .15s;
  animation-delay: .15s
}

.loading .bullet:nth-child(3) {
  -webkit-animation-delay: .3s;
  animation-delay: .3s
}

.loading .bullet:nth-child(4) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s
}

.popup_trigger {
  padding: 13px 32px;
  border: 1px solid #1c467b;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 100%;
  box-sizing:border-box;
}

.popup_trigger:hover {
  border-color: transparent;
  background-color: #1c467b;
  color: white;
  cursor: pointer;
}