﻿html{
      scroll-behavior: smooth;
}

ol.sample1,
ol.sample1 ol{
  counter-reset: list;
  list-style: none;
  padding: 0;
  width: 290px;
  font: 14px/1.6 'arial narrow', sans-serif;
}

ol.sample1 ol{
  margin: 0 0 0 35px;
      width: 290px;
}
 
.sample1 a{
  position: relative;
  display: block;
  text-decoration: none;
  padding: 3px 3px 3px 8px;
  margin: 8px 0 8px 35px;
  height: 28px;
  background: #d7f6ff;
  color: #333;
  font-weight: bold;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
 
.sample1 a:hover{
  background: #ffd9d3;
}  
 
.sample1 a:before{
  content: counter(list);
  counter-increment: list;
  position: absolute;  
  left: -35px;
  top: 50%;
  margin-top: -1em;
  height: 28px;
  width: 28px;
  background: #0099ce;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
 
.sample1 a:after{    
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  margin-top: -6px;
  border: 6px solid transparent;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;            
}
 
.sample1 a:hover:after{
  left: -6px;
  border-left-color: #5c9ee7;              
}

.detailedInfo{
     display: flex;
}

img.detailedInfo{
     width: 22px;
     height: 22px;
     position: relative;
}

p.detailedInfo{
     margin: 0 0 0 5px;
     padding: 0;
}    

a.scrollback{
 height: 50px;
 width: 50px;
 position: relative;
 margin: 0 0 0 auto;
 background: #fff;
 border: solid 2px #0099ce;
 display: flex;
 justify-content: center;
 z-index: 2;
 align-items: center;
}

.scrollback_2{
 height: 12px;
 width: 12px;
 border-top: 3px solid #0099ce;
 border-right: 3px solid #0099ce;
 transform: translateY(20%) rotate(-45deg);
}

.triangle{
 border-top: 5px solid transparent;
 border-right: 5px solid #0099ce;
 border-bottom: 5px solid transparent;
 display: inline-block;
 position: relative;
 left: 6px;
}

.triangle_text{
 position: relative;
 display: inline-block;
 left: 16px;
}

@media only screen and (max-width: 767px){
ol.sample1,
ol.sample1 ol{
     width: 100%;
     margin: 0;
}

.sample1 a{
     margin: 8px 0;
     padding-left: 35px;
}

.sample1 a:before{
     margin-left: 30px;
}

.sample1 a:after{
     display: none;
     content: '';
}
}