/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .cs-progress-bar .progress-bar--circle {
    display: inline-block;
    position: absolute;
    margin: 0;
    bottom: 5px;
    left: -21px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #566371;
    /*transition: all 0.1s;*/
    /*left: 50%;*/
    top: -10px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 2px solid #fff;
}
.cs-progress-bar .progress-bar--circle:hover {
    width: 20px;
    height: 20px;
    background-color: #fff;
}
.cs-progress-bar span.nav-anchor-title{
       visibility: hidden;
    width: 100%;
    /*background-color: #5d748c;*/
    border : 1px solid #fff;
    background-color: #2d3e50;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    top: 25px;
    left: -50px;
    /*transition: all 0.5s;*/
    min-width: 240px;
    right: inherit;
    line-height: 1.4;
    font-size: 16px;
}
.cs-progress-bar .progress-bar--circle:hover span.nav-anchor-title {
    visibility: visible;
}
.cs-progress-bar ul.nav-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding:0;
    margin:0;
    width:100%;
    position: relative;
}

.cs-progress-bar li.scroll-active {
    width: 20px;
    height:20px;
    background-color: #fff;
    z-index: 1;
}
.cs-progress-bar li.active{
  width: 20px;
    height:20px;
    background-color: #fff;
    z-index: 1;
}
.cs-progress-bar ul.nav-bar .progress-bar--circle:last-child .nav-anchor-title, .cs-progress-bar ul.nav-bar .progress-bar--circle:nth-last-child(2) .nav-anchor-title, .cs-progress-bar ul.nav-bar .progress-bar--circle:nth-last-child(3) .nav-anchor-title,.cs-progress-bar ul.nav-bar .progress-bar--circle:nth-last-child(4) .nav-anchor-title{
    left: inherit;
    right: 0px;
}

/*responsive css */
@media (max-width: 1024px){
  .cs-progress-bar .progress-bar--circle:nth-child(3) span.nav-anchor-title {
    right: 0;
    left: auto;
  }
}
@media (max-width: 980px){
.cs-progress-bar span.nav-anchor-title {
   /* display:none;*/
   font-size: 13px;
   min-width: 180px;
   left: 0;
   line-height: 1.3;
}
.cs-progress-bar ul.nav-bar .progress-bar--circle:last-child .nav-anchor-title {
    right: -50px;
}
}
@media (max-width: 600px){
 .cs-progress-bar span.nav-anchor-title{
    min-width: 120px;
    padding: 5px;
  } 
}