@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

/* window */

.pop-layer {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  border: 5px solid #3571B5;
  z-index: 10;
}

.dim-layer {
  display: none;
  position: fixed;
  _position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.dim-layer .dimBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  filter: alpha(opacity=50);
}

.dim-layer .pop-layer {
  display: block;
  width: 498px;
  height: 595px;
}

.pop-layer .pop-conts {
  margin: 0;
  padding: 0;
}

/* content */

header img {
  width: 100%;
  height: 82px;
  background: url('../image/fincert_header.jpg') 0 0 no-repeat;
  /* object-fit: cover; */
}

main {
  display: inline-block;
  position: relative;
  /* width: 470px !important; */
  height: 498px;
  text-align: center;
  background: url('../image/fincert_body.jpg') no-repeat left top/cover;
}

.msg-box {
    display: inline-block;
    width: 450px;
}

.msg-box p {
    display: inline-block;
    width: 350px;
    margin: 70px 0 70px 0;
    padding: 30px 0;
    background-color: #f6f7fb;
    border: 1px solid #bbb;
    border-radius: 5px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.125);
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
}

button {
    outline: 0;
    font-size: 24px;
    width: 350px;
    height: 68px;
    background-color: #2d3091;
    border: 0;
    border-radius: 5px;
    margin-bottom: 30px;
    color: white;
    transition: all 0.3s ease;
}

button:focus {
    outline: 0;
}

button:hover {
    cursor: pointer;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.125);
    background-color: #232679;
}

.btn-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #2d3091;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: white;
  border: 1px solid #9f9ecb;
  -webkit-transform: scale(1, 0.9); /* Safari and Chrome */
  -moz-transform: scale(1, 0.9); /* Firefox */
  -ms-transform: scale(1, 0.9); /* IE 9 */
  -o-transform: scale(1, 0.9); /* Opera */
  transform: scale(1, 0.9); /* W3C */
  transition: all 0.3s ease;
}

.btn-close:hover {
  cursor: pointer;
  background-color: #2d3091;
  color: white;
  border: 1px solid #2d3091;
}

#wc_fincert_close {
    position: absolute;
    bottom: 15px;
    right: 15px;
    outline: 0;
    font-size: 14px;
    width: 80px;
    height: 36px;
    background-color: #777777;
    border: 0;
    border-radius: 3px;
    color: white;
    transition: all 0.3s ease;
}