/* Wrapper with fixed height */
.contpo-wrapper {
    position: relative;
    height: 200px;
}

/* Contact button base style */
.contpo-button {
    position: absolute;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Popover container style */
.contpo-popover {
    border: 1px solid #ccc;
    padding: 40px;
    border-radius: 5px;
    background-color: #f1ebeb;
    max-width: 600px;
    
}

/* Close button inside popover */
.contpo-close-btn {
    margin-top: 10px;
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Positioning styles */
.contpo-pos-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contpo-pos-bottom {
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
}

.contpo-pos-left {
    top: 10%;
    left: 0;
    transform: translateY(-50%);
}

.contpo-pos-right {
    top: 10%;
    right: 0;
    transform: translateY(-50%);
}




/* Button positioning styles */

/* Position the button at the top */
.contpo-pos-top {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

/* Position the button at the bottom */
.contpo-pos-bottom {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

/* Position the button on the left side */
.contpo-pos-left {
    position: absolute;
    top: 10%;
    left: 0%;
    transform: translateY(-50%);
}

/* Position the button on the right side */
.contpo-pos-right {
    position: absolute;
    top: 10%;
    right: 0%;
    transform: translateY(-50%);
}




