.mark-container {
    width: 20px;
    height: 20px;
    position: absolute;
}
.mark-container>.shine-h {
    width: 2px;
    height: 100%;
    border-radius: 50%;
    background: -moz-linear-gradient(top, rgba(30, 59, 83, 0) 0%, rgba(54, 236, 255, 1) 49%, rgba(30, 62, 86, 0) 99%, rgba(30, 59, 83, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(30, 59, 83, 0) 0%, rgba(54, 236, 255, 1) 49%, rgba(30, 62, 86, 0) 99%, rgba(30, 59, 83, 0) 100%);
    background: linear-gradient(to bottom, rgba(30, 59, 83, 0) 0%, rgba(54, 236, 255, 1) 49%, rgba(30, 62, 86, 0) 99%, rgba(30, 59, 83, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#001e3b53', endColorstr='#001e3b53', GradientType=0);
}
.opacity {
    animation: opacity-c 3s;
    -webkit-animation: opacity-c 3s;
    animation-fill-mode: forwards;
}
.opacity-fast {
    animation: opacity-c 300ms;
    -webkit-animation: opacity-c 300ms;
    animation-fill-mode: forwards;
}
.mark-container>.shine-v {
    transition: 1s all;
    width: 100%;
    height: 2px;
    border-radius: 50%;
    background: -moz-linear-gradient(left, rgba(30, 59, 83, 0) 0%, rgba(54, 236, 255, 1) 49%, rgba(30, 62, 86, 0) 99%, rgba(30, 59, 83, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(30, 59, 83, 0) 0%, rgba(54, 236, 255, 1) 49%, rgba(30, 62, 86, 0) 99%, rgba(30, 59, 83, 0) 100%);
    background: linear-gradient(to right, rgba(30, 59, 83, 0) 0%, rgba(54, 236, 255, 1) 49%, rgba(30, 62, 86, 0) 99%, rgba(30, 59, 83, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#001e3b53', endColorstr='#001e3b53', GradientType=1);
}
.mark-container>.shine-g {
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background-color: transparent;
    animation: glowing 1s;
    -webkit-animation: glowing 1s;
    transition: 1s all;
    z-index: 1;
}
.mark-container>.shine-c {
    width: 15px;
    height: 15px;
    border-radius: 20%;
    background-color: #ffffff;
    box-shadow: 0px 0px 25px 12px rgba(76, 255, 255, 1), inset 0px 0px 5px 1px rgba(76, 255, 255, 1), 0px 0px 5px 1px rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 0px 25px 12px rgba(76, 255, 255, 1), inset 0px 0px 5px 1px rgba(76, 255, 255, 1), 0px 0px 5px 1px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 25px 12px rgba(76, 255, 255, 1), inset 0px 0px 5px 1px rgba(76, 255, 255, 1), 0px 0px 5px 1px rgba(255, 255, 255, 1);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.abs-c {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
@keyframes opacity-c {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
