/* Notification Panel's Style */
.notification-container
{
  position: fixed;
  display: block;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  z-index: 3;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.notification-panel
{
  position: relative;
  display: block;
  margin: 20vh auto;
  max-width: 1000px;
  height: 60%;
}
.n-box
{
  position: relative;
  display: block;
  margin: auto;
  padding: 20px 0;
  width: 80%;
  text-align: center;
  background: #fff;
  border-radius: 4px;
}
.n-box > p
{
  margin: 0 50px;
  padding-top: 5px;
  padding-bottom: 15px;
  font-size: 18px;
}
.n-closebtn
{
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: #333;
}
.n-closebtn:hover
{
  color: #8cc83c;
}
.n-b-closebtn
{
  position: relative;
  top: 0;
  right: 0;
  padding: 6px 10px;
  font-size: 18px;
  color: #fff;
  background: #333;
  border: none;
  border-radius: 3px;
}
.n-b-closebtn:hover
{
  color: #fff;
  background: #8cc83c;
}
