/* normalize css */
* {
  box-sizing: border-box;
  font-size: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR',
    sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
article,
ul,
ol,
li,
span,
a,
section,
div,
header,
footer {
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  display: inline-block;
  vertical-align: bottom;
}
video {
  width: 100%;
}

/* modules */
.flex-cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.fl {float: left;}
.fr {float: left;}
.cf::after {content: ""; clear: both; display: table;}
.is-mobile {display: none !important;}
@media screen and (max-width:920px) {
  .is-desktop { display: none !important;}
  .is-mobile {display: block !important;}
}
/* nav css */
nav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 9999;
  box-shadow: 1px 1px 1px 0px #ccc;
}
nav .wrap {
  padding: 20px 30px;
  max-width: 1800px;
  margin: 0 auto;
  justify-content: space-between;
}
#topLogo img {
  max-width: 185px;
}
.gnb {
  width: 45%;
  max-width: 500px;
  justify-content: space-between;
}
.gnb li {
  width: 25%;
}
.gnb a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 45px;
  color: #000000;
  font-size: 1.2em;
  line-height: 3;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.gnb a:hover {
  color: #1a80ca;
}
.lang {
  width: 110px;
}
.lang li {
  width: 50px;
}
.lang li:nth-child(2) {
  width: 10px;
  line-height: 45px;
  text-align: center;
  font-size: .9em;
}
.lang a {
  text-align: center;
  display: block;
  width: 100%;
  color: rgb(195, 195, 195);
  line-height: 45px;
  font-size: .9em;
}
.lang a.on {
  color: #000;
}
#mGnb {
  display: none;
}
/* responsive css */
@media screen and (max-width:920px) {
  /* nav */
  #topLogo img {
    max-width: 145px;
  }
  nav .wrap {
    padding: 10px 15px;
  }
  .lang {
    width: 150px;
    padding-right: 30px;
  }
  #btnOpenNav {
    position: absolute;
    width: 27px;
    height: 24px;
    top: 22px;
    right: 15px;
    cursor: pointer;
    z-index: 9888;
  }
  #btnOpenNav span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(66, 66, 66);
    right: 0;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
  #btnOpenNav span.bar1 {top: 3px;}
  #btnOpenNav span.bar2 {top: 11px;}
  #btnOpenNav span.bar3 {top: 19px;}
  #btnOpenNav.active span.bar1 {
    top: 13px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
  #btnOpenNav.active span.bar2 {
    width: 0;
  }
  #btnOpenNav.active span.bar3 {
    top: 13px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  #mGnb {
    display: block;
    opacity: 0;
    position: absolute;
    width: 80%;
    height: 100vh;
    max-width: 400px;
    top: 66px;
    right: -80%;
    background: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
  }
  #mGnb.active {
    opacity: 1;
    right: 0%;
  }
  #mGnb ul {
    padding: 30px 0 0;
  }
  #mGnb ul li {
    padding: 0 20px 10px;
  }
  #mGnb ul li a {
    color: #000;
    font-size: 4vw;
  }
}
@media screen and (max-width:420px) {
  #mGnb ul li a {
    font-size: 1.2em;
  }
}

/* contents */
article {
  margin: 0 auto;
  padding: 98px 0 0;
}
section {
  max-width: 1420px;
  margin: 50px auto;
  padding: 0 30px;
}
section h3 {
  margin: 20px 0;
  font-size: 2.1em;
  font-weight: 400;
}
.top-banner {
  position: relative;
  height: 350px;
}
#about .top-banner {
  background: url(/images/main/about.jpg) center no-repeat;
  background-size: cover;
}
#product .top-banner {
  background: url(/images/main/product.jpg) center no-repeat;
  background-size: cover;
}
#contact .top-banner {
  background: url(/images/main/support.jpg) center no-repeat;
  background-size: cover;
}
.top-banner h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1420px;
  padding: 0 30px;
  color: #fff;
  font-size: 3em;
  line-height: 1.3;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
.top-banner h2 span {
  display: block;
  letter-spacing: -1px;
  font-size: .5em;
}
/* responsive */
@media screen and (max-width:920px) {
  article {
    padding: 66px 0 0;
  }
  section {
    padding: 0 15px;
  }
  .top-banner {
    height: 200px;
  }
  .top-banner h2 {
    padding: 0 15px;
    font-size: 2em;
  }
}
@media screen and (max-width:420px) {
  .top-banner {
    height: 140px;
  } 
  section h3 {
    margin: 13px 0;
    font-size: 1.8em;
    font-weight: 400;
  }
  .top-banner h2 {
    padding: 0 15px;
    font-size: 1.6em;
    line-height: 1.5;
  }
  .top-banner h2 span {
    font-size: .7em;
  }
}

/* footer */
footer {
  border-top: 1px solid #ccc;
}
footer .wrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 35px 30px 50px;
}
.footer-top-line {
  justify-content: space-between;
}
.footer-links a {
  margin: 0 5px;
  line-height: 40px;
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
  color: #000;
}
.footer-information {
  margin: 15px 0 10px;
}
.footer-information p {
  padding: 0 0 5px;
  font-size: 1em;
}
.footer-information p strong {
  display: inline-block;
  font-size: 1.1em;
  width: 70px;
}
.copyright {
  color: rgb(195, 195, 195);
  font-size: .9em;
}
/* responsive */
@media screen and (max-width:920px) {
  footer .wrap {
    padding: 30px 15px 40px;
  }
}
@media screen and (max-width:420px) {
  footer .wrap {
    padding: 15px 15px 20px;
  }
  .footer-information p strong {
    display: block;
    font-size: 1em;
  }
  .footer-information p {
    font-size: .8em;
  }
  .copyright {
    font-size: .8em;
  }
}

/* main */
#main {
  padding: 0;
}
#main .cover {
  position: relative;
  max-width: 100%;
  height: 100vh;
  margin: 0;
  background: url(/images/main/main.jpg) center no-repeat;
  background-size: cover;
}
#main .cover ul {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%,0);
  max-width: 1800px;
  width: 100%;
  padding: 0 30px;
  justify-content: space-between;
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
}
#main .cover ul li {
  width: 31.33333%;
}
#main .cover ul li a {
  padding: 34px 44px;
  width: 100%;
  display: block;
  font-size: 2em;
  color: #fff;
  background: rgba(0,0,0,0.5);
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
  0px 3px 4px 0px rgba(0, 0, 0, 0.14),
  0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
#main .cover ul li a:hover {
  background: #1a80ca;
  border: 1px solid #1a80ca;
}
#main .cover .txt-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 1800px;
  padding: 0 30px;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
#main .cover .txt-wrap .txt1 {
  color: #fff;
  font-size: 3em;
}
/* responsive */
@media screen and (max-width:920px) {
  #main .cover .txt-wrap .txt1 {
    font-size: 6vw;
  }
  #main .cover ul {
    padding: 0 15px;
  }
  #main .cover ul li a {
    padding: 22px 0;
    text-align: center; 
    font-size: 1.35em;
  }
}
@media screen and (max-width:420px) { 
  #main .cover ul {
    padding: 0 10px;
  }
  #main .cover ul li a {
    padding: 10px 0;
    font-size: 1em; 
  }
}

/* about */
#about .top-banner h2 {
  color: #333;
}
#about .company-info .box p {
  font-size: 18px;
}
#about .company-info .boxes {
  justify-content: space-between;
}
#about .company-info .boxes .box {
  width: 47%;
}
#about .company-info .boxes .box p {
  font-size: 20px;
  padding: 0 0 11px;
  line-height: 1.65;
}
#about .company-info .boxes .box p strong {
  font-size: 22px;
}
#about .company-info .boxes .box p strong em {
  font-size: 23px;
  font-style: normal;
  color: #1a80ca;
}
#about .company-info .boxes .box li {
  font-size: 20px;
  padding: 0 0 9px;
}
/* responsive */
@media screen and (max-width:920px) {
  #about .company-info .boxes {
    flex-direction: column;
  }
  #about .company-info .boxes .box {
    width: 100%;
  }
  #about .company-info .boxes .box:nth-child(1) {
    margin: 0 0 35px;
  }
}
@media screen and (max-width:420px) {
  #about .company-info .boxes .box p {
    font-size: 15px;
  }
  #about .company-info .boxes .box p strong {
    font-size: 16px;
  }
  #about .company-info .boxes .box p strong em {
    font-size: 17px;
  }
  #about .company-info .boxes .box li {
    font-size: 15px;
  }
}

/* product */
#product .tab-btns {
  max-width: 1420px;
  margin: 50px auto;
  padding: 0 30px;
  justify-content: center;
}
#product .tab-btns .tab {
  width: 50%;
  padding: 18px 30px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 1.2em;
  cursor: pointer;
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
  0px 3px 4px 0px rgba(0, 0, 0, 0.14),
  0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
#product .tab-btns .tab.current {
  color: #fff;
  background: #1a80ca;
  border: 1px solid #1a80ca;
}
#product .tab-contents {
  display: none;
}
#product .tab-contents.current {
  display: block;
}
#product .product-info h3 {
  line-height: 1.2;
}
#product .product-info h3 span {
  display: block;
  color: #1a80ca;
  font-size: .3em;
}
#product .product-info h3 p {
  margin: 20px 0 0;
  font-size: .4em;
}
#product .product-info ul {
  justify-content: space-between;
}
#product .product-info ul .img-wrap {
  width: 40%;
}
#product .product-info ul .img-wrap img {
  width: 100%;
}
#product .product-info ul .txt-wrap {
  width: 55%;
}
#product .product-info ul .txt-wrap p {
  font-size: .95em;
  line-height: 1.73;
}
#product .product-info ul .txt-wrap .down-links {
  margin: 25px 0;
  justify-content: flex-start;
}
#product .product-info ul .txt-wrap .down-links li {
  width: 48%;
  margin: 0 2% 0 0;
}
#product .product-info ul .txt-wrap .down-links li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-size: .9em;
  color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
#product .product-info ul .txt-wrap .down-links.profile li a {
  color: #e8f0de;
  border: solid 1px #1a80ca;
  background: #1a80ca;
  background: -webkit-gradient(linear, left top, left bottom, from(#1a80ca), to(#4e7d0e));
  background: -moz-linear-gradient(top, #1a80ca, #4e7d0e);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a80ca', endColorstr='#4e7d0e');
  -webkit-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a80ca', endColorstr='#4e7d0e');
}
#product .product-info ul .txt-wrap .down-links.instruction li a {
  color: #d9eef7;
  border: solid 1px #41a9d2;
  background: #41a9d2;
  background: -webkit-gradient(linear, left top, left bottom, from(#41a9d2), to(#0078a5));
  background: -moz-linear-gradient(top, #41a9d2, #0078a5);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#41a9d2', endColorstr='#0078a5');
  -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#41a9d2', endColorstr='#0078a5');
}
#product .product-info ul .txt-wrap .down-links li a:hover {
  box-shadow: 1px 1px 1px 1px #ccc;
}
#product .owl-dots {
  position: absolute;
  bottom: 3%;
  width: 100%;
  left: 0;
  text-align: center;
}
#product .owl-dots .owl-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 5px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background: #ccc;
}
#product .owl-dots .owl-dot.active {
  background: #1a80ca;
}
#product .video-area ul {
  justify-content: space-between;
}
#product .video-area h3 {
  padding: 0 0 15px;
  border-bottom: 1px solid #1a80ca;
}
#product .video-area ul li {
  width: 48%;
}
#product .video-area ul li video {
  box-shadow: 3px 3px 3px 1px #ddd;
}
#product .video-area ul li a {
  padding: 10px 0 0;
  display: block;
  color: grey;
  text-align: center;
  font-size: 15px;
  text-decoration: underline;
  text-transform: capitalize;
}
#product .product-detail {
  margin: 0 auto 50px;
}
#product .product-detail .box {
  max-width: 1060px;
  margin: 0 auto;
}
#product .product-detail img {
  width: 100%;
}
#product .instructions .box {
  width: 50%;
}
#product .instructions .box:nth-child(1) > img {
  width: 80%;
  margin: 0 auto 115px;
  display: block;
}
#product .instructions > ul {
  margin: 0 0 15px;
  justify-content: space-between;
}
#product .instructions > ul li {
  width: 24%;
}
#product .instructions ul li img {
  width: 100%;
  display: block;
}
#product .instructions > p {
  text-align: right;
  font-weight: bold;
}
#product .instructions .box:nth-child(2) {
  padding: 0 0 0 55px;
}
#product .instructions .box:nth-child(2) h4 {
  font-size: 32px;
  margin: 0 0 35px;
}
#product .instructions .box:nth-child(2) ul li {
  position: relative;
  padding: 0 0 12px 20px;
  font-size: 18px;
  white-space: nowrap;
}
#product .instructions .box:nth-child(2) ul li::before {
  position: absolute;
  content: "";
  display: inline-block;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background-color: #000;
}
#product .type h4 {
  font-size: 32px;
  margin: 0 0 35px;
}
#product .type img {
  width: 100%;
  display: block;
}
#product .certifications {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #fafafa;
}
#product .certifications .box {
  max-width: 1420px;
  padding: 100px 30px;
  margin: 0 auto;
  text-align: center;
}
#product .certifications .box h4 {
  margin: 0 auto 35px;
  color: #d11f2a;
  font-weight: normal;
  font-size: 24px;
}
#product .certifications .box p {
  font-size: 30px;
  font-weight: bold;
}
#product .certifications .box p:nth-child(3) {
  font-size: 19px;
  color: #888;
  font-weight: normal;
}
#product .certifications .box ul {
  max-width: 920px;
  border-top: 1px solid #ddd;
  padding: 10px 0 0;
  margin: 45px auto 0;
}
#product .certifications .box ul li {
  width: 25%;
}
#product .certifications .box ul li img {
  width: 100%;
  display: block;
}
/* responsive */
@media screen and (max-width:920px) {
  #product .tab-btns {
    padding: 0 15px;
    margin: 25px auto 0;
  }
  #product .tab-btns .tab {
    padding: 10px 5px;
    font-size: .8em;
  }
  #product .product-info {
    margin: 50px auto 25px;
  }
  #product .product-info ul .img-wrap,
  #product .product-info ul .txt-wrap {
    width: 100%;
  }
  #product .product-info ul .txt-wrap {
    margin: 25px 0 0;
  }
  #product .product-info ul .txt-wrap .down-links {
    margin: 20px 0 10px;
  }
  #product .instructions {
    margin: 25px auto;
  }
  #product .instructions .box {
    width: 100%;
  }
  #product .instructions .box:nth-child(1)>img {
    width: 100%;
    margin: 0 auto 45px;
  }
  #product .instructions p {
    text-align: left;
  }
  #product .instructions > ul li {
    width: 50%;
    padding: 1px;
  }
  #product .instructions .box:nth-child(2) {
    padding: 0;
  }
  #product .type h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }
  #product .instructions .box:nth-child(2) h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }
  #product .instructions .box:nth-child(2) ul li {
    padding: 0 0 6px 9px;
    font-size: 19px;
  }
  #product .instructions .box:nth-child(2) ul li::before {
    top: 9px;
    width: 4px;
    height: 4px;
  }
  #product .instructions .box:nth-child(1) ul {
    margin: 0 0 9px;
  }
  #product .instructions .box:nth-child(1) p {
    font-size: 15px;
  }
  #product .instructions .box:nth-child(2) {
    margin: 23px 0;
  }
  #product .certifications .box {
    padding: 37px 15px;
  }
  #product .certifications .box h4 {
    margin: 0 auto 23px;
    font-size: 18px;
  }
  #product .certifications .box p {
    font-size: 20px;
  }
  #product .certifications .box p:nth-child(3) {
    font-size: 15px;
  }
}
@media screen and (max-width:640px) {
  #product .video-area ul {
    justify-content: space-between;
  }
  #product .video-area h3 {
    padding: 0 0 15px;
    border-bottom: 1px solid #1a80ca;
  }
  #product .video-area ul li {
    width: 100%;
    margin: 0 0 28px;
  }
  #product .video-area ul li:first-child {
    margin: 14px 0 28px;
  }
  #product .video-area ul li:last-child {
    margin: 0;
  }
  #product .instructions .box:nth-child(2) ul li {
    font-size: 13.5px;
  }
  #product .instructions .box:nth-child(2) ul li::before {
    top: 6px;  
  }
  #product .certifications .box p {
    font-size: 18px;
  }
}
@media screen and (max-width:420px) { 
  #product .product-info ul .txt-wrap .down-links li {
    width: 100%;
    margin: 0 0 10px;
  }
  #product .product-info ul .txt-wrap .down-links.video li {
    width: 100%;
  }
}

/* contact */
#contact .contact-name,
#contact .contact-company,
#contact .contact-email,
#contact .contact-phone {
  width: 50%;
  margin: 0 0 24px;
}
#contact .contact-name,
#contact .contact-email {
  padding-right: 12px;
}
#contact .contact-company,
#contact .contact-phone {
  padding-left: 12px;
}
#contact .contact-title,
#contact .contact-content {
  width: 100%;
  margin: 0 0 24px;
}
#contact #contactFrm input {
  display: block;
  width: 100%;
  border: 1px solid #dcdcdc;
  height: 60px;
  box-sizing: border-box;
  padding: 0 15px;
}
#contact #contactFrm textarea {
  height: 500px;
  display: block;
  border: 1px solid #dcdcdc;
  width: 100%;
  padding: 15px;
  font-size: 15px;
  line-height: 26px;
  box-sizing: border-box;
  resize: none;
}
#contact .privacy h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
#contact .privacy p {
  padding: 20px;
  border: 1px solid #dcdcdc;
}
#contactFrm #submit {
  display: block;
  width: 170px;
  margin: 35px auto;
  text-align: center;
  background-color: #1a80ca;
  color: #fff;
  line-height: 48px;
  height: 50px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  cursor: pointer;
  border: 0;
}
#contact #map img{
  width: 100%;
  display: block;
}
/* responsive */
@media screen and (max-width:920px) {
  
}
@media screen and (max-width:420px) { 
  #contact .contact-name,
  #contact .contact-email {
    padding-right: 0;
  }
  #contact .contact-company,
  #contact .contact-phone {
    padding-left: 0;
  }
  #contact .contact-name,
  #contact .contact-company,
  #contact .contact-email,
  #contact .contact-phone {
    width: 100%;
    margin: 0 0 12px;
  }
  #contact .contact-title,
  #contact .contact-content {
    margin: 0 0 12px;
  }
  #contact #contactFrm textarea {
    height: 280px;
  }
  #contact .privacy h4 {
    font-size: 1em;
    margin-bottom: 10px;
  }
  #contact .privacy p {
    padding: 15px 10px;
    font-size: .9em;
    line-height: 1.3;
  }
  #contactFrm #submit {
    width: 100%;
    margin: 15px auto;
  }
}

/* popup */
#layerPop {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 460px;
  width: 90%;
  background-color: #fff;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
#layerPop h3 {
  padding: 10px 0;
  text-align: center;
  color: #fff;
  background-color: #1a80ca;
  font-size: 18px;
}
#layerPop .content {
  padding: 12px;
  font-size: 15px;
  line-height: 1.55;
}
#layerPop .content a {
  color: #333;
  text-decoration: underline;
}
#layerPop #closePop {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-color: grey;
  padding: 8px 0;
}