.cpp-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.cpp-popup-main {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.cpp-popup-main p {
    margin-bottom: 10px;
}
.cpp-popup {
    display: flex;
    align-items: stretch;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
    width: 80%;
}

.cpp-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
}

.cpp-left {
    padding: 40px 30px;
    width: 50%;
    box-sizing: border-box;
}
.cpp-full {
    padding: 40px 30px;
    width: 100%;
    box-sizing: border-box;
}
.cpp-left h2, .cpp-full h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    
}

.cpp-content {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.cpp-close {
    position: absolute;
    top: 2px;
    right: 2px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(233, 233, 233, 0.97);
    color: rgba(37, 37, 37, 0.7);
    padding: 6px 9px;
}
.cpp-btn {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    width: 100%;
    text-align: center;
}
.content_only .cpp-btn {
    width: auto;
}
.content_only .cpp-button-wrap {
    text-align: center;
}
.image_only img {
    cursor: pointer;
}
.image_only .cpp-full {
    padding: 0;
}

.cpp-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cpp-right {
    width: 50%;
    overflow: hidden;
}
