@import url(https://fonts.googleapis.com/css?family=Roboto:700,400,300);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);


/* Notice Section */
.noticeSection {
    width: 100%;
    text-align: justify;
    background-color: dodgerblue;
}

.notice_container {
    width: 70%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 40px;
    text-align: justify;
}

.noticeTitle {
    font-family: Montserrat;
    font-weight: 300;
    color: #fff;
    padding-bottom: 0;
    border-bottom: 1px solid #fff;
}

.noticeInfo {
    font-family: roboto;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(35, 35, 35, .3);
}

.noticeInfo p {
    line-height: 1.4;
    margin-top: 36px;
    margin-bottom: 36px;
}

.noticeTarget {
    color: #232323;
    letter-spacing: .4em;
    text-transform: uppercase;
}




/* Sticky Notice */
#notification_section {
    display: none !important;
}

#notification_sticky-side {
  font-family: roboto;
  position: fixed;
  display: flex;
  top: 50%;
  left: 0;
  align-items: center;
  transform: translateY(-50%);
  z-index: 1030;
}

#notification_sticky-side p {
  line-height: 1.4;
  margin-top: 26px; /* 36px; */
  margin-bottom: 6px; /* 36px; */
}

.notification_btn {
  min-height: 60px;
  min-width: 200px;
  background-color: dodgerblue;
  color: #ffffff;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translatex(-70px) rotate(-90deg);
  cursor: pointer;
}

.notificationTitle {
  color: #232323;
  font-size: 1.8em; /*2.1em; */
}

.notificationTitle span {
  color: #232323;
  font-size: .7em;
}

#side-box {
  padding: 20px;
  border: 1px solid rgba(255, 165, 0, .6); /* #dd8f00; #efeeee; */
  border-left: 0;
  height: auto;
  max-height: calc(100vh - 20px);
  overflow-y: auto;
  background: #fffaf4;
  max-width: 980px;
  margin-left: -980px;
  transition: all .5s;
  box-sizing: border-box;
}

#side-box .side-header {
  display: block;
  background-color: dodgerblue;
  padding: 0 15px;
  font-size: 20px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  position: relative;
}

#side-box .side-header i{
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.open-box {
  margin-left: 0 !important;
}

@media (max-width: 800px) {
    #notification_sticky-side {
      display: none;
    }
    #notification_section {
        display: block !important;
    }
}


/* @media (max-width: 800px) {
    .notification_btn {
      font-size: 0px;
      line-height: 10px;
      transition: ease-in-out;
      transition-delay: 0.5s;
    }
} */

