/*============================================================================================*/
/* ACCOUNT PAGE */
/*============================================================================================*/
.box_account {
  margin-bottom: 25px;
}
.box_account h3 {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 30px;
  height: 30px;
  padding-top: 5px;
  display: inline-block;
  color: #444;
}
.box_account h3.client {
  background: url(../img/user.svg) center left no-repeat;
}
.box_account h3.new_client {
  background: url(../img/new_user.svg) center left no-repeat;
}
.box_account .form_container {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  position: relative;
}
.box_account .form_container hr {
  margin: 0 0 10px 0;
  border-color: #ededed;
}
.box_account .form_container a.social_bt {
  margin-bottom: 0;
  min-width: inherit;
}
@media (max-width: 991px) {
  .box_account .form_container a.social_bt {
    margin-bottom: 5px;
  }
}
.box_account .form_container .form-group {
  margin-bottom: 10px;
}
.box_account .form_container #forgot_pw {
  height: 100% !important;
  min-height: inherit;
  background-color: #f4f4f4;
  padding: 15px;
}

/*============================================================================================*/
/* PROFILE PAGE */
/*============================================================================================*/
.box_profile_details {
  background-color: #fff;
  min-height: 180px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 25px 25px 1px 25px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .box_profile_details {
    min-height: inherit;
  }
}
.box_profile_details h3 {
  font-size: 21px;
  font-size: 1.3125rem;
}

.data_profile {
  margin-bottom: 15px;
}
.data_profile p {
  margin-bottom: 0;
}

a.box_topic {
  text-align: center;
  background: #fff;
  padding: 40px 30px 15px 30px;
  display: block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  color: #444;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 767px) {
  a.box_topic {
    padding: 20px 20px 0 20px;
  }
}
a.box_topic:hover {
  transform: translateY(-10px);
}
a.box_topic i {
  display: inline-block;
  font-size: 51px;
  font-size: 3.1875rem;
  color: #004dda;
  border-radius: 50%;
  background-color: #0044c2;
  background-color: rgba(0, 77, 218, 0.05);
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 15px;
}
a.box_topic h3 {
  font-size: 18px;
  font-size: 1.125rem;
}