﻿@-webkit-keyframes status-pulse {
    from {
        transform: scale(0.5, 0.5);
        opacity: 1
    }

    to {
        transform: scale(2, 2);
        opacity: 0
    }
}

@keyframes status-pulse {
    from {
        transform: scale(0.5, 0.5);
        opacity: 1
    }

    to {
        transform: scale(2, 2);
        opacity: 0
    }
}

[tooltip] {
    position: relative
}

[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    font-size: 15px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0
}

[tooltip]::before {
    content: "";
    border: 5px solid rgba(0, 0, 0, 0);
    z-index: 1001
}

[tooltip]::after {
    content: attr(tooltip);
    font-size: 12px;
    text-align: center;
    min-width: 50px;
    max-width: 180px;
    height: 25px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px 10px;
    border-radius: 3px;
    box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, .35);
    background: #000;
    color: #fff;
    z-index: 1000
}

[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block
}

[tooltip=""]::before,
[tooltip=""]::after {
    display: none !important
}

[tooltip]:not([flow])::before,
[tooltip][flow^=up]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #000
}

[tooltip]:not([flow])::after,
[tooltip][flow^=up]::after {
    bottom: calc(100% + 0px)
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^=up]::before,
[tooltip][flow^=up]::after {
    left: 50%;
    transform: translate(-50%, -0.5em)
}

[tooltip][flow^=down]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #000
}

[tooltip][flow^=down]::after {
    top: calc(100% + 5px)
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
    left: 50%;
    transform: translate(-50%, 0.5em)
}

[tooltip][flow^=left]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #000;
    left: calc(0em - 5px);
    transform: translate(-0.5em, -50%)
}

[tooltip][flow^=left]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-0.5em, -50%)
}

[tooltip][flow^=right]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #000;
    right: calc(0em - 5px);
    transform: translate(0.5em, -50%)
}

[tooltip][flow^=right]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(0.5em, -50%)
}

@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0)
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%)
    }
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
    animation: tooltips-vert 150ms ease-out forwards
}

[tooltip][flow^=left]:hover::before,
[tooltip][flow^=left]:hover::after,
[tooltip][flow^=right]:hover::before,
[tooltip][flow^=right]:hover::after {
    animation: tooltips-horz 150ms ease-out forwards
}

[tooltip]:hover::before {
    top: -5px
}

[tooltip]:hover::after {
    top: -30px
}

[tooltip][flow^=left]::before {
    top: 8px
}

[tooltip][flow^=left]::after {
    top: 8px
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #f5f5f5
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #777
}

body {
    background: #f5f7fa;
    font-family: "Cairo", sans-serif
}

.form-control,
.btn {
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out
}

.cursor-pointer {
    cursor: pointer
}

.row.row-sm {
    margin: 0 -7.5px
}

.row.row-sm [class^=col-] {
    padding: 0 7.5px
}

.invalid-feedback {
    font-size: 80%;
    font-weight: 600
}

.bg-orange {
    background: var(--orange) !important
}

.text-orange {
    color: var(--orange) !important
}

.pointer-event {
    cursor: pointer
}

.window-loader {
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
    border: 12px solid #d4d6dd;
    border-top: 12px solid #2c6ef1;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: loader-spin .5s linear infinite;
    -webkit-animation: loader-spin .5s linear infinite;
    -moz-animation: loader-spin .5s linear infinite;
    -o-animation: loader-spin .5s linear infinite;
    -ms-animation: loader-spin .5s linear infinite;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 999;
    margin-top: -40px;
    margin-left: -40px
}

.widget-loader {
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
    border: 6px solid #d4d6dd;
    border-top: 6px solid #2c6ef1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: block;
    margin: 15px auto;
    animation: loader-spin .5s linear infinite;
    -webkit-animation: loader-spin .5s linear infinite;
    -moz-animation: loader-spin .5s linear infinite;
    -o-animation: loader-spin .5s linear infinite;
    -ms-animation: loader-spin .5s linear infinite
}

.widget-loader.widget-loader-sm {
    border: 3px solid #d4d6dd;
    border-top: 3px solid #2c6ef1;
    width: 25px;
    height: 25px
}

.hidden_scroll {
    opacity: 0;
    visibility: hidden
}

.visible_scroll {
    opacity: 1;
    visibility: visible
}

.clear-5 {
    height: 5px;
    overflow: hidden;
    clear: both
}

.clear-10 {
    height: 10px;
    overflow: hidden;
    clear: both
}

.clear-15 {
    height: 15px;
    overflow: hidden;
    clear: both
}

.clear-20 {
    height: 20px;
    overflow: hidden;
    clear: both
}

.clear-30 {
    height: 30px;
    overflow: hidden;
    clear: both
}

.font-s-12 {
    font-size: 12px
}

.font-s-13 {
    font-size: 13px
}

.font-s-14 {
    font-size: 14px
}

.font-w-400 {
    font-weight: 400
}

.font-w-600 {
    font-weight: 600
}

.font-w-700 {
    font-weight: 700
}

.font-w-900 {
    font-weight: 900
}

.pr-6 {
    padding-right: 60px !important
}

.pr-7 {
    padding-right: 70px !important
}

.pr-8 {
    padding-right: 80px !important
}

.pr-9 {
    padding-right: 90px !important
}

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

.pr-12 {
    padding-right: 120px !important
}

.pr-14 {
    padding-right: 140px !important
}

.margin-t-5 {
    margin-top: 5px
}

.margin-t-10 {
    margin-top: 10px
}

.margin-t-15 {
    margin-top: 15px
}

.margin-t-20 {
    margin-top: 20px
}

.custom-control-label {
    cursor: pointer
}

.custom-control.custom-control-lg {
    padding-left: 2rem
}

.custom-control.custom-control-lg .custom-control-label:before {
    width: 22px;
    height: 22px;
    top: 2px;
    left: -2rem
}

.custom-control.custom-control-lg .custom-control-label:after {
    background-size: 100%;
    left: -27px;
    top: 5px;
    width: 12px
}

.form-control-label {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer
}

.form-control-placeholder-label {
    position: relative
}

.form-control-placeholder-label>label {
    background: #fff;
    height: 10px;
    padding: 0 6px;
    line-height: 10px;
    font-size: 16px;
    color: #6c757d;
    display: block;
    position: absolute;
    top: 13px;
    left: 8px;
    z-index: 1;
    transition: all .1s ease-in-out
}

.form-control-placeholder-label.placeholder-label-lg .form-control {
    font-size: 18px
}

.form-control-placeholder-label.placeholder-label-lg>label {
    top: 17px;
    left: 12px;
    height: 10px;
    padding: 0 6px;
    line-height: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #6c757d
}

.form-control-placeholder-label.placeholder-label-has-icon>.input-group .form-control:focus+label,
.form-control-placeholder-label.placeholder-label-has-icon>.input-group .form-control:not(:focus):valid+label {
    top: -5px;
    z-index: 3;
    left: 50px !important;
    font-size: 14px
}

.form-control-placeholder-label.placeholder-label-has-icon>.input-group>label {
    background: #fff;
    height: 10px;
    padding: 0 6px;
    line-height: 10px;
    font-size: 16px;
    color: #aaa;
    display: block;
    position: absolute;
    top: 13px;
    left: 46px;
    z-index: 1;
    transition: all .1s ease-in-out
}

.form-control-placeholder-label .form-control {
    background: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 2;
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.form-control-placeholder-label .form-control:focus+label,
.form-control-placeholder-label .form-control:not(:focus):valid+label {
    top: -5px;
    z-index: 3;
    left: 15px;
    font-size: 14px
}

.form-floating {
    position: relative
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem .75rem;
    font-weight: 600;
    font-size: 18px
}

.form-floating>.form-control.is-invalid,
.form-floating>.form-select.is-invalid {
    background: none !important
}

.form-floating>label {
    font-weight: 600;
    font-size: 18px;
    color: #758290;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem .75rem;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0);
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

@media(prefers-reduced-motion: reduce) {
    .form-floating>label {
        transition: none
    }
}

.form-floating>.form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0)
}

.form-floating>.form-control::placeholder {
    color: rgba(0, 0, 0, 0)
}

.form-floating>.form-control:not(:-moz-placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
    opacity: .65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: .65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
}

.form-floating>.form-control:-webkit-autofill~label {
    opacity: .65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
}

.btn-light,
.btn-outline-light {
    background: #fff;
    border: 1px solid #d8dce3 !important;
    color: #555
}

.btn-light:hover:not([disabled]),
.btn-light:focus:not([disabled]),
.btn-light:active:not([disabled]),
.btn-light.active,
.btn-outline-light:hover:not([disabled]),
.btn-outline-light:focus:not([disabled]),
.btn-outline-light:active:not([disabled]),
.btn-outline-light.active {
    background: #f1f4f6 !important;
    border-color: #b6b9c3 !important
}

.btn[disabled],
.btn.disabled {
    cursor: default !important
}

.form-group.has-icon .form-control {
    padding-left: 2.375rem
}

.form-group.has-icon .form-control.form-control-sm {
    padding-left: 1.9rem
}

.table.table-layout-fixed {
    table-layout: fixed
}

.table.table-align-middle tbody td {
    vertical-align: middle
}

.form-group.has-icon .form-control-icon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #666
}

.form-group.has-icon .form-control-icon.form-control-icon-sm {
    font-size: 14px;
    line-height: 2rem;
    width: 2rem;
    height: 2rem
}

.modal a,
.modal button,
.modal input {
    outline: none !important
}

.modal .modal-content {
    box-shadow: 0 2px 10px -1px rgba(0, 0, 0, .45)
}

hr.divider {
    position: relative;
    border: none;
    height: 1px;
    background: #ddd
}

hr.divider:before {
    content: attr(data-content);
    display: inline-block;
    background: #fff;
    font-weight: bold;
    font-size: 14px;
    color: #999;
    padding: 5px 15px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.go-up {
    background: #2c6ef1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
    border: 0;
    width: 45px;
    height: 45px;
    color: #fff;
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 18px;
    display: none;
    outline: none !important;
    cursor: pointer;
    border-radius: 100% 100% 100% 100%;
    -moz-border-radius: 100% 100% 100% 100%;
    -webkit-border-radius: 100% 100% 100% 100%;
    -o-border-radius: 100% 100% 100% 100%;
    -ms-border-radius: 100% 100% 100% 100%
}

.go-up:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

.go-up:hover:before {
    height: 100%
}

.badge.badge-outlined {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0)
}

.badge.badge-outlined.badge-primary {
    border-color: var(--primary);
    color: var(--primary)
}

.badge.badge-outlined.badge-secondary {
    border-color: var(--secondary);
    color: var(--secondary)
}

.badge.badge-outlined.badge-success {
    border-color: var(--success);
    color: var(--success)
}

.badge.badge-outlined.badge-warning {
    border-color: #f36d09;
    color: #de6306
}

.badge.badge-outlined.badge-info {
    border-color: var(--info);
    color: var(--info)
}

.badge.badge-outlined.badge-danger {
    border-color: var(--danger);
    color: var(--danger)
}

.chosen-container-single .chosen-single {
    cursor: pointer
}

.chosen-container-single .chosen-single div:after,
.chosen-container-active.chosen-with-drop .chosen-single div:after {
    width: 2.45rem;
    background-size: 1.45rem 1.45rem
}

.chosen-container-active .chosen-single {
    border-color: #80bdff;
    outline: 0
}

.chosen-container-single .chosen-single span {
    line-height: 34px
}

.modal-body.modal-loading {
    position: relative;
    overflow: hidden
}

.modal-body.modal-loading:before {
    background: rgba(255, 255, 255, .25);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    cursor: progress;
    content: ""
}

.modal-body.modal-loading:after {
    box-shadow: 0 0 45px rgba(0, 0, 0, .45);
    border: 4px solid #b9bac4;
    border-top: 4px solid #2c6ef1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: block;
    animation: loader-spin .5s linear infinite;
    -webkit-animation: loader-spin .5s linear infinite;
    -moz-animation: loader-spin .5s linear infinite;
    -o-animation: loader-spin .5s linear infinite;
    -ms-animation: loader-spin .5s linear infinite;
    position: absolute;
    z-index: 55;
    left: 50%;
    top: 50%;
    margin-top: -40px;
    margin-left: -20px;
    content: ""
}

.chosen-container-single .chosen-single div {
    width: 38px;
    background-color: #e9ecef;
    border-left: 1px solid #ced4da
}

.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: 1px solid #80bdff
}

.chosen-container-single .chosen-single div:after,
.chosen-container-active.chosen-with-drop .chosen-single div:after {
    left: -9px
}

.chosen-container .chosen-results {
    margin: 8px 8px 8px 0
}

.chosen-container .chosen-results::-webkit-scrollbar-track {
    border-radius: 10px
}

.chosen-container .chosen-results::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
    border-radius: 10px
}

.chosen-container .chosen-results::-webkit-scrollbar-thumb {
    border-radius: 10px
}

.chosen-container .chosen-results li {
    margin: 0 10px;
    border-radius: 4px;
    padding: .2rem .25rem .3rem .7rem
}

.chosen-container .chosen-results li.result-selected {
    color: var(--primary);
    padding-left: 1.5rem;
    font-weight: 600
}

.chosen-container .chosen-results li.highlighted {
    color: #fff
}

.chosen-container-single a:not([href]):not([tabindex]).chosen-single:not(.chosen-default) {
    color: #495057 !important
}

.chosen-container-single .chosen-search input[type=text] {
    padding: 2px 8px 4px 8px
}

.chosen-container-single .chosen-search input[type=text]:focus {
    border-color: #80bdff
}

.btn-loading .spinner-border {
    float: left;
    margin: 5px 5px 0 0;
    -webkit-animation: .55s linear infinite spinner-border;
    animation: .5s linear infinite spinner-border
}

.btn-loading.btn-sm .spinner-border {
    border-width: 2px;
    width: 14px;
    height: 14px;
    margin-top: 4px
}

.card-body.loading {
    position: relative;
    min-height: 100px
}

.card-body.loading:before {
    background: rgba(255, 255, 255, .25);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    cursor: progress;
    content: ""
}

.card-body.loading:after {
    box-shadow: 0 0 45px rgba(0, 0, 0, .45);
    border: 4px solid #b9bac4;
    border-top: 4px solid #2c6ef1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: block;
    animation: loader-spin .5s linear infinite;
    -webkit-animation: loader-spin .5s linear infinite;
    -moz-animation: loader-spin .5s linear infinite;
    -o-animation: loader-spin .5s linear infinite;
    -ms-animation: loader-spin .5s linear infinite;
    position: absolute;
    z-index: 55;
    left: 50%;
    top: 50%;
    margin-top: -15px;
    margin-left: -15px;
    content: ""
}

#nprogress .spinner {
    bottom: 15px;
    top: inherit
}

#toast-container .toast {
    box-shadow: none !important;
    opacity: 1 !important;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.notifications-page-list .list-group-item .media {
    align-items: center
}

.notifications-page-list .list-group-item .media .media-left {
    margin-right: 15px;
    position: relative
}

.notifications-page-list .list-group-item .media .media-left .notifications-type-icon {
    background: var(--primary);
    width: 24px;
    height: 24px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: -5px;
    right: -5px;
    z-index: 15;
    border-radius: 50%
}

.notifications-page-list .list-group-item .media .media-left .notifications-type-icon.new-reply {
    background: var(--success)
}

.notifications-page-list .list-group-item .media .media-left .notifications-type-icon.assigned-ticket {
    background: var(--purple)
}

.notifications-page-list .list-group-item .media .media-left .notifications-type-icon.rated-ticket {
    background: var(--orange)
}

.notifications-page-list .list-group-item .media .media-left .notifications-type-icon.closed-ticket {
    background: var(--danger)
}

.notifications-page-list .list-group-item .media .media-left .notifications-type-icon.reopen-ticket {
    background: var(--info)
}

.notifications-page-list .list-group-item .media .media-left .notifications-type-icon>i {
    font-size: 11px
}

.notifications-page-list .list-group-item .media .media-left img {
    width: 45px;
    height: 45px;
    border-radius: 50%
}

.notifications-page-list .list-group-item .media p.text {
    white-space: normal;
    width: 88%;
    margin-bottom: 0;
    color: #666
}

.notifications-page-list .list-group-item .media p.text b {
    font-weight: 600;
    color: #222
}

.notifications-page-list .list-group-item .media .timestamp {
    font-size: 13px;
    color: #888
}

.notifications-page-list .list-group-item.is-unread {
    background: rgba(235, 240, 245, .25);
    position: relative
}

.notifications-page-list .list-group-item.is-unread .media .timestamp {
    font-weight: 700;
    color: var(--primary)
}

.notifications-page-list .list-group-item.is-unread:after {
    background: var(--primary);
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -5px;
    border-radius: 50%;
    content: ""
}

.notifications-page-list .list-group-item.is-unread:hover {
    background: rgba(235, 240, 245, .75)
}

.notifications-page-list .list-group-item.is-unread:active {
    background: rgba(235, 240, 245, .95)
}

.alert {
    border: none;
    font-weight: 600
}

.alert .alert-icon {
    font-size: 25px;
    margin: 0 10px 0 0;
    float: left
}

.alert .close {
    color: #333;
    text-shadow: none;
    opacity: .9;
    padding: .6rem .95rem;
    transition: all .2s ease-in-out
}

.alert .close i {
    font-size: 20px
}

.alert .close:hover {
    opacity: 1;
    color: #fff
}

.alert.alert-close-em {
    padding: 16px
}

.alert.alert-close-em .close {
    padding: 0
}

.note-editor.note-airframe .note-statusbar.locked .note-resizebar .note-icon-bar,
.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar {
    display: block !important
}

.star-rating-group {
    font-size: 16px;
    unicode-bidi: bidi-override;
    direction: rtl;
    word-spacing: -1em;
    text-align: center;
    display: inline-block
}

.star-rating-group * {
    cursor: pointer
}

.star-rating-group label {
    padding: 0 2px;
    margin: 9px 0 0 0;
    height: 20px;
    line-height: 20px;
    overflow: hidden
}

.star-rating-group.star-rating-lg {
    font-size: 21px
}

.star-rating-group.star-rating-lg label {
    height: 25px;
    line-height: 25px
}

.star-rating-group>input {
    display: none
}

.star-rating-group>input+label .fa-star.active {
    display: none
}

.star-rating-group>input:checked~label .fa-star.active,
.star-rating-group>input+label:hover~label .fa-star.active,
.star-rating-group>input+label:hover .fa-star.active {
    display: inline
}

.star-rating-group>input:checked~label .fa-star,
.star-rating-group>input+label:hover~label .fa-star,
.star-rating-group>input+label:hover .fa-star {
    display: none
}

.star-rating-group label .fa-star.active {
    display: none
}

.star-rating-group input:checked fa-star {
    display: none
}

.star-rating-group .fa-ban {
    color: #c65c5c;
    position: relative;
    top: 1px;
    transition: all .2s ease-in-out
}

.star-rating-group .fa-ban:hover {
    color: #e92828
}

.star-rating-group .fa-star {
    color: #8891a2
}

.star-rating-group .fa-star.active {
    color: #fa0
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #666
}

.btn-outline-light.disabled:hover,
.btn-outline-light:disabled:hover {
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: #d8dce3 !important
}

.form-group.has-show-password {
    position: relative
}

.form-group.has-show-password .btn-show-password {
    background: #fff;
    border: 0;
    outline: none !important;
    width: 30px;
    height: 30px;
    color: #666;
    line-height: 23px;
    text-align: center;
    font-size: 18px;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 20;
    border-radius: 5px;
    transition: all .2s ease-in-out
}

.form-group.has-show-password .btn-show-password:hover {
    background: #f5f5f5;
    color: #333
}

.ng-password-strength {
    display: grid;
    column-gap: 10px;
    grid-template-columns: auto auto auto auto auto;
    margin: 10px 5px 0 5px
}

.ng-password-strength>span {
    background: #ddd;
    height: 5px;
    border-radius: 7px;
    transition: all .3s ease-in-out
}

.ng-password-strength.password-very-week span:nth-of-type(1) {
    background: #fc4f4a
}

.ng-password-strength.password-week span:nth-of-type(1) {
    background: #fd7a1c
}

.ng-password-strength.password-week span:nth-of-type(2) {
    background: #fd7a1c
}

.ng-password-strength.password-low span:nth-of-type(1) {
    background: #e3b30c
}

.ng-password-strength.password-low span:nth-of-type(2) {
    background: #e3b30c
}

.ng-password-strength.password-low span:nth-of-type(3) {
    background: #e3b30c
}

.ng-password-strength.password-medium span:nth-of-type(1) {
    background: #abbb16
}

.ng-password-strength.password-medium span:nth-of-type(2) {
    background: #abbb16
}

.ng-password-strength.password-medium span:nth-of-type(3) {
    background: #abbb16
}

.ng-password-strength.password-medium span:nth-of-type(4) {
    background: #abbb16
}

.ng-password-strength.password-strong span:nth-of-type(1) {
    background: #2ac25f
}

.ng-password-strength.password-strong span:nth-of-type(2) {
    background: #2ac25f
}

.ng-password-strength.password-strong span:nth-of-type(3) {
    background: #2ac25f
}

.ng-password-strength.password-strong span:nth-of-type(4) {
    background: #2ac25f
}

.ng-password-strength.password-strong span:nth-of-type(5) {
    background: #2ac25f
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes loader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-moz-keyframes loader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-o-keyframes loader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-ms-keyframes loader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

#Wrapper {
    margin: 0px;
    visibility: hidden;
    position: relative;
    left: 0px;
    transition: all .3s ease-in-out
}

#Wrapper .Header {
    background: #fff;
    height: 80px
}

#Wrapper .Header .logo {
    background-size: 35px;
    height: 80px;
    line-height: 80px;
    display: flex;
    align-items: center
}

#Wrapper .Header .logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: #555;
    display: flex;
    align-items: center
}

#Wrapper .Header .logo a>img {
    max-height: 60px;
    max-width: 145px;
    margin-right: 10px
}

#Wrapper .Header .logo a>span {
    color: #1455d5
}

#Wrapper .Header .logo.logo-small>a>img {
    max-height: 32px;
    margin-right: 10px
}

#Wrapper .Header .logo.logo-medium>a>img {
    max-height: 40px;
    margin-right: 10px
}

#Wrapper .Header .logo.logo-lage>a>img {
    max-height: 60px;
    margin-right: 10px
}

#Wrapper .Header .menu {
    height: 80px
}

#Wrapper .Header .menu .btn.btn-login {
    background: #f5f7fa;
    border: 0px !important;
    box-shadow: none !important;
    float: right;
    min-width: 100px;
    margin-top: 22px;
    color: rgba(0, 0, 0, .55);
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px
}

#Wrapper .Header .menu .btn.btn-login>i {
    display: inline-block;
    margin-right: 5px;
    font-size: 14px
}

#Wrapper .Header .menu .btn.btn-login:hover,
#Wrapper .Header .menu .btn.btn-login:active {
    background: #1455d5;
    color: #fff
}

#Wrapper .Header .menu ul.user-menu {
    float: right
}

#Wrapper .Header .menu ul.user-menu .dropdown-item:focus,
#Wrapper .Header .menu ul.user-menu .dropdown-item:hover,
#Wrapper .Header .menu ul.user-menu .dropdown-item:active {
    text-decoration: none;
    background-color: #f5f6fa;
    box-shadow: none !important
}

#Wrapper .Header .menu ul.user-menu>li {
    display: block;
    margin-left: 10px;
    float: right;
    margin-top: 20px
}

#Wrapper .Header .menu ul.user-menu>li .user-btn {
    border: 1px solid #eee;
    height: 40px;
    width: auto;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease-in-out
}

#Wrapper .Header .menu ul.user-menu>li .user-btn>img {
    height: 30px;
    width: 30px;
    margin: 5px;
    display: block;
    border-radius: 5px
}

#Wrapper .Header .menu ul.user-menu>li .user-btn:hover,
#Wrapper .Header .menu ul.user-menu>li .user-btn[aria-expanded=true] {
    border-color: #aaa
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown {
    box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0), 0 4px 10px 0 rgba(0, 0, 0, .1);
    width: 220px;
    margin-top: 10px
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown:after {
    content: "";
    position: absolute;
    top: -8.5px;
    right: 11px;
    border-bottom: 9px solid #fff;
    border-left: 9px solid rgba(0, 0, 0, 0);
    border-right: 9px solid rgba(0, 0, 0, 0)
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 10px;
    border-bottom: 10px solid rgba(67, 87, 133, .2);
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0)
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .user-info {
    display: block;
    padding: 20px;
    border-bottom: 1px solid rgba(221, 221, 221, .8666666667);
    text-align: center
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .user-info img {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, .15);
    width: 55px;
    height: 55px;
    display: inline-block;
    border-radius: 5px
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .user-info span {
    display: block;
    margin-top: 15px;
    line-height: 21px;
    font-weight: 600
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .user-info span~em {
    font-size: 14px;
    color: #777;
    line-height: 16px;
    display: block
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .dropdown-item {
    transition: all .2s ease-in-out
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .dropdown-item i {
    margin-right: 5px
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .dropdown-item:hover {
    color: var(--primary)
}

#Wrapper .Header .menu ul.user-menu>li .user-btn~.user-dropdown .dropdown-item:hover.dropdown-item-logout {
    color: var(--danger)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn {
    border: 1px solid #eee;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease-in-out
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn>span.count {
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 50%;
    background: var(--blue);
    cursor: pointer
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn>span.count:after {
    position: absolute;
    border: 1px solid var(--blue);
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    content: "";
    border-radius: 100%;
    opacity: 0;
    animation: status-pulse 1s infinite
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn>i {
    font-size: 18px;
    color: #666
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn:hover,
#Wrapper .Header .menu ul.user-menu>li .notifications-btn[aria-expanded=true] {
    background: #f5f5f5;
    color: #333
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown {
    box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0), 0 4px 10px 0 rgba(0, 0, 0, .1);
    width: 380px;
    margin-top: 10px
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown:after {
    content: "";
    position: absolute;
    top: -8.5px;
    right: 11px;
    border-bottom: 9px solid #fff;
    border-left: 9px solid rgba(0, 0, 0, 0);
    border-right: 9px solid rgba(0, 0, 0, 0)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 10px;
    border-bottom: 10px solid rgba(67, 87, 133, .2);
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .notifications-dropdown-header {
    height: 47px;
    padding: 0px 20px 5px 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-bottom: 1px solid #ddd
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .notifications-dropdown-header .badge {
    margin-top: 0px;
    margin-left: 8px
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .notifications-dropdown-content {
    max-height: calc(100vh - 300px);
    overflow: auto
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .notifications-dropdown-content::-webkit-scrollbar {
    width: 6px;
    visibility: hidden
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .notifications-dropdown-content:hover::-webkit-scrollbar {
    visibility: visible
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item {
    border-radius: 7px
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media {
    align-items: center
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left {
    margin-right: 15px;
    position: relative
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left .notifications-type-icon {
    background: var(--primary);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: -5px;
    right: -5px;
    z-index: 15;
    border-radius: 50%
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left .notifications-type-icon.new-reply {
    background: var(--success)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left .notifications-type-icon.assigned-ticket {
    background: var(--purple)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left .notifications-type-icon.rated-ticket {
    background: var(--orange)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left .notifications-type-icon.closed-ticket {
    background: var(--danger)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left .notifications-type-icon.reopen-ticket {
    background: var(--info)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left .notifications-type-icon>i {
    font-size: 16px
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .media-left img {
    width: 60px;
    border-radius: 50%
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media p.text {
    white-space: normal;
    width: 88%;
    margin-bottom: 0;
    color: #666
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media p.text b {
    font-weight: 600;
    color: #222
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item .media .timestamp {
    font-size: 13px;
    color: #888
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item.is-unread {
    background: rgba(235, 240, 245, .5);
    position: relative
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item.is-unread .media .timestamp {
    font-weight: 700;
    color: var(--primary)
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item.is-unread:after {
    background: var(--primary);
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -5px;
    border-radius: 50%;
    content: ""
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item:hover {
    background: #ebf0f5
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item {
    transition: all .2s ease-in-out;
    padding: 0 15px;
    margin-bottom: 8px
}

#Wrapper .Header .menu ul.user-menu>li .notifications-btn~.notifications-dropdown .dropdown-item:last-of-type {
    border: 0;
    margin-bottom: 0
}

#Wrapper .Header .menu .btn.btn-menu {
    background: #2a3538;
    border: 0px !important;
    box-shadow: none !important;
    float: right;
    min-width: 45px;
    margin-top: 22px;
    margin-left: 20px;
    color: rgba(0, 0, 0, .55);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
    display: none
}

#Wrapper .Header .menu .btn.btn-menu:hover,
#Wrapper .Header .menu .btn.btn-menu:active {
    background: #1455d5;
    color: #fff
}

#Wrapper .Header .menu ul.pages {
    margin: 0px
}

#Wrapper .Header .menu ul.pages>li {
    margin: 20px 15px 0px 0px;
    float: left
}

#Wrapper .Header .menu ul.pages>li>a {
    background: rgba(0, 0, 0, 0);
    display: block;
    padding: 8px 15px;
    color: rgba(0, 0, 0, .5);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all .2s ease-in-out
}

#Wrapper .Header .menu ul.pages>li>a:hover {
    background: #f5f7fa;
    color: rgba(0, 0, 0, .75)
}

#Wrapper .Header .menu ul.pages>li.active>a {
    background: #1455d5;
    color: #fff
}

#Wrapper .header-dash {
    min-height: 335px;
    position: relative;
    padding: 80px 0px 0px 0px
}

#Wrapper .header-dash:after {
    background: #1455d5;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 335px;
    z-index: 10
}

#Wrapper .header-dash .container {
    position: relative;
    z-index: 15
}

#Wrapper .header-dash .header-dash-cutom-buttons {
    margin-bottom: 80px;
    position: relative;
    text-align: right
}

#Wrapper .header-dash .header-dash-cutom-buttons .btn {
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .25) !important;
    border: 0px;
    color: #555;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-weight: 600;
    padding: 0px 20px;
    transition: all .2s ease-in-out
}

#Wrapper .header-dash .header-dash-cutom-buttons .btn>i {
    height: 50px;
    line-height: 50px;
    padding: 0px 20px 0px 0px;
    margin-right: 15px;
    display: inline-block;
    border-right: 1px solid #ddd
}

#Wrapper .header-dash .header-dash-cutom-buttons .btn:hover {
    background: #f5f5f5;
    color: #222;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, .45) !important
}

#Wrapper .header-dash .search-form {
    margin-bottom: 80px;
    position: relative
}

#Wrapper .header-dash .search-form h2 {
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation-delay: .2s
}

#Wrapper .header-dash .search-form form {
    position: relative;
    animation-delay: .5s
}

#Wrapper .header-dash .search-form form input[type=search] {
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .25) !important;
    border: 0px;
    width: 100%;
    height: 50px;
    outline: none !important;
    padding: 6px 20px 6px 50px;
    font-size: 16px;
    color: #555;
    display: block;
    border-radius: 5px
}

#Wrapper .header-dash .search-form form i.icon {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 18px;
    color: #666
}

#Wrapper .header-dash .search-autocomplete {
    position: absolute;
    width: 100%;
    z-index: 50
}

#Wrapper .header-dash .search-autocomplete .list-group {
    background: #fafafa;
    border: 1px solid #ccc;
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, .25);
    margin-top: 10px
}

#Wrapper .header-dash .search-autocomplete .list-group .list-group-item {
    padding-left: 15px;
    padding-right: 15px;
    display: flex
}

#Wrapper .header-dash .search-autocomplete .list-group .list-group-item .search-autocomplete-icon {
    background: #eee;
    border: 1px solid #ccc;
    width: 34px;
    height: 34px;
    line-height: 34px;
    margin-right: 12px;
    text-align: center;
    border-radius: 10px
}

#Wrapper .header-dash .search-autocomplete .list-group .list-group-item .search-autocomplete-icon.is-ticket {
    background: rgba(0, 123, 255, .1);
    border-color: rgba(0, 123, 255, .5)
}

#Wrapper .header-dash .search-autocomplete .list-group .list-group-item .search-autocomplete-icon .fa-ticket-alt {
    color: var(--primary)
}

#Wrapper .header-dash .search-autocomplete .list-group .list-group-item .search-autocomplete-link-icon {
    margin-left: auto;
    font-size: 24px;
    color: #666
}

#Wrapper .header-dash .search-autocomplete .list-group:before {
    border-bottom: 10px solid #fafafa;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-left: 10px solid rgba(0, 0, 0, 0);
    width: 0;
    height: 0;
    position: absolute;
    top: 1px;
    content: ""
}

#Wrapper .header-dash .services-section {
    position: relative;
    z-index: 10
}

#Wrapper .header-dash .services-section>div:nth-of-type(1)>.service {
    animation-delay: .4s
}

#Wrapper .header-dash .services-section>div:nth-of-type(2)>.service {
    animation-delay: .6s
}

#Wrapper .header-dash .services-section>div:nth-of-type(3)>.service {
    animation-delay: .8s
}

#Wrapper .header-dash .services-section>div:nth-of-type(4)>.service {
    animation-delay: 1s
}

#Wrapper .header-dash .services-section .service {
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .15);
    padding: 20px;
    height: 110px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all .2s ease-in-out
}

#Wrapper .header-dash .services-section .service a {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 10
}

#Wrapper .header-dash .services-section .service i {
    display: block;
    color: rgba(0, 0, 0, .45);
    font-size: 33px;
    text-align: center;
    margin: 0px 0px 15px 0px;
    transition: all .2s ease-in-out
}

#Wrapper .header-dash .services-section .service span {
    color: rgba(0, 0, 0, .55);
    font-weight: 700;
    text-transform: capitalize;
    transition: all .2s ease-in-out
}

#Wrapper .header-dash .services-section .service:hover {
    box-shadow: 0px 1px 12px rgba(0, 0, 0, .25);
    margin-top: -2px
}

#Wrapper .header-dash .services-section .service:hover i,
#Wrapper .header-dash .services-section .service:hover span {
    color: #1455d5
}

#Wrapper .About {
    padding: 50px 0px 80px 0px
}

#Wrapper .About .section-title {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden
}

#Wrapper .About .section-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1455d5;
    margin-bottom: 10px;
    animation-delay: .1s
}

#Wrapper .About .section-title h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0px;
    animation-delay: .4s
}

#Wrapper .About .section-title p {
    margin: 0px 20%;
    color: #666
}

#Wrapper .About .col-lg-4:nth-of-type(1) {
    animation-delay: .2s
}

#Wrapper .About .col-lg-4:nth-of-type(2) {
    animation-delay: .6s
}

#Wrapper .About .col-lg-4:nth-of-type(3) {
    animation-delay: .4s
}

#Wrapper .About .about-block {
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .15);
    padding: 20px 30px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    transition: all .2s ease-in-out
}

#Wrapper .About .about-block i.icon {
    background: #2c6ef1;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    color: #fff;
    font-size: 25px;
    position: relative;
    border-radius: 5px;
    margin-top: 20px;
    transition: all .2s ease-in-out
}

#Wrapper .About .about-block i.icon:after {
    border: 2px solid #2c6ef1;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: absolute;
    content: "";
    display: block;
    border-radius: 5px;
    transition: all .2s ease-in-out
}

#Wrapper .About .about-block h4 {
    font-size: 21px;
    font-weight: 600;
    margin: 20px 0px 20px 0px
}

#Wrapper .About .about-block p {
    font-size: 14px;
    color: #666;
    text-align: justify;
    text-align-last: center
}

#Wrapper .About .about-block:hover {
    box-shadow: 0px 1px 12px rgba(0, 0, 0, .25);
    margin-top: 28px
}

#Wrapper .About .about-block:hover i.icon {
    background: #1455d5
}

#Wrapper .About .about-block:hover i.icon:after {
    border-color: #1455d5;
    top: -6px;
    bottom: -6px;
    left: -6px;
    right: -6px
}

#Wrapper .Knowledge-Base {
    background: #fff;
    padding: 80px 0px
}

#Wrapper .Knowledge-Base .section-title {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden
}

#Wrapper .Knowledge-Base .section-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1455d5;
    margin-bottom: 10px;
    animation-delay: .1s
}

#Wrapper .Knowledge-Base .section-title h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0px;
    animation-delay: .4s
}

#Wrapper .Knowledge-Base .section-title p {
    margin: 0px 20%;
    color: #666
}

#Wrapper .Knowledge-Base .category-blocks {
    border-right: 1px solid #d8dee2;
    border-bottom: 1px solid #d8dee2;
    margin-top: 50px;
    animation-delay: .6s
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6 {
    border-left: 1px solid #d8dee2;
    border-top: 1px solid #d8dee2;
    transition: all .2s ease-in-out
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block {
    padding: 35px 15px 40px 15px
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>h3,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>h3,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>h3>a,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>h3>a,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>h3>a {
    display: inline-block;
    color: #444;
    text-decoration: none
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>h3>a>span,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>h3>a>span,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>h3>a>span {
    background: #f5f7fa;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px;
    color: #444;
    margin: 0px 5px;
    transition: all .2s ease-in-out
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>h3>a:hover,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>h3>a:hover,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>h3>a:hover {
    color: #111
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>h3>a:hover>span,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>h3>a:hover>span,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>h3>a:hover>span {
    background: #2c6ef1;
    color: #fff
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>ul.list-unstyled,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>ul.list-unstyled,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>ul.list-unstyled {
    margin: 0px
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>ul.list-unstyled>li,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>ul.list-unstyled>li,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>ul.list-unstyled>li {
    margin: 0px 0px 10px 0px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>ul.list-unstyled>li>a,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>ul.list-unstyled>li>a,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>ul.list-unstyled>li>a {
    display: inline-block;
    color: #6d7a8d;
    text-decoration: none;
    transition: all .1s ease-in-out
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>ul.list-unstyled>li>a>i,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>ul.list-unstyled>li>a>i,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>ul.list-unstyled>li>a>i {
    font-size: 16px;
    display: inline-block;
    margin-right: 5px;
    font-weight: 300;
    position: relative;
    top: 1px;
    transition: all .2s ease-in-out
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>ul.list-unstyled>li>a:hover,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>ul.list-unstyled>li>a:hover,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>ul.list-unstyled>li>a:hover {
    color: #2c6ef1
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>ul.list-unstyled>li>a:hover>i,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>ul.list-unstyled>li>a:hover>i,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>ul.list-unstyled>li>a:hover>i {
    margin-right: 8px
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12>.category-block>ul.list-unstyled>li:last-child,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4>.category-block>ul.list-unstyled>li:last-child,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6>.category-block>ul.list-unstyled>li:last-child {
    margin: 0px
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12:hover,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4:hover,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6:hover {
    background: #f7f9fc
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12:hover>.category-block>h3>a>span,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4:hover>.category-block>h3>a>span,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6:hover>.category-block>h3>a>span {
    background: #e5ecf1
}

#Wrapper .Knowledge-Base .category-blocks>div.col-lg-12:hover>.category-block>h3>a:hover>span,
#Wrapper .Knowledge-Base .category-blocks div.col-lg-4:hover>.category-block>h3>a:hover>span,
#Wrapper .Knowledge-Base .category-blocks>div.col-lg-6:hover>.category-block>h3>a:hover>span {
    background: #2c6ef1;
    color: #fff
}

#Wrapper .Our-Team {
    padding: 80px 0px
}

#Wrapper .Our-Team .section-title {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden
}

#Wrapper .Our-Team .section-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1455d5;
    margin-bottom: 10px;
    animation-delay: .1s
}

#Wrapper .Our-Team .section-title h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0px;
    animation-delay: .4s
}

#Wrapper .Our-Team .section-title p {
    margin: 0px 20%;
    color: #666
}

#Wrapper .Our-Team .team-row {
    display: block;
    text-align: center;
    margin-top: 60px
}

#Wrapper .Our-Team .team-row .team-card {
    display: inline-block;
    text-align: center;
    min-width: 110px
}

#Wrapper .Our-Team .team-row .team-card>img {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0px auto 15px auto;
    border-radius: 5px
}

#Wrapper .Our-Team .team-row .team-card>h5 {
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 600
}

#Wrapper .Our-Team .team-row .team-card>p {
    font-size: 13px;
    color: #86848b
}

#Wrapper .Our-Team .team-chat-btn {
    background: #2c6ef1;
    border: 0px !important;
    box-shadow: none !important;
    padding: 10px 38px;
    margin-top: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: all .2s ease-in-out
}

#Wrapper .Our-Team .team-chat-btn:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#Wrapper .Our-Team .team-chat-btn:hover:before {
    height: 100%
}

#Wrapper .Our-Team .team-chat-btn>i {
    position: relative;
    top: 2px;
    margin-right: 4px
}

#Wrapper .Testimonial {
    background: #2c6ef1;
    padding: 80px 0px
}

#Wrapper .Testimonial .section-title {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    color: #fff
}

#Wrapper .Testimonial .section-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1455d5;
    margin-bottom: 10px;
    animation-delay: .1s
}

#Wrapper .Testimonial .section-title h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0px;
    animation-delay: .4s
}

#Wrapper .Testimonial .section-title p {
    margin: 0px 20%;
    color: #666
}

#Wrapper .Testimonial .section-title h4 {
    color: #fff
}

#Wrapper .Testimonial .owl-dots {
    display: none !important
}

#Wrapper .Testimonial .item {
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .25);
    padding: 15px;
    margin-top: 30px;
    min-height: 150px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 5px
}

#Wrapper .Testimonial .item>p {
    font-size: 16px;
    line-height: 23px;
    text-align: justify;
    color: #555
}

#Wrapper .Testimonial .item .author {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    overflow: hidden;
    margin: 0px 0px 0px 0px
}

#Wrapper .Testimonial .item .author>div {
    margin-top: 0px
}

#Wrapper .Testimonial .item .author>div>h4 {
    margin: 0px;
    font-size: 16px;
    font-weight: 600
}

#Wrapper .Testimonial .item .author>div>.user_type {
    display: block;
    border: 1px solid #aaa;
    position: absolute;
    bottom: 0px;
    left: 65px;
    color: #666;
    padding: 2px 6px;
    font-weight: 400;
    font-size: 13px;
    border-radius: 4px
}

#Wrapper .Testimonial .item .author>div>.user_type.user-customer {
    border-color: #2c6ef1;
    color: #1455d5
}

#Wrapper .Testimonial .item .author>div>span.time {
    color: #777;
    font-size: 13px;
    position: absolute;
    bottom: 25px;
    right: 0px
}

#Wrapper .Testimonial .item .author>div>.rate-rang {
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 14px;
    color: #666
}

#Wrapper .Testimonial .item .author>div>.rate-rang>i.fa-star.active {
    color: #fbd606
}

#Wrapper .Testimonial .item .author>img {
    background: #ddd;
    width: 50px;
    height: 50px;
    display: block;
    float: left;
    margin: 0px 15px 0px 0px;
    border-radius: 5px
}

#Wrapper .Testimonial .testimonial-nav {
    text-align: center;
    margin-top: 30px
}

#Wrapper .Testimonial .testimonial-nav .btn {
    border: 1px solid #fff;
    color: #fff;
    margin: 0px 7.5px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 35px;
    transition: all .2s ease-in-out
}

#Wrapper .Testimonial .testimonial-nav .btn.owl-next,
#Wrapper .Testimonial .testimonial-nav .btn.owl-prev {
    padding: 10px 15px
}

#Wrapper .Testimonial .testimonial-nav .btn:hover {
    background: #fff;
    color: #1455d5
}

#Wrapper .Pricing {
    padding: 80px 0px
}

#Wrapper .Pricing .section-title {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden
}

#Wrapper .Pricing .section-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1455d5;
    margin-bottom: 10px;
    animation-delay: .1s
}

#Wrapper .Pricing .section-title h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0px;
    animation-delay: .4s
}

#Wrapper .Pricing .section-title p {
    margin: 0px 20%;
    color: #666
}

#Wrapper .Pricing .pricing-category {
    background: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .13);
    transition: all linear .3s;
    border-radius: 5px;
    margin-top: 30px
}

#Wrapper .Pricing .pricing-category .price-head h3 {
    padding-top: 25px;
    padding-bottom: 17px;
    font-size: 23px;
    font-weight: 600
}

#Wrapper .Pricing .pricing-category .price-details {
    padding-top: 22px
}

#Wrapper .Pricing .pricing-category .price-details p {
    color: #444;
    font-size: 16px;
    line-height: 23px;
    margin-top: 10px;
    margin-bottom: 5px
}

#Wrapper .Pricing .pricing-category .join h4 {
    padding: 23px 0px 30px;
    display: block;
    text-align: center
}

#Wrapper .Pricing .pricing-category .join h4 a {
    background-color: #2c6ef1;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-weight: 400;
    margin-right: 10px;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    transition: all linear .2s
}

#Wrapper .Pricing .pricing-category .join h4 a:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#Wrapper .Pricing .pricing-category .join h4 a:hover:before {
    height: 100%
}

#Wrapper .Pricing .pricing-category .price-rate {
    width: 100%;
    background: #2c6ef1;
    padding: 5px 0px 19px
}

#Wrapper .Pricing .pricing-category .price-rate p {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px
}

#Wrapper .Pricing .pricing-category .price-rate .rate-p {
    font-size: 14px;
    padding-top: 0
}

#Wrapper .Subscribe {
    background: #fff;
    padding: 80px 0px
}

#Wrapper .Subscribe .section-title {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden
}

#Wrapper .Subscribe .section-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1455d5;
    margin-bottom: 10px;
    animation-delay: .1s
}

#Wrapper .Subscribe .section-title h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0px;
    animation-delay: .4s
}

#Wrapper .Subscribe .section-title p {
    margin: 0px 20%;
    color: #666
}

#Wrapper .Subscribe .subscribe-form {
    margin-top: 30px
}

#Wrapper .Subscribe .subscribe-form .form-control {
    background: #eff1f6;
    border: 0px !important;
    box-shadow: none !important;
    height: 47px;
    font-size: 16px
}

#Wrapper .Subscribe .subscribe-form .btn {
    border: 0px !important;
    box-shadow: none !important;
    background: #2c6ef1;
    padding: 10px 38px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    z-index: 25;
    transition: all .2s ease-in-out
}

#Wrapper .Subscribe .subscribe-form .btn:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#Wrapper .Subscribe .subscribe-form .btn:hover:before {
    height: 100%
}

#Wrapper .Footer {
    background-color: #f5f7fa;
    background: linear-gradient(0deg, rgb(240, 244, 247) 50%, rgb(255, 255, 255) 70%);
    padding: 0px 0px 60px 0px;
    text-align: center
}

#Wrapper .Footer .menu {
    margin-bottom: 30px
}

#Wrapper .Footer .menu>ul {
    margin: 0px;
    padding: 0px
}

#Wrapper .Footer .menu>ul>li {
    text-align: center;
    margin: 0px 10px;
    display: inline-block
}

#Wrapper .Footer .menu>ul>li>a {
    color: #666;
    text-decoration: none;
    transition: all .2s ease-in-out
}

#Wrapper .Footer .menu>ul>li>a:hover {
    color: #2c6ef1
}

#Wrapper .Footer .social-icons {
    margin-bottom: 30px
}

#Wrapper .Footer .social-icons>a {
    display: inline-block;
    margin: 0px 10px;
    color: #666;
    text-decoration: none;
    font-size: 21px;
    transition: all .2s ease-in-out
}

#Wrapper .Footer .social-icons>a>svg {
    width: 21px;
    fill: #666;
    position: relative;
    top: -2px;
    transition: all .2s ease-in-out
}

#Wrapper .Footer .social-icons>a:hover {
    color: #2c6ef1
}

#Wrapper .Footer .social-icons>a:hover>svg {
    fill: #2c6ef1
}

#Wrapper .Footer .copyright {
    color: #666
}

#Wrapper .Footer .copyright>a {
    text-decoration: none
}

#Wrapper.open-menu {
    position: relative;
    left: 230px
}

#Wrapper.open-menu .Header .logo,
#Wrapper.open-menu .header-dash,
#Wrapper.open-menu .About {
    filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    -moz-filter: blur(4px);
    -webkit-filter: blur(4px)
}

#Wrapper.open-menu:after {
    background: rgba(0, 0, 0, .25);
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 55;
    content: ""
}

#loginModal .modal-login {
    color: #636363;
    width: 350px
}

#loginModal .modal-login .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none
}

#loginModal .modal-login .modal-body {
    padding: 0px
}

#loginModal .modal-login .modal-header {
    border-bottom: none;
    position: relative;
    justify-content: center;
    padding-bottom: 35px
}

#loginModal .modal-login h4 {
    text-align: center;
    font-size: 26px
}

#loginModal .modal-login .form-group {
    position: relative
}

#loginModal .modal-login .form-group i.input-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 14px;
    color: #aaa
}

#loginModal .modal-login .form-control {
    padding-left: 35px;
    font-size: 16px;
    font-weight: 400;
    height: 44px
}

#loginModal .modal-login .btn.btn-login {
    border: 0px !important;
    box-shadow: none !important;
    background: #2c6ef1;
    padding: 10px 38px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 25;
    transition: all .2s ease-in-out
}

#loginModal .modal-login .btn.btn-login .spinner-border {
    margin-top: 5px;
    margin-right: 5px;
    display: block;
    float: left
}

#loginModal .modal-login .btn.btn-login:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#loginModal .modal-login .btn.btn-login:hover:before {
    height: 100%
}

#loginModal .modal-login .btn.btn-social-facebook,
#loginModal .modal-login .btn.btn-social-google {
    border: 0px !important;
    box-shadow: none !important;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    z-index: 25;
    transition: all .2s ease-in-out
}

#loginModal .modal-login .btn.btn-social-facebook:before,
#loginModal .modal-login .btn.btn-social-google:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#loginModal .modal-login .btn.btn-social-facebook i,
#loginModal .modal-login .btn.btn-social-google i {
    margin-right: 5px
}

#loginModal .modal-login .btn.btn-social-facebook:hover:before,
#loginModal .modal-login .btn.btn-social-google:hover:before {
    height: 100%
}

#loginModal .modal-login .btn.btn-social-facebook {
    background: #3b5998
}

#loginModal .modal-login .btn.btn-social-google {
    background: #fff;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, .05) !important;
    border: 1px solid #ccc !important;
    color: #666;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    z-index: 25;
    position: relative;
    overflow: hidden;
    transition: all .2s ease-in-out
}

#loginModal .modal-login .btn.btn-social-google:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#loginModal .modal-login .btn.btn-social-google .g_id_signin {
    position: absolute;
    top: 2px;
    left: 1px;
    opacity: .01;
    cursor: pointer
}

#loginModal .modal-login .btn.btn-social-google i {
    margin-right: 5px
}

#loginModal .modal-login .btn.btn-social-google:hover {
    bqackground: #fafafa;
    border-color: #aaa !important;
    color: #000
}

#loginModal .modal-login .btn.btn-social-google:hover:before {
    height: 100%
}

#loginModal a.font-s-14 {
    display: inline-block;
    margin-top: 13px
}

#loginModal .form-group {
    margin-bottom: 20px
}

#loginModal .modal-login .hint-text {
    text-align: center;
    padding-top: 10px
}

#loginModal .modal-login .close {
    position: absolute;
    top: -5px;
    right: -5px
}

#loginModal hr.divider {
    margin: 30px 0px
}

#loginModal .modal-login .modal-footer {
    background: #ecf0f1;
    border-color: #dee4e7;
    text-align: center;
    margin: 0 -20px -20px;
    border-radius: 0px 0px 5px 5px;
    font-size: 14px;
    justify-content: center
}

#Wrapper.single-page .header-dash {
    height: 150px;
    min-height: auto;
    padding-top: 50px
}

#Wrapper.single-page .header-dash:after {
    height: 150px
}

#Wrapper.single-page .header-dash .page-title {
    margin: -8px 0 0 0
}

#Wrapper.single-page .header-dash .page-title h2 {
    font-size: 27px;
    font-weight: 700;
    color: #fff
}

#Wrapper.single-page .header-dash .page-title .breadcrumb {
    background: rgba(0, 0, 0, 0);
    border: 0;
    border-radius: 0;
    padding: 0
}

#Wrapper.single-page .header-dash .page-title .breadcrumb>li.breadcrumb-item {
    color: #eee
}

#Wrapper.single-page .header-dash .page-title .breadcrumb>li.breadcrumb-item:before {
    color: #eee
}

#Wrapper.single-page .header-dash .page-title .breadcrumb>li.breadcrumb-item>a {
    color: #fff;
    text-decoration: none
}

#Wrapper.single-page .header-dash .search-form {
    margin: 0
}

#Wrapper.single-page .Page-Content {
    background: #fff;
    padding-bottom: 50px;
    padding-top: 60px
}

#Wrapper.single-page .Page-Content .container {
    background: #eef4f5;
    padding: 30px;
    min-height: calc(100vh - 549px);
    margin-bottom: 10px;
    border-radius: 10px
}

#Wrapper.single-page .Page-Content .container.full-width {
    background: #fff;
    padding: 0px 15px;
    border-radius: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget {
    background: #eef4f5;
    padding: 20px;
    border-radius: 7px;
    margin-bottom: 30px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget h3.widget-title {
    border-bottom: 1px solid #b9c0c7;
    font-size: 22px;
    font-weight: 700;
    color: #3b4a5a;
    margin: 0 0 20px;
    padding: 0 0 20px;
    position: relative
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget h3.widget-title:before {
    content: "";
    width: 60px;
    height: 5px;
    background: #346afe;
    position: absolute;
    bottom: -3px;
    left: 10px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.categories>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.categories>li:before {
    content: "";
    position: absolute;
    left: 0;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #666
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.categories>li>a {
    color: #3b4a5a;
    text-decoration: none;
    transition: all 0s ease-in-out;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.categories>li>a:hover {
    color: #2c6ef1;
    transition: all .1s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.categories>li:hover {
    padding-left: 18px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.categories>li:last-child {
    margin-bottom: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.popular-post-widget>li {
    position: relative;
    margin-bottom: 10px;
    color: #6b8291
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.popular-post-widget>li>a {
    color: #54677c;
    text-decoration: none;
    transition: all 0s ease-in-out;
    font-size: 16px;
    font-weight: 700
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.popular-post-widget>li>a:hover {
    color: #2c6ef1;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.popular-post-widget>li em {
    display: block;
    font-style: normal;
    margin: 5px 0px 15px 0px;
    font-size: 12px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.popular-post-widget>li em i {
    margin-left: 15px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.popular-post-widget>li em i:first-of-type {
    margin-left: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content>ul.popular-post-widget>li:last-child {
    margin-bottom: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content .tags-cloud {
    margin-top: -10px
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content .tags-cloud>a {
    display: inline-block;
    border: 1px solid #a3adb8;
    border-radius: 20px;
    padding: 3px 15px 5px 15px;
    margin-right: 5px;
    margin-top: 10px;
    font-weight: 700;
    color: #3b4a5a;
    text-decoration: none;
    transition: all 0s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .right-content .widget .widget-content .tags-cloud>a:hover {
    color: #2c6ef1;
    border-color: #2c6ef1;
    transition: all .1s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks {
    margin-top: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block {
    background: #fff;
    border: 1px solid #dbdfea;
    padding: 20px;
    display: flex;
    height: 100%;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div {
    width: 100%;
    display: block
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>h3 {
    border-bottom: 1px solid #dbdfea;
    font-size: 21px;
    font-weight: 600;
    margin: -20px -20px 15px -20px;
    padding: 15px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>h3>a {
    display: flex;
    width: 100%;
    align-items: center;
    color: #444;
    text-decoration: none
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>h3>a>i {
    margin-right: 5px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>h3>a>span {
    background: #dbe0e7;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px;
    color: #444;
    margin-left: auto;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>h3>a:hover {
    color: #111
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>h3>a:hover>span {
    background: #2c6ef1;
    color: #fff
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>ul.list-unstyled {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>ul.list-unstyled>li {
    margin: 0px 0px 10px 0px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>ul.list-unstyled>li>a {
    display: inline-block;
    color: #6d7a8d;
    font-weight: 600;
    text-decoration: none;
    transition: all .1s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>ul.list-unstyled>li>a>i {
    font-size: 15px;
    display: inline-block;
    margin-right: 5px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>ul.list-unstyled>li>a:hover {
    color: #2c6ef1
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>ul.list-unstyled>li>a:hover>i {
    margin-right: 8px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .category-block>div>ul.list-unstyled>li:last-child {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block {
    background: #fff;
    border: 1px solid #dbdfea;
    padding: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    border-radius: 7px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block .post-link-icon {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 32px;
    color: #aaa;
    position: absolute;
    top: 25px;
    right: 25px;
    border-radius: 50%
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block .post-over-link {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 25
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block .post-icon {
    background: #eee;
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 23px;
    color: #777;
    text-align: center;
    display: block;
    margin-right: 15px;
    border-radius: 7px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block>div h4 {
    font-size: 18px;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block>div h4>a {
    color: #333;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block>div>div>span {
    display: inline-block;
    font-size: 14px;
    color: #777;
    margin-right: 10px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block:hover {
    border-color: #2c6ef1
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block:hover .post-icon {
    background: #2c6ef1;
    color: #fff
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .category-blocks .post-block:hover>div h4>a {
    color: #2c6ef1
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block {
    background: #fff;
    border: 1px solid #dbdfea;
    padding: 20px;
    position: relative;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block>.post-title {
    background: #fafafa;
    border-bottom: 1px solid #dbdfea;
    margin: -20px -20px 15px -20px;
    padding: 20px;
    border-radius: 7px 7px 0px 0px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block>.post-title>h2 {
    font-size: 27px;
    font-weight: 600;
    margin: 0px 0px 15px 0px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block>.post-title>div>span {
    display: inline-block;
    font-size: 14px;
    color: #777;
    margin-right: 10px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block>.post-title>div>span a {
    color: #333
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-content {
    overflow: hidden
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-content img,
#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-content * {
    max-width: 100% !important
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-content img {
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful {
    background-color: #f3f6fc;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful h5 {
    margin-bottom: 15px;
    font-weight: 700
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful .btn {
    margin: 0px 3px;
    transition: .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful .btn.active {
    cursor: default
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful.is-loading {
    position: relative
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful.is-loading .btn {
    opacity: 0;
    visibility: hidden
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful.is-loading:before {
    background: rgba(255, 255, 255, .25);
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: absolute;
    cursor: progress;
    z-index: 20;
    content: ""
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .single-post-block .post-helpful.is-loading:after {
    border: 3px solid #b9bac4;
    border-top: 4px solid #2c6ef1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: block;
    animation: loader-spin .6s linear infinite;
    position: absolute;
    cursor: progress;
    z-index: 55;
    left: 50%;
    top: calc(50% + 15px);
    margin-top: -12.5px;
    margin-left: -12.5px;
    content: ""
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post {
    background: #eef4f5;
    padding: 20px;
    border-radius: 7px;
    margin-bottom: 30px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post .post-thumb {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px dashed #b9c0c7;
    border-radius: 4px;
    background: #fafcfe
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post .post-thumb img {
    width: 100%;
    border-radius: 4px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post h2 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post h2>a {
    color: #346afe;
    text-decoration: none
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post p {
    text-align: justify
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post .post-details {
    background: #fafcfe;
    border: 1px dashed #b9c0c7;
    margin-bottom: 20px;
    padding: 10px 15px;
    color: #666;
    border-radius: 4px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post .post-details ul {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post .post-details ul li {
    display: inline-block;
    margin-right: 15px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post .post-details ul li>i {
    margin-right: 5px
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post .post-details ul li>a {
    text-decoration: none
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post a.post-read-more {
    border: 0px !important;
    box-shadow: none !important;
    background: #2c6ef1;
    padding: 10px 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 25;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post a.post-read-more:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#Wrapper.single-page .Page-Content .container.full-width .left-content .blog-post a.post-read-more:hover:before {
    height: 100%
}

#Wrapper.single-page .Page-Content .container .contact-form .btn-submit {
    border: 0px !important;
    box-shadow: none !important;
    background: #2c6ef1;
    padding: 10px 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 25;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .contact-form .btn-submit:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#Wrapper.single-page .Page-Content .container .contact-form .btn-submit:hover:before {
    height: 100%
}

#Wrapper.single-page .Page-Content .container .login-page h4 {
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    margin: 30px 0px
}

#Wrapper.single-page .Page-Content .container .login-page .svg-inline--fa .fa-secondary {
    fill: #cde0ff;
    opacity: var(--fa-secondary-opacity, 0.4)
}

#Wrapper.single-page .Page-Content .container .login-page .svg-inline--fa .fa-primary {
    fill: #2c6ef1;
    opacity: 1
}

#Wrapper.single-page .Page-Content .container .login-page .form-group {
    position: relative;
    margin-bottom: 20px
}

#Wrapper.single-page .Page-Content .container .login-page .form-group i.input-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 14px;
    color: #aaa
}

#Wrapper.single-page .Page-Content .container .login-page .form-group .form-control {
    padding-left: 35px;
    font-size: 16px;
    font-weight: 400;
    height: 44px
}

#Wrapper.single-page .Page-Content .container .login-page .form-group .custom-select {
    font-size: 16px;
    font-weight: 400;
    height: 44px;
    cursor: pointer
}

#Wrapper.single-page .Page-Content .container .login-page .form-group.form-group-lg .form-control {
    height: 54px
}

#Wrapper.single-page .Page-Content .container .login-page .form-group.form-group-lg i.input-icon {
    left: 15px;
    top: 20px
}

#Wrapper.single-page .Page-Content .container .login-page a.font-s-14 {
    display: inline-block;
    margin-top: 13px
}

#Wrapper.single-page .Page-Content .container .login-page hr.divider {
    margin: 40px 0px
}

#Wrapper.single-page .Page-Content .container .login-page hr.divider:before {
    background: #eef4f5
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-login {
    border: 0px !important;
    box-shadow: none !important;
    background: #2c6ef1;
    padding: 10px 38px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 25;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-login:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-login>.spinner-border-sm {
    position: relative;
    top: -5px;
    margin-right: 5px
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-login:hover:before {
    height: 100%
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-facebook,
#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-google {
    border: 0px !important;
    box-shadow: none !important;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    z-index: 25;
    position: relative;
    overflow: hidden;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-facebook:before,
#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-google:before {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, .15);
    transition: all linear .2s
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-facebook .g_id_signin,
#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-google .g_id_signin {
    position: absolute;
    top: 2px;
    left: 1px;
    opacity: .01;
    cursor: pointer
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-facebook i,
#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-google i {
    margin-right: 5px
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-facebook:hover:before,
#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-google:hover:before {
    height: 100%
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-facebook {
    background: #3b5998
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-google {
    background: #fff;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, .05) !important;
    border: 1px solid #ccc !important;
    color: #666;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .login-page .btn.btn-social-google:hover {
    bqackground: #fafafa;
    border-color: #aaa !important;
    color: #000
}

#Wrapper.single-page .Page-Content .container .user-profile {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container .user-profile .card {
    border-color: rgba(96, 117, 159, .2);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .1);
    margin-bottom: 30px
}

#Wrapper.single-page .Page-Content .container .user-profile .card .card-header,
#Wrapper.single-page .Page-Content .container .user-profile .card .card-footer {
    background: rgba(20, 85, 213, .02);
    border: none;
    font-size: 18px;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .user-profile .card .card-header.bordered,
#Wrapper.single-page .Page-Content .container .user-profile .card .card-footer.bordered {
    border-bottom: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-profile .card .card-header.bordered-top,
#Wrapper.single-page .Page-Content .container .user-profile .card .card-footer.bordered-top {
    border-top: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-profile .card .list-group-item {
    padding: 0px 20px;
    margin-top: 15px;
    border-color: rgba(0, 0, 0, 0);
    color: #555
}

#Wrapper.single-page .Page-Content .container .user-profile .card .list-group-item:last-of-type {
    margin-bottom: 15px
}

#Wrapper.single-page .Page-Content .container .user-profile .card .card-body .row {
    margin-left: -10px;
    margin-right: -10px
}

#Wrapper.single-page .Page-Content .container .user-profile .card .card-body .row [class^=col] {
    padding-left: 10px;
    padding-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-profile .profile-photo {
    margin: 0px;
    position: relative;
    display: inline-block
}

#Wrapper.single-page .Page-Content .container .user-profile .profile-photo input[type=file] {
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
    z-index: -1
}

#Wrapper.single-page .Page-Content .container .user-profile .profile-photo .btn-upload-photo {
    background: #fff;
    border: 0px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, .35);
    width: 35px;
    height: 35px;
    color: #666;
    display: block;
    position: absolute;
    right: -8px;
    top: -8px;
    z-index: 20;
    border-radius: 100%;
    outline: none !important;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-profile .profile-photo .btn-upload-photo:hover {
    background: #f5f7fa;
    color: #333
}

#Wrapper.single-page .Page-Content .container .user-profile .profile-photo>img {
    max-height: 120px;
    margin: 0px auto;
    display: block
}

#Wrapper.single-page .Page-Content .container .user-profile .user-info {
    display: block;
    text-align: center
}

#Wrapper.single-page .Page-Content .container .user-profile .user-info span {
    display: block;
    margin-top: 10px;
    line-height: 21px;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .user-profile .user-info em {
    margin-top: 3px;
    font-size: 14px;
    font-style: normal;
    color: #777;
    line-height: 16px;
    display: block
}

#Wrapper.single-page .Page-Content .container .user-tickets {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count {
    margin: 0px 0px 15px 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget {
    background: #eee;
    box-shadow: 2px 4px 8px -3px rgba(0, 0, 0, .25);
    padding: 15px;
    height: 80px;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 15px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget i.icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 25px;
    color: #fff;
    opacity: .45
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget span {
    display: block;
    font-size: 21px;
    font-weight: bold;
    margin-top: 15px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget.opened {
    background: #2fc171
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget.answered {
    background: #2c6ef1
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget.waiting-reply {
    background: #573cd7
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget.unread {
    background: #eb8526
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-count .widget.closed {
    background: #eb5050
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table {
    margin: 0px;
    border-collapse: separate;
    border-spacing: 0 10px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table thead th {
    color: #585a67
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr {
    background: rgba(20, 85, 213, .01);
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr td {
    border: 1px solid rgba(77, 88, 121, .2);
    border-left: 0px;
    border-right: 0px;
    transition: all .2s ease-in-out;
    color: #696b75
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr td:first-of-type {
    border-left: 1px solid rgba(77, 88, 121, .2);
    border-radius: 7px 0px 0px 5px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr td:first-of-type:not([class=no-padding]) {
    padding-left: 20px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr td:last-of-type {
    border-right: 1px solid rgba(77, 88, 121, .2);
    border-radius: 0px 5px 5px 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr td:last-of-type:first-of-type {
    border-radius: 7px 5px 5px 5px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr:hover {
    background: rgba(20, 85, 213, .02)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr:hover td {
    border-color: rgba(77, 88, 121, .4)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr.unread-row {
    background: rgba(20, 85, 213, .04)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr.unread-row td {
    border-color: rgba(77, 88, 121, .4)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table tbody tr.unread-row:hover td {
    border-color: rgba(77, 88, 121, .6)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-id,
#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-title {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: inline-block;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-id:hover,
#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-title:hover {
    color: #2c6ef1
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-id.unread,
#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-title.unread {
    font-weight: 700;
    color: #555
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-id.unread:hover,
#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-title.unread:hover {
    color: #2c6ef1
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-customer {
    display: inline-block;
    font-weight: 600;
    color: #333;
    text-decoration: none
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-customer img {
    height: 30px;
    border-radius: 3px;
    margin-right: 5px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-department {
    background: #fff;
    border: 1px solid #c5ccd7;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 13px;
    color: #333845;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-priority {
    background: #e6edf6;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 13px;
    color: #333845;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-priority:before {
    background: var(--secondary);
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    float: left;
    margin: 5px 5px 0px 0px;
    border-radius: 100%
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-priority.low:before {
    background: var(--danger)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-priority.medium:before {
    background: var(--orange)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-priority.high:before {
    background: var(--success)
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-agent-status {
    background: #e3e9f1;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 13px;
    color: #525c72;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-agent-status i {
    display: inline-block;
    margin-right: 2.5px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-agent-status.unread {
    background: #ffefd1;
    color: #d06e08
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-agent-status.waiting-reply {
    background: #e2e6ff;
    color: #233cda
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-agent-status.answered {
    background: #d1ebff;
    color: #0078f5
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-agent-status.resolved {
    background: #ddffd1;
    color: #27ab16
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-agent-status.not-resolved {
    background: #ffe2d8;
    color: #d3670e
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-status {
    background: #e3e9f1;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 13px;
    color: #525c72;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-status.opened {
    background: #ddffd1;
    color: #27ab16
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-table .ticket-status.closed {
    background: #ffd8d8;
    color: #f61414
}

#Wrapper.single-page .Page-Content .container .user-tickets .ticket-replies-count {
    background: #757f8d;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    min-width: 50px;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-tickets .ticket-replies-count i {
    display: inline-block;
    position: relative;
    top: 1px
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-pagination .btn-group .btn-outline-light {
    min-width: 40px;
    box-shadow: none !important
}

#Wrapper.single-page .Page-Content .container .user-tickets .tickets-pagination .btn-group .btn-outline-light.active {
    z-index: 10
}

#Wrapper.single-page .Page-Content .container .user-tickets .card {
    border-color: rgba(96, 117, 159, .2);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .1);
    margin-bottom: 30px
}

#Wrapper.single-page .Page-Content .container .user-tickets .card .card-header,
#Wrapper.single-page .Page-Content .container .user-tickets .card .card-footer {
    background: rgba(20, 85, 213, .02);
    border: none;
    font-size: 18px;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .user-tickets .card .card-header.bordered,
#Wrapper.single-page .Page-Content .container .user-tickets .card .card-footer.bordered {
    border-bottom: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-tickets .card .card-header.bordered-top,
#Wrapper.single-page .Page-Content .container .user-tickets .card .card-footer.bordered-top {
    border-top: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-tickets .card .card-body .row {
    margin-left: -10px;
    margin-right: -10px
}

#Wrapper.single-page .Page-Content .container .user-tickets .card .card-body .row [class^=col] {
    padding-left: 10px;
    padding-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .card {
    border-color: rgba(96, 117, 159, .2);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .1);
    margin-bottom: 30px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-header,
#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-footer {
    background: rgba(20, 85, 213, .02);
    border: none;
    font-size: 18px;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-header.bordered,
#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-footer.bordered {
    border-bottom: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-header.bordered-top,
#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-footer.bordered-top {
    border-top: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-body .row {
    margin-left: -10px;
    margin-right: -10px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .card .card-body .row [class^=col] {
    padding-left: 10px;
    padding-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title h3 {
    font-weight: 600;
    font-size: 21px;
    color: #4e5461
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title>div {
    background: rgba(20, 85, 213, .02);
    border: 1px solid rgba(51, 72, 113, .1);
    padding: 5px 10px;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-priority {
    background: #e6edf6;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 13px;
    color: #333845;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-date {
    background: rgba(0, 0, 0, 0);
    display: inline-block;
    overflow: hidden;
    padding: 4px 0px 4px 2px;
    font-size: 14px;
    color: #333845;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-date>i {
    font-size: 16px;
    position: relative;
    top: 1px;
    margin-right: 2px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-department {
    background: rgba(0, 0, 0, 0);
    display: inline-block;
    overflow: hidden;
    padding: 4px 1px;
    font-size: 14px;
    color: #333845;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-department>i {
    font-size: 16px;
    position: relative;
    top: 1px;
    margin-right: 2px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-agent-status {
    background: #e3e9f1;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 14px;
    color: #525c72;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-agent-status i {
    display: inline-block;
    margin-right: 2.5px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-agent-status.unread {
    background: #ffefd1;
    color: #d06e08
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-agent-status.waiting-reply {
    background: #e2e6ff;
    color: #233cda
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-agent-status.answered {
    background: #d1ebff;
    color: #0078f5
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-agent-status.resolved {
    background: #ddffd1;
    color: #27ab16
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-agent-status.not-resolved {
    background: #ffe2d8;
    color: #d3670e
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-replies-count {
    background: #e3e9f1;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 14px;
    color: #525c72;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-replies-count i {
    display: inline-block
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-status {
    background: #e3e9f1;
    display: inline-block;
    overflow: hidden;
    padding: 4px 10px;
    font-size: 14px;
    color: #525c72;
    border-radius: 4px;
    margin: 5px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-status.opened {
    background: #ddffd1;
    color: #27ab16
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .ticket-status.closed {
    background: #ffd8d8;
    color: #f61414
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .btn-close-ticket {
    background: var(--danger);
    border: 0px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 4px 8px;
    margin: 5px 0px 0px 0px;
    outline: none;
    border-radius: 4px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .btn-close-ticket .spinner-border {
    position: relative;
    top: -3px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .btn-close-ticket:hover {
    background: #b1202f
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .btn-close-reopen {
    background: #46b8c9;
    border: 0px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 4px 8px;
    margin: 5px 0px 0px 0px;
    outline: none;
    border-radius: 4px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .btn-close-reopen .spinner-border {
    position: relative;
    top: -3px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-title .btn-close-reopen:hover {
    background: #19899a
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .alert-countdown {
    padding-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .alert-countdown span {
    background: #3d808d;
    height: auto;
    display: inline-block;
    padding: 4px 8px;
    color: #fff;
    border-radius: 6px;
    margin-left: 5px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-content {
    margin-top: 20px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-content h1,
#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-content h2,
#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-content h3,
#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-content h4 {
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-content p {
    line-height: 26px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-attachments {
    margin-top: 20px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-attachments h4 {
    font-weight: 600;
    color: #333;
    font-size: 18px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-attachments a {
    background: rgba(20, 85, 213, .02);
    border: 1px solid rgba(96, 117, 159, .3);
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    color: #515e77;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px 5px 0px 0px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-attachments a>i {
    margin-right: 3px;
    font-size: 16px;
    position: relative;
    top: 2px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-attachments a:hover {
    border-color: rgba(96, 117, 159, .6);
    color: #2e3643
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies-loading {
    margin: 0px;
    position: relative;
    z-index: 20
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies-loading>.loader {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .1);
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 25;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies-loading>.loader:after {
    border: 3px solid #b9bac4;
    border-top: 4px solid #2c6ef1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: block;
    animation: loader-spin .6s linear infinite;
    position: absolute;
    z-index: 55;
    left: 50%;
    top: 50%;
    margin-top: -12.5px;
    margin-left: -12.5px;
    content: ""
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies-loading:before {
    border-left: 2px dashed rgba(96, 117, 159, .2);
    width: 1px;
    position: absolute;
    z-index: 20;
    top: -30px;
    bottom: 0px;
    left: 20px;
    content: ""
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies {
    margin: 0px;
    position: relative;
    z-index: 20
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies:before {
    border-left: 2px dashed rgba(96, 117, 159, .2);
    width: 1px;
    position: absolute;
    z-index: -1;
    top: -30px;
    bottom: 0px;
    left: 20px;
    content: ""
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-status-update {
    display: block;
    position: relative;
    font-size: 14px;
    color: #50596b;
    z-index: 25;
    margin-left: 2px;
    margin-bottom: 20px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-status-update .user-photo {
    width: 40px;
    height: 40px;
    float: left;
    margin-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-status-update .user-photo img {
    width: 40px;
    height: 40px;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-status-update em {
    font-style: normal;
    font-size: 12px;
    color: #50596b;
    display: block;
    margin-top: 2px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-status-update b {
    font-weight: 700;
    color: #222c37
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-status-update>a {
    color: #222c37;
    text-decoration: none;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-status-update>a:hover {
    color: #255688
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply {
    display: block;
    position: relative;
    z-index: 25;
    margin: -5px 0px 20px -3px;
    padding: 5px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 49px;
    z-index: 10;
    border-right: 8px solid #fafcfe;
    border-top: 8px solid rgba(0, 0, 0, 0);
    border-bottom: 8px solid rgba(0, 0, 0, 0)
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 48px;
    z-index: 5;
    border-right: 8px solid rgba(67, 87, 133, .2);
    border-top: 8px solid rgba(0, 0, 0, 0);
    border-bottom: 8px solid rgba(0, 0, 0, 0)
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .user-photo {
    width: 40px;
    height: 40px;
    float: left;
    margin-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .user-photo img {
    width: 40px;
    height: 40px;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body {
    background: #fff;
    border-color: rgba(96, 117, 159, .2);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2);
    display: block;
    margin: 0px 5px 0px 51px;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head {
    background: rgba(20, 85, 213, .02);
    border: 1px solid rgba(96, 117, 159, .15);
    border-bottom: 1px solid rgba(96, 117, 159, .2);
    padding: 0px 15px;
    height: 40px;
    font-size: 14px;
    line-height: 38px;
    border-radius: 7px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head .star-rating-group {
    float: right
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head .star-rating-group.has-value {
    direction: ltr
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head .star-rating-group.has-value * {
    cursor: default;
    margin-left: 4.5px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head em {
    font-style: normal;
    font-size: 12px;
    color: #50596b;
    display: inline-block;
    margin-left: 10px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head>a {
    color: #222c37;
    text-decoration: none;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head>a small,
#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head>a b {
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-head>a:hover {
    color: #255688
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-content-html {
    overflow: hidden
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-content-html>p {
    overflow: hidden
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-content-html>p>img {
    max-width: 100% !important
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-content-html>p:last-child {
    margin-bottom: 0px !important
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-content {
    padding: 15px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply .ticket-reply-body .ticket-reply-content .ticket-attachments h4 {
    font-size: 16px;
    color: #111
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply.agent-reply .ticket-reply-head {
    background: rgba(195, 217, 255, .44)
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .ticket-reply.agent-reply:before {
    border-right-color: #e5eeff
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply {
    background: #fff;
    border-color: rgba(96, 117, 159, .2);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    z-index: 20;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-head {
    background: rgba(20, 85, 213, .02);
    border: 1px solid rgba(96, 117, 159, .15);
    border-bottom: 1px solid rgba(96, 117, 159, .2);
    padding: 0px 15px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 38px;
    border-radius: 7px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-body {
    padding: 15px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-body .note-editor {
    margin-bottom: 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-body .ck-button {
    cursor: pointer
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-body .ck-toolbar {
    border-radius: 7px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-body .ck-editor__editable_inline {
    min-height: 200px;
    border-radius: 0px 0px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer {
    background: #fafafa;
    border-top: 0;
    padding: 0;
    height: 70px;
    position: relative;
    margin: -1px -2px;
    border-radius: 0px 0px 7px 7px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer .btn-group {
    margin-top: 13px;
    position: relative;
    z-index: 20
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer .reply-attachment {
    position: absolute;
    z-index: 10;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 15px;
    color: #676c7a;
    line-height: 58px
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer .reply-attachment span {
    position: relative;
    z-index: 12
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer .reply-attachment .dropzone {
    width: 100%;
    outline: none !important;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0;
    z-index: 15
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer .reply-attachment.dragover {
    background: #eee;
    border: 1px dashed #aaa
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer .reply-attachment:hover .dropzone {
    z-index: 12
}

#Wrapper.single-page .Page-Content .container .user-view-ticket .ticket-replies .add-reply .add-reply-footer .reply-attachment:hover span {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 15px;
    z-index: 15
}

#Wrapper.single-page .Page-Content .container .user-new-ticket {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .card {
    border-color: rgba(96, 117, 159, .2);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .1);
    margin-bottom: 30px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-header,
#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-footer {
    background: rgba(20, 85, 213, .02);
    border: none;
    font-size: 18px;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-header.bordered,
#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-footer.bordered {
    border-bottom: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-header.bordered-top,
#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-footer.bordered-top {
    border-top: 1px solid rgba(96, 117, 159, .2)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-body .row {
    margin-left: -10px;
    margin-right: -10px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .card .card-body .row [class^=col] {
    padding-left: 10px;
    padding-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select {
    position: absolute;
    right: 11px;
    top: 13px;
    z-index: 5
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .btn.btn-sm {
    padding: 5px 10px;
    min-width: 100px;
    text-align: left
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .dropdown-menu {
    box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, .2)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .dropdown-toggle::after {
    margin: 9px 0px 0px 5px;
    vertical-align: 2px;
    float: right;
    color: #758290
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .dropdown-item {
    font-size: 14px;
    cursor: pointer;
    padding: .25rem 1rem
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .dropdown-item:focus,
#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .dropdown-item:active {
    background-color: #e0e7ec;
    color: #34414e;
    outline: none !important
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .indicator {
    background-color: #aaa;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    margin: 0px 2px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .indicator.indicator-high {
    background-color: var(--success)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .indicator.indicator-medium {
    background-color: var(--orange)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-priority-select .indicator.indicator-low {
    background-color: var(--danger)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content {
    overflow: hidden;
    z-index: 20;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-head {
    background: rgba(20, 85, 213, .02);
    border: 1px solid rgba(96, 117, 159, .15);
    border-bottom: 1px solid rgba(96, 117, 159, .2);
    padding: 0px 15px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 38px;
    border-radius: 7px 5px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-body .card {
    border: 1px solid #ced4da;
    box-shadow: none;
    margin-bottom: 0px;
    border-radius: 7px 5px 0px 0px;
    overflow: hidden
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-body .card .card-header {
    background: #e9ecef !important;
    border-bottom: 1px solid #ced4da !important
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-body .note-editor.note-airframe .note-statusbar,
#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-body .note-editor.note-frame .note-statusbar {
    display: none
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer {
    background: #e9ecef;
    border: 1px solid #ced4da;
    border-top: 0px;
    padding: 0px 15px;
    height: 70px;
    position: relative;
    margin: 0px;
    border-radius: 0px 0px 5px 5px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer .btn-group {
    margin-top: 15px;
    position: relative;
    z-index: 20
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer .ticket-attachment {
    position: absolute;
    border: 1px dashed rgba(0, 0, 0, 0);
    z-index: 10;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 15px;
    color: #676c7a;
    line-height: 68px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer .ticket-attachment span {
    position: relative;
    z-index: 12
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer .ticket-attachment .dropzone {
    width: 100%;
    outline: none !important;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0;
    z-index: 15
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer .ticket-attachment.dragover {
    background: #eee;
    border: 1px dashed #aaa
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer .ticket-attachment:hover .dropzone {
    z-index: 12
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .ticket-content .ticket-content-footer .ticket-attachment:hover span {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 15px;
    z-index: 15
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list {
    margin-top: 15px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item {
    padding: 10px;
    border-color: #ced4da;
    position: relative
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .img {
    background: #e9ecef;
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 4px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .img .centered {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(50%, 50%)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .img .centered>img {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100%;
    border-radius: 4px;
    transform: translate(-50%, -50%)
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .img span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    letter-spacing: .5px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    z-index: 10
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .attachment-list-content {
    margin: 8px 0px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .attachment-list-content h5 {
    font-size: 16px;
    color: #333;
    margin: 2px 0px 5px 0px;
    padding: 0px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .attachment-list-content h5.attachment-size {
    font-size: 14px;
    color: #666;
    float: left;
    margin-right: 10px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .attachment-list-content .progress {
    background: #ced4da;
    height: 10px;
    border-radius: 3px;
    margin: 10px 0px 0px 0px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .attachment-list-content .attachment-response {
    margin: 0px;
    font-size: 14px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .attachment-list-content .attachment-response i {
    font-size: 16px;
    position: relative;
    top: 1px
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .btn-remove-attachment {
    background: #fff;
    border: 1px solid var(--danger);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 19px;
    padding: 0px;
    font-size: 16px;
    color: var(--danger);
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 15px;
    cursor: pointer;
    outline: none !important;
    border-radius: 7px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .Page-Content .container .user-new-ticket .attachment-list .list-group-item .btn-remove-attachment:hover {
    background: var(--danger);
    color: #fff
}

#Wrapper.single-page .Page-Content .container .testimonials-page {
    margin: 0px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-form form {
    background: #eef4f5;
    padding: 20px;
    border-radius: 10px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-form form textarea {
    resize: none
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-form form .testimonials-form-footer {
    margin-top: 20px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-form form .testimonials-form-footer .star-rating-group {
    margin-top: -10px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list {
    margin-top: 0px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item {
    background: #fff;
    border: 1px solid #dbdbdb;
    box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, .15);
    padding: 15px 15px 70px 15px;
    margin-top: 30px;
    min-height: 100px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item>p {
    font-size: 14px;
    line-height: 23px;
    text-align: justify;
    color: #333
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    margin: 0px 0px 0px 0px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>img {
    background: #ddd;
    width: 50px;
    height: 50px;
    display: block;
    float: left;
    margin: 0px 15px 0px 0px;
    border-radius: 7px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>div {
    margin-top: 0px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>div>h4 {
    margin: 0px;
    font-size: 16px;
    font-weight: 600
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>div>span.time {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    bottom: 25px;
    right: 0px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>div>.rate-rang {
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 14px;
    color: #aaa
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>div>.rate-rang>i.fa-star.active {
    color: #fa0
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>div>.user_type {
    display: block;
    border: 1px solid #aaa;
    position: absolute;
    bottom: 0px;
    left: 65px;
    color: #666;
    padding: 1px 6px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 4px
}

#Wrapper.single-page .Page-Content .container .testimonials-page .testimonials-list .testimonials-list-item .author>div>.user_type.user-customer {
    border-color: #2c6ef1;
    color: #1455d5
}

#Wrapper.single-page .add-reply-content-footer {
    background: #f7fafc;
    border: 1px solid #e0e7ec;
    padding: 0px 15px;
    height: 70px;
    position: relative;
    margin: 0px;
    border-radius: 0px 0px 5px 5px
}

#Wrapper.single-page .add-reply-content-footer .btn-group {
    margin-top: 15px;
    position: relative;
    z-index: 20
}

#Wrapper.single-page .add-reply-content-footer .add-reply-attachment {
    position: absolute;
    border: 1px dashed rgba(0, 0, 0, 0);
    z-index: 10;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 15px;
    color: #676c7a;
    line-height: 68px
}

#Wrapper.single-page .add-reply-content-footer .add-reply-attachment span {
    position: relative;
    z-index: 12
}

#Wrapper.single-page .add-reply-content-footer .add-reply-attachment .dropzone {
    width: 100%;
    outline: none !important;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0;
    z-index: 15
}

#Wrapper.single-page .add-reply-content-footer .add-reply-attachment.dragover {
    background: #eee;
    border: 1px dashed #aaa
}

#Wrapper.single-page .add-reply-content-footer .add-reply-attachment:hover .dropzone {
    z-index: 12
}

#Wrapper.single-page .add-reply-content-footer .add-reply-attachment:hover span {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 15px;
    z-index: 15
}

#Wrapper.single-page .attachment-list {
    margin: 0 15px 15px 15px
}

#Wrapper.single-page .attachment-list .list-group-item {
    padding: 10px;
    border-color: #ced4da;
    position: relative
}

#Wrapper.single-page .attachment-list .list-group-item .img {
    background: #e9ecef;
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 4px
}

#Wrapper.single-page .attachment-list .list-group-item .img .centered {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(50%, 50%)
}

#Wrapper.single-page .attachment-list .list-group-item .img .centered>img {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100%;
    border-radius: 4px;
    transform: translate(-50%, -50%)
}

#Wrapper.single-page .attachment-list .list-group-item .img span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    letter-spacing: .5px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    z-index: 10
}

#Wrapper.single-page .attachment-list .list-group-item .attachment-list-content {
    margin: 8px 0px 0px 0px
}

#Wrapper.single-page .attachment-list .list-group-item .attachment-list-content h5 {
    font-size: 16px;
    color: #333;
    margin: 2px 0px 5px 0px;
    padding: 0px
}

#Wrapper.single-page .attachment-list .list-group-item .attachment-list-content h5.attachment-size {
    font-size: 14px;
    color: #666;
    float: left;
    margin-right: 10px
}

#Wrapper.single-page .attachment-list .list-group-item .attachment-list-content .progress {
    background: #ced4da;
    height: 10px;
    border-radius: 3px;
    margin: 10px 0px 0px 0px
}

#Wrapper.single-page .attachment-list .list-group-item .attachment-list-content .attachment-response {
    margin: 0px;
    font-size: 14px
}

#Wrapper.single-page .attachment-list .list-group-item .attachment-list-content .attachment-response i {
    font-size: 16px;
    position: relative;
    top: 1px
}

#Wrapper.single-page .attachment-list .list-group-item .btn-remove-attachment {
    background: #fff;
    border: 1px solid var(--danger);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 19px;
    padding: 0px;
    font-size: 16px;
    color: var(--danger);
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 15px;
    cursor: pointer;
    outline: none !important;
    border-radius: 7px;
    transition: all .2s ease-in-out
}

#Wrapper.single-page .attachment-list .list-group-item .btn-remove-attachment:hover {
    background: var(--danger);
    color: #fff
}

.collapse-row {
    background: #fff;
    border: 1px solid #dce0ed;
    margin-bottom: 10px;
    border-radius: 15px;
    transition: all .2s ease-in-out
}

.collapse-row>button {
    background: rgba(0, 0, 0, 0);
    border: none;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
    display: block;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    color: #555
}

.collapse-row>button i {
    transition: all .1s ease-in-out;
    font-size: 27px
}

.collapse-row>button[aria-expanded=true] i {
    transform: rotate(-180deg)
}

.collapse-row .collapse-content {
    padding: 0 20px 20px 20px
}

.collapse-row .collapse-content p:last-of-type {
    margin-bottom: 0
}

.collapse-row:has([aria-expanded=true]) {
    border-color: var(--primary)
}

@media only screen and (max-width: 1366px) {
    #Wrapper .Header .menu ul.pages>li {
        margin: 20px 10px 0px 0px
    }

    #Wrapper .Header .menu ul.pages>li>a {
        padding: 8px 15px
    }
}

@media only screen and (max-width: 995px) {
    #Wrapper .header-dash .services-section .service span {
        font-size: 14px
    }
}

@media only screen and (max-width: 800px) {
    #Wrapper .Header .menu .btn.btn-menu {
        display: block
    }

    #Wrapper .Header .menu .btn.btn-login>i {
        margin: 0px
    }

    #Wrapper .Header .menu ul.pages {
        width: 230px;
        background: #f5f7fa;
        box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, .25);
        display: block;
        position: fixed;
        left: -250px;
        top: 0;
        bottom: 0px;
        z-index: 60;
        transition: all .3s ease-in-out
    }

    #Wrapper .Header .menu ul.pages>li {
        display: block;
        float: none;
        margin: 15px 15px 0px 15px
    }

    #Wrapper .Header .menu ul.pages>li>a {
        padding: 8px 15px
    }

    #Wrapper .Header .menu ul.pages>li>a:hover,
    #Wrapper .Header .menu ul.pages>li>a:active {
        background: #dcdee5;
        color: rgba(0, 0, 0, .75)
    }

    #Wrapper.single-page .header-dash:after {
        height: 100%
    }

    #Wrapper.single-page .header-dash {
        height: auto;
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 30px
    }

    #Wrapper.single-page .Page-Content {
        padding: 15px
    }
}

@media only screen and (max-width: 600px) {
    #Wrapper .header-dash .search-form h2 {
        font-size: 27px
    }

    #Wrapper .Knowledge-Base .category-blocks {
        border: 0px
    }

    #Wrapper .Knowledge-Base .category-blocks>div.col-lg-4 {
        border-right: 1px solid #d8dee2;
        margin: 0px 15px
    }

    #Wrapper .Knowledge-Base .category-blocks>div.col-lg-4:last-of-type {
        border-bottom: 1px solid #d8dee2
    }

    #loginModal .modal-login {
        width: auto
    }
}

@media only screen and (max-width: 480px) {
    #Wrapper .header-dash .search-form h2 {
        font-size: 23px
    }

    #Wrapper .Subscribe .subscribe-form .btn {
        padding: 10px 20px
    }
}

/*# sourceMappingURL=front-main.css.map */