﻿main {

}

.full_page{
    display:flex;
    width:100%;
    align-items:center;
    padding: 10px;
    padding-top: 80px;
    /*border:5px solid green;*/
}

.content_centered {
    width: 100%;
    background: white;
    max-height: 700px;
    height: 100%;
    flex-direction: row;
    display: flex;
    overflow: hidden;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.right {
    width: 100%;
    display: flex;
    flex-direction: column;
    position:relative;
    overflow:hidden;
}

.left {
    width: 600px;
    box-sizing: border-box;
    display: flex;
    position: relative;
    border-right: 1px solid rgba(14, 63, 126, 0.04);
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.right__header {
    display: flex;
    align-items: center;
    padding: 10px 40px 10px 40px;
}

.right__header img {
    max-width: 130px;
}

.right__header__help{
    width:100%;
    display:flex;
    flex-direction:row;
    grid-gap:10px;
    justify-content:end;
}

.right__header__help p:nth-child(1) {
    cursor: default;
}

.right__header__help p:nth-child(2){
    color: var(--color-700);
    font-weight:500;
    cursor:pointer;
}


.right_body {
    padding: 0px 40px 0px 40px;
    display: flex;
    align-items: center;
    box-sizing: content-box;
    height: auto;
    flex: 1;
    overflow: auto;
    z-index: 5;
    scrollbar-width: none;
}

.right__bottom {
    padding: 20px 50px 20px 50px;
    /*    background:red;*/
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    z-index: 5;
}

.ovex_backgorund {
    position: absolute;
    bottom: -400px;
    right: -370px;
    max-width: 700px;
    width: 100%;
}

.classForHiddenIntheStepOne {
    display: none;
}

.right__bottom__mobile_help{
    display:none;
}


@media (max-width: 650px) {
    .ovex_backgorund {
        bottom: -200px;
        right: -200px;
        z-index: 1;
    }
}


@media (max-width: 1050px) {

    /*aqui modifico los estilos globales
    param que se adapten al mobil*/
    input {
        width: 100% !important;
    }

    .row_inputs {
        flex-direction: column !important;
    }

    button {
        width: 100% !important;
    }

    .btn_icon {
        justify-content: center;
    }

    .input_box {
        width: 100%;
    }

    .full_page {
        padding-top: 70px !important;
        padding: 10px;
        box-sizing: border-box;
    }



    .content_centered {
        flex-direction: column;
        position: relative;
        max-height:100%;
    }

    .left {
        height: 60%;
        width: 100%;
        box-shadow: none;
    }

    .right {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        background: white;
        height: 50%;
        flex-direction: column;
        position: absolute;
        bottom: 0;
    }

    .right__header {
        display: none;
    }

    .right_body {
        padding: 10px;
    }

    .right__bottom {
        padding: 10px 20px 10px 20px;
        display: flex;
        flex-direction: column;
        min-height:70px;
        height: auto;
        z-index: 2;
        grid-gap: 20px;
        border-top: 1px solid #DDDDDD;
    }

    .btn_outline {
        justify-content: center;
    }

    .right__bottom__mobile_help {
        display: flex;
        grid-gap: 20px;
        justify-content: center;
        border-bottom: 1px solid #DDDDDD;
        align-items: center;
        height: 30px;
    }

    .right__bottom__mobile_help p:nth-child(1) {
        cursor: default;
    }

    .right__bottom__mobile_help p:nth-child(2) {
        color: var(--color-700);
        font-weight: 500;
        cursor: pointer;
    }

    .right__header {
        /*        background:red;*/
        height: 50px;
        z-index: 2;
    }

    .right__header img {
        display: none;
    }


    @media (max-width: 1050px) {
        .input-group {
            flex-direction: row;
            flex-wrap: nowrap;
        }

        .section__titles {
            display:none;
        }
    }
}