/* Dynamic Market Area Frontend & Admin Styles */


.market_section {
}

.market_section h3.market_section_title {
  font-size: 22px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 10px;
  color: #141515;
  text-transform: capitalize;
}

.market_section ul.market-list {
  width: 100%;
  margin: 0;
  padding: 0;
}

.market_section ul.market-list li {
  display: inline-block;
  list-style: none;
  line-height: 24px;
  color: #423f3f;
  font-size: 16px;
  font-weight: normal;
  margin: 5px;
  width: calc(25% - 10px);
}

.market_section ul.market-list > li a {
  width: 100%;
  height: auto;
  padding: 10px;
  margin: 0;
  display: block;
  color: #333;
  font-size: 14px;
  background-color: #ddd;
}
.market_section ul.market-list > li a:hover {
  background: #0ca21b;
  color: #fff;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .market_section ul.market-list li {
    width: calc(33.33% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .market_section ul.market-list li {
    width: calc(50% - 10px);
  }
}