body, html {
    overflow-x: hidden
}

/*--------------------------------------------------------------
Colors
--------------------------------------------------------------*/
:root {
    --white: #fff;
    --moody-blue: #7f78d2;
    --persian-indigo: #481380;
    --radical-red: #f73859;
    --san-marino: #3f72af;
    --product-color: #ededed;
    --polo-blue: #769fcd;
    --carnation: #f95959;
    --malibu: #6eb6ff;
    --danube: #7098da;
    --matisse: #1e56a0;
    --tree-poppy: #ffa41b;
    --purple-heart: #9818d6;
    --melrose: #9399ff;
    --mountain-meadow: #21bf73;
    --scampi: #5f6caf;
    --torch-red: #fa163f;
    --supernova: #ffcc00;
    --true-v: #916dd5;
    --havelock-blue: #617be3;
    --shamrock: #50d890;
    --electric-violet: #7e0cf5;
    --royal-blue: #4d80e4;
    --indigo: #537ec5;
    --tundora: #444;
    --general-bg: #fff;
}

.bg-color-tundora {
    background: var(--tundora);
}

.bg-color-white {
    background: var(--white) !important;
}

.bg-color-moody-blue {
    background: var(--moody-blue) !important;
}

.bg-color-persian-indigo {
    background: var(--persian-indigo) !important;
}

.bg-color-radical-red {
    background: var(--radical-red) !important;
}

.bg-color-san-marino {
    background: var(--san-marino) !important;
}

.bg-color-matisse {
    background: var(--matisse) !important;
}

.bg-color-purple-heart {
    background: var(--purple-heart) !important;
}

.bg-color-torch-red {
    background: var(--torch-red) !important;
}

.bg-color-tree-poppy {
    background: var(--tree-poppy) !important;
}

.bg-color-mountain-meadow {
    background: var(--mountain-meadow) !important;;
}

.bg-color-royal-blue {
    background: var(--royal-blue) !important;;
}

.bg-color-secondary {
    background: #fafafa !important;
}

.color-white {
    color: var(--white) !important;
}

.color-tree-poppy {
    color: var(--tree-poppy);
}

.color-royal-blue {
    color: var(--royal-blue) !important;;
}

.color-black {
    color: #999 !important;
}


/*------------------------------------------
ANIMATIONS
------------------------------------------*/
.ring {
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }
    1% {
        -webkit-transform: rotateZ(30deg);
    }
    3% {
        -webkit-transform: rotateZ(-28deg);
    }
    5% {
        -webkit-transform: rotateZ(34deg);
    }
    7% {
        -webkit-transform: rotateZ(-32deg);
    }
    9% {
        -webkit-transform: rotateZ(30deg);
    }
    11% {
        -webkit-transform: rotateZ(-28deg);
    }
    13% {
        -webkit-transform: rotateZ(26deg);
    }
    15% {
        -webkit-transform: rotateZ(-24deg);
    }
    17% {
        -webkit-transform: rotateZ(22deg);
    }
    19% {
        -webkit-transform: rotateZ(-20deg);
    }
    21% {
        -webkit-transform: rotateZ(18deg);
    }
    23% {
        -webkit-transform: rotateZ(-16deg);
    }
    25% {
        -webkit-transform: rotateZ(14deg);
    }
    27% {
        -webkit-transform: rotateZ(-12deg);
    }
    29% {
        -webkit-transform: rotateZ(10deg);
    }
    31% {
        -webkit-transform: rotateZ(-8deg);
    }
    33% {
        -webkit-transform: rotateZ(6deg);
    }
    35% {
        -webkit-transform: rotateZ(-4deg);
    }
    37% {
        -webkit-transform: rotateZ(2deg);
    }
    39% {
        -webkit-transform: rotateZ(-1deg);
    }
    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }
    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }
    1% {
        -moz-transform: rotate(30deg);
    }
    3% {
        -moz-transform: rotate(-28deg);
    }
    5% {
        -moz-transform: rotate(34deg);
    }
    7% {
        -moz-transform: rotate(-32deg);
    }
    9% {
        -moz-transform: rotate(30deg);
    }
    11% {
        -moz-transform: rotate(-28deg);
    }
    13% {
        -moz-transform: rotate(26deg);
    }
    15% {
        -moz-transform: rotate(-24deg);
    }
    17% {
        -moz-transform: rotate(22deg);
    }
    19% {
        -moz-transform: rotate(-20deg);
    }
    21% {
        -moz-transform: rotate(18deg);
    }
    23% {
        -moz-transform: rotate(-16deg);
    }
    25% {
        -moz-transform: rotate(14deg);
    }
    27% {
        -moz-transform: rotate(-12deg);
    }
    29% {
        -moz-transform: rotate(10deg);
    }
    31% {
        -moz-transform: rotate(-8deg);
    }
    33% {
        -moz-transform: rotate(6deg);
    }
    35% {
        -moz-transform: rotate(-4deg);
    }
    37% {
        -moz-transform: rotate(2deg);
    }
    39% {
        -moz-transform: rotate(-1deg);
    }
    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }
    1% {
        transform: rotate(30deg);
    }
    3% {
        transform: rotate(-28deg);
    }
    5% {
        transform: rotate(34deg);
    }
    7% {
        transform: rotate(-32deg);
    }
    9% {
        transform: rotate(30deg);
    }
    11% {
        transform: rotate(-28deg);
    }
    13% {
        transform: rotate(26deg);
    }
    15% {
        transform: rotate(-24deg);
    }
    17% {
        transform: rotate(22deg);
    }
    19% {
        transform: rotate(-20deg);
    }
    21% {
        transform: rotate(18deg);
    }
    23% {
        transform: rotate(-16deg);
    }
    25% {
        transform: rotate(14deg);
    }
    27% {
        transform: rotate(-12deg);
    }
    29% {
        transform: rotate(10deg);
    }
    31% {
        transform: rotate(-8deg);
    }
    33% {
        transform: rotate(6deg);
    }
    35% {
        transform: rotate(-4deg);
    }
    37% {
        transform: rotate(2deg);
    }
    39% {
        transform: rotate(-1deg);
    }
    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}

.spin {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.arrow-jump {
    -webkit-animation: arrow-jump 1s infinite; /* Safari 4+ */
    -moz-animation: arrow-jump 1s infinite; /* Fx 5+ */
    animation: arrow-jump 1s infinite; /* IE 10+, Fx 29+ */
}

@keyframes arrow-jump {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@-webkit-keyframes arrow-jump {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.arrow-jump-vertical {
    -webkit-animation: arrow-jump-vertical 2s infinite; /* Safari 4+ */
    -moz-animation: arrow-jump-vertical 2s infinite; /* Fx 5+ */
    animation: arrow-jump-vertical 2s infinite; /* IE 10+, Fx 29+ */
}

@keyframes arrow-jump-vertical {
    0% {
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    100% {
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@-webkit-keyframes arrow-jump-vertical {
    0% {
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    100% {
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        transform: translateY(5px);
    }
}

.shadow-pulse {
    -webkit-animation: shadow-pulse 1s infinite; /* Safari 4+ */
    -moz-animation: shadow-pulse 1s infinite; /* Fx 5+ */
    animation: shadow-pulse 1s infinite; /* IE 10+, Fx 29+ */
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.45);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }
}

@-webkit-keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.45);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes floating {
    from {
        transform: translate(0, -15px);
    }
    65% {
        transform: translate(0, 15px);
    }
    to {
        transform: translate(0, -15px);
    }
}

@-webkit-keyframes floating {
    from {
        transform: translate(0, -15px);
    }
    65% {
        transform: translate(0, 15px);
    }
    to {
        transform: translate(0, -15px);
    }
}


.floating-small {
    animation-name: floating-small;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes floating-small {
    from {
        transform: translate(0, -5px);
    }
    65% {
        transform: translate(0, 5px);
    }
    to {
        transform: translate(0, -5px);
    }
}

@-webkit-keyframes floating-small {
    from {
        transform: translate(0, -5px);
    }
    65% {
        transform: translate(0, 5px);
    }
    to {
        transform: translate(0, -5px);
    }
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

/* Scroll down indicator (bouncing) */
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    60% {
        -webkit-transform: translateY(-2.5px);
        -moz-transform: translateY(-2.5px);
        -ms-transform: translateY(-2.5px);
        -o-transform: translateY(-2.5px);
        transform: translateY(-2.5px);
    }
}

/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.loader-circle {
    border: 5px solid #fff;
    border-top-color: #f64e60;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 101
}

.preloader span {
    margin-top: 20px;
    color: #888
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}


/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.preloader-page {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000000
}

.preloader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1000;
    opacity: 1 !important
}

.preloader-fixed {
    position: fixed !important;
}

.loader-circle, .loader-circle-small, .loader-circle-small-white {
    border: 5px solid #e5e5e5;
    border-top-color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 101
}

.loader-circle-small {
    height: 20px;
    width: 20px;
    border-width: 3px;
}

.loader-circle-white {
    border: 5px solid rgba(255, 255, 255, .6);
    border-top-color: #fff;
}

.loader-circle-purple {
    border: 5px solid #0bb783;
    border-top-color: #fff;
    margin: 0 auto;
    text-align: center;
}

.preloader span {
    margin-top: 20px;
    color: #888
}

input[type="checkbox"] {
    display: inline-block !important;
}

.form-preloader {
    position: relative;
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

/*--------------------------------------------------------------
Bootbox
--------------------------------------------------------------*/
.modal-dialog .modal-title {
    font-size: 14px
}

.modal-dialog .close {
    font-weight: normal;
}

.modal-dialog .bootbox-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog .modal-body {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

.bootstrap-select > .dropdown-toggle.btn-light, .bootstrap-select > .dropdown-toggle.btn-secondary {
    border-width: 1px !important;
    border-style: solid !important;
}


/*--------------------------------------------------------------
SWEETALERT2
--------------------------------------------------------------*/
.swal2-popup {
    padding: 1rem !important
}

.swal2-popup .swal2-title {
    font-weight: 600 !important;
    font-size: 14px !important;
}

.swal2-popup #swal2-content {
    font-weight: 400 !important;
    font-size: 13px !important;
}

.swal2-popup .btn {
    margin: 15px 5px 0 !important
}

.swal2-popup .swal2-styled:focus {
    box-shadow: none !important
}

.swal2-container {
    overflow-y: hidden !important
}

body.swal2-height-auto {
    height: 100% !important
}

.swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, 0.2) !important
}

.swal2-popup .swal2-title {
    color: #48465b !important
}

.swal2-popup #swal2-content {
    color: #74788d !important
}

.swal2-popup #swal2-content a {
    color: #444;
    font-weight: 400;
    text-decoration: underline;
    margin-top: 5px
}

.swal2-popup .swal2-styled.swal2-confirm,
.swal2-popup .swal2-styled.swal2-cancel {
    font-size: 12px !important;
    font-weight: bold !important;
}

b.is-badge {
    background: #2B4782;
    color: #fff;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
    padding: 5px;
    border-radius: 3px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
    font-weight: bold;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-big-first-letter {
    text-transform: capitalize;
}


/*--------------------------------------------------------------
Zones
--------------------------------------------------------------*/
.zones-container {
    height: 800px;
    position: relative;
    width: 100%;
}

#map {
    width: 100%;
    height: 100%;
}

.text-uppercase {
    text-transform: uppercase;
}

.swal2-title:empty {
    display: none;
}

.pac-container {
    z-index: 9999999 !important;
    top: 65px !important;
    left: 12px !important;
}

.text-muted {
    color: #555 !important;
}

#toast-container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    background: rgba(0, 0, 0, .5) !important;
}

#toast-container > div {
    box-shadow: none;
    -webkit-animation: shadow-pulse 1s infinite; /* Safari 4+ */
    -moz-animation: shadow-pulse 1s infinite; /* Fx 5+ */
    animation: shadow-pulse 1s infinite; /* IE 10+, Fx 29+ */
    opacity: 1 !important;
}

@page {
    size: auto;
    margin: 0;
}

/*--------------------------------------------------------------
PRELOADER PAGE
--------------------------------------------------------------*/
.preloader-page {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000000
}

.kt--custom-preloader-data-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    width: 100%;
    height: 100%
}

.chooseDate-custom-style {
    background-color: #fafafa !important;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

.none-data {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.loader-circle {
    border-width: 4px !important;
    border-top-color: #5578eb !important;
    width: 30px !important;
    height: 30px !important;
}


/*--------------------------------------------------------------
AJAX DATA CONTAINER
--------------------------------------------------------------*/
.AjaxDataContainer {
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.AjaxDataContainer-padding {
    position: relative;
}

.bootbox-size-md .GetAjaxDataForm {
    padding: 0 !important;
}

@media screen and (max-width: 1024px) {
    .GetAjaxDataForm {
        padding: 15px !important;
    }
}


/*--------------------------------------------------------------
PREVIEW ASSET DATA
--------------------------------------------------------------*/
.list-info-about {
    padding: 0;
    margin: 0;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
}

.list-info-about li:not(:last-child) {
    border-bottom: 1px solid #e5e5e5
}

.list-info-about li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    overflow: hidden
}

.list-info-about li > div {
    padding: 10px;
    display: flex;
    align-items: center
}

.list-info-about--header {
    width: 200px;
    border-right: 1px solid #e5e5e5;
    background: #fafafa
}

.list-info-about--content {
    text-align: left;
    width: 100%;
    overflow: auto
}

.list-info-about--content > span {
    padding-right: 10px
}

.list-info-about-title {
    box-shadow: 0 0 15px 0 rgba(85, 120, 235, .5);
    position: relative;
    z-index: 10;
}

.list-info-about-title div {
    background: var(--info);
}

.list-info-about-title div > span {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0, 0, 0, .05);
    text-transform: uppercase;
}


.kt--custom-complaints-item {
    display: flex !important;
    flex-direction: column;
    padding: 10px
}

.kt--custom-widget3__img > img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
    margin-bottom: 10px
}

.kt--custom-preloader-data {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .3);
    z-index: 100
}

.kt--custom-fullsize-img {
    background: rgba(0, 0, 0, .7);
    position: fixed
}


/*--------------------------------------------------------------
Bootbox
--------------------------------------------------------------*/
.bootbox-size-sm {
    max-width: 300px
}

.bootbox-size-md {
    max-width: 500px
}

.bootbox-size-lg {
    max-width: 800px
}

.bootbox-size-xl {
    max-width: 1200px
}


/*--------------------------------------------------------------
FULLSIZE IMG
--------------------------------------------------------------*/
.kt--custom-fullsize-img {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    z-index: 99999999999999999999999999999;
    padding: 30px;
}

.kt--custom-fullsize-img > img {
    max-width: 100%;
    max-height: 90%;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .3);
}


/*--------------------------------------------------------------
COLORPICKER
--------------------------------------------------------------*/
.colorpicker-alpha {
    display: none !important
}

.colorpicker {
    min-width: 128px !important
}


/*--------------------------------------------------------------
SELECTPICKER
--------------------------------------------------------------*/
.bootstrap-select .dropdown-menu, .swal2-container {
    z-index: 9999999999999999 !important
}

.select2-container {
    width: 100% !important
}


/*--------------------------------------------------------------
PORTLET
--------------------------------------------------------------*/
.kt-portlet--vertical-fluid {
    display: flex;
    justify-content: center
}

.kt-portlet {
    box-shadow: none;
    border: 1px solid #ebedf2;
    border-radius: 10px;
    overflow: hidden !important;
    position: relative;
}

.kt-portlet .kt-portlet__head {
    border-bottom: 0;
}

.kt-portlet .kt-portlet__head + .kt-portlet__body {
    border-top: 1px solid #ebedf2;
    border-radius: 0 !important;
}

.kt-portlet-accordion > .kt-portlet__head {
    cursor: pointer;
}

.kt-portlet-accordion > .kt-portlet__body {
    display: none;
}

/*--------------------------------------------------------------
DATATABLES
--------------------------------------------------------------*/
.dataTables_wrapper .dataTable .selected th, .dataTables_wrapper .dataTable .selected td {
    background-color: #f7f8fa !important;
    color: #6c7293 !important;
}

table.table-bordered:not(.table-no-padding).dataTable tbody td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.dataTables_wrapper th, .dataTables_wrapper td {
    font-size: 13px;
}

.dataTables_wrapper .child .dtr-details > li .dtr-data {
    max-width: 500px;
    white-space: normal;
}


/*--------------------------------------------------------------
TOASTR
--------------------------------------------------------------*/
#toast-container .toast {
    opacity: 1;
}

#toast-container .toast-message {
    font-weight: bold;
}


/*--------------------------------------------------------------
GLOBAL
--------------------------------------------------------------*/
.reset-list li, .reset-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.btn-sort_by {
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cursor-default {
    cursor: default !important;
}

.full-width {
    width: 100%;
}

.select2-selection.is-invalid {
    border-color: #fd397a;
    padding-right: calc(1.5em + 1.3rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23fd397a' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23fd397a' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .325rem) center;
    background-size: calc(.75em + .65rem) calc(.75em + .65rem);
}

.bg-none {
    background: transparent !important;
}

.hide {
    display: none;
}

.btn-preloader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-preloader > span {
    display: block;
    margin-left: 5px;
}

.btn-preloader > span:before {
    border-color: #fff !important;
    border-right-color: transparent !important;
}

.rotate-arrow {
    transform: rotate(180deg);
}

.text-muted-half {
    font-size: 11px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


/*--------------------------------------------------------------
PORTLET
--------------------------------------------------------------*/
.kt-portlet--vertical-fluid {
    display: flex;
    justify-content: center
}

.kt-portlet {
    box-shadow: none;
    border: 1px solid #ebedf2;
    border-radius: 10px;
    overflow: hidden !important;
    position: relative;
}

.GetAjaxDataForm .kt-portlet:not(:first-child) {
    margin-top: 20px;
}

.kt-portlet .kt-portlet__head {
    border-bottom: 0;
    padding: 20px;
}

.kt-portlet .kt-portlet__head .kt-portlet__head-title {
    margin-bottom: 0;
    font-size: 16px;
}

.kt-portlet .kt-portlet__head + .kt-portlet__body {
    border-top: 1px solid #ebedf2;
    border-radius: 0 !important;
    padding: 20px;
}

.kt-portlet-accordion > .kt-portlet__head {
    cursor: pointer;
}

.kt-portlet-accordion > .kt-portlet__body {
    display: none;
}

.navi-link-here .navi-text {
    color: #0bb783 !important;
}

.cursor-default {
    cursor: default !important;
}

.btn-fullsize-img {
    cursor: pointer;
}

/*--------------------------------------------------------------
TOPBAR
--------------------------------------------------------------*/
.topbar-lang {
    display: flex;
    align-items: stretch;
    padding: 0;
    margin-left: 10px;
}

.topbar-lang .topbar-item {
    display: flex;
    align-items: center;
}

.topbar-lang .dropdown {
    display: flex;
    align-items: stretch;
    border: none;
}

@media (max-width: 991.98px) {
    .header-mobile-fixed .topbar-lang {
        position: fixed;
        z-index: 96;
    }

    .topbar-mobile-on .topbar-lang {
        z-index: 2;
        transition: all 0.3s ease;
        border-top: 1px solid #EBEDF3;
        margin-top: 55px;
    }

    .topbar-mobile-on.header-mobile-fixed .topbar-lang {
        z-index: 96;
        margin-top: 55px;
    }
}

@media (max-width: 575.98px) {
    .topbar-lang .topbar-item .btn.btn-icon {
        height: 35px;
        width: 35px;
    }
}

@media (min-width: 992px) {
    .header-mobile {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .topbar-mobile-on .header-mobile {
        box-shadow: none !important;
    }
}

.topbar-lang img {
    height: 18px;
    width: 18px;
}

.topbar-lang .dropdown-menu.dropdown-menu-sm {
    width: 175px;
}

.topbar-lang li, ul {
    margin: 0;
}

.topbar-lang .navi {
    padding: 0;
    margin: 0;
    display: block;
    list-style: none;
}

.topbar-lang .navi .navi-item .navi-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.topbar-lang .navi .navi-item .navi-link:hover, .active-lang {
    transition: all 0.15s ease;
    color: #3699FF;
}

.topbar-lang .navi.navi-hover .navi-item .navi-link:hover, .active-lang {
    background-color: #F3F6F9;
}

.topbar-lang .navi .navi-item .navi-link {
    transition: all 0.15s ease;
    color: #3F4254;
}

.topbar-lang .navi img {
    width: 22px;
    height: 22px;
    border-radius: 3px;
}

.topbar-lang .btn-icon {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 100%;
    height: 38px !important;
    width: 38px !important;
}
