/* Ids*/
.item_container {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

#button_grade {
    margin-left: 50px;
}

@media (max-width: 432px) {
    #button_grade {
        margin: auto !important;
        padding: 10px !important;
    }
}

@media (max-width: 1024px) {
    #title_index_logued_in {
        text-align: center;
    }
}

.btn_video {
    background: var(--primary_1_2);
    left: 163px;
    top: 756px;
}

.tag_background {
    background-color: var(--primary_1);
    padding: 10px;
    border-radius: 8px;
    color: var(--primary_1_5);
}

.backgroun_image_div {
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn’t tile */
    background-repeat: no-repeat;
    /* This is what makes the background image rescale based
    on the container’s size */
    background-size: contain;
    /* Set a background color that will be displayed
    while the background image is loading */
    background-color: white;
    height: 600px;
}

@media (max-width: 1024px) {
    .backgroun_image_div {
        /* Background image is centered vertically and horizontally at all times */
        background-position: center center;
        /* Background image doesn’t tile */
        background-repeat: no-repeat;
        /* This is what makes the background image rescale based
        on the container’s size */
        background-size: contain;
        /* Set a background color that will be displayed
        while the background image is loading */
        background-color: white;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .backgroun_image_div {
        /* Background image is centered vertically and horizontally at all times */
        background-position: center center;
        /* Background image doesn’t tile */
        background-repeat: no-repeat;
        /* This is what makes the background image rescale based
        on the container’s size */
        background-size: contain;
        /* Set a background color that will be displayed
        while the background image is loading */
        background-color: white;
        height: 400px;
    }
}

@media (max-width: 720px) {
    .backgroun_image_div {
        /* Background image is centered vertically and horizontally at all times */
        background-position: center center;
        /* Background image doesn’t tile */
        background-repeat: no-repeat;
        /* This is what makes the background image rescale based
        on the container’s size */
        background-size: contain;
        /* Set a background color that will be displayed
        while the background image is loading */
        background-color: white;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .backgroun_image_div {
        /* Background image is centered vertically and horizontally at all times */
        background-position: center center;
        /* Background image doesn’t tile */
        background-repeat: no-repeat;
        /* This is what makes the background image rescale based
        on the container’s size */
        background-size: contain;
        /* Set a background color that will be displayed
        while the background image is loading */
        background-color: white;
        height: 300px;
    }
}


.white_title {
    color: white;
}

/*--------- redesign_modulo_estudiante ----------*/

.card_mod_student {
    display: flex;
    flex-direction: column;
    /*margin: 10px 4px;*/
    transition: .3s ease;
    /*width: 270px;*/
    /*border-radius: 16px;*/
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
}

.card_mod_student:hover {
    transform: scale(0.9);
}

.card_style_student {

}

@media (min-width: 1025px) {
    .activate_search {
        visibility: hidden;
    }
}

@media (max-width: 1024px) {
    .activate_search {
        visibility: visible;
    }
}

.card_style {
    color: var(--secondary_1);
}

.profile_style {
    font-size: 2rem
}

/* WARNING */
/*.alert>.start-icon {*/
/*    margin-right: 0;*/
/*    min-width: 20px;*/
/*    text-align: center;*/
/*}*/

/*.alert>.start-icon {*/
/*    margin-right: 5px;*/
/*}*/

/*.alert:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 0;*/
/*    height: calc(100% - 44px);*/
/*    border-left: 1px solid;*/
/*    border-right: 2px solid;*/
/*    border-bottom-right-radius: 3px;*/
/*    border-top-right-radius: 3px;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    transform: translate(0,-50%);*/
/*      height: 20px;*/
/*}*/

.bottom_change {
    background-color: var(--primary_5_3);
    color: var(--primary_5_2);
    border: 1px solid var(--primary_5_2);
    font-size: 1.25rem;
}

.bottom_change:hover {
    box-shadow: 0 0 2px var(--primary_5);
    color: var(--primary_5);
    border: 1px solid var(--primary_5);
}

.alert-simple.alert-warning {
    border: 1px solid var(--primary_5_2);
    box-shadow: 0 0 2px var(--primary_5);
    color: var(--primary_5_2);
    transition: 0.5s;
    cursor: pointer;
}

.alert-warning:hover {
    border: 1px solid var(--primary_5);
    color: var(--primary_5);
    box-shadow: 0 0 2px var(--primary_5);
    background-color: #fff3cd;
    transition: 0.5s;
    /*text-decoration: underline;*/
}