.tabul {
  /* text-align: center; */
  font-size: 0;
  position: relative;
  padding: 0;
  /* width: 480px; */
  /* margin: 40px auto; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #f2f2f2;
  padding-top: 15px;
  border-top: #b6b4b6 solid 1px;
  padding-left: 5px;
}

.tabli {
  display: inline-block;
  width: 160px;
  height: 50px;
  background: #f8981d;
  /* font-size: 16px; */
  text-align: center;
  line-height: 60px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px 15px 0 0;
  border-left: solid #f2f2f2;
}

.tabslider {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #890231;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 5px;
}

/*  Ripple */


.tabripple {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  position: absolute;
  opacity: 1;
}

.tabrippleEffect {
  -webkit-animation: rippleDrop .6s linear;
  animation: rippleDrop .6s linear;
}
@-webkit-keyframes
rippleDrop {  100% {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
}
}
@keyframes
rippleDrop {  100% {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
}
}
