  /* CMS COMPONENTS ACCORDION STYLES */

.vt-accordion-group,
.vt-tab-group{
    margin: 10px 0px 10px 0px
}
.vt-accordion {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }

  .vt-accordion .vt-hide {
    display: none;
  }
  .vt-accordion button {
    display: flex;
    justify-content: space-between;
    border-style: none;
    z-index: 2;
  }

  .vt-accordion svg {
    display: block;
    min-width: 1.25em;
    height: 1.25em;
    transition: transform 0.2s;
    transform: rotate(-45deg);
  }

  .vt-accordion .vt-accordion-trigger {
    display: flex;
    align-items: center;
    margin: 0.5em 0px 0px 0px;
    padding: 10px 15px;
    position: relative;
    text-align: left;
    width: 100%;
    outline: none;
    border-radius: 10px !important;
    border: 1px solid black;
  }
  .vt-accordion .vt-accordion-trigger[aria-expanded=true] {
    background-color: rgb(255, 255, 255);
    border-bottom: 0px;
    margin-bottom: 0px;
    border-radius: 10px 10px 0px 0px !important;
    transition-property: background-color;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
  }
  .vt-accordion .vt-accordion-trigger[aria-expanded=true] svg {
    transform: rotate(0deg);
  }

  .vt-accordion .vt-accordion-panel {
    position: relative;
    margin: 0;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0px 0px 10px 10px;
    border-top: 0px;
    padding: 12px;
  }

  .vt-accordion h2, .vt-accordion h3, .vt-accordion h4, .vt-accordion h5, .vt-accordion h6 {
    margin: 0px;
  }

  .vt-accordion p{
    margin-block-start: 0px !important;
  }

/* TAB STYLES */

@media screen and (min-width: 768px) {
    .vt-tab-group .vt-tab-list,
  .vt-tab-group .vt-tab,
  .vt-tab-group .vt-tab-content {
      display: flex;
    }
    .vt-tab-group .vt-mobile-tab-accordion .vt-accordion-trigger {
      display: none;
    }
  }

  .vt-tab-list {
    display: none;
  }

  .vt-tab-list [role=tab] {
    position: relative;
    z-index: 2;
    top: 2px;
    margin-bottom: 15px;
    border: 1px solid rgb(0, 0, 0);
    outline: none;
    font-weight: 500;
    font-size: 1.125rem;
    font-family: "gineso-condensed", sans-serif;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    align-items: start;
    min-width: 50px;
  }
  .vt-tab-list [role=tab][aria-selected=true] {
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
  }
  
  .vt-tab-content {
    display: none;
    position: relative;
    top: -9px;
    padding: 10px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0 0 5px 5px;
    width: 100%;
    overflow: auto;
  }
  .vt-tab-content .vt-hide {
    display: none;
  }
.vt-editor-component-outline{
    border: 1px solid #000; 
    padding: 5px;
}

.vtctalink{
    margin: 1em 3px 0 3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}
.vtctalink.inline{
    display: inline-block;
}

.vtctalink .d-flex{
    display: flex;
}
.vtctalink .d-flex.justify-content-start{
    justify-content: start;
}

.vt-ctaLink{
    display: block;
    text-decoration: none;
}

.col-lg-6 .vtctalink > .d-flex,
.col-lg-4 .vtctalink > .d-flex,
.col-lg-3 .vtctalink > .d-flex,
.col-lg-2 .vtctalink > .d-flex {
    display: block!important;
}
.col-lg-6 .vtctalink .vt-ctaLink,
.col-lg-4 .vtctalink .vt-ctaLink,
.col-lg-3 .vtctalink .vt-ctaLink,
.col-lg-2 .vtctalink .vt-ctaLink{
    display: block;
}

.vtctalink > .justify-content-end{
    justify-content: flex-end;
}

.vtctalink > .justify-content-center{
    justify-content: center;
}

.vt-ctaLink{
    padding: 0.875rem 4.375rem;
    text-align: center;
}

.vt-ctaLink.btn-shadow{
    box-shadow: 0 0 10px rgba(102, 102, 102, 0.7);
}

.vt-ctaLink.uppercase{
    text-transform: uppercase;
}

.vt-ctaLink.w-100{
    width: 100%;
}

.vt-ctaLink.maroon{
    background: rgba(134, 31, 65, 1);
    border: 2px solid rgba(134, 31, 65, 1);
    color: rgba(255, 255, 255, 1);
}
.vt-ctaLink.maroon:hover{
    background: rgba(165, 38, 80, 1);
    border-color: rgba(165, 38, 80, 1);
}
.vt-ctaLink.outline.maroon{
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(134, 31, 65, 1);
    color: rgba(134, 31, 65, 1);
}
.vt-ctaLink.outline.maroon:hover{
    background: rgba(134, 31, 65, 1);
    color: rgba(255, 255, 255, 1);
}

.vt-ctaLink.orange{
    background: rgba(198, 70, 0, 1);
    border: 2px solid rgba(198, 70, 0, 1);
    color: rgba(255, 255, 255, 1);
}
.vt-ctaLink.orange:hover{
    background: rgba(208, 74, 0, 1);
    border-color: rgba(208, 74, 0, 1);
}
.vt-ctaLink.outline.orange{
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(198, 70, 0, 1);
    color: rgba(198, 70, 0, 1);
}
.vt-ctaLink.outline.orange:hover{
    background: rgba(198, 70, 0, 1);
    color: rgba(255, 255, 255, 1);
}

.vt-ctaLink.dark{
    background: rgba(0, 0, 0, 1);
    border: 2px solid rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}
.vt-ctaLink.dark:hover{
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
}
.vt-ctaLink.outline.dark{
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, 1);
}
.vt-ctaLink.outline.dark:hover{
    background: rgba(0, 0, 0, 1);
    border: 2px solid rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}

.vt-ctaLink.light{
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(132, 114, 137, 1);
    color: rgba(134, 31, 65, 1);
}
.vt-ctaLink.light:hover{
    color: rgba(0, 0, 0, 1);
}
.vt-ctaLink.outline.light:hover{
    background: rgba(165, 38, 80, 1);
    color: rgba(255, 255, 255, 1);
}

.vt-multicolumn .vtctalink .vt-ctaLink.w-100{
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.vtctalink .vt-ctaLink
{
    user-select: auto;
}

@media screen and (min-width: 992px) and (max-width: 1099px) {
    .vtctalink .vt-ctaLink
    {
        padding: 1vw 1.65vw;
    } 
}
@media screen and (min-width: 1100px) and (max-width: 1599px) {
    .vtctalink .vt-ctaLink
    {
        padding: 0.75vw 1.5vw;
    } 
}
@media screen and (min-width: 1600px) {
    .vtctalink .vt-ctaLink
    {
        padding: 0.5vw 1vw;
    } 
} 

.vt-callToAction-message{
    min-width: 50%;
}

.vt-callToAction{
    width: 100%;
}

.vt-callToAction .vt-ctalink{
    white-space: nowrap;
}

@media screen and (max-width: 991px){
/* @media screen and (max-width: 1199px){ */

    .vt-callToAction-supplement-fig-container{
        display: none!important;
    }

}

.vtcta-hide{
    display: none;
}
.vt-full-width{
	width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
    padding:10px;
}

.vt-editor-component-outline{
    border: 1px solid #000; 
    padding: 5px;
}
.carousel-caption.left{
    text-align:left;
}

@media (min-width: 767px){
.carousel-caption.left.vt-control-type-belowImage {
    position: absolute;
    left: 27px;
}
}

.carousel-caption.right{
    text-align:right;
}
.carousel-caption.center{
    text-align:center;
}
.carousel-inner>.item>img{
    width: 100%;
}

/*removes black gradient from sides*/
.carousel-control.left, .carousel-control.right, .carousel-control:hover{
    background: none;
    background-color: transparent;
}

.carousel-caption{
    text-shadow: none;
    bottom: 0px;
    padding-top: 0px;
    padding-bottom: 22px;
}

.vt-carousel-control-belowImage {
    position: relative;
    bottom: 44px;
    z-index:1000;
}

.gallery-featured-item img, .vt-carousel .item-image img{
    width: 100%;
}

.vt-carousel-control-belowImage .carousel-indicators {
    position: relative;
    bottom: -5px;
    left: 20px;
    z-index: 15;
    width: 500px;
    padding-left: -6px;
    margin-left: 0;
    text-align: left;
    list-style: outside none none;
}

.carousel-control{
    top: 46%;
    z-index: 10000;
    font-size: 30px;
}

.vt-carousel-control-belowImage .carousel-control {
    position: relative;
    bottom: 0px;
    left: 12px;
    width: 47px;
    font-size: 30px;
    color: #FFF;
    text-align: left;
    text-shadow: none;
    opacity: 1;
    float:left;
}

.vt-carousel li:before{
    content: none;
}

.vt-carousel h3{
    font-size: 35px;
    margin-left: -4px;
    font-weight: 800;
    color: #fff;
}

.vt-carousel p, .vt-carousel a{
    color: #fff;
}

/*corrects width of container when component is in the body*/
.carousel-caption .container,
.vt-carousel-control-belowImage .container
{
    width: 100%;
}

/*gallery*/
.blueimp-gallery > .indicator > li{
    width: 20px;
    height: 20px;
    border-radius:0px;
}


.blueimp-gallery > .prev, .blueimp-gallery > .next,
.blueimp-gallery > .prev, .blueimp-gallery > .prev{
    font-size: 35px;
    background: none;
    border: none;
}

.gallery-thumbnails{
    margin-bottom: 30px;
}

.gallery-thumbnails .thumbnail img {
    max-height: 95px;
    margin-right: 2px;
    margin-bottom: 2px;
}

.gallery.row{
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
}
.gallery-thumbnails .thumbnail{
    margin-bottom: 0px;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    overflow: hidden;
    float: left;
}

.thumbnail{
    padding: 0px;
}


.blueimp-gallery > .slides > .slide > .slide-content {
    max-width: 80%;
    max-height: 60%;
}

.gallery-featured-item .vt-image{
    margin-bottom: 0px;
}


@media (max-width: 767px){
.gallery-thumbnails .thumbnail img {
    max-height: 42px;
}
}

/*xsmall controls and caption move beneath image*/
@media (max-width: 767px){

.carousel-caption,
.carousel-caption.left,
.carousel-caption.center,
.carousel-caption.right

{
    background-color: #333;
    top: 100%;
    position: relative;
    height: 100%;
    left: 0;
    padding-left: 50px;
    padding-right: 50px;
}

.vt-carousel-control-default, .vt-carousel-control-belowImage{
    position: relative;
    bottom: 50px;
    left: 8px;
    margin-left: 20px;
}
}
div.download div.item {
    clear: both;
    margin: 0 0 8px 0;
}
div.download span.icon img {
    width: 16px;
    height: 16px;
}
div.download span.icon  {
    float: left;
    padding: 0 8px 8px 0;
    background: url(/etc/designs/default/images/icons/default.gif) no-repeat
}
div.download span.icon.type_doc  {
    background: url(/etc/designs/default/images/icons/doc.gif) no-repeat
}
div.download span.icon.type_eps  {
    background: url(/etc/designs/default/images/icons/eps.gif) no-repeat
}
div.download span.icon.type_gif  {
    background: url(/etc/designs/default/images/icons/zip.gif) no-repeat
}
div.download span.icon.type_jpg  {
    background: url(/etc/designs/default/images/icons/jpg.gif) no-repeat
}
div.download span.icon.type_pdf  {
    background: url(/etc/designs/default/images/icons/pdf.gif) no-repeat
}
div.download span.icon.type_ppt  {
    background: url(/etc/designs/default/images/icons/ppt.gif) no-repeat
}
div.download span.icon.type_tif  {
    background: url(/etc/designs/default/images/icons/tif.gif) no-repeat
}
div.download span.icon.type_txt  {
    background: url(/etc/designs/default/images/icons/txt.gif) no-repeat
}
div.download span.icon.type_xls  {
    background: url(/etc/designs/default/images/icons/xls.gif) no-repeat
}
div.download span.icon.type_zip  {
    background: url(/etc/designs/default/images/icons/zip.gif) no-repeat
}

div.adaptiveimage.image {
	display: inline; 
}
img.editor-hasimage{
    border: 0.125rem solid #ddd;
    opacity: 0.5;
}

.editor-hasimage-text{
  position: absolute;
  color: #CCC;
  display:block;
  height: 30px;
  width:100%;
  overflow: hidden;
  text-align:center;
  line-height: 2.875rem;
  font-size: 1.1rem;
  margin-left: -15px;
}
div.image img{
    max-width: 100%;
}

.vt_thumb_img{
    width: 100px;
}
.vt_small_img{
    width: 185px;
}
.vt_medium_img.img240{
    width: 240px;
}
.vt_medium_img.img490{
    width:490px;
}
