/* CSS Lightbox Msg */

div.csslightbox_msg {
  display: inline-block;
}

div.csslightbox_msg_overlay, div.csslightbox_msg_overlay_conf {
  z-index: 1001;
  background-color: rgba(0,0,0,0.8);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

div.outer {
  display: table;
  height: 100%;
  width: 100%;
  position: fixed;
}

div.middle {
  display: table-cell;
  vertical-align: middle;
  max-width: 100%;
}

div.inner {
  margin-left: auto;
  margin-right: auto;
  width: 96%;
  max-width: 500px;
}

div.yt_video {
  width: 80%;
  max-width: 1280px;
}

.err_title {
  padding: 25px 40px 0 40px;
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.err_rule {
  border-bottom: 1px solid #ccc;
  margin-top: 15px;
}

.err {
  padding: 20px 40px 30px 40px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background:  #fff;
  font-size: 12px;
}

.conf {
  padding: 20px 40px 30px 40px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background:  #fff;
}

.csslightbox_msg_close {
  margin-top: 20px;
  width: 160px;
  padding: 12px;
  font-size: 10pt;
  background: #000;
  color: #fff;
  z-index: 1001;
  display: block;
  text-align: center;
  cursor: pointer;
}

.csslightbox_msg_close_conf {
  margin-top: 30px;
  width: 160px;
  padding: 12px;
  font-size: 10pt;
  background: #009345;
  color: #fff;
  z-index: 1001;
  display: block;
  text-align: center;
  cursor: pointer;
}

a.csslightbox_msg_close::after {
  /*  content: '\00d7';   replaced with image in HTML for this application*/
}

a:target ~ a.csslightbox_msg_close {
  visibility: visible;
}

a:target > div.csslightbox_msg_link + div.csslightbox_msg_overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}

/* This is the end of Msg */