/**
 * @package   JMZ Timeline for Joomla!
 * @author    jumazi.com
 * @copyright (C) Jumazi - All rights reserved
 * @license   GNU General Public License version 2 or later; see LICENSE
 */


#jmz-timeline-horizontal-wapper {
  overflow: hidden;
  margin: 30px auto;
  position: relative;
  background: url('../images/dot.gif') left 45px repeat-x;
}

#jmz-timeline-dates {
  width: 800px;
  overflow: hidden;
  margin-bottom: 30px
}

#jmz-timeline-dates li {
  list-style: none;
  float: left;
  width: 100px;
  height: 50px;
  text-align: center;
  background: url('../images/biggerdot.png') center bottom no-repeat;
}

#jmz-timeline-dates a {
  line-height: 38px;
  padding-bottom: 10px;
  text-decoration: none;
}

#jmz-timeline-dates a:hover,
#jmz-timeline-dates a:active,
#jmz-timeline-dates a:focus{
  color: #000000 !important;
}


#jmz-timeline-dates .selected {
  font-size: 20px;
}
    
#jmz-timeline-issues {
  width: 800px;
  overflow: hidden;
} 

#jmz-timeline-issues li {
  width: 800px;
  list-style: none;
  float: left;
}

#jmz-timeline-issues li.selected img.jmz-image {
  
  -webkit-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
  -o-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
  transform: scale(1.1,1.1);
}

#jmz-timeline-issues li img.jmz-image {
  float: left;
  margin: 10px 30px 10px 50px;
  zoom: 1;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out; 
  transition: all 0.8s ease-in-out;
  -webkit-transform: scale(0.7,0.7);
  -moz-transform: scale(0.7,0.7);
  -o-transform: scale(0.7,0.7);
  -ms-transform: scale(0.7,0.7);
  transform: scale(0.7,0.7);
}

#jmz-timeline-issues li img.jmz-image.jmz-circle{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 16px 30px 20px 50px;
}


#jmz-timeline-issues li h3.jmz-title a {
  margin-top: 0px;
  text-decoration: none;
}

#jmz-timeline-issues li h3.jmz-title{
  margin-top: 0px;
}

#jmz-timeline-issues li h3.jmz-title a:hover{
  opacity: .7;
}

#jmz-timeline-issues li a.jmz-read-more{
  text-decoration: none;
  margin-top: 15px;
  display: inline-block;
  padding: .4em 0.5em;
  border-radius: 0.25em;

}

#jmz-timeline-issues li .jmz-content{

}

#jmz-timeline-issues li a.jmz-read-more:hover{
  opacity: .7;
}


#jmz-timeline-nav-next,
#jmz-timeline-nav-prev {
  position: absolute;
  top: 56%;
  overflow: hidden;
}

#jmz-timeline-nav-next span.jmz-icon,
#jmz-timeline-nav-prev span.jmz-icon{
  font-size: 24px;
  color: #cccccc;
}

#jmz-timeline-nav-next:hover span.jmz-icon,
#jmz-timeline-nav-prev:hover span.jmz-icon{
  color: #333333;
}


#jmz-timeline-nav-next {
  right: 0;
}

#jmz-timeline-nav-prev {
  left: 0;
}


/* Reponsive for screen >= 991px */

@media screen and (max-width: 991px) {

  #jmz-timeline-horizontal-wapper #jmz-timeline-issues li.selected img.jmz-image{
    max-width: 180px;
  }
  
  #jmz-timeline-horizontal-wapper #jmz-timeline-issues li .jmz-content{
    width: 85%;
  }
}

/* Reponsive for screen >= 767px */

@media screen and (max-width: 767px) {
  
  #jmz-timeline-horizontal-wapper #jmz-timeline-issues li.selected img.jmz-image{
    float: none;
    margin: 30px auto;
    padding: 20px;
    max-width: 100%;
  }

  #jmz-timeline-horizontal-wapper #jmz-timeline-issues li .jmz-content{
    max-width: 85vw;
    width: auto;
  }
}



