/* Yisca animations section*/
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@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(-60%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

  @keyframes cd-enter-right {
    0% {
      opacity: 0;
      -webkit-transform: translateX(80%);
      -moz-transform: translateX(80%);
      -ms-transform: translateX(80%);
      -o-transform: translateX(80%);
      transform: translateX(40%);
    }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
/* Yisca end animations section*/

:root {
  --dynamicHeight: 100vh;
}

.rb-timeline-title-container {
  position: relative;
}

  .rb-timeline-title-container .back-button {
    align-items: center;
    border-radius: 6px;
    background-color: #1d5c7e;
    color: #fff;
    display: flex;
    /* justify-content: space-evenly; */
    justify-content: space-around;
    text-align: center;
    width: 100%;
    max-width: 72px;
    height: 34px;
    min-height: 1px;
    position: static;
    left: 15px;
    top: 15px;
    float: left;
    margin: 5px;
  }

    .rb-timeline-title-container .back-button img {
      height: 10px;
      width: 6px;
    }

.popXtn .rb-timeline-title-container.ContainerTitlePage h1.title {
  /*padding: 0;
  margin: 0; yisca put in comment*/ 
  float: none;
}

.rb-timeline-title-container .title .title-heading {
  display: flex;
  min-height: 1px;
}

.rb-timeline-title-container .title .title-img {
  width: 100%;
  max-width: 32px;
  height: 32px;
  margin: 8px;
  flex: 1;
}

.rb-timeline-title-container .title .title-heading .title-heading-label {
  padding: 0 0 0 7%;
  flex: 1;
}

.rb-timeline-title-container .title .title-paragraph {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: lighter;
  padding-right: 0;
}

  .rb-timeline-title-container .title-paragraph .title-paragraph-heading {
    font-weight: bold;
  }

.rb-timeline-title-container .back-to-search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 16px;
  color: #fff;
  border-radius: 9px;
  border: none;
  background-color: #1d5c7e;
  padding: 2px 10px;
}

.rb-timeline-container {
  box-shadow: rgba(0, 0, 0, 0.15) 0 1px 5px;
  margin-bottom: 25px;
  background-color: white;
  height: auto;
  /*min-height: 375px;*/ /*Yisca put in a comment*/
}

  .rb-timeline-container .container-content {
    padding: 20px;
    width: 100%;
  }

.rb-timeline-slider {
  display: flex;
  min-height: 1px;
  margin: 0 auto;
  width: 100%;
  max-width: 770px;
  flex-direction: column;
  overflow: hidden;
}

.rb-label {
  display: block;
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: 54px;
}

.rb-slider-item {
  display: inline-flex;
  /* flex: 0 1 33%; */
  list-style: none;
  position: relative;
  padding-bottom: 30px;
}

.rb-description {
  flex: 1;
  list-style: none;
  position: relative;
}

/*START CUSTOM RADIOBUTTONS*/

.rb-checkmark:before,
.rb-checkmark:after {
  content: '';
  /* height: calc(100vh + 100vh); */
  height: var(--dynamicHeight);
  background-color: #2272BB;
  display: block;
  position: absolute;
  z-index: 0;
  top: 18px;
  width: 2px;
  /*width: 4px;
  background-color: transparent;
  border-style: solid;
  border-width: 0.2px;
  border-top: none;
  border-bottom: none;
  border-color: #2272BB;*/
}

.rb-checkmark:before {
  left: auto;
}

.rb-checkmark:after {
  right: auto;
}

/* Hide the browser's default radio button */
.rb-timeline-slider .rb-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.rb-timeline-slider .rb-checkmark {
  display: block;
  height: 20px;
  width: 20px;
  background-color: #ffffff;
  border: 2px solid #2272BB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
  min-height: 1px;
}

.rb-checkmark:hover {
  background-color: #ccc;
}

.rb-timeline-slider .rb-slider-item:last-child {
  flex: none;
  padding-bottom: 0;
  margin: 0;
  height: 20px;
}

.rb-timeline-slider .rb-slider-item.active:last-child {
  height: auto;
}

/* When the radio button is checked, add a blue background */
.rb-timeline-slider .rb-slider-item input:checked ~ .rb-checkmark {
  background-color: #2272BB;
}

  .rb-timeline-slider .rb-slider-item input:checked ~ .rb-checkmark .inner-mark {
    height: 16px;
    width: 16px;
    background-color: #2272BB;
    border: 2px solid #fff;
    border-radius: 50%;
  }

  .rb-timeline-slider .rb-slider-item input:checked ~ .rb-checkmark .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

.rb-timeline-slider .rb-slider-item input[disabled] {
  pointer-events: none;
}

.rb-timeline-slider .rb-slider-item input[type='radio'][disabled] ~ .rb-checkmark {
  border-color: #dddddd;
  pointer-events: none;
}

/*END CUSTOM RADIOBUTTONS*/

.rb-label::before {
  content: attr(data-info);
  transform: translateX(-28px);
  font-size: 18px;
  color: #2272BB;
  text-align: right;
  display: block;
  position: absolute;
  /* width: 80px; */
  width: 96px; /*yisca change*/
  background-color: transparent;
  background-image: url('../images/icons/chevron-down-blue.png');
  background-repeat: no-repeat;
  background-size: 10px 6px;
  background-position: center left;
  padding-left: 10px;
  line-height: 1;
}

.rb-slider-item.active .rb-label::before {
  background-image: url('../images/icons/chevron-up-blue.png');
}
 /*yisca add animations */

.rb-description {
  margin-top: 12px;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-40%);
  -moz-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
  -o-transform: translateX(-40%);
  transform: translateX(-40%);
  /*padding: 0 5%;*/
  opacity: 0;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/*yisca add animations */
.rb-description-mobile {
  display: none;
}
 /*yisca add animations */
.rb-description.active {
  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);
}
/*yisca add animations */
  .rb-description.active,
  .rb-description-mobile.active {
    display: block;
  }

  .rb-description-mobile.active {
    margin-top: 25px;
    margin-right: 3px !important;
    margin-left: 0;
  }

/*START TOOLTIP BUBBLE*/
.rb-description .tooltip-bubble {
  background-color: var(--background-over-grey-color);
  color: #000;
  font-size: 16px;
  max-width: 480px;
  padding: 2.208%;
  /* padding: 5px; */
  /* padding:2.208% 2.208% 8% 2.208%; */
  /* width: 100%; */
  position: relative;
}

  .rb-description .tooltip-bubble:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent var(--background-over-grey-color) transparent;
  }

  .rb-description .tooltip-bubble ul {
    list-style: none;
  }

  .rb-description .tooltip-bubble .tooltip-bullet {
    width: 100%;
    max-width: 11px;
    height: auto;
  }

  .rb-description .tooltip-bubble.info0:after,
  .rb-description .tooltip-bubble.info1:after,
  .rb-description .tooltip-bubble.info2:after,
  .rb-description .tooltip-bubble.info3:after,
  .rb-description .tooltip-bubble.info4:after {
    left: auto;
    right: -2px;
  }

  .rb-description .tooltip-bubble.info0,
  .rb-description .tooltip-bubble.info1,
  .rb-description .tooltip-bubble.info2,
  .rb-description .tooltip-bubble.info3,
  .rb-description .tooltip-bubble.info4 {
    position: static;
    margin-right: -25px;
  }
/*END TOOLTIP BUBBLE*/

.tooltip-bubble-content {
  /*yisca change padding-bottom to 0px */
  padding: 2.208% 2.208% 0px 2.208%;
  position: relative;
}

/* .tooltip-bubble-content {
    position: relative;
    padding-bottom: 10%;
    margin-right: 16px;
    margin-left: 16px;
} */

/* .tooltip-bubble {
    position: relative;
    padding-bottom: 10%;
} */

.tooltip-bubble ul li {
  position: relative;
}

  .tooltip-bubble ul li:before {
    content: '';
    background-image: url('../images/icons/icon-v-black.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    max-width: 12px;
    height: 13px;
    position: absolute;
    right: -16px;
    top: 5px;
  }

.rb-description .tooltip-bubble .collapse-label {
  position: absolute;
  padding: 0;
  bottom: 1%;
  right: 5%;
  text-decoration: underline;
  text-decoration-color: #000;
}

.rb-timeline-slider .close-text-collapse {
  display: none;
}

  .rb-timeline-slider .close-text-collapse img,
  .open-text-collapse img {
    width: 10px;
    height: 6px;
    margin-right: 6px;
  }

.rb-timeline-slider .close-text-collapse,
.open-text-collapse {
  color: #000;
}

/*START BASIC NEEDS*/
.show-in-desktop {
  display: none;
}

.no-before::before {
  content: none;
}

.no-after::after {
  content: none;
}

.no-before-mobile:after {
  height: auto;
}

/*END BASIC NEEDS*/

/*START MEDIA QUERY*/

/* IE10+ CSS styles go here */
/*_:-ms-lang(x),
.rb-label {
  max-width: 90px;
}

_:-ms-lang(x),
.rb-checkmark:before,
.rb-checkmark:after {
  height: 100vh;
}

_:-ms-lang(x),
.rb-checkmark:before {
  right: 7px;
}

_:-ms-lang(x),
.rb-checkmark:after {
  left: 7px;
}*/
/* IE10+ CSS styles go here */

@media (min-width: 992px) {
  .hide-in-desktop {
    display: none;
  }

  .show-in-desktop {
    display: block;
  }

  .rb-timeline-title-container .back-button {
    position: absolute;
    float: none;
    margin: 0;
  }

  .rb-timeline-title-container .title {
    padding-right: 5px;
  }

    .rb-timeline-title-container .title .title-paragraph {
      /*yisca changed padding-right to 0*/
      padding: 0;
    }
  /*yisca changed padding-bottom to 20*/
  .rb-timeline-container .container-content {
    padding: 24px 32px 20px 38px;
  }

  .rb-timeline-slider {
    flex-direction: row;
    overflow: visible;
  }

  .rb-slider-item {
    display: list-item;
    padding-bottom: 0;
    flex: 0 1 33%;
  }

  .rb-label {
    /*yisca change*/
    max-width: 95px;
  }

    .rb-label::before {
      transform: translateX(28px);
      text-align: center;
      padding-bottom: 6px;
      position: static;
      width: auto;
      background-image: none;
    }

  .rb-slider-item.active .rb-label::before {
    background-image: none;
  }
  /*yisca add animations */
  .rb-checkmark:before,
  .rb-checkmark:after {
    height: 4px;
    background-color: transparent;
    display: block;
    position: absolute;
    z-index: 0;
    top: 50%;
    width: 100vw;
    max-width: 80px;
    border-style: solid;
    border-width: 0.2px;
    border-left: none;
    border-right: none;
    border-color: #2272BB;
  }
 
  li.rb-slider-item .rb-checkmark:after ,li.rb-slider-item .rb-checkmark:before {
    background-color: #2272BB;
  }
  li.rb-slider-item.current-selected .rb-checkmark:after, .current-selected ~ li.rb-slider-item .rb-checkmark:after, .current-selected ~ li.rb-slider-item .rb-checkmark:before {
    background-color: transparent;
  }
  /*yisca add animations */
    .rb-checkmark:before {
      left: 18px;
    }

  .rb-checkmark:after {
    right: 18px;
  }

  .rb-description .tooltip-bubble {
    width: 100%;
  }

    .rb-description .tooltip-bubble.info1,
    .rb-description .tooltip-bubble.info2,
    .rb-description .tooltip-bubble.info3,
    .rb-description .tooltip-bubble.info4 {
      position: relative;
    }

    .rb-description .tooltip-bubble.info0:after {
      left: auto;
      right: -2px;
    }

    .rb-description .tooltip-bubble.info1 {
      right: 173px;
    }
/*yisca added*/
  .rb-description .more-right-length.tooltip-bubble.info1 {
    right: 178px;
  }
  /*end yisca added*/
      .rb-description .tooltip-bubble.info1:after {
        left: auto;
        right: 23px;
      }
  
  .rb-description .tooltip-bubble.info2 {
    right: 147px;
  }
  /*yisca added*/
  .rb-description .more-right-length.tooltip-bubble.info2 {
    right: 150px;
  }
  /*end yisca added*/

      .rb-description .tooltip-bubble.info2:after {
        left: auto;
        right: 220px;
      }
 
    .rb-description .tooltip-bubble.info3 {
      right: 111px;
    }
  /*yisca added*/
  .rb-description .more-right-length.tooltip-bubble.info3 {
    right: 116px;
  }
  /*end yisca added*/

      .rb-description .tooltip-bubble.info3:after {
        left: 32px;
        right: auto;
      }

    .rb-description .tooltip-bubble.info4 {
      right: 282px;
    }
  /*yisca added*/
  .rb-description .more-right-length.tooltip-bubble.info4 {
    right: 288px;
  }
  /*end yisca added*/
      .rb-description .tooltip-bubble.info4:after {
        left: 31px;
        right: auto;
      }

  .rb-description-mobile.active {
    display: none;
  }
  /*yisca put in comment*/
  /* IE10+ CSS styles go here */
  /*_:-ms-lang(x),
  .rb-label {
    max-width: 100px;
  }

  _:-ms-lang(x),
  .rb-checkmark:before {
    right: auto;
  }

  _:-ms-lang(x),
  .rb-checkmark:after {
    left: auto;
  }*/
  /* IE10+ CSS styles go here */
  /*end yisca put in comment*/
  /*yisca added */
  .tooltip-bubble-content.has-collapse{
    padding-bottom:20px;
  }
  .popXtn .rb-timeline-title-container.ContainerTitlePage h1.title {
    margin-top: 0px;
    padding-right: 7px;
  }
  .rb-timeline-title-container .title .title-heading .title-heading-label {
    padding-left:80px;
  }
  /*end yisca added */
}
/*yisca added*/
.skills-timeline-indicator {
  margin-top: 15px;
  font-size:16px;
}
@media(max-width:992px) {
  .tooltip-bubble-content .collapse {
    display: block;
  }
}

.tooltip-bubble-content ul li {
  margin-bottom:10px;
}
.page-component-edu .rb-timeline-title-container a:hover {
  color: #fff!important;
}
/*end yisca  added*/
/*END MEDIA QUERY*/
/*yisca add animations */
li.rb-description.enter-right:first-of-type {
  -webkit-animation-name: fadeInOpacity;
  -moz-animation-name: fadeInOpacity;
  animation-name: fadeInOpacity;
  animation-duration: 0.8s;
}

li.rb-description.enter-right:not(:first-of-type) .tooltip-bubble, li.rb-description.leave-right .tooltip-bubble {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
  animation-duration: 0.8s;
}

li.rb-description.enter-left:not(:first-of-type) .tooltip-bubble, li.rb-description.leave-left .tooltip-bubble {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
  animation-duration: 0.8s;
}

li.rb-description.leave-right .tooltip-bubble, li.rb-description.leave-left .tooltip-bubble {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
  animation-duration: 0.8s;
}
/*yisca add animations */
