
.bullseye {
    position: absolute;
/*
    top: 100px;
    left: 500px;
*/
    z-index: 299999999;
    border: 1px solid #f00;
    border-radius: 50%;
    width: 57px;
    height: 57px;
    box-sizing: border-box;
    text-align: center;
    padding: 5px;
    transition: opacity 1s ease-in;
    opacity: 1;
}

.bullseye div {
    border: 2px solid #f00;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
    transition: opacity 1.5s ease-in;
    opacity: 1;
}

.bullseye div div {
    border: 0;
    background: #f00;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-sizing: border-box;
    transition: opacity 2s ease-in;
    opacity: 1;
}

.bullseye.hide, .bullseye.hide div, .bullseye.hide div div, .bullseye.hide + .tourtip {
    opacity: 0;
}

.tourtip {
    position: absolute;
/*
    top: 100px;
    left: 565px;
*/
    z-index: 299999999;
    background: #000;
    border: 3px solid #ff143e;
    border-radius: 15px;
    box-sizing: border-box;
    width: 360px;
    padding: 20px;
    color: #fff;
    font-family: "proxima-nova";
    transition: opacity 1s ease-out;
    
}

@media only screen and (max-width: 700px) { 
    .tourtip, .bullseye {
        display: none !important;
    }
}

.tourtip h2, .tourtip p {
    display: inline;
    font-size: 20px;
    line-height: 20px;
    margin: 0;
    padding: 0;
    font-weight: 800;
    -webkit-font-smoothing: antialiased;
}

.tourtip p {
    font-size: 16px;
    font-weight: 100;
    display: block;
    padding-bottom: 15px;
}

.tourtip a:link, .tourtip a:visited {
    color: #2ddb73;
    text-decoration: none;
}

.tourtip a:hover {
    text-decoration: underline;
}

.tourtip button, .tourtip a.btn {
    display: inline-block;
    margin: 15px 0 0 0;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    background: #2ddb73;
    font-weight: 700;
    color: #000;
    font-size: 16px;
    border: 0;
    border-radius: 2px;
    margin: 0 10px 0 0;
    outline: none;
    font-family: "proxima-nova";
}

.tourtip a.btn:hover {
    text-decoration: none;
}

.tourtip h2 span {
    font-weight: 400;
    font-size: 16px;
}

.tourtip .custom-content { 
    margin-bottom: 15px;
}

.tourtip.tour-tray-content {
    width: 390px;
    left: 715px!important;
    top: 830px!important;
}

.tourtip.tour-tray-content h2 {
    display: block;
    margin-bottom: 20px;
}

.tourtip.tour-col-content {
    width: 535px;
    left: 400px!important;
    top: 210px!important;
}

.tourtip.tour-col-content h2 {
    display: block;
    margin-bottom: 20px;
}

.tourtip .tour-first {
    display: flex;
}

.tourtip.tour-col-content button {
    margin-top: -40px;
    margin-left: 200px;
}

.tourtip.tour-community-content {
    top: 540px!important;
}