#simple-cf7-popup {
    position: fixed;
    bottom: 30px;
   
    right: 0px;
    width: 413px;
    z-index: 9998;
    margin: 0px;
    opacity: 1;
    background-color: #fff;
    color: var(--blue);
    scrollbar-width: thin;
    scrollbar-color: #fff var(--blue);
    border-top-left-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0px;
    box-shadow: 0px 8px 16px 0px #00000029;
    transition:all 0.5s ease-in-out;
    transform-style: preserve-3d;
    transform-origin: right;
    transform: rotateY(0.75turn);
}

#simple-cf7-popup.show {
    transform: rotateY(0turn);
}


#simple-cf7-popup h2 {
    font-size: 1.9rem;
}

#simple-cf7-popup-content {
    width: 100%;
    position: relative;
    padding: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.simple-cf7-popup-content-thumbnail {
    border-top-left-radius: 8px;
}

.simple-cf7-popup-content-thumbnail img { 
    width:100%;
    object-fit:cover;
    height:380px;
    border-top-left-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.visitor-pen-image {
    width:150px;
    position:absolute;
    top:0;
}

.simple-cf7-popup-content-title {
    padding: 0px 15px 20px;
}

.simple-cf7-popup-content-title img {
    position:relative;
    top:-3px;
    width:24px;
    height:24px;
}

.simple-cf7-popup-content-title h4 {
    margin-bottom:0px;
}

#simple-cf7-popup-content a {
   text-decoration:none;
}

.simple-cf7-popup-content-category {
    position:relative;
    padding:10px 24px;
    color:#fff;
    bottom:32px;
    text-transform:uppercase;
    font-size:16px;
    text-align:center;
    border-top-right-radius:4px;
}

#simple-cf7-popup #simple-cf7-popup-close {
    cursor: pointer;
    color: #fff;
    background-color:var(--blue);
    padding:8px 12px;
    position:absolute;
    z-index:9999;
    box-shadow: 0px 8px 16px 0px #00000029;
    border-radius:8px;
    right: 10px;
    top: -19px;
    transition:all .1s linear;
}

#simple-cf7-popup #simple-cf7-popup-close:hover {
    right: 7px;
}

#simple-cf7-popup-toggle {
    background-image: url('../icon-chat.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    bottom: 12px;
    right: 12px;
    background-color: var(--blue);
    cursor: pointer;
    transition: all 300ms ease-in-out;
    z-index: 99;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #313131;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    #simple-cf7-popup-toggle {
        background-size: 25px 25px;
        width: 50px;
        height: 50px;
    }
}


@media (min-width: 1200px) {}

@media (min-width: 1400px) {}