.BlankTemplate .LayoutContent{}



.registerPop{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  opacity: 1;
  transition: all .2s ease;
  z-index: 99;
}

.registerPop.show{
  visibility: visible;
  opacity: 1;
  pointer-events: all;

}
.registerPop .close-icon{
  font-size: 52px;
  line-height: 50px;
  color: white;
}

.registerPop .register-modal-backdrop{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  z-index: -1;
  cursor: pointer;
}



.registerPop .modal-content{
  width: 500px;
  border-radius: 0;
  padding: 20px 15px;
}