﻿.alert {
    padding: 15px 20px;
    border-radius: 5px;
}

    .alert a {
        color: #EEE;
        font-weight: 600;
        text-decoration: underline;
    }
    .alert a:hover {
        color: #FFF;
    }

    .alert .alert-icon {
        float: left;
        margin-right: 20px;
    }


    /* Styling the info alert */

    .alert .alert-info {
        margin: 0 10px 0 0;
        font-weight: normal;
        font-size: 14px;
    }

    .alert .alert-container {
        position: relative;
        margin: 0 auto;
        color: white;
    }


    /* Creating the close icon */

    .alert .close-icon {
        float: right;
        color: #000;
        margin-top: 0;
        margin-left: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

        .alert .close-icon:before,
        .alert .close-icon:after {
            content: '';
            position: absolute;
            top: 8px;
            width: 15px;
            height: 2px;
            left: 0;
        }

        .alert .close-icon:before {
            background-color: #fff;
            transform: rotate(-45deg);
        }

        .alert .close-icon:after {
            background-color: #fff;
            transform: rotate(45deg);
        }


    /* Styling the standard alert */

    .alert.alert-custom {
        background-color: #66615b;
        border: 1px solid #66615b;
        color: #fff;
        padding: 15px 20px;
    }

        .alert.alert-custom .alert-icon {
            float: left;
            margin-right: 15px;
        }

        .alert.alert-custom .alert-info {
            margin: 0 10px 0 0;
            text-transform: uppercase;
            font-weight: normal;
            font-size: 14px;
        }

        .alert.alert-custom .alert-container {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        .alert.alert-custom .close-icon {
            float: right;
            color: #000;
            margin-top: 0;
            margin-left: 0;
            width: 21px;
            height: 21px;
            position: relative;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            text-indent: -999px;
            overflow: hidden;
            white-space: nowrap;
        }

            .alert.alert-custom .close-icon:before,
            .alert.alert-custom .close-icon:after {
                content: '';
                position: absolute;
                top: 8px;
                width: 15px;
                height: 2px;
                left: 0;
            }

            .alert.alert-custom .close-icon:before {
                background-color: #fff;
                transform: rotate(-45deg);
            }

            .alert.alert-custom .close-icon:after {
                background-color: #fff;
                transform: rotate(45deg);
            }

            .alert.alert-outline {
                float: left;
                background-color: #e2e2e2;
                border: 1px solid #e2e2e2;
                padding: 10px 15px;
                color: #444;
                font-size: 14px;
                line-height: 20px;
            }
            
            .alert.alert-outline a {
                color: #444;
                font-size: 12px;
                text-decoration: none;
            }
            
            .alert.alert-info {
        background-color: #41a1d6;
        border: 1px solid #41a1d6;
        padding: 10px 15px;
        color: white;
        font-size: 15px;
    }

        .alert.alert-info .alert-icon {
            float: left;
            margin-right: 15px;
        }

        .alert.alert-info .alert-info {
            margin: 0 10px 0 0;
            text-transform: uppercase;
            font-weight: normal;
            font-size: 14px;
            color: white;
        }

        .alert.alert-info .alert-container {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        .alert.alert-info .close-icon {
            float: right;
            color: #000;
            margin-top: 0;
            margin-left: 0;
            width: 21px;
            height: 21px;
            position: relative;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            text-indent: -999px;
            overflow: hidden;
            white-space: nowrap;
        }

            .alert.alert-info .close-icon:before,
            .alert.alert-info .close-icon:after {
                content: '';
                position: absolute;
                top: 8px;
                width: 15px;
                height: 2px;
                left: 0;
            }

            .alert.alert-info .close-icon:before {
                background-color: #fff;
                transform: rotate(-45deg);
            }

            .alert.alert-info .close-icon:after {
                background-color: #fff;
                transform: rotate(45deg);
            }


    /* Styling the success alert */

    .alert.alert-success {
        background-color: #8bc34a;
        border: 1px solid #8bc34a;
        padding: 15px 20px;
        color: white;
    }

        .alert.alert-success .alert-icon {
            float: left;
            margin-right: 15px;
        }

        .alert.alert-success .alert-info {
            margin: 0 10px 0 0;
            text-transform: uppercase;
            font-weight: normal;
            font-size: 14px;
        }

        .alert.alert-success .alert-container {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        .alert.alert-success .close-icon {
            float: right;
            color: #000;
            margin-top: 0;
            margin-left: 0;
            width: 21px;
            height: 21px;
            position: relative;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            text-indent: -999px;
            overflow: hidden;
            white-space: nowrap;
        }

            .alert.alert-success .close-icon:before,
            .alert.alert-success .close-icon:after {
                content: '';
                position: absolute;
                top: 8px;
                width: 15px;
                height: 2px;
                left: 0;
            }

            .alert.alert-success .close-icon:before {
                background-color: #fff;
                transform: rotate(-45deg);
            }

            .alert.alert-success .close-icon:after {
                background-color: #fff;
                transform: rotate(45deg);
            }


    /* Styling the warning alert */

    .alert.alert-warning {
        background-color: #fc904e;
        border: 1px solid #e9884c;
        padding: 15px 20px;
        color: white;
        font-size: 15px;
    }

        .alert.alert-warning .alert-icon {
            float: left;
            margin-right: 15px;
        }

        .alert.alert-warning .alert-info {
            margin: 0 10px 0 0;
            text-transform: uppercase;
            font-weight: normal;
            font-size: 14px;
        }

        .alert.alert-warning .alert-container {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        .alert.alert-warning .close-icon {
            float: right;
            color: #000;
            margin-top: 0;
            margin-left: 0;
            width: 21px;
            height: 21px;
            position: relative;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            text-indent: -999px;
            overflow: hidden;
            white-space: nowrap;
        }

            .alert.alert-warning .close-icon:before,
            .alert.alert-warning .close-icon:after {
                content: '';
                position: absolute;
                top: 8px;
                width: 15px;
                height: 2px;
                left: 0;
            }

            .alert.alert-warning .close-icon:before {
                background-color: #fff;
                transform: rotate(-45deg);
            }

            .alert.alert-warning .close-icon:after {
                background-color: #fff;
                transform: rotate(45deg);
            }


    /* Styling the danger alert */

    .alert.alert-danger {
        background-color: #b85d59;
        border: 1px solid #812925;
        padding: 10px 15px;
        color: white;
        font-size: 14px;
    }

        .alert.alert-danger .alert-icon {
            float: left;
            margin-right: 15px;
        }

        .alert.alert-danger .alert-info {
            margin: 0 10px 0 0;
            text-transform: uppercase;
            font-weight: normal;
            font-size: 14px;
        }

        .alert.alert-danger .alert-container {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        .alert.alert-danger .close-icon {
            float: right;
            color: #000;
            margin-top: 0;
            margin-left: 0;
            width: 21px;
            height: 21px;
            position: relative;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            text-indent: -999px;
            overflow: hidden;
            white-space: nowrap;
        }

            .alert.alert-danger .close-icon:before,
            .alert.alert-danger .close-icon:after {
                content: '';
                position: absolute;
                top: 8px;
                width: 15px;
                height: 2px;
                left: 0;
            }

            .alert.alert-danger .close-icon:before {
                background-color: #fff;
                transform: rotate(-45deg);
            }

            .alert.alert-danger .close-icon:after {
                background-color: #fff;
                transform: rotate(45deg);
            }

