/*---------- vertical tab nav */

#vertical_tab_nav {
  display: block;
  width: 100%;
}

#vertical_tab_nav ul {
  list-style-type: none;
}

.tabs {
  float: left;
  margin: 0px;
  margin-right: 10px;
  padding: 0px;
  list-style: none;
  overflow: hidden;
  width: 30%;
  border-radius: 10px 0 0 10px;
  background: #ffffff;
}

.tabs li {
  border-bottom: 1px solid #fff;
  margin-bottom: 1px;
  text-align: left;
  padding: 0px;
}

#vertical_tab_nav li:last-child {
  margin-bottom: 0px;
  border-bottom: 0px;
}

#vertical_tab_nav li a {
  display: block;
  font-size: 14pt;
  color: #f19703;
  font-weight: 600;
  text-decoration: none;
  padding: 7%;
  background: #fafafa;
  border-radius: 10px;
}

#vertical_tab_nav li a.active {
  background: #0072ce !important;
  color: #fff !important;
  border-radius: 10px !important;
}

.tab_container {
  display: block;
  background: #f2f2f2;
  width: 80%;
}

#vertical_tab_nav div article {
  display: none;
  margin: 0px;
  color: #555;
  padding: 4% 3% 0%;
}

#vertical_tab_nav div article p {
  margin: 0px 0px 20px 0px;
}

.tab_container {
  display: block;
  margin: 0 auto;
  width: 95%;
  border-top: none;
  border-radius: 0;
  box-shadow: 3px 3px 3px #80808021;
}

.d_active {
  background: #fff;
}

.tabs {
  display: none;
}

#vertical_tab_nav .tab_container hr {
  color: #fff;
  margin: 10px 0px 30px 0%;
  border-style: solid;
}

#vertical_tab_nav .tab_container ol {
  line-height: 2.2em;
}

/* Tables within tab table setup */
#vertical_tab_nav .tab_container table {
  width: 100%;
  border-collapse: collapse;
}

@media (min-width: 600px) {
  #vertical_tab_nav .tab_container td {
    border-bottom: 2px solid #FFFFFF;
  }

  #vertical_tab_nav .tab_container td {
    padding-bottom: 1em;
    line-height: 1.2em;
  }

  #vertical_tab_nav .tab_container tr:nth-child(n+2) td {
    padding-top: 1em;
  }
  #vertical_tab_nav .tab_container td:first-child {
    padding-right: 10px;
  }
}

#vertical_tab_nav .tab_container tr:last-child td {
  border-bottom: none;
}

#vertical_tab_nav .tab_container tr td {
  border-top: none;
  padding-left: 0px;
}

@media (max-width: 600px) {
  #vertical_tab_nav .tab_container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  #vertical_tab_nav .tab_container tr,
  #vertical_tab_nav .tab_container td {
    display: block;
    width: 100%;
  }
  #vertical_tab_nav .tab_container tr:not(:last-child) td:last-child {
    border-bottom: 2px solid #FFFFFF;
  }
}

/* style accordion links */
.tab_drawer_heading {
  margin: 0;
  font-size: 14pt;
  color: #f19703;
  text-decoration: none;
  padding: 7%;
  background: #fafafa;
}

@media screen and (min-width: 480px) {
  .tab_container {
    float: left;
    padding: 10px 3% 3% 3%;
    border-radius: 0 10px 10px 0;
    width: 64%;
  }
  .tabs {
    display: block;
  }
  .tab_drawer_heading {
    display: none;
  }
  article {
    padding: 0;
  }
  .tab_container h2 {
    margin-bottom: 0.7em;
  }
}

@media screen and (max-width: 480px) {
  /* make every drawer‐heading use your desktop blue + white text */
  .tab_drawer_heading {
    background: #69b9c9 !important;
    color: #fff       !important;
  }
	
	.tab_container h2 {
    display: none;
  }

  /* and if you’re toggling an “active” class on the heading itself... */
  .tab_drawer_heading.d_active,
  .tab_drawer_heading.active {
    background: #0072ce !important;
    color: #fff       !important;
  }
}
