﻿
.fa-search {
    float: left;
    width: 40px;
    height: 40px;
    padding: 0px;
    /*background: #2196F3; */
    color: white;
    font-size: 14px;
    border: 1px solid grey;
    border-left: none; /* Prevent double borders */
    cursor: pointer;
    background: url( "/img/searchw.png" ) no-repeat;
    vertical-align: middle;
}

    .fa-search:hover {
        background: url( "/img/searchw2.png" ) no-repeat;
    }

.pagenumber {
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 1.1em;
    font-weight: 400;
    color: #7e7e7e !important;
}

.pagenow {
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    color: #2069de !important;
    text-decoration: underline !important;
}

.page_box {
    padding: 10px 0px 20px;
}

.alinkbtn {
    color: #d26309;
}

    .alinkbtn:hover {
        color: #ff180d;
        font-weight: 600;
    }

/* 회원 사진 팝업 */

.mpoverlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

    .mpoverlay:target {
        visibility: visible;
        opacity: 1;
    }

.photopopup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
}

    .photopopup .photoclose {
        position: absolute;
        top: 20px;
        right: 30px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: red;
    }

        .photopopup .photoclose:hover {
            color: #f6ac43;
        }

    .photopopup .photocontent {
        max-height: 30%;
        overflow: auto;
    }

@media screen and (max-width: 700px) {
    .photopopup {
        width: 60%;
    }
}


/* 회원 사진 팝업 끝 */


