@charset "UTF-8";

html,
body {
    margin-top: 0px;
}

/***
Fix link outlines after click
***/
* {
    outline: none !important;
    -moz-outline: none !important;
    -moz-user-focus: none !important;
}
*:active,
*,
:focus,
*:hover {
    outline: none !important;
}
a,
a:focus,
a:hover,
a:active {
    outline: 0;
}

textarea {
    resize: vertical;
}

/*---------+
| Block UI |
+---------*/
.blockUI * {
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    box-sizing: unset;
}
.blockUI *:before,
.blockUI *:after {
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    box-sizing: unset;
}
.loading-message {
    color: #000000 !important;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}
.loading-message.loading-message-boxed {
    background-color: #eeeeee;
    border: 1px solid #dddddd;
    border-radius: 4px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
.loading-message > span {
    line-height: 20px;
    vertical-align: middle;
}

/*------+
| Align |
+------*/
.row-align-bottom {
    display: flex;
}
.row-align-bottom > div {
    margin-top: auto;
}

/*-------------+
| Fancy Button |
+-------------*/
.fancy-button {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    /*transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;*/
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
    font-size: 1.2rem;
    cursor: pointer;
    color: #555;
    border-radius: 60px;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
    border-width: 2px !important;
    border-style: solid;
    border-color: #e8e8e8;
    line-height: 0;
    background: transparent;
    font-weight: normal;
    font-family: allerregular;
}
.fancy-button:disabled,
.fancy-button.focus,
.fancy-button:focus,
.fancy-button:hover {
    background: #e8e8e8;
    color: #111;
}
.fancy-button.fb-success {
    border-color: #d6e9c6;
    color: #468847;
}
.fancy-button.fb-success:disabled,
.fancy-button.fb-success:focus,
.fancy-button.fb-success:hover {
    /*background-color: #dff0d8;*/
    background-color: #d6e9c6;
}
.fancy-button.fb-info {
    border-color: #1e88b6;
    color: #1e88b6;
}
.fancy-button.fb-info:disabled,
.fancy-button.fb-info:focus,
.fancy-button.fb-info:hover {
    background-color: #1e88b6;
    color: #fff;
}
.fancy-button.fb-warning {
    /*border-color: #ffb822;*/
    border-color: #fbeed5;
    /*color: #ffb822;*/
    color: #eda61a;
}
.fancy-button.fb-warning:disabled,
.fancy-button.fb-warning:focus,
.fancy-button.fb-warning:hover {
    /*background: #FCF8E3;*/
    /*background: #ffb822;*/
    background: #fbeed5;
    /*color: #8c5f00;*/
}
.fancy-button.fb-error {
    border-color: #eed3d7;
    color: #b94a48;
}
.fancy-button.fb-error:disabled,
.fancy-button.fb-error:focus,
.fancy-button.fb-error:hover {
    /*background-color: #f2dede;*/
    background-color: #eed3d7;
}
.fancy-button:disabled {
    opacity: 0.5;
    cursor: no-drop;
}
.fancy-button.fb-submit {
    width: 272px;
    height: 53px;
}

/*---------------------------------------+
| Fancy Spin Button                      |
| https://codepen.io/sfaisal/pen/rVWBXp/ |
+---------------------------------------*/
/*@import url(https://fonts.googleapis.com/css?family=Raleway:100,600,400);*/
.fancy-spin-button {
    transition: all 0.3s ease !important;
    /*font-family: 'Raleway', sans-serif;*/
}
.fancy-spin-button.loading {
    font-size: 0;
    border-radius: 50%;
    padding: 0 !important;
    border: 5px solid #1e88b6;
    border-bottom-color: rgba(0, 3, 51, 0) !important;
    border-left: rgba(0, 3, 51, 0) !important;
    background-color: transparent !important;
    animation-name: rotateAnimation;
    -webkit-animation-name: wk-rotateAnimation;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
.fancy-spin-button.loading.bgwhite {
    background: #fff !important;
}
@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes wk-rotateAnimation {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

/*------------+
| FORM ERRORS |
+------------*/
.has-error .help-inline,
.has-error .help-block,
.has-error .control-label,
.login .content .has-error p,
.login .content .has-error label {
    color: #b94a48;
}
.form_error_wrapper:not(.is-login) .error_element {
    line-height: 50px;
}
.required {
    color: #bb0000;
}
.help-block {
    /*margin-top: -10px;*/
    color: #888888;
    font-size: 13px;
    margin-bottom: 0;
}
.zferrors .help-block {
    font-size: 12px;
}
.zferrors,
.zferrors:before,
.zferrors:after {
    display: inherit !important;
}
.zferrors ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.errorWrapper {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
}
.errorWrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.errorWrapper,
.errorWrapper:before,
.errorWrapper:after {
    display: inherit !important;
}
.errorWrapper .subcomment {
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
    margin-top: 10px;
}

.errorContent,
.errorContent:before,
.errorContent:after {
    display: inherit !important;
}
.errorContent ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.has-error * {
    color: #b94a48;
}
.has-error .select_filter .selectBoxes,
.has-error input[type='text'],
.has-error input[type='password'] {
    border: 1px solid #b94a48;
}

/*--------+
| PORTLET |
+--------*/
.portlet > .portlet-title > .actions {
    line-height: 2;
}

/*------+
| SWAL2 |
+------*/
.swal2-container {
    z-index: 10060 !important;
}
/* .swal2-container,
.swal2-container * {
    font-size: calc(100% * 1.38);
} */
/* .swal2-container .swal2-icon,
.swal2-container .swal2-icon * {
    font-size: inherit;
} */

/* .swal2-icon.swal2-warning.swal2-animate-warning-icon .swal2-icon-text,
.swal2-icon.swal2-question.swal2-animate-question-icon .swal2-icon-text,
.swal2-icon.swal2-info.swal2-animate-info-icon .swal2-icon-text {
    font-size: 3.75em;
} */

/* .swal2-popup {
    width: calc(32em * 1.38) !important;
} */

/*-------------------+
| fancy-screen-alert |
+-------------------*/
.fancy-screen-alert:empty {
    display: none;
}
.fancy-screen-alert {
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    /*-webkit-border-radius: 4px;*/
    /*-moz-border-radius: 4px;*/
    /*border-radius: 4px;*/
    /*border: 1px solid #aaaaaa;*/
    /*background: #ccc;*/
    /*text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);*/
}
.fancy-screen-alert.fsa-warning {
    /*color: #c09853;*/
    /*color: #FFB822;*/
    color: #eda61a;
    /*background-color: #fcf8e3;*/
    /*border-color: #fbeed5;*/
}
.fancy-screen-alert.fsa-error {
    color: #b94a48;
    /*background-color: #f2dede;*/
    /*border-color: #eed3d7;*/
}
.fancy-screen-alert.fsa-info {
    color: #3a87ad;
    /*background-color: #d9edf7;*/
    /*border-color: #bce8f1;*/
}
.fancy-screen-alert.fsa-success {
    color: #468847;
    /*background-color: #dff0d8;*/
    /*border-color: #d6e9c6;*/
}
.fancy-screen-alert.fsa-question {
    color: #3a87ad;
    /*background-color: #d9edf7;*/
    /*border-color: #bce8f1;*/
}
.fancy-screen-alert .fsa-icon {
    font-size: 4rem;
}
.fancy-screen-alert .fsa-title {
    font-weight: bold;
    font-size: 2rem;
    display: block;
    line-height: 2.5rem;
    margin-top: 10px;
}
.fancy-screen-alert .fsa-message {
    font-size: 1.2rem;
    /*max-width: 500px;*/
    margin: 20px auto 0;
    color: #333;
}
.fancy-screen-alert .fsa-description {
    margin-top: 15px;
    color: #777;
    font-size: 1rem;
}
.fancy-screen-alert .fsa-action {
    margin-top: 30px;
    font-weight: 500;
}
.fancy-screen-alert .fsa-button {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    /*transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;*/
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: #ffb822;
    font-weight: 400;
    border-radius: 60px;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
    border: 2px solid #cccccc;
    line-height: 1.5;
    background: transparent;
}
.fancy-screen-alert .fsa-button.focus,
.fancy-screen-alert .fsa-button:focus,
.fancy-screen-alert .fsa-button:hover {
    border-color: #ffb822;
    background: #ffb822;
    color: #111;
}
.fancy-screen-alert.fsa-success .fsa-button {
    border-color: #d6e9c6;
    color: #468847;
}
.fancy-screen-alert.fsa-success .fsa-button.focus,
.fancy-screen-alert.fsa-success .fsa-button:focus,
.fancy-screen-alert.fsa-success .fsa-button:hover {
    /*background-color: #dff0d8;*/
    background-color: #d6e9c6;
}
.fancy-screen-alert.fsa-info .fsa-button {
    border-color: #bce8f1;
    color: #3a87ad;
}
.fancy-screen-alert.fsa-info .fsa-button.focus,
.fancy-screen-alert.fsa-info .fsa-button:focus,
.fancy-screen-alert.fsa-info .fsa-button:hover {
    /*background-color: #d9edf7;*/
    background-color: #bce8f1;
}
.fancy-screen-alert.fsa-warning .fsa-button {
    /*border-color: #ffb822;*/
    border-color: #fbeed5;
    /*color: #ffb822;*/
    color: #eda61a;
}
.fancy-screen-alert.fsa-warning .fsa-button.focus,
.fancy-screen-alert.fsa-warning .fsa-button:focus,
.fancy-screen-alert.fsa-warning .fsa-button:hover {
    /*background: #FCF8E3;*/
    /*background: #ffb822;*/
    background: #fbeed5;
    /*color: #8c5f00;*/
}
.fancy-screen-alert.fsa-error .fsa-button {
    border-color: #eed3d7;
    color: #b94a48;
}
.fancy-screen-alert.fsa-error .fsa-button.focus,
.fancy-screen-alert.fsa-error .fsa-button:focus,
.fancy-screen-alert.fsa-error .fsa-button:hover {
    /*background-color: #f2dede;*/
    background-color: #eed3d7;
}
.fancy-screen-alert.fsa-question .fsa-button {
    border-color: #bce8f1;
    color: #3a87ad;
}
.fancy-screen-alert.fsa-question .fsa-button.focus,
.fancy-screen-alert.fsa-question .fsa-button:focus,
.fancy-screen-alert.fsa-question .fsa-button:hover {
    /*background-color: #d9edf7;*/
    background-color: #bce8f1;
}

/*-----+
| FLEX |
+-----*/
.flex-centered-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex-centered-content .flex-item {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}
@-moz-document url-prefix() {
    .flex-centered-content .flex-container {
        width: 100%;
        -moz-box-sizing: border-box;
    }
}

.dashboard-stat .details {
    position: relative;
}
.dashboard-stat .visual {
    position: absolute;
}
