/* 상단 메뉴 버튼들  */
#upContent{
    position: absolute;
    width: 100%;
    height: 40px;
    /*background-color:#f3f3f3;*/
}

.upContent_button {
    position:absolute;
    cursor: pointer;
    height: 36px;
    width: 36px;
    top: 2px;
    border-radius: 20px;
    transition: all 0.1s ease-out;
    transform: translateX(-50%);
}
.upContent_button:hover {
    background-color: rgba(189, 189, 189, 0.425);
}

.upContent_button:active {
    background-color: rgba(189, 189, 189, 0.825);
}


.upContent_button2 {
    cursor: pointer;
    height: 36px;
    width: 36px;
    top: 2px;
    border-radius: 20px;
    transition: all 0.1s ease-out;
    transform: translateX(0%);
}
.upContent_button2:hover {
    background-color: rgba(189, 189, 189, 0.425);
}

.upContent_button2:active {
    background-color: rgba(189, 189, 189, 0.825);
}


.upContent_button_img {
    height: 20px;
    width: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    pointer-events: none;
}




.upContent_button_disable {
    position:absolute;
    height: 36px;
    width: 36px;
    top: 2px;
    border-radius: 20px;
    transform: translateX(-50%);
    transition: all 0.1s ease-out;
}



/* 다른메뉴  */
.upContent_menu{
    display: none;
    opacity: 0;
    font-family: 'Pretendard';
    position: absolute;
    width: 300px;
    height: 450px;
    top: 46px;
    right: 6px;
    background-color: #ffffff;
    box-shadow:5px 5px 10px #797979;
    border-radius: 15px;
}


.upContent_menu_button_left{
    position: absolute;
    border-radius: 10px;
    width: 100px;
    height: 100px;
    background-color: rgba(184, 184, 184, 0);
    cursor: pointer;
    transition: all 0.1s ease-out;
}

.upContent_menu_button_right{
    position: absolute;
    border-radius: 10px;
    width: 100px;
    height: 100px;
    background-color: rgba(184, 184, 184, 0);
    cursor: pointer;
    transition: all 0.1s ease-out;
}


.upContent_menu_button_left:hover {
    background-color: rgba(196, 196, 196, 0.815);
}


.upContent_menu_button_right:hover {
    background-color: rgba(196, 196, 196, 0.815);
}

.upContent_menu_button_text
{
    font-size: 18px;
    color: black;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 65%;
    vertical-align: middle;
}


.upContent_menu_button_img{
    position: absolute;
    left: 22px;
    top: 6px;
    width: 56px;
    height: 56px;
}
