/* BASIC css start */
.BCbutton {
  font-size: 1.2em;
  text-decoration: none;
  cursor: pointer;
    display: inline-block;
    border-bottom: 1px solid #222;
    color: #000;
    cursor: pointer;
  font-family: '돋움', Dotum,sans-serif;
  font-weight: 800;
}
.BCbutton:hover {
  color: #da76da;
}

.BCoverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.BCoverlay:target {
  visibility: visible;
  opacity: 1;
}

.BCpopup {
  z-index:9999;
  margin: 125px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 80%;
  position: relative;
  transition: all 5s ease-in-out;
  font-family: '돋움', Dotum,sans-serif;
  font-weight: 300;
  font-size: 1.1em;
}

.BCpopup h6 {
  padding: 20px;
  margin-top: 5px;
  color: #333;
  font-family: '돋움', Dotum,sans-serif;
  background: #f4ebe7;
  font-weight: 800;
  font-size: 1.4em;
}
.BCpopup h7 {
  color: black;
  font-size: 1em;
  font-family: '돋움', Dotum,sans-serif;
  font-weight: 200;
}
.BCpopup .close {
  position: absolute;
  top: 40px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.BCpopup .close:hover {
  color: #06D85F;
}
.BCpopup .bccontent {
  max-height: 450px;
  overflow: auto;
  line-height: 30px;
  font-size: 1em;
}
.BCpopup .bccontent::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border: 3px solid #fff;
}

.BCpopup .bccontent::-webkit-scrollbar-thumb {
    height: 50px;
    width: 50px;
    background: #da76da;
    border-radius: 3px;
}

.BCpopup .bccontent::-webkit-scrollbar-track {
    background: #fff;
}

@media screen and (max-width: 700px){
  .BCbox{
    width: 100%;
  }
  .BCpopup{
    width: 80%;
  }
}
.BCoverlay a {
  text-decoration:none;
  color: black;
  font-size: 0.9em;
}
/* BASIC css end */

