@charset "UTF-8";
.custom__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0.0625rem solid rgba(231, 234, 243, 0.7);
    box-shadow: 0 6px 12px rgba(140, 125, 164, 0.08);
    border-radius: .75rem;
    overflow: hidden
}

.custom__card__body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 22px
}

.custom__card__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 0.0625rem solid rgba(231, 234, 243, 0.7)
}

.custom__card__header:first-child {
    border-radius: .6875rem .6875rem 0 0
}

.custom__card__header .h1, .custom__card__header .h2, .custom__card__header .h3, .custom__card__header .h4, .custom__card__header .h5, .custom__card__header .h6, .custom__card__header h1, .custom__card__header h2, .custom__card__header h3, .custom__card__header h4, .custom__card__header h5, .custom__card__header h6 {
    margin: 0;
    text-align: left;
    font-weight: 700
}

.custom__card__header .card-header-title {
    font-size: 16px;
    line-height: 22px
}

.custom__card__cover {
    background: #F7F7F4;
    padding: 15px;
    min-height: 100px;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0.0625rem solid rgba(231, 234, 243, 0.7)
}

.form-row {
    display: flex;
    justify-content: center;
    align-items: center
}

.form-group--merge {
    display: flex
}

.form-group--merge > div {
    width: 100%
}

.form-group--merge > div:first-child .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0
}

.form-group--merge > div:last-child .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0
}

.form-control--light {
    display: block;
    width: 100%;
    height: calc(1.6em + 1.21875rem);
    padding: .54688rem .875rem;
    font-weight: 400;
    line-height: 1.6;
    color: #1e2022;
    background-color: #fff !important;
    background-clip: padding-box;
    border: .0625rem solid #e7eaf3;
    border-radius: .3125rem;
    box-shadow: none;
    transition: all .15s ease-in-out
}

.modal-body--vh {
    height: 100%;
    min-height: 350px;
    overflow-y: auto;
    max-height: calc(100vh - 186px)
}

.modal-dialog--centered {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%) !important
}

.btn__loader__wrapper {
    position: relative
}

.btn__loader__img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.btn__icon__circle {
    display: inline-block;
    height: 32px;
    width: 32px;
    padding: 0;
    margin: 0;
    border-radius: 100%;
    position: relative;
    transition: all ease 0.3s
}

.btn__icon__circle [class^="icon-"], .btn__icon__circle [class*=" icon-"], .btn__icon__circle [class^="glyphicon-"], .btn__icon__circle [class*=" glyphicon-"], .btn__icon__circle [class^="fa-"], .btn__icon__circle [class*=" fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block
}

.custom__checkbox {
    position: absolute;
    opacity: 0
}

.custom__checkbox__wrapper {
    position: relative
}

.custom__checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0
}

.custom__checkbox + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid #d6dbeb;
    background: #e7eaf3;
    transition: all ease 0.3s
}

.custom__checkbox:hover + label:before {
    border-color: #5bc0de;
    background: #5bc0de
}

.custom__checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12)
}

.custom__checkbox:checked + label:before {
    background: #5bc0de;
    border-color: #5bc0de
}

.custom__checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto
}

.custom__checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd
}

.custom__checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    transition: all ease 0.3s
}

.w-0 {
    width: 0%
}

.w-10 {
    width: 10%
}

.w-20 {
    width: 20%
}

.w-30 {
    width: 30%
}

.w-40 {
    width: 40%
}

.w-50 {
    width: 50%
}

.w-60 {
    width: 60%
}

.w-70 {
    width: 70%
}

.w-80 {
    width: 80%
}

.w-90 {
    width: 90%
}

.w-100 {
    width: 100%
}

.flex {
    display: flex
}

.flex.cell {
    flex: 1
}

.flex.equal-sizing > * {
    flex-basis: 0;
    flex-grow: 1
}

.flex.flex-column {
    flex-direction: column
}

.flex.flex-column.top {
    align-content: flex-start
}

.flex.flex-column.bottom {
    align-content: flex-end
}

.flex.flex-column.vertical-center {
    align-content: center
}

.flex.flex-column.space-between {
    align-content: space-between
}

.flex.flex-column.space-around {
    align-content: space-around
}

.flex.flex-row {
    flex-direction: row
}

.flex.flex-row.wrap {
    flex-flow: row wrap
}

.flex.flex-row.top {
    align-items: flex-start
}

.flex.flex-row.bottom {
    align-items: flex-end
}

.flex.flex-row.vertical-center {
    align-items: center
}

.flex.flex-row.baseline {
    align-items: baseline
}

.flex.flex-row.stretch {
    align-items: stretch
}

.flex.flex-top {
    align-items: flex-start
}

.flex.flex-bottom {
    align-items: flex-end
}

.flex.flex-vertical-center {
    align-items: center
}

.flex.flex-baseline {
    align-items: baseline
}

.flex.flex-stretch {
    align-items: stretch
}

.flex.flex-start {
    justify-content: flex-start
}

.flex.flex-end {
    justify-content: flex-end
}

.flex.flex-center {
    justify-content: center
}

.flex.flex-space-between {
    justify-content: space-between
}

.flex.flex-space-around {
    justify-content: space-around
}

.m-0 {
    margin: 0 !important
}

.p-0 {
    padding: 0 !important
}

.m-5 {
    margin: 5px !important
}

.p-5 {
    padding: 5px !important
}

.m-10 {
    margin: 10px !important
}

.p-10 {
    padding: 10px !important
}

.m-15 {
    margin: 15px !important
}

.p-15 {
    padding: 15px !important
}

.m-20 {
    margin: 20px !important
}

.p-20 {
    padding: 20px !important
}

.m-25 {
    margin: 25px !important
}

.p-25 {
    padding: 25px !important
}

.m-30 {
    margin: 30px !important
}

.p-30 {
    padding: 30px !important
}

.m-35 {
    margin: 35px !important
}

.p-35 {
    padding: 35px !important
}

.m-40 {
    margin: 40px !important
}

.p-40 {
    padding: 40px !important
}

.m-45 {
    margin: 45px !important
}

.p-45 {
    padding: 45px !important
}

.m-50 {
    margin: 50px !important
}

.p-50 {
    padding: 50px !important
}

.m-75 {
    margin: 75px !important
}

.p-75 {
    padding: 75px !important
}

.m-100 {
    margin: 100px !important
}

.p-100 {
    padding: 100px !important
}

.mt-0 {
    margin-top: 0 !important
}

.pt-0 {
    padding-top: 0 !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.ml-0 {
    margin-left: 0 !important
}

.pl-0 {
    padding-left: 0 !important
}

.mr-0 {
    margin-right: 0 !important
}

.pr-0 {
    padding-right: 0 !important
}

.mt-5 {
    margin-top: 5px !important
}

.pt-5 {
    padding-top: 5px !important
}

.mb-5 {
    margin-bottom: 5px !important
}

.pb-5 {
    padding-bottom: 5px !important
}

.ml-5 {
    margin-left: 5px !important
}

.pl-5 {
    padding-left: 5px !important
}

.mr-5 {
    margin-right: 5px !important
}

.pr-5 {
    padding-right: 5px !important
}

.mt-10 {
    margin-top: 10px !important
}

.pt-10 {
    padding-top: 10px !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.pb-10 {
    padding-bottom: 10px !important
}

.ml-10 {
    margin-left: 10px !important
}

.pl-10 {
    padding-left: 10px !important
}

.mr-10 {
    margin-right: 10px !important
}

.pr-10 {
    padding-right: 10px !important
}

.mt-15 {
    margin-top: 15px !important
}

.pt-15 {
    padding-top: 15px !important
}

.mb-15 {
    margin-bottom: 15px !important
}

.pb-15 {
    padding-bottom: 15px !important
}

.ml-15 {
    margin-left: 15px !important
}

.pl-15 {
    padding-left: 15px !important
}

.mr-15 {
    margin-right: 15px !important
}

.pr-15 {
    padding-right: 15px !important
}

.mt-20 {
    margin-top: 20px !important
}

.pt-20 {
    padding-top: 20px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.pb-20 {
    padding-bottom: 20px !important
}

.ml-20 {
    margin-left: 20px !important
}

.pl-20 {
    padding-left: 20px !important
}

.mr-20 {
    margin-right: 20px !important
}

.pr-20 {
    padding-right: 20px !important
}

.mt-25 {
    margin-top: 25px !important
}

.pt-25 {
    padding-top: 25px !important
}

.mb-25 {
    margin-bottom: 25px !important
}

.pb-25 {
    padding-bottom: 25px !important
}

.ml-25 {
    margin-left: 25px !important
}

.pl-25 {
    padding-left: 25px !important
}

.mr-25 {
    margin-right: 25px !important
}

.pr-25 {
    padding-right: 25px !important
}

.mt-30 {
    margin-top: 30px !important
}

.pt-30 {
    padding-top: 30px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.pb-30 {
    padding-bottom: 30px !important
}

.ml-30 {
    margin-left: 30px !important
}

.pl-30 {
    padding-left: 30px !important
}

.mr-30 {
    margin-right: 30px !important
}

.pr-30 {
    padding-right: 30px !important
}

.mt-35 {
    margin-top: 35px !important
}

.pt-35 {
    padding-top: 35px !important
}

.mb-35 {
    margin-bottom: 35px !important
}

.pb-35 {
    padding-bottom: 35px !important
}

.ml-35 {
    margin-left: 35px !important
}

.pl-35 {
    padding-left: 35px !important
}

.mr-35 {
    margin-right: 35px !important
}

.pr-35 {
    padding-right: 35px !important
}

.mt-40 {
    margin-top: 40px !important
}

.pt-40 {
    padding-top: 40px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.pb-40 {
    padding-bottom: 40px !important
}

.ml-40 {
    margin-left: 40px !important
}

.pl-40 {
    padding-left: 40px !important
}

.mr-40 {
    margin-right: 40px !important
}

.pr-40 {
    padding-right: 40px !important
}

.mt-45 {
    margin-top: 45px !important
}

.pt-45 {
    padding-top: 45px !important
}

.mb-45 {
    margin-bottom: 45px !important
}

.pb-45 {
    padding-bottom: 45px !important
}

.ml-45 {
    margin-left: 45px !important
}

.pl-45 {
    padding-left: 45px !important
}

.mr-45 {
    margin-right: 45px !important
}

.pr-45 {
    padding-right: 45px !important
}

.mt-50 {
    margin-top: 50px !important
}

.pt-50 {
    padding-top: 50px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.pb-50 {
    padding-bottom: 50px !important
}

.ml-50 {
    margin-left: 50px !important
}

.pl-50 {
    padding-left: 50px !important
}

.mr-50 {
    margin-right: 50px !important
}

.pr-50 {
    padding-right: 50px !important
}

.mt-75 {
    margin-top: 75px !important
}

.pt-75 {
    padding-top: 75px !important
}

.mb-75 {
    margin-bottom: 75px !important
}

.pb-75 {
    padding-bottom: 75px !important
}

.ml-75 {
    margin-left: 75px !important
}

.pl-75 {
    padding-left: 75px !important
}

.mr-75 {
    margin-right: 75px !important
}

.pr-75 {
    padding-right: 75px !important
}

.mt-100 {
    margin-top: 100px !important
}

.pt-100 {
    padding-top: 100px !important
}

.mb-100 {
    margin-bottom: 100px !important
}

.pb-100 {
    padding-bottom: 100px !important
}

.ml-100 {
    margin-left: 100px !important
}

.pl-100 {
    padding-left: 100px !important
}

.mr-100 {
    margin-right: 100px !important
}

.pr-100 {
    padding-right: 100px !important
}

.audioplayer__wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F7F7F4;
    padding: 5px;
    border-radius: 200px;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden
}

.audioplayer__wrapper__sm {
    padding: 0 10px;
    border-radius: 5px
}

.audioplayer__wrapper__sm .audioplayer__playpause__wrapper {
    margin-right: 10px
}

.audioplayer__wrapper__sm .audioplayer__time {
    right: 5px;
    font-size: 10px;
    font-weight: 300
}

.audioplayer__wrapper__sm .audioplayer__time > li:not(:last-child) {
    margin-right: 3px
}

.audioplayer__playpause__wrapper {
    max-width: 90px;
    width: 100%;
    text-align: center;
    margin-right: 15px
}

.audioplayer__content {
    width: 100%;
    min-width: 320px;
    position: relative
}

.audioplayer__time {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    right: 30px;
    bottom: 0;
    display: flex
}

.audioplayer__time > li:not(:last-child) {
    margin-right: 6px
}

.audioplayer__note {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%)
}

.audioplayer__loader {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.75);
    width: 100%;
    height: 100%;
    z-index: 99;
    font-size: 24px;
    color: #333
}

.audioplayer__loader [class^="icon-"], .audioplayer__loader [class*=" icon-"], .audioplayer__loader [class^="glyphicon-"], .audioplayer__loader [class*=" glyphicon-"], .audioplayer__loader [class^="fa-"], .audioplayer__loader [class*=" fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block
}

region.wavesurfer-region {
    position: absolute;
    z-index: 9
}

region.wavesurfer-region:before {
    white-space: nowrap;
    content: attr(data-region-label);
    background: #337ab7;
    color: #fff;
    padding: 1px 2px;
    font-size: 12px;
    line-height: 14px;
    position: absolute;
    border-radius: 4px;
    font-weight: 300
}

region.wavesurfer-region[data-region-highlight] {
    border: 1px solid #56b4ef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset, 0px 0 8px rgba(82, 168, 236, 0.6)
}

.tox-silver-sink {
    z-index: 9900 !important
}

.customModalVideoPlayer {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block
}

.customModalVideoPlayer__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none
}

.customModalVideoPlayer__body {
    max-width: 680px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.customModalVideoPlayer__close {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    height: 20px;
    width: 20px;
    background: #fff;
    z-index: 1;
    opacity: 0.5;
    transition: all ease 0.3s
}

.customModalVideoPlayer__close:before, .customModalVideoPlayer__close:after {
    content: "";
    height: 2px;
    width: 80%;
    display: block;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg)
}

.customModalVideoPlayer__close:before {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.customModalVideoPlayer__close:hover, .customModalVideoPlayer__close:focus {
    opacity: 1
}

.modal .modal-dialog {
    margin-top: 80px
}

.datatable-custom {
    position: relative;
    clear: both;
    border: 1px solid #ddd;
    border-radius: 4px
}

.datatable-custom .dataTable {
    border: 0 !important
}

.datatable-custom .dataTable thead .sorting {
    position: relative
}

.datatable-custom .dataTable thead .sorting::before, .datatable-custom .dataTable thead .sorting::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all ease 0.3s;
    width: 0;
    height: 0
}

.datatable-custom .dataTable thead .sorting::before {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #fff
}

.datatable-custom .dataTable thead .sorting::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #fff
}

.datatable-custom .dataTable thead .sorting.sorting_asc::before {
    opacity: 1
}

.datatable-custom .dataTable thead .sorting.sorting_desc::after {
    opacity: 1
}

.datatable-custom .light-table thead th:last-child, .datatable-custom .light-table tbody tr td:last-child, .datatable-custom .light-table thead tr th:first-child, .datatable-custom .light-table tbody tr td:first-child {
    border-radius: 0
}

.datatable-custom__togglecols {
    display: block;
    width: 100%;
    line-height: 18px;
    font-size: 14px;
    padding: 4px 4px 4px 26px;
    position: relative;
    cursor: pointer
}

.datatable-custom__togglecols::before {
    content: "";
    display: block;
    height: 14px;
    width: 14px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #999;
    transition: all ease 0.3s;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    z-index: 1
}

.datatable-custom__togglecols::after {
    opacity: 0;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    font-weight: 700;
    content: "\2714";
    display: block;
    transition: all ease 0.3s;
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translateY(-50%);
    z-index: 2
}

.datatable-custom__togglecols.active::after {
    opacity: 1
}

.datatable-custom__togglecols.active::before {
    background-color: #0075ff;
    border-color: #0075ff
}

.datatable-custom__togglecols__list {
    min-width: 160px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.149);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99
}

.datatable-custom__togglecols__list.active {
    display: block
}

.datatable-custom__col--action .btn-group {
    margin: 0 auto
}

.datatable-custom__header {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.datatable-custom__header .dataTables_length label {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 160px
}

.datatable-custom__header .dataTables_length select {
    width: auto;
    margin-left: 10px
}

.datatable-custom__pagination .dataTables_paginate {
    display: block;
    padding-left: 0;
    margin: 20px 0
}

.datatable-custom__pagination .dataTables_paginate .paginate_button, .datatable-custom__pagination .dataTables_paginate .ellipsis {
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.4;
    color: #222;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.datatable-custom__pagination .dataTables_paginate .paginate_button:hover, .datatable-custom__pagination .dataTables_paginate .paginate_button:focus, .datatable-custom__pagination .dataTables_paginate .ellipsis:hover, .datatable-custom__pagination .dataTables_paginate .ellipsis:focus {
    z-index: 2;
    color: #333;
    background-color: #eee;
    border-color: #ddd
}

.datatable-custom__pagination .dataTables_paginate .paginate_button.previous, .datatable-custom__pagination .dataTables_paginate .ellipsis.previous {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.datatable-custom__pagination .dataTables_paginate .paginate_button.next, .datatable-custom__pagination .dataTables_paginate .ellipsis.next {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.datatable-custom__pagination .dataTables_paginate .paginate_button.current, .datatable-custom__pagination .dataTables_paginate .ellipsis.current {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #3097D1;
    border-color: #3097D1
}

.datatable-custom__pagination .dataTables_paginate .paginate_button.disabled, .datatable-custom__pagination .dataTables_paginate .ellipsis.disabled {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.datatable-custom__pagination .dataTables_paginate .paginate_button.disabled:hover, .datatable-custom__pagination .dataTables_paginate .paginate_button.disabled:focus, .datatable-custom__pagination .dataTables_paginate .ellipsis.disabled:hover, .datatable-custom__pagination .dataTables_paginate .ellipsis.disabled:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.datatable-custom__pagination .dataTables_paginate .ellipsis {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.pic-holder {
    position: absolute;
    text-align: left;
    padding: 0 0 0 -20px;
    margin: 10px 0 20px -10px
}

.pic-holder img {
    padding: 0;
    width: 160px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid #f1f2f7;
    vertical-align: middle;
    transition: opacity .5s ease
}

.pic-holder button {
    position: absolute;
    display: none;
    opacity: 0;
    transition: opacity .5s
}

.pic-holder button.delete-pic {
    top: 0;
    right: 0;
    transition: top 0.4s, right 0.4s
}

.pic-holder:hover img {
    opacity: 0.5
}

.pic-holder:hover button {
    display: block;
    opacity: 1
}

.avatar-upload {
    position: relative;
    max-width: 150px;
    margin: 0
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: -3px;
    z-index: 1;
    top: 0
}

.avatar-upload .avatar-edit input {
    display: none
}

.avatar-upload .avatar-edit input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFF;
    border: 1px solid transparent;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out
}

.avatar-upload .avatar-edit input + label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6
}

.avatar-upload .avatar-edit input + label:after {
    content: "\F040";
    font-family: 'FontAwesome';
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto
}

.avatar-upload .avatar-preview {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1)
}

.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.user-info--floating {
    overflow: inherit
}

.user-info--floating .user-info--wrapper {
    overflow: hidden
}

.user-role-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 25px 0 0
}

.user-role-wrapper .user-info__role {
    margin: 0 10px 15px 0;
    position: relative;
    border-right: solid 1px;
    padding: 0 10px 0 0
}

.user-role-wrapper .user-info__role:last-child {
    padding: 0;
    margin-right: 0;
    border: 0
}

.user-info .user-dropdown__role .dropdown-menus {
    position: absolute;
    top: -20%;
    left: 50%;
    overflow: initial;
    background: #000;
    background-clip: padding-box;
    border: 1px solid #021b2b;
    border-radius: 10px;
    min-height: auto;
    min-width: 275px;
    transform: translate(-50%, -100%);
    height: auto;
    display: none;
    z-index: 1000
}

.user-info .user-dropdown__role .dropdown-menus.active {
    display: block;
    opacity: 1
}

.user-info .user-dropdown__role .dropdown-menus:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #000;
    position: absolute;
    bottom: -10px;
    left: 45%;
    transform: rotate(180deg)
}

.user-info .user-dropdown__role .dropdown-menus .dropdown-item {
    color: #fff;
    display: block;
    text-align: center;
    border-bottom: solid 1px #09243a
}

.user-info .user-dropdown__role .dropdown-menus .dropdown-item:last-child {
    border-bottom: 0
}

.user-info .user-dropdown__role .dropdown-menus .dropdown-item:hover {
    color: #007de3
}

#loading {
    position: fixed;
    top: 0;
    left: 0
}

.sidebar, .content {
    transition: all ease 0.3s
}

.page__banner {
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 242px;
    background-attachment: fixed;
    position: relative
}

.page__banner__overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.page__banner__text {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.2;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%)
}

.page__portal__content {
    margin-top: -42px;
    padding: 22px !important;
    background: #f1f5f9;
    box-shadow: 0 6px 12px rgba(140, 152, 164, 0.08);
    border-radius: 0.75rem;
    border: 1px solid rgba(231, 234, 243, 0.7);
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 1
}

.ds-card {
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(140, 152, 164, 0.08);
    border-radius: 0.75rem;
    border: 1px solid rgba(231, 234, 243, 0.7);
    transition: all 0.3s ease 0s
}

.ds-card__header, .ds-card__body, .ds-card__footer {
    padding: 1.42857143rem
}

.ds-card__header {
    padding-bottom: 0
}

.ds-card__header .h1, .ds-card__header .h2, .ds-card__header .h3, .ds-card__header .h4, .ds-card__header .h5, .ds-card__header .h6, .ds-card__header h1, .ds-card__header h2, .ds-card__header h3, .ds-card__header h4, .ds-card__header h5, .ds-card__header h6 {
    margin: 0;
    font-weight: 700;
    color: #1e293b
}

.ds-card__header .fas, .ds-card__header .fa, .ds-card__header [class^="icon-"], .ds-card__header [class*=" icon-"], .ds-card__header .glyphicon {
    font-weight: inherit
}

.ds-card__footer {
    padding-top: 0
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.d-flex {
    display: flex !important
}

.flex-row {
    flex-direction: row !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column {
    flex-direction: column !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-space-between {
    justify-content: space-between !important
}

.justify-content-space-around {
    justify-content: space-around !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.form__card {
    background: #f6f6f6;
    margin: 0 0 25px;
    padding: 25px 15px;
    border-radius: 5px
}

.form__card.field-group .row:first-child .btn-remove {
    display: none
}

.form__card .multiselect-container > li > a > label.checkbox, .form__card .multiselect-container > li > a > label.radio {
    white-space: normal;
    border-bottom: solid 1px #ededed;
    padding: 15px 25px
}

.form__card .multiselect-container.dropdown-menu {
    max-height: 500px;
    overflow: scroll;
    overflow-x: hidden;
    margin: 0;
    z-index: 9;
    transform: translate(0, 0) !important
}

.form__card .multiselect-container.dropdown-menu .multiselect-filter .multiselect-search {
    border: 1px solid #999
}

.form__card .multiselect-container.dropdown-menu .multiselect-filter .multiselect-clear-filter {
    border: 1px solid #999
}

.form__card .multiselect-container.dropdown-menu .multiselect-filter .multiselect-clear-filter .btn {
    padding: 4px 12px
}

.form__card .btn-add-new {
    transform: translateY(25px)
}

.form__card .btn-add-new .form__card .btn-add-new .fa {
    color: #fff
}

.form__card .btn-remove {
    transform: translateY(25px)
}

.form__card input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
    font-family: 'Arial'
}

.form__card input[type=checkbox] {
    display: none
}

.form__card input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #000;
    border-radius: 0.2em;
    display: inline-block;
    width: 1em;
    height: 1em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s
}

.form__card input[type=checkbox] + label:active:before {
    transform: scale(0)
}

.form__card input[type=checkbox]:checked + label:before {
    background-color: #ED820A;
    border-color: #ED820A;
    color: #fff
}

.form__card input[type=checkbox]:disabled + label:before {
    transform: scale(1);
    border-color: #aaa
}

.form__card input[type=checkbox]:checked:disabled + label:before {
    transform: scale(1);
    background-color: #F7C28F;
    border-color: #F7C28F
}

.form__card input, .form__card select {
    background-color: #fff !important;
    border-color: #ece8e8
}

.form__card input:invalid, .form__card select:invalid {
    border-color: #B94A48
}

.form__card .ratings h5 {
    margin: 0
}

.form__card .ratings .modulecamprating-item {
    background-color: #fff;
    border-color: #ece8e8
}

.form__card .ratings .modulecamprating-item input {
    max-width: 45px;
    text-align: center;
    border: 0
}

.form__card .ratings_slider_value {
    color: #979797;
    font-weight: bold;
    display: block;
    font-size: 18px
}

.fc-daygrid-event {
    white-space: break-spaces !important
}


.containerLicenseWarning{
    width: 100%;
    height: 40px;
    background: #F80227FF;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 10px;
    align-content: center;
    gap: 10px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    justify-content: flex-start;
}