.sun-editor-editable {
    background-color: #fff0 !important;
    padding: 0 !important;
}

.sun-editor-editable p {
    color: #8c8c8c !important;
}

html body .footer {
    margin-top: 50px;
    position: relative;
}

.subpage-error {
    margin-bottom: 70px;
}

html body.homepage {
    margin-bottom: 0 !important;
}

.ContactMessage {
    color: #ff0617;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 5%;
}

.blog__item-img img {
    width: 100% !important;
    height: auto !important;
}

.header-bg {
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

html body .slider__slide-img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}


/*POPUP SLIDE*/
.popup-info {
    position: absolute;
    z-index: 1000;
    right: 0;
    font-size: 12px;
    /* max-width: 350px;
    width: 100%; */
    width: 300px;
    min-height: 80px;
    background: white;
    border-radius: 50px;
    bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.35s ease;
}
#popupDesktop{
    animation-name: popupSlide;
    animation-duration: 1s;
    animation-delay: 1s;
    right: -999px;
    animation-fill-mode: forwards;
}
@media screen and (max-width: 767px){
    .popup-info {
        right: -231px;
        bottom: inherit;
        top: 200px;
    } 
    #popupMobile{
        display: flex;
    }
}

@keyframes popupSlide {
    from {right: -999px;}
    to {right: 0;}
}

.popup-icon {
    width: 30%;
    text-align: center;
}

.popup-icon img {
    width: 40px;
}

.popup-content{
    width: 70%;
    padding: 10px 15px 10px 0px;
}

.popup-content span {
    color:#b7b7b7;
}

.popup-cancel {
    cursor:pointer;
    width: 20%;
    justify-items: center;
    text-align: left;
    font-size: 18px;
}

.popup-cancel img {
    width: 17px;
}