/* HOME PAGE */

#middle {
    background: rgba(245, 245, 245, 0.95);
    border-radius: 15px;
    padding: 15px;
}

#gliders {
    display: flex;
    /* grid-auto-flow: column; */
    position: relative;
    margin: 20px;
}

#gliderClass {
    height: 25px;
    text-align: center;
    margin: 10px 100px;
    font-size: 10px;

    display: flex;
    justify-content: center;
    
}

.gliderClassItem {
    display: flex;
    width: 70px;
    margin: auto;
    justify-content: center;
    background: none;
    border: none;
    color: rgb(57, 55, 56);
    cursor: pointer;
    transition: font-size 200ms, color 400ms;
}

.inactiveClass {
    font-size: 12px;
    font-family: MontserratM;
    color: rgba(57, 55, 56, 0.5);
}

.inactiveClass:hover {
    font-family: MontserratM;
    color: rgb(57, 55, 56);
}


.activeClass {
    font-size: 18px;
    font-family: MontserratM;
    color: rgb(57, 55, 56);

}

#ENA, #ENC, #END, #ENX {
    display: none;

}

.class {
    position: relative;
    width: 70vw;
    height: 30vw;
    min-width: 490px;
    min-height: 220px;
    /* margin: 15px; */
}

.glider {
    display: grid;
    position: absolute;
    /* margin: 5% 0%; */
    height: 100%;
    border-radius: 15px;
    /* padding: 7% 5px; */
    transition: 300ms;
}

.gliderName {
    font-family: UPGlobal-Regular;
    font-size:  100%;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
}

.gliderImage {
    width: 80%;
    margin: 10px auto;
}

.range {
    width: 140px;
}

img {
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

.left, .farLeft, .right, .farRight {    
    width: 20%;
    /* height: 30px; */
    font-size: 14px;
}

.farLeft {    
    left: -10%;
    top: -10%;
    opacity: 0;
    visibility: hidden;
}

.left {    
    left: 0;
    top: 0;
    opacity: 0.5;
}

.center {
    cursor: pointer;
    /* border-radius: 4vw; */
    width: 40%;
    /* height: 150px; */
    left: 30%;
    font-size: 24px;
    opacity: 1;
}

.right {
    left: 80%;
    top: 0;
    opacity: 0.5;
}

.farRight {    
    left: 90%;
    top: -10%;
    opacity: 0;
    visibility: hidden;
}

#arrowLeft, #arrowRight {
    height: 25px;
    width: 25px;
    /* cursor: pointer; */
    /* border-radius: 27px; */
    /* margin: auto 20px; */
    /* padding: 7px; */
}

#arrowLeft {
    transform: rotate(-90deg);
}

#arrowRight {
    transform: rotate(90deg);
}

.center:hover {
    background-color: rgba(136, 136, 136, 0.712);
}

.select {
    visibility: hidden;
    opacity: 0%;
    border: none;
    outline: none;
    border-radius: 15px;
    font-family: MontserratM;
    font-size: 14px;
    padding: 5px 25px 5px 15px;
    text-align: center;
    cursor: pointer;
    /* z-index: 1; */
    transition: 300ms;
}

#select:hover {
    background-color: rgba(136, 136, 136, 0.712);
}

.center .select {
    visibility: visible;
    opacity: 100%;
}

#divLeft, #divRight {
    width: 17vw;
    border-radius: 15px;
    position: absolute;
    cursor: pointer;
    z-index: 1;
}

#divLeft {
    left: 0px;
    padding: 25% 0 15% 20px;
    text-align: left;
}

#divRight {
    right: 0px;
    padding: 25% 20px 15% 0;
    cursor: pointer;
    text-align: right;
}

#divLeft:hover {
    background-image: linear-gradient(to right, rgba(136, 136, 136, 0.712), rgba(136, 136, 136, 0));
}

#divRight:hover {
    background-image: linear-gradient(to right, rgba(136, 136, 136, 0), rgba(136, 136, 136, 0.712));
}