/*
** Fonts
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
/*
** Boot
*/
*{
    box-sizing: border-box;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background: #eeeeef;
}
h1{
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 800;
    /* color: #961914; */
    color: #e0222a;
    text-align: center;
}
h2{
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #29292a;
    text-align: center;
}
/*
** Helpers
*/
.mp-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mp-col{
    width: 100%;
}
.mp-nopadding{
    padding: 0!important;
}
.mp-padding{
    padding: 40px 0;
}
.mp-text-center{
    display: block;
    text-align: center;
}
.button-primary{
    display: table;
    padding: 15px 20px;
    background: #961914;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    margin: 20px auto 0 auto;
}
/*
** Grid
*/
.mp-grid{
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}
/*
** Header
*/
.mp-header{
    padding: 29px 0;
    /* background: #961914; */
    background: #e0222a;
}
.mp-header .mp-grid .mp-col:first-child{
    max-width: 190px; /* Header logo width */
}
.mp-header .mp-grid .mp-col:last-child{
    max-width: 530px; /* Form search width */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.mp-header-logo{
    display: block;
    width: 190px;
}
/*
** Menu
*/
.mp-menu ul{
    display: flex;
}
.mp-menu a,
.mp-menu-link{
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    margin-left: 20px;
    display: block;
    transition: all ease .3s;
}
.mp-menu a:hover, .mp-menu a:focus,
.mp-menu-link:hover, .mp-menu-link:focus{
    color: #febf10;
}
.mp-menu-bar ul.sub-menu{
    display: none;
    position: absolute;
    background: #3a0b09f0;
    width: 295px;
    z-index: 999999;
}
.menu-item-has-children:hover ul.sub-menu{
    display: block;
}

/*
** Form Search
*/
.mp-form-search{
    width: 100%;
    max-width: 300px;
}
.mp-form-search input{
    display: block;
    width: 100%;
    height: 40px;
    padding: 10px;
    border: solid 2px #d8d8d8;
    background: #fff;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    color: #000;
    opacity: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}
.mp-form-search .mp-form-line{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mp-form-search button{
    border-radius: 4px;
    border: solid 2px #febf10;
    padding: 6px 22px;
    background: none;
    font-size: 18px;
    color: #febf10;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    outline: none;
    transition: all ease .3s;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
/*
** Content
*/
.mp-content{
    padding: 40px 0;
}
.mp-content-cols{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}
.mp-content-col.mp-col-login{
    padding: 0px 30px;
    width: 100%;
    max-width: 490px;
    margin: 30px auto;
}
.mp-content-col{
    background: #fff;
    border-radius: 3px;
    padding: 50px 30px;
    width: 100%;
}
.mp-content-cols .mp-content-col:first-child{
    width: 70%;
}
.mp-content-cols .mp-content-col:last-child{
    width: 27%;
}
/*
** Cards
*/
.linkseo{
    cursor: pointer;
}
.mp-cards{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.mp-cards.mp-cards-list{
    display: block;
}
.mp-cards.mp-cards-list .mp-card{
    max-width: 100%;
    height: auto;
    overflow: initial;
    border: none;
}
.mp-cards-details.mp-cards-list .mp-card-header img.by-height,
.mp-cards-details.mp-cards-list .mp-card-header img.by-width{
    position: relative;
    transform: none;
    max-width: 100%;
    height: auto;
}
.mp-cards-details.mp-cards-list .mp-card-header{
    overflow: initial;
    height: auto;
}
.mp-cards-list .mp-card-body{
    padding: 20px 0;
}
.mp-cards-list .mp-card-footer{
    padding: 10px 0;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
}
.mp-cards-list .mp-card-footer a:first-child{
    display: none;
}
.mp-cards-list .mp-card-footer a{
    padding: 15px 77px;
    font-size: 16px;
}
.mp-cards-details.mp-cards-list .mp-card-header{
    order: 2;
}
.mp-cards-list .mp-card-body{
    order: 1;
}
.mp-cards-list .mp-card-footer{
    order: 3;
}
.mp-cards-list .mp-card-body h2{
    min-height: initial;
}
.mp-card{
    width: 100%;
    max-width: calc(90%/4);
    background: #fff;
    box-shadow: 0px 6px 28px -3px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    margin: 20px 1%;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mp-card-header img{
    display: block;
    width: 100%;
    height: auto;
}
.mp-card-body{
    padding: 20px;
}
.mp-card-body h2{
    font-size: 18px;
    font-weight: 700;
    color: #353535;
    margin-bottom: 10px;
    min-height: 36px;
    text-align: left;
}
.mp-card-body h2 a{
    color: inherit;
    text-decoration: none;
}
.mp-card-body p{
    font-size: 16px;
    color: #353535;
    line-height: 1.4;
}
.mp-card-footer{
    font-size: 14px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mp-card-rating .fas{
    color: #febf10;
}
.mp-card-tag{
    background: #1f1f1f;
    padding: 3px 7px;
    border-radius: 3px;
    color: #fff;
    display: block;
    width: 97px;
}
.mp-card-footer a{
    display: inline;
    padding: 5px 7px;
    background: #29292a;
    color: #fff;
    text-decoration: none;
}
/*
** Aside
*/
.mp-aside-meta img{
    display: block;
    width: 100%;
    height: auto;
}
.mp-aside-meta-info{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.mp-aside-meta-info .fas{
    color: #febf10;
}
.aside-meta-info-tag{
    background: #1f1f1f;
    padding: 3px 7px;
    border-radius: 3px;
    color: #fff;
    display: block;
    width: 97px;
}
.mp-aside-authors{
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    background: #eeedef;
    border-radius: 3px;
}
.mp-aside-author{
    padding: 5px 0;
    line-height: 1.4;
}
.mp-aside-author-category{
    font-weight: 600;
    display: block;
}
.mp-aside-content{
    margin-top: 20px;
}
.mp-aside-content h2{
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #29292a;
    text-align: left;
}
.mp-aside-content p{
    line-height: 1.4;
    font-size: 16px;
}
.mp-cards-details .mp-card{
    max-width: calc(90%/3);
    overflow: hidden;
    box-shadow: none;
    border: solid 1px #eeecef;
}
.mp-cards-details .mp-card-header{
    position: relative;
    overflow: hidden;
    height: 210px;
}
.mp-cards-details .mp-card-header img{
    position: absolute;
    left: 0;
    transform: none;
}
.mp-cards-details .mp-card-header img.by-width{
    width: 100%;
    height: auto;
}
.mp-cards-details .mp-card-header img.by-height{
    height: 100%;
    width: auto;
}
.control-view{
    font-size: 13px;
}
.control-view-mode-mini,
.control-view-mode-list{
    display: inline-block;
    padding: 9px 7px;
    color: #000;
    margin: 0 3px;
    cursor: pointer;
    transition: all ease .3s;
    background: #eeeeef;
    min-width: 100px;
    text-align: center;
}
.control-view-mode-mini:hover,.control-view-mode-mini:focus,.control-view-mode-mini.current,
.control-view-mode-list:hover,.control-view-mode-list:focus,.control-view-mode-list.current{
    background: #961914;
    color: #fff;
}
/*
** Rating
*/
.mp-rating{
    text-align: center;
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.mp-rating .fa-star{
    cursor: pointer;
}
.mp-rating .fas{
    color: #fdbf38;
}

/*
** Comments
*/
.mp-form-comment{
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    margin: 30px auto;
}
.mp-form-comment .mp-form-lines,
.mp-form-comment .mp-form-line{
    margin: 10px 0;
}
.mp-form-comment .mp-form-lines{
    display: flex;
    justify-content: space-between;
}
.mp-form-comment .mp-form-lines input{
    width: 48%;
}
.mp-form-comment input,
.mp-form-comment textarea {
    display: block;
    width: 100%;
    height: 40px;
    padding: 10px;
    border: solid 2px #d8d8d8;
    background: #fff;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    color: #000;
    opacity: 1;
}
.mp-form-comment textarea {
    height: 90px;
    resize: none;
}
.mp-form-comment button{
    border-radius: 4px;
    border: none;
    padding: 15px 22px;
    background: #febf10;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    outline: none;
    cursor: pointer;
    transition: all ease .3s;
}
.mp-comments .firstCommit{
    display: block;
    text-align: center;
}
.mp-comment{
    width: 100%;
    max-width: 550px;
    margin: 10px auto;
    border: solid 1px #d7d7d7;
    padding: 10px;
    border-radius: 3px;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
}
.mp-comment .remove {
    display: block;
    margin-top: 20px;
    text-align: right;
    color: red;
    font-size: 10px;
    text-decoration: none;
}
.mp-comment-col:first-child{
    width: 30px;
    margin-right: 10px;
    text-align: center;
}
.mp-comment-col:first-child img{
    display: inline;
}
.mp-comment-col:last-child{
    width: 100%;
}
.mp-comment strong{
    font-weight: 600;
    display: block;
    margin: 6px 0;
}
.mp-comment p{
    line-height: 1.4;
}
/*
** Admin Menu
*/
.mp-admin-menu{
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mp-menu-item{
    display: block;
    width: 170px;
    height: 170px;
    background: #fff;
    padding: 10px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0px 6px 28px -3px rgba(0, 0, 0, 0.15);
    margin: 30px;
}
.mp-menu-item a{
    text-decoration: none;
    display: block;
    margin: 10px auto;
    color: black;
}
/*
** Form
*/
.form{
    padding: 40px 0;
    max-width: 770px;
    margin: 0 auto;
}
.form label{
    display: block;
    margin-bottom: 10px;
}
.form input,
.form select,
.form textarea{
    display: block;
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: solid 2px #d8d8d8;
    background: #fff;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    color: #000;
    opacity: 1;
}
.form textarea{
    height: 150px;
    resize: none;
}
.form input.disabled,
.form select.disabled{
    background: #eeedef;
    cursor: not-allowed;
}
.form .form-line{
    margin: 10px 0;
}
.form button[type=submit]{
    border-radius: 4px;
    border: none;
    padding: 15px 22px;
    background: #febf10;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    outline: none;
    cursor: pointer;
    transition: all ease .3s;
}
.form button[type=button].btn-more{
    background: #980000;
    width: auto;
    margin: 0 auto;
    display: block;
}
.mp-img-field{
    text-align: center;
    background: #f1f1f1;
    padding: 10px;
}
.mp-img-field img,
.form-line img{
    display: block;
    width: 128px;
    height: auto;
    margin: 0 auto;
}
.form button[type=button]{
    border-radius: 4px;
    border: none;
    padding: 15px 22px;
    background: #282b31;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    outline: none;
    cursor: pointer;
    transition: all ease .3s;
    width: 100%;
    color: #fff;
}
.form fieldset{
    border: solid 1px #2d2e35;
    padding: 30px;
    border-radius: 3px;
}
.form legend{
    padding: 0 17px;
}
.field-midia{
    padding: 20px;
    background: #f9f9f9;
    border-radius: 3px;
    margin-bottom: 20px; 
    position: relative;
}
.field-midia a.remove{
    padding-top: 7px;
    background: #e02846;
    margin: 0 auto;
    display: inline-block;
    width: 30px;
    border-radius: 100%;
    color: #fff;
    height: 30px;
    text-align: center;
    position: absolute;
    top: -9px;
    right: -9px;
}
/*
** Table
*/
.mp-table{
    padding: 40px 0;
    max-width: 770px;
    margin: 0 auto;
}
.mp-tr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-bottom: solid 2px #d8d8d8;
    transition: all ease .3s;
}
.mp-td{
    text-align: center;
    width: 100%;
}
.mp-td span{
    font-size: 11px;
    color: #505050;
    display: block;
    margin-bottom: 3px;
}
.mp-tr .mp-td:first-child{
    text-align: left;
}
.mp-tr:hover,.mp-tr:focus{
    background: #eeedef;
}
.mp-tr:first-child{
    border-color: #000;
    font-weight: 600;
}
.mp-tr:first-child:hover,.mp-tr:first-child:focus{
    background: none;
}
.mp-table a{
    display: inline-block;
    border-radius: 4px;
    border: none;
    padding: 11px 18px;
    background: #febf10;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    outline: none;
    cursor: pointer;
    transition: all ease .3s;
    color: #000;
    text-decoration: none;
}

.message span{
    max-width: 770px;
    width: 100%;
    display: block;
    margin: 20px auto;
    padding: 20px;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 0;
}
.message span strong{
    font-weight: 800;
}
.mp-success{
    background: #008065;
}
.mp-alert{
    background: #febf10;
    color: #000;
}
.mp-error{
    background: #a73030;
}
/*
** Menu Bar
*/
.mp-menu-bar ul{
    display: flex;
    justify-content: center;
    /* background: #e0222a; */
    background: #e0222a;
}
.mp-menu-bar ul a{
    text-decoration: none;
    color: #fff;
    padding: 10px;
    display: block;
}
/*
** Responsivo
*/
.menu-mob{
    display: none;
}

/*Footer*/
.footer{
    display: block;
    height: 40px;
    width: 100%;
    /* background: #961914; */
    background: #e0222a;
}

iframe {
    margin: 0 auto;
    display: block;
}
@media (max-width: 1024px) {
    .mp-card{
        max-width: calc(90%/3);
    }
    
    .menu-mob select{
        display: block;
        width: 100%;
        height: 40px;
        border: none;
        border-radius: 6px;
        padding: 10px;
        outline: none;
    }
    .mp-content-cols .mp-content-col:last-child{
        width: 37%;
    }
    .mp-content-cols .mp-content-col:first-child{
        width: 60%;
    }
    .mp-cards-details .mp-card{
        max-width: calc(90%/2);
    }
    .mp-card-footer{
        flex-wrap: wrap;
    }
    .mp-card-footer a{
        text-align: center;
        margin-bottom: 10px;
        display: block;
        width: 100%;
        padding: 10px;
    }
    .mp-card-footer a:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 970px){
    .mp-menu-bar ul{
        display: none;
    }
    .menu-mob{
        display: block;
        /* background: #e0222a; */
        background: #e0222a;
        padding: 10px;
    }
}

@media (max-width: 840px){
    .mp-card {
        max-width: calc(90%/2);
    }
    .mp-header .mp-grid .mp-col:first-child{
        max-width: 100%;
    }
    .mp-header-logo{
        width: 190px;
        margin: 0 auto 20px auto;
    }
    .mp-header .mp-grid .mp-col:last-child{
        max-width: 100%;
    }
    .mp-form-search{
        max-width: 100%;
    }
    .mp-content-cols{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .mp-content-cols .mp-content-col:first-child{
        width: 100%;
    }
    .mp-content-cols .mp-content-col:last-child {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 700px) {
    iframe {
        width: 100%!important;
    }
}

@media (max-width: 670px){
    .mp-header .mp-grid{
        display: block;
    }
    .mp-admin-menu{
        display: block;
    }
    .mp-menu-item{
        margin: 30px auto;
        height: 150px;
        width: 100%;
    }
}

@media (max-width: 620px){
    .mp-card {
        max-width: 100%;
    }
    .mp-cards-details .mp-card {
       max-width: 100%;
    }
}

@media (max-width: 420px){
    .control-view span{
        display: block;
        margin: 10px 0;
    }
    .control-view{
        text-align: center;
    }
    .mp-form-comment .mp-form-lines{
        display: block;
    }
    .mp-form-comment .mp-form-lines input{
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    .mp-rating{
        font-size: 22px;
    }
    .mp-form-comment button{
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 100%;
    }
}

@media (max-width: 390px){
    .mp-header .mp-grid .mp-col:last-child{
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    .mp-menu a, .mp-menu-link{
        margin: 20px;
        margin-bottom: 0;
    }
}
