

/*Home Banner*/
.container_rotating-banner.marketing .slide-info-wrap {background-color:#fff;}

/*2022 Mission*/

.2022mission-wrap {
position: relative;}

.2022mission-wrap:before {
content: url('https://cms.in.gov/bmv/images/seal-blue-reverse.png');
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: url('https://cms.in.gov/bmv/images/seal-blue-reverse.png');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.2022mission-content {
position: relative;}

/*2022 Letter from Commissioner*/
.round-grey-full {
background-color:#DADADD;
margin-left:0 !important;
margin-right:0 !important;
width:100%;
padding:50px 50px 0px 50px;
border-radius:25px;
position:relative;
}

.letter-bg {
opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 75%;
}

.letter {
position: relative;}

/*Ask Leadership a Question DIV*/
.question {
background-image: url(/bmv/images/question-bg.png);
    background-repeat: no-repeat;
    background-color: rgb(240 248 255 / 78%);
    background-blend-mode: multiply;
}

/*2022 Annual Report Timeline*/

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-horizontal-timeline {
  opacity: 0;
  margin: 2em auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1;
}
.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}
.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px;
}
.cd-horizontal-timeline .events-wrapper::before {
  left: 0;
}
.cd-horizontal-timeline .events-wrapper::after {
  right: 0;
}
.cd-horizontal-timeline .events {
  /* this is the grey line/timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 2px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}
.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #FFCE34;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 15px;
  color: #003963;
  /* fix bug on Safari - text flickering while timeline translates */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-horizontal-timeline .events a::after {
  /* this is used to create the event spot */
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background-color: #f8f8f8;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #FFCE34;
  border-color: #FFCE34;
}
.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}
.cd-horizontal-timeline .events a.selected::after {
  background-color: #FFCE34;
  border-color: #FFCE34;
}
.cd-horizontal-timeline .events a.older-event::after {
  border-color: #FFCE34;
}
@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline {
    margin: 6em auto;
  }
  .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

.cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  /* replace text with an icon */
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.cd-timeline-navigation a::after {
  /* arrow icon */
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../img/cd-arrow.svg) no-repeat 0 0;
}
.cd-timeline-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.cd-timeline-navigation a.next {
  right: 0;
}
.no-touch .cd-timeline-navigation a:hover {
  border-color: #FFCE34;
}
.cd-timeline-navigation a.inactive {
  cursor: not-allowed;
}
.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px;
}
.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 2em 0;
  overflow: hidden;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
}
.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}
.cd-horizontal-timeline .events-content li > * {
  max-width: 800px;
  margin: 0 auto;
}
.cd-horizontal-timeline .events-content h2 {
  font-weight: bold;
  font-size: 1.6rem !important;
  font-weight: 700;
  line-height: 1.2;
}
.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  color:#003963;
  font-size:1.5rem;
  margin: 10px auto;
}

.cd-horizontal-timeline .events-content p {
  font-size: 1.2rem;
  color: #000;
}
.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .cd-horizontal-timeline .events-content h2 {
    font-size: 7rem;
  }
  .cd-horizontal-timeline .events-content em {
    font-size: 2rem;
  }
  .cd-horizontal-timeline .events-content p {
    font-size: 1.2rem;
  }
}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
/*End Timeline----------------------------------------------------*/


/*Start Timeline 2*/
swiper-container-wrapper {
  &--timeline {
    .swiper-slide {
      display: flex;
      background: #fff;
      min-height: 300px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      .container {
        padding: 0;
        width: 100%;
      }
      .title{
        font-size: 18px;
        opacity: 0;
        transition: 0.5s ease 0.5s;
      }
      &-active{
        .title{
          opacity: 1;
        }
      }
    }
    .swiper-pagination-progressbar {
      position: relative;
      margin-bottom: 70px;
      background-color: transparent;
      height: 4px;
      border-bottom: 1px solid $secondary-color;
      width: 75%;
      &-fill {
        background-color: $primary-color;
        height: 3px;
        top: 2px;
      }
      &:before {
        position: absolute;
        top: 2px;
        left: -100%;
        width: 100%;
        height: 3px;
        background-color: $primary-color;
        content: "";
      }
      &:after {
        position: absolute;
        top: 3px;
        right: -100%;
        width: 100%;
        height: 1px;
        background-color: $secondary-color;
        content: "";
      }
    }
    .swiper-pagination-custom {
      position: relative;
      list-style: none;
      margin: 1rem 0;
      padding: 0;
      display: flex;
      line-height: 1.66;
      bottom: 0;
      z-index: 11;
      width: 75%;
      display: flex;
      .swiper-pagination-switch {
        position: relative;
        width: 100%;
        height: 30px;
        line-height: 30px;
        display: block;
        .switch-title {
          position: absolute;
          font-weight: 400;
          right: 0;
          transform: translateX(50%);
          transition: 0.2s all ease-in-out;
          transition-delay: 0s;
          cursor: pointer;
          z-index: 1;
          &:after {
            position: absolute;
            top: calc(100% + 19px);
            right: 50%;
            transform: translateX(50%) translateY(-50%);
            width: 12px;
            height: 12px;
            background: $primary-color;
            border-radius: 2rem;
            content: "";
            transition: 0.2s all ease-in-out;
            transition-delay: 0s;
            z-index: 1;
          }
        }
        &.active {
          .switch-title {
            font-weight: 400;
            transition-delay: 0.4s;
            &:after {
              background: $primary-color;
              width: 25px;
              height: 25px;
              transition-delay: 0.4s;
            }
          }
          ~ .swiper-pagination-switch {
            .switch-title {
              color: $secondary-color;
              font-weight: 16px;
              &:after {
                background: $secondary-color;
              }
            }
          }
        }
      }
    }
  }
}

/*End Timeline----------------------------------------------------*/

/*Overlay*/

.square {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.square .square-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 90%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.square-image{
  width: 100%;
}

.square-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.square:hover .square-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}
.square:hover .square-overlay{
  opacity: 1;
}
.square-details p{
  color: #fff;
  font-size: 0.8em;
}
.fadeIn-bottom{
  top: 80%;
}

/*RSI banner on BMV Home*/
 .rsi-banner {
 background-image: url(/rsi/images/main-banner-dark.jpg);
 background-repeat: repeat-x;
 color: #fff;
 }

/*2022 Home Banner Overlay Styles*/
.marketing #banner-image-container.adaptive #main-banner-overlay #main-banner-text-container p {
    text-shadow: none !important;
    font-size: 1.125rem !important;
    color: #003366 !important;
    font-weight: bold;
}

.marketing #banner-image-container.adaptive #main-banner-overlay #main-banner-text-container h2 {
    font-size: 3rem !important;
}

.container_rotating-banner.adaptive .slide-info-wrap h2 {
    color: #ffce34 !important;
}

/*2020 Fatalities by County*/
	.st0 {fill:none;stroke:#E87D26;stroke-width:2.9284;stroke-miterlimit:10;}
	.st1, .porter, .lake {fill:#E87D26;}
	.st1:hover {transform:scale(1.1);
transform-origin: 30% 30%}
.lake:hover {transform:scale(1.2);
transform-origin:100px 100px;}
.porter:hover {transform:scale(1.1);
transform-origin: 30% 30%}
	.st2 {fill:#FFFFFF;}
	
	
/*Responsive Org Chart 2020 Annual Report*/

/*Org Node Styles*/
.orgchart .centered {
    text-align: center;
}

.orgchart .hidden { display: none !important; }

.orgchart .nodecontent {
    display: inline-block;
    background-color: rgba(47, 106, 150, 1);
    padding: 10px;
    border-radius: 10px;
    color: white;
    position: relative;
    width: 96%;
    font-size:14px;
}

.orgchart .nodecontent:hover {
    /*background-color: rgba(47, 106, 150, .75);*/
}

.orgchart .nodecontent .collapse {
    position: absolute;
    bottom: -15px;
    left: calc(50% - 6px);
    z-index: 0;
    color: white;
    background-color: #a2c66f;
    border-radius: 6px;
    height: 12px;
    width: 12px;
    font-size: 12px;
    text-align: center;
}

.orgchart li.leaf {
    font-size: 13px;
}

.org-img {
    float:left;
    margin-right: 1rem;
    height: 80px;
    width: 80px;
}
    
.orgchart ul {
    /*display: none;*/
    margin: 0;
    padding: 0;
}
    
.orgchart li .nodecontent .btn-expand {
    background-color: #ffce34;
    border-radius: 12px;
    display: block;
    height: 24px;
    width: 24px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none !important;
    font-weight: bold;
    position: absolute;
    bottom: 6px;
    right: 6px;
}

    .orgchart li .nodecontent .btn-expand:hover {
        opacity: .7;
    }

@media screen and (min-width: 1024px) {
    /*Org Chart Horizontal Styles*/
    .orgchart {
        display: block;
        font-family: "Open Sans",Helvetica,Arial,sans-serif;
    }
    
    .orgchart {
        margin: 0 auto;
        max-width: 1920px;
        padding: 0 2%;
    }
    
    /*align children horizontally using CSS flex*/
    .orgchart ul {
        display: flex;
    }
    
    /*align nodecontent and children list vertically*/
    .orgchart li {
        display: flex;
        flex: 1;
        flex-direction: column;
        position: relative;
    }
    
    .orgchart .nodecontent::after, .orgchart .nodecontent::before, .orgchart ul li.vertical::before {
        display: none;
    }
    
    .orgchart .nodecontent.open::after {
        /*display: block;*/
    }
    
    .orgchart .nodecontent.expanded::after {
        display: block;
    }
    
    .orgchart .nodecontent.open::before, .orgchart ul li.vertical.open::before {
        display: block;
    }
    
    .orgchart li.root > .nodecontent {
        max-width: 360px;
    }
    
    .orgchart li.leaf .nodecontent {
        width: auto;
    }
    
    /*arrange the nodecontent centered above the children list*/
    .orgchart .nodecontent {
        align-self: center;
        position: relative;
        margin: 20px 5px;
        width: 96%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .orgchart .collapsed > ul {
        display: none;
    }
    
    /*connections*/
    .orgchart li::before,
    .orgchart .nodecontent::after,
    .orgchart .nodecontent::before {
        box-sizing: border-box;
        content: '';
        position: absolute;
        /*z-index: -1;*/
        border: 0px dashed #FFCE34;
    }
    
    .orgchart li:not(:only-child)::before {
        border-top-width: 2px;
        width: 100%;
        height: 20px;
        top: 0px;
    }
    
    .orgchart li:first-child::before {
        width: calc(50% + 1px);
        right: 0;
        border-left-width: 2px;
        border-top-left-radius: 7px;
    }
    
    .orgchart li:last-child::before {
        width: calc(50% + 1px);
        border-right-width: 2px;
        border-top-right-radius: 7px;
    }
    
    .orgchart .nodecontent::after,
    .orgchart .nodecontent::before {
        border-left-width: 2px;
        width: 2px;
        height: 20px;
        left: calc(50% - 1px);
    }
    
    .orgchart .nodecontent::before {
        top: -20px;
    }
    .orgchart .nodecontent::after {
        bottom: -20px;
    }
    
    .orgchart li:first-child:not(:only-child) > .nodecontent::before,
    .orgchart li:last-child:not(:only-child) > .nodecontent::before {
        border-left-width: 0px;
    }
    
    .orgchart .leaf > .nodecontent::after,
    .orgchart .root > .nodecontent::before,
    .orgchart .collapsed > .nodecontent::after {
        display: none;
    }
    
    /*vertical nodes*/
    .orgchart li.vertical > ul {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 5%;
        position: relative;
    }
    
    .orgchart li.vertical > ul > li > .nodecontent {
        margin: 10px 0 0 10px;
    }
    
    /*vertical connectors*/
    .orgchart li.vertical > ul::before {
        box-sizing: border-box;
        content: '';
        position: absolute;
        top: -2px;
        left: 10px;
        height: 10px;
        width: calc(50% - 19px);
        border-top: 2px dashed #FFCE34;
    }
    
    .orgchart li.vertical > .nodecontent::after {
        border-width: 0 2px 2px 0;
        border-bottom-right-radius: 7px;
        width: 10px;
        left: auto;
        right: calc(50% - 1px);
    }
    
    .orgchart li.vertical > ul > li::before {
        border-width: 0 0 0 2px;
        left: 0px;
        height: 100%;
        width: 10px;
        border-radius: 0;
    }
    .orgchart li.vertical > ul > li:first-child::before {
        top: -2px;
        height: calc(100% + 2px);
        border-top-width: 2px;
        border-top-left-radius: 7px;
    }
    
    .orgchart li.vertical > ul > li:last-child::before {
        height: calc(50% + 6px);
        border-bottom-width: 2px;
        border-bottom-left-radius: 7px;
    }
    
    .orgchart li.vertical > ul > li > .nodecontent::before {
        height: 2px;
        width: 8px;
        top: calc(50% - 1px);
        left: -8px;
        border-width: 2px 0 0 0;
    }
    
    .orgchart li.vertical > ul > li:last-child > .nodecontent::before {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .orgchart, .orgchart ul {
        list-style-type: none;
    }
    
    .orgchart ul {
        margin-left: 2rem;
    }
    
    .orgchart li {
        /*margin-bottom: 1rem;*/
    }
    
    .orgchart .nodecontent {
        margin: 1rem 0 .5rem 0;
    }
}

/*End Org Chart*/



/*Light Blue Underlined Header*/
.blue-bottom-border {
padding: 10px 0px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: #61b4de solid 3px;
    text-transform: uppercase;
}

/*Pullout Quote*/
.quote {
    color: #61b4de !important;
    font-style: italic;
    border-top: #61b4de solid 2px;
    border-bottom: #61b4de solid 2px;
    padding: 8px;
    font-size: larger;
    margin-right: 12px;
    font-weight: bold;
}

/*Text with Circle Border*/
.circle {
    border: #ffce34 solid 3px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 12px 5px;
    line-height: 0.75rem;
    text-align: center;
    font-size: 1.563rem;
    font-weight: bold;
    letter-spacing: -3px;
    }


/*Adds Bottom Margin to Accordion ULs and OLs*/
#subpage-text-container .subpage-text-inner .accordion-content ul, #subpage-text-container .subpage-text-inner .accordion-content ol {
    margin-bottom: 1rem;
}

.ltyellow-full {
background-color:rgb(255 206 52);
margin-left:0 !important;
margin-right:0 !important;
width:100%;
padding:15px 0px;}

.ltblue-full {
background-color:#2f6a96;
margin-left:0 !important;
margin-right:0 !important;
width:100%;
padding:50px 0px;}

.ltblue-full p, .ltblue-full h2, .ltblue-full h3, .ltblue-full h4, .ltblue-full h5, .ltblue-full li  {
color:#fff !important;
}

.dark-full p, .dark-full h2, .dark-full h3, .dark-full h4 {
color:#fff !important;
}

.dark-full {
background-color:#003963;
margin-left:0 !important;
margin-right:0 !important;
width:100%;
padding:50px 0px;
}

.orange-full {
background-color:#EA7D24;
margin-left:0 !important;
margin-right:0 !important;
width:100%;
padding:50px 0px;
}


.rsi-full {
background-image: url(/rsi/images/interior-image.jpg) !important;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}


.bmv-full {
background-image: url(/bmv/images/map-background.jpg) !important;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.rsi-full p, .rsi-full h3 {
color: #fff !important;
}

.bmv-full p, .bmv-full h3 {
color: #002447 !important;
}

/*Annual Report Head*/
.ar-header {text-align: center; color:#fff; font-size:xxx-large;}
@media screen and (max-width: 39.9375em) { .ar-header {font-size:large !important;}}

@media screen and (max-width: 39.9375em) { .span#ar-logo {max-width:65%;}}

/*Annual Report Menu*/

.title-bar {
background:#9ac3d8;
color:#000;
    margin-top: 50px;}

.top-bar, .top-bar ul {
background: none !important;
margin-top: 25px;}

li.ar-menu-item {
border-right: #1e5484 solid 3px;
}

a.black {
color:#000 !important;}

a.no-underline {
text-decoration: none !important;
}

/*RSI Annual Report*/
.rsi-dark-full p, .rsi-dark-full h3, .rsi-dark-full h4 {
color:#fff !important;
}

.rsi-dark-full {
background-color:#003963;
margin-left:0 !important;
margin-right:0 !important;
width:100%;
}

.rsi-header {
    color: #fff;
    background-color: #003963;
    display: table;
    font-weight: lighter;
    font-size:xxx-large;
}
@media screen and (min-width:40em) {
.rsi-header {
margin:35px;}
}

@media screen and (max-width:39.9375em) {
.rsi-header {
font-size:large !important;
text-align:center !important;
margin:0px !important;
padding:15px 15px 15px 90px !important;}
}

.rsi-orange-header {
text-align: center;
    color: #000;
    background-color: #f1a260;
    padding: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.rsi-title {
    color: #fff;
    background-color: #003963;
    padding: 10px 130px 10px 15px;
    display: table;
    font-weight: lighter;
    font-size:x-large;
}

@media screen and (max-width:39.9375em) {
.rsi-title {
font-size:large !important;
padding: 10px 15px 10px 15px !important;}
}

div #rsi-thankyou {
background-color:#f1a260;
padding:30px;
}

@media screen and (min-width: 1024px) {
div #provider-map {
    position: absolute;
    top: -60px;
    left: 800px;
}
div #rsi-thankyou {
position:relative;
}
}

.ar-historical {color:#fff;}

/*Fix margin and bullet list-type for sub-UL's*/

.sub-circle {
margin-bottom:0px !important;
list-style-type:circle !important;
}

/*Text Bucket H4*/
.text-bucket h4 {
    margin-left: 5%;
    margin-right: 5%;
}
/* Main Container */

#main-banner-button {
color: #ffce34 !important;
}

.subpage-text-container:not(:last-child) {
    border-bottom: none !important;
}

/*BMV Connect Page Styling*/
.boxhead {
    background-color: #FFCE34;
    color: #000;
    padding: 10px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 0.75rem;
}

.boxhead-blue {
    background-color: #003963;
    color: #fff;
    padding: 7px;
    font-size: 1.375rem;
    border-radius: 0.75rem;
}

.checklist {
    margin-left: 20px;
}
.row.grey {
    background-color: #BCBEC0;
    padding: 10px;
}

/*Callout Grey*/
.callout.grey h3 {
	color: #fff;
}

.callout.grey {
	background-color: #A3A3A3;
	padding:1.5rem;
}

.callout.grey p {
	color: #ffffff
}

/*Callout Yellow*/
.callout.yellow h3 {
	color: #fff;
}

.callout.yellow {
	background-color: #ffc000;
	padding:1.5rem;
}

.callout.yellow p {
	color: #ffffff
}

.button.yellow
{background-color:#ffce34 !important;
color:#003963 !important;
}

.button.yellow:hover
{background-color:#fff !important;
color:#003963 !important;
}

/*Callout Blue*/
.callout.blue h3, .callout.blue h2 {
	color: #FFCE34;
}

.callout.blue {
	background-color: #003963;
	padding:1.5rem;
}

.callout.blue p, .callout.blue li {
	color: #ffffff
}

.callout a.button.ltblue,
main article section .accordion .accordion-item .accordion-content .callout a.button.ltblue {
	color: #fff;
	background-color: #003963;
}

.callout a.button.ltblue:hover,
main article section .accordion .accordion-item .accordion-content .callout a.button.ltblue:hover {
	color: #003963;
	background-color: #60aae0;
}

/*Callout LIGHT Blue*/
.callout.ltblue h3, .callout.ltblue h4, .callout.ltblue h5 {
	color: #fff;
}

.ltblue.callout a {
    color: #ffce34 !important;
}

.callout.ltblue {
    background-color: #2e6a96;
	padding:1.5rem;
}

.callout.ltblue p {
	color: #ffffff
}

/*Callout Election*/

.callout.election {
background-image: url(/bmv/images/election.jpg) !important;
}

.callout.election p, .callout.election h3 {
color:#fff;
}

a.button.election {
    background-color: #d40a0a;
}

/*Callout Green*/
.callout.green {
    background-color: #7fa64a;
    border: none;
    padding: 1.5em;
    }

.callout.green h2, .callout.green h3, .callout.green h4, .callout.green h5 {
 color: #fff;
}

.callout.green p {
color: #fff !important;
/* margin-bottom:0px; */
}

.callout.green a:not(.button) {
color: #2F6A96 !important;
}

/*Callout Orange*/
.callout.orange {
    background-color: #ff8c2e;}

.callout.orange h2, .callout.orange h3, .callout.orange h4, .callout.orange h5 {
 color: #003366;
}

.callout.orange ul {
    color: #003366;
}

.callout.orange p {
color: #003366 !important;
margin-bottom:0px;
}

.callout a.button .orange {
color:#fff !important;
background-color:#003366;}

.callout a.button .orange:hover {
background-color:#2f6a96;}


/*Callout Special*/
.callout.special {
    background-color: #c8e0ec !important;
    max-width: fit-content;
}
    
.callout.special h3 {
    font-size: 22px;
    margin-right: 25px;
    margin-top: 1%;
    color: #003963;
}

.callout.special a {
color: #FFCE34 !important;
}

/*Callout Map*/
.callout.map {
    background-image: url(https://cms.in.gov/bmv/images/map-background.jpg) !important;
    }
    
.callout.map h2, .callout.map h3, .callout.map h4, .callout.map h5 {
    background-color: #002447;
    border-radius: 0.75rem;
    padding: 10px;
    color: #fff;
}

.callout.map p {
color: #000000 !important;
}

body main .callout.map a {
color: #FFCE34;
}

/*Callout Special*/
.callout.special {
    background-color: #c8e0ec !important;
    max-width: fit-content;
}
    
.callout.special h3 {
    font-size: 22px;
    margin-right: 25px;
    margin-top: 1%;
    color: #003963;
}

.callout.special a {
color: #FFCE34 !important;
}

/*Table Media Queries*/
@media only screen and (max-width: 1024px){
.table.collapse {display:block;}
}

/*Leadership Team Styles*/

.leaders.column {
display:flex;
flex-direction:column;
flex: 1 auto;
}

.leaderhead {
    background-color: #FFCE34;
    color: #000;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    width: 162px;
    height: 107px;
    display:flex;
flex-direction:column;
justify-content:space-between;
}

.leaderhead p {
line-height:1.25em;
    margin-bottom: 7px !important;
}

.leaderhead a {
text-decoration: none !important;
}

.leaderhead a:hover {
text-decoration: none !important;
}

.leaderhead img:hover {
width:105% !important;
}
/*Custom BMV Style Overwrites*/
body.bmv #agency-spotlights-container {
    background: #2e6a96 !important;
}

body.bmv #banner-image-container #main-banner-overlay #main-banner-text-container #main-banner-button {
    background-color: #003367;
}

body.bmv #banner-image-container #main-banner-overlay #main-banner-text-container #main-banner-button:hover {
    background-color: #004d99;
}

.image-bucket-container .image-bucket .image-wrap a {
    background-color: transparent;
}

.image-bucket-container .image-bucket .image-wrap a:hover {
    background-color: rgba(0,57,99,0.5);
}

.image-bucket-container .image-bucket .image-wrap a h3 {
    padding: 0.5rem 1.5rem;
    margin: 0.75rem 0;
    background-color: rgba(255,206,52,0.75);
    width: 100%;
    color: #003367;
/*
body.bmv .sub-banner .sub-banner-info {
    background-color: #2e6a96;
}*/

body.bmv .text-bucket-container .text-bucket h3 {
    background-color: #2e6a96;
}


.callout-image-container {
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 1rem 2rem;
}

.callout.blue.home .row {
    margin: 0;
}

.callout.blue.home .row .column {
    padding: 0;
}

.blue.callout.home ul, ol {
margin-left:4.75rem !important;
}



/*Callout Dark Blue with BG Image Homepage*/
.callout.dark-blue h2, .callout.dark-blue h3 {
	color: #FFCE34;
}

.callout.dark-blue h4, .callout.dark-blue h5 {
	color: #FFF;
	line-height:0.5em;
}

.callout.dark-blue {
	background-color: #003963;
	background-repeat: no-repeat;
	background-position: top right;
}

.callout.dark-blue p {
	color: #ffffff
}

.callout.dark-blue a.button {
	color: #ffce34 !important;
	background-color: #2F6A96;
}

.callout.dark-blue a.button:hover {
	color: #2F6A96 !important;
}

.callout.dark-blue a {
color: #efce34 !important;
}

/*Global Button Color Overwrite*/
body.bmv main article section .button:not {
    margin: 0;
    padding: 1rem 3rem;
    /*background-color: #2e6a96;*/
    font-weight: 400;
    font-size: 1rem;
    /*color: #ffce34 !important;*/
}

/*body.bmv main article section .button:hover {
    background-color: #003366;
}*/

#subpage-main-title {
    color: #ffce34;
}

body.bmv #banner-image-container #main-banner-overlay #main-banner-text-container {
    background-color: rgba(0, 51, 102, 0.65);
}

body.bmv #banner-image-container #main-banner-overlay #main-banner-text-container #main-banner-button {
       background-color: #003366;
    color: #fff !important;
}

body.bmv #banner-image-container #main-banner-overlay #main-banner-text-container #main-banner-button:hover {
 background-color: #FFCE34;
    color: #003366 !important;
    font-weight: 700;
}

/*Remove Subpage Overlay*/

body main #subpage-banner-container #subpage-banner-overlay {
    background: none;
}

#subpage-banner-container {
    background-position: bottom;
}

@media screen and (max-width: 39.99875em) {
    .callout.blue.home .button {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);  
    }
    
    .callout-image-container {
        padding: 1rem;
    }
    .callout.dark-blue {
        background-image: none !important;
    }
}

/*Contrast Mode Overwrites*/
body.bmv.dark-contrast #agency-spotlights-container {
    background-color: #111111 !important; 
}

.dark-contrast .callout.blue.home h3 {
color: #FFF;
background-color: #000;
}

.dark-contrast .callout.home p {
color: #FFF;
}

/*.dark-contrast article #map-wrapper .location .information {
    color: #333;
}

.dark-contrast article #map-wrapper .location.active .information {
    color: #FFF;
}*/

.dark-contrast article #map-wrapper {
    color: #333;
}

.dark-contrast article #map-wrapper a.dropdown-label  {
    color: #003366 !important;
}

@media screen and (max-width: 63.99875em) {
    #want-to-dropdown {display:none !important;
    }
}


/*Remove Text Message option in Footer per SIC request*/
/*#agency-sms {
    display: none;
}

#agency-phone {
    border-bottom: none;
}*/

/*2021 Annual Report Styles*/
.2021-ar-header {/*background-image:url(/bmv/images/2021-ar-header.png) !important;*/
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin-left:0 !important;
margin-right:0 !important;
width:100%;}

.dark-full-no-pad p, .dark-full-no-pad h2, .dark-full-no-pad h3, .dark-full-no-pad h4 {
color:#fff !important;
}

.dark-full-no-pad {
background-color:#003963;
margin-left:0 !important;
margin-right:0 !important;
width:100%;
padding:0px 0px;
}

.box-blue {
    background-color: #306b8f;
    border-radius: 50px;
    box-shadow: rgb(0 0 0 / 30%) 0px 12px 10px;
    color: #fff;
    padding: 20px;
    margin-left: 18px;
    margin-right: 18px;
    margin-bottom: 30px;
    max-width: 280px;
}

.mason-row p, .mason-row h2, .mason-row h3, .mason-row h4 {
color:#fff !important;
}

.mason-row {
background-image:url(/bmv/images/mason-red-bg.jpg);
margin-left:0 !important;
margin-right:0 !important;
width:100%;
padding:50px 0px;
}

/*2021 RSI Annual Report*/
.rsi-2021-mission {
  background-image: url(/bmv/images/rsi-mission-2021-bg.png);
  height: 225px;
 /* background-attachment: fixed;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*width: 200%;*/
  /*left: -50%;*/
  /*position: relative;*/
}

.rsi-parallax-mission-mobile {
  background-image: url(/bmv/images/rsi-mission-2021-mobile-bg.png);
  /*height: 300px;*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*width: 200%;*/
  /*left: -25%;*/
  position: relative;
}

.rsi-parallax-pattern {
  background-image: url(/bmv/images/rsi-pattern-bg-2021-ar.jpg);
  height: 135px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 200%;
  left: -50%;
  position: relative;

}
.rsi-parallax-future {
  background-image: url(/bmv/images/rsi-future-2021-bg.png);
  height: 275px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*width: 200%;*/
  /*left: -50%;*/
  position: relative;
  margin-bottom: 2rem;
}

.rsi-parallax-future-mobile {
  background-image: url(/bmv/images/rsi-future-bg-mobile.png);
  /*height: 550px;*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*width: 200%;*/
  /*left: -25%;*/
  position: relative;
  margin-bottom: 1rem;
}

/*2022 Updates*/
body main article section.icon-image-buckets .icon-image-bucket .icon-image-bucket-content {
    position: relative;
}

body main article section.icon-image-buckets .icon-image-bucket .icon-image-bucket-content h3 {position: absolute;background: rgba(255,206,52,0.75);top: -4rem;width: 100%;left: 0;padding: .5rem;}

body main article section.icon-image-buckets .icon-image-bucket .icon-image-bucket-content hr {display: none;}

/* Icon Callout Heading size adjustment */
.icon-callouts .icon-callouts-container .icon-callouts-title h2 {
    font-size: 1.5rem;
}

.icon-callouts .icon-callouts-container .icon-callout-content h3 {
    font-size: 1.3rem;
}