﻿.ui-datepicker-prev,
.ui-datepicker-next {
    font-family: 'FontAwesomeMedical' !important;
}

.admin-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 1em 0;
    background-color: #ffffff;
}

.admin-panel__action {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% - 1em);
    margin: 0.4em 0.5em;
    padding: 0.8em;
    -webkit-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.12);
    box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.12);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background-color: #407EC9;
    color: #ffffff;
    text-align: center;
}

.admin-panel__action:visited {
    color: #ffffff;
}

.admin-panel__action:hover,
.admin-panel__action:focus {
    -webkit-box-shadow: 0 5px 10px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.15);
    box-shadow: 0 5px 10px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.15);
    background-color: #407EC9;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.admin-panel__action:before {
    display: block;
    font-size: 1.3em;
    margin-bottom: 0.4em;
}

@media (min-width: 768px) {
    .admin-panel__action {
        width: calc(100% / 3 - 1em);
    }

    .admin-panel__action:before {
        font-size: 1.8em;
    }
}

.alert--info,
.alert--success,
.alert--warning,
.alert--danger,
.dnnFormMessage {
    position: relative;
    margin: 1em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.12);
    box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.12);
    color: #1e1e1e;
    max-width: 100%;
    background-color: #ffffff;
}

.alert--info:before,
.alert--success:before,
.alert--warning:before,
.alert--danger:before,
.dnnFormMessage:before {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 2em;
    flex-basis: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3em;
    color: #ffffff;
}

.alert--info p,
.alert--success p,
.alert--warning p,
.alert--danger p,
.dnnFormMessage p {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    padding: 1em;
}

.alert__dismiss {
    position: absolute;
    top: 0.5em;
    right: 0.3em;
    background-color: transparent;
    color: #1e1e1e;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0;
}

.alert__dismiss:visited,
.alert__dismiss:active {
    color: #1e1e1e;
}

.alert__dismiss:hover,
.alert__dismiss:focus {
    text-decoration: none;
    outline: none;
    color: #2dc6d6;
}

.alert__message {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.alert--modal {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 2em);
    margin: 0;
    -webkit-box-shadow: 0 10px 18px 0 rgba(30, 30, 30, 0.35), 0 14px 40px 0 rgba(30, 30, 30, 0.25);
    box-shadow: 0 10px 18px 0 rgba(30, 30, 30, 0.35), 0 14px 40px 0 rgba(30, 30, 30, 0.25);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9000;
}

.alert--modal p {
    padding-bottom: 0.5em;
}

@media (min-width: 768px) {
    .alert--modal {
        max-width: 30em;
    }
}

.alert__close {
    float: right;
    background-color: transparent;
    color: #1e1e1e;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0;
}

.alert__close:visited,
.alert__close:active {
    color: #1e1e1e;
}

.alert__close:hover,
.alert__close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffffff;
}

[class*="--info"] .alert__close:hover,
[class*="--info"] .alert__close:focus {
    background-color: #03A9F4;
}

[class*="--success"] .alert__close:hover,
[class*="--success"] .alert__close:focus {
    background-color: #1CB254;
}

[class*="--warning"] .alert__close:hover,
[class*="--warning"] .alert__close:focus {
    background-color: #FF8F00;
}

[class*="--danger"] .alert__close:hover,
[class*="--danger"] .alert__close:focus {
    background-color: #E53935;
}

.alert--info:before {
    background-color: #03A9F4;
}

.alert--success:before {
    background-color: #1CB254;
}

.alert--warning:before {
    background-color: #FF8F00;
}

.alert--danger:before {
    background-color: #E53935;
}