.shepherd-button {
    color: white;
    border: 1px solid;
    text-align: center;
    vertical-align: top;
    box-shadow: 2px 2px 1px #888888;
    padding: 9px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 5px;
    border-color: white;
    text-decoration: none;
    margin-right: 5px;
    border-radius: 0px;
    background-color: #704873;

    cursor: pointer;
    margin-right: .5rem;
    padding: .5rem 1.5rem;
    transition: all .5s ease
}

.shepherd-button:not(:disabled):hover {
    background-color: #704873;

}

.shepherd-button.shepherd-button-secondary {
    background: #f1f2f3;
    color: rgba(0, 0, 0, .75)
}

.shepherd-button.shepherd-button-secondary:not(:disabled):hover {
    background: #d6d9db;
    color: rgba(0, 0, 0, .75)
}

.shepherd-button:disabled {
    cursor: not-allowed
}

.shepherd-footer {

    display: flex;
    justify-content: flex-end;
    padding: 0 .75rem .75rem
}

.shepherd-footer .shepherd-button:last-child {
    margin-right: 0
}

.shepherd-cancel-icon {
    background: transparent;
    border: none;
    color: hsla(0, 0%, 50%, .75);
    cursor: pointer;
    font-size: 2em;
    font-weight: 400;
    margin: 0;
    padding: 0;
    transition: color .5s ease
}

.shepherd-cancel-icon:hover {
    color: rgba(0, 0, 0, .75)
}

.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
    color: hsla(0, 0%, 50%, .75)
}

.shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover {
    color: rgba(0, 0, 0, .75)
}

.shepherd-title {
    color: rgba(0, 0, 0, .75);
    display: flex;
    flex: 1 0 auto;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    padding: 0
}

.shepherd-header {
    align-items: center;

    display: flex;
    justify-content: flex-end;
    line-height: 2em;
    padding: .75rem .75rem 0
}

.shepherd-has-title .shepherd-content .shepherd-header {
    background: #e6e6e6;
    padding: 1em
}

.shepherd-text {
    color: rgba(0, 0, 0, .75);
    font-size: 1rem;
    line-height: 1.3em;
    padding: .75em .75em 0 .75em;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    border-radius: 0px;
    background-color: white;

}

.shepherd-text p {
    margin-top: 0
}

.shepherd-text p:last-child {
    margin-bottom: 0
}

.shepherd-content {

    outline: none;
    padding: 0
}

/*This is the shepard popup box*/
.shepherd-element {
    background: #fff;
    border: solid 1px #704873 ;
    box-shadow: 2px 2px 20px #888888;
    margin: 0;
    max-width: 400px;
    opacity: 0;
    outline: none;
    padding: 0;
    margin: 15px;
    transition: opacity .3s, visibility .3s;
    visibility: hidden;
    width: 100%;
    z-index: 9999;
    top: 10px;
}

.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-element *,
.shepherd-element :after,
.shepherd-element :before {
    box-sizing: border-box
}

.shepherd-arrow,
.shepherd-arrow:before {
    height: 16px;
    position: absolute;
    width: 16px;
    z-index: -1
}

.shepherd-arrow:before {
    background: #fff;
    content: "";
    transform: rotate(45deg);
    border: solid 1px #704873 ;

    opacity: 0;
}

.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-element.shepherd-has-title[data-popper-placement^=bottom]>.shepherd-arrow:before {
    background-color: #e6e6e6

}

.shepherd-target
{
border: #F27527 solid 1px;
    -webkit-box-shadow:0px 0px 7px 3px rgba(242, 117, 39, 1);
    -moz-box-shadow: 0px 0px 7px 3px rgba(242, 117, 39, 1);
    box-shadow: 0px 0px 7px 3px rgba(242, 117, 39, 1);

}

.shepherd-target-click-disabled.shepherd-enabled.shepherd-target,
.shepherd-target-click-disabled.shepherd-enabled.shepherd-target * {
    pointer-events: none

}

/* TThis is our highlighted area!*/
.shepherd-modal-overlay-container {
    height: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: all .3s ease-out, height 0s .3s, opacity .3s 0s;
    width: 100vw;
    z-index: 9997;


}

/* Controls the look of the grayed out background*/
.shepherd-modal-overlay-container.shepherd-modal-is-visible {
    height: 100vh;
    opacity: 0;
    transform: translateZ(0);
    transition: all .3s ease-out, height 0s 0s, opacity .3s 0s;

}

.shepherd-modal-overlay-container.shepherd-modal-is-visible path {
    pointer-events: all;


}

.shepherd-progress {
    box-sizing: content-box;
    overflow: hidden;
    height: 10px;
    margin: 10px;

    background-color: #e0e0e0;
    width: 100%;

}


.shepherd-progressbar{
    box-sizing: content-box;
    float: left;
    width: 0%;
    height: 100%;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    background-color: #704873;
}