#tour-center {
    position: fixed;
    right: 10px;
    bottom: 30px;
    height: 280px;
    background: #dbeff0;
    padding: 20px 24px;
    border-radius: 7px;
    z-index: 2;
    box-shadow: 0 0 5px #d2c316;
    transition: 0.5s;
}

#tour-center:not(.expand) {
    height: 40px;
    overflow: hidden;
    padding: 3px 24px;
    background: rgba(219,239,240,0.9);

    .item-tour {
        opacity: 0;
    }
}

.header-tourcenter {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 18px;
    border-bottom: 1px solid #044344;
    color: #044344;
    letter-spacing: 1px;
}

.item-tour {
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #cde8ea;
    color: hsla(202,29%,25%,1);
    font-size: 14px;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s;
    text-align: center;
    border-radius: 10px;
    border-bottom-width: 3px;
}

.item-tour:hover {
    background: #f5f5f5;
}

.item-tour:not(:last-child) {
    margin-bottom: 8px;
}
.item-tour .bullet {
    margin-right: 8px;
    font-size: 18px;
    line-height: 0;
}

.action-tourcenter {
    text-align: center;
}

.button-done {
    display: inline-block;
    font-family: Raleway;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    background: #F44336;
    height: 32px;
    padding: 7px 10px;
    text-align: center;
    color: #fff;
    border-radius: 7px;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    margin-top: 10px;
}

#tour-page-transition {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(32,32,32,0.5);
    display: none;
}