/*
 * Color system
 */
/**
 * Inherited from Boostrap variables.
 *
 * @see bootstrap/scss/_variables.scss
 */
/**
 * Inherited from Boostrap variables.
 *
 * @see bootstrap/scss/_variables.scss
 */
/**
 * Inherited from Boostrap variables.
 *
 * @see bootstrap/scss/_variables.scss
 */
.cntl {
  overflow: hidden;
  padding-top: 7px;
  position: relative;
  width: 100%;
}

ul.cntl-states {
  list-style: none outside none;
  padding: 0;
}

li.cntl-state {
  list-style: none outside none;
  margin-top: 0;
}

.cntl-bar {
  background: linear-gradient(180deg, #000, #000 15%, #fff 0, #fff);
  background-size: 17px 12px;
  bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 17px;
  z-index: 2;
}

@media (min-width: 768px) {
  .cntl-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.cntl-bar-fill {
  background: linear-gradient(180deg, #509E2F, #509E2F 15%, #fff 0, #fff);
  background-size: 17px 12px;
  height: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cntl-state {
  position: relative;
}

.cntl-state:after {
  clear: both;
  content: ' ';
  display: block;
}

.cntl-state .cntl-content {
  margin-left: -40%;
  opacity: 0;
  position: relative;
  width: calc(100% - 70px);
}

@media (min-width: 768px) {
  .cntl-state .cntl-content {
    clear: both;
    height: 480px;
    text-align: right;
    width: calc(50% - 60px);
  }
}

.cntl-state .cntl-content p {
  text-align: justify;
}

.cntl-state .cntl-image {
  height: 134px;
  opacity: 0;
  width: 134px;
}

@media (min-width: 768px) {
  .cntl-state .cntl-image {
    margin-left: auto;
  }
}

.cntl-state .cntl-year {
  font-size: 30px;
  position: absolute;
  right: 70px;
  top: 51px;
}

@media (min-width: 768px) {
  .cntl-state .cntl-year {
    left: calc(50% + 80px);
    right: auto;
  }
}

@media (min-width: 768px) {
  .cntl-state:nth-child(2n+2) .cntl-content {
    margin-left: auto;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .cntl-state:nth-child(2n+2) .cntl-image {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .cntl-state:nth-child(2n+2) .cntl-year {
    left: auto;
    right: calc(50% + 80px);
  }
}

.cntl-icon {
  background-color: white;
  height: 24px;
  position: absolute;
  right: -4px;
  top: 60px;
  width: 24px;
  z-index: 2;
}

@media (min-width: 768px) {
  .cntl-icon {
    left: calc(50%);
    right: auto;
    transform: translateX(-50%);
  }
}

.cntl-icon:before, .cntl-icon:after {
  content: "";
  background-color: black;
  display: block;
  position: absolute;
}

.cntl-icon:before {
  height: 2px;
  right: 19px;
  top: 11px;
  width: 35px;
}

.cntl-icon:after {
  border-radius: 50%;
  height: 6px;
  top: 9px;
  width: 6px;
  right: 54px;
}

.cntl-icon .cntl-circle {
  background: white;
  border: 3px solid #252525;
  border-radius: 50%;
  display: block;
  height: 14px;
  margin: 5px auto auto;
  width: 14px;
}

/**
 * Animations
 */
.cntl-bar-fill {
  transition: all .5s ease;
}

.cntl-content {
  transition: all .5s ease-in-out;
}

.cntl-image {
  transition: all .3s .5s ease-in-out;
}

.cntl-animate .cntl-content {
  margin-left: 0;
  opacity: 1;
}

.cntl-animate .cntl-image {
  opacity: 1;
}

.cntl-animate.cntl-state:nth-child(2n+2) .cntl-content {
  margin-right: 0;
}

@media (max-width: 991.98px) {
  .animate .cntl-content {
    margin-left: 2%;
  }
}


