/**
* General style
*/

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

/**
* Popup Wrap
*/

@media (max-width:768px) {
    .popup-wrap {
        content: "";
        background-color: rgba(0, 0, 0, .8);
        /* top: 84px; */
        left: 0;
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 999999;
        border: 0px solid #ffffff;
        /* background-color: white; */
    }
    .popup-return {
        /*position: fixed; */
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 13px;
        color: #fff;
        width: auto;
        /* height: auto; */
        /* background-color: #fff; */
        /* padding: 15px; */
        border: #fff solid 16px;
    }
}

@media (min-width:768px) {
    .popup-wrap {
        content: "";
        background-color: rgba(0, 0, 0, .8);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 999999;
    }
    .popup-return {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        color: #fff;
        width: 750px;
        height: 465px;
        background-color: #fff;
        padding: 15px;
        border: #fff solid 5px;
    }
}

/**
* Popup Box
*/

.pop_img {
    float: left;
    margin-top: 8px
}

/**
* Popup Header
*/

.popup-header {
    margin-top: 20px;
    box-shadow: 0 3px 6px -6px black;
}

h2 {
    text-align: center;
    font-size: 25px;
    color: #fff;
}

/**
* Popup description
*/

.popup-description {
    margin-left: 60px;
}

/**
* Popup data
*/

.popup-data {}

.popup-data label {
    display: inline-block;
    width: 60px;
}

.popup-data input {
    display: inline-block;
    width: 100%;
}

/**
* Popup Send button
*/

.send-button {
    margin-top: 10px;
}

.send-button input {
    float: right;
    width: 120px;
    height: 40px;
    background-color: #222;
    border: 1px solid #666;
    color: #fff;
    padding-top: 3px;
}

.send-button input:hover {
    background-color: #000;
    border: 1px solid #000;
}

/**
* Popup Close
*/

.close a {
    color: #fff !important
}

.close {
    cursor: pointer;
    color: #000;
    height: 40px;
    line-height: 30px;
    position: absolute;
    right: 38px;
    text-align: center;
    text-decoration: none;
    top: 31px;
    width: 30px;
}

.close:hover {
    color: #fff;
}