@charset "UTF-8";

:root {
    --primary-color: #007bff;
}

.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.autocomplete-suggestion {
  position: relative;
  padding: 0 .6em;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.02em;
  color: #333;
}

.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}

.autocomplete-suggestion.selected {
  background: #f0f0f0;
}

/*! jQuery UI - v1.12.1 - 2016-12-11
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.ui-draggable-handle {
  touch-action: none;
}

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-selectable {
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-sortable-handle {
  touch-action: none;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup>.ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.profile_error {
  padding: 4px;
  color: red;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit;
}

.ui-slider-horizontal {
  height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: .8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  box-shadow: 0px 0px 5px #666666;
}

.SumoSelect p {
  margin: 0;
}

.SumoSelect {
  width: 200px;
}

.SelectBox {
  padding: 5px 8px;
}

.sumoStopScroll {
  overflow: hidden;
}

/* Filtering style */
.SumoSelect .hidden {
  display: none;
}

.SumoSelect .search-txt {
  display: none;
  outline: none;
}

.SumoSelect .no-match {
  display: none;
  padding: 6px;
}

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  box-sizing: border-box;
  border-radius: 5px;
}

.SumoSelect.open>.search>span,
.SumoSelect.open>.search>label {
  visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass,
.SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.SelectClass {
  z-index: 1;
}

.SumoSelect>.optWrapper>.options li.opt label,
.SumoSelect>.CaptionCont,
.SumoSelect .select-all>label {
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none;
}

.SumoSelect:focus>.CaptionCont,
.SumoSelect:hover>.CaptionCont,
.SumoSelect.open>.CaptionCont {
  box-shadow: 0 0 2px #7799D0;
  border-color: #7799D0;
}

.SumoSelect>.CaptionCont {
  position: relative;
  border: 1px solid #A4A4A4;
  min-height: 14px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0;
}

.SumoSelect>.CaptionCont>span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

/*placeholder style*/
.SumoSelect>.CaptionCont>span.placeholder {
  color: #ccc;
  font-style: italic;
}

.SumoSelect>.CaptionCont>label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.SumoSelect>.CaptionCont>label>i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=");
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.SumoSelect>.optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden;
}

.SumoSelect.open>.optWrapper {
  top: 35px;
  display: block;
}

.SumoSelect.open>.optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.SumoSelect>.optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.SumoSelect>.optWrapper>.options {
  border-radius: 2px;
  position: relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/
}

.SumoSelect>.optWrapper.okCancelInMulti>.options {
  border-radius: 2px 2px 0 0;
}

.SumoSelect>.optWrapper.selall>.options {
  border-radius: 0 0 2px 2px;
}

.SumoSelect>.optWrapper.selall.okCancelInMulti>.options {
  border-radius: 0;
}

.SumoSelect>.optWrapper>.options li.group.disabled>label {
  opacity: 0.5;
}

.SumoSelect>.optWrapper>.options li ul li.opt {
  padding-left: 22px;
}

.SumoSelect>.optWrapper.multiple>.options li ul li.opt {
  padding-left: 50px;
}

.SumoSelect>.optWrapper.isFloating>.options {
  max-height: 100%;
  box-shadow: 0 0 100px #595959;
}

.SumoSelect>.optWrapper>.options li.opt {
  padding: 6px 6px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.SumoSelect>.optWrapper>.options>li.opt:first-child {
  border-radius: 2px 2px 0 0;
}

.SumoSelect>.optWrapper.selall>.options>li.opt:first-child {
  border-radius: 0;
}

.SumoSelect>.optWrapper>.options>li.opt:last-child {
  border-radius: 0 0 2px 2px;
  border-bottom: none;
}

.SumoSelect>.optWrapper.okCancelInMulti>.options>li.opt:last-child {
  border-radius: 0;
}

.SumoSelect>.optWrapper>.options li.opt:hover {
  background-color: #E4E4E4;
}

.SumoSelect>.optWrapper>.options li.opt.sel,
.SumoSelect .select-all.sel {
  background-color: #a1c0e4;
}

.SumoSelect>.optWrapper>.options li label {
  display: block;
  cursor: pointer;
}

.SumoSelect>.optWrapper>.options li span {
  display: none;
}

.SumoSelect>.optWrapper>.options li.group>label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold;
}

/*Floating styles*/
.SumoSelect>.optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%;
}

/*disabled state*/
.SumoSelect>.optWrapper>.options li.opt.disabled {
  background-color: inherit;
  pointer-events: none;
}

.SumoSelect>.optWrapper>.options li.opt.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE 5-7 */
  filter: alpha(opacity=50);
  /* Netscape */
  -moz-opacity: 0.5;
  /* Safari 1.x */
  -khtml-opacity: 0.5;
  /* Good browsers */
  opacity: 0.5;
}

/*styling for multiple select*/
.SumoSelect>.optWrapper.multiple>.options li.opt {
  padding-left: 35px;
  cursor: pointer;
}

.SumoSelect>.optWrapper.multiple>.options li.opt span,
.SumoSelect .select-all>span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  bottom: 0;
  margin-left: -35px;
}

.SumoSelect>.optWrapper.multiple>.options li.opt span i,
.SumoSelect .select-all>span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.SumoSelect>.optWrapper>.MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 3px 3px;
}

.SumoSelect>.optWrapper.multiple.isFloating>.MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls {
  display: block;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls>p {
  padding: 6px;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls>p:focus {
  box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p:hover {
  background-color: #f1f1f1;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0 0 0 3px;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p.btnCancel {
  border-radius: 0 0 3px 0;
}

/*styling for select on popup mode*/
.SumoSelect>.optWrapper.isFloating>.options li.opt {
  padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect>.optWrapper.multiple.isFloating>.options li.opt {
  padding-left: 35px;
}

.SumoSelect>.optWrapper.multiple.isFloating {
  padding-bottom: 43px;
}

.SumoSelect>.optWrapper.multiple>.options li.opt.selected span i,
.SumoSelect .select-all.selected>span i,
.SumoSelect .select-all.partial>span i {
  background-color: #11a911;
  box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center;
}

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.SumoSelect.disabled>.CaptionCont {
  border-color: #ccc;
  box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer;
}

.SumoSelect .select-all>label,
.SumoSelect .select-all>span i {
  cursor: pointer;
}

.SumoSelect .select-all.partial>span i {
  background-color: #ccc;
}

/*styling for optgroups*/
.SumoSelect>.optWrapper>.options li.optGroup {
  padding-left: 5px;
  text-decoration: underline;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* jQuery UI Datepicker moving pixels fix */
table.ui-datepicker-calendar {
  border-collapse: separate;
}

.ui-datepicker-calendar td {
  border: 1px solid transparent;
}

/* jQuery UI Datepicker hide datepicker helper */
#ui-datepicker-div {
  display: none;
}

/* jQuery UI Datepicker emphasis on selected dates */
.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
  background: #743620 none;
  color: white;
}

body {
  min-width: 360px;
  font-family: "Inter", sans-serif;
  min-height: 750px;
}

body.bg:after {
  content: '';
  width: 100%;
  height: calc(100vh - 207px);
  height: calc(100vh - var(--vh-offset, 0px) - 207px);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 6;
  background: rgba(43, 47, 51, 0.3);
}

body.overfl {
  overflow: hidden;
}

a,
span,
div,
svg use,
img,
.button,
li {
  transition: 0.3s;
}

b {
  font-weight: 600;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.button {
  display: inline-block;
  padding: 7px 20px;
  cursor: pointer;
}

.button:focus {
  outline: none;
}

.button-border {
  padding: 7px 12px;
  color: #292C33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
}

.button-border:hover {
  color: #2E89E5;
  border-color: #2E89E5;
}

.button-primary {
  padding: 7px 20px;
  background: #3D89E5;
  border-radius: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 18px;
}

.button-primary:hover {
  color: #ffffff;
  background: #3D89E5;
}

.button-primary_success {
  background-color: #00A637;
}

.button-primary_success:hover {
  background-color: #00A637;
}

.button-secondary {
  padding: 14px 21px;
  background: #292C33;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
}

.button-secondary:hover {
  background: #2E89E5;
  color: #ffffff;
}

.button-rose {
  padding: 14px 21px;
  background: #C2274E;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
}

.button-rose:hover {
  background: #c24a70;
  color: #ffffff;
}

.button-gray {
  padding: 9px 11px;
  background: #EFF2F4;
  border-radius: 6px;
  color: #292C33;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
}

.button-gray:hover {
  background: #A1AAB3;
  color: #292C33;
}

.content {
  height: calc(100vh - 206px);
  height: calc(100vh - var(--vh-offset, 0px) - 206px);
  border-top: 1px solid #DCE1E6;
}

.content .col-5 {
  padding-left: 0;
  margin-left: -15px;
  padding-right: 0;
}

@media screen and (max-width: 991px) {
  .content .col-5 {
    margin-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.content>.container-fluid {
  height: 100%;
}

.content>.container-fluid>.row {
  height: 100%;
}

.content .js-map {
  display: none;
}

@media screen and (min-width: 991px) {
  .content .js-map.open {
    display: block;
  }
}

.content-map {
  width: 100%;
  height: 100%;
}

.content-map .map {
  width: 100%;
  height: 100%;
}

.content-inner {
  height: 100%;
}

.header {
  border-bottom: 1px solid #DCE1E6;
}

.header__back {
  display: inline-block;
  margin-right: 15px;
}

@media screen and (min-width: 991px) {
  .header__back {
    display: none;
  }
}

.header__back img {
  width: 24px;
  height: 12px;
}

.header__toggler {
  display: inline-block;
}

@media screen and (min-width: 991px) {
  .header__toggler {
    display: none;
  }
}

.header__inner {
  padding: 9px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__info {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 991px) {
  .header__info {
    display: none;
    width: 100%;
    padding: 20px 15px;
    position: absolute;
    top: 51px;
    left: 0;
    z-index: 20;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .header__info.open {
    display: block;
  }
}

.header__logo {
  width: 95px;
  height: 42px;
}

.header__logo-2 {
  margin-right: auto;
  padding-left: 30px;
}

@media screen and (max-width: 991px) {
  .header__logo {
    height: 32px;
    width: 72px;
  }
  .header__logo-2 {
    margin-right: auto;
    padding-left: 15px;
  }
}

.header__logo img {
  width: 95px;
  height: 42px;
}
.header__logo-2 img {
  background-color: #FD9800;
  padding-left: 7px;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .header__logo img {
    height: 32px;
    width: 72px;
  }
}

.header__prices {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 18px;
  color: #2B2F33;
}

.header__prices:hover {
  color: #2E89E5;
}

@media screen and (max-width: 991px) {
  .header__prices {
    display: block;
    margin-bottom: 10px;
  }
}

.header__about, .header__compare, .header__help, .header__crm, .header__analytics, .header__switch-desktop, .header__switch-mobile {
  display: inline-block;
  margin-left: 31px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 18px;
  color: #6D7379;
}

.header__switch-desktop, .header__switch-mobile {
    display: none;
}

.header__switch-mobile.active {
    display: inline-block;
}

.header__about:hover, .header__compare:hover, .header__help:hover, .header__crm:hover, .header__analytics:hover {
  color: #2E89E5;
}

@media screen and (max-width: 991px) {
    .header__about, .header__compare, .header__help, .header__crm, .header__analytics, .header__switch-desktop, .header__switch-mobile {
        display: block;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .header__switch-desktop, .header__switch-mobile {
        display: none;
    }

    .header__switch-desktop.active {
        display: block;
    }
}

.header__dropdown {
  margin-left: 49px;
}

@media screen and (max-width: 991px) {
  .header__dropdown {
    margin-left: 0;
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 5;
  }
}

.header__dropdown-user {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 18px;
  color: #6D7379;
  cursor: pointer;
}

.header__dropdown-user:hover .header__user-controls {
  color: #2E89E5;
}

@media screen and (max-width: 991px) {
  .filter-drop {
    display: none;
    height: 100vh;
    height: calc(100vh - var(--vh-offset, 0px));
    width: 100%;
    overflow: auto;
    padding-bottom: 120px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: #ffffff;
  }

  .filter-drop.open {
    display: block;
  }
}

.filter-drop-btn-fix {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  background: #ffffff;
}

@media screen and (min-width: 991px) {
  .filter-drop-btn-fix {
    display: none;
  }
}

.filter-drop-btn-fix a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
}

.filter-drop-btn-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  position: relative;
  height: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
  background: #6D7379;
}

@media screen and (min-width: 991px) {
  .filter-drop-btn-mob {
    display: none;
  }
}

.filter-drop-btn-mob .cl {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.filter-drop-btn-mob .cl svg {
  height: 14px;
  width: 14px;
}

.filter-drop-btn-mob .cl svg use {
  color: #ffffff;
}

.filter-top {
  border-bottom: 1px solid #DCE1E6;
}

@media screen and (max-width: 991px) {
  .filter-top {
    margin-bottom: -1px;
  }
}

.filter-top__mob {
  display: none;
}

@media screen and (max-width: 991px) {
  .filter-top__mob {
    display: inline-block;
  }
}

.filter-top__mob-filter {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
  background-color: #ffffff;
}

.filter-top__mob-filter span {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 2;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: -0.4px;
  line-height: 10px;
  color: #ffffff;
  background: #3D89E5;
  border-radius: 100px;
}

.filter-top__mob-filter svg {
  width: 16px;
  height: 16px;
}

.filter-top__mob-filter svg use {
  color: #6D7379;
}

.filter-top__mob-tabs {
  display: inline-block;
  padding: 3px;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
  background-color: #ffffff;
}

.filter-top__mob-tabs-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 3px;
}

.filter-top__mob-tabs-item svg {
  width: 16px;
  height: 16px;
}

.filter-top__mob-tabs-item svg use {
  color: #6D7379;
}

.filter-top__mob-tabs-item.active {
  background: #6D7379;
}

.filter-top__mob-tabs-item.active svg use {
  color: #ffffff;
}

.filter-top__inner {
  padding: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .filter-top__inner {
    padding: 11px 0 0;
  }
}

.filter-top__right {
  display: block;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .filter-top__right {
    width: 100%;
  }
}

.filter-top__left {
  margin-right: 0;
  padding-right: 0;
}

.filter-top__btn {
  display: inline-block;
  vertical-align: top;
  margin-right: 13px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .filter-top__btn {
    display: block;
    margin-right: 0;
    margin-bottom: 7px;
  }
}

.filter-top__btn-item {
  display: inline-block;
  padding: 8px 11px;
  margin-bottom: 5px;
  background: #EFF2F4;
  border-radius: 6px;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 18px;
}

@media (min-width: 992px) {
    .filter-top__btn-item:hover {
        background-color: #2E89E5;
        color: #fff;
    }

    .filter-top__btn-item:hover svg .filter-top__btn-icon {
        fill: #fff;
    }
}

@media screen and (max-width: 991px) {
  .filter-top__btn-item {
    padding: 11px 8px;
  }
}

.filter-top__btn-item svg {
  margin-right: 3px;
}

.filter-top__btn-item svg .filter-top__btn-icon {
  fill: #6D7379;
}

.filter-top__btn-item.active {
  background: #2E89E5;
  color: #ffffff;
}

.filter-top__btn-item.active svg .filter-top__btn-icon {
  fill: #ffffff;
}

.filter-top__search {
  display: inline-block;
  vertical-align: top;
  width: 300px;
  margin-right: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .filter-top__search {
    width: 53%;
    margin-right: 2px;
  }
}

.filter-top__search-inner {
  width: 100%;
  display: inline-block;
  position: relative;
}

.filter-top__search-inner .button-search {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.filter-top__search-inner .button-search svg {
  width: 15px;
  height: 15px;
}

.filter-top__search-inner .button-search svg use {
  color: #A1AAB3;
}

.filter-top__search-inner input {
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .filter-top__search-inner input {
    height: 40px;
  }
}

.filter-top__search-inner input.empty~.button-search {
  display: none;
}

.filter-top__search-inner input:focus {
  outline: none;
}

.filter-top__search-inner input:focus~.button-search svg use {
  color: #2E89E5;
}

.filter-top__calendar {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 180px;
  position: relative;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .filter-top__calendar {
    display: none;
  }
}

.filter-top__calendar-inner {
  width: 100%;
}

.filter-top__calendar-inp {
  position: relative;
}

.filter-top__calendar-inp input:focus+.button-search svg use {
  color: #2E89E5;
}

.filter-top__calendar-inp .button-search {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.filter-top__calendar-inp .button-search svg {
  width: 13px;
  height: 13px;
}

.filter-top__calendar-inp .button-search svg use {
  color: #A1AAB3;
}

.filter-top__toggle {
  display: inline-flex;
  align-items: center;
  max-width: 120px;
  margin-left: 14px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .filter-top__toggle {
    display: none;
  }
}

.filter-top__toggle .off~.filter-top__toggle-archive-text .text-no-active {
  display: block;
}

.filter-top__toggle .off~.filter-top__toggle-archive-text .text-active {
  display: none;
}

.filter-top__toggle-archive-text {
  margin-left: 10px;
}

.filter-top__toggle-archive-text-default {
  display: block;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
}

.filter-top__toggle-archive-text .text-no-active,
.filter-top__toggle-archive-text .text-active {
  display: block;
  color: #2B2F33;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 19px;
}

.filter-top__toggle-archive-text .text-no-active {
  display: none;
}

.filter-top__toggle-archive-text .text-active {
  display: block;
}

.filter-bottom {
  padding: 10px 0 0;
  background-color: #FFFFFF;
  position: relative;
  z-index: 11;
}

.filter-bottom__inner {
  position: relative;
}

@media screen and (min-width: 992px) {
    .filter-bottom__inner {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
    }
}

.filter-bottom__inner-mob {
  display: none;
}

@media screen and (max-width: 991px) {
  .filter-bottom__inner-mob {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #DCE1E6;
  }

  .filter-bottom__inner-mob .filter-top__calendar,
  .filter-bottom__inner-mob .filter-top__toggle {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .filter-bottom__inner-mob .filter-top__toggle {
    display: flex;
    align-items: center;
    margin-left: 0;
    position: relative;
  }

  .filter-bottom__inner-mob .filter-top__toggle .toggle.btn {
    position: absolute;
    right: 0;
  }

  .filter-bottom__inner-mob .filter-top__toggle-archive {
    padding-right: 70px;
  }

  .filter-bottom__inner-mob .filter-top__toggle-archive-text {
    display: flex;
    align-items: center;
    width: auto;
    margin-left: 0;
  }

  .filter-bottom__inner-mob .filter-top__toggle-archive-text-default {
    margin-right: 5px;
  }
}

.filter-bottom__item {
  margin-bottom: 15px;
}

.filter-bottom__item_right {
    margin-left: auto;
}

@media screen and (max-width: 991px) {
  .filter-bottom__item {
    margin-bottom: 18px;
  }
}

.filter-bottom__item-title {
  margin-bottom: 5px;
  display: block;
  color: #6D7379;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 18px;
}

.filter-bottom__item-select .SumoSelect {
  width: 100%;
}

.filter-bottom__item-select .SumoSelect>.optWrapper {
  width: 100%;
  padding: 18px 20px;
  top: 48px;
  overflow: inherit;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2);
  border: none;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options {
  overflow: auto;
  max-height: 500px;
}

@media (max-width: 768px) {
  .filter-bottom__item-select .SumoSelect>.optWrapper .options {
    max-height: 210px;
  }
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options::-webkit-scrollbar {
  width: 4px;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options::-webkit-scrollbar-thumb {
  background-color: #2E89E5;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options .group + .group {
  margin-top: 20px;
}

.filter-bottom__item-select .SumoSelect>.optWrapper:before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  top: 4px;
  left: 0;
  background: #2B2F33;
}

.filter-bottom__item-select .SumoSelect>.optWrapper:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 43%;
  border: 5px solid transparent;
  border-bottom-color: #2B2F33;
  border-top: 0;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .MultiControls {
  display: none !important;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li:hover {
  background: #ffffff;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.group label {
  padding: 0;
  margin-bottom: 10px;
  color: #2B2F33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.filter-bottom__item-select .SumoSelect>.optWrapper.multiple .options li.opt {
    padding-left: 24px;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt {
  padding: 0;
  position: relative;
  border: none;
  display: flex;
  align-items: center;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt:not(:last-child) {
  margin-bottom: 12px;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt label {
  margin-bottom: 0;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt img {
  margin-left: 5px;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt.disabled {
  display: none;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt span {
  width: 16px;
  height: 16px;
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt span i {
  width: 16px;
  height: 16px;
  border: 1px solid #DCE1E6;
  border-radius: 3px;
  box-shadow: none;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt label {
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
  font-weight: 400;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt.selected span i {
  background-color: #2E89E5;
  background-image: url("/web/img/ic-checkbox-check.svg");
  background-size: 10px 11px;
}

.filter-bottom__item-select .SumoSelect>.optWrapper .options li.opt.selected label {
  color: #2B2F33;
  font-weight: 500;
}

.filter-bottom__item-select .SumoSelect>.CaptionCont {
  height: 33px;
  position: relative;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .filter-bottom__item-select .SumoSelect>.CaptionCont {
    height: 40px;
  }
}

.filter-bottom__item-select .SumoSelect>.CaptionCont.SelectBox {
  display: flex;
  align-items: center;
  color: #2B2F33;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 20px;
  padding: 5px 13px;
}

.filter-bottom__item-select .SumoSelect>.CaptionCont .placeholder {
  color: #A1AAB3;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 20px;
  font-style: normal;
}

.filter-bottom__item-select .SumoSelect>.CaptionCont label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.filter-bottom__item-select .SumoSelect>.CaptionCont label svg {
  width: 10px;
  height: 7px;
}

@media screen and (max-width: 991px) {
  .filter-bottom__item-select .SumoSelect>.CaptionCont label svg {
    transform: rotate(-90deg);
  }
}

.filter-bottom__item-select .SumoSelect>.CaptionCont label svg use {
  color: #A1AAB3;
}

.filter-bottom__item-select .SumoSelect.open>.CaptionCont {
  border-color: #2B2F33;
}

.filter-bottom__item-select .SumoSelect.open>.CaptionCont .placeholder {
  color: #2B2F33;
  font-weight: 600;
}

.filter-bottom__item-select .SumoSelect.open>.CaptionCont label svg {
  transform: rotate(180deg);
}

.filter-bottom__item-select .SumoSelect.open>.CaptionCont label svg use {
  color: #2E89E5;
}

.filter-btn {
  display: inline-block;
  height: 33px;
  padding: 9px 10px;
  background: #EFF2F4;
  border-radius: 6px;
  color: #2B2F33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 14px;
  text-align: right;
  border: 2px solid #EFF2F4;
  cursor: pointer;
}

.filter-btn svg {
  width: 12px;
  height: 8px;
  margin-left: 2px;
}

.filter-btn svg use {
  color: #A1AAB3;
}

@media screen and (max-width: 991px) {
  .filter-btn {
    width: 100%;
    height: 40px;
    position: relative;
    bottom: 0;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }

  .filter-btn svg use {
    color: #2B2F33;
  }
}

.filter-btn-fil {
  padding: 7px 10px;
  margin-left: 6px;
  position: relative;
}

.filter-btn-fil.disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media screen and (max-width: 991px) {
  .filter-btn-fil {
    display: none;
  }
}

.filter-btn-fil .numb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: #3D89E5;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: -0.4px;
  text-align: center;
  position: absolute;
  right: -6px;
  top: -6px;
  line-height: 1.8;
}

.filter-btn-tw {
  display: inline-block;
  height: 33px;
  width: 100%;
  padding: 9px 10px;
  font-size: 12px;
  line-height: 14px;
}

@media screen and (max-width: 991px) {
  .filter-btn-tw {
    display: none;
  }
}

.filter-btn.open {
  border-color: #2E89E5;
  background: #ffffff;
}

.filter-btn.open svg {
  transform: rotate(180deg);
}

.filter-btn.open svg use {
  color: #2E89E5;
}

.filter-dropdown {
  display: none;
  width: 100%;
  padding: 13px 0 0;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  background: #ffffff;
}

@media screen and (max-width: 991px) {
  .filter-dropdown {
    position: relative;
    top: 0;
  }
}

.filter-dropdown.open {
  display: block;
}

.filter-dropdown__inner {
  align-items: center;
  padding-right: 100px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .filter-dropdown__inner {
    padding-right: 0;
  }
}

.range {
  display: flex;
  position: relative;
}

@media screen and (max-width: 991px) {
  .range {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.range:after {
  content: '-';
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: .75;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  color: #A1AAB3;
  border: 1px solid #DCE1E6;
  border-radius: 4.5px;
  background-color: #ffffff;
}

.filter-bottom__item-numb-tw .range:after {
  content: '/';
  font-size: 10px;
}

.range input {
  height: 33px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .range input {
    width: 100%;
    height: 40px;
  }
}

.range__item {
  position: relative;
  flex-grow: 1;
}

.range__item + .range__item {
    margin-left: 6px;
}

@media screen and (max-width: 991px) {
  .range__item {
    width: 49.7%;
  }
}

.range__item-m {
  display: inline-block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
  color: #616D79;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 12px;
  text-align: right;
}

.range__item:first-of-type .range__item-m {
  right: 16px;
}

.check-numb {
    display: flex;
}

.check-numb__item {
  flex-grow: 1;
}

.check-numb__item + .check-numb__item {
    margin-left: 3px;
}

.check-numb__item:last-of-type input[type=checkbox]+label,
.check-numb__item:last-of-type input[type=radio]+label {
  height: 33px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #DCE1E6;
  color: #A1AAB3;
}

.check-numb__item input[type=checkbox]+label,
.check-numb__item input[type=radio]+label{
  width: 100%;
  height: 33px;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 18px;
  text-align: center;
  background: #EFF2F4;
  border-radius: 4px;
}

.check-numb__item input[type=checkbox]+label:before,
.check-numb__item input[type=radio]+label:before {
  display: none !important;
}

.check-numb__item input[type=checkbox]:checked+label,
.check-numb__item input[type=radio]:checked+label {
  background: #2E89E5;
  color: #ffffff;
}

.choice {
  display: flex;
  align-items: center;
  height: 33px;
  padding: 3px;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
  background-color: #FFFFFF;
}

.choice__item {
    flex-grow: 1;
}

@media screen and (max-width: 991px) {
  .choice {
    height: 40px;
  }
}

.choice label {
  margin-bottom: 0;
}

.choice input[type=radio]+span {
  padding: 0px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 18px;
  text-align: center;
  background: #ffffff;
  border-radius: 3px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .choice input[type=radio]+span {
    width: 100%;
    height: 29px;
  }
}

.choice input[type=radio]:checked+span {
  color: #ffffff;
  background: #6D7379;
}

select[multiple="multiple"] option[data-opt="icon1"] {
  background-image: url("/web/img/ic-adr-reliable.svg");
  background-size: 12px 12px;
  background-repeat: no-repeat;
}

input,
textarea {
  width: 100%;
  padding: 5px 11px;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 18px;
  color: #2B2F33;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A1AAB3;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #A1AAB3;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A1AAB3;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #A1AAB3;
}

input:focus,
textarea:focus {
  outline: none;
  border: 2px solid #2B2F33;
}

.filter-top__search input,
.filter-top__calendar input,
.filter-top__search textarea,
.filter-top__calendar textarea {
  padding-right: 30px;
}

input {
  height: 33px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=radio] {
  display: none;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox], input[type=checkbox] {
  color: #6D7379;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 16px;
  cursor: pointer;
}

input[type=checkbox]+label::before, input[type=checkbox]+span::before {
  content: '';
  height: 16px;
  width: 16px;
  display: inline-block;
  margin: -5px 10px 0 0;
  border: 1px solid #DCE1E6;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  transition: color ease .3s;
  border-radius: 3px;
}

.disabled input[type=checkbox]+label::before, .disabled input[type=checkbox]+span::before {
  cursor: auto;
}

input[type=checkbox]:checked+label, input[type=checkbox]:checked+span {
  color: #292C33;
  font-weight: 600;
}

input[type=checkbox]:checked+label::before, input[type=checkbox]:checked+span::before {
  background-image: url("/web/img/ic-checkbox-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 11px;
  background-color: #2E89E5;
  border-color: #2E89E5;
}

.disabled input[type=checkbox]:checked+label::before, .disabled input[type=checkbox]:checked+span::before {
  background-color: #A1AAB3;
}

input[type=checkbox]:checked:disabled+label::before, input[type=checkbox]:checked:disabled+span::before {
  background-color: #A1AAB3;
  border-color: #A1AAB3;
}

.download__choices-form-item span {
    transition: none;
}

.file {
  display: inline-block;
}

.input-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.input-file+label {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #6D7379;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 18px;
  cursor: pointer;
  vertical-align: top;
}

.input-file+label .ic {
  height: 44px;
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border-radius: 6px;
  background: #EFF2F4;
}

textarea {
  padding: 14px 20px;
  height: 160px;
}

.autocomplete-suggestion {
  margin-bottom: 10px;
}

.autocomplete-suggestion:first-of-type {
  margin-top: 16px;
}

.autocomplete-suggestions {
  margin-bottom: 10px;
  padding: 27px 20px 13px;
  max-height: inherit;
  position: absolute;
  top: 125px !important;
  z-index: 22 !important;
  overflow: initial !important;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2) !important;
  border: none !important;
  border-top: 3px solid #2B2F33 !important;
  background: #ffffff !important;
}

@media screen and (max-width: 991px) {
  .autocomplete-suggestions {
    top: 168px !important;
  }
}

.autocomplete-suggestions:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: -8px;
  left: 50%;
  border: 5px solid transparent;
  border-bottom-color: #2B2F33;
  border-top: 0;
}

.autocomplete-suggestions:before {
  content: 'Adrese';
  display: block;
  text-transform: uppercase;
  color: #6D7379;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 4px;
  border-bottom: 1px solid #E1E6EB;
}

@media screen and (max-width: 991px) {
  .autocomplete-suggestions {
    margin-top: 0;
    background: #2B2F33;
    border: none;
  }

  .autocomplete-suggestions:after {
    display: none;
  }
}

.autocomplete-suggestion {
  display: block;
  padding: 0 !important;
  font-size: 12px !important;
  letter-spacing: -0.4px;
  line-height: 18px !important;
  color: #6D7379 !important;
  cursor: pointer;
}

.autocomplete-suggestion b {
  font-weight: 700 !important;
  color: #2B2F33 !important;
}

.autocomplete-suggestion.selected {
  background: transparent !important;
  color: #2E89E5 !important;
}

@media screen and (min-width: 991px) {
  .autocomplete-suggestion:hover {
    background: transparent;
    color: #000000;
  }

  .autocomplete-suggestion:hover b {
    color: #000000;
  }
}

.toggle {
  width: 44px !important;
  height: 23px !important;
  min-width: inherit !important;
  min-height: inherit !important;
  position: relative;
  border-radius: 100px;
}

.toggle-on,
.toggle-off {
  display: none;
}

.toggle-handle {
  width: 15px;
  height: 15px;
  padding: 0 !important;
  position: absolute;
  right: 3px;
  border: none;
  background: #ffffff;
  border-radius: 100px;
}

.off .toggle-handle {
  background: #A1AAB3;
}

.toggle.btn-primary {
  background-color: #2E89E5;
  border: 1px solid #2E89E5;
}

.toggle.btn-light {
  background-color: #ffffff !important;
  border: 1px solid #E1E6EB !important;
}

.toggle-group {
  width: 100%;
  top: 3px;
  right: 3px;
}

.off .toggle-group {
  left: -18px !important;
}

.object-card__back {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
  color: #292C33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.object-card__back img {
  margin-right: 5px;
}

.object-card__actions {
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .object-card__actions {
    display: none;
    padding: 25px 80px 20px 20px;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 20;
    background-color: #FFFFFF;
    box-shadow: 0 0 30px 0 rgba(38, 51, 77, 0.15);
  }

  .object-card__actions.open {
    display: block;
  }
}

@media screen and (min-width: 991px) {
  .object-card__actions-left-mob {
    display: none;
  }
}

.object-card__actions-number {
  display: inline-block;
  margin-right: 17px;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
}

.object-card__actions-close {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #3D89E5;
  position: absolute;
  right: 12px;
  top: 26px;
  z-index: 2;
}

.object-card__actions-close svg {
  width: 15px;
  height: 15px;
}

.object-card__actions-close svg use {
  color: #ffffff;
}

@media screen and (min-width: 991px) {
  .object-card__actions-close {
    display: none;
  }
}

.object-card__actions-item {
  display: inline-block;
  margin-left: 15px;
  color: #292C33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .object-card__actions-item {
    display: block;
    margin-left: 0;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
    border: 1px solid #DCE1E6;
    border-radius: 6px;
    background-color: #ffffff;
    text-align: center;
  }
}

.object-card__actions-button {
    display: contents;
}

.object-card__actions-item img {
  margin-right: 5px;
}

.object-card__actions-item:hover {
  color: #2E89E5;
}

.object-card__info {
    position: relative;
    margin-bottom: 5px;
    padding: 10px 15px 0;
    background-color: #EFF2F4;
    background-image: url("/web/img/asset-creative-element-1.svg");
    background-repeat: no-repeat;
    background-position: center right;
    border-radius: 6px;
}

@media screen and (max-width: 991px) {
  .object-card__info {
    display: block;
    padding: 21px 15px 5px;
    margin-left: -15px;
    margin-right: -15px;
    background-image: none;
  }
}

.object-card__info-left,
.object-card__info-right {
  width: 50%;
}

@media screen and (max-width: 991px) {

  .object-card__info-left,
  .object-card__info-right {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .object-card__info-right {
    padding-top: 15px;
  }
}

.object-card__info-left {
  position: relative;
}

@media screen and (max-width: 991px) {
  .object-card__info-left {
    border-bottom: 1px solid #CFD5DA;
  }
}

.object-card__info-left-roud-mob {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 25px;
  border-radius: 6px;
  background: rgba(43, 47, 51, 0.8);
}

@media screen and (min-width: 991px) {
  .object-card__info-left-roud-mob {
    display: none;
  }
}

.object-card__info h1 {
  margin-bottom: 3px;
  color: #2B2F33;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 26px;
}

@media screen and (max-width: 991px) {
  .object-card__info h1 {
    padding-right: 70px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.6px;
    line-height: 26px;
  }
}

.object-card__info-right .object-card__info-im {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.object-card__info-im-item {
  display: inline-block;
  margin-right: 15px;
}

.object-card__info-right .object-card__info-im-item {
  flex: 0 0 25%;
  max-width: 25%;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.object-card__info-im-title {
  display: block;
  margin-bottom: 2px;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
}

.object-card__info-im-title-main {
  display: block;
  margin-bottom: 10px;
  color: #2B2F33;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 17px;
}

.object-card__info-im-text {
  display: block;
  color: #2B2F33;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 17px;
}

@media screen and (max-width: 991px) {
  .object-card__info-im-text {
    font-size: 12px;
    line-height: 14px;
  }
}

.object-card__type {
  margin: 0 -5px 15px;
  padding: 0;
}

@media screen and (max-width: 991px) {
  .object-card__type {
    padding-right: 70px;
    padding-bottom: 15px;
    border-bottom: 1px solid #CFD5DA;
  }
}

.object-card__type li {
  display: inline-block;
  padding-left: 6px;
  padding-right: 10px;
  list-style: none;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
  border-right: 1px solid rgba(161, 170, 179, 0.4);
}

.object-card__type li:last-of-type {
  border: none;
}

.object-card__tabs {
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #EFF2F4;
  border-radius: 6px;
}

@media screen and (max-width: 991px) {
  .object-card__tabs {
    border: none;
  }
}

.object-card__tabs .nav-tabs {
  border: none;
  background: #EFF2F4;
}

@media screen and (max-width: 991px) {
  .object-card__tabs .nav-tabs {
    overflow: auto;
    display: flex;
    flex-wrap: inherit;
    background: transparent;
    margin-left: -5px;
    margin-right: -15px;
  }
}

.object-card__tabs .nav-item {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .object-card__tabs .nav-item {
    margin: 0 5px;
  }
}

.object-card__tabs .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  border: none !important;
  background: #EFF2F4;
  border-radius: 0;
  color: #6D7379;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

@media screen and (max-width: 991px) {
  .object-card__tabs .nav-link {
    padding: 12px 21px;
    background: #EFF2F4;
    border-radius: 6px;
    white-space: nowrap;
  }
}

.object-card__tabs .nav-link svg {
  width: 16px;
  height: 16px;
  margin-right: 9px;
}

.object-card__tabs .nav-link svg use {
  color: #A1AAB3;
}

.object-card__tabs .nav-link.active {
  background: #ffffff;
  color: #2B2F33;
}

.object-card__tabs .nav-link.active svg use {
  color: #3D89E5;
}

@media screen and (max-width: 991px) {
  .object-card__tabs .nav-link.active {
    background: #3D89E5;
    color: #ffffff;
  }

  .object-card__tabs .nav-link.active svg use {
    color: #ffffff;
  }
}

.object-card__tabs .tab-content {
  height: calc(100vh - 375px);
  height: calc(100vh - var(--vh-offset, 0px) - 375px);
  overflow: auto;
}

@media screen and (max-width: 991px) {
  .object-card__tabs .tab-content {
    height: auto;
    overflow: inherit;
  }
}

.object-card__content {
  padding: 20px 18px;
}

@media screen and (max-width: 991px) {
  .object-card__content {
    padding: 30px 0;
  }
}

.object-card__content-table .col-sm-12+.col-sm-12 .object-card__content-table-inner {
  border-left: 1px solid #E1E6EB;
  padding-left: 20px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .object-card__content-table .col-sm-12+.col-sm-12 .object-card__content-table-inner {
    padding-left: 0;
    border: none;
  }
}

@media screen and (max-width: 991px) {
  .object-card__content-table-inner {
    margin-bottom: 30px;
  }
}

.object-card__content-table-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #E1E6EB;
}

.object-card__content-table-item+.object-card__content-table-item {
  padding: 20px 0;
}

.object-card__content-table-item:last-of-type {
  border: none;
}

@media screen and (max-width: 991px) {
  .object-card__content-table-item:last-of-type {
    border-bottom: 1px solid #E1E6EB;
  }
}

.object-card__content-table-item table {
  width: 100%;
  margin-bottom: 10px;
}

.object-card__content-table-item table tr td {
  position: relative;
  vertical-align: baseline;
  line-height: 1.2;
}

.object-card__content-table-item table tr td span {
  display: inline-block;
  padding-right: 10px;
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: #6D7379;
  font-size: 13px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.object-card__content-table-item table tr td:first-of-type {
  width: 35%;
}

.object-card__content-table-item table tr td:first-of-type:after {
  content: '';
  width: 105%;
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: 1;
  background: #EFF2F4;
}

.object-card__content-table-item table tr td:last-of-type {
  padding: 0 25px;
}

.object-card__content-table-title {
  display: block;
  margin-bottom: 5px;
  color: #2B2F33;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 20px;
}

.object-card__content-advertisements-item {
  margin-bottom: 20px;
  border: 2px solid #3D89E5;
  border-radius: 6px;
}

.object-card__content-advertisements-item:last-of-type {
  margin-bottom: 0;
}

.object-card__content-transactions-title {
  display: block;
  margin-bottom: 15px;
  color: #2B2F33;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 20px;
}

.object-card__content-map-list {
  margin-bottom: 10px;
}

.object-card__content-map-item {
  display: inline-block;
  padding: 7px 12px;
  margin-right: 2px;
  color: #6D7379;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 18px;
  background: #EFF2F4;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.object-card__content-map-item:hover,
.object-card__content-map-item.active {
  background: #2E89E5;
  color: #ffffff;
}

.advertisements {
  padding: 18px;
}

.advertisements__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .advertisements__top {
    display: block;
  }
}

.advertisements__top-right .button-border + .button-primary {
  margin-left: 12px;
}

.advertisements__bottom {
  margin-bottom: 5px;
  padding: 10px 70px 0 0;
  position: relative;
  border-top: 1px solid #EFF2F4;
}

.advertisements__arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  background-color: #EFF2F4;
}

.object-card__content-advertisements-item-history:last-of-type {
    margin-bottom: 0;
}

.history_advertisements__arr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    background-color: #EFF2F4;
}

.history_advertisements__arr svg {
    height: 12px;
    width: 16px;
    transform: rotate(180deg);
}

.history_advertisements__arr svg {
    color: #A1AAB3;
}

.history_advertisements__arr:hover {
    background: #2E89E5;
}

.history_advertisements__arr:hover svg use {
    color: #ffffff;
}

.history_advertisements__arr.collapsed svg {
    transform: none;
}

tr td:last-child {
    width: 0;
    overflow: hidden;
    border: none;
}

.advertisements__arr svg {
  height: 12px;
  width: 16px;
  transform: rotate(180deg);
}

.advertisements__arr svg use {
  color: #A1AAB3;
}

.advertisements__arr:hover {
  background: #2E89E5;
}

.advertisements__arr:hover svg use {
  color: #ffffff;
}

.advertisements__arr.collapsed svg {
  transform: none;
}

.advertisements__bottom p {
  font-size: 12px;
}

.advertisements__bottom .gallery-row__image {
  padding-top: 62.5%;
}

.advertisements__bottom .pt-3 {
    margin-top: 10px;
    border-top: 1px solid rgb(239, 242, 244);
}

.advertisements__title {
  display: block;
  margin-bottom: 5px;
  color: #2B2F33;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 20px;
}

@media screen and (max-width: 992px) {
    .advertisements__bottom .object-card__info-im-item {
      margin-bottom: 10px;
    }

    .advertisements__arr {
        top: -55px;
    }

    .advertisements__bottom {
        padding-right: 0;
    }

    .advertisements__bottom .pt-4 {
        margin-top: 0;
    }

    .advertisements__bottom .gallery-row__item {
        width: 50%;
    }
}

.advertisements__type {
  margin: 0 -5px;
  padding: 0;
}

.advertisements__type li {
  display: inline-block;
  padding-left: 6px;
  padding-right: 10px;
  list-style: none;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
  border-right: 1px solid rgba(161, 170, 179, 0.4);
}

.advertisements__type li:last-of-type {
  border: none;
}

.advertisements__coincidence {
  display: inline-block;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
  margin-right: 30px;
}

.advertisements__coincidence b {
  margin-left: 5px;
  color: #3D89E5;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 20px;
}

.drop-page {
  width: 80px;
  padding: 18px;
  display: none;
  position: absolute;
  top: 32px;
  left: 22px;
  z-index: 10;
  border-radius: 0 0 6px 6px;
  background-color: #ffffff;
  box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2);
  border-top: 2px solid #2B2F33;
}

.drop-page.open {
  display: block;
}

.drop-page:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: -6px;
  left: 44%;
  border: 5px solid transparent;
  border-bottom-color: #2b2f33;
  border-top: 0;
}

.drop-page__item {
  display: block;
  margin-bottom: 10px;
  color: #6D7379 !important;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 18px;
  font-weight: 400 !important;
}

.drop-page__item:last-of-type {
  margin-bottom: 0;
}

.drop-page__item.active {
  font-weight: 600 !important;
  color: #2B2F33 !important;
}

.drop-page__item.active:after {
  content: '';
  width: 10px;
  height: 11px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 14px;
  position: relative;
  top: -2px;
  background-image: url("/web/img/ic-checkbox-check-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 11px;
}

.transactions {
  margin-bottom: 35px;
}

.transactions:last-of-type {
  margin-bottom: 0;
}

.transactions table {
  width: 100%;
  z-index: 1 !important;
}

@media screen and (max-width: 991px) {
  .transactions table thead {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .transactions table tr {
    display: block;
    padding: 14px 0;
    min-height: 60px;
    position: relative;
    border-bottom: 1px solid #EFF2F4;
  }
}

.transactions table tr th,
.transactions table tr td {
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.transactions table tr th {
  color: #6D7379;
}

.transactions table tr td {
  color: #1C1E20;
}

.transactions table tr th:last-child {
    white-space: nowrap;
}

.transactions table tr td:last-child {
    white-space: nowrap;
}

.transactions table tbody tr {
  border-bottom: 1px solid #EFF2F4;
    z-index: 1 !important;
    position: relative;
}

.transactions table tr th:last-of-type,
.transactions table tr td:last-of-type {
  text-align: right;
}

@media screen and (max-width: 991px) {

  .transactions table tr th,
  .transactions table tr td {
    padding: 0 !important;
  }

  .transactions table tr th .check,
  .transactions table tr td .check {
    margin-top: 0 !important;
    position: relative;
    top: 5px;
  }

  .transactions table tr th .check:before,
  .transactions table tr td .check:before {
    content: '';
    height: 13px;
    width: 10px;
    display: inline-block;
    vertical-align: top;
    /* background-image: url("/web/img/ic-symbol-d-tw.svg"); */
    background-size: 10px 13px;
    background-repeat: no-repeat;
  }

  .transactions table tr th .check label,
  .transactions table tr td .check label {
    display: none;
  }
}

.transactions table tr th {
  background: #EFF2F4;
}

@media screen and (max-width: 991px) {
  .transactions table tr td {
    border: none;
  }

  .transactions table tr td b,
  .transactions table tr td .ic {
    display: none !important;
  }

  .transactions table tr td:nth-of-type(1) {
    width: 30px;
  }

  .transactions table tr td:nth-of-type(2) {
    padding-right: 100px;
  }

  .transactions table tr td:nth-of-type(4),
  .transactions table tr td:nth-of-type(5),
  .transactions table tr td:nth-of-type(6),
  .transactions table tr td:nth-of-type(8),
  .transactions table tr td:nth-of-type(10),
  .transactions table tr td:nth-of-type(11) {
    display: none;
  }

  .transactions table tr td:nth-of-type(3),
  .transactions table tr td:nth-of-type(7),
  .transactions table tr td:nth-of-type(9) {
    position: absolute;
    right: 10px;
  }

  .transactions table tr td:nth-of-type(9) {
    top: 4px;
  }

  .transactions table tr td:nth-of-type(7) {
    top: 21px;
  }

  .transactions table tr td:nth-of-type(3) {
    top: 37px;
  }
}

.transactions table tr td b {
  color: #292C33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.transactions table tr td .ic {
  margin-top: 5px;
  display: flex;
  align-items: center;
}

.transactions table tr td .ic img {
  margin-right: 3px;
}

.transactions table tr td:last-of-type {
  color: #292C33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: right;
}

.transactions_main {
  height: calc(100vh - 260px);
  height: calc(100vh - var(--vh-offset, 0px) - 260px);
}

@media screen and (max-width: 991px) {
  .transactions_main {
    height: auto;
  }
}

@media screen and (max-width: 991px) {
  .transactions_main table thead {
    display: none;
  }
}

.transactions_main table tr.active {
  background: linear-gradient(270deg, #FFFFFF 0%, #F2F9FF 100%);
}

.transactions_main table tr th,
.transactions_main table tr td {
  padding: 12px 10px;
  position: relative;
  z-index: -1 !important;
}

.transactions_main table tr th:first-of-type,
.transactions_main table tr td:first-of-type {
  padding-left: 30px;
}

.transactions_main table tr th .check,
.transactions_main table tr td .check {
  position: absolute;
  left: 5px;
}

.transactions_main table tr th .check input[type='checkbox']+label,
.transactions_main table tr td .check input[type='checkbox']+label {
  height: 16px;
  width: 16px;
  margin-bottom: 0;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: none;
}

.transactions_main table tr th .check input[type='checkbox']+label:before,
.transactions_main table tr td .check input[type='checkbox']+label:before {
  margin-top: -1px;
}

.transactions_main table tr td .check {
  margin-top: 0;
}

.transactions_main table tr th {
  position: relative;
}

.transactions_main table tr th:last-of-type {
  padding-right: 20px;
}

.transactions_main table tr th .check input[type='checkbox']+label {
  height: 16px;
  width: 16px;
  margin-bottom: 0;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: none;
}

.transactions_main table tr th .check input[type='checkbox']+label:before {
  margin-top: -2px;
}

.transactions_main table tr th .check input[type='checkbox']:checked+label:before {
  background-image: none;
  content: '-';
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transactions_main table tr th svg {
  width: 10px;
  height: 12px;
  transform: rotate(-90deg);
  margin-left: 5px;
  display: inline-block;
}

.transactions_main table tr th svg use {
  color: #A1AAB3;
}

.transactions_main table tr th.active {
  font-weight: 600;
  color: #292C33;
}

.transactions_main table tr th.active svg use {
  color: #3D89E5;
}

.transactions-scroll {
  height: 100%;
  position: relative;
}

@media screen and (max-width: 991px) {
  .transactions-scroll {
    margin-bottom: 50px;
  }
}

.transactions-scroll:after {
  content: '';
  width: 100%;
  height: 100px;
  display: block;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

@media screen and (max-width: 991px) {
  .transactions-scroll:after {
    position: fixed;
  }
}

.transactions-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 15px 10px 0;
}

@media screen and (max-width: 991px) {
  .transactions-info {
    display: none;
  }
}

.transactions-info__left,
.transactions-info__right {
  display: flex;
  align-items: center;
}

.transactions-info__type {
  padding: 3px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
}

.transactions-info__type span {
  height: 25px;
  width: 25px;
  border-radius: 3px;
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.transactions-info__type span:last-of-type {
  margin-right: 0;
}

.transactions-info__type span svg {
  width: 15px;
  height: 11px;
}

.transactions-info__type span svg use {
  color: #6D7379;
}

.transactions-info__type span.active {
  background-color: #6D7379;
}

.transactions-info__type span.active svg use {
  color: #ffffff;
}

.transactions-info__text {
  margin-right: 10px;
  position: relative;
}

.transactions-info__text p {
  margin-bottom: 0;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: right;
}

.transactions-info__text p > span {
  text-decoration: underline;
}

.transactions-info__text span {
  font-weight: 600;
  color: #292C33;
  cursor: pointer;
}

.transactions-info__text span.open {
  color: #3D89E5;
  text-decoration: underline;
}

.transactions-info__text-mob {
  display: block;
  padding: 6px 10px;
  color: #2B2F33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
  background: #EFF2F4;
}

@media screen and (min-width: 991px) {
  .transactions-info__text-mob {
    display: none;
  }
}

.transactions-info__arrows {
  padding: 3px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #DCE1E6;
  border-radius: 6px;
}

.transactions-info__arrows-prev,
.transactions-info__arrows-next {
  height: 25px;
  width: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.transactions-info__arrows-prev svg,
.transactions-info__arrows-next svg {
  height: 10px;
  width: 13px;
}

.transactions-info__arrows-prev svg use,
.transactions-info__arrows-next svg use {
  color: #2B2F33;
}

.transactions-info__arrows-prev.disabled svg use,
.transactions-info__arrows-next.disabled svg use {
  color: #A1AAB3;
}

.transactions-info__arrows-next {
  transform: rotate(180deg);
}

.transactions-object {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: rgba(41, 44, 51, 0.8);
}

@media screen and (max-width: 991px) {
  .transactions-object {
    display: none;
  }
}

.transactions-object__quantity {
  display: inline-block;
  color: #CED3D9;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.transactions-object__quantity b {
  color: #ffffff;
}

.transactions-object__links a {
  display: inline-block;
  padding: 0 18px;
  position: relative;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: right;
}

.transactions-object__links a:hover {
  color: #2E89E5;
}

.transactions-object__links a:after {
  content: '/';
  display: block;
  position: absolute;
  right: -5px;
  top: 0;
  opacity: 0.5;
  color: #CED3D9;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.transactions-object__links a:last-of-type {
  padding-right: 0;
}

.transactions-object__links a:last-of-type:after {
  display: none;
}

.comments__form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comments-list__item {
  padding-left: 42px;
  margin-bottom: 25px;
  position: relative;
}

.comments-list__img {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 100px;
  overflow: hidden;
}

.comments-list__text {
  padding: 10px 19px;
  position: relative;
  background: #EFF2F4;
  border-radius: 0 6px 6px 6px;
}

.comments-list__text:before {
  content: '';
  width: 17px;
  height: 26px;
  display: block;
  position: absolute;
  left: -12px;
  top: 0;
  background-repeat: no-repeat;
  background-size: 17px 26px;
  background-image: url("/web/img/asset-comment_item.svg");
}

.comments-list__text p {
  margin-bottom: 0;
  margin-top: 5px;
  color: #72777D;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 22px;
}

.comments-list__name {
  display: inline-block;
  margin-right: 7px;
  color: #292C33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.comments-list__data {
  display: inline-block;
  color: #72777D;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.comments-list__gallery {
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid #DCE1E6;
}

.comments-list__gallery img {
  display: inline-block;
  margin-bottom: 5px;
  width: 40px;
  height: 40px;
  vertical-align: top;
}

.comments-list__gallery-al {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #3D89E5;
  vertical-align: top;
}

.comments-list__gallery-al img {
  height: 14px;
  width: 11px;
  margin-right: 0;
}

.comments-list__gallery-big {
  padding-top: 0;
  border: none;
}

.comments-list__gallery-big img {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  width: 117px;
  height: 117px;
}

.map {
  position: relative;
}

.object-card__content-map .map {
  width: 100%;
  height: 500px;
}

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

.map-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px !important;
  width: 30px !important;
  border-radius: 6px;
  background-color: rgba(41, 44, 51, 0.8) !important;
  position: absolute;
  top: 81px;
  left: 10px;
  z-index: 2;
}

.map-check {
  width: 210px;
  padding: 5px 10px;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 5px 10px 0 rgba(51, 68, 102, 0.2);
}

.map-check label {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 18px !important;
  color: #14171A;
}

.gm-ui-hover-effect {
  display: none !important;
}

.gm-fullscreen-control {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .modal {
    padding-right: 0 !important;
  }
}

.modal-close-mob {
  display: block;
  width: 100%;
  height: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
  background: #6D7379;
}

@media screen and (max-width: 991px) {
  .modal-close-mob+.close {
    display: none;
  }
}

.modal-close-mob button {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
  text-shadow: none;
}

.modal-close-mob button svg {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}

.modal-close-mob button svg use {
  color: #ffffff !important;
}

@media screen and (min-width: 991px) {
  .modal-close-mob {
    display: none;
  }
}

.modal-backdrop {
  opacity: 0.3 !important;
  background-color: #14171A;
}

.modal-dialog {
  max-width: 730px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .modal-dialog {
    max-width: 100%;
    margin: 0;
  }
}

.modal-content {
  position: relative;
  box-shadow: 0 15px 30px 0 rgba(26, 34, 51, 0.3);
  border-radius: 6px;
  border: none;
}

@media screen and (max-width: 991px) {
  .modal-content {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    height: calc(100vh - var(--vh-offset, 0px));
    overflow: auto;
    border-radius: 0;
  }
}

.modal-content .close {
  opacity: 1;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 2;
  cursor: pointer;
}

.modal-content .close svg {
  width: 15px;
  height: 15px;
}

.modal-content .close svg use {
  color: #6D7379;
}

.modal-body {
  padding: 0;
  display: flex;
}

@media screen and (max-width: 991px) {
  .modal-body {
    display: block;
    padding-bottom: 220px;
    position: relative;
  }
}

@media screen and (max-width: 991px) {
  .modal-body .button-rose {
    display: block;
    width: 97% !important;
    color: #2B2F33;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 16px;
    text-align: center;
    background: transparent;
    position: absolute;
    bottom: 28px !important;
    left: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .modal-body .button-secondary {
    display: block;
    width: 97% !important;
    background: #2E89E5 !important;
    position: absolute;
    bottom: 77px !important;
    left: 10px !important;
  }
}

.modal-body__left {
  width: 60%;
  background: #EFF2F4;
}

.modal-body__right {
  width: 40%;
}

.modal-body__right .button {
  width: 65%;
}

.modal-body__left,
.modal-body__right {
  padding: 50px 50px 100px;
  position: relative;
}

@media screen and (max-width: 991px) {

  .modal-body__left,
  .modal-body__right {
    width: 100%;
    padding: 20px;
    position: initial;
    background: transparent;
  }
}

.modal-body__left .button,
.modal-body__right .button {
  position: absolute;
  bottom: 45px;
  left: 50px;
}

.download__title {
  display: block;
  margin-bottom: 10px;
  color: #2B2F33;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 26px;
}

@media screen and (max-width: 991px) {
  .download__title {
    display: none;
  }
}

.download__title-numb {
  display: block;
  margin-bottom: 10px;
  color: #292C33;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

@media screen and (max-width: 991px) {
  .download__title-numb {
    width: 100%;
    position: absolute;
    bottom: 140px;
    color: #6D7379;
    font-size: 13px;
    letter-spacing: -0.4px;
    line-height: 18px;
    text-align: center;
  }
}

.download__title-preview {
  display: block;
  margin-bottom: 15px;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

@media screen and (max-width: 991px) {
  .download__title-preview {
    display: none;
  }
}

.download__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 70px;
  margin-bottom: 30px;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 5px 10px 0 rgba(51, 68, 102, 0.05);
}

@media screen and (max-width: 991px) {
  .download__preview {
    display: none;
  }
}

.download__preview_tw {
  width: 100%;
  height: 210px;
}

.download__preview_tw span {
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
}

.download__page {
  display: block;
  margin-bottom: 30px;
  color: #8A9199;
  font-size: 21px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

@media screen and (max-width: 991px) {
  .download__page {
    width: 100%;
    position: absolute;
    bottom: 145px;
    text-align: center;
  }
}

.download__page b {
  color: #2B2F33;
}

.download__choices-title {
  display: block;
  margin-bottom: 10px;
  color: #8A9199;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 18px;
}

@media screen and (max-width: 991px) {
  .download__choices-title {
    display: none;
  }
}

.download__choices-form-item {
  display: block;
}

.download__choices-form_tw {
    margin-top: 15px;
}

.download__choices-form_tw .download__choices-form-item {
  position: relative;
}

.download__choices-form_tw .download__choices-form-item:before {
  content: '';
  width: 18px;
  height: 2px;
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 2;
  background: #A1AAB3;
}

.download__choices-form_tw .download__choices-form-item:after {
  content: '';
  width: 18px;
  height: 2px;
  display: block;
  position: absolute;
  top: 13px;
  right: 0;
  z-index: 2;
  background: #A1AAB3;
}

.download__choices-form_tw input:disabled + span {
    opacity: 0.5;
}

.download p {
  margin-bottom: 30px;
  color: #8A9199;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 18px;
}

@media screen and (max-width: 991px) {
  .download p {
    margin-bottom: 0;
    color: #2B2F33;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.6px;
    line-height: 26px;
  }
}

.alert {
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 6;
  background: rgba(41, 44, 51, 0.8);
  border-radius: 6px;
}

@media screen and (max-width: 991px) {
  .alert {
    max-width: 350px;
    padding: 5px 8px 12px;
    display: block;
    bottom: 5px;
    top: auto;
    text-align: center;
  }
}

.alert p {
  padding: 0 30px 0 10px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

@media screen and (max-width: 991px) {
  .alert p {
    margin: 7px 0 12px;
  }
}

.alert a {
  display: inline-block;
  padding: 8px 13px;
  color: #292C33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: right;
  border-radius: 6px;
  background: #ffffff;
}

@media screen and (max-width: 991px) {
  .alert a {
    width: 100%;
    text-align: center;
  }
}

.gallery-inner ul {
  padding: 0;
  margin: 0 0 25px;
}

.gallery-inner ul li {
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 7px;
  list-style: none;
}

.gallery-inner ul li img {
  border: 2px solid transparent;
  border-radius: 8px;
}

.gallery-inner ul li.active img {
  border-color: #3D89E5;
}

.gallery-inner ul li .data {
  display: block;
  margin-top: 9px;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.gallery-inner ul li .id {
  display: block;
  color: #6D7379;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.gallery-slider {
  border-radius: 10px;
  overflow: hidden;
}

.gallery-slider-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider-item img {
  width: 100%;
}

.gallery-title {
  display: block;
  margin-bottom: 22px;
  color: #2B2F33;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 20px;
}

.slick-prev,
.slick-next {
  height: 100%;
  width: 60px;
  position: absolute;
  top: 0;
  z-index: 7;
  background: transparent;
  box-shadow: none;
  border: none;
  transform: none;
  cursor: pointer;
}

.slick-prev img,
.slick-next img {
  width: 20px;
  height: 20px;
}

.slick-prev {
  left: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.slick-next {
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.slick-prev:focus, .slick-next:focus {
  outline: none;
}

.select2-selection.select2-selection--multiple ul li.select2-selection__choice {
  position: absolute;
  left: -9999px;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  counter-increment: item !important;
}

.select2-selection.select2-selection--multiple ul:after {
  content: "Number of items specified in this list: "counter(item) ".";
  font-weight: bold;
  position: relative;
  top: 7px;
}

.select2-results__option:before {
  font-family: boxicons !important;
  color: #999;
  content: '\e9f1';
  padding-right: 10px;
  float: left;
}

.select2-results__option[aria-selected=true]:before {
  content: '\e9f7';
}

.nicescroll-rails-hr {
  display: none !important;
}

.nicescroll-rails-vr {
  width: 5px !important;
  opacity: 1 !important;
  background: #EFF2F4 !important;
}

.gmnoprint {
  top: 0px;
  left: 0px;
  right: inherit !important;
  bottom: inherit !important;
}

.gmnoprint>div {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gm-control-active {
  height: 30px !important;
  width: 30px !important;
  border-radius: 6px;
  background-color: rgba(41, 44, 51, 0.8) !important;
  margin-bottom: 5px !important;
}

.gm-control-active img {
  display: none !important;
}

.gm-control-active+div {
  display: none !important;
}

.gm-control-active:first-of-type {
  background: red;
}

.gm-control-active:first-of-type:before {
  content: '+';
  width: 15px;
  height: 15px;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
}

.gm-control-active:last-of-type {
  background: red;
}

.gm-control-active:last-of-type:before {
  content: '-';
  width: 15px;
  height: 15px;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
}

.gm-style .gm-style-iw-c {
  overflow: inherit !important;
  padding: 0 !important;
  top: 22px !important;
  height: 358px !important;
  width: 380px !important;
}

.gm-style .gm-style-iw-c:before {
  content: '';
  width: 30px;
  height: 45px;
  display: block;
  position: absolute;
  bottom: -35px;
  left: -4px;
  right: 0;
  margin: auto;
  background-image: url("../img/pinmap2.svg");
  background-repeat: no-repeat;
  background-size: 30px 45px;
}

.gm-style .gm-style-iw-t:after {
  display: none !important;
}

.gm-style .gm-style-iw-d {
  height: 100% !important;
  width: 100% !important;
}

.gm-style .gm-style-iw-d>div {
  width: 100%;
  height: 100%;
}

.gm-style .gm-style-iw-d>div h3 {
  display: none;
}

.gm-style .gm-style-iw-d>div>p {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}

.gm-style .gm-style-iw-d>div>p iframe {
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: none;
}

.gm-ui-hover-effect {
  display: block !important;
  top: 0 !important;
  right: 0 !important;
}

.gm-ui-hover-effect img {
  width: 18px !important;
  height: 18px !important;
}

.balloon {
  padding: 10px 0;
  width: 330px;
  border-radius: 6px;
  background-color: #FFFFFF;
}

.balloon .object-card__info-im {
  padding-left: 15px;
}

.balloon .object-card__info-im-item {
  margin-bottom: 3px;
  margin-top: 3px;
  display: inline-block;
  margin-right: 15px;
  width: 26%;
}

.balloon .object-card__info-im-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.balloon .object-card__info-im-bg {
  background: #EFF2F4;
  padding-right: 5px;
}

.balloon .object-card__info-im-tw {
    background: #FFFFFF;
}

.balloon-title {
  display: block;
  margin-bottom: 3px;
  color: #2B2F33;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
    padding-left: 20px;
}

.balloon-top {
  display: flex;
  padding: 0 10px;
}

.balloon-top-left {
  width: 108%;
  min-height: 95px;
  padding-left: 5px;
  padding-right: 10px;
  position: relative;
}

.balloon-top-left .check {
  position: absolute;
  top: -5px;
  left: 5px;
}

.balloon-top-right {
  margin-top: -5px;
}

.balloon-top-right .button {
  padding: 9px 15px;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px;
}

.balloon-type {
  margin-bottom: 5px;
  padding: 0;
}

.balloon-type li {
  padding-top: 5;
  list-style: none;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
}

.balloon-ic {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.balloon-ic img {
  margin-right: 3px;
}

.balloon-page {
  display: inline-block;
  color: #6D7379;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 15px;
  text-align: right;
}

.balloon-arrows {
  padding: 3px;
  display: inline-flex;
  align-items: center;
}

.balloon-arrows-prev,
.balloon-arrows-next {
  height: 25px;
  width: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.balloon-arrows-prev svg,
.balloon-arrows-next svg {
  height: 10px;
  width: 13px;
}

.balloon-arrows-prev svg use,
.balloon-arrows-next svg use {
  color: #2B2F33;
}

.balloon-arrows-prev.disabled svg use,
.balloon-arrows-next.disabled svg use {
  color: #A1AAB3;
}

.balloon-arrows-next {
  transform: rotate(180deg);
}

@media screen and (max-width: 991px) {
  .js-mob-table {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .js-mob-table.open-mob {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .js-map {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .js-map.open-mob {
    display: block;
  }
}

.calendar {
  padding: 18px 20px;
  width: 440px;
  display: none;
  position: absolute;
  top: 48px;
  left: -130px;
  z-index: 20;
  overflow: inherit;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2);
  border: none;
  background: #ffffff;
  border-top: 2px solid #2B2F33;
}

@media screen and (max-width: 991px) {
  .calendar {
    left: 0;
  }
}

@media screen and (max-width: 500px) {
  .calendar {
    width: 100%;
  }
}

.calendar.open {
  display: block;
}

.calendar:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: -7px;
  left: 49%;
  border: 5px solid transparent;
  border-bottom-color: #2B2F33;
  border-top: 0;
}

.calendar .filter-bottom__item {
  width: 100%;
  margin: 0 0 20px;
}

.calendar .filter-bottom__item .choice__item input[type='radio']:checked+label {
  color: #fff;
  background: #6D7379;
}

.calendar .filter-bottom__item .choice__item label {
  width: 100%;
}

.calendar__years {
  display: flex;
  align-items: center;
  margin: 0 -5px 13px;
  padding-bottom: 20px;
  border-radius: 6px;
  border-bottom: 1px solid #EFF2F4;
}

.calendar__years-item {
  display: inline-block;
  padding: 7px 17px;
  margin: 0 5px;
  color: #6D7379;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 18px;
  text-align: center;
  background: #EFF2F4;
  border-radius: 6px;
}

@media screen and (max-width: 991px) {
  .calendar__years-item {
    padding: 7px 5px;
    font-size: 10px;
    line-height: 16px;
    flex-grow: 1;
  }
}

.calendar__years-item.active {
  background: #2E89E5;
  color: #ffffff;
}

.ui-datepicker {
  padding: 0;
  width: auto !important;
  border: none !important;
}

.ui-datepicker-group+.ui-datepicker-group .ui-datepicker-month:before {
  content: 'Līdz:';
  display: inline-block;
  margin-right: 3px;
  color: #6D7379;
  font-size: 12px;
  font-weight: 400 !important;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: left;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  background: transparent !important;
  border: none !important;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: '';
  height: 10px;
  width: 13px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("/web/img/ic-pagination-left2.svg");
  background-repeat: no-repeat;
  background-size: 10px 13px;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
  display: none;
}

.ui-datepicker-next {
  top: 3px !important;
  right: 0 !important;
}

.ui-datepicker-prev {
  top: 7px !important;
  left: -9px !important;
}

.ui-datepicker-prev:after {
  transform: rotate(-180deg);
}

.ui-datepicker-header {
  position: relative;
  border: none;
  background: transparent;
}

.ui-datepicker-title {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 16px !important;
  text-align: left !important;
}

.ui-datepicker-month:before {
  content: 'No:';
  display: inline-block;
  margin-right: 3px;
  color: #6D7379;
  font-size: 12px;
  font-weight: 400 !important;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: left;
}

.ui-datepicker-calendar {
  border-collapse: collapse !important;
}

.ui-datepicker-calendar thead tr {
  background: #EFF2F4;
}

.ui-datepicker-calendar thead tr th {
  color: #6D7379;
  font-size: 11px;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
  font-weight: 400;
}

.ui-datepicker-calendar tr th {
  padding: 0 13px !important;
}

.ui-datepicker-calendar tr td {
  padding: 3px 13px !important;
}

.ui-datepicker-calendar tr th,
.ui-datepicker-calendar tr td {
  display: inline-block;
  padding: 3px;
  margin: 0 !important;
  width: 20px !important;
  height: 20px !important;
}

.ui-datepicker-calendar tr th.ui-state-highlight,
.ui-datepicker-calendar tr td.ui-state-highlight {
  border: none !important;
}

.ui-datepicker-calendar tr th.ui-state-highlight a,
.ui-datepicker-calendar tr td.ui-state-highlight a {
  background: #2E89E5 !important;
  border-radius: 100px !important;
  color: #ffffff !important;
}

.ui-datepicker-calendar tr td {
  background: transparent !important;
  border: none;
}

.ui-datepicker-calendar tr td .ui-state-default {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #6D7379;
  font-size: 11px;
  letter-spacing: -0.4px;
  line-height: 16px;
  text-align: center;
}

.ui-datepicker-calendar tr td .ui-state-default.ui-state-active {
  background: #2E89E5;
  border-radius: 100px;
  color: #ffffff;
}

.select2-dropdown {
  top: 15px;
  border: none;
}

.select2-search__field {
  margin-top: 0 !important;
}

.select2-selection--multiple {
  display: flex;
  align-items: center;
  height: 33px;
  border: 1px solid #DCE1E6 !important;
  border-radius: 6px !important;
}

.select2-container--open .select2-selection--multiple {
  border: 2px solid #2B2F33 !important;
}

.select2-selection.select2-selection--multiple {
  position: relative;
}

.select2-selection.select2-selection--multiple ul:after {
  content: counter(item) " izvēlēts";
  position: relative;
  top: 2px;
  color: #A1AAB3;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 18px;
  font-weight: 400;
}

.select2-container--open .select2-selection.select2-selection--multiple ul:after {
  color: #2B2F33;
  font-weight: 500;
}

.select2-results__group:before {
  display: none !important;
}

.select2-results__options {
  border-radius: 0 0 6px 6px;
  background-color: #ffffff;
  box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2);
  border-top: 2px solid #2B2F33;
}

.select2-results__options:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: -4px;
  left: 43%;
  border: 5px solid transparent;
  border-bottom-color: #2B2F33;
  border-top: 0;
}

.select2-results__option {
  color: #6D7379 !important;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 16px;
  background: #ffffff !important;
}

.select2-results__option:before {
  content: '';
  padding-left: 0;
  height: 16px;
  width: 16px;
  display: inline-block;
  margin: -1px 10px 0 0;
  border: 1px solid #DCE1E6;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  transition: color ease .3s;
  border-radius: 3px;
}

.select2-results__option:after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.select2-results__option#select2-1a9b-result-1m3h-icon1:after {
  content: '';
  background-image: url("../img/ic-adr-reliable.svg");
}

.select2-results__option#select2-1a9b-result-hvcr-icon2:after {
  background-image: url("../img/ic-adr-comments.svg");
}

.select2-results__option#select2-w0ui-result-ksxk-icon3:after {
  background-image: url("../img/ic-adr-photos.svg");
}

.select2-results__option#select2-w0ui-result-ww66-icon6:after {
  background-image: url("../img/ic-adr-ss.svg");
}

.select2-results__option:hover {
  background: transparent !important;
  color: #6D7379 !important;
}

.select2-results__option[aria-selected="true"] {
  color: #2B2F33 !important;
  font-weight: 500;
}

.select2-results__option[aria-selected="true"]:before {
  content: '';
  background-image: url("/web/img/ic-checkbox-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 11px;
  background-color: #2E89E5;
  border-color: #2E89E5;
}

.filter-bottom__item-select-th .optWrapper .options .opt {
  margin-bottom: 5px !important;
  position: relative;
}

.filter-bottom__item-select-th .optWrapper .options .opt label {
  display: inline-block;
  margin-bottom: 0 !important;
  vertical-align: top;
}

.filter-bottom__item-select-th .optWrapper .options .opt label:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(1):after {
  content: 'JAUNS';
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  color: #2E89E5;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: -0.4px;
  line-height: 12px;
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(1) label:after {
  background-image: url("/web/img/ic-adr-reliable.svg");
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(2) label:after {
  background-image: url("/web/img/ic-adr-comments.svg");
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(3) label:after {
  background-image: url("/web/img/ic-adr-photos.svg");
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(4) label:after {
  background-image: url("/web/img/ic-adr-kadastra.svg");
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(5) label:after {
  background-image: url("/web/img/ic-adr-auction.svg");
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(6) label:after {
  background-image: url("/web/img/ic-adr-ss.svg");
}

.filter-bottom__item-select-th .optWrapper .options .opt:nth-of-type(7) label:after {
  background-image: url("/web/img/ic-adr-compare.svg");
}

/* HEADER FROM B2B */

.header__dropdown-user .header__dropdown-user-image {
    width: 9px;
    height: 6px;
    margin-left: 7px;
    margin-right: 0;
}

@media (max-width: 992px) {
    .header__dropdown-user .header__dropdown-user-image {
        display: none;
    }
}

.header__dropdown-user-image {
    transition: transform .2s ease;
}

.header__dropdown.active .header__dropdown-user-image {
    transform: rotate(180deg);
}

.header__dropdown-open {
    min-height: 379px;
    width: 280px;
    border-radius: 0 0 6px 6px;
    background-color: #FFFFFF;
    box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2);
    padding: 20px;
    border-top: 2px solid #2A2F33;
    position: absolute;
    top: 142%;
    right: -14px;
    z-index: 1200;
    display: none;
}

.header__dropdown-open-top {
    height: 50px;
    width: 100%;
    background-color: #6D7379;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.header__dropdown-open-top-close {
    height: 50px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}


.header__dropdown-open::before {
    position: absolute;
    content: '';
    top: -7px;
    border-bottom: 5px solid #2A2F33;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    right: 20px;
}

.header__dropdown-open-data {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #E1E6EB;
    border-radius: 6px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 11px 20px;
    color: #292C33;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: 17px;
    margin-bottom: 4px;
}

.header__dropdown-open-data img {
    margin-right: 10px;
}

.header__dropdown-open button {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #E1E6EB;
  border-radius: 6px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 11px 20px;
  color: #292C33;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 17px;
  margin-bottom: 4px;
  transition: color 0.5s ease;
  }

.header__dropdown-open-data#notification-title {
  border: none;
  padding-left: 2px;
}

.header__dropdown-open button:hover{
  color: #2E89E5;
}

.header__dropdown-open-table {
    color: #6D7379;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: -0.4px;
    line-height: 16px;
    text-align: center;
    padding-bottom: 11px;
    text-align: left;
}

.header__dropdown-open-table.table-title {
    margin-top: 30px;
}

.header__dropdown-open-table .border-bottom {
    border-bottom: 1px solid #E1E6EB;
}

.header__dropdown-open-table .m-12 {
    margin-top: 12px;
}

.header__dropdown-open .m-20 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.header__dropdown-open-table strong {
    color: #2A2F33;
    font-weight: 600;
}


@media screen and (max-width: 991px) {
    .header__dropdown-open {
        position: fixed;
        width: 100%;
        box-shadow: none;
        padding: 0;
        border-top: none;
        height: 100vh;
        height: calc(100vh - var(--vh-offset, 0px));
        top: 0;
        left: 0;
    }

    .header__dropdown-open-data-wrapper,
    .header__dropdown-open-table-wrapper {
        padding-right: 12px;
        padding-left: 12px;
    }

    .header__dropdown-open::before {
        display: none;
    }

}

@media screen and (max-width: 991px) {
    .mobile-show {
        display: block;
    }

    .mobile-hide {
        display: none !important;
    }
}

@media screen and (min-width: 991px) {
    .mobile-show {
        display: none !important;
    }

    .mobile-hide {
        display: block;
    }
}

.header__compare-number {
    border-radius: 12px;
    background-color: #2E89E5;
    padding: 3px 10px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 18px;
    margin-left: 9px;
}

.object-card__info-content {
    display: flex;
    flex-wrap: wrap;
}

.object-card__info-item {
    margin-right: 20px;
    margin-bottom: 10px;
}

.object-card__actions-left {
    display: flex;
    align-items: center;
}

.object-card__tab-number {
    color: #A1AAB3;
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 1.143;
    font-weight: 400;
    margin-left: 6px;
}

.active .object-card__tab-number {
    color: #2B2F33;
}

@media (max-width: 992px) {
    .active .object-card__tab-number {
        color: #fff;
    }

    .object-card__actions-left {
        display: none;
    }

    .object-card__info-im-title-main {
        font-size: 12px;
    }

    .object-card__info-content {
        display: block;
    }

    .object-card__info-item {
        border-bottom: 1px solid #CFD5DA;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .object-card__info-im {
        display: flex;
        flex-wrap: wrap;
        margin-left: -6px;
        margin-right: -6px;
        margin-top: -12px;
    }

    .object-card__info-im-item {
        width: 33%;
        flex-shrink: 0;
        padding-top: 12px;
        padding-left: 6px;
        padding-right: 6px;
        box-sizing: border-box;
        margin-right: 0;
    }

    .object-card__info-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .object-card__info-im {
        padding-bottom: 10px;
    }
}

.advertisements__status {
    margin-right: -18px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.advertisements__buttons-wrap {
    padding-left: 12px;
}

.advertisements__buttons-wrap .button:nth-child(2) {
    border-radius: 0;
}

.advertisements__status-error {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .75);
}

.advertisements__status a img {
    width: 10px;
    height: 11px;
    margin-right: 5px;
}

.advertisements__status button {
    border: none;
    cursor: default;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 992px) {
    .advertisements__status button {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .advertisements__coincidence {
        display: block;
        margin-top: 5px;
        margin-bottom: 10px;
    }
}

.object-card__title-count {
    color: #3D89E5;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-left: 5px;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
    margin-top: -14px;
}

.gallery-row__item {
    box-sizing: border-box;
    width: 25%;
    padding-top: 14px;
    padding-left: 7px;
    padding-right: 7px;
}

.gallery-row__image {
    display: block;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-row__image > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    width: 0;
    min-width: 100%;
    min-height: 100%;
}

.gallery-row__date {
    margin-top: 8px;
    display: block;
    color: #6D7379;
    font-size: 12px;
    letter-spacing: -0.4px;
    line-height: 16px;
}

.gallery-row__delete {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    border: none;
    background-color: rgba(0,0,0,.7);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-row__facade {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border: none;
    background-color: rgba(0,0,0,.7);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-row__facade.active {
    filter: brightness(2);
}

.gallery-row__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    background-color: #2E89E5;
    color: #fff;
    font-size: 12px;
}

.gallery-row__placeholder img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.gallery-row__id {
    margin-top: 2px;
    display: block;
    color: #6D7379;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: 16px;
}

.gallery-inner__item {
    margin-bottom: 30px;
}

.gallery-slider__image {
    display: block;
    position: relative;
    padding-top: 69.4%;
    overflow: hidden;
}

.gallery-slider__image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    width: 0;
    min-width: 100%;
    min-height: 100%;
}

.object-card__content-gallery .sticky-top {
    top: 30px;
}

.comments__form textarea {
    font-size: 14px;
}

.comments-list__image img {
    border-radius: 6px;
}

.comments__footer {
    border-top: 1px solid #DCE1E6;
    margin-top: 20px;
    padding-top: 20px;
}

.comments__form-bottom label {
    margin: 0;
}

.comments__form-bottom {
    margin-top: 10px;
}

.comments__footer .button {
    border: none;
}

.comments__form-bottom .filter-top__toggle {
    flex-direction: row-reverse;
    max-width: 150px;
    margin-bottom: 0;
}

.comments__form-bottom .filter-top__toggle label {
    margin-left: 10px;
}

.comments__form-bottom .filter-top__toggle .filter-top__toggle-archive-text {
    text-align: right;
}

@media (max-width: 991px) {
    .comments__form-bottom .filter-top__toggle {
        display: inline-flex;
        margin-top: 10px;
    }

    .comments__form-bottom {
        display: block;
    }

    .comments__form-bottom .filter-top__toggle .filter-top__toggle-archive-text {
        text-align: left;
        margin-left: 0;
    }

    .comments__form-bottom .filter-top__toggle {
        margin-left: 0;
    }

    .comments__form-bottom .file {
        display: block;
    }
}

.object-card__adv-info p {
    color: #6D7379;
    font-size: 13px;
    letter-spacing: -0.4px;
    line-height: 1.69;
    margin-bottom: 11px;
}

@media (max-width: 992px) {
    .object-card__adv-info {
        margin-top: 20px;
    }
}

.adv-slider {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.adv-slider__image {
    display: block;
    position: relative;
    padding-top: 52.2%;
    overflow: hidden;
}

.adv-slider__image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    width: 0;
    min-width: 100%;
    min-height: 100%;
}

.adv-slider-thumbs {
    border-radius: 6px;
    overflow: hidden;
}

.adv-slider-thumbs__item {
    cursor: pointer;
}

.adv-slider-thumbs__item:focus {
    outline: none;
}

.adv-slider-thumbs__image {
    display: block;
    position: relative;
    padding-top: 66.3%;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 6px;
}

.adv-slider-thumbs__image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    width: 0;
    min-width: 100%;
    min-height: 100%;
}

.adv-slider-thumbs .slick-slide {
    margin-left: 5px;
    margin-right: 5px;
}

.adv-slider-thumbs .slick-current .adv-slider-thumbs__image {
    border: 1px solid #000;
}

@media (max-width: 992px) {
    .object-card__adv-wrap .row {
        flex-direction: column-reverse;
    }

    .adv-slider-thumbs {
        margin-bottom: 20px;
    }
}

.adv-table {
    margin-top: 18px;
    overflow: auto;
}

.adv-table table {
    width: 100%;
    min-width: 768px;
}

@media (max-width: 768px) {
    .adv-table-wrap {
        margin-right: -15px;
        position: relative;
    }

    .adv-table-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    }
}

.adv-table th {
    background-color: #EFF2F4;
    color: #6D7379;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: 1.45;
    padding: 12px 20px;
}

.adv-table td {
    color: #6D7379;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: 1.2;
    padding: 15px 20px;
}

.adv-table td b {
    font-weight: 500;
    color: #2b2f33;
}

.adv-table td b.green {
    color: #00A637;
}

.adv-table td b.red {
    color: #C2274E;
}

.adv-table tbody tr:not(:last-child) {
    border-bottom: 1px solid #EFF2F4;
}

.adv-table-wrap_default td {
    font-size: 12px;
    letter-spacing: -0.4px;
    line-height: 1.33;
}

/* CB-529 Language switcher */
.header__language {
    margin-right: auto;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #E6EAEF;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.language-switcher {
    position: relative;
}

.language-switcher__button {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #2B2F33;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 1.29;
}

.language-switcher__button:focus {
    outline: none;
}

.language-switcher__icon {
    margin-right: 10px;
}

.language-switcher__caret {
    margin-left: 6px;
    transition: transform .2s ease;
}

.language-switcher__dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    list-style-type: none;
    background-color: #fff;
    box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2);
    padding: 10px 25px;
    z-index: 5;
}

.language-switcher__dropdown a {
    color: #2B2F33;
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 1.29;
}

.language-switcher__dropdown a:hover {
    text-decoration: underline;
}

.language-switcher.active .language-switcher__dropdown {
    display: block;
}

.language-switcher.active .language-switcher__caret {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .header__language {
        margin-left: 15px;
        padding-left: 15px;
    }
}
/* CB-529 Language switcher end */

/* CB-530 Timer (FE) */
.header__user-timer {
    color: #6D7379;
    font-size: 12px;
    letter-spacing: -0.4px;
    line-height: 1.25;
    font-weight: 400;
}

.header__user-avatar {
    margin-right: 12px;
    position: relative;
}

.header__user-avatar img {
    width: 32px;
    height: 32px;
}

.header__user-image {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.progress-ring {
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
}

.progress-ring__circle {
    fill: transparent;
    stroke: #2E89E6;
    stroke-width: 2px;
    stroke-dasharray: 113.097, 113.097;
    stroke-dashoffset: 113.097;
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: center;
}

.header__user-avatar {
    width: 40px;
    height: 40px;
}
/* CB-530 Timer (FE) end */

/* CB-531 PDF view */
.object-card__pdf-tab {
    height: 100%;
}

.object-card__pdf-tab .object-card__content {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.object-card__pdf-tab .object-card__content iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .object-card__pdf-tab .object-card__content iframe {
        height: 600px;
    }
}
/* CB-531 PDF view end */

.comments-list__gallery [data-fancybox] img {
    border-radius: 6px;
}

.transactions-scroll {
    cursor: default !important;
    overflow: auto;
    padding-bottom: 40px;
}

.transactions-scroll::-webkit-scrollbar {
    width: 5px;
}

.transactions-scroll::-webkit-scrollbar-thumb {
    background-color: #6D7379;
}

.transactions-scroll:after {
    content: none;
}

.transactions-title {
    cursor: pointer;
    position: relative;
    padding-right: 15px;
    display: inline-block;
}

.transactions_main table tr th, .transactions_main table tr td {
    z-index: 1 !important;
}

.transactions tbody tr {
    cursor: pointer;
}

.transactions th svg {
    transition: transform .25s ease;
    position: absolute;
    top: 2px;
    right: 0;
}

.transactions th svg.rotated {
    transform: rotate(90deg);
}

.transactions-info__arrows {
    user-select: none;
}

.transactions__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6D7379;
    padding-top: 5px;
    padding-bottom: 5px;
}

.transactions__item.active {
    background: #F2F9FF;
}

.transactions__item + .transactions__item {
    border-top: 1px solid #EFF2F4;
}

.transactions__item-left {
    display: flex;
    align-items: center;
}

.transactions__item-left .source-info__icon {
    flex-shrink: 0;
}

.transactions__item-icon {
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
}

.transactions__item-address {
    font-size: 12px;
    letter-spacing: -0.4px;
    padding-right: 20px;
}

.transactions__item-right {
    text-align: right;
    flex-direction: column;
    display: flex;
}

.transactions__item-right p {
    margin: 0;
    font-size: 11px;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.transactions__item-right p b {
    font-size: 12px;
}

.transactions-info__text-mob {
    font-weight: 400;
}

.js-mob-table {
    transition: none;
    overflow: hidden;
}

.filter-input {
    position: relative;
    display: block;
}

.filter-input__icon {
    position: absolute;
    right: 12px;
    transform: translateY(-50%);
    top: 50%;
}

.nested-dropdown {
    padding: 25px 20px;
    padding-top: 8px;
    background-color: #fff;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    box-shadow: 0 15px 30px 0 rgba(51,68,102,0.2);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 220px;
    z-index: 5;
    display: none;
}

.nested-dropdown-inner-info{
  padding-bottom: 12px;
  color: #2E89E5;
  font-weight: bold;
  font-size: 12px;
}
.nested-dropdown-inner-info span {
  display: block;
}

.SumoSelect.open .nested-dropdown {
    display: block;
}

.nested-dropdown::before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    top: 4px;
    left: 0;
    background: #2B2F33;
}

.nested-dropdown::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 43%;
    border: 5px solid transparent;
    border-bottom-color: #2B2F33;
    border-top: 0;
}

.nested-dropdown__input > span {
    color: #2B2F33 !important;
    font-size: 12px !important;
    font-weight: 400;
    transition: none;
}

.nested-dropdown__input > input:checked + span {
    font-weight: 500;
}

.nested-dropdown__input {
    position: relative;
    line-height: 1;
}

.nested-dropdown__item {
    position: relative;
}

.nested-dropdown__item.has-filters {
    padding-right: 20px;
}

.nested-dropdown__item + .nested-dropdown__item {
    margin-top: 10px;
}

.nested-dropdown__caret {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background-color: #EFF2F4;
    border: none;
    border-radius: 3px;
    transition: background-color .2s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nested-dropdown__caret:focus {
    outline: none;
}

.nested-dropdown__caret svg {
    height: 8px;
    width: 5px;
    fill: #6D7379;
}

.nested-dropdown__caret:disabled {
    cursor: default;
    opacity: 0.3;
}

.nested-dropdown__popup {
    display: none;
    position: absolute;
    left: 125%;
    top: 0;
    background: #fff;
    width: 245px;
    border-radius: 6px;
    background-color: #FFFFFF;
    box-shadow: 0 15px 30px 0 rgba(51,68,102,0.2);
    padding: 18px;
    box-sizing: border-box;
    max-height: 500px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #2E89E5 transparent;
}

.nested-dropdown__popup::-webkit-scrollbar {
    width: 4px;
}

.nested-dropdown__popup::-webkit-scrollbar-thumb {
    background-color: #2E89E5;
}

.nested-dropdown__popup .button {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: 16px;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 7px;
    border: none;
}

.nested-dropdown__popup .button + .button {
    margin-top: 10px;
}

.nested-dropdown__popup .button-secondary {
    font-weight: 600;
}

.nested-dropdown__item.open .nested-dropdown__caret {
    background-color: #292C33;
}

.nested-dropdown__item.open .nested-dropdown__caret svg {
    fill: #fff;
}

.nested-dropdown__item.open .nested-dropdown__popup {
    display: block;
}

.nested-dropdown__title {
    display: block;
    color: #292C33;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 16px;
    margin-bottom: 10px;
}

.nested-dropdown__group {
    margin-bottom: 20px;
}

.nested-dropdown__input input[type=radio]+span {
    cursor: pointer;
    transition: none;
}

.nested-dropdown__input input[type=radio]+span::before {
    content: '';
    height: 16px;
    width: 16px;
    display: inline-block;
    margin: -5px 10px 0 0;
    border: 1px solid #DCE1E6;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    vertical-align: middle;
    transition: color ease .3s;
    border-radius: 3px;
}

.nested-dropdown__input input[type=radio]:checked+span::before {
    background-image: url("/web/img/ic-checkbox-check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 11px;
    background-color: #2E89E5;
    border-color: #2E89E5;
}

.nested-dropdown label {
    display: block;
    margin: 0;
}

@media (max-width: 768px) {
    .nested-dropdown {
        width: 160px;
        padding: 15px;
    }

    .nested-dropdown__popup {
        left: 105%;
        width: 190px;
    }
}


@media (min-width: 992px) {
    .filter-bottom__inner {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .filter-bottom__item {
        margin-right: 0;
        width: 14.28%;
        padding-left: 7.5px;
        padding-right: 7.5px;
        box-sizing: border-box;
    }
}

@media (min-width: 1700px) {
    .filter-bottom__item {
        width: 11.1%;
    }
}

@media (max-width: 1279px) and (min-width: 992px) {
    .filter-bottom__item {
        width: 16.66%;
    }
}

.filter-controls {
    display: flex;
}

.filter-controls .filter-btn:first-child {
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
}

.filter-controls .filter-btn:first-child svg {
    margin-left: auto;
}

.opt__new {
    color: #2E89E5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-left: 5px !important;
}

/* CB-666 Filters on Firefox: Remove number increase/decrease options from inputs */
input[type=number] {
    -moz-appearance:textfield;
}
/* CB-666 end */

/* CB-747 Cenas table: Add new optional column "Ieraksts" with object type */
.source-info {
    display: flex;
    align-items: center;
}

.source-info__icon {
    width: 23px;
    margin-right: 3px;
}

.source-info__icon__open {
    width: 23px;
    margin-right: 3px;
    margin-top: -3px;
}


.source-info__title {
    font-size: 12px;
    display: block;
}

.source-info__subtitle {
    font-size: 10px;
}
/* CB-747 end */

/* CB-657 CR: FE: table sticky heading row */
.transactions-scroll table thead tr th {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 6 !important;
    vertical-align: top;
}
/* CB-657 */

.object-card__content-map .google-map-wrapper {
    height: 100%;
}

/* CB-749 Open object: Add option to save as PDF */
@media print {
    .tab-pane.print-active {
        display: block;
        opacity: 1;
    }

    .object-card__tabs .tab-content {
        height: auto !important;
    }

    .object-card__tabs {
        border: none;
    }

    .nav.nav-tabs {
        display: none;
    }

    .object-card__actions {
        display: none;
    }

    .js-mob-toggler {
        display: none;
    }

    .comments__form {
        display: none;
    }

    .object-card__content-table .col-sm-12+.col-sm-12 .object-card__content-table-inner {
        border: none;
        padding-left: 0;
    }

    .object-card__content-map #map {
        display: none;
    }

    .modal-backdrop {
        display: none !important;
    }

    #exampleModalDownload {
        display: none !important;
    }
}

.transactions_print {
    height: auto;
}

.map-controls__delete {
    background-color: #c2274e !important;
}

.map-controls__delete img {
    width: 70%;
    height: 100%;
    object-fit: contain;
}

.export-button {
    width: 100%;
    background-color: #6D7379;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    letter-spacing: -0.4px;
    padding: 7px 15px;
    cursor: pointer;
    transition: background-color .2s ease;
    outline: none;
}

.export-button:not(:disabled):hover {
    background-color: #000;
}

.export-button:disabled {
    opacity: 0.5;
    cursor: progress;
    background-color: #6D7379;
}

.transactions .button-secondary {
    border: none;
    margin-top: 15px;
}

.transactions .button-secondary:disabled {
    opacity: 0.5;
    cursor: progress;
}

.filter-top__inner .filter-top__right > .filter-bottom__item {
    width: 100px;
    display: inline-block;
    padding: 0;
    margin-left: 15px;
}

@media (max-width: 991px) {
    .filter-top__inner .filter-top__right > .filter-bottom__item {
        display: none;
    }
}

.filter-bottom__inputs-row {
    display: flex;
}

.filter-bottom__inputs-row .filter-bottom__item {
    width: 50%;
}

.filter-bottom__inputs-row .filter-bottom__item + .filter-bottom__item {
    margin-left: 15px;
}

.daterangepicker {
    min-width: auto !important;
}

.daterangepicker .calendar-table td, .daterangepicker .calendar-table th {
    min-width: auto !important;
}

.typeFilter-loader {
    margin-top: 2px;
    margin-bottom: 1px;
}

.filter-bottom__item-info {
    display: flex;
    width: 15px;
    margin-left: 5px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .content {
        height: calc(100vh - 170px);
        height: calc(100vh - var(--vh-offset, 0px) - 170px);
    }

    .content>.container-fluid>.row {
        position: relative;
    }

    .content>.container-fluid>.row>.col-5.open {
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .filter-bottom__item-info {
        display: none;
    }
}

.filter-bottom__item-wrap {
    display: flex;
    align-items: flex-start;
}

.filter-bottom__item-info img {
    width: 15px;
    height: 15px;
}

.filter-bottom__item-title-info {
    display: inline-block;
    width: 15px;
    margin-left: 3px;
}

.filter-bottom__item-title-info img {
    width: 15px;
    height: 15px;
}

.tippy-tooltip {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.nested-dropdown__item .autocomplete-result-list {
    top: auto !important;
    bottom: 100% !important;
    border-top: none;
    border-bottom: 2px solid #2a2f33;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.nested-dropdown__item .autocomplete-result-list::before {
    top: auto;
    bottom: 0;
}

.col-map {
    display: none;
}

.col-map.open {
    display: block;
}

.print-googlemap {
    display: none;
}

@media print {
    .object-card__content-map-list {
        display: none;
    }

    .print-googlemap {
        display: block;
    }

    .map {
        display: none;
    }
}

.string-nowrap {
    white-space: nowrap;
}

@media (max-width: 992px) {
    .object-card__content-gallery-wrap {
        flex-direction: column-reverse;
    }

    .object-card__content-gallery .sticky-top {
        position: static;
    }

    .gallery-inner {
        margin-top: 30px;
    }
}

.up-btn {
    width: 35px;
    height: 35px;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    background: #333;
    cursor: pointer;
    position: fixed;
    z-index: 2000;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    border: none;
}

.up-btn:focus {
    outline: none;
}

.up-btn.active {
    opacity: 1;
    transform: scale(1);
}

.up-btn img {
    width: 100%;
    max-width: 100%;
}

.filter-top__mob-filter_reset img {
    width: 15px;
}

.filter-top__mob-filter_reset.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.autocomplete-input__text {
    padding-left: 30px;
}

.autocomplete-input__reset-button {
    position: absolute;
    content: "";
    background: none;
    background-image: url(../images/cross-close.svg);
    background-color: none;
    width: 15px;
    height: 15px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    right: 8px;
    border: none;
    padding: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    stroke: none;
    opacity: 0.5;
}

.autocomplete-input__reset-button:hover {
    color: #2e89e5;
    cursor: pointer;
    opacity: 1;
}

.autocomplete-group-wrap {
    max-height: 150px;
    overflow: hidden;
}

.autocomplete-group-wrap.expanded {
    max-height: none;
}

.autocomplete-more-button {
    margin-bottom: 10px;
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 13px;
    color: #2E89E5;
    cursor: pointer;
}

.autocomplete-more-button.hidden {
    display: none;
}

.autocomplete-result-list li, .autocomplete-result-list div {
    transition: none;
}

.address-col {
  min-width: 190px;
}

.facade-image {
    position: absolute;
    margin-left: 90px;
    z-index: 100 !important;
}
.facade-image img {
    -webkit-filter: drop-shadow(3px 3px 3px #bfc1c2);
    filter: drop-shadow(3px 3px 3px #bfc1c2);
}

.facade-image:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right:15px solid #F2F9FF;
    top: 40%;
    left: -15px;
}

.icon-svg-blue {
    filter: invert(49%) sepia(64%) saturate(5331%) hue-rotate(185deg) brightness(98%) contrast(92%);
}

#ss-icon {
    filter: invert(38%) sepia(48%) saturate(5039%) hue-rotate(116deg) brightness(101%) contrast(99%);
}

.alert-top {
    top: 3px;
    bottom: auto;
    margin-left: auto;
    padding: 10px 18px;
}

@media (max-width: 991px) {
    .alert-top {
        margin-left: auto;
        max-width: 200px !important;
        padding: 7px 10px;
    }

    .alert-top > img,
    .alert-top > p {
        display: none;
    }
}

@media (min-width:992px) and (max-width: 1118px) {
    .alert-top {
        max-width:150px;
        margin-left: 30%;
    }

    .alert-top > p {
        display: none;
    }
}

@media (min-width:1119px) and (max-width: 1200px) {
    .alert-top {
        margin-left: 11%;
    }
}

@media (min-width:1201px) and (max-width: 1550px) {
    .alert-top {
        margin-left: 15%;
    }
}

.notification-counter {
    position: absolute;
    margin-left: 20px;
    margin-bottom: 15px;
    padding: 5px;
    color: white;
    border-radius: 50%;
    background: red;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 0.6rem;
}

.unread-news-link {
    color: #2A2F33;
    font-size: 13px;
    font-weight: 600;
}

.unread-new-link:hover {
    color: #2E89E5;
}

.payment-confirm-popup__button{
  background-color: #2E89E6;
}

.required::after {
    content: '*';
    color: #d00;
    padding: 0 0.25rem;
}

fieldset.form-group .choice-row {
    display: flex;
}

fieldset.form-group .choice-item {
    flex: 1 1 0px;
}

fieldset.form-group .choice-item:not(:first-child) {
    margin-left: 3px;
}

fieldset.form-group .choice-item input[type=checkbox]+label,
fieldset.form-group button.choice-item,
fieldset.form-group input.choice-item {
    width: 100%;
    height: 3em;
    margin-bottom: 0;
    font-size: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6D7379;
    background: transparent;
    outline: 0;
    letter-spacing: -0.4px;
    line-height: 18px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #DCE1E6;
}

fieldset.form-group .choice-item input[type=checkbox]+label:before {
    display: none !important;
}

fieldset.form-group .choice-item input[type=checkbox]:checked+label,
fieldset.form-group button.choice-item.active,
fieldset.form-group input.choice-item.active {
    color: black;
    font-weight: bolder;
    box-shadow: inset 0.2em 0.2em 0px 0px #d5e7fa, inset -0.2em -0.2em 0px 0px #d5e7fa;
    border: 1px solid var(--primary-color);
}

.form-group .input-suggestions-wrapper {
    display: block;
    position: relative;
}

.form-group .input-suggestions {
    display: none;
    width: 100%;
    padding: 18px 20px;
    top: 5px;
    overflow: inherit;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 15px 30px 0 rgba(51, 68, 102, 0.2);
    border: none;
    border-top: 2px solid #2A2F33;
    position: absolute;
    z-index: 5;
    background: white;
}

.form-group .input-suggestions::before {
    position: absolute;
    content: '';
    top: -7px;
    border-bottom: 5px solid #2A2F33;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    right: 50%;
}

.form-group ul.input-suggestions li {
    list-style: none;
    overflow: auto;
    color: #888;
}

.form-group ul.input-suggestions li:hover {
    color: black;
    cursor: pointer;
}

.loading {
    display: block;
    width: 40px;
    aspect-ratio: 8;
    background: radial-gradient(circle closest-side, #000 90%, #0000) 0/calc(100% / 3) 100% space;
    clip-path: inset(0 100% 0 0);
    animation: animateLoading 1s steps(4) infinite;
}

@keyframes animateLoading {
    to {
        clip-path: inset(0 -34% 0 0)
    }
}

.spin {
    animation: spin 3s linear infinite;
}

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

#form-error-list {
    border: 1px solid #f5c6cb;
    color: #721c24;
    background: #f8d7da;
    border-radius: 6px;
    padding: 1em 1.5em;
}

.price-eur:before {
    content: "€";
    padding-right: 0.3em;
}

.bg-black {
    background: black;
}

.report-table-wrapper {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  overflow: hidden;
  width: 100%;
}

#valuation-report-table {
  margin: 0;
  border: none;
}

#valuation-report-table thead {
  background: #f7f9fb;
}
#valuation-report-table th {
  font-weight: 600;
  letter-spacing: .03em;
  border-bottom: 1px solid #e5e9ef;
  color: #3d4958;
  padding: .75rem .9rem;
}

#valuation-report-table td {
  border-top: 1px solid #edf1f5;
  padding: .75rem .9rem;
  vertical-align: middle;
}
#valuation-report-table tbody tr:hover {
  background: #f3f6fa;
}

.report-open-btn {
  display: inline-block;
  padding: .45rem 1.1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #556070;
  background: #eef2f7;
  border-radius: .4rem;
  text-decoration: none;
  transition: background .15s ease;
}
.report-open-btn:hover {
  background: #e1e8f0;
  color: #2f3743;
}

#valuation-report-table th:not(:last-child),
#valuation-report-table td:not(:last-child) {
    border-right: 1px solid #e5e9ef;
}
