
/*-----------------------------------------------
# Module List
-----------------------------------------------*/

#acfcp_module_list {
	display: flex;
	width: 100%;
}

#acfcp_module_list div {
	margin: 10px;
	position: relative;
}

#acfcp_module_list img {
	max-width: 100%;
	display: block;
	cursor: pointer;
    border: solid 5px #d2d2d2;
    transition: all ease .5s;
}

#acfcp_module_list img:hover {
	border-color: #51cec5;
}

#acfcp_module_list .fa {
	display: none;
}

#acfcp_module_list .acfcp_selected .fa {
    display: block;
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 40px;
    right: 20px;
    top: 15px;
}

#acfcp_module_list .acfcp_selected img {
	border-color: #79ce51;
}

/*-----------------------------------------------
# Pop-up
-----------------------------------------------*/

.acfcp-bg {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.acfcp-wrapper {
	/*margin-top: -120px;*/
	/* border: solid 7px #ffffff; */
	position: relative;
	/* box-shadow: 0px 0px 87px -4px rgba(0,0,0,0.24); */
}

.acfcp-close {
	font-size: 30px;
	color: rgb(0, 0, 0);
	position: absolute;
	width: 49px;
	height: 49px;
	border-radius: 100%;
	background: #ffffff;
	display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    right: -27px;
    top: -29px;
    transition: all ease .5s;
}

.acfcp-close:hover {
	background: #fa3a18;
  text-decoration: none;
} 


/* MODEL 2 */

.acfcp-wrapper.model-2 {
  max-width: 475px;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.acfcp-wrapper.model-2 h2 {
  font-size: 33px;
  font-weight: 900;
  text-align: center;
}

.acfcp-wrapper.model-2 h3 {
  font-size: 22px;
  text-align: center;
  margin: 5px 0 25px;
}

.acfcp-wrapper.model-2 p {
  font-size: 18px;
  text-align: center;
  line-height: 22px;
  margin-bottom: 25px;
}

.acfcp-wrapper.model-2 button {
  padding: 13px 10px;
  border: 3px solid;
  text-align: center;
  border-radius: 3px;
  font-size: 22px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}

.acfcp-wrapper.model-2 button strong {
  font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 550px) {
  .acfcp-wrapper.model-2 {
    width: calc(100% - 50px);
    padding: 10px;
  }

  .acfcp-wrapper.model-2 h2 {
    font-size: 22px;
  }

  .acfcp-wrapper.model-2 h3 {
    font-size: 16px;
    margin: 5px 0 15px;
  }

  .acfcp-wrapper.model-2 p {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 20px;
  }

  .acfcp-wrapper.model-2 button {
    padding: 10px 5px;
    font-size: 18px;
  }
}