/* Tabs & Tab Styles */
.pl-tabs {
  margin: 0 0 1.5em 0;
  padding: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #000;
}

.pl-tabs ul.pl-tabs-nav {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.pl-tabs ul.pl-tabs-nav li {
  display: block;
  width: auto;
  padding: 0;
  float: left;
  margin: 0 5px -1px 0;
}
.pl-tabs ul.pl-tabs-nav li a {
  display: inline-block;
  margin-right: 0;
  padding: 10px 15px;
  font-size: 13px;
  text-decoration: none;
  min-height: 40px;
  line-height: 20px;
  border: 1px solid transparent;
  -webkit-border-top-left-radius: 3px;
      -moz-border-radius-topleft: 3px;
          border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
      -moz-border-radius-topright: 3px;
          border-top-right-radius: 3px;
  -webkit-transition: all .2s;
     -moz-transition: all .2s;
       -o-transition: all .2s;
          transition: all .2s;
}
.pl-tabs ul.pl-tabs-nav li a:hover,
.pl-tabs ul.pl-tabs-nav li.pl-status-active a {
  color: #000;
  border: 1px solid #e5e5e5;
  border-bottom-color: transparent;
}
.pl-tabs ul.pl-tabs-nav li a:hover {
  background-color: #fafafa;
}
.pl-tabs ul.pl-tabs-nav li.pl-status-active a {
 background-color: #fff;
}
.pl-tabs .pl-tab-content {
  display: none;
  padding: 14px;
  font-size: 14px;
  background: #fff;
  color: #333;
  -webkit-border-bottom-right-radius: 3px;
      -moz-border-radius-bottomright: 3px;
          border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
      -moz-border-radius-bottomleft: 3px;
          border-bottom-left-radius: 3px;
}

.pl-tabs.pl-tabs-vertical-yes:before,
.pl-tabs.pl-tabs-vertical-yes:after {
  content: " ";
  display: table;
}
.pl-tabs.pl-tabs-vertical-yes:after { clear: both; }
.pl-tabs.pl-tabs-vertical-yes .pl-tabs-nav {
  float: left;
  width: 30%;
  border-right: 1px solid #e5e5e5;
  border-bottom: 0 solid transparent;
}
.pl-tabs.pl-tabs-vertical-yes .pl-tabs-nav li{
  width: 100%;
}
.pl-tabs.pl-tabs-vertical-yes .pl-tabs-nav li a {
  margin: 0 -1px 5px 0;
  display: block;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-border-top-left-radius: 3px;
      -moz-border-radius-topleft: 3px;
          border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
      -moz-border-radius-bottomleft: 3px;
          border-bottom-left-radius: 3px;
}
.pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav li a:hover,
.pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav li.pl-status-active a {
  color: #000;
  border: 1px solid #e5e5e5;
  border-right-color: transparent;
}
.pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav li a:hover {
  background-color: #fafafa;
}
.pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav li.pl-status-active a {
  background-color: #fff;
  margin-right: -1px;
  background: #fff;
}

.pl-tabs.pl-tabs-vertical-yes .pl-tab-content {
  float: left;
  width: 70%;
  min-height: 200px;
}
.pl-tabs.pl-tabs-vertical-yes .pl-tab-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* Styles for screens that are less than 768px */
@media only screen and (max-width: 768px) {
  .pl-tabs ul.pl-tabs-nav{
    border-bottom: 1px solid transparent;
  }
  .pl-tabs ul.pl-tabs-nav li{ 
    float: none;
    margin: 0 0 5px 0;
  }
  .pl-tabs ul.pl-tabs-nav li a {
    display: block;
  }
  .pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav {
    float: none;
    width: auto;
    border-right: 1px solid transparent;
  }
  .pl-tabs.pl-tabs-vertical-yes .pl-tab-content {
    float: none;
    width: auto;
  }
  .pl-tabs ul.pl-tabs-nav li a,
  .pl-tabs ul.pl-tabs-nav li.pl-status-active a:hover,
  .pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav li a,
  .pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav li a:hover{
    border: 1px solid #e5e5e5;
    border-bottom-color: #e5e5e5;
    background-color: #fafafa;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 3px;
  }
  .pl-tabs ul.pl-tabs-nav li.pl-status-active a,
  .pl-tabs.pl-tabs-vertical-yes ul.pl-tabs-nav li.pl-status-active a{
    background: #fff;
    border: 1px solid #e5e5e5;
    border-bottom-color: #e5e5e5;
  }
}