/*Code Snippets for Customizations

/*make video embeds responsive:

16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
     <iframe class="embed-responsive-item" src="…"></iframe>
</div>

!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-4by3">
  <iframe class="embed-responsive-item" src="…"></iframe>
</div>

/*load closed captioning automatically -  the ? and everything after in the src link
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/UEFuo4zNqXA?cc_load_policy=1" frameborder="0" height="NaN" width="847.5"></iframe>*/

/* Tabs */

.active-content {
  background-color: #eee;
  display: inline-block !important;
}

.nav-item {
  background-color: #eee;
  display: inline-block !important;
  font-weight: bold;
  /*border-left: 2px solid white;*/
  border-right: 2px solid white;
}

.nav-link {
  background-color: #eee;
  display: inline-block !important;
  font-weight: bold;
}

.activetab {
  background-color: #097881;
  color: white;
  display: inline-block !important;
  font-weight: bold;
  padding: 10 px !important;
}

a.whitelink,
a.whitelink:visited,
a.whitelink:hover {
  color: white;
}

a.blacklink,
a.blacklink:visited,
a.blacklink:hover {
  color: black;
}

/*end tabs */

/* to make a custom alert, use this code
<div class="alert alert-warning alert-custom" aria-live="alert" role="alert">
   <span class="material-icons md-18 or-icon-ring-animation" aria-hidden="true">notifications</span>&#160;test test this is a test!<br/>
</div> 
you can change the settings in the .alert-custom class to customize the alert*/

.alert-custom {
  text-align: left;
  font-size: 1.25em;
  padding: 10px;
  color: white;
  background-color: #097881;
  border-radius: 5px;
}

.btn-plan {
  background-color: #1c355e;
  line-height: 1.5;
  color: #ffffff !important;
}

.img {
  margin: 5px;
  max-width: 100%;
  height: auto;
}
