.account_layout_upgrade {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.account_layout_upgrade img {
  width: 10rem;
  height: 100%;
  margin-right: 2rem;
}
.account_layout_upgrade .account_layout_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.account_layout_upgrade .account_layout_content h2 {
  font-weight: 600;
}
.account_layout_upgrade .account_layout_content p {
  margin-bottom: 1rem;
}
.account_layout_upgrade .account_layout_content a {
  align-self: flex-start;
  margin-top: 0.5rem !important;
  margin-bottom: 1rem;
}

.account_layout_pay {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.account_layout_pay .account_layout_pay_info {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 0, 0.1);
  padding: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
}
.account_layout_pay .account_layout_pay_info p {
  margin: 0;
  text-align: center;
  line-height: 2rem;
}
.account_layout_pay .account_layout_pay_info p i {
  font-size: 2rem;
  margin-left: 1rem;
  vertical-align: middle;
}
.account_layout_pay .account_layout_pay_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 55rem) {
  .account_layout_pay .account_layout_pay_box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .account_layout_pay .account_layout_pay_box:last-child {
    border-bottom: 0;
  }
}
.account_layout_pay .account_layout_pay_box h2 {
  font-weight: 600;
}
.account_layout_pay .account_layout_pay_box p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.account_layout_pay .account_layout_pay_box a {
  margin-top: 1rem;
}

.layout_form_row.profile_image .profile_image_edit {
  width: 5rem;
  height: 5rem;
  display: block;
}
.layout_form_row.profile_image .profile_image_edit div {
  position: relative;
  height: 100%;
  width: 100%;
}
.layout_form_row.profile_image .profile_image_edit div img {
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  border: 1px solid #ffffff;
  background: #dddddd;
  z-index: 1;
}
.layout_form_row.profile_image .profile_image_edit div .profile_image_edit_icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  border-radius: 100%;
  border: 1px solid #ffffff;
  background: #2196F3;
  opacity: 0;
  align-items: center;
  justify-content: center;
}
.layout_form_row.profile_image .profile_image_edit div .profile_image_edit_icon i {
  color: #fff;
  font-size: 1.5rem;
  margin-top: -0.3rem;
}
.layout_form_row.profile_image .profile_image_edit:hover .profile_image_edit_icon {
  z-index: 3;
  display: flex;
  opacity: 0.9;
}

.djmodal [data-modal=account_profile_editimage] .modal_content_row .imgpreview {
  /* background-image: linear-gradient(45deg, #c0c0c0 25%, transparent 25%), linear-gradient(-45deg, #c0c0c0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #c0c0c0 75%), linear-gradient(-45deg, transparent 75%, #c0c0c0 75%);
   background-size: 20px 20px;
   background-position: 0 0, 0 10px, 10px -10px, -10px 0px;*/
  overflow: hidden;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
}
.djmodal [data-modal=account_profile_editimage] .modal_content_row .imgpreview img {
  /* border:0.5vw solid rgba(0,0,0,0.2);*/
  width: 15rem;
  height: 15rem;
  display: block;
}

.account_pricing_box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  flex: 0 0 50%;
  /*margin-top:1rem; */
  color: #ffffff;
}
.account_pricing_box.full {
  /* margin-top:2rem;*/
  flex: 1;
}
.account_pricing_box.full .box_sub,
.account_pricing_box.full .box_paygo {
  flex: 0 0 calc(25% - 2rem);
}
.account_pricing_box .box_sub,
.account_pricing_box .box_paygo {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex: 0 0 40%;
  max-width: 17rem;
  min-width: 12rem;
  border-radius: 1rem;
  border: 0;
}
.account_pricing_box .box_sub .container,
.account_pricing_box .box_paygo .container {
  position: relative;
  color: #1a1a1a;
  font-weight: 600;
}
.account_pricing_box .box_sub .container::before,
.account_pricing_box .box_paygo .container::before {
  white-space: nowrap;
  content: attr(data-ribbon);
  font-size: 1rem;
  position: absolute;
  letter-spacing: -0.08rem;
  top: -1rem;
  right: -1rem;
  transform: translate(29.29%, -100%) rotate(45deg);
  transform-origin: bottom left;
  padding: 0.6rem 2rem calc(0.6rem + 5px);
  border: 0px solid #ffffff;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) bottom/100% 6px no-repeat #d4af37;
  /* II : clipping */
  clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 6px) calc(100% - 6px), 6px calc(100% - 6px), 0 100%);
  /* III : masking */
  -webkit-mask: linear-gradient(135deg, transparent calc(50% - 4.242px), #fff 0) bottom left, linear-gradient(-135deg, transparent calc(50% - 4.242px), #fff 0) bottom right;
  -webkit-mask-size: 300vmax 300vmax;
  -webkit-mask-composite: destination-in, xor;
  mask-composite: intersect;
  z-index: 99;
}
.account_pricing_box .box_sub .box_title,
.account_pricing_box .box_paygo .box_title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  height: 3rem;
  margin-top: 1rem;
}
.account_pricing_box .box_sub .box_price,
.account_pricing_box .box_paygo .box_price {
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.account_pricing_box .box_sub .box_price span.price,
.account_pricing_box .box_paygo .box_price span.price {
  display: block;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  line-height: 3rem;
}
.account_pricing_box .box_sub .box_price span.clicky,
.account_pricing_box .box_paygo .box_price span.clicky {
  font-size: 1rem;
  color: #f5fcc2;
  background: rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  margin-top: 2.5rem;
  line-height: 3rem;
  font-weight: 800;
}
.account_pricing_box .box_sub .box_price span.upto,
.account_pricing_box .box_paygo .box_price span.upto {
  margin-top: 0.5rem;
  font-style: italic;
}
.account_pricing_box .note {
  margin-top: 3rem;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
}
@media only screen and (max-width: 880px) {
  .account_pricing_box.full .box_sub,
  .account_pricing_box.full .box_paygo {
    flex: 1 1 calc(50% - 4rem);
    max-width: 50%;
    margin: 2rem;
  }
}
@media only screen and (max-width: 640px) {
  .account_pricing_box.full .box_sub,
  .account_pricing_box.full .box_paygo {
    flex: 1;
    max-width: 100%;
    margin: 1rem;
  }
}
.account_pricing_box .box_sub {
  background: #008000;
}
.account_pricing_box .box_sub:hover {
  background: #008000;
}
.account_pricing_box .box_sub:hover span.clicky {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.account_pricing_box .box_sub.kick {
  background: #008000;
}
.account_pricing_box .box_sub.plus {
  background: #3461a5;
}
.account_pricing_box .box_sub.corporate {
  background: #800070;
}
.account_pricing_box .box_sub.enterprise {
  background: #a16822;
}
.account_pricing_box .box_sub.noselect {
  cursor: default;
  opacity: 0.5;
}
.account_pricing_box .box_sub.noselect.selected {
  opacity: 1;
}
.account_pricing_box .box_paygo {
  background: #008b8b;
}
.account_pricing_box .box_paygo:hover {
  /* background:#00aaaa;*/
}
.account_pricing_box .box_paygo:hover span.clicky {
  background: rgba(255, 255, 255, 0.3);
}

.corporate .djmodal .djmodal_title {
  background: #800070 !important;
  color: #ffffff !important;
}

.enterprise .djmodal .djmodal_title {
  background: #a16822 !important;
  color: #ffffff !important;
}

.plus .djmodal .djmodal_title {
  background: #3461a5 !important;
  color: #ffffff !important;
}

.kick .djmodal .djmodal_title {
  background: #008000 !important;
  color: #ffffff !important;
}

/*# sourceMappingURL=modules-account-scss-account.css.map */
