html{
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
*, :after, :before{
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.img-responsive, .img-fluid{
    max-width: 100%;
    height: auto;
}
.img-full{
    width: 100%;
    height: auto;
}
a, a:hover, a:focus, a:active{
    color: #000;
}
a:hover{
    text-decoration: none;
}
b, strong{
    font-weight: 600;
}
button{
    cursor: pointer;
}
ul.no-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.no-list > li{
    margin: 0;
    padding: 0;
}
/* elements
/* ------------------------ */
body{
    background: #fff;
    font-family: 'Barlow', sans-serif;
    min-height: 80vh;
    color: #575757;
}
/* header
/* ------------------------ */
#header{
    padding: 50px 0 15px;
}
@media (min-width: 992px){
    #header{
        padding: 30px 0 60px;
    }
}
#header .logo{
    display: block;
    max-width: 180px;
    height: auto;
    margin: 0 auto;
}
#header .welcome{
    display: block;
    margin: 15px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400;
}
#header .welcome strong{
    font-weight: 600;
}
#header .welcome img{
    display: none;
}
#header .welcome .user-icon{
    max-width: 70px;
    margin-left: 10px;
    border-radius: 50%;
    border: 1px solid #575757;
}
@media (max-width: 992px){
    #header .right{
        position: absolute;
        top: 10px;
        right: 15px;
        z-index: 1;
    }
}
@media (min-width: 992px){
    #header .logo{
        float: left;
    }
    #header .welcome{
        text-align: right;
        display: flex;
        align-items: center;
        font-size: 24px;
        margin: 0 auto;
        justify-content: flex-end;
    }
    #header .welcome img{
        display: inline;
    }
    /*#header .welcome br{*/
    /*    display: none;*/
    /*}*/
}
.btn-logout, .btn-logout-mobile{
    color: #575757;
    font-weight: 500;
    font-size: 16px;
    transition: color .2s ease-in-out;
    display: none;
}
.btn-logout:hover,
.btn-logout-mobile:hover{
    color: #df0714;
}
.btn-logout-mobile{
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}
@media (min-width: 992px){
    .btn-logout-mobile{
        display: none;
    }
    .btn-logout{
        font-size: 16px;
        margin-left: 40px;
        display: block;
    }
}
/* main
/* ------------------------ */
main{
    min-height: 80vh;
}
.contest-title{
    font-size: 24px;
    color: #575757;
}
/* contests list
/* ------------------------ */
.contests-table{
    margin: 8px 0 15px;
    border-bottom: 1px solid #bcb8a9;
}
@media (min-width: 992px){
    .contests-table{
        margin: 30px 0;
    }
}
.contests-table.table td, .contests-table.table th{
    border-top: 1px solid #cdc9ba;
    padding: 15px 15px;
    color: #575757;
    font-weight: 600;
}
.contests-table.table thead th{
    border-bottom: none !important;
}
.contests-table.table td{
    padding: 20px 15px;
}
@media (min-width: 992px){
    .contests-table.table td, .contests-table.table th{
        padding: 20px 15px;
    }
}
.contests-table h5{
    font-size: 18px;
    font-weight: 500;
    color: #575757;
    margin: 0;
}
.contests-table.table-striped tbody tr:nth-of-type(odd){
    background-color: #f1f1ee;
}
.contests-table .btn-docs{
    background: #f2f2f2 !important;
    color: #575757;
    font-weight: normal;
    border-radius: 4px;
    border: 1px solid #bbb;
    padding: 6px 10px;
    transition: color, border-color .2s ease-in-out;
    white-space: nowrap;
}
.contests-table .btn-docs:hover{
    color: #df0714;
    border-color: #df0714;
}
.contests-table .btn-docs .btn-docs-label{
    display: none;
}
@media (min-width: 992px){
    .contests-table .btn-docs .btn-docs-label{
        display: inline;
    }
}
/* referers
/* ------------------------ */
.referers-wrap{
    background: #f2f1ee;
    padding: 20px 20px 0;
}
.referers-wrap .title{
    font-size: 24px;
    font-weight: 500;
    color: #575757;
    margin: 0 0 15px;
}
.referers-wrap .title > img{
    display: none;
}
@media (min-width: 992px){
    .referers-wrap .title{
        font-size: 22px;
        font-weight: 600;
    }
    .referers-wrap .title > img{
        display: inline;
        margin-right: 10px;
    }
}
.referers-list{
    overflow: hidden;
}
.referer-card{
    padding: 15px 0;
}
@media (min-width: 992px){
    .referers-list{
        margin-left: 40px;
    }
    .referer-card{
        float: left;
        padding: 0 15px 30px;
        width: 33.333%;
    }
}
.referer-card .referer-img > img{
    display: block;
    max-width: 45px;
    border-radius: 50%;
    margin: 0 0 10px;
    float: left;
}
.referer-card .referer-info{
    margin-left: 60px;
}
.referer-info br{
    display: none;
}
.referer-info .contacts{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 992px){
    .referer-info br{
        display: inline;
    }
    .referer-info .contacts{
        display: block;
        margin-top: 15px;
    }
    .referer-info .contacts a{
        display: block;
        margin-top: 0;
        margin-bottom: 10px;
    }
}
.referer-card h3{
    font-size: 18px;
    font-weight: normal;
    color: #575757;
    border-bottom: 1px solid #bcb8a9;
    padding-bottom: 6px;
    margin: 0 0 5px;
}
.referer-card p,
.referer-card a{
    font-size: 14px;
    font-weight: 500;
    margin: 4px 0;
    color: #7c7c7c;
}
@media (min-width: 992px){
    .referer-card p,
    .referer-card a{
        font-size: 14px;
    }
}
.referer-card .job-description{
    margin-top: 0;
    margin-bottom: 11px;
    font-size: 16px;
    line-height: 14px;
}
@media (min-width: 992px){
    .referer-card .job-description{
        font-size: 14px;
    }
}
.referer-card a{
    transition: color .2s ease-in-out;
}
.referer-card a:hover{
    color: #df0714;
}
.referer-card img{
    display: inline-block;
    margin-right: 10px;
    max-width: 20px;
}
.new-files-alert{
    margin: 30px 0;
    display: flex;
    align-items: center;
}
.new-files-alert .badge{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
    margin-right: 15px;
    background: url('/images/bollino-rosso.png') center no-repeat;
    background-size: cover;
}
.new-files-alert p{
    margin: 0;
    font-size: 18px;
}
/* assistance list
/* ------------------------ */
.assistance-wrap{
    margin: 20px 0;
}
.assistance-list{
    padding: 0;
    list-style: none;
    margin: -10px 0 0;
}
.assistance-list > li{
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    color: #575757;
    padding: 10px 0;
    transition: color .2s ease-in-out;
    cursor: pointer;
}
.assistance-list > li.inactive{
    cursor: default;
}
.assistance-list > li:not(.inactive):hover{
    color: #df0714;
}
.assistance-list img{
    max-width: 40px;
    height: auto;
    border-radius: 50%;
    margin-right: 15px;
}
.assistance-list .icon{
    display: none;
}
/* documents
/* ------------------------ */
.documents-wrap{
    margin: 0 0 30px;
}
.row-documents-header{
    align-items: center;
    margin-bottom: 30px;
}
.row-documents-header h3{
    margin: 0;
}
.categories-tabs-wrap{
    display: none;
}
@media (min-width: 992px){
    .categories-tabs-wrap{
        display: block;
    }
}
.categories-tabs{
    list-style: none;
    margin: 0;
    padding: 30px 0 0;
    display: block;
    width: 100%;
    background: #fff;
}
.categories-tabs > li{
    display: block;
    margin: 0;
    padding: 12px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    border-top: 1px solid #bcb8a9;
    border-right: 1px solid #bcb8a9;
    border-bottom: 1px solid #575757;
    color: #999;
    background: #f2f1ee;
    position: relative;
    cursor: pointer;
    transition: color .2s ease-in-out;
}
.categories-tabs > li:hover{
    color: #df0714;
}
.categories-tabs > li:first-child{
    border-left: 1px solid #bcb8a9;
}
.categories-tabs > li.active{
    color: #333;
    border-color: #333;
    border-bottom: 1px solid #fff;
    background: #fff;
    border-left: 1px solid #333;
}
@media (min-width: 992px){
    .categories-tabs{
        display: table;
    }
    .categories-tabs > li{
        display: table-cell;
        vertical-align: top;
    }
}
.categories-tabs .badge{
    position: absolute;
    right: 15px;
    top: -10px;
    z-index: 1;
    width: 26px;
    height: 26px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 18px;
    background: url('/images/bollino-rosso.png') center no-repeat;
    background-size: cover;
}
.documents-list-expander .badge{
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
    width: 26px;
    height: 26px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 18px;
    background: url('/images/bollino-rosso.png') center no-repeat;
    background-size: cover;
}
.documents-list-expander .fa{
    transition: all .2s ease-in-out;
}
.documents-list-expander.active .fa{
    transform: rotate(90deg);
    margin-right: 10px;
}
.categories-tabs-wrap.scroll-to-fixed-fixed:after{
    content: '';
    display: block;
    width: calc(100% - 2px);
    height: 50px;
    position: absolute;
    left: 1px;
    z-index: 1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0); /* IE6-9 */
}
/* documents list
/* ------------------------ */
.documents-list-wrap{
    /*border-left: 1px solid #333;*/
    /*border-right: 1px solid #333;*/
    /*border-bottom: 1px solid #333;*/
    /*padding: 30px 0;*/
}
@media (min-width: 992px){
    .documents-list-wrap{
        padding: 30px 0;
        border-left: 1px solid #333;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
    }
}
.documents-list-wrap .entry{
    margin: 0 30px 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #cdc9ba;
}
.documents-list-table{
    margin: 15px 0;
    display: none;
}
@media (min-width: 992px){
    .documents-list-table{
        margin: 0;
    }
    .documents-list-table.active{
        display: block;
        width: 100%;
    }
}
.documents-list-expander{
    display: block;
    text-align: left;
    padding: 15px;
    color: #575757;
    background: #f2f1ee;
    border-bottom: 1px solid #575757;
    position: relative;
}
.documents-list-expander .title{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 20px;
}
.documents-list-wrap .entry > div{
    display: block;
    margin-bottom: 10px;
}
@media (min-width: 992px){
    .documents-list-expander{
        display: none;
    }
    .documents-list-table.active{
        display: table;
    }
    .documents-list-wrap .entry > div{
        display: table-cell;
        vertical-align: top;
        padding: 0 15px;
    }
}
.documents-list-wrap .preview{
    width: 1%;
    min-width: 100px;
}
@media (max-width: 992px){
    .documents-list-wrap .preview{
        float: left;
        margin-right: 10px;
        margin-bottom: 0;
    }
}
.documents-list-wrap .preview > img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #f2f2f2;
}
.documents-list-wrap .preview .no-img{
    width: 68px;
    height: 96px;
    background: #bcbcbc;
    margin: 0 auto;
}
.documents-list-wrap .info h4{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}
.documents-list-wrap .info p{
    margin-bottom: 10px;
    font-size: 16px;
    clear: both;
}
.documents-list-wrap .info .file-size{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 16px;
    color: #575757;
    margin: 15px 0;
}
@media (min-width: 992px){
    .documents-list-wrap .info .file-size{
        font-size: 14px;
    }
}
.documents-list-wrap .tools{
    width: 1%;
    min-width: 200px;
    white-space: nowrap;
}
.documents-list-wrap .tools p,
.documents-list-wrap .tools a{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 14px;
    /*color: #bcb8a9;*/
    color: #7c7c7c;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.documents-list-wrap .tools a{
    color: #7c7c7c;
    transition: color .2s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
}
@media (min-width: 992px){
    .documents-list-wrap .tools a{
        font-size: 14px;
    }
}
.documents-list-wrap .tools a.link-download-red{
    color: #df0714;
}
.documents-list-wrap .tools a:hover{
    color: #df0714
}
.documents-list-wrap .tools img{
    max-width: 26px;
    height: auto;
    margin-right: 10px;
}
.documents-list-wrap .no-documents{
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
}
/* various
/* ------------------------ */
.btn-back{
    display: none;
}
.btn-back-mobile{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    font-family: 'Barlow Semi Condensed', sans-serif;
}
@media (min-width: 992px){
    .btn-back-mobile{
        display: none;
    }
    .btn-back{
        display: inline;
        font-weight: normal;
        font-size: 16px;
        font-family: 'Barlow Semi Condensed', sans-serif;
        color: #575757;
        transition: color .2s ease-in-out;
    }
    .btn-back:hover{
        color: #df0714;
    }
}
/* input wi
/* ------------------------ */
.inputWi{
    position: relative;
    margin-bottom: 20px;
}
@media (min-width: 992px){
    .inputWi{
        margin-bottom: 15px;
    }
}
.inputWi input,
.inputWi textarea,
.inputWi select{
    box-shadow: none !important;
    border: 0;
    border-radius: 0;
    resize: none;
}
.inputWi input,
.inputWi textarea{
    padding: 17px 0 0 10px;
    height: auto;
}
.inputWi span{
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 11px;
    color: #666;
    transition: all .2s ease-in-out;
    font-size: 16px;
}
@media (min-width: 992px){
    .inputWi span{
        font-size: 14px;
    }
}
.fv-form-bootstrap .help-block{
    font-size: 12px;
    color: #c00;
}
.inputWi span.active{
    top: 4px;
    left: 10px;
    bottom: 10px;
    font-size: 12px;
    opacity: 1;
    color: #aaa;
}
/* modal
/* ------------------------ */
.modal-body .form-control{
    border: 1px solid #d6d3cc;
}
.modal-body h5 > img{
    margin-bottom: 10px;
}
.btn-submit{
    background-color: #bcb8a9;
    color: #fff;
    padding: 10px 40px;
    text-transform: uppercase;
    transition: background-color .2s ease-in-out;
    border: 1px solid #bcb8a9;
}
.btn-submit:hover{
    background-color: #9b9788;
}
.btn-reset{
    background: transparent;
    color: #bcb8a9;
    border: 1px solid #bcb8a9;
    padding: 10px 40px;
    text-transform: uppercase;
    transition: background-color .2s ease-in-out;
}
@media (min-width: 992px){
    .modal-body{
        padding: 1rem 30px;
    }
}
/* modal satisfaction
/* ------------------------ */
.emoticons-wrap{
    padding: 15px;
    background: #f1f1ed;
}
.emoticon-selected-text{
    display: none;
    margin: 0;
}
.emoticons-list{
    list-style: none;
    padding:10px 0;
}
.emoticons-list > li{
    display:block;
    text-align:center;
    padding: 15px 0;
}
.emoticons-list img{
    max-width: 30px;
    display: block;
    margin: 0 auto;
}
@media (min-width:576px){
    .emoticons-list{
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
    }
    .emoticons-list > li{
        margin: 0;
        display:inline;
        text-align: center;
        cursor: pointer;
        font-size:14px;
    }
}

@media (min-width: 992px){
    .emoticons-list{
        display: flex;
        justify-content: center;
        padding: 30px 30px 0;
    }
    .emoticons-list > li{
        padding: 0 30px;
    }
    .emoticons-list img{
        max-width: 60px;
    }
}

.message-report{
    border: 1px solid #d6d3cc;
    padding: 15px;
    margin: 15px 0;
}


.feedback-confirm .btn-reset,
.feedback-confirm .btn-submit{
    margin:10px;
    padding:5px;
    font-size:14px;
}
@media (min-width:768px){
    .feedback-confirm .btn-reset,
    .feedback-confirm .btn-submit{
        padding:10px 40px
    }
}

/* .swal-button
/* ------------------------ */
.swal-button{
    background-color: #bcb8a9;
    border-radius: 0;
}
.swal-button:not([disabled]):hover{
    background-color: #9b9788;
}
