@charset "UTF-8";
/* CSS Document */

.box.accessbox {
  text-align: center;
  position: relative;
}

.accessbutton {
  position: relative;
  margin: 30% auto -10px auto;
  text-align: center;
  font-family: serif;
  font-size: 84px;
  color: #fff; color: var(--nav-title-color);
  display: inline-block;
  z-index: 200;
  box-shadow: inset 0 0 0 rgba(255,255,255,0);
  border-bottom: 1px solid #f04939;   border-bottom: 1px solid var(--accent-color);
  -webkit-box-shadow: inset 0 -1px 0 #f04939;  -webkit-box-shadow: inset 0 -1px 0 var(--accent-color);
  box-shadow: inset 0 -1px 0 #f04939;  box-shadow: inset 0 -1px 0 var(--accent-color);
  transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  line-height: 80px;
}

.accessbutton:hover {
  border-bottom: 1px solid #f04939;
  border-bottom: 1px solid var(--accent-color);
  -webkit-box-shadow: inset 0 -33px 0 #f04939;
  -webkit-box-shadow: inset 0 -33px 0 var(--accent-color);
  box-shadow: inset 0 -33px 0 #f04939;
  box-shadow: inset 0 -33px 0 var(--accent-color);
}


