.interactive-guide-container {
    background: #a2083d !important;
    border-radius: 16px;
    overflow: hidden;
    position: fixed;
    width: 4rem;
    height: 4rem;
    -webkit-tap-highlight-color: transparent;
    transition: width 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
    height 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
    border-radius 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
    margin: 0 30px;
    bottom: 30px;
    right: 0;
    z-index: 9999;
    cursor: pointer;
    display: flex;
}
.interactive-guide-icon{
    color: #FFFFFF;
    font-size: 2.5rem;
}

.interactive-guide-container:hover .interactive-guide-icon{
    transform: rotate(90deg);
}
.interactive-guide-container:not(.expand):hover {
    background: #C2C0C2;
}

.interactive-guide-from-contents {
    display: flex;
    flex-direction: row;
    transform-origin: 0 0;
    transition: transform 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.interactive-guide-to {
    opacity: 0;
    position: absolute;
    transition: opacity 100ms cubic-bezier(0.4, 0.0, 1, 1);
}
.interactive-guide-to-contents {
    transform: scale(.55);
    transform-origin: 0 0;
    transition: transform 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.interactive-guide-top {
    background: #5867dd;
    display: flex;
    flex-direction: row;
    height: 70px;
    transition: height 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
    width: 100%;
    position: absolute;
}

.interactive-guide-x-touch {
    align-items: center;
    align-self: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-right: 20px;
}
.interactive-guide-x {
    background: #fff;
    border-radius: 10px;
    height: 20px;
    position: relative;
    width: 20px;
}
.interactive-guide-name-large{
    color: #fff;
    font-size: 16px;
    margin-left: 20px;
}
.interactive-guide-x-touch:hover .x {
    background: #CB9AFB;
}
.interactive-guide-line1 {
    background: #6422EB;
    height: 12px;
    position: absolute;
    transform: translateX(9px) translateY(4px) rotate(45deg);
    width: 2px;
}
.interactive-guide-line2 {
    background: #6422EB;
    height: 12px;
    position: absolute;
    transform: translateX(9px) translateY(4px) rotate(-45deg);
    width: 2px;
}
.interactive-guide-bottom {
    background: #FFF;
    color:  #444247;
    font-size: 14px;
    height: 200px;
    padding-top: 5px;
}
.interactive-guide-row {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 60px;
    position: relative;
    margin-top: 80px;
    margin-left: 20px;
    margin-right: 20px;
}
.interactive-guide-row-other {
    align-items: center;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-top: 5px;
    margin-left: 20px;
    margin-right: 20px;
}

.interactive-guide-link a:hover {
    color:  #777579;
}

.interactive-guide-container.interactive-guide-expand {
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.16);
    height: 200px;
    width: 450px;
    cursor: default;
}

.interactive-guide-expand .interactive-guide-from {
    opacity: 0;
    transition: opacity 100ms cubic-bezier(0.4, 0.0, 1, 1);
}

.interactive-guide-expand .interactive-guide-from-contents {
    transform: scale(1.91);
}

.interactive-guide-expand .interactive-guide-to {
    opacity: 1;
    transition: opacity 200ms 100ms cubic-bezier(0.0, 0.0, 0.2, 1);
    width : 450px;
}

.interactive-guide-expand .interactive-guide-to-contents {
    transform: scale(1);
}

@media (max-width: 577px) {
    .interactive-guide-icon{
        font-size: 2.2rem;
    }
    .interactive-guide-container.interactive-guide-expand{
        width:  250px !important;
    }
    .interactive-guide-expand .interactive-guide-to {
        width:  250px !important;
    }
}

@media (max-width: 769px) {
    .interactive-guide-container.interactive-guide-expand{
        width:  200px;
    }
    .interactive-guide-expand .interactive-guide-to {
        width : 200px;
    }
    .interactive-guide-icon{
        font-size: 2rem;
    }
}

@media (max-width: 1025px) {
    .interactive-guide-container.interactive-guide-expand {
        width: 400px;
    }

    .interactive-guide-expand .interactive-guide-to {
        width: 400px;
    }
}
