.level_contener > .header{
    background: -moz-linear-gradient(top, rgba(243, 135, 42, 1) 0%, rgba(206, 115, 35,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243, 135, 42,1)), color-stop(100%,rgba(206, 115, 35,1)));
    background: -webkit-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(243, 135, 42,1) 100%);
    background: -o-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: -ms-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: linear-gradient(to bottom, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    color: rgba(0, 0, 0, 0.7);
}

.level_contener > .content{
    display: flex;
    flex-flow: row;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px;
}

.level_contener > .content > .an_level{
    display: block;
    width: 40%;
    min-height: 60px;
    height: 60px;
    line-height: 60px;
    margin: 20px;
    margin-bottom: 90px;
    padding: 0px;
    background: red;
    border-radius: 30px;
}

.level_contener > .content > .header_view > .content{
    min-height: 60px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
    font-weight: bold;
    font-style: italic;
    padding-bottom: 0px; 
    padding-top: 0px;
}


@media all and (max-width: 450px){
    .level_contener > .content > .an_level{
        width: 100%;
        margin: 5px;
        margin-bottom: 20px;
        min-height: 50px;
        height: 50px;
        line-height: 50px;
    }
    
    
    .level_contener > .content > .header_view > .content{
        min-height: 50px;
        height: 50px;
        line-height: 50px;
    }
}
