/* COLORS VARS */
/* Pink */
/* Purple */
/* Green */
/* Light Green */
/* Yellow */
/* Beige */
/* Blue Gray */
/* New design system */
.geo-list-container {
  position: relative;
  padding: 30px 45px;
  border-radius: 6px;
  background: #FFF;
}
@media all and (max-width: 991px) {
  .geo-list-container {
    padding: 20px;
  }
}
.geo-list__filter-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: end;
}
.geo-list__filter-container .os-form-search {
  width: 33%;
}
@media (max-width: 991px) {
  .geo-list__filter-container .os-form-search {
    width: 100%;
  }
}
.geo-list__filter-container .os-form-search__input:focus {
  border-color: #9aca23;
}
.geo-list__filter-container .os-form-search__input:focus + label {
  transform: translateY(-50%) translateX(200%);
}
.geo-list__not-found-message {
  margin-top: 15px;
}
.geo-map__panel {
  padding: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: white;
}
.geo-map__panel__element {
  display: inline-block;
  padding: 12px;
  font-size: 14px;
  color: #272727;
}
.geo-map__panel__element__icon {
  display: inline-block;
  height: 28px;
  width: auto;
  vertical-align: middle;
  margin-right: 7px;
}
.geo-map__panel_bottom {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.geo-map__map {
  height: 600px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.geo-map__map.transparent {
  opacity: 0;
  z-index: 0;
}
@media (max-width: 480px) {
  .geo-map__map {
    height: 450px;
  }
}
.geo-map__map-container {
  position: relative;
  height: 600px;
  width: 100%;
  background: #F8F8F8;
}
.geo-map__hint {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
  margin-top: -50px;
  text-align: center;
}
.geo-map__bubble {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 30;
}
@media all and (max-width: 767px) {
  .geo-map__map-container {
    height: auto;
  }
  .geo-map__bubble {
    position: relative;
    z-index: 30;
    padding: 15px;
  }
}
.geo-bubble {
  position: relative;
  padding: 20px;
  width: 400px;
  max-height: 562px;
  overflow: hidden;
  border-radius: 4px;
  background: #FFF;
  font-size: 0.875em;
  color: #272727;
}
.geo-bubble__title {
  margin-bottom: 10px;
  font: 1.35em "glober-semibold";
}
.geo-bubble__address {
  margin-bottom: 20px;
}
.geo-bubble__worktime {
  margin-bottom: 10px;
}
.geo-bubble__worktime:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #8bb620;
}
.geo-bubble__worktime_closed:before {
  background: #CC0862;
}
.geo-bubble .btn {
  border: none;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .geo-bubble {
    width: auto;
    margin-right: -30px;
  }
}
.geo-list__table {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 3px solid #f3f2f0;
}
.geo-list__table-row {
  padding: 17px 20px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: auto 60% 33%;
  grid-template-areas: 'icon main worktime';
  column-gap: 20px;
  border-top: 3px solid #f3f2f0;
}
.geo-list__table-row:first-child {
  border-top: 0;
}
.geo-list__table-row:hover {
  background: rgba(243, 241, 237, 0.3);
}
.geo-list__table-column._icon {
  grid-area: icon;
}
.geo-list__table-column._main {
  grid-area: main;
}
.geo-list__table-column._worktime {
  grid-area: worktime;
}
.geo-list__table .os-icon_selfdelivery {
  --icon-zoom-index: 1.4;
  color: #9aca23;
}
.geo-list__table .os-icon_selfdelivery.private {
  color: #FFDB4D;
}
.geo-list__table-title {
  border-bottom: 1px solid rgba(86, 5, 81, 0.3);
  font: 17px "glober-semibold";
  color: #560551;
}
.geo-list__table-address {
  margin: 10px 0 0 10px;
}
.geo-list__table-phones {
  margin: 10px 0 0 10px;
}
.geo-list__table-worktime {
  font-size: 14px;
}
@media all and (max-width: 1199px) {
  .geo-list__table-row {
    grid-template-columns: 60% 33%;
    grid-template-areas: 'main worktime';
  }
  .geo-list__table-column._icon {
    display: none;
  }
  .geo-list__table-title {
    font-size: 16px;
  }
  .geo-list__table-address,
  .geo-list__table-phones {
    margin-left: 0;
    font-size: 14px;
  }
}
@media all and (max-width: 991px) {
}
@media all and (max-width: 767px) {
  .geo-list__table-row {
    grid-template-columns: 100%;
    grid-template-areas: 'main' 'worktime';
  }
  .geo-list__table-worktime {
    margin-top: 10px;
  }
}
