﻿/*.ValidatorError {
    color: #c41b13;
}

.ValidationErrorGroup {
    display: block;
    width: 100%;
    background-color: #f3e4e4;
    border: 2px solid #c65f5a;
    color: #8f1812;
    border-radius: 0.28571429em;
}

.ValidationErrorGroup ul {
    padding-left: 4.64285714em;
    margin-left: 0;
    min-height: 32px;
    background: url('../../images/svg-icons/exclamation-red.svg') no-repeat 8px -3px;
}

.ValidationOKGroup {
    display: block;
    width: 100%;
    background-color: rgba(61, 148, 97, 0.15);
    border: 2px solid #3D9461;
    color: #3D9461;
    border-radius: 0.28571429em;
}

    .ValidationOKGroup ul {
        padding-left: 4.64285714em;
        margin-left: 0;
        min-height: 32px;
        background: url('../../images/svg-icons/yes.svg') no-repeat 8px -3px;
    }*/

@font-face {
    font-family: 'exclamation-red';
    src: url('../../images/svg-icons/exclamation-red.svg') format('svg');
}

.alert-info, .alert-success, .alert-warning, .alert-error, .validation-error {
    border: 1px solid;
    border-radius: .6em;
    margin: 10px 0px;
    padding: 15px 10px 15px 60px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 35px 35px;
}

.alert-info {
    color: #00529B;
    background-color: #d9edf7;
    background-image: url('https://foothealthcommunity.co.uk/images/svg-icons/message-icons/info.svg');
    text-align: left;
}

.alert-success {
    color: #3c763d;
    background-color: #E1F2DC;
    background-image: url('https://foothealthcommunity.co.uk/images/svg-icons/message-icons/success.svg');
    text-align: left;
}

.alert-warning {
    color: #bd7000;
    background-color: #ffe9cd;
    background-image: url('https://foothealthcommunity.co.uk/images/svg-icons/message-icons/warning.svg');
    /*opacity: 1;
    transition: opacity 0.6s; /* 600ms to fade out */
    text-align: left;
}

.alert-error {
    color: #980005;
    background-color: #F7D2D5;
    text-align: left;
    background-image: url('https://foothealthcommunity.co.uk/images/svg-icons/message-icons/error.svg');
}

.alert-error a {
    color: #c41b13;
}

.validation-error {
    color: #980005;
    background-color: #f2dede;
    background-image: url('https://foothealthcommunity.co.uk/images/svg-icons/message-icons/validation2.svg');
    padding: 0px 10px 0px 60px;
    text-align:left;
}

.small-alert {
    border: 1px solid;
    border-radius: .6em;
    margin: 5px 0px;
    padding: 2px 2px 2px 30px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 15px 15px;
}
    /*.validation-error ul {
        text
        margin-block-start: 2px !important;
        margin-block-end: 2px !important;
    }*/

/* The close button */
.closebtn {
    margin-left: 15px;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    /* When moving the mouse over the close button */
    .closebtn:hover {
        color: black;
    }



