/* ===========================================================
# bootstrap-tour - v0.9.3
# http://bootstraptour.com
# ==============================================================
# Copyright 2012-2013 Ulrich Sossou
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
*/
.tour-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11000;
  background-color: #000;
  opacity: 0.2;
}

.tour-step-backdrop {
  position: relative;
  z-index: 11101;
  background: inherit;
}

.tour-step-background {
  position: absolute;
  z-index: 11100;
  background: inherit;
  border-radius: 6px;
}

.popover[class*="tour-"] {
  z-index: 11100;
  min-width: 500px;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border : 0px;
  padding: 0px
}
.popover[class*="tour-"] .popover-navigation {
  padding: 34px 8px 8px 8px;
  /* padding: 9px 14px; */
}
.popover[class*="tour-"] .popover-navigation *[data-role="end"] {
  float: right;
}
.popover[class*="tour-"] .popover-navigation *[data-role="prev"],
.popover[class*="tour-"] .popover-navigation *[data-role="next"],
.popover[class*="tour-"] .popover-navigation *[data-role="end"] {
  cursor: pointer;
}
.popover[class*="tour-"] .popover-navigation *[data-role="prev"].disabled,
.popover[class*="tour-"] .popover-navigation *[data-role="next"].disabled,
.popover[class*="tour-"] .popover-navigation *[data-role="end"].disabled {
  cursor: default;
}
.popover[class*="tour-"].orphan {
  position: fixed;
  margin-top: 0;
}
.popover[class*="tour-"].orphan .arrow {
  display: none;
}

.popover[class*="tour-"].arrow {
   border : 0px;
   box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
}

.popover[class*="tour-"].bottom > .arrow:after {
  border-bottom-color: #77B8F8;
}

.popover[class*="tour-"] .popover-title {
  padding: 18px 24px 18px 24px;
  /* border-bottom: 1px solid #e5e5e5; */
  min-height: 16.428571429px;
  background-color: #77B8F8;
  font-size: 17px;
  margin: 0;
  line-height: 1.428571429;
  color: #f5f5f5;
  border-radius: 0px;
}

.popover[class*="tour-"] .popover-content {
  background-color: inherit;
  padding: 20px;
  font-size: 17px;
}

.popover[class*="tour-"] .popover-content li {
  margin: 10px 0 0 0;
}


