* {margin: 0; padding: 0; box-sizing: border-box;}

body {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    background-color: #f5f5f5;

    box-sizing: border-box;
}

/** 
    generals
*/

::selection {
    background: purple;
    color: white;
}

.left {
    text-align: left;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.m0auto {
    margin: 0 auto;
}
/*
    scrollbar
*/

::-webkit-scrollbar {
    width: 12px;
    padding: 1px;
}
 
    /* El fons */
::-webkit-scrollbar-track {
    background: rgba(230,230,230,1); 
    /*-webkit-box-shadow: inset 0 0 12px rgba(0,0,0,1);*/
    /*box-shadow: inset 0 0 12px rgba(0,0,0,1);*/
    /*-webkit-border-radius: 3px*/
    /*border-radius: 3px;*/
}
 
    /* el que es mou */
::-webkit-scrollbar-thumb {
    /*-webkit-border-radius: 3px;*/
    /*border-radius: 3px;*/
    /*border: 1px solid rgba(0,0,0,1);*/
    background: rgba(67,67,67,0.2); 
    /*-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.4);*/
    /*box-shadow: inset 0 0 1px rgba(0,0,0,0.4); */
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(90,90,90,0.2);
    border: none;
}

/*
    Grid table
*/
.tb {display: table;}
.ro {display: table-row;}
.co {display: table-cell;}
.ch {display: table-cell;}

.va--tp {vertical-align: top;}
.va--md {vertical-align: middle;}
.va--bt {vertical-align: bottom;}

.ta--lt {text-align: left;}
.ta--cn {text-align: center;}
.ta--rg {text-align: right;}

.brick {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.block {
    display: block;
    margin: 0;
    padding: 0;
}
/*
    Capçalera
*/
header {
    height: 79px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #434343;
    color: white;
    
}

header .left { 
    padding-left: 26px;
    text-align: left; 
}
header .right { 
    padding-right: 26px;
    text-align: right; 
}
header .center {
    padding: 0 26px;
    text-align: center;
}

header .left .content,
header .center .content,
header .right .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
header .left .content {
    justify-content: flex-start;
}
header .center .content {
    justify-content: center;
}
header .right .content {
    justify-content: flex-end;
}

header .left .content img.logo {
    height: 30px;
}
header .left .content img.vertical_line {
    margin:0px 30px; 
}
header .left .content span.app_title {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

header .center .content span.app_title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #DED5C9;
}

header .right .content .menu_item {
    color: var(--mp-black-gray-2);
    font-size: 17px;
    padding: 0px 1rem;
    cursor: pointer;
}
header .right .content .menu_item.actiu {
    color: white;
}
header .right .content img.logo {
    height: 50px;
}

@media screen and (max-width: 680px) {
    header .center .content span.app_title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    header {
        height: auto;
        flex-direction: column;
        padding: 15px 5px;
    }
    header .left { 
        padding-left: 0px;
        text-align: center; 
    }
    header .center {
        margin: 10px 0;
    }
    header .right { 
        padding-right: 0px;
        text-align: center; 
    }
}

/*
    Contenidor principal
*/

main {
    margin-top: 59px;
    overflow: hidden;
    text-align: center;

    transition: margin 0.3s linear;
}

main div.wrapper_content {
    display: inline-block;
    margin: 0 auto;
    min-height: 100px;
    text-align: center;
}

/*
    Peu
*/

footer {
    height: 81px;

    max-width: 80%;
    margin: 40px auto 0px;

    border-top: 1px solid rgba(151,151,151,0.3);
}

.tb--footer {
    margin-top: 22px;
    width: 100%;
}

.link_to {
    opacity: 0.3;
    cursor: pointer;
    text-decoration: none;
}
.link_to:hover {
    opacity: 1;
}

span.text_peu,
span.text_peu--copyright {
    color: #363636;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 1.02px;
    vertical-align: middle;
    line-height: 16px;

    text-transform: uppercase;
}
span.text_peu--copyright {
    font-size: 17px;
    margin-left: 3px;
    margin-right: 3px;
}

span.text_peu--despresmp {
    margin-left: 35px;
}
span.text_peu--sepa {
    margin-left: 16px;
}

span.info,
span.info--white {
    font-weight: normal;
    font-size: 0.9rem;
    font-style: oblique;
}
span.info {
    color: #464646;
}
span.info--white {
    color: #fff;
}

.co--xsocials {
    padding-left: 35px;
}

a.xsocials {
    cursor: pointer;
    text-decoration: none;
}

a.xsocials img {
    margin-left: 5px;
    height: 26px;
    width: 26px;
}

.pot_de--mel {
    display: none;
}

.two_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.two_buttons > div {
    padding: 0 5px;
}