@media only screen and (max-width: 767px) {
  ul.tabs li {
    display: block;
    text-align: left;
    padding: 0;
  }
  ul.tabs li a {
    color: #000;
    display: block;
    padding: 20px 24px;
  }
}
/**
**	Main css for plugin
**/
.selected-tab {
  position: relative;
  height: 60px;
  padding: 15px 0px 15px 0px;
  text-align: center;
  color: #fff;
  width: 100%;
  margin: auto;
  background: #d12123;
}
.selected-tab:after {
  display: block;
  content: "";
  position: absolute;
  top: 47%;
  right: 25px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #fff;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .tab-to-dropdown {
    position: relative;
  }

  .converted-tab {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
  }
}