/*-------*/
.navigation-panel{
  width: 100%;
  position: fixed;
  bottom: 0;
  height: 70px;
  display: block;
  z-index: 1;
  transition: all .3s ease;
  left: 0;
  border-radius: 20px 20px 0px 0px;
  background: linear-gradient(180deg, #00405B 0%, #001F2D 100%);
}

.navigation-panel li.home .nav-home_container {
  position: absolute;
  width: 90px;
  height: 85px;
  background: linear-gradient(180deg, #004765 0%, #001F2D 100%);
  border-radius: 50%;
  padding: 7px 0;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, -88%);
}

.navigation-panel .nav{
  position: relative;
  display: block;
  width: 25px;
  height: 26px;
  margin: 0 auto 5px;
}

.navigation-panel ul{
  margin: 0;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.navigation-panel li{
  text-align: center;
  width: 19%;
  padding: 0;
}

.navigation-panel li a{
  display: block;
  overflow: hidden;
  padding-top: 10px;
  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
  height: 60px;
  color: var(--white-bg);
}

.navigation-panel li.home a {
  border-radius: 50%;
  background: linear-gradient(180deg, #FA57CC 0%, #F444B8 34.9%, #E51E8D 67.19%, #E51E8D 83.33%, #BB116D 100%);
  width: 80%;
  height: 100%;
  margin: 0 auto;
}

.navigation-panel .nav.nav-home{background: url("../images/navigation/home-icon.svg") center center no-repeat; margin-top: 2px}
.navigation-panel .nav.nav-deposit{background: url("../images/navigation/deposit-icon.svg") center center no-repeat;}
.navigation-panel .nav.nav-event{background: url("../images/navigation/promo-icon.svg") center center no-repeat;}
.navigation-panel .nav.nav-logout{background: url("../images/navigation/logout-icon.svg") center center no-repeat;}
.navigation-panel .nav.nav-login{background: url("../images/navigation/login-icon.svg") center center no-repeat;}
.navigation-panel .nav.nav-withdraw{background: url("../images/navigation/withdraw-icon.svg") center center no-repeat;}
.navigation-panel .nav.nav-menu{background: url("../images/navigation/icon-menu.svg") center center no-repeat;}

/*----------*/

.ngdialog__header {
  padding: 10px 20px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #39BAF2;
  background: #0082BA;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
}

.ngdialog__header > img {
  position: absolute;
  right: 20px;
}

.ngdialog-badge {
  background: #CC001B;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
}

.ngdialog-close:before {
  color: #fff;
  content: '\00D7';
  position: absolute;
  font-size: 40px;
  top: 0;
  right: 15px;
}

.ngdialog-overlay {
  /* animation: ngdialog-fadein 0.5s; */
  /* -webkit-animation: ngdialog-fadein 0.5s; */
  background: rgba(0, 0, 0, 0.85);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-backface-visibility: hidden;
}

.ngdialog-content {
  min-height: 100%;
  width: 100%;
  background: #009FE3;
  position: relative;
  margin-left: 0;
}

.ngdialog__footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.ngdialog__footer .btn-notToday {
  width: 100%;
  height: 45px;
  padding: 11px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #39BAF2;
  background: #00648F;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}

.ngdialog-notice-page .ngdialog__content {
  height: calc(100vh - 105px);
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  overflow: auto;
}

.ngdialog-notice-page .ngdialog__content .content-title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
}

.ngdialog-notice-page .ngdialog__content .content-contents {
  margin: 0;
}

.pre-wrap {
  white-space: pre-wrap;
}


