﻿body .account-flex-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-animation: fadeInMiddle 0.75s linear;
  animation: fadeInMiddle 0.75s linear; }

body .account-flex-item-left {
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin: 1em;
  padding: 1em; }

body .account-flex-item-right {
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 10px;
  margin: 1em;
  padding: 2em;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s; }
  body .account-flex-item-right:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    background: white; }

body .account-flex-title {
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  padding: 1em; }

body .account-flex-popup {
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  margin-top: 1em;
  margin-left: 1em; }

body .account-wave-svg {
  position: absolute;
  top: -5%;
  left: -5%;
  /*width: 150%;
  height: auto;*/
  z-index: -10; }

body .nav-pills .account-settings-active {
  background-color: #eeeeee;
  border-radius: 4px; }

body .verification-check {
  font-size: 12px;
  padding: 0; }

@keyframes fadeInMiddle {
  0% {
    opacity: 0;
    transform: scale(0.85); }
  50% {
    opacity: 0; }
  75% {
    opacity: 0.2; }
  100% {
    opacity: 1;
    transform: scale(1); } }
