.skipButton {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    padding: 0 8px;
    height: 25px;
    text-shadow: 2px 1px 2px black;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    font-family: Helvetica, Arial, fallback, sans-serif;
    font-size: 12px;
    text-align: center;
    line-height: 25px;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    display: none;
    z-index: 10000;
    cursor: pointer;
}

.skipButton:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.skipButton.showed {
    display: block;
}

.mgvcontainer {
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}

.mgvcontainer.showed {
    visibility: visible;
    opacity: 1;
}
