/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */

.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */

.toast-title {
  font-weight: bold;
}

.toast-message {
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}

.toast-container * {
  box-sizing: border-box;
}

.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}

.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */

.toast-info {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */

.toast-error {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */

.toast-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */

.toast-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' width='576' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E");
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}

.toast-success {
  background-color: #51A351;
}

.toast-error {
  background-color: #BD362F;
}

.toast-info {
  background-color: #2F96B4;
}

.toast-warning {
  background-color: #F89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

/* Responsive Design */

@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

.cdk-global-overlay-wrapper,.cdk-overlay-container{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}@media screen and (-ms-high-contrast:active){.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.288)}.cdk-overlay-transparent-backdrop,.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.owl-dialog-container{position:relative;pointer-events:auto;box-sizing:border-box;display:block;padding:1.5em;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);border-radius:2px;overflow:auto;background:#fff;color:rgba(0,0,0,.87);width:100%;height:100%;outline:0}.owl-dt-container,.owl-dt-container *{box-sizing:border-box}.owl-dt-container{display:block;font-size:16px;font-size:1rem;background:#fff;pointer-events:auto;z-index:1000}.owl-dt-container-row{border-bottom:1px solid rgba(0,0,0,.12)}.owl-dt-container-row:last-child{border-bottom:none}.owl-dt-calendar{display:flex;flex-direction:column;width:100%}.owl-dt-calendar-control{display:flex;align-items:center;font-size:1em;width:100%;padding:.5em;color:#000}.owl-dt-calendar-control .owl-dt-calendar-control-content{flex:1 1 auto;display:flex;justify-content:center;align-items:center}.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button{padding:0 .8em}.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button:hover{background-color:rgba(0,0,0,.12)}.owl-dt-calendar-main{display:flex;flex-direction:column;flex:1 1 auto;padding:0 .5em .5em;outline:0}.owl-dt-calendar-view{display:block;flex:1 1 auto}.owl-dt-calendar-multi-year-view{display:flex;align-items:center}.owl-dt-calendar-multi-year-view .owl-dt-calendar-table{width:calc(100% - 3em)}.owl-dt-calendar-multi-year-view .owl-dt-calendar-table .owl-dt-calendar-header th{padding-bottom:.25em}.owl-dt-calendar-table{width:100%;border-collapse:collapse;border-spacing:0}.owl-dt-calendar-table .owl-dt-calendar-header{color:rgba(0,0,0,.4)}.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-weekdays th{font-size:.7em;font-weight:400;text-align:center;padding-bottom:1em}.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider{position:relative;height:1px;padding-bottom:.5em}.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider:after{content:'';position:absolute;top:0;left:-.5em;right:-.5em;height:1px;background:rgba(0,0,0,.12)}.owl-dt-calendar-table .owl-dt-calendar-cell{position:relative;height:0;line-height:0;text-align:center;outline:0;color:rgba(0,0,0,.85);-webkit-appearance:none;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}.owl-dt-calendar-table .owl-dt-calendar-cell-content{position:absolute;top:5%;left:5%;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;font-size:.8em;line-height:1;border:1px solid transparent;border-radius:999px;color:inherit;cursor:pointer}.owl-dt-calendar-table .owl-dt-calendar-cell-out{opacity:.2}.owl-dt-calendar-table .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected){border-color:rgba(0,0,0,.4)}.owl-dt-calendar-table .owl-dt-calendar-cell-selected{color:rgba(255,255,255,.85);background-color:#3f51b5}.owl-dt-calendar-table .owl-dt-calendar-cell-selected.owl-dt-calendar-cell-today{box-shadow:inset 0 0 0 1px rgba(255,255,255,.85)}.owl-dt-calendar-table .owl-dt-calendar-cell-disabled{cursor:default}.owl-dt-calendar-table .owl-dt-calendar-cell-disabled>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected){color:rgba(0,0,0,.4)}.owl-dt-calendar-table .owl-dt-calendar-cell-disabled>.owl-dt-calendar-cell-content.owl-dt-calendar-cell-selected{opacity:.4}.owl-dt-calendar-table .owl-dt-calendar-cell-disabled>.owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected){border-color:rgba(0,0,0,.2)}.owl-dt-calendar-table .owl-dt-calendar-cell-active:focus>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected),.owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected){background-color:rgba(0,0,0,.04)}.owl-dt-calendar-table .owl-dt-calendar-cell-in-range{background:rgba(63,81,181,.2)}.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from{border-top-left-radius:999px;border-bottom-left-radius:999px}.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-to{border-top-right-radius:999px;border-bottom-right-radius:999px}.owl-dt-timer{display:flex;justify-content:center;width:100%;height:7em;padding:.5em;outline:0}.owl-dt-timer-box{position:relative;display:inline-flex;flex-direction:column;align-items:center;width:25%;height:100%}.owl-dt-timer-content{flex:1 1 auto;display:flex;justify-content:center;align-items:center;width:100%;margin:.2em 0}.owl-dt-timer-content .owl-dt-timer-input{display:block;width:2em;text-align:center;border:1px solid rgba(0,0,0,.5);border-radius:3px;outline:medium none;font-size:1.2em;padding:.2em}.owl-dt-timer-divider{display:inline-block;align-self:flex-end;position:absolute;width:.6em;height:100%;left:-.3em}.owl-dt-timer-divider:after,.owl-dt-timer-divider:before{content:'';display:inline-block;width:.35em;height:.35em;position:absolute;left:50%;border-radius:50%;transform:translateX(-50%);background-color:currentColor}.owl-dt-timer-divider:before{top:35%}.owl-dt-timer-divider:after{bottom:35%}.owl-dt-control-button{-webkit-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;margin:0;padding:0;background-color:transparent;font-size:1em;color:inherit}.owl-dt-control-button .owl-dt-control-button-content{position:relative;display:inline-flex;justify-content:center;align-items:center;outline:0}.owl-dt-control-period-button .owl-dt-control-button-content{height:1.5em;padding:0 .5em;border-radius:3px;transition:background-color .1s linear}.owl-dt-control-period-button:hover>.owl-dt-control-button-content{background-color:rgba(0,0,0,.12)}.owl-dt-control-period-button .owl-dt-control-button-arrow{display:flex;justify-content:center;align-items:center;width:1em;height:1em;margin:.1em;transition:transform .2s ease}.owl-dt-control-arrow-button .owl-dt-control-button-content{padding:0;border-radius:50%;width:1.5em;height:1.5em}.owl-dt-control-arrow-button[disabled]{color:rgba(0,0,0,.4);cursor:default}.owl-dt-control-arrow-button svg{width:50%;height:50%;fill:currentColor}.owl-dt-inline-container,.owl-dt-popup-container{position:relative;width:18.5em;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.owl-dt-inline-container .owl-dt-calendar,.owl-dt-inline-container .owl-dt-timer,.owl-dt-popup-container .owl-dt-calendar,.owl-dt-popup-container .owl-dt-timer{width:100%}.owl-dt-inline-container .owl-dt-calendar,.owl-dt-popup-container .owl-dt-calendar{height:20.25em}.owl-dt-dialog-container{max-height:95vh;margin:-1.5em}.owl-dt-dialog-container .owl-dt-calendar{min-width:250px;min-height:330px;max-width:750px;max-height:750px}.owl-dt-dialog-container .owl-dt-timer{min-width:250px;max-width:750px}@media all and (orientation:landscape){.owl-dt-dialog-container .owl-dt-calendar{width:58vh;height:62vh}.owl-dt-dialog-container .owl-dt-timer{width:58vh}}@media all and (orientation:portrait){.owl-dt-dialog-container .owl-dt-calendar{width:80vw;height:80vw}.owl-dt-dialog-container .owl-dt-timer{width:80vw}}.owl-dt-container-buttons{display:flex;width:100%;height:2em;color:#3f51b5}.owl-dt-container-control-button{font-size:1em;width:50%;height:100%;border-radius:0}.owl-dt-container-control-button .owl-dt-control-button-content{height:100%;width:100%;transition:background-color .1s linear}.owl-dt-container-control-button:hover .owl-dt-control-button-content{background-color:rgba(0,0,0,.1)}.owl-dt-container-info{padding:0 .5em;cursor:pointer;-webkit-tap-highlight-color:transparent}.owl-dt-container-info .owl-dt-container-range{outline:0}.owl-dt-container-info .owl-dt-container-range .owl-dt-container-range-content{display:flex;justify-content:space-between;padding:.5em 0;font-size:.8em}.owl-dt-container-info .owl-dt-container-range:last-child{border-top:1px solid rgba(0,0,0,.12)}.owl-dt-container-info .owl-dt-container-info-active{color:#3f51b5}.owl-dt-container-disabled,.owl-dt-trigger-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none;cursor:default!important}.owl-dt-timer-hour12{display:flex;justify-content:center;align-items:center;color:#3f51b5}.owl-dt-timer-hour12 .owl-dt-timer-hour12-box{border:1px solid currentColor;border-radius:2px;transition:background .2s ease}.owl-dt-timer-hour12 .owl-dt-timer-hour12-box .owl-dt-control-button-content{width:100%;height:100%;padding:.5em}.owl-dt-timer-hour12 .owl-dt-timer-hour12-box:focus .owl-dt-control-button-content,.owl-dt-timer-hour12 .owl-dt-timer-hour12-box:hover .owl-dt-control-button-content{background:#3f51b5;color:#fff}.owl-dt-calendar-only-current-month .owl-dt-calendar-cell-out{visibility:hidden;cursor:default}.owl-dt-inline{display:inline-block}.owl-dt-control{outline:0;cursor:pointer}.owl-dt-control .owl-dt-control-content{outline:0}.owl-dt-control:focus>.owl-dt-control-content{background-color:rgba(0,0,0,.12)}.owl-dt-control:not(:-moz-focusring):focus>.owl-dt-control-content{box-shadow:none}.owl-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}body {
    font-family: 'Inter', 'Noto Sans', sans-serif !important;
    /* background-color: #f3f3f3; */
    background-color: #7289da1a;
    font-size: 15px;
}h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', 'Noto Sans', sans-serif !important;
}:root {
    --main-color: #7289da;
    --clr-green: #7289da;
    --clr-orange: #E77817;
}button[disabled] {
    color: #888 !important;
}button.btn {
    box-shadow: none !important;
}.main-content {
    margin: 4rem 0 0;
    padding: 0;
}@media screen and (min-width:768px) {
    .main-content {
        padding: 0;
    }
}@media screen and (max-width: 480px) {
    .main-content {
        margin-left: 0 !important;
    }
}label.form-label.is-invalid {
    color: #dc3545 !important;
}.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none;
}.required-field::after {
    content: "*";
    color: #dc3545!important;
    font-size: 18px;
    margin-left: 2px;
    line-height: 21px;
}ngx-select.ng-untouched.ng-pristine.ng-invalid.is-invalid .ngx-select__toggle {
    border-color: #dc3545 !important;
}.bg-main {
    background-color: var(--main-color);
    color: #fff;
}.text-main {
    color: var(--main-color);
}.text-edit {
    color: blueviolet !important;
}.btn-main-light:hover,
.btn-main {
    background-color: var(--main-color) !important;
    color: #fff !important;
    font-size: 0.85rem;
}.btn-main:hover {
    background-color: var(--main-color);
    color: #fff;
}.btn-main-light{
    background-color:#eaeeff !important;
    color: var(--main-color) !important;
    font-size: 0.85rem;
    font-weight: 500;
}.form-group {
    position: relative;
}.invalid-feedback {
    position: absolute;
    margin-top: -1px;
    width: auto;
    font-size: 70%;
    color: #dc3545;
}.invalid-feedback {
    display: flex;
    margin-top: 0;
}tr.active {
    background: #f5f5f5;
}/* dateRangePicker control css */.dateRangePicker-wrapper .dateRangePicker .form-inputs>.col {
    padding: 0 10px !important;
}.dateRangePicker-wrapper .dateRangePicker .form-inputs .form-control {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}.dateRangePicker .container-fluid {
    padding: 0 11px !important;
}.calendar .calendar-pagination .month-year {
    font-size: 0.85rem !important;
}.dateRangePicker-wrapper .dateRangePicker .btn img,
.dateRangePicker-wrapper .dateRangePicker .btn.btn-link img {
    width: 12px !important;
}.calendar .table td,
.calendar .table th,
.calendar .table td {
    height: 28px !important;
    width: 28px !important;
    max-width: 28px !important;
    min-width: 28px !important;
}.dateRangePicker-wrapper .dateRangePicker.open-left {
    z-index: 1;
}.owl-dt-inline-container,
.owl-dt-popup-container,
.owl-dt-timer-content .owl-dt-timer-input {
    font-size: 0.85rem;
}/* .cdk-global-overlay-wrapper,
.cdk-overlay-container {
    width: 75%;
} */.owl-dt-timer {
    padding: 0;
    height: 5.0em;
}.owl-dt-timer-box {
    height: 80%;
}.owl-dt-container-buttons {
    font-size: 12px;
    color: var(--theme-color);
}.owl-dt-calendar-table .owl-dt-calendar-cell-selected {
    background-color: var(--theme-color);
}.owl-dt-inline-container,
.owl-dt-popup-container {
    width: 16em;
}.owl-dt-inline-container .owl-dt-calendar,
.owl-dt-popup-container .owl-dt-calendar {
    height: 18em;
}.owl-dt-timer-content {
    margin: 0;
}i.fa.fa-spinner.fa-spin.ng-star-inserted {
    color: #7c6319 !important;
    font-size: 18px !important;
    z-index: 999 !important;
    opacity: 1 !important;
}#navbar ul li.active i {
    color: #fff!important;
}#navbar ul li.active label {
    background: var(--main-color) !important;
    color: #fff!important;
}a {
    cursor: pointer!important;
}.h-400 {
    height: 400px;
}.h-150 {
    height: 150px;
    width: 150px;
    object-fit: cover;
}owl-date-time-timer.owl-dt-container-row.ng-tns-c96-1.owl-dt-timer.ng-star-inserted {
    display: none !important;
}.ngx-pagination {
    padding: 0 !important;
    margin-top: 10px;
}.ngx-pagination .current {
    padding: 4px 9px !important; 
    background: #272848!important;
    border: solid 1px #272848 !important;
    font-size: .7rem; 
}.ngx-pagination .disabled,
.ngx-pagination a,
.ngx-pagination button {
    padding: 4px 9px !important; 
    text-decoration: none;
    font-size: .7rem; 
    
}.ngx-pagination li {
    display: inline-block;
    border: solid 1px #bbb !important;
    margin: 0 !important;
    font-size: 0.85rem;
}.ngx-pagination .pagination-next a::after,
.ngx-pagination .pagination-next.disabled::after,
.ngx-pagination .pagination-previous a::before,
.ngx-pagination .pagination-previous.disabled::before {
    margin: 0 !important;
}.ngx-pagination .pagination-previous {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}.ngx-pagination .pagination-next {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}.ngx-select__toggle,
.ngx-select input,
.ngx-select__toggle {
    font-size: 0.8rem !important;
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #ced4da;
}.ngx-select,
.ngx-select__item,
.ngx-select__clear,
.ngx-select__selected-plural {
    font-size: 0.8rem !important;
    box-shadow: none;
    /* line-height: 32.71px; */
}.ngx-select__item {
    color: #000 !important;
}.ngx-select_multiple .ngx-select__clear {
    color: #fff !important;
    opacity: 0.9;
}.ngx-select__item_active {
    background-color: var(--main-color) !important;
    color: #fff !important;
    box-shadow: none;
}.owl-dt-calendar-table .owl-dt-calendar-cell-selected {
    color: rgba(255, 255, 255, .85);
    background-color: #3f51b5 !important;
}.text-ellipsis-250px {
    white-space: nowrap;
    width: 250px !important;
    display: block;
    overflow: hidden !important;
    text-overflow: ellipsis;
}.text-ellipsis-150px {
    white-space: nowrap;
    width: 600px !important;
    display: block;
    overflow: hidden !important;
    text-overflow: ellipsis;
}#dash-stats {
    margin-bottom: 15px
}#dash-stats .card {
    border: none;
    border-radius: 15px;
    box-shadow: 1px 1px 4px #dfdfdf
}#dash-stats .card:hover {
    cursor: pointer;
}#dash-stats .card i {
    font-size: 4.4rem;
    margin-bottom: 5px;
    position: absolute;
    opacity: .1;
    bottom: 0;
    right: 10px
}#dash-stats .card p {
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 10px
}#dash-stats .card h3 {
    font-weight: 400 !important;
    text-align: left;
    margin-bottom: 0;
    font-size: 1.7rem !important;
}#dash-stats .bg-cyan {
    background-color: #b7e7e9;
    color: #2d7678
}#dash-stats .bg-green {
    background-color: #e0f3be;
    color: #61743e
}#dash-stats .bg-blue {
    background-color: #d4e0ff;
    color: #22408d
}#dash-stats .bg-gold {
    background-color: #f0e4bf;
    color: #7c6319
}#dash-stats .bg-red {
    background-color: #ffdada;
    color: #b20000
}#dash-stats .bg-voilet {
    background-color: #eed3ee;
    color: #510051
}.chartfont {
    font-size: .75rem
}.chartbox .card {
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 4px #dfdfdf
}.chartbox .card .card-header {
    background-color: transparent;
    border-bottom: none;
    font-size: .85rem;
    font-weight: 600;
    line-height: 34px
}.chartbox .card .card-header a {
    color: var(--main-color);
    margin-left: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
}.chartbox .card .card-header .form-control,
.chartbox .card .card-header .form-select,
.chartbox .card .card-body .list-group-item {
    font-size: .85rem;
    box-shadow: none;
    border: 1px solid #ced4da;
}.chartbox .card .card-header .input-group .form-control {
    border-right: none;
}.chartbox .card .card-header .input-group .btn {
    background-color: transparent;
    border: 1px solid #ced4da;
    border-left: none;
    box-shadow: none;
    outline: none;
}.chartbox .card .card-header .form-check-input[type=radio] {
    margin-top: 10px
}.chartbox .activity-item {
    margin-bottom: 18px;
    /*border-radius: 5px;
    padding: 8px 10px; */
    font-size: .85rem;
    transition: all .25s ease-in;
    display: block;
    text-decoration: none;
    color: #000;
    align-items: center;
}.chartbox .table {
    font-size: .8rem
}.chartbox .table thead th {
    background-color: #f5f5f5;
    border-bottom: solid 1px #aaa;
    border-top: solid 1px #eee;
    font-weight: 500
}.chartbox .table th,
.chartbox .table td {
    vertical-align: middle
}.chartbox .table td .form-check-input[type="checkbox"] {
    width: 32px;
    height: 18px;
}.chartbox .table td .form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}.chartbox .table td .btn {
    font-size: .65rem;
    box-shadow: none;
    outline: none;
    padding: 5px 7px
}.chartbox .table td a {
    text-decoration: none
}.chartbox .table td a:hover {
    text-decoration: underline
}.chartbox .table img {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    /* border: solid 1px #aaa; */
    margin-right: 2px;
    padding: 2px;
    object-fit: contain
}.chartbox .table .prophoto {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    border: none;
    padding: 0;
    object-fit: cover;
    object-position: top;
}.table-height-sm {
  height: 450px; /* Small table height */
  overflow-y: auto;
}.table-height-md {
  height: 600px; /* Medium table height */
  overflow-y: auto;
}.table-height-lg {
  height: 800px; /* Large table height */
  overflow-y: auto;
}.replay {
    background-color: rgb(13, 202, 240, 12%)!important;
}.unread {
    background-color: rgb(0, 0, 0, 8%)!important;
}.ignored {
    background-color: rgb(220, 53, 69, 12%) !important;
}.modal-body svg {
    width: 100px !important;
    display: block !important;
    margin: 0px auto !important;
}mapsvg-layers-wrap+svg {
    width: 454px !important;
    display: block;
    margin: 0px auto;
}.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}.path.circle {
    animation: dash 0.9s ease-in-out;
}.path.line {
    stroke-dashoffset: 1000;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}#gallery img {
    width: 145px;
    max-width: 145px;
    height: 145px;
    max-height: 145px;
    object-fit: cover;
}#gallery img:hover {
    cursor: pointer;
    border-color: var(--main-color);
}#GalleryModal .modal-header {
    background-color: transparent;
}#GalleryModal .btn-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #fff;
    width: 30px;
    height: 30px;
    z-index: 999;
}#GalleryModal .modal-body,
#GalleryModal .modal-content {
    padding: 0;
    text-align: center;
    background-color: transparent
}#GalleryModal .carousel-item img {
    height: 92vh;
}.cdk-global-overlay-wrapper,
.cdk-overlay-container {
    z-index: 9999 !important;
}.form-container .form-label {
    font-size: .75rem;
    margin-bottom: 5px;
    color: #757575
}.form-container .form-select,
.form-container .form-control,
.form-container .form-data,
.form-container .form-check {
    font-size: .85rem;
    outline: none;
    box-shadow: none
}.form-container .form-data {
    font-weight: 500
}.form-container .partylogo {
    width: 30px
}.form-container .btn {
    font-size: .85rem
}.modal .modal-header,
.modal-header {
    background-color: var(--main-color) !important;
    color: #fff !important;
}.modal-title {
    font: inherit !important;
    margin: 0 !important;
}.modal .modal-content,
.modal-content {
    border: none
}.modal .modal-body,
.modal p {
    font-size: .85rem
}.modal .table {
    font-size: .8rem
}.modal .table thead th {
    background-color: #f5f5f5;
    border-bottom: solid 1px #aaa;
    border-top: solid 1px #eee
}.modal button.btn-close,
.btn-close {
    background-color: #fff !important;
    border-radius: 50% !important;
    box-shadow: none !important;
}.img-con {
    position: relative;
    /* width: 100px; */
    margin-right: 10px;
}.img-con .helpimg {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: solid 1px #ced4da;
    padding: 5px;
    border-radius: 5px;
}.img-con .btn {
    border-radius: 50%;
    box-shadow: none;
    position: absolute;
    background-color: rgb(255, 190, 190);
    width: 26px;
    height: 26px;
    line-height: 16px;
    padding: 5px;
    font-size: 0.85rem;
    right: -6px;
    top: -6px;
}::-webkit-scrollbar {
    background: transparent;
    overflow: visible;
    width: 14px;
}::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border: solid #fff;
}::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.8);
}::-webkit-scrollbar-thumb:horizontal {
    border-width: 4px 6px;
    min-width: 40px;
}::-webkit-scrollbar-thumb:vertical {
    border-width: 6px 4px;
    min-height: 40px;
}::-webkit-scrollbar-track-piece {
    background-color: #fff;
}::-webkit-scrollbar-corner {
    background: transparent;
}::-webkit-scrollbar-thumb {
    background-color: #ADADAD;
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.10), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}#maharashtra_districts_texts text {
    fill: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}.mapsvg-scrollpane svg {
    transform: scale(1) !important;
}.img-h300 {
    height: 300px;
}.toast-container {
    font-size: 0.85rem !important;
}.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}.btn-link {
    color: var(--main-color);
}.btn-link:hover {
    color: var(--main-color);
}/* outer page css */.section {
    margin-top: 50px;
}.page-header {
    height: 220px;
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 105px;
    color: white;
    overflow: hidden;
    background: rgb(37, 37, 37, 0.8);
    background: linear-gradient(rgb(37, 37, 37, 0.8), rgba(37, 37, 37, 0.8)), url("/assets/images/event-header.jpg");
    background: linear-gradient(rgb(37, 37, 37, 0.8), rgb(37, 37, 37, 0.8)), url("/assets/images/event-header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}.page-header .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}.page-header .centered h1 {
    color: var(--clr-orange);
    font-weight: 300;
    font-size: 2.5rem;
}.page-header p {
    color: #aaa;
}.page-header p a {
    color: #fff;
    text-decoration: none;
}.page-header p a:hover {
    color: var(--clr-orange);
}.mat-dialog-container {
    padding: 0 !important;
    height: none !important;
    overflow: inherit !important;
}/* .modal-dialog {
    margin-block: 0 !important;
} */.list-column {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 10px;
}.uploadimg {
    position: relative;
    width: 160px;
}.uploadimg img {
    width: 150px;
    height: 150px;
    /* object-fit: cover; */
}.uploadimg .btn-add {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgb(0 0 0 / 35%);
    color: #fff !important;
    width: 150px;
    height: 150px;
    font-size: 2.6rem;
    box-shadow: none;
}.uploadimg .btn-remove {
    position: absolute;
    top: -10px;
    right: -1px;
    border-radius: 50%;
    box-shadow: none;
    border: solid 1px #ccc;
}.angular-editor-textarea:focus-visible,
.angular-editor-wrapper:focus-visible {
    outline: 1px solid #ced4da !important;
}ngx-select.ng-untouched.ng-invalid.is-invalid .ngx-select__toggle {
    border: solid 1px red !important;
}.pac-container {
    z-index: 9999 !important;
}@media print {
    @page {
        margin: 0;
    }
    body {
        padding: 0rem;
        margin: 0;
    }
    .doNotPrint {
        display: none !important;
    }
    #printarea {
        margin: 0;
        left: 0;
        top: 0;
        position: relative;
    }
}.accordion-button {
    padding: 17px 15px;
    color: #000;
    font-size: 12px !important;
}.modal-body {
    /* max-height: calc(100vh - 100px); */
    /* overflow-y: auto; */
}.remove-shape {
    direction: ltr;
    overflow: hidden;
    text-align: left;
    position: relative;
    display: inline-block;
    color: rgb(0, 0, 0);
    font-family: Roboto, Arial, sans-serif;
    font-size: 11px;
    padding: 2px;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-background-clip: padding-box;
    box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px;
    border-left-width: 0px;
    font-weight: 500;
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
}.remove-shape:hover {
    background: rgb(235, 235, 235);
}.gmnoprint[title='Draw a circle'],
.gmnoprint[title='Draw a shape']{
    display: none !important;
}/* .gmnoprint {
    right: 5px !important;
} */.mat-tree-node {
    cursor: pointer;
}.notClicked{
    pointer-events: none;
    cursor: default;
    background: rgb(235, 235, 235) !important;
    fill: rgb(235, 235, 235) !important;
}.clicked{
    pointer-events: auto;
    fill: #7289da !important;
}.svgDistrictActive{
    pointer-events: auto;
    fill: rgb(39, 40, 72)!important;
}.NCPColorCode{
	fill:#80deea!important;
}.SSColorCode{
	fill:#ff8a65!important;
}.BJPCode{
	fill:#e57373!important;
}.INCColorCode{
	fill:rgb(205, 130, 184)!important;
}.OTRColorCode{
	fill:#4db6ac!important;
}.zeroActivity{
    /* pointer-events: none;
    cursor: default; */
    fill: #c0c5d5!important;
    background:#c0c5d5!important;
}.lessThanFive{
    fill: #b959e0!important;
    background: #b959e0!important;
}.greaterThanFive{
    fill: var(--main-color) !important;
    background:var(--main-color) !important;
}.greaterThanFiveBox{
    width: 10px; 
    height: 10px; 
    display: inline-block;
    background:var(--main-color) !important;
    margin-right: 5px;
}.lessThanFiveBox{
    width: 10px; 
    height: 10px; 
    display: inline-block;
    background:#d6b1e5!important;
    margin-right: 5px;
}.zeroActivityBox{
    width: 10px; 
    height: 10px; 
    display: inline-block;
    background:#c0c5d5!important;
    margin-right: 5px;
}.lessThanfifteen{
    fill: pink!important;
}.mat-tree-node button {
    width: 24px  !important;
    height: 24px!important;
}.mat-icon-button i, .mat-icon-button .mat-icon {
    line-height: 14px!important;
}.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
}.mat-tree{
    font-size: 0.80rem !important;
}g[shape-rendering="auto"]{
    display: none;
}.cdk-overlay-pane{
    max-width: 100vw !important;
}@media (min-width: 576px){
.m-width {
    width: 1024px!important;
    max-width: 1024px!important;
}
}/* @media (min-width:320px) and (min-width:480px){
    .m-width {
        width:100%!important;
        max-width: 100%!important;
    }
} *//* .ngx-select__choices{
    z-index: 9999;
    width:14.5% !important;
    min-width: fit-content !important;
} */
.mapsvg {
    /* set map height to 100px for a preloader message - */
    /* real height will be set later by MapSVG */
    height: 100px;
    position : relative;
    overflow: hidden;
}
.mapsvg-wrap *, .mapsvg * {
    outline: none !important;
    touch-action: manipulation;
    -webkit-backface-visibility:  hidden;
    -webkit-tap-highlight-color:  transparent;
}
.mapsvg-popover,
.mapsvg-details-container {
    outline: none !important;
    touch-action: manipulation;
    -webkit-backface-visibility:  hidden;
    -webkit-tap-highlight-color:  transparent;
}
.mapsvg.mapsvg-responsive {
    width: 100%;
    height: auto;
}
.mapsvg.mapsvg-cursor-pointer .mapsvg-region {
    cursor: pointer;
}
.mapsvg.mapsvg-disabled-regions .mapsvg-region {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    pointer-events: none;
    cursor: default;
}
.mapsvg-disabled {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    pointer-events: none;
    cursor: default;
}
.mapsvg text, .mapsvg tspan {
    pointer-events: none;
}
.mapsvg svg {
    -webkit-user-select: none;
    user-select: none;
    /*overflow: visible !important;*/
    max-width: none !important;
    max-height: none !important;
    width: 100%;
    height: auto;
    /*height: 100vh;*/
    position: relative;
    transition: transform .40s;
    transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
}
/* SMOOTH TRANSITIONS */
.mapsvg.no-transitions *
{
    transition: none !important;
    transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
}
.mapsvg-popover {
    transition: transform .40s;
}
.mapsvg-marker {
    transition: transform .40s;
}
.mapsvg-scrollpane {
    transition: transform .40s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.mapsvg-with-google-map.mapsvg-google-map-loading svg,
.mapsvg-with-google-map.mapsvg-google-map-loading .mapsvg-scrollpane
{
    opacity: 0;
}
.mapsvg-google-map-loading.mapsvg-fade-in svg,
.mapsvg-google-map-loading.mapsvg-fade-in .mapsvg-scrollpane
{
    opacity: 1;
    transition: opacity .30s ease-out !important;
}
.mapsvg-with-google-map .mapsvg-scrollpane,
.mapsvg-with-google-map svg,
.mapsvg-with-google-map .mapsvg-popover,
.mapsvg-with-google-map .mapsvg-marker
{
    transition: transform .10s ease-out;
}
.mapsvg-with-google-map.scrolling * {
    transition-property: none!important;
    /*!* These doesn't affect anything, but, just in case. *!*/
    animation: none!important;
    transition: none;
}
.mapsvg.scrolling .mapsvg-scrollpane {
    transition: none;
}
.mapsvg.mapsvg-scrollable {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -webkit-grab;
}
/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.mapsvg.scrolling {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}
/* PRELOADER */
.mapsvg-loading {
    position: absolute;
    top:  50%;
    left: 50%;
    font-size: 12px !important;
    z-index: 1;
    padding: 7px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #ccc;
    background: #f5f5f2;
    color: #999;
}
/* ZOOM BUTTONS */
.mapsvg-buttons {
    position: absolute;
    margin: 10px;
    top: 0;
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 0 0 5px #999;
}
.mapsvg-buttons.right {
    right: 0;
}
.mapsvg-buttons.left {
    left: 0;
}
.mapsvg-btn-zoom,
.mapsvg-btn
{
    width: 24px;
    height: 24px;
    border-radius: 2px;
    display: block;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    padding: 0;
}
.mapsvg-btn-zoom:hover,
.mapsvg-btn:hover
{
    background-color: #f2f2f2;
}
.mapsvg-btn-zoom.in {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: 1px solid #ddd;
}
.mapsvg-btn-zoom.out {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.mapsvg-btn-back:before {
    content: '&lsaquo;';
    display: block;
    position: absolute;
    color: #999;
    height: 24px;
    width: 24px;
    line-height: 24px;
    font-size: 14px;
    pointer-events: none;
}
.mapsvg-btn-zoom.in:before, .mapsvg-btn-zoom.out:before {
    content: '';
    display: block;
    position: absolute;
    top: 11px;
    left: 6px;
    background-color: #999;
    height: 1px;
    width: 12px;
    pointer-events: none;
}
.mapsvg-btn-zoom.in:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 11px;
    background-color:  #999;
    height: 12px;
    width: 1px;
    pointer-events: none;
}
/* TOOLTIPS */
.mapsvg-tooltip {
    font-weight: normal;
    font-size: 12px;
    font-family: Helvetica, Arial;
    color: #000000;
    position: absolute;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    z-index: 999999;
    background-color: white;
    border: 1px solid #eee;
    padding: 4px 7px;
    max-width: 600px;
    opacity: 0;
    transition: opacity .16s ease-out;
    pointer-events: none;
    text-align: left;
}
.mapsvg-tooltip.mapsvg-tooltip-visible {
    opacity: 1;
}
.mapsvg-tooltip.mapsvg-tt-top { transform: translate(-50%, -100%) translateY(-10px); }
.mapsvg-tooltip.mapsvg-tt-left { transform: translate(-100%, -50%) translateX(-10px); }
.mapsvg-tooltip.mapsvg-tt-bottom { transform: translate(-50%, 25px); }
.mapsvg-tooltip.mapsvg-tt-right { transform: translate(15px, -50%); }
.mapsvg-tooltip.mapsvg-tt-top-left { transform: translate(-100%, -100%) translate(10px,-10px); }
.mapsvg-tooltip.mapsvg-tt-top-right { transform: translateY(-100%) translateY(-10px);  }
.mapsvg-tooltip.mapsvg-tt-bottom-left { transform: translate(-100%, 25px) translateX(10px); }
.mapsvg-tooltip.mapsvg-tt-bottom-right { transform: translateY(25px); }
/* POPOVERS */
.mapsvg-popover-close {
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
    z-index: 1200;
}
.mapsvg-details-close {

}
.mapsvg-popover .nano > .nano-content {
    overflow-x    : auto !important;
}
.mapsvg-popover img {
    max-width: 100%;
}
.mapsvg-popover-close {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0;
    transform: scale(0.25);
    -webkit-transform: scale(0.25);
}
.mapsvg-auto-height {
    position: relative;
}
.mapsvg-popover-close:hover::before, .mapsvg-popover-close:hover::after {
    background: #666;
}
.mapsvg-popover-close::before, .mapsvg-popover-close::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #000;
}
@-moz-document url-prefix() {
    .mapsvg-popover-close::before, .mapsvg-popover-close::after {
        height: 3px;
    }
}
.mapsvg-popover-close::before {
    transform: rotate(45deg);
}
.mapsvg-popover-close::after {
    transform: rotate(-45deg);
}
.mapsvg-popover-close.big {
    transform: scale(3);
}
.mapsvg-popover-close.hairline::before, .mapsvg-popover-close.hairline::after {
    height: 2px;
}
.mapsvg-popover-close.thick::before, .mapsvg-popover-close.thick::after {
    height: 4px;
    margin-top: -2px;
}
.mapsvg-popover-close.black::before, .mapsvg-popover-close.black::after {
    height: 8px;
    margin-top: -4px;
}
.mapsvg-popover-close.heavy::before, .mapsvg-popover-close.heavy::after {
    height: 12px;
    margin-top: -6px;
}
.mapsvg-popover-close.pointy::Before, .mapsvg-popover-close.pointy::after {
    width: 200%;
    left: -50%;
}
.mapsvg-popover-close.rounded::before, .mapsvg-popover-close.rounded::after {
    border-radius: 5px;
}
.mapsvg-popover-close.blades::before, .mapsvg-popover-close.blades::after {
    border-radius: 5px 0;
}
.mapsvg-popover-close.warp::before, .mapsvg-popover-close.warp::after {
    border-radius: 120% 0;
}
.mapsvg-popover-close.fat::before, .mapsvg-popover-close.fat::after {
    border-radius: 100%;
}
.mapsvg-popover .mapsvg-popover-content {
    overflow-y: auto;
}
.mapsvg-popover {
    background-color: rgba(255,255,255, 1);
    border: 1px solid rgba(255,255,255, 1);
    border-radius: 5px;
    box-shadow: 0 4px 15px 1px rgba(0, 0, 0, 0.5);
    color: #000;
    display: none;
    font-size: 12px;
    font-family: 'Helvetica',sans-serif;
    /*padding: 15px 10px 7px 10px;*/
    position: absolute;
    width: 250px;
    min-width: 100px;
    max-width: 100%;
    max-height: 300px;
    min-height: 55px;
    bottom: 100%;
    margin-bottom: 6px;
    transform: translate(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 2;
}
.mapsvg-auto-height {
    position: relative;
}
.mapsvg-popover .mapsvg-controller-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.mapsvg-popover .mapsvg-controller-view-toolbar + .mapsvg-controller-view-wrap .mapsvg-controller-view-content {
    padding-top: 0;
}
.mapsvg-popover .mapsvg-controller-view-toolbar {
    height: 20px;
}
.mapsvg-popover .mapsvg-popover-content {
    overflow-y: auto;
}
.mapsvg-popover:before {
    border-top: 7px solid rgba(255,255,255, 1);
    border-top-color: inherit;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    bottom: -7px;
    content: '';
    display: block;
    left: 50%;
    margin-left: -7px;
    position: absolute;
}
.mapsvg-popover.mapsvg-popover-visible {
    display: block;
}
.mapsvg-popover.mapsvg-popover-animate {
    -webkit-animation: fade-in .2s linear 1 ; /* , move-up .2s ease-out */
    -moz-animation: fade-in .2s linear 1; /* , move-up .2s ease-out */
    -ms-animation: fade-in .2s linear 1; /* , move-up .2s ease-out */
}
/* CHOROPLETH MAPS */
.mapsvg-gauge {
    background-color: #ffffff;
    border-radius: 3px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    max-width: 50%;
    min-width: 10%;
    font-size: 11px !important;
    line-height: 15px !important;
    color: #666666;
    padding: 0px 0px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
}
.mapsvg-gauge table {
    width: auto;
    margin: 0;
    border: 0;
    padding: 0;
}
.mapsvg-gauge .mapsvg-gauge-gradient {
    min-width: 100px;
}
.mapsvg-gauge table tr {
    border :0 !important;
}
.mapsvg-gauge table td {
    padding: 2px 7px;
    border: 0 !important;
}
/* DIRECTORY */
.mapsvg-wrap {
    position: relative;
    box-sizing: border-box;
}
.mapsvg-wrap .mapsvg-directory {
    display: flex;
    flex-flow: column;
    max-height: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: #f5f5f5;
}
.mapsvg-wrap .mapsvg-directory.mapsvg-directory-right {
    left: auto;
    right: 0;
}
.mapsvg-controller-view {
    position: relative;
    height: 100%;
    pointer-events: auto;
    /*border-right: 1px solid #eee;*/
}
.mapsvg-controller-view-wrap.nano {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.mapsvg-controller-view-content {
    padding: 15px;
    box-sizing: border-box;
}
.mapsvg-mobile-buttons {
    height: 50px;
    background-color: #eee;
    position: relative;
    display: none;
}
.mapsvg-button-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    left: 50%;
    bottom: 0;
    line-height: 50px;
    cursor: pointer;
    color: #222;
    text-align: center;
    border: 1px solid #ddd;
}
.mapsvg-button-map {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 50%;
    bottom: 0;
    line-height: 50px;
    cursor: pointer;
    color: #444;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-right: 0;
}
.mapsvg-button-menu:hover, .mapsvg-button-map:hover {
    background-color: #e2e2e2;
}
.mapsvg-button-menu.active, .mapsvg-button-map.active {
    background-color: #ccc;
    border-color: #ccc;
    color: #fff;
}
.mapsvg-directory-search-wrap-margin {
    position: relative;
    height: 34px;
}
.mapsvg-directory-search {
    height: 34px;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 3px 15px 3px 15px;
    font-weight: normal;
    width: 100%;
}
.mapsvg-directory-search {
    position: absolute;
    top: 0;
    right: 0;
    left:0 ;
    bottom: 0;
    display:block;
    box-sizing:border-box;
}
.mapsvg-filter-btn-ok {
    display: none;
}
.mapsvg-directory-list-wrap:after,
.mapsvg-details-container:after
{
    content: " ";
    height: 100%;
    position: absolute;
    right: -15px;
    width: 15px;
    top: 0;
}
.mapsvg-directory-search:active,
.mapsvg-directory-search:focus {
    border: 1px solid #eee !important;
}
.mapsvg-directory-search:focus,
.mapsvg-directory-search:active
{
    outline: 0 !important;
    -webkit-appearance:none !important;
    border: 0;
    box-shadow: none;
}
.mapsvg-directory-list-wrap {
    border-right: 1px solid #e5e5e5;
    max-height: 100%;
    flex: 1 0;
    z-index: 1;
    background: #fafafa;
    position: relative;
    height: 48px;
}
.mapsvg-directory-list {
    overflow-y: scroll;
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.mapsvg-directory-item {
    display: block;
    cursor: pointer;
    padding: 10px;
}
/* .mapsvg-directory-item:hover {
    background: rgba(0,0,0,.05);
}
.mapsvg-directory-item.hover {
    background: rgba(0,0,0,.05);
} */
.mapsvg-directory-item.selected {
    background: rgba(0,0,0,.1) !important;
}
.mapsvg-directory-item:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.mapsvg-wrap .mapsvg {
    flex: 1 0;
    min-width: 0; /* firefox flex fix */
}
.mapsvg-directory {
    min-width: 0; /* firefox flex fix */
    position: relative;
    z-index: 2;
    -webkit-font-smoothing: antialiased;
}
.mapsvg-directory.closed {
}
.mapsvg-directory.closed .mapsvg-directory-list-wrap {
}
.mapsvg-directory.mapsvg-directory-overlapping .mapsvg-details-container {
    box-shadow: none;
}
.mapsvg-directory ul {
    margin: 0;
}
.mapsvg-directory li {
    list-style: none;
}
.mapsvg-directory-filter-wrap {
    padding-top: 7px;
}
.mapsvg-directory-filter-wrap:first-child {
    padding-top: 0;
}
.mapsvg-directory-filter-wrap:empty {
    display: none;
}
.mapsvg-filter-tag {
    background: #ddd;
    color: #666;
    display: inline-block;
    padding: 0 8px;
    line-height: 27px;
    border-radius: 5px;
    font-size: 13px;
    -webkit-user-select: none;
    user-select: none;
}
.mapsvg-filter-delete {
    display: inline-block;
    color: #444;
    font-size: 16px;
    padding-left: 3px;
}
.mapsvg-filter-delete:hover {
    color: #999;
    cursor: pointer;
}
.mapsvg-directory-search-wrap {
    box-sizing: border-box;
    position: relative;
}
/* DETAILS VIEW */
.mapsvg-details-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    max-height: 100%;
}
.mapsvg-details-container > div {
    background-color: #fafafa;
}
.mapsvg-details-container .mapsvg-controller-view-content {
    padding-top: 0;
}
.mapsvg-details-container.near {
    z-index: 3;
    pointer-events: none;
}
.mapsvg-details-container.top {
    z-index: 3;
    pointer-events: none;
}
.mapsvg-details-container {
}
.mapsvg-details-container:empty {
    display: none;
}
.over .mapsvg-details-container {
    opacity: 0;
}
/*.mapsvg-details-view-toolbar {*/
/*position: relative;*/
/*height: 25px;*/
/*}*/
.mapsvg-details-container.mapsvg-over {
    left: 0;
    width: 100%;
    z-index: 2;
}
.mapsvg-details-container.mapsvg-over:after {
    box-shadow: none !important;
}
.mapsvg-details-container.mapsvg-near {
    width: 100%;
    z-index: -1;
}
/*.mapsvg-details-container.nano {*/
/*position: absolute;*/
/*top: 35px;*/
/*bottom: 0px;*/
/*left: 10px;*/
/*right: 0px;*/
/*}*/
/*.mapsvg-details-container.nano .nano-content {*/
/*right: 15px;*/
/*}*/
.mapsvg-controller-view-toolbar {
    padding: 7px;
    box-sizing: border-box;
}
.mapsvg-controller-view-toolbar:empty {
    display: none;
}
.mapsvg-controller-view-toolbar:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.mapsvg-details-container .mapsvg-controller-view-toolbar {
    height: 28px;
    padding: 0;
}
.mapsvg-details-close {
    transform: scale(0.4);
    /*cursor: pointer;*/
    /*background: url('../img/close.png');*/
    /*background-size: cover;*/
    /*width: 25px;*/
    /*height: 25px;*/
    /*display: block;*/
    /*position: relative;*/
    /*float: right;*/
}
/*.mapsvg-details-close:hover {*/
/*opacity: .6;*/
/*}*/
.mapsvg-details-back {
    left: 0;
    right: auto;
    cursor: pointer;
    /* background: url('../img/left.png'); */
    background-size: cover;
    width: 25px;
    height: 25px;
}
/* MARKERS */
.mapsvg-marker {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    max-width: none !important;
}
.mapsvg-marker-hidden {
    opacity: 0.4;
    pointer-events: none;
}
.mapsvg-marker-visible {
    display: block !important;
}
/* LAYERS */
.mapsvg-layers-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
.mapsvg-layer {}
.mapsvg-layer-gm {
    pointer-events: none;
}
/* PAGINATION  (bootstrap styles) */
.mapsvg-pagination .pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}
.mapsvg-pagination .pager li {
    display: inline-block;
    margin: 0 2px;
}
.mapsvg-pagination .pager li > a,
.mapsvg-pagination .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    line-height: 1.5;
    font-family: Helvetica;
    box-shadow: none;
    text-decoration: none;
    font-size: 13px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.mapsvg-pagination .pager li > a:hover,
.mapsvg-pagination .pager li > a:focus {
    text-decoration: none;
    background-color: #eee;
}
.mapsvg-pagination .pager .next > a,
.mapsvg-pagination .pager .next > span {
    float: right;
}
.mapsvg-pagination .pager .previous > a,
.mapsvg-pagination .pager .previous > span {
    float: left;
}
.mapsvg-pagination .pager .disabled > a,
.mapsvg-pagination .pager .disabled > a:hover,
.mapsvg-pagination .pager .disabled > a:focus,
.mapsvg-pagination .pager .disabled > span {
    color: #ccc;
    cursor: not-allowed;
    background-color: #fff;
}
.mapsvg-pagination li.disabled {
    pointer-events: none;
}
/* pagination when directory is switched off */
.mapsvg > .mapsvg-pagination {
    position: absolute;
    bottom: 10px;
    left: 7px;
}
.mapsvg > .mapsvg-pagination ul {
    margin: 0;
}
.mapsvg-filter-label:empty {
    display: none;
}
#mapsvg-admin .mapsvg-filter-label:empty {
    display: block !important;
}
/* GROUPS CONTROL */
.mapsvg-layers-control {
    max-width: 200px;
    position: absolute;
    font-size: 12px;
    text-align: left;
    padding: 10px;
    height: 100%;
}
.mapsvg-layers-control.closed {
    pointer-events: none;
}
.mapsvg-layers-control.closed .mapsvg-layers-label {
    pointer-events: all;
}
.mapsvg-layers-control.mapsvg-top-left {
    top: 0px;
    left: 0px;
}
.mapsvg-layers-control.mapsvg-top-left {
    top: 0px;
    left: 0px;
}
.mapsvg-layers-control.mapsvg-top-right {
    top: 0px;
    right: 0px;
}
.mapsvg-layers-control.mapsvg-bottom-right {
    bottom: 0px;
    right: 0px;
}
.mapsvg-layers-control.mapsvg-bottom-left {
    bottom: 0px;
    left: 0px;
}
.mapsvg-layers-control .mapsvg-layers-label {
    height: 23px;
    line-height: 23px;
    background: rgba(255,255,255,0.7);
    padding: 0 7px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;

}
.mapsvg-layers-label:after
{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9;
    border-top: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent

}
.mapsvg-layers-control.closed .mapsvg-layers-list-wrap {
    display: none;
}
.mapsvg-layers-control.closed .mapsvg-layers-label:after
{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0;
}
.mapsvg-layers-list-wrap {
    position: absolute;
    top: 33px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.mapsvg-layers-list-wrap .nano {
    height: 100% !important;
}
.mapsvg-layers-item {
    padding: 3px 7px;
    text-align: left;
    background: rgba(255,255,255,0.7);
    cursor: pointer;
}
.mapsvg-layers-item label {
    cursor: pointer;
}
/* FLOORS */
.mapsvg-floors-control {
    max-width: 200px;
    position: absolute;
    font-size: 12px;
    text-align: left;
    padding: 10px;
    height: 100%;
    pointer-events: none;
}
.mapsvg-floors-control.mapsvg-top-left {
    top: 0px;
    left: 0px;
}
.mapsvg-floors-control.mapsvg-top-right {
    top: 0px;
    right: 0px;
}
.mapsvg-floors-control.mapsvg-bottom-right {
    bottom: 0px;
    right: 0px;
}
.mapsvg-floors-control.mapsvg-bottom-left {
    bottom: 0px;
    left: 0px;
}
.mapsvg-floors-control .mapsvg-floors-label {
    height: 23px;
    line-height: 23px;
    background: rgba(255,255,255,0.7);
    padding: 0 7px;
    cursor: pointer;
}
.mapsvg-floors-label {
    pointer-events: all;
}
.mapsvg-floors-label:after
{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9;
    border-top: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}
.mapsvg-floors-control.closed .mapsvg-floors-list-wrap {
    display: none;
}
.mapsvg-floors-control.closed .mapsvg-floors-label:after
{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0;
}
.mapsvg-floors-list-wrap {
    position: absolute;
    top: 33px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.mapsvg-floors-list-wrap .nano {
    height: 100% !important;
}
.mapsvg-floors-item {
    padding: 3px 7px;
    text-align: left;
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    pointer-events: all;
}
.mapsvg-floors-item label {
    cursor: pointer;
}
/* IOS SWITCHES */
input[type="checkbox"].ios8-switch {
    position: absolute;
    margin: 8px 0 0 16px;
    display: none;
}
input[type="checkbox"].ios8-switch + label {
    position: relative;
    padding: 5px 0 0 50px;
    line-height: 2.0em;
    font-weight: normal;
}
input[type="checkbox"].ios8-switch + label:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 40px; /* x*5 */
    height: 24px; /* x*3 */
    border-radius: 16px; /* x*2 */
    background: #fff;
    border: 1px solid #d9d9d9;
    transition: all 0.3s;
}
input[type="checkbox"].ios8-switch + label:after {
    content: "";
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 24px; /* x*3 */
    height: 24px; /* x*3 */
    border-radius: 16px; /* x*2 */
    background: #fff;
    border: 1px solid #d9d9d9;
    transition: all 0.3s;
}
input[type="checkbox"].ios8-switch + label:hover:after {
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
input[type="checkbox"].ios8-switch:checked + label:after {
    margin-left: 16px;
}
input[type="checkbox"].ios8-switch:checked + label:before {
    background: #55D069;
}
/* SMALL */
input[type="checkbox"].ios8-switch-sm {
    margin: 5px 0 0 10px;
}
input[type="checkbox"].ios8-switch-sm + label {
    position: relative;
    padding: 0 0 0 32px;
    line-height: 1.3em;
}
input[type="checkbox"].ios8-switch-sm + label:before {
    width: 25px; /* x*5 */
    height: 15px; /* x*3 */
    border-radius: 10px; /* x*2 */
}
input[type="checkbox"].ios8-switch-sm + label:after {
    width: 15px; /* x*3 */
    height: 15px; /* x*3 */
    border-radius: 10px; /* x*2 */
}
input[type="checkbox"].ios8-switch-sm + label:hover:after {
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
}
input[type="checkbox"].ios8-switch-sm:checked + label:after {
    margin-left: 10px; /* x*2 */
}
/* LARGE */
input[type="checkbox"].ios8-switch-lg {
    margin: 10px 0 0 20px;
}
input[type="checkbox"].ios8-switch-lg + label {
    position: relative;
    padding: 7px 0 0 60px;
    line-height: 2.3em;
}
input[type="checkbox"].ios8-switch-lg + label:before {
    width: 50px; /* x*5 */
    height: 30px; /* x*3 */
    border-radius: 20px; /* x*2 */
}
input[type="checkbox"].ios8-switch-lg + label:after {
    width: 30px; /* x*3 */
    height: 30px; /* x*3 */
    border-radius: 20px; /* x*2 */
}
input[type="checkbox"].ios8-switch-lg + label:hover:after {
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
input[type="checkbox"].ios8-switch-lg:checked + label:after {
    margin-left: 20px; /* x*2 */
}
.mapsvg-no-results {
    padding: 10px;
    color: #666;
}
.mapsvg-layers-item {
    -webkit-user-select: none;
    user-select: none;
}
/* MOBILE DEVICES */
@media (max-width: 812px){ /* 812px = iPhone X, all others phones are smaller */
    body .mapsvg-details-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;
        margin: 0 !important;
        height: auto !important;
    }

    .mapsvg-layers-control {
        left: auto !important;
    }

    body.mapsvg-fullscreen-popovers .mapsvg-popover {
        font-size: 1.2em;
        transform: none !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        border: 1px solid #e5e5e5;
        border-radius: 0;
        box-shadow: none;
        position: fixed;
        height: 100%;
        min-height: 100%;
        max-width: 100% !important;
        max-height: 100% !important;
        width: 100% !important;
        z-index: 999999999;
    }
    body.mapsvg-fullscreen-popovers .mapsvg-popover.mapsvg-popover-animate {
        transition: none !important;
    }
    body.mapsvg-fullscreen-popovers .mapsvg-popover:before {
        display: none !important;
    }

    /* zoom buttons for mobile devices */
    .mapsvg-btn-zoom,
    .mapsvg-btn
    {
        width: 32px;
        height: 32px;
    }
    .mapsvg-btn-zoom.in:before, .mapsvg-btn-zoom.out:before {
        top: 15px;
        left: 6px;
        height: 1px;
        width: 20px;
    }
    .mapsvg-btn-zoom.in:after {
        top: 6px;
        left: 15px;
        height: 21px;
        width: 1px;
    }

    /*.mapsvg-popover {*/
        /*padding-top: 20px;*/
    /*}*/

    .mapsvg-popover .mapsvg-controller-view-toolbar {
        height: 38px;
        padding:0;
    }
    .mapsvg-details-container .mapsvg-controller-view-toolbar {
        height: 38px;
        padding:0;
    }

    .mapsvg-popover-close
    {
        top: 3px !important;
        right: 3px !important;
        z-index: 999;
        transform: scale(0.5);
    }

    .mapsvg-mobile-buttons {
        display: block;
    }
    .mapsvg-button-map, .mapsvg-button-menu  {
        display: block;
    }

    .mapsvg-wrap {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .mapsvg-wrap .mapsvg-directory {
        width: 100% !important;
    }
    /* switch "near" to "over" on mobiles */
    .mapsvg-details-conainer     {
        left: 0 !important;
        width: 100% !important;
    }
    .mapsvg-details-container.near {
        z-index: 3 !important;
        left: 0 !important;
    }
    .mapsvg-controller-view {
        width: 100% !important;
    }
    .mapsvg-directory.closed {
        /*left: -100%;*/
        display: none;
    }
    .mapsvg-directory {
        overflow: visible !important;
    }
    /*
    .mapsvg-directory-filter-wrap {
        padding: 20px;
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        top: 0;
        background-color: white;
        overflow: scroll;
        z-index: 9999000;
    }
    .mapsvg-filter-btn-ok {
        display: block;
        margin-top: 15px;
    }
    */
}
/* ICONS */
/*@font-face {
    font-family: 'mapsvg-icons';
    src: url('font/mapsvg-icons.eot?98971180');
    src: url('font/mapsvg-icons.eot?98971180#iefix') format('embedded-opentype'),
    url('font/mapsvg-icons.woff2?98971180') format('woff2'),
    url('font/mapsvg-icons.woff?98971180') format('woff'),
    url('font/mapsvg-icons.ttf?98971180') format('truetype'),
    url('font/mapsvg-icons.svg?98971180#mapsvg-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
[class^="mapsvg-icon-"]:before, [class*=" mapsvg-icon-"]:before {
    /*font-family: "mapsvg-icons";*/
    font-style: normal;
    font-weight: normal;
    speak: none;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;

    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.mapsvg-icon-menu:before { content: '\f0c9'; }
/* '' */
.mapsvg-icon-map:before { content: '\f278'; }
/* '' */
/* ANIMATIONS */


/*# sourceMappingURL=styles.css.map*/