.bg-danger-gradient {
    background: linear-gradient(145deg, #EA2027, #F79F1F);
    color: #fff;
    border-radius: 5px;
}
.bg-danger-gradient>ul.mainmenu>li {
    border: none;
    background: transparent;
    color: #fff;
    border-radius: 5px;
    border: solid #fff 2px
}
.bg-danger-gradient>ul.mainmenu>li:hover {
    border: none;
    background: #2c3e50;
    color: #fff;
    border-radius: 5px;
    border: solid #fff 2px
}
.bg-danger-gradient>ul.mainmenu>li>a {
    text-decoration: none;
    color: #fff;
}

.bg-gradient-red {
    background: linear-gradient(145deg, #EA2027, #F79F1F);
    color: #fff;
    border-radius: 5px 5px 0px 0px;
}

.bg-tombol-gradient-red {
    background: linear-gradient(145deg, #EA2027, #F79F1F);
    color: #fff;
    border-radius: 0px 0px 5px 5px;
}

.bg-tombol-gradient-red>a.btn {
    background: transparent;
    border: solid #fff 1px;
    color: #fff;
    border-radius: 5px 5px 5px 5px;
}

.bg-tombol-gradient-red>a.btn:hover {
    background: #2c3e50;
    border: solid #747d8c 1px;
    color: #fff;
    border-radius: 5px 5px 5px 5px;
}

/*blue*/
.bg-gradient-blue {
    background: linear-gradient(145deg, #3B3B98, #2d98da);
    color: #fff;
    border-radius: 5px 5px 0px 0px;
}

.bg-tombol-gradient-blue {
    background: linear-gradient(145deg, #3B3B98, #2d98da);
    color: #fff;
    border-radius: 0px 0px 5px 5px;
}

.bg-tombol-gradient-blue>a.btn {
    background: transparent;
    border: solid #fff 1px;
    color: #fff;
    border-radius: 5px 5px 5px 5px;
}

.bg-tombol-gradient-blue>a.btn:hover {
    background: #2c3e50;
    border: solid #747d8c 1px;
    color: #fff;
    border-radius: 5px 5px 5px 5px;
}
.overlay{
    /*display: none;*/
    position: fixed;
    top: 20px;
    width: 20%;
    z-index: 1;
}
.glows {
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 8px #fff, 0 0 11px #e60073, 0 0 14px #e60073, 0 0 17px #e60073, 0 0 20px #e60073, 0 0 23px #e60073;
  }
  
  to {
    text-shadow: 0 0 10px #fff, 0 0 13px #ff4da6, 0 0 16px #ff4da6, 0 0 19px #ff4da6, 0 0 22px #ff4da6, 0 0 25px #ff4da6, 0 0 28px #ff4da6;
  }
}

.glow {
          filter: drop-shadow(0px 2px 3px #fff);
        }
.glow-header {
    text-shadow: 0 0 3px #FF0!important;
        }
.glow-header:hover {
    color:#FFF!important;
    text-shadow: 0 0 3px #FFF!important;
}
.backTop {
  position: fixed;
  border-radius: 5px;
  bottom: 10px;
  right: 10px;
  display: inline-block;  
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  padding-right:0.8em;
  padding-left: 0.8em;
  margin: 1em;
  background: rgba(250, 130, 49, 0.7);
  color: white;
  border: 2px solid white;
}
.backTop:hover {
  cursor: pointer;
}

.backTop2 {
  position: fixed;
  border-radius: 5px;
  bottom: 70px;
  right: 10px;
  display: inline-block;  
  padding:2px;
  padding-left:3px;
  padding-right:4px;
  margin: 1em;
  background: rgba(245, 246, 250,0.5);
  color: white;
  border: 2px solid white;
}
.backTop2:hover {
  cursor: pointer;
}

        /* panel layout mechanics */
.panel-wrap {
  position: fixed;
  top: 40%;
  bottom: 40%;
  right: 0;
  min-width: 100%;
  padding:auto;
  margin:auto;
  transform: translateX(100%);
  transition: .3s ease-out;
  background:transparent;
}
.panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  background:transparent;
  margin: 0.8em;
}

/* simulate panel state control --
this can also be triggered by a 
class name added to the body tag. 
Just using a checkbox sibling here
for simplicity
*/ 
[type="checkbox"]:checked ~ .panel-wrap {
  transform: translateX(0%);
}