:root {
  --theme-col: #002939;
  --theme-col-light: #7ea7ac;
}

.providers_profile {
  display: inline-flex;
  margin-right: 24px;
}

.providers_profile img {
  float: left;
  border-radius: 50%;
  max-width: 35%;
  object-fit: cover;
  height: auto;
}

.providers_profile img {
    display: none;
}

.provider_info {
  margin-top: 7px;
  margin-left: 16px;
}

.providers_accordion {
  position: relative;
  background-color: transparent;
  color: #002939;
  cursor: pointer;
  padding: 18px 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-weight: bold;
  font-size: 18px;
}


/* Search by Clinic filter */
.providers_accordion .acc-icon {
  position: absolute;
  top: 22%;
  left: 50%;
  font-size: 26px;
}

/* .active,
.providers_accordion:hover {
  background-color: #ccc;
} */

/* .providers_accordion:after {
  content: "\003E";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
} */

.clinic_list {
  display: none;
}

.clinic_list.active {
  display: block;
  transition: 1s;
  padding: 10px 0px;
}


.active-clinic span {
  border: 1px solid var(--theme-col);
  padding: 5px 25px;
}

.disabled-clinic {
  border: none;
  padding: 0;
}


.clinic_list li {
  border-bottom: 1px solid gainsboro;
  list-style: none;
  padding: 5px;
}

label.icon {
  display: block;
  width: fit-content;
  line-height: 0px;
  padding: 5px 0px;
  cursor: pointer;
}

label.icon:first-child {
  padding-top: 10px;
}

label.icon input { /* hide the checkbox */ 
  visibility: hidden;
  display: none;
}

label.icon input:checked { /* when input is checked */
  border: 1px solid #002939!important;
  padding: 5px;
}

label.icon span {
  text-transform: uppercase;
}


/* Search box filter */

.providers_filters {
  position: relative;
  max-width: 370px;
}

.providers_filters #keyword {
  border: 1px solid #002939;
  border-width: 0 0 1px;
  background-color: transparent;
}

.search-box .search-icon {
  position: absolute;
  right: 35%;
  font-size: 20px;
  transform: rotate(-90deg);
}

/* Checkbox filters */

.special-fields {
  max-width: 195px;
}

.special-fields .wrapper {
  display: block;
  text-align: right;
  position: relative;
}


/* Tooltip */
.tooltip-icon {
  position: absolute;
  z-index: 94;
  font-size: 13px!important;
  right: 25px!important;
  top: 1px;
  margin-left: 5px;
  bottom: 0!important;
}

.tooltip-info {
  position: absolute;
  z-index: 99;
  left: 0;
  display: block;
  background: #fff;
  padding: 10px;
  box-shadow: 1px 1px 10px 1px #ddd;
  visibility: hidden;
  width: 250px;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
}

.special-fields .tooltip-icon:hover  + .tooltip-info{
  visibility: visible;
  transition: visibility 0.5s ease 0.5s;
}

/* Loader */

.loader {
  border: 16px solid #eee;
  border-radius: 50%;
  border-top: 16px solid var(--theme-col-light);
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin: 150px auto;
}

/* Safari */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Provider circle images */

section#providers {
  display: flex;
  flex-wrap: wrap;
}

.provider-container {
  flex: 0 0 16.6667%;
  padding: 10px;
  position: relative;
}

/* Mobile */
@media (max-width: 767px) {
  .provider-container {
    flex: 0 0 100%;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1240px) {
  .provider-container {
    flex: 0 0 33.333%;
  }
}



.provider {
  position: relative;
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  border-radius: 50%;
  overflow: hidden;
}

.provider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* icons */ 
.provider-container span.et-pb-icon {
    font-size: 30px;
    position: absolute;
    right: 10%;
    bottom: 5%;
    color: var(--theme-col-light);
    cursor: pointer;
    outline: none;
    user-select: none;
	z-index: 1;
}

/* plus icon fill */
.provider-container .et-pb-icon:after {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  left: 15%;
  top: 15%;
  z-index: -1;
  position: absolute;
  background-color: #fff;
}

/* mobile plus icon css */
@media (max-width: 767px){
  .mobile-plus {
    display: block!important;
    font-size: 40px!important;
  }
  .provider-container .et-pb-icon.mobile-plus:after {
    width: 30px;
    height: 30px;
  }
}

/* Loadmore button */ 

.loadmore-btn {
  display: none;
  text-align: center;
  width: fit-content;
  margin: 35px auto;
  border: 1px solid #67b667;
  border-radius: 5px;
  color: #67b667;
  padding: 10px 25px;
  transition: 1s ease-in;
}

.loadmore-btn:hover {
  color:#fff;
  background-color: #67b667;
  transition: 1s ease-in;
}

@media (max-width: 767px) {
  /* Loadmore btn css */
  .loadmore-btn {
    display: block;
  }
  .provider-container {
    display: none;
  }
}





/* Styles for POPUP dialog window */
.mg-popup-box {
	background: white;
	padding: 20px 30px;
	text-align: left;
	max-width: 400px;
	margin: 40px auto;
	position: relative;
}



/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 



	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 

	opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;

	-webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;

	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

body.noscroll {
  overflow-y: hidden!important;
}

/* Popup disabled for MOBILE styles*/
@media (max-width:767px) {
  .popup-with-zoom-anim {
    display: none;
  }

  .providers_profile img {
    display: none;
  }

   .mobile-plus.active {
    position: relative!important;
    float: right;
    margin-top: -20px;
    margin-right: -8px;
  }
}