.simulator-row { 
    width:100%;
    float: left;
    margin:20px 0 40px;
}
.youtube-simulator {
    width: 800px;
    max-width: 100%;
    border: 1px solid;
    float: left;
    border-radius: 7px;
    position: relative;
    min-height: 480px;
}
.youtube-simulator .col-values {
    width: 100%;
    margin: 0;
    padding: 20px 300px 0px 0;
    min-height: 100%;
    text-align: center;
}
.youtube-simulator .col-result {
    position: absolute;
    z-index: 500;
    color: #fff;
    background: url(/wp-content/uploads/2018/10/bg-youtube1-250x81.jpg);
    background-size: cover;
    width: 300px;
    right: 0;    
    top:0;
    height: 100%;
    overflow: auto;
    height:480px;
    padding: 30px 20px;
    text-align: center;
    font-weight: 500;
    z-index:1;
}

.youtube-simulator .col-values p.title {
    font-size: 23px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 40px;
}

.youtube-simulator .col-values .daily-views p.title {
    font-size: 29px;
    line-height: 31px;
    margin-bottom: 5px;
}
.youtube-simulator .col-values p.subtitle { 
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 30px;
}
.youtube-simulator .col-values p.value { 
    margin-bottom:30px;
}
.youtube-simulator .col-values .daily-views, 
.youtube-simulator .col-values .ctr { margin-bottom: 65px;}
span#day-views .value { margin-top: 20px;}
span#day-views + .info {
    font-size: 14px;
}
span#day-views {
    color: red;
    font-size: 47px;
    font-weight: 500;
    margin-right: 6px;
}

.youtube-simulator .col-values  .totals>div { 
    width:50%;
    text-align: center;
    float: left;
}

.youtube-simulator .col-values  .totals>div p { 
    color: red;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}
.youtube-simulator .col-values  .totals>div p.info { 
    color:black;
    font-size: 17px;
    font-weight: 400;
}

.youtube-simulator .col-result .result-item { 
    width:100%;
    float: left;
    border-bottom: 1px dotted white;
    margin-bottom: 25px;
    padding-bottom: 40px;
}
.youtube-simulator .col-result .result-item:last-child { 
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.youtube-simulator .col-result .result-item  p.info { 
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}
.youtube-simulator .col-result .result-item  p.result { 
    font-size: 36px;
    margin-bottom: 5px;
}


.simulator-slider {
    width: 92%;
    margin: 0px 4%;
    position: relative;
}

.simulator-slider .min-value,
.simulator-slider .max-value  { 
      position: absolute;
      top: -21px;
      font-size: 13px;
      color: #8c8c8c;
}
.simulator-slider .min-value { right:5px}
.simulator-slider .max-value { left:5px; }

span.range {
    position: absolute;
    left: -4%;
    top: 25px;
    color: #c8c8c8;
    font-size: 13px;
    width:55px;
    text-align: center;
}

span.range:before {
    content: '';
    position: absolute;
    top: -8px;
    width: 2px;
    height: 4px;
    background: #c8c8c8;
    left: 27px;
    z-index: 2;
}

span.range.r2 { left: 20%; }
span.range.r3 { left: 44.5%; }
span.range.r4 { left: 68.5%; }
span.range.r5 { left: 92%; }

  
  /* The slider itself */
  .slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 18px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    border-radius: 8px;
  }
  
  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 24px; /* Set a specific slider handle width */
    height: 24px; /* Slider handle height */
    background: red; /* Green background */
    border-radius: 24px;
    cursor: pointer; /* Cursor on hover */
    position: relative;
    top:-1px;
    z-index: 3;
  }
  
  .slider::-moz-range-thumb {
    width: 24px; /* Set a specific slider handle width */
    height: 24px; /* Slider handle height */
    background: red; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }


  .bubble {
    background: red;
    color: white;
    padding: 4px 9px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    top: 22px;
    font-size: 13px;
    z-index: 10;
  }
  .bubble::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: red;
    top: -2px;
    left: 50%;
  }


  @media (max-width: 860px) {
    .youtube-simulator .col-values {
        padding-right: 0;
        margin-bottom: 30px;
        float: left;
    }
    .youtube-simulator .col-result { 
        position: static;
        width:100%;
        height:auto;
    }
  }

  @media (max-width: 480px) {
    .simulator-slider {
        width: 98%;
        margin: 0px 1%;
    }
  }