/*Pen styling*/
/*.container {*/
/*    margin-top: 50px;*/
/*}*/

/*alert styling*/

.messages-with-icon .alert-success {
        border-color: #e6e6e6;
        border-left: 20px solid #00986a;
        background-color: #ffff;
        color: #888;
    }

.messages-with-icon .alert-info {
        border-color: #e6e6e6;
        border-left: 20px solid #00b3c8;
        background-color: #fff;
        color: #888;
    }

.messages-with-icon .alert-warning {
        border-color: #e6e6e6;
        border-left: 20px solid #f9af2c;
        background-color: #fff;
        color: #888;
    }

.messages-with-icon .alert-danger {
        border-color: #e6e6e6;
        border-left: 20px solid #c82630;
        background-color: #fff;
        color: #888;
    }

    @media (min-width: 768px) {
        .messages-with-icon .alert {
            border-radius: 6px;
            display: table;
            width: 100%;
            padding-left: 78px;
            position: relative;
            padding-right: 60px;
            border: 1px solid #e6e6e6;
        }

        .messages-with-icon .alert .close {
            color: #888;
            opacity: 1;
            float: none;
            position: absolute;
            right: 18px;
            top: 50%;
            margin-top: -12px;
            font-size: 25px;
        }

        .messages-with-icon .alert .icon {
            text-align: center;
            width: 58px;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border: 1px solid #bdbdbd;
            padding-top: 15px;
            border-radius: 6px 0 0 6px;
        }

        .messages-with-icon .alert .icon i {
            font-size: 20px;
            color: #fff;
            left: 21px;
            margin-top: -10px;
            position: absolute;
            top: 50%;
        }

        .messages-with-icon .alert .icon img {
            font-size: 20px;
            color: #fff;
            left: 18px;
            margin-top: -10px;
            position: absolute;
            top: 50%;
        }

        .messages-with-icon .alert.alert-success .icon,
        .messages-with-icon .alert.alert-success .icon:after {
            border-color: none;
            background: #00986a;
        }

        .messages-with-icon .alert.alert-info .icon,
        .messages-with-icon .alert.alert-info .icon:after {
            border-color: none;
            background: #00b3c8;
        }

        .messages-with-icon .alert.alert-warning .icon,
        .messages-with-icon .alert.alert-warning .icon:after {
            border: none;
            background: #f9af2c;
        }

        .messages-with-icon .alert.alert-danger .icon,
        .messages-with-icon .alert.alert-danger .icon:after {
            border-color: none;
            background: #c82630;
        }
    }


