/* The container <div> - needed to position the dropup content */
.dropup {
    position: fixed;
    left: 10px;
    bottom: 30px;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
    width: 80px;
    height: 40px;
}

/* Dropup content (Hidden by Default) */
.dropup-content {
    display: none;
    position: absolute;
    bottom: 50px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 5px;
    /* min-width: 160px; */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropup */
/*
.dropup-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
*/

/* Change color of dropup links on hover */
/*
.dropup-content a:hover {
    background-color: #ddd
}
*/

/* Show the dropup menu on hover */
/*
.dropup:hover .dropup-content {
    display: block;
}
*/

/* Change the background color of the dropup button when the dropup content is shown */
/*
.dropup:hover .dropbtn {
    background-color: #2980B9;
}
*/

.dropup-content .imageButton {

    width: 70px;
    height: 35px;
    margin: 5px;
    /* margin-right: 5px; */
    
    background-size: cover;
    cursor: pointer;
    list-style: none;
    box-sizing: border-box;
}



.dropup-content #option1 {
    background-image: url("../resource/img/thumbnail/01.jpg");
}

.dropup-content #option2 {
    background-image: url("../resource/img/thumbnail/02.jpg");
}

.dropup-content #option3 {
    background-image: url("../resource/img/thumbnail/03.jpg");
}

.dropup-content #option4 {
    background-image: url("../resource/img/thumbnail/04.jpg");
}

.dropup-content #option5 {
    background-image: url("../resource/img/thumbnail/05.jpg");
}
.dropup-content #option6 {
    background-image: url("../resource/img/thumbnail/06.jpg");
}

.dropup-content #option7 {
    background-image: url("../resource/img/thumbnail/07.jpg");
}

.dropup-content #option8 {
    background-image: url("../resource/img/thumbnail/08.jpg");
}

.dropup-content #option9 {
    background-image: url("../resource/img/thumbnail/09.jpg");
}

.dropup-content #option10 {
    background-image: url("../resource/img/thumbnail/10.jpg");
}




/* 모바일 Device : 0 ~ 640 */
@media screen and (max-width: 640px) {}

/* Tablet Device : 641 ~ 768 */
@media screen and (min-width:641px) {

    .dropup {
        visibility: hidden;
    }
}

/* Desktop Device : 1024 이상 */
@media screen and (min-width:1024px) {

    .dropup {
        visibility: hidden;
    }
}
