.ckeditorWrapper .imgContainer,
.page.maxM .imgContainer,
.page.minM .linksWrapper {
    display: none;
}

.ckeditorWrapper .linksWrapper {
    display: block !important;
}

.imgContainer {
    position: relative;
}

.imgContainer img,
.linksWrapper > img {
    display: block;
    width: 100%;
}

.imgContainer .tooltipBox {
    position: absolute;
}

.imgContainer .tooltipBox.num_1 {
    top: 11%;
    left: 7%;
    width: 45%;
    height: 57%;
}
.imgContainer .tooltipBox.num_2 {
    top: 6%;
    left: 7%;
    width: 58%;
    height: 62%;
}
.imgContainer .tooltipBox.num_3 {
    top: 18%;
    left: 7%;
    width: 62%;
    height: 50%;
}
.imgContainer .tooltipBox.num_4 {
    top: 48%;
    left: 7%;
    width: 38%;
    height: 20%;
}
.imgContainer .tooltipBox.num_5 {
    top: 37%;
    left: 7%;
    width: 31%;
    height: 31%;
}
.imgContainer .tooltipBox.num_6 {
    top: 59%;
    left: 7%;
    width: 33%;
    height: 9%;
}
.imgContainer .tooltipBox.num_7 {
    top: 41%;
    left: 7%;
    width: 49.5%;
    height: 27%;
}
.imgContainer .tooltipBox.num_8 {
    top: auto;
    left: auto;
    bottom: 16%;
    right: 39%;
    width: 54%;
    height: 22%;
}
.imgContainer .tooltipBox.num_9 {
    top: 44%;
    left: 7%;
    width: 64%;
    height: 24%;
}
.imgContainer .tooltipBox.num_10 {
    top: 33%;
    left: 7%;
    width: 76%;
    height: 35%;
}

.imgContainer .tooltipBox .point {
    display: block;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    border: 6px solid #fff;
    border-radius: 50%;
    text-decoration: none;
    background-color: #C50022;
    position: absolute;
    top: -15px;
    right: -15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    z-index: 1;
}

.page.maxL .imgContainer .tooltipBox .point {
    width: 20px;
    height: 20px;
    border: 4px solid #fff;
    top: -10px;
    right: -10px;
}

.imgContainer .tooltipBox.special .point {
    top: auto;
    bottom: -15px;
    right: -15px;
}

.page.maxL .imgContainer .tooltipBox.special .point {
    top: auto;
    bottom: -10px;
    right: -10px;
}

.imgContainer .tooltipBox .line {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
    box-sizing: border-box;
    border-top: 1px solid #C50022;
    border-left: 1px solid #C50022;
    z-index: 0;
    transition: width 0.15s ease-out 0.15s, height 0.15s ease-out; 
}

.imgContainer .tooltipBox.special .line {
    top: auto;
    bottom: 0;
    height: 0;
    border-top: 1px solid #C50022;
    border-left-width: 0;
    border-right: 1px solid #C50022;
    transition: height 0.15s ease-out 0.15s, width 0.15s ease-out; 
}

.imgContainer .tooltipBox .point:hover ~ .line {
    transition: width 0.15s ease-out, height 0.15s ease-out 0.15s; 
    width: 100%;
    height: 100%;
}

.imgContainer .tooltipBox.special .point:hover ~ .line {
    transition: height 0.15s ease-out, width 0.15s ease-out 0.15s; 
}

.imgContainer .tooltipBox .linkTitle {
    position: absolute;
    bottom: -30px;
    left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #C50022;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-out, bottom 0.2s ease-out;
    white-space: nowrap;
}

.page.minL .imgContainer .tooltipBox .linkTitle {
    font-size: 22px;
}

.imgContainer .tooltipBox.special .linkTitle {
    top: 39px;
    left: 5px;
    transition: opacity 0.2s ease-out, top 0.2s ease-out;
}

.imgContainer .tooltipBox .point:hover ~ .linkTitle {
    transition: opacity 0.2s ease-out 0.3s, bottom 0.2s ease-out 0.3s;
    opacity: 1;
    bottom: -5px;
}

.imgContainer .tooltipBox.special .point:hover ~ .linkTitle {
    transition: opacity 0.2s ease-out 0.3s, top 0.2s ease-out 0.3s;
    top: 8%;
}
    
.linksWrapper > a {
    display: block;
    text-decoration: none;
    box-sizing: border-box;
    padding: 15px 15px 15px 5px;
    color: inherit;
    font-weight: bold;
    position: relative;
    line-height: 30px;
    transition: 0.2s ease-out;
}

.linksWrapper > a:hover {
    background-color: #C50022;
    color: #fff;
}

.linksWrapper > a + a {
    border-top: 1px solid #aaa;
}

.linksWrapper > a > :first-child {
    transition: 0.2s ease-out;
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #C50022;
    color: #fff;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.linksWrapper > a:hover > :first-child {
    background-color: #fff;
    color: #C50022;
}