  .tabs {
    z-index: 15px;
    position: relative;
    background: #FFFFFF;
    /*border-radius: 4px;*/
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin: 15px auto 10px;
    overflow: hidden;
  }
  .tabs-header {
    position: relative;
    background: #0073C9;
    overflow: hidden;
  }
  .tabs-header .border {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #F4B142;
    width: auto;
    height: 3px;
    transition: 0.3s ease;
  }
  .tabs-header ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100% - 68px);
  }
  .tabs-header li {
    transition: 0.3s ease;
  }
  .tabs-header a {
    z-index: 1;
    display: block;
    box-sizing: border-box;
    padding: 15px 20px;
    color: #FFFFFF;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    border-left: 1px solid #25aef3;
    font-size: 12px;
  }

  .tabs-header .active{
    background: #B10104;
  }
  .tabs-nav {
    position: absolute;
    top: 0;
    right: 0;
    background: #0073C9;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    color: #FFFFFF;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .tabs-nav:before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: 0 0 20px 10px #0073C9;
  }
  .tabs-nav i {
    border-radius: 100%;
    cursor: pointer;
  }
  .tabs-content {
    position: relative;
    padding: 25px 10px;
    transition: 0.3s ease;
    overflow: hidden;
  }
  .tabs-content:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 20px 10px #FFFFFF;
  }
  .tabs-content .tab {
    display: none;
  }
  .tabs-content .tab.active {
    display: block;
  }
    
  .cp-fab {
    background: #FFFFFF !important;
    color: #0073C9 !important;
  }
  