﻿/* RAZOR */
.validation-summary-errors {
    color: #e80c4d;
    /*font-weight: bold;*/
    font-size: 1.1em;
    text-align: center;
}
.validation-summary-errors ul {
    display: inline-block;
}
.field-validation-valid {
    display: none;
}
 .field-validation-error {
    display: none;
}
.validation-summary-valid {
    display: none;
}
input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validationSummary ul li{
    text-align:center;
    margin: 0 auto;
    list-style: none; 
}
.ErrorMessage
{
    color:red;
}
/* COOKIES ALERTE */

.cookies-box{
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    position:fixed;
    width:100%;
    background-color:#666666;
    color:#FFF;
    text-align:center;
    height:30px;
    line-height:30px;
    font-size: 14px;
    bottom:0px;
}

.cookies-box-close{
    background-color:#FFF;
    color:#666666;
    display:inline-block;
    width:20px;
    height:20px;
    font-weight:bold;
    cursor:pointer;
    vertical-align:middle;
    line-height:20px;
    margin-bottom:4px;
    padding-top:1px;
    border-radius: 50%;
    text-align:center;
    margin-left:10px;
}


div#tooltip {
    position: absolute;
    z-index: 10;
    background-color: white;
    border: 1px solid #666;
    opacity: 0;
    padding:5px;
    font-size:12px;
    color:#666;
    max-width:300px;
}


.loadingPanel {
    position: fixed;
    height: 100%;
    width: 100%;
     /*background: rgba(255,255,255, 0.8);*/
    background-color: #666;
    opacity: 0.8;
    z-index: 51;
    top: 0;
    left: 0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    display: none;
}

    .loadingPanel div {
        /*color: #D7000F;*/
        /*background: rgba(246,246,246, 1);*/
        background-color: #fff;
        opacity: 1;
        padding: 20px 10px;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


@media screen and (max-width: 376px) {
    .cookies-box {

        height: 90px;
    }
}