@charset "utf-8";

#modelSelectBtn {}
#modelSelect_wrapper select {
    margin: 20px;
    font-size: 16px;
    color: #555;
}
.modalBg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.7);
}
.modalBox {
    position: fixed;
    z-index: 2000;
    display: none;
    width: 80%;
    max-width: 840px;
    max-height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 20px 2vw;
    border: 2px solid #aaa;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
.modalClose {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    background: url("../images/common/close.png") no-repeat center center;
    background-size: cover;
    cursor: pointer;
}
.modalBox h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 0px;
}
.modalBox select {
    width: 30%;
    font-size: 14px;
    margin: 12px auto;
    padding: 4px 8px;
    border: none;
    outline: none;
    border-bottom: solid 1px #ccc;
}
.modalBox .products {
    position: relative;
    cursor: pointer;
    text-align: center;
    margin-bottom: 12px;
}
.modalBox .products a {
    color: #575757;
    text-decoration: none; 
}
.modalBox .products a:hover {
    color: #575757;
    text-decoration: underline; 
}
.modalBox .productName {
    position: relative;
    cursor: pointer;
    text-align: center;
    color: #575757;
    text-decoration: none;
    font-size: 14px;
}
@media only screen and (max-width: 640px) {
    .modalBox {
        width: 90%;
        max-height: 80%;
    }
    .modalBox select {width: 60%;}
    .modalBox .products {max-width: 40%;}
}
