/*Lightbox css starts here*/
@media only screen and (min-width: 320px) {
    #lightbox {
        display: none;
        position: absolute;
        top: 0px;
        left: 0px;
        min-width: 100%;
        min-height: 100%;
        z-index: 1000;
    }

    .lightbox-div {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        background: rgba(0,0,0,0.7);
        width: 100%;
        height: 100vh;
        z-index: 100000;
        margin: 0;
        padding: 0;
    }

    .lightbox-container {
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

#lightbox-panel {
    width: 400px;
    height: 170px;
    background: #FFFFFF;
    padding: 10px 15px 10px 15px;
    z-index: 1001;
    border-radius: 5px;
    position: relative;
}

.close-icon a {
    text-decoration: none;
    color: #696969;
    font-size: 16px;
}

#clickbtn {
    display: block;
    width: 130px;
    height: 42px;
    background-color: #51aae8;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    margin-top: 25px;
    align-content: center;
    justify-content: center;
}

#click-button a {
    text-decoration: none;
    text-align: center;
    padding-top: 12px;
}

.lightbox-content {
    margin-top: 40px;
}

    .lightbox-content h2 {
        color: #666666
    }

.close-icon {
    position: absolute;
    right: 10px;
}
/*Lightbox css ends here*/
