body, html {
    overflow-x: hidden
}

/*--------------------------------------------------------------
Colors
--------------------------------------------------------------*/
:root {
    --white: #fff;
    --moody-blue: #7f78d2;
    --persian-indigo: #481380;
    --radical-red: #f73859;
    --san-marino: #3f72af;
    --product-color: #ededed;
    --product-border-color: transaprent;
    --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;
    --category-border-color: #00000014;
    --category-font-color: #0000007F;
    --first-main-font-color: #444;
}

.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);
    }
}

.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);
    }
}

/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.loader-circle {
    border: 5px solid #fff;
    border-top-color: #0e6fb5;
    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 {
    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: var(--tree-poppy);
    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;
}

.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%;
}

/*--------------------------------------------------------------
TOPBAR
--------------------------------------------------------------*/
.topbar {
    display: flex;
    align-items: stretch;
    padding: 0;
}

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

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

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

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

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

@media (max-width: 575.98px) {
    .topbar .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 img {
    height: 18px;
    width: 18px;
}

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

.topbar li, ul {
    margin: 0;
}

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

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

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

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

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

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

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

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

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