.perkshow {
    display: -webkit-flex; display: flex;
    -webkit-flex-wrap: wrap; flex-wrap: wrap;
}

.perkshow > div:nth-last-child(-n+2) {border-bottom: 0px;}
.perkshow > div:nth-child(2n) {border-right: 0px;}
.perkshow > div:last-child {border-right: 0px;}
@media (max-width: 900px){
    .perkshow > div {width: 100%;border-bottom: 1px solid #E0E0E0 !important;border-right: 0px;}
    .perkshow > div:last-child {border-bottom: unset !important;}
}

.perk {
    display: -webkit-flex; display: flex;
    width: 50%;
    border-right: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    box-sizing: border-box;
}

@media (max-width: 600px){
    .perk {
        width: 100%;     
    }    
}

.perk div:first-child {
    width: 30%;
    display: -webkit-flex; display: flex;
    -webkit-justify-content: center; justify-content: center;
    -webkit-align-self: center; align-self: center;
    font-size: 45px
}

.perk div i {
    color: rgba(185, 0, 0, 0.85)
}

.perk div:last-child {
    width: 70%
}

.perk h2 {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 0;
    border: none;
    padding-left: 0;
    margin-top: 10px;
    box-sizing: border-box;
}

.perk p {
    padding-right: 15px;
    margin-top: 5px;
}

.agbs {margin-left: 5px; float: right;}

.live_error {
    margin: 4px 0px 4px 0px;
	color: red;
	font-size: 14px !important;
	text-align: center;
	display: none;
}

.tab-bar-container {
    overflow: hidden;
    margin: 0 -10px 0 -10px !important;
    border-bottom: 1px solid lightgray
}

.tab-bar {
    width: 100%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0px;
    margin-top: -10px;
}

.tab-bar a {
    flex-grow: 1
}

.tab {
    margin: 0;
    border: none;
    padding: 0 24px 0 24px;
    float: left;
    position: relative;
    display: block;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    text-decoration: none;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #ff8282 !important;
    overflow: hidden;
    text-decoration: blink !important;
    cursor: pointer;
    transition: color 0.5s ease;
}

.tab:hover {
    color: #CE0000 !important;
}

/* Underline From Center */
.tab {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.tab:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #CE0000;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.tab:hover:before, .tab:focus:before, .tab:active:before {
  left: 0;
  right: 0;
}

@media (max-width: 600px){
    .tab {
        padding: 0 12px;
    }
}

.tab-active {
    color: #CE0000 !important;
}

.tab-active:after {
    height: 2px;
    width: 100%;
    display: block;
    content: " ";
    bottom: 0px;
    left: 0px;
    position: absolute;
    background: #CE0000;
    -webkit-animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
            animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
    transition: all 1s cubic-bezier(0.4, 0, 1, 1);
}