﻿.camp_holder {
    width: 100%;
    height: 100%;
    position: fixed;
    display: block;
    margin: 0px;
    padding: 0px;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9999;
    box-sizing: border-box;
    padding: 50px 20px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
}

.camp_box {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    margin: 0 auto;
}

.camp_container {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    z-index: 99;
}

    .camp_container img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        position: relative;
        display: block;
        border: none;
    }

.camp_closer {
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    right: -20px;
    top: -20px;
    box-sizing: border-box;
    border: 3px solid white;
    background-color: #1A1A1A;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    z-index: 9999;
}
