/**
 * Fonts
 */

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');

/* toastr notification */
#toast-container > div {
    opacity: 1.0 !important;
    filter: alpha(opacity=100) !important;
}

    #toast-container > div, #toast-container > div:hover {
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

#toast-container .toast-close-button {
    top: -0.6em !important;
}

.toast a {
    text-decoration: underline !important;
}

    .toast a:hover, .toast a:focus {
        text-decoration: none !important;
        color: #fff !important;
    }

.toast .toast-message {
    font-size: 14px !important;
    line-height: 2 !important;
}

.toast-info {
    background-color: var(--main-color) !important;
}

.toast-success {
    background-color: #41B314 !important;
}

.toast-warning {
    background-color: #e4cb10 !important;
}

.toast-danger {
    background-color: #F9354C !important;
}

/**
 * Scaffolding
 */

body {
    font-family: "Roboto", sans-serif;
    color: #676a6d;
    background-color: #f3f5f8;
}

a {
    color: #3287b2;
}

    a:hover,
    a:focus {
        color: #3b98c8;
        text-decoration: none;
    }

th,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ol,
ul {
    margin-bottom: 0;
}

/**
 * Typo
 */

.text-success {
    color: #41b314;
}

.text-warning {
    color: #e4cb10;
}

.text-danger {
    color: #f9354c;
}

.text-info {
    color: var(--main-color);
}

ul.list-justify > li {
    margin-bottom: 5px;
}

    ul.list-justify > li span {
        float: right;
    }

/**
 * Helpers
 */

.bg-success {
    background-color: #41b314;
}

.bg-warning {
    background-color: #e4cb10;
}

.bg-danger {
    background-color: #f9354c;
}

.bg-transparent {
    background-color: transparent;
}

.margin-0,
.no-margin {
    margin: 0 !important;
}

.margin-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.margin-top-0 {
    margin-top: 0 !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.no-padding {
    padding: 0 !important;
}

.padding-5 {
    padding: 5px !important;
}

.padding-15 {
    padding: 15px !important;
}

.padding-20 {
    padding: 20px !important;
}

.padding-25 {
    padding: 25px !important;
}

.padding-30 {
    padding: 30px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-left-0 {
    padding-left: 0px !important;
}

.padding-left-60 {
    padding-left: 60px !important;
}

.padding-left-95 {
    padding-left: 95px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}

.underline {
    border-bottom: 1px solid #eaeaea;
}

.bold {
    font-weight: 700 !important;
}

.pointer {
    cursor: pointer;
}

/**
 * Form
 */
.form-control {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border-color: #ddd;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-group {
    border-color: #e6e6e6;
}

    .input-group .form-control, .input-group-addon, .input-group-btn {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.input-group-addon {
    border: 1px solid #eaeaea;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px;
    margin-right: -1px;
}

.checkbox {
    text-align: left;
}

.video {
    background-color: #000;
}

.sortable-handle {
    cursor: move;
    cursor: -webkit-grabbing;
    touch-action: none;
}

/**
 * Panel
 */

.panel {
    border-color: #e6e6e6;
}

/**
 * Buttons
 */
.btn {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border-color: #e6e6e6;
    background-color: #f9f9f9;
}

.btn-md {
    padding: 7px 12px !important;
}

.btn-group-lg > .btn,
.btn-lg {
    padding: 10px 28px;
}

.btn-danger {
    background-color: #e84640;
    border-color: #d43f3a;
}

.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.active,
    .btn-primary:active,
    .open > .dropdown-toggle.btn-primary {
        background-color: var(--main-color-darker-2x) !important;
        border-color: var(--main-color-darker-2x) !important;
        outline: none !important;
        box-shadow:none !important;
    }

.btn-warning {
    background-color: #d6be0f;
}

    .btn-warning:hover,
    .btn-warning:focus {
        background-color: #d6be0f;
    }

.btn-default:hover,
.btn-default:focus {
    background-color: #f3f3f3;
    border-color: #cecece;
}

.table-hover .btn-default:hover,
.table-hover .btn-default:focus {
    background-color: #fff;
    border-color: #cecece;
}

.btn-success {
    background-color: #3ca512;
    border: none;
}

    .btn-success:hover,
    .btn-success:focus {
        background-color: #3ca512;
    }

/**
 * Table
 */
.dataTable th,
.table-hover th {
    font-weight: bold;
}

.table {
    margin-bottom: 0;
}

    .table > tbody > tr > td,
    .table > tbody > tr > th,
    .table > tfoot > tr > td,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > thead > tr > th {
        border-color: #f2f2f2;
    }

.table-clean > tbody > tr > td,
.table-clean > tbody > tr > th,
.table-clean > tfoot > tr > td,
.table-clean > tfoot > tr > th,
.table-clean > thead > tr > td,
.table-clean > thead > tr > th {
    border-color: transparent;
}

.table-entries {
    width: auto !important;
}

    .table-entries th {
        font-weight: 600;
    }

    .table-entries th,
    .table-entries td {
        padding: 0 25px 0 0 !important;
    }

.table-responsive {
    border: none;
}

/**
 * Brand
 */
.brand {
    display: block;
    padding: 15px;
    height: 80px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background-color: #ffffff;
    border-right: 1px solid #d8d8d8;
}

    .brand img {
        height: 28px;
        margin-left: auto;
        margin-right: auto;
    }

/**
 * Full width
 */
.full-width .sidebar {
    left: -260px;
}

.full-width .main {
    margin-left: 0;
}

/**
 * Content
 */
.content {
    position: relative;
    width: 100%;
}

/**
 * Sidebar
 */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    z-index: 1;
    background-color: #222730;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .sidebar .nav {
        width: 260px;
        height: 100%;
    }

        .sidebar .nav > li > .sidebar-item {
            padding-top: 15px;
            padding-bottom: 15px;
            color: #aeb7c2;
            border-left: 5px solid transparent;
        }

            .sidebar .nav > li > .sidebar-item:hover,
            .sidebar .nav > li > .sidebar-item:focus,
            .sidebar .nav > li > .sidebar-item.active {
                color: #fff;
                background-color: transparent;
            }

            .sidebar .nav > li > .sidebar-item:focus,
            .sidebar .nav > li > .sidebar-item.active {
                background-color: #2f3542;
                border-left-color: var(--main-color);
            }

            .sidebar .nav > li > .sidebar-item > i {
                display: inline-block;
                width: 25px;
                vertical-align: top;
                line-height: 1.42857143;
            }

        .sidebar .nav > li > .sidebar-sub {
            position: absolute;
            top: 5px;
            right: 5px;
            background-color: transparent;
            color: #aeb7c2;
        }

            .sidebar .nav > li > .sidebar-sub > i {
                vertical-align: middle;
            }

                .sidebar .nav > li > .sidebar-sub > i:before {
                    content: "\e874";
                }

            .sidebar .nav > li > .sidebar-sub.collapsed > i:before {
                content: "\e875";
            }

            .sidebar .nav > li > .sidebar-sub:hover,
            .sidebar .nav > li > .sidebar-sub:focus {
                background-color: transparent;
            }

        .sidebar .nav .active .nav {
            background-color: #2f3542;
        }

        .sidebar .nav .nav > li > .sidebar-item {
            padding-left: 43px;
            padding-top: 15px;
            padding-bottom: 15px;
        }

            .sidebar .nav .nav > li > .sidebar-item:focus,
            .sidebar .nav .nav > li > .sidebar-item.active {
                background-color: transparent;
                border-color: transparent;
            }

/**
 * Main
 */
.main {
    position: relative;
    margin-left: 260px;
    background-color: #f5f5fa;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.main-content {
    padding: 30px 15px 0;
}

/**
 * Nav
 */
.navbar-default {
    border: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus {
        background-color: #fafafa;
    }

    .navbar-default .navbar-toggle,
    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: transparent;
        border-color: transparent;
    }

.navbar-btn {
    float: left;
    margin-top: 24px;
    margin-bottom: 24px;
}

.navbar-nav > li > a {
    padding: 28px 22px;
}

    .navbar-nav > li > a > span {
        position: relative;
        top: 2px;
    }

    .navbar-nav > li > a > i {
        margin-right: 2px;
        font-size: 22px;
        vertical-align: middle;
    }

.navbar-nav .icon-submenu {
    position: relative;
    top: 2px;
    margin-left: 2px;
    margin-right: 0;
    font-size: 10px;
}

.navbar-nav .img {
    margin-right: 2px;
}

.navbar-nav .dropdown-menu {
    padding: 0;
    min-width: 200px;
}

    .navbar-nav .dropdown-menu > li > a {
        padding: 8px 20px;
    }

        .navbar-nav .dropdown-menu > li > a:hover,
        .navbar-nav .dropdown-menu > li > a:focus {
            background-color: #fafafa;
        }

        .navbar-nav .dropdown-menu > li > a span,
        .navbar-nav .dropdown-menu > li > a i {
            vertical-align: middle;
        }

@media screen and (max-width: 767px) {
    .navbar-nav > li > a {
        padding: 15px 20px;
    }

    .navbar-nav .icon-menu {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        padding: 5px 15px 5px 48px;
    }
}

.navbar-toggle {
    padding: 5px 8px;
    margin: 20px 15px 20px 0;
}

    .navbar-toggle .icon-nav {
        font-size: 24px;
    }

.navbar-nav > li > a > .label {
    padding: .3em .6em .3em;
    font-size: 100%;
    font-weight: inherit;
}

.btn-toggle-full-width {
    font-size: 24px;
    padding: 4px 8px;
    line-height: .7;
    border: none;
    background: none;
    outline: none;
}

/**
 * Dropdown
 */
.dropdown-menu {
    border-color: #e6e6e6;
    border-top: 2px solid #ACB0B5;
}

    .dropdown-menu > li > a {
        color: #676a6d;
    }

    .dropdown-menu > li i {
        margin-right: 6px;
    }

/**
 * Panel
 */
.panel {
    margin-bottom: 30px;
    background-color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-color: #e6e6e6;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .panel .panel-heading,
    .panel .panel-body,
    .panel .panel-footer {
        padding-left: 25px;
        padding-right: 25px;
    }

    .panel .panel-heading {
        position: relative;
        padding-top: 20px;
        padding-bottom: 20px;
        border-color: #e6e6e6;
    }

    .panel .language-collapse-heading a {
        position: absolute;
        top: 9px;
        right: 9px;
    }

    .panel .panel-heading .panel-title {
        line-height: 30px;
    }

    .panel .panel-heading button {
        padding: 0;
        margin-left: 5px;
        background-color: transparent;
        border: none;
        outline: none;
    }

        .panel .panel-heading button i {
            font-size: 14px;
        }

    .panel.panel-headline .panel-heading {
        padding-bottom: 0;
        border-bottom: none;
    }

    .panel .right {
        position: absolute;
        right: 20px;
        top: 32%;
    }

    .panel .panel-body {
        padding: 20px;
    }

    .panel .panel-note {
        font-size: 13px;
        line-height: 2.6;
        color: #777777;
    }

        .panel .panel-note i {
            font-size: 16px;
            margin-right: 3px;
        }

    .panel .table > thead > tr > td:first-child,
    .panel .table > thead > tr > th:first-child,
    .panel .table > tbody > tr > td:first-child,
    .panel .table > tbody > tr > th:first-child,
    .panel .table > tfoot > tr > td:first-child,
    .panel .table > tfoot > tr > th:first-child {
        padding-left: 25px;
    }

.panel-default {
    border-color: #e8e8e8;
}

.panel-footer {
    background-color: #fafafa;
}

/**
 * Metric
 */
.metric {
    margin-bottom: 30px;
    padding: 20px;
    font-weight: 300;
    border: 1px solid #dce6eb;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    .metric .icon {
        float: left;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        background-color: var(--main-color);
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
    }

        .metric .icon i {
            font-size: 20px;
            color: #fff;
            vertical-align: middle;
        }

    .metric p {
        margin-bottom: 0;
        line-height: 1.2;
        text-align: right;
    }

    .metric .number {
        display: block;
        font-size: 28px;
    }

/**
 * Align
 */
.vertical-align-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;
}

.vertical-align-middle {
    display: table-cell;
    vertical-align: middle;
}

/**
 * Charts
 */
.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
    stroke: #ff5b77;
}

/**
 * Footer
 */
.footer {
    position: absolute;
    right: 30px;
}

.copyright {
    margin-bottom: 15px;
    text-align: right;
    font-size: 13px;
}

/**
 * Alert
 */
.alert {
    border-radius: 2px;
    color: #fff;
    text-align: left;
}

.alert-success {
    background-color: #41B314;
    border-color: #3ca512;
}

.alert-info {
    background-color: var(--main-color);
    border-color: #00a0f0;
}

.alert-danger {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.alert-warning {
    background-color: #ecc700;
    border-color: #d6be0f;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    text-shadow: none;
    opacity: 1;
}

    .close:focus,
    .close:hover {
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

.modal .close {
    color: #a0a0a0;
}

/**
 * Sign in
 */
.auth-box {
    width: 90%;
    height: 450px;
    margin: 0 auto;
    background-color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
}

    .auth-box a {
        color: inherit;
    }

        .auth-box a:hover,
        .auth-box a:focus {
            text-decoration: underline;
        }

    .auth-box > div {
        padding: 0;
        height: 100%;
        text-align: center;
    }

        .auth-box > div:before {
            display: inline-block;
            vertical-align: middle;
            *zoom: 1;
            *display: inline;
            content: ' ';
            vertical-align: middle;
            height: 100%;
        }

    .auth-box .box {
        display: inline-block;
        vertical-align: middle;
        *zoom: 1;
        *display: inline;
        width: 80%;
        vertical-align: middle;
    }

    .auth-box .box-right {
        position: relative;
        color: #fff;
        text-align: left;
    }

    .auth-box .cover {
        background-image: url('../Images/sign-in-bg.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
    }

        .auth-box .cover .overlay {
            position: absolute;
            top: 0;
            display: block;
            width: 100%;
            height: 100%;
            background: var(--main-color);
            background: var(--main-color-alpha);
        }

    .auth-box .heading {
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 26px;
    }

    .auth-box .btn {
        margin-top: 20px;
    }

    .auth-box .copy {
        margin-bottom: 0;
        font-weight: 300;
    }

@media screen and (min-width: 768px) {
    .auth-box {
        width: 34%;
    }
}

/*
 * Other
 */

.entry-key {
    padding-left: 15px;
    padding-right: 5px;
}

.entry-value {
    padding-left: 5px;
    padding-right: 15px;
}

.well {
    border: 1px solid #f2f2f2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.language-flag {
    padding: 0;
    margin-top: -3px;
    height: 14px;
}

.language-collapse-heading {
    background-color: transparent !important;
    padding: 5px 14px !important;
    cursor: pointer;
}

    .language-collapse-heading > .panel-title {
        font-size: 15px;
    }

div.dataTables_wrapper div.dataTables_filter label {
    text-align: right;
}

label {
    display: block;
}

input.error-message {
    margin-top: unset;
    color: unset;
    text-align: left;
}

.error-message {
    margin-top: 5px;
    color: #cc4151;
    text-align: left;
}

textarea.form-control {
    height: 150px;
}

.lnr-checkmark-circle {
    color: green;
    font-weight: 700;
}

.lnr-cross {
    color: red;
    font-weight: 700;
}

.btn-remove .lnr-cross {
    color: initial;
    font-weight: 400;
}

.inline {
    display: inline;
}

.truncate {
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
}

.panel-group {
    margin-bottom: 0;
}

.form-horizontal .control-label {
    text-align: left;
}

table tr td:last-child {
    white-space: nowrap;
    width: 1px;
}

.list-inline {
    margin-left: 0;
}

    .list-inline > li {
        padding-right: 0;
        padding-left: 0;
    }

.active-column {
    width: 100px;
}

.fit {
    width: 1px;
    white-space: nowrap
}

#selectLocationModal .modal-body .lead {
    font-size: 16px;
    font-weight: 300;
}

#selectLocationModal .modal-body iframe {
    width: 100%;
    min-height: 500px;
    border: 1px solid #f3f3f3;
}

.square {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}

    .square p {
        position: absolute;
        top: 50%;
        width: 100%;
        margin-top: 46%;
        text-align: center;
        color: #fff;
        line-height: 1px
    }

.input-group-btn button {
    border-color: #eaeaea;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .input-group-btn button:hover,
    .input-group-btn button:focus {
        border-color: #ccc;
    }

.colorPicker {
    display: inline-block
}

.colorPickerPreview {
    display: inline-block;
    width: 50%;
    height: 124px;
    margin: 0;
    border: #fff;
}

.colorPicker .dropdown-menu {
    border-top-width: 1px;
    border-color: #d4d4d4;
}

.quick-link-thumbnail {
    background-color: #d6d6d6;
    margin-bottom: 0;
    padding: 2px;
}

.thumbnail {
    display: inline-block;
}

#quickLinksForm .thumbnail {
    display: block;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    width: 60px;
    height: 60px
}

    .loader .circle {
        position: absolute;
        width: 38px;
        height: 38px;
        opacity: 0;
        transform: rotate(225deg);
        animation-iteration-count: infinite;
        animation-name: orbit;
        animation-duration: 6s
    }

        .loader .circle:after {
            position: absolute;
            width: 6px;
            height: 6px;
            content: '';
            border-radius: 50%;
            background-color: var(--main-color)
        }

        .loader .circle:nth-child(2) {
            animation-delay: 240ms
        }

        .loader .circle:nth-child(3) {
            animation-delay: 480ms
        }

        .loader .circle:nth-child(4) {
            animation-delay: 720ms
        }

        .loader .circle:nth-child(5) {
            animation-delay: 960ms
        }

@keyframes orbit {
    0% {
        transform: rotate(225deg);
        opacity: 1;
        animation-timing-function: ease-out
    }

    7% {
        transform: rotate(345deg);
        animation-timing-function: linear
    }

    30% {
        transform: rotate(455deg);
        animation-timing-function: ease-in-out
    }

    39% {
        transform: rotate(690deg);
        animation-timing-function: linear
    }

    70% {
        transform: rotate(815deg);
        opacity: 1;
        animation-timing-function: ease-out
    }

    75% {
        transform: rotate(945deg);
        animation-timing-function: ease-out
    }

    76% {
        transform: rotate(945deg);
        opacity: 0
    }

    100% {
        transform: rotate(945deg);
        opacity: 0
    }
}

.fr-toolbar {
    border-top: none !important;
}

#linkStyle-7 {
    display: none;
}

a.gallery:focus {
    outline: none;
}

.gallery-photo-remove {
    position: absolute;
    top: 9px;
    right: 9px;
}

.event-file-remove {
    position: absolute;
    top: 9px;
    right: 9px;
}

.news-file-remove {
    position: absolute;
    top: 9px;
    right: 9px;
}

.document-file-remove {
    position: absolute;
    top: 9px;
    right: 9px;
}

.project-file-remove {
    position: absolute;
    top: 9px;
    right: 9px;
}

.fr-popup .fr-checkbox-line label {
    cursor: pointer !important;
    margin: -8px 25px !important;
    vertical-align: middle !important;
}

input[type=checkbox], input[type=radio] {
    margin: 3px 0 0;
}

.file-icon {
    height: 14px;
    margin-top: -3px;
    margin-right: 5px;
    padding: 0;
    line-height: 1;
}

.panel-form {
    background: #FDFDFD !important;
}

.checkbox-inline {
    padding-top: 0 !important;
}

.fr-wrapper, .fr-toolbar {
    border-radius: 2px !important;
    border: 1px solid #ddd !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.fr-toolbar {
    border-bottom: none !important;
}

.fr-counter {
    bottom: 1px !important;
    margin-right: 1px !important;
}

a[href*="froala.com/wysiwyg-editor"] {
    display: none !important;
}

.badge-outline-primary {
    background: transparent;
    border: 1px solid #FFCB03;
    color: var(--main-color) !important;
}

.text-no-wrap{
    text-wrap: nowrap;
}