.IntroTable__Section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.IntroTable__Section--Reverse { 
    flex-direction: column-reverse; 
}

.IntroTable__Intro {
    display: flex;
    flex-direction: column;
}

.IntroTable__Selects, 
.IntroTable__Intro {
    width: 100%;
}

.IntroTable__Intro > * + *,
.IntroTable__Section > * + *{
    margin-top: 2rem;
}

.IntroTable__Info {
    display: flex;
    flex-direction: column;
}

.IntroTable__SelectsWrapper { 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.IntroTable__SelectsWrapper > * + * {
    margin-top: 1rem;
}

.IntroTable__ModalActivity{
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.IntroTable__ModalCancel {
    margin-bottom: 2rem;
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .IntroTable__Intro { 
        flex-direction: row;

        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }

    .IntroTable__SelectsWrapper {  
        flex-direction: row; 
    }

    .IntroTable__SelectsWrapper > * + * {
        margin-top: 0rem; 
    }

    .IntroTable__SelectsWrapper > * { 
        margin-right: 2rem;
    }

    .IntroTable__Title {
        flex: 1 0 40%;
    }

    .IntroTable__Checkbox {
        flex: 1 0 60%;
    }

    .IntroTable__Intro > * + *{
        margin-top: 0rem;
    }
}

@media only screen and (min-width: 1200px) {

    .IntroTable__Section {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .IntroTable__Section--Reverse { 
        flex-direction: row;
    }

    .IntroTable__Intro,
    .IntroTable__Selects { 
        flex: 1 0 50%;
    }

    .IntroTable__Section > * + *{
        margin-top: 0rem;
    }

    .IntroTable__ModalCancel {
        margin-bottom: 0;
    }

}