/**
 * Map Dropdown
 */

.map-dropdown {
  background-color: #fff;
  min-width: 120px;
  border: 3px solid #0072ff;
  box-shadow: 0.5px 0.9px 5px 0 rgba(13, 23, 36, 0.4);
}

.map-dropdown__item {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border: 1px solid #ecf0f2;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  transition: 0.35s;
}

.map-dropdown__item + .map-dropdown__item {
  border-top: 0;
}

.map-dropdown__item strong {
  color: #0072ff;
  font-weight: 600;
  margin-right: 15px;
}

.map-dropdown__item:hover {
  color: #0072ff;
}

/**
 * Map Icon
 */

.map-icon {
  width: 60px;
  height: 60px;
  user-select: none;
  pointer-events: none;
  position: relative;
}

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

.map-icon__count {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #333c4e;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-icon--1 .map-icon__count { right: 6px; top: 8px; }
.map-icon--2 .map-icon__count { right: 6px; top: 8px; }
.map-icon--3 .map-icon__count { right: 3px; top: 8px; }
.map-icon--4 .map-icon__count { right: 4px; top: 9px; }
.map-icon--5 .map-icon__count { right: 4px; top: 9px; }
.map-icon--6 .map-icon__count { right: 5px; top: 9px; }
/*
1
7, 10

2


3
4
5
*/


/**
 * Map Flag
 */

.map-marker {
  min-width: 30px;
  border: 1px solid #0062dc;
  background-color: #0072ff;
  border-radius: 6px;
  box-shadow: 1.5px 2.6px 10px 0 rgba(13, 23, 36, 0.2);
  text-align: center;
  position: relative;
  transform: translateY(calc(-50% - 10px));
  cursor: pointer;
}

.map-marker:hover {
  z-index: 100;
}

.map-marker__title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 2px 4px 4px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker__content {
  background-color: #fff;
  border-radius: 4px;
  padding: 2px 0;
  font-size: 12px;
  font-weight: 600;
  color: #333c4e;
}

.map-marker::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) scaleX(0.8);
  border-width: 10px;
  border-style: solid;
  margin-top: -1px;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
}

.map-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) scaleX(0.8);
  border-width: 10px;
  border-style: solid;
  border-color: #0062dc transparent transparent transparent;
}

.map-marker.red {
  background-color: #f4361e;
  border-color: #d5220b;
}

.map-marker.red::after {
  border-color: #d5220b transparent transparent transparent;
}

.map-marker .new-effect {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  width: 72px;
  height: 20px;
  background: linear-gradient(to right, #ef3f68 0%, #863ba4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding-left: 14px;
  margin-bottom: 4px;
}

.map-marker .new-effect::before {
  content: 'N';
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #be3d84;
  border: 2px solid #a32b80;
  color: #ffe500;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}