/*
#content_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url('../../images/blue-light.jpg');
  background-size: cover;
} */
/* menu style */
#main_menu {
  position: fixed;
  bottom: 0px;
  left: 0px;
  background-color: none;
  z-index: 9999999999999999;
  /* display: none; */
}

.expand_menu_fx {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #151515;
  opacity: 1;
}

.launch_btn {
  /* background-image: url(""); */
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: 5px 17px;
  position: absolute;
  bottom: 25px;
  left: 25px;
  padding: 14px;
  letter-spacing: 1px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  /* background-color: #222; */
  /* border: solid 1px #222; */
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(120, 120, 120, 1);
  animation: pulse 2s 1;
  animation-delay: 3s;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.launch_btn:hover {
  /* background-color: #111; */
  cursor: pointer;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 20px rgba(155, 218, 235, 0);
  }
}

.fadein_fx {
  -webkit-animation: fadeinfx 2s ease both;
  animation: fadeinfx 2s ease both;
  animation-delay: 0.2s;
}

@-webkit-keyframes fadeinfx {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.9;
  }
}

@keyframes fadeinfx {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.9;
  }
}

.menu_backing {
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-radius: 0 100% 0 0;
}

.backing_hover_fx {
  background-color: #628185;
  width: 400px;
  height: 400px;
  opacity: .2;
}

.linklist_wrap {
  /* display: none; */
  position: absolute;
  bottom: 0px;
  left:0px;
  /* left: -300px; */
  width: 300px;
}

.linklist_wrap .pg-link:hover {
  background-color: rgba(72, 93, 95, 0.16);
}

.linklist_wrap .active_link {
  border-left: solid 8px #ffffff !important;
  background: none !important;
  color: #ffffff;
}

.linklist_hover_fx {
  left: -1px;
  opacity: .9;
}

.show_linklist_hover_fx {
  display: block;
}

/* link styles */
.linklist_wrap a, .linklist_wrap div {
  color: #969696;
  text-transform: uppercase;
  padding: 15px;
  border-bottom: dotted 1px #969696;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

.linklist_wrap div:last-child {
  border: none;
}

a, .linklist_wrap div {
  display: block;
}
