/**============================================
* 
* Helpers CSS Styles
* 
*=============================================*/


.all-caps {
  text-transform: uppercase;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.bold {
  font-weight: 600;
}

.xbold {
  font-weight: 900;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 2px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.text-small {
  font-size: 0.85rem;
}

.text-medium {
  font-size: 1rem;
}

.text-large {
  font-size: 1.25rem;
}

.text-xlarge {
  font-size: 1.5rem;
}

.text-xxlarge {
  font-size: 1.75rem;
}

.text-xxxlarge {
  font-size: 2rem;
}


/**
* Featured item (article)
*/
.featured-item {
  border: 1px solid #555;
  color: #555;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.03rem;
  line-height: 1rem;
  padding: 1px 3px;
  text-transform: uppercase;
}


/**
* Lists
*/
.double-line li {
  margin-bottom: 1rem;
}

.double-line li:last-child {
  margin-bottom: 0;
}


/**
* Video Container (Responsive)
*/
.video-container {
  height: 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 58%;
  padding-top: 0;
  /*padding-bottom: 56.25%;
  padding-top: 30px;*/
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container .jwplayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.embedded-video {
  height: 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 58%;
  padding-top: 0;
  /*padding-bottom: 56.25%;
  padding-top: 30px;*/
}

.embedded-video iframe,
.embedded-video object,
.embedded-video embed,
.embedded-video .jwplayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}




