.ndo_box {
  background: white;
  padding: 60px;
  margin: 20px 0 50px;
}
.ndo_box h1 {
  text-align: center;
}
.ndo_box .ndo_check_all {
  padding: 10px 0 0;
/*   display: none; */
}
.ndo_box .ndo_filter {
  border: 1px solid #cbd7f2;
  background: #f2f5fc;
  margin: 0 auto;
  width: 80%;
  padding: 15px 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ndo_box .ndo_filter .ndo_toggle {
  font-weight: bold;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.ndo_box .ndo_filter .ndo_toggle:before {
  content: "\e621";
  font-family: awb-icons;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #cbd7f2;
  line-height: 0;
  transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}
.ndo_box .ndo_filter .ndo_toggle._opn:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.ndo_box .ndo_filter .ndo_lists {
  margin: 10px 0;
/*   display: none; */
}
.ndo_box .ndo_filter .ndo_lists:after {
  content: "";
  display: block;
  clear: both;
}
.ndo_box .ndo_filter .ndo_lists .ndo_item {
  float: left;
  width: 33.33%;
}
.ndo_box .ndo_filter .ndo_lists .ndo_item label {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  align-items: center;
  padding: 5px 0;
  font-size: 14px;
  font-family: Lato, sans-serif;
}
.ndo_box .ndo_filter .ndo_lists .ndo_item label input {
  margin-right: 10px;
}
.ndo_box .ndo_filter .ndo_lists .ndo_item label span {
  flex: 0 0 60px;
  height: auto;
  padding: 0 10px;
}
#list-result {
  margin-top: 30px;
}
#list-result._loading {
  opacity: .4;
}
#list-result .results-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
#list-result .result-item {
  flex: 0 0 33.33333333%;
  margin: 20px 0;
}
#list-result .result-item .inner {
  background: white;
  margin: 0 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#list-result .result-item .inner .thumb {
  display: block;
  background: gray;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#list-result .result-item .inner .thumb img {
  display: none;
}
#list-result .result-item .inner .text {
  padding: 15px 30px 30px;
}
#list-result .result-item .inner h4 {
  margin: 10px 0 15px;
  color: #141d43;
  font-size: 22px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
#list-result .result-item .inner ul {
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
#list-result .result-item .inner ul li {
  list-style: none;
  border-bottom: 1px solid #ccc;
  flex: 0 0 48%;
  color: #545454;
  font-size: 12px;
  padding: 6px 0 6px 20px;
  line-height: 16px;
  letter-spacing: -1px;
  position: relative;
  word-break: break-word;
  overflow-wrap: break-word;
}
#list-result .result-item .inner ul li:nth-child(odd):after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 200%;
  left: 0;
  border-bottom: 1px solid #ccc;
}
#list-result .result-item .inner ul li:before {
  content: "\f00c";
  font-family: FontAwesome;
  margin-right: 10px;
  color: #3e9ad7;
  position: absolute;
  left: 0;
  top: 5px;
}
#list-result .result-item .inner ul:after {
  content: "";
  display: block;
  clear: both;
  height: 2px;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#list-result .result-item .inner .more {
  color: #9bcd2f;
}
#list-result .result-item .inner .more:before {
  content: "\f178";
  font-family: FontAwesome;
  margin-right: 10px;
  position: relative;
}
#list-result .result-item .inner .more:hover {
  color: #9bcd2f;
}
@media (max-width: 767px) {
  #list-result .result-item {
    flex: 0 0 100%;
  }
  .ndo_box{
	  padding: 30px;
  }
  .ndo_box .ndo_filter{
	  width: 100%;
  }
  .ndo_box .ndo_filter .ndo_lists .ndo_item{
	  float: none;
	  width: 100%;
  }
  #list-result .result-item .inner{
	  margin-right: 0;
	  margin-left: 0;
  }
}

#list-result .result-item h5{
	font-weight: bold;
	font-size: 12px !important;
	color: #545454 !important;
	margin: 20px 0 6px 0 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}
#list-result .result-item ._address{
	font-size: 12px;
	line-height: 16px;
	color: #545454;
}
#list-result .result-item ._address ._phone{
	background: url('phone.svg') no-repeat center left;
	background-size: auto 22px;
	display: inline-block;
	padding: 5px 0;
	padding-left: 25px;
}
#list-result .result-item ._address ._address_link{
	background: url('map.svg') no-repeat center left;
	background-size: auto 22px;
	display: inline-block;
	padding: 5px 0;
	padding-left: 25px;
	pointer-events: auto !important;
}

.loc_slide .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: transparent;
  outline: none !important;
  cursor: pointer;
  z-index: 999;
}
.loc_slide .slick-arrow:before {
  font-family: FontAwesome;
  color: rgb(62, 154, 215);
  font-size: 30px;
}
.loc_slide .slick-arrow.slick-prev {
  left: -30px;
}
.loc_slide .slick-arrow.slick-prev:before {
  content: "\f060";
}
.loc_slide .slick-arrow.slick-next {
  right: -30px;
}
.loc_slide .slick-arrow.slick-next:before {
  content: "\f061";
}

.loc_slide .slick-list{
	min-width: 100%;
}

@media (max-width: 767px) {
	.loc_slide{
		margin-left: 40px;
		margin-right: 40px;
		width: auto !important;
	}
	.loc_slide .slick-slide{
		margin-left: 10px;
		margin-right: 10px;
	}
	.loc_slide .slick-arrow.slick-prev {
	  left: -50px;
	}
	.loc_slide .slick-arrow.slick-next {
	  right: -50px;
	}
}