:root {
    --red: #ff3838;
    --gray: #777777;
    --blue: #1494a9;
    --white: #ffffff;
    --chalk: #f5f5f5;
    --green: #11b76b;
    --purple: #b12fad;
    --orange: #e86121;
    --yellow: #ffab10;
    --text: #555555;
    --dark: #0d0633;
    --border: #e8e8e8;
    --heading: #232d3b;
    --primary: #ff914d;
    --primary-light: #fdaf7f;
    --primary-hover: #d47133;
    --view: #8edb04;
    --click: #01cbd5;
    --rating: #e8ce00;
    --sale: #dc3545;
    --rent: #03a70c;
    --booking: #7209af;
    --facebook: #3b5998;
    --linkedin: #0e76a8;
    --twitter: #00acee;
    --primary-bshadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    --primary-tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .dash-header-alert button {
        margin-right: 0px;
    }
}

.dash-header-alert {
    margin: 0px;
    margin-top: 30px;
    padding: 15px 25px;
    border-radius: 3px;
    background: var(--white);
    box-shadow: var(--primary-bshadow);
    border-right: 3px solid var(--primary);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    justify-content: space-between;
}

.dash-header-alert button {
    border: none;
    outline: none;
    background: none;
    margin-right: 100px;
}

.dash-header-alert button i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    display: inline-block;
    color: var(--primary);
    background: var(--chalk);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.dash-header-alert button i:hover {
    color: var(--white);
    background: var(--primary);
}

.alert-success {
    border-right: 3px solid var(--green);
}

.alert-error {
    border-right: 3px solid var(--red);
}

.alert-warning {
    border-right: 3px solid var(--orange);
}

.alert-info {
    border-right: 3px solid var(--blue);
}

.alert-success button i {
    background: var(--chalk);
    color: var(--green);
}

.alert-error button i {
    background: var(--chalk);
    color: var(--red);
}

.alert-warning button i {
    background: var(--chalk);
    color: var(--orange);
}

.alert-info button i {
    background: var(--chalk);
    color: var(--blue);
}

.alert-success button i:hover {
    background: var(--green);
    color: var(--white);
}

.alert-error button i:hover {
    background: var(--red);
    color: var(--white);
}

.alert-warning button i:hover {
    background: var(--orange);
    color: var(--white);
}

.alert-info button i:hover {
    background: var(--blue);
    color: var(--white);
}
