/* ========================================================================
 * bootstrap-tour - v0.11.0
 * http://bootstraptour.com
 * ========================================================================
 * Copyright 2012-2015 Ulrich Sossou
 *
 * ========================================================================
 * Licensed under the MIT License (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://opensource.org/licenses/MIT
 *
 * 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: absolute;
  z-index: 1100;
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.popover[class*="tour-"] {
  z-index: 1102;
  font-family: RaleWay;
  font-size: 14px;
  color: #190c0c;
  min-width: 300px;
  max-width: 450px;
}
.popover[class*="tour-"] .popover-navigation {
  overflow: hidden;
}
.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-"] .popover-header {
  position: relative;
  height: 30px;
}

.popover[class*="tour-"] .popover-header button.pop-close-btn {
  position: absolute;
  top: 9px;
  right: 9px;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(close-icon-black.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: contain;
  margin-left: 0;
  border: none;
}

.popover[class*="tour-"] .popover-title {
  background-color: white;
  border-bottom: none;
  padding: 6px 30px;
  font-size: 20px;
  font-weight: 600;
}

.popover[class*="tour-"] .popover-content {
  padding: 18px 30px;
}

.popover[class*="tour-"] .popover-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;	
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;	
  align-items: center;  
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 12px 30px;   
}

.popover[class*="tour-"] .popover-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;	
  display: flex;
}

.popover[class*="tour-"] .popover-footer .status-bar {
  width: 24px;
  height: 3px;
  margin: 2px;
  background: #d1cece;
}

.popover[class*="tour-"] .popover-footer .status-bar.active {
  background: #72b340;
  height: 6px;
}

.popover[class*="tour-"] .popover-footer .pop-prev-button,
.popover[class*="tour-"] .popover-footer .pop-next-button,
.popover[class*="tour-"] .popover-footer .pop-end-button {
  border: none;
}

.popover[class*="tour-"] .popover-footer .pop-next-button:before,
.popover[class*="tour-"] .popover-footer .pop-end-button:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(chevron-right-brown.svg);
  background-repeat: no-repeat;
  background-position: -2px 3px;
  background-size: cover;	
}

.popover[class*="tour-"] .popover-footer .pop-prev-button:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(chevron-left-brown.svg);
  background-repeat: no-repeat;
  background-position: -2px 3px;
  background-size: cover;	
}

.popover[class*="tour-"] .popover-exit {
  padding: 0 30px 12px;
}

.popover[class*="tour-"] .popover-exit input[type=checkbox].popover-cb {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  vertical-align: middle;
}

.popover[class*="tour-"] .popover-exit input[type=checkbox].popover-cb + label.popover-cb-label {
  background-image: url(form-chkbox-unchecked.svg);
  padding-left: 30px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;	
  align-items: center;		
  line-height: 1.2em;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  font-family: Raleway;
  font-size: 14px;
  font-weight: normal;		
  cursor: pointer;
  margin: 0;
}

.popover[class*="tour-"] .popover-exit input[type=checkbox].popover-cb:checked + label.popover-cb-label {
  background-image: url(form-chkbox-checked.svg);
  background-position: 0 0;
}

