body {
    font-family: Arial,Helvetica,sans-serif
}

* {
    box-sizing: border-box
}

.open-button-imple {
    margin-bottom: 10px;
    margin-right: 25px;
    cursor: pointer;
    position: fixed;
    bottom: 3px;
    right: 3px;
    width: 50px;
    height: 50px;
}
.open-button-imple:hover{
    opacity: .8;
}

@media screen and (max-width: 400px ) {

    .chat-popup-ortus {
        width: 300px !important;
    }
}

.slide-top-ortus {
    -webkit-animation: slide-top-ortus 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top-ortus 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-top-ortus {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}
@keyframes slide-top-ortus {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

.chat-popup-ortus {
    z-index: 2147483000;
    position: fixed;
    right: 10px;
    width: 396px;
    min-height: 270px;
    bottom: -90px;
    max-height: 724px;
    overflow-y: auto;
    opacity: 1;
    height: calc(100% - 100px);
    /* border-radius: 10px; */
    display: none;
    overflow-x: hidden;
    border:none;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px; */
    padding: 20px;
    transition: all 1s linear;
}

#ortus4c_iframe iframe {
    box-shadow: 0 -1px 20px rgba(0,0,0,.16);
    border-radius: 10px;
}

.ortus-chat-widget-top-icons {
    float: right;
    margin-bottom: 3px;
}

.ortus-widget-top-icon-close {
    background: #00000075;
    border-radius: 10px;
    outline: 0;
    border: 0;
    /* padding: 6px 10px; */
    width: 35px;
    height: 25px;
    background-image: url(https://ortus-cdn.nyc3.digitaloceanspaces.com/app/centros4c/widget/down-chevron.png);
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    opacity: 0.8;
    transition: all 200ms linear;
    cursor: pointer;
}

.ortus-widget-top-icon-resize {
    background: #00000075;
    border-radius: 10px;
    outline: 0;
    border: 0;
    /* padding: 6px 10px; */
    width: 35px;
    height: 25px;
    background-image: url(https://ortus-cdn.nyc3.digitaloceanspaces.com/app/centros4c/widget/resize.png);
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    opacity: 0.8;
    transition: all 200ms linear;
    cursor: pointer;
}

.ortus-widget-top-icon-resize:hover, .ortus-widget-top-icon-close:hover {
    opacity: 1; 
}