* {
  box-sizing: border-box;
}

section {
  position: relative;
}

.small_topline {
      margin:0px auto 2px auto;
      width:100%;
      height:30px;
      text-align:center;
      font-size:1.125rem;
      color: #FFFFFF;
      text-shadow:1px 1px #000000;
      font-weight:700;
      background: #ffffff; /* Old browsers */
      background: -moz-linear-gradient(left,  #ffffff 0%, #da121a 44%, #da121a 56%, #ffffff 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(left,  #ffffff 0%,#da121a 44%,#da121a 56%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right,  #ffffff 0%,#da121a 44%,#da121a 56%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
      cursor: default;
}

.btn-pluss {
  overflow: hidden;
  position: relative;
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 0px;
  max-width: 100%;
  margin: 0 auto;
  background:transparent;

}
.btn-pluss a {
  display: block;
  position: relative;
  color: #000000;
  text-decoration: none;
  overflow: hidden;
  padding: 5px;
  border-radius: 5px;
  margin-bottom:5px;
}
.btn-pluss a:hover {
  text-decoration: inherit;
  color: #FFFFFF;
  height:35px;
  font-size:1rem;
  background-color: #808080;
  -webkit-transition: background-color .5s ease;
  transition: background-color .5s ease;
}
.btn-pluss:after {
  content: 'Menü';
  position: absolute;
  top: 30%;
  left: 50%;
  display: block;
  height: 30px;
  padding-top:5px;
  width: 100%;
  line-height: 1.3rem;
  text-align: center;
  font-size: 1.125rem;
  background-color: #e4e4e4;
  color: #000000;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  -webkit-transition: all .3s .5s ease;
  transition: all .3s .5s ease;
  cursor: pointer;
  margin-bottom:5px;
}
.btn-pluss ul {
  opacity: 0;
}
.btn-pluss ul {
  margin-top: 15px;
  opacity: 0;
  width: 100%;
  margin-left: -5px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  text-align: center;
  font-size: 0.9rem;
}
.btn-pluss ul li {
  background-color: #e4e4e4;
  font-size:1rem;
  margin-top: 5px;
  border-radius: 5px;
  text-align:center;
  height: 0px;
  overflow: hidden;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
}


.btn-pluss-wrapper:hover .btn-pluss {
  width: 98vw;
  border-radius: 15px;
  padding-bottom: 5px;
  -webkit-transition: width .3s ease, border-radius .3s ease, padding-bottom .3s ease;
  transition: width .3s ease, border-radius .3s ease, padding-bottom .3s ease;
  z-index:999999;
}
.btn-pluss-wrapper:hover .btn-pluss::after {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  left: 50%;
  top: 10px;
  -webkit-transform: translateY(-5px) translateX(-50%);
          transform: translateY(-5px) translateX(-50%);
}
.btn-pluss-wrapper:hover .btn-pluss ul {
  opacity: 1;
  margin-top:40px;
   width:95vw;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.btn-pluss-wrapper:hover .btn-pluss li {
  height: 35px;
  margin-left: -15px;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
}
.btn-pluss-wrapper:hover .btn-pluss li:hover {
  border-bottom: 1px solid #d2c9c9;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}