.account-main {
  display: flex;
  flex-direction: row;
}
#box-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 910px;
}
.box-white {
  text-align: center;
  padding-top: 10px;
  border: 1px solid #d6e5f2;
  border-radius: 30px;
  background-color: #f5faff;
  width: 181px;
  height: 186px;
  cursor: pointer;
}
.box-white:hover,
.widget {
  background-color: #fff;
}
#account-content {
  margin-top: -20px;
  margin-left: 50px;
  width: 910px;
}
.widget {
  border-radius: 30px;
  box-shadow: 0 5px 44px 11px rgba(211, 230, 246, 0.43);
  width: 260px;
  height: 400px;
  display: flex;
  flex-direction: column;
}
.review_image {
  margin-right: 20px;
  width: 70px;
  height: 70px;
  margin-left: 10px;
  text-align: center;
  vertical-align: middle;
}
.review_image img {
  margin-top: 5px;
}
.widget-div {
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-left: 3px solid transparent;
  border-top: 1px solid #eaeef5;
  cursor: pointer;
}
.widget-div:hover {
  background-color: #eff8ff;
  border-left: 3px solid #328de6;
}
.widget-div:hover .colorhover {
  color: #328de6;
}
.widget a div i {
  margin-right: 40px;
}
.click-menu-account {
  display: none;
}
@media (max-width: 1200px) {
  .click-menu-account {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 0;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #d6e5f2;
    margin-top: 5px;
    height: 65px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .widget {
    width: 100%;
    border-radius: 0;
    display: none;
  }
  .widget-div {
    border-left: 1px solid #eaeef5;
    border-right: 1px solid #eaeef5;
  }
  .account-main {
    flex-wrap: wrap;
  }
  #account-content {
    width: 100%;
    margin: 15px 0 0;
    overflow-y: scroll;
  }
  #box-flex {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 320px) {
  #box-flex {
    justify-content: center;
  }
}
.loader-mini {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 30px;
  height: 30px;
  -webkit-animation: 2s linear infinite spin;
  animation: 2s linear infinite spin;
  margin-left: 10px;
  margin-top: 15px;
}
#loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 80px;
  height: 80px;
  -webkit-animation: 2s linear infinite spin;
  animation: 2s linear infinite spin;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
