/*************

Webform

**************/

.webform-message {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  display: none;
  z-index: 10;
}

.webform-message.show {
  display: block;
}

.webform-message .alert {
  background: #f2f2f2;
  margin: 0;
  color: #00336a;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  box-shadow: 0 0 19px 0px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
}

.webform-message .close {
  display: block;
  width: 13px;
  height: 13px;
  background: url(img/close_application.png) no-repeat center center transparent;
  font-size: 0;
  opacity: 8;
  position: absolute;
  top: 10px;
  right: 10px;
}

.webform-message .close:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .webform-message {
    max-width: 90%;
  }
}
