﻿.st-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 250;
    background-color: rgba(60, 60, 60, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .st-modal.lateral {
        display: flex;
        justify-content: end;
        align-items: center;
        flex-direction: row;
    }

    .st-modal.show {
        opacity: 1;
        visibility: visible;
    }



.ct-modal-lateral {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    background-color: white;
    display: block;
    flex-direction: column;
    padding-top: 10px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    transition: 0.5s;
    right: 0;
    animation: slideInFromRight .7s forwards;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 2px;
    padding-bottom: 160px;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
}

    .ct-modal-lateral.tipo-1 {
        max-width: 600px;
    }
    .ct-modal-lateral.tipo-2 {
        max-width: 900px;
    }

    .ct-modal-lateral.hide {
        animation: slideOutToRight .7s forwards;
    }


@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.ct-modal-central {
    max-height: 100%;
    max-width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    border-radius: 5px;
    padding: 20px;
    position: relative;
}

    .ct-modal-central.tipo-user-config{
        height:90%;
        max-height:600px;
        width:90%;
        max-width:800px;
    }

    .ct-modal-central.tipo-1 {
        height: 600px;
        width: 80%;
        max-width: 700px;
        background-color: white;
    }

    .ct-modal-central.tipo-2 {
        height: 90%;
        width: 90%;
        max-width: 90% !important;
        max-height: 90% !important;
    }



    .ct-modal-central.tipo-5 {
        height: auto;
        width: 600px;
        max-width: 90% !important;
        max-height: 70% !important;
    }


    .ct-modal-central.tipo-6 {
        height: 600px;
        width: 80%;
        max-width: 900px;
        background-color: white;
    }

    .ct-modal-central.tipo-7 {
        height: auto;
        width: 700px;
        max-width: 90% !important;
        max-height: 70% !important;
        padding-bottom:40px;
    }


.ct-modal-info {
    height: auto;
    width: 80%;
    max-width: 450px;
    min-height: 150px;
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    border-radius: 5px;
    padding: 20px;
    position: relative;
}


.ct-modal-upload {
    height: auto;
    width: 80%;
    max-width: 550px;
    min-height: 150px;
    max-height:550px;
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    border-radius: 5px;
    padding: 20px;
    position: relative;
}

.ct-modal-info.padding-btns{
}


.ct-componentes {
    box-sizing: border-box;
    height: calc(100% );
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 10;
    padding-bottom: 80px;
    padding-right: 20px;
}

.row-default.modal-info{

}

    .row-default.modal-info h1 {
        font-size: 20px;
    }

    .row-default.modal-info h2 {
        color:rgba(51, 51, 51, 0.8);
    }

    .row-default.modal-info img{
        height:18px;
        margin-left:10px;
    }

.row-default.ct-modal-btn {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: row;
    padding-left: 10px;
    z-index: 12;
    background-color: white;
    z-index: 100;
}


.img-modal-info-loading{
    height:30px;
    width:auto;
}
