.dialog-full-screen {
    width: 100% !important; 
    max-width: 100% !important; 
    height: 100% !important; 
    max-height: 100% !important;
    display: table;
    top: -64px !important;
    position: absolute !important;
}

.dialog-full-screen > div:first-child {
    border-radius: 0px !important;
    height: 100% !important;
}

.dialog-image {
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2EBCC2;
    height: 100%;
    overflow: hidden;
}

.dialog-image img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
}

@media screen and (max-width: 768px){
    .dialog-full-screen .cont-buttons {
        padding:0px !important;
        display: flex !important;
    }
    .dialog-full-screen .cont-buttons > div,
    .dialog-full-screen .cont-buttons button {
        border-radius: 0px !important;
        margin-left: 0px !important;
        flex: 1;
        height: 50px !important;
        background-color: transparent !important;
        border: 1px solid  #c6c6c6 !important;
        color: rgb(46, 188, 194) !important;
        box-shadow: initial !important;
    }
    .dialog-full-screen .cont-buttons > button:first-child + div,
    .dialog-full-screen .cont-buttons > div:first-child + button {
        border-left:0px solid #c6c6c6 !important;
    }
    
    .dialog-full-screen .cont-buttons > div > button {
        border: 0px solid  #c6c6c6 !important;
    }
    .dialog-full-screen .cont-buttons button span {
        color: rgb(46, 188, 194) !important;
    }
    .dialog-image {
        display: none;
    }

}