/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */
.widget {
    width: 100%;
    height: 100%;
    display: flex;
}
.overlay {
    position: relative;
    align-items: center;
    align-content: center;
    justify-content: space-around;
}
.overlay > .widget{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}


.switcher {
    position: relative;
}
.switcher > .widget {
    position: absolute;
    top: 0%;
    left: 0%;
}

.scale-box {
    position: relative;
}
.scale-box > .widget {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1280px;
    height: 720px;
    transform: translate(-50%, -50%);
    display: flex;
     overflow: visible;
}

.verticalbox {
    flex-direction: column;
    align-items: center;
    align-content: space-around;
    justify-content: center;
}
