.shepherd-element {
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    opacity: 0;
    outline: 0;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
}
.shepherd-enabled.shepherd-element {
    opacity: 1;
    visibility: visible;
}
.shepherd-element[data-popper-reference-hidden]:not(.shepherd-centered) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.shepherd-element.shepherd-not-found-element {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.shepherd-element,
.shepherd-element *,
.shepherd-element :after,
.shepherd-element :before {
    box-sizing: border-box;
}
.shepherd-arrow,
.shepherd-arrow:before {
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: -1;  
}
.shepherd-arrow:before {
    content: "";
    transform: rotate(45deg);
    background-color: #e6e6e6;
}
.shepherd-element.shepherd-has-title[data-popper-placement^="top"] > .shepherd-arrow:before{
    background-color: #fff;
}
.shepherd-element[data-popper-placement^="top"] > .shepherd-arrow {
    bottom: -8px;
}
.shepherd-element[data-popper-placement^="bottom"] > .shepherd-arrow {
    top: -8px;
}
.shepherd-element[data-popper-placement^="left"] > .shepherd-arrow {
    right: -8px;
}
.shepherd-element[data-popper-placement^="right"] > .shepherd-arrow {
    left: -8px;
}
.shepherd-element.shepherd-centered > .shepherd-arrow {
    opacity: 0;
}
.shepherd-target-click-disabled.shepherd-enabled.shepherd-target,
.shepherd-target-click-disabled.shepherd-enabled.shepherd-target * {
    pointer-events: none;
}
.shepherd-modal-overlay-container {
    height: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: all 0.3s ease-out, height 0s 0.3s, opacity 0.3s 0s;
    width: 100vw;
    z-index: 999;
}
.shepherd-modal-overlay-container.shepherd-modal-is-visible {
    height: 100vh;
    opacity: 0.5;
    transition: all 0.3s ease-out, height 0s 0s, opacity 0.3s 0s;
}
.shepherd-modal-overlay-container.shepherd-modal-is-visible path {
    pointer-events: all;
}
.shepherd-content {
    border-radius: 5px;
    outline: 0;
    padding: 0;
}
.shepherd-header {
    align-items: flex-start;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    line-height: 2em;
    padding: 0.75rem 0.75rem 0;
    background-color: #e6e6e6;
}
.shepherd-has-title .shepherd-content .shepherd-header {
    padding: 1rem;
}
.shepherd-text {
    font-size: 16px;
    line-height: 1.3em;
    padding: 0.75em;
    color: #000000;
}
.shepherd-text p {
    margin-top: 0;
}
.shepherd-text p:last-child {
    margin-bottom: 0;
}
.shepherd-footer {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0 0.75rem 0.75rem;
    text-align: right;
}
.shepherd-footer .shepherd-button:last-child {
    margin-right: 0;
}
.shepherd-cancel-icon {
    background: 0 0;
    font-size: 2em;
    cursor: pointer;
    font-weight: 400;
    margin: 0;
    padding: 0;
    transition: color 0.5s ease;
    color: #000000;
}
.shepherd-cancel-icon:hover {
    color: #000;
}
.shepherd-title {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    flex-grow: 1;
    margin: 0;
    padding: 0 10px 0 0;
    color: #000000;
}
.shepherd-button {
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    margin-right: .5rem;
    padding: 8px 24px;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    background-color: #00477b;
    color: #ffffff;
}
.shepherd-progress-bar {
    font-size: 14px;
    border-radius: 5px;
    height: 22px;
    width: 100%;
    padding: 2px;
    margin-bottom: 15px;
    background-color: #e6e6e6;
}
.shepherd-progress-bar .shepherd-progress-bar-active {
    display: block;
    width: 50%;
    height: 100%;
    border-radius: 3px;
    background-color: #00477b;
}
.shepherd-cancel-icon {
    border: none;
}
body.shepherd-show{
    overflow: hidden;
    padding-bottom: 150px;
}
body.default-body{
    margin-bottom: 20px;
}
.btn-start-tourguide{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin-top: -115px;
}
.btn-start-tourguide #startTourguide{
    background-color: #00477b;
    display: block;
    padding: 10px;
    z-index: 999;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}
.btn-start-tourguide #hideTourguideBtn{
    position: absolute;
    right: -9px;
    top: -9px;
    color: #fff;
    font-size: 20px;
    background: #f00000;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: 0.1s ease-in-out;
}
.btn-start-tourguide:hover #hideTourguideBtn{
    opacity: 1;
}
