@-webkit-keyframes cd-pulse {
    0% {
    box-shadow: 0 0 0 0 #ff962c;
   }
    100% {
    box-shadow: 0 0 0 20px rgba(255, 150, 44, 0);
   }
   }
   @-moz-keyframes cd-pulse {
    0% {
    box-shadow: 0 0 0 0 #ff962c;
   }
    100% {
    box-shadow: 0 0 0 20px rgba(255, 150, 44, 0);
   }
   }
   @keyframes cd-pulse {
    0% {
    box-shadow: 0 0 0 0 #ff962c;
   }
    100% {
    box-shadow: 0 0 0 20px rgba(255, 150, 44, 0);
   }
   }
   
   .cd-single-step {
       /* tour single step */
       position: absolute;
       z-index: 99999;
       width: 16px;
       height: 16px;
       left: 0;
       top: 0px;
         background-color: #1f86c9;
       border-radius: 8px;
       box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
       opacity: 0;
       /* Force Hardware Acceleration */
       -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
       -ms-transform: translateZ(0);
       -o-transform: translateZ(0);
       transform: translateZ(0);
       -webkit-transform: scale(0);
       -moz-transform: scale(0);
       -ms-transform: scale(0);
       -o-transform: scale(0);
       transform: scale(0);
       -webkit-transition: -webkit-transform 0.4s 0s, opacity 0s 0.4s;
       -moz-transition: -moz-transform 0.4s 0s, opacity 0s 0.4s;
       transition: transform 0.4s 0s, opacity 0s 0.4s;
       cursor: pointer;
   }
   
   .cd-single-step > span {
       /* dot indicator - visible on desktop version only */
       position: relative;
       z-index: 1;
       display: block;
       width: 10px;
       height: 10px;
       border-radius: inherit;
       background: #1f86c9;
       -webkit-transform: scale(0);
       -moz-transform: scale(0);
       -ms-transform: scale(0);
       -o-transform: scale(0);
       transform: scale(0);
       -webkit-transition: -webkit-transform 0.4s;
       -moz-transition: -moz-transform 0.4s;
       transition: transform 0.4s;
       /* replace text with background images */
       overflow: hidden;
       text-indent: 100%;
       white-space: nowrap;
       /* hide on mobile */
       
   }
   
   
   .cd-single-step::after {
       /* this is used to create the pulse animation */
       content: '';
       position: absolute;
       width: 100%;
       height: 100%;
       top: 0;
       left: 0;
       border-radius: inherit;
       /* Force Hardware Acceleration */
       -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
       -ms-transform: translateZ(0);
       -o-transform: translateZ(0);
       transform: translateZ(0);
       -webkit-backface-visibility: hidden;
       backface-visibility: hidden;
   }
   
   .cd-single-step.is-selected {
       /* visible step */
       opacity: 0;
       -webkit-transform: scale(1);
       -moz-transform: scale(1);
       -ms-transform: scale(1);
       -o-transform: scale(1);
       transform: scale(1);
       -webkit-transition: -webkit-transform 0.4s 0s;
       -moz-transition: -moz-transform 0.4s 0s;
       transition: transform 0.4s 0s;
       display: none;
   }
   
   .cd-single-step.is-selected::after {
       -webkit-animation: cd-pulse 2s infinite;
       -moz-animation: cd-pulse 2s infinite;
       animation: cd-pulse 2s infinite;
       -webkit-animation-delay: 0.5s;
       -moz-animation-delay: 0.5s;
       animation-delay: 0.5s;
   }
   
   .cd-modal, .cd-modal-box{
       position: fixed;
       z-index: 99999;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       background: rgb(0,0,0);
       background: transparent;
       background: rgba(0,0,0, 0.4);
       -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
       filter: alpha(opacity=40);
       display: none;
       
   }
   
   .cd-btn {
       -webkit-appearance: none;
       -moz-appearance: none;
       -ms-appearance: none;
       -o-appearance: none;
       appearance: none;
       border: none;
       border-radius: 4px;
       background: #1f86c9;
       padding: 9px 10px;
       color: #fefffb;
       font-weight: bold;
       font-size: 1em;
       cursor: pointer;
       box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
       box-shadow: 0 3px 12px 7px rgba(255,255,255, 0.8);
       z-index: 2;
       position: absolute;
       left: calc(50% - 58px);
       top: calc(50% - 14px);
   }
   
   .cd-skip-link{
       z-index: 2;
       position: absolute;
       left: calc(50% - 30px);
       top: calc(50% - -40px);
       color: #FFF;
   }
   
   .cd-more-info{
       z-index: 100001 ;
       padding: 2em;
       width: 100%;
       position: absolute;
       width: 340px;
       border-radius: 4px;
       box-shadow: 3px 9px 15px rgba(0, 0, 0, 0.3);
       opacity: 0;
       background-color: #1f86c9;
       background-color: #1f86c9;
       -webkit-transition: opacity 0.4s;
       -moz-transition: opacity 0.4s;
       transition: opacity 0.4s;
       border-color: #1f86c9;
       max-width: 90%;
   }
   
   .cd-more-info img{
       max-width: 300px;
       margin-top: 15px;
   }
   
   .cd-more-info::after {
       clear: both;
       content: "";
       display: table;
   }
   
   .cd-more-info::before {
       /* triangle next to the step description - hidden on mobile */
       content: '';
       position: absolute;
       height: 0;
       width: 0;
       border: 6px solid transparent;
       display: none;
   }
   
   .cd-more-info h2 {
       font-size: 16px;
       line-height: 1.2;
       margin-bottom: .4em; color:#fff;
       font-weight: normal;
       display: none;
   }
   
   .cd-more-info p {
       font-size: 13px;
       line-height: 1.6;
       margin-bottom: 1.4em;
       color: #fff;
       margin-top: 0;
   }
   
   .cd-tour-nav {
       float: right;
       margin-bottom: 0;
   }
   .cd-tour-nav::after {
       clear: both;
       content: "";
       display: table;
   }
   .cd-tour-nav li {
       display: inline-block;
       float: left;
   }
   .cd-tour-nav li:first-of-type {
       margin-right: 1.5em;
   }
   .cd-tour-nav a {
       font-size: 13px;
       color: #FFF;
       font-weight: bold;
       text-decoration: none;
   }
   
   .cd-tour-nav a[data-previous]{
       font-weight: normal;
   }
   
   .cd-tour-nav a:hover{
       opacity: 0.8;
   }
   
   .cd-tour-nav a.inactive {
       /* item not clickable */
       color: #cbccc8;
       cursor: not-allowed;
   }
   
   .cd-post-tour{
       position: fixed;
       z-index: 99999;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       background: rgb(0,0,0);
       background: transparent;
       /*background: rgba(0,0,0, 0.1);
       -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
       filter: alpha(opacity=10);*/
       opacity: 0;
       -webkit-transition: opacity 0.4s;
       -moz-transition: opacity 0.4s;
       transition: opacity 0.4s;
   }
   
   .cd-post-tour .cd-post-tour-content{
       z-index: 1;
       padding: 2em;
       width: 100%;
       position: absolute;
       width: 340px;
       border-radius: 4px;
       box-shadow:3px 9px 15px rgba(0, 0, 0, 0.3);
       background-color: #1f86c9;
       border-color: #1f86c9;
       color: #FFF;
       text-align: center;
       left: calc(50% - 170px);
       top: calc(50% - 78px);
       -webkit-transform: scale(0.7);
       -moz-transform: scale(0.7);
       -ms-transform: scale(0.7);
       transform: scale(0.7);
       opacity: 0;
       -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
       transition: all 0.3s;
       max-width: 90%;
   }
   
   
   .cd-post-tour-content.visible {
       -webkit-transform: scale(1);
       -moz-transform: scale(1);
       -ms-transform: scale(1);
       transform: scale(1);
       opacity: 1;
   }
   
   .cd-post-tour p{
       margin-top: 0;
       text-align: left;
       font-size: 1em;
       line-height: 1.6;
       margin-bottom: 1.4em;
       color: #fff
   }
   
   
   
   .cd-post-tour button{
       -webkit-appearance: none;
       -moz-appearance: none;
       -ms-appearance: none;
       -o-appearance: none;
       appearance: none;
       border: none;
       background: transparent;
       background:rgba(0,0,0,0);
       padding: 7px 12px;
       color: #FFF;
       font-size: 1.1em;
       cursor: pointer;
       z-index: 2;
       margin-top: 5px; 
       font-weight: bold;
       
   }
   
   cd-post-tour button:hover{
       opacity: 0.6;
   }
   
   .cd-close{
       overflow: hidden;
       text-indent: 100%;
       white-space: nowrap;
       position: relative;
       /* top: 10px; */
       /* right: 10px; */
       /* width: 300px; */
       /* height: 300px; */
       color: #FFF;
       font-size: 11px;
       bottom: -14px;
       left: 0px;
       text-align: left;
   }
   
   
   .faded{
     zoom: 1;
     filter: alpha(opacity=45);
     opacity: 0.45;
     -webkit-transition: opacity .5s ease-in-out;
     -moz-transition: opacity .5s ease-in-out;
     -ms-transition: opacity .5s ease-in-out;
     -o-transition: opacity .5s ease-in-out;
     transition: opacity .5s ease-in-out;
   }
   
   .highlighted{
     box-shadow: 3px 3px 15px #666 !important;
     cursor: pointer;
     /*Opacity*/
     zoom: 1;
     filter: alpha(opacity=100);
     opacity: 1;
       z-index: 100000;
     -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
       -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
       transform: scale(1.1);
       -webkit-transition: -webkit-transform 0.4s 0s;
       -moz-transition: -moz-transform 0.4s 0s;
       transition: transform 0.4s 0s;    
       background: #FFF;
       padding: 2px;
   }
   
   .highlightedvideo{
       box-shadow: 3px 3px 15px #666;
     cursor: pointer;
     /*Opacity*/
     zoom: 1;
     filter: alpha(opacity=100);
     opacity: 1;
       z-index: 100000;
         -webkit-transition: -webkit-transform 0.4s 0s;
       -moz-transition: -moz-transform 0.4s 0s;
       transition: transform 0.4s 0s;    
       background: #FFF;
   }


.tips-toggle {
	padding:10px 10px 10px 18px;
}

.tips-toggle .switch label {
    cursor: pointer;
    font-size: 1em !important;
    color:#000 !important;
}

.tips-toggle .switch label .lever {
	content: "";
	display: inline-block;
	position: relative;
	width: 36px;
	height: 14px;
	background-color: rgba(0, 0, 0, 0.38);
	border-radius: 15px;
	margin-right: 10px;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
	vertical-align: middle;
}

.tips-toggle .switch label input[type=checkbox] {
	height: 0;
	width: 0;
	opacity: 0;
}

.tips-toggle .switch label input[type=checkbox]:checked+.lever {
	background-color: #52b76d !important;
	content: "";
	display: inline-block;
	position: relative;
	width: 36px;
	height: 14px;
	border-radius: 15px;
	margin-right: 10px;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
	vertical-align: middle;
}

.tips-toggle .switch label .lever:before, .tips-toggle .switch label .lever:after {
	left: 18px;
	background-color: rgba(38, 166, 154, 0.15);
	content: "";
	position: absolute;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	left: 0;
	top: -3px;
	-webkit-transition: left 0.3s ease, background .3s ease,
		-webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
	transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s
		ease, -webkit-transform .1s ease;
	transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease,
		transform .1s ease;
	transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease,
		transform .1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform
		.1s ease;
}

.tips-toggle .switch label .lever:after {
	background-color: #F1F1F1;
	/* -webkit-box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12); */
	box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px
		rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.tips-toggle .switch label input[type=checkbox]:checked+.lever:after {
	background-color: #1F883B;
}

.tips-toggle .switch label input[type=checkbox]:checked+.lever:before, .tips-toggle .switch label input[type=checkbox]:checked+.lever:after
	{
	left: 18px;
}
   
   
   
   
  .cd-tour-nav a.focused, .cd-close.focused, .cd-close-post-tour.focused, .cd-skip-link.focused{
    outline: 2px dotted #FFF !important;
  
     }



     @media only screen and (max-width: 350px){

        .cd-post-tour .cd-post-tour-content{
            left: 5%;
            width: 90%;
            
        }

        .cd-more-info{
            width: 90% !important;
            left: 5% !important;
        }
     } 
