/* Sidebar */
/* Primary */
/* Accent */
/* Topbar */
/* Submenu */
/* Default MenuItem */
/* Hover MenuItem */
/* Active MenuItem */
/* Dark Default MenuItem */
/* Dark Hover MenuItem */
/* Dark Active MenuItem */
/* Add your variable customizations of layout here */
/* roboto-300 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/MemberServices/javax.faces.resource/fonts/roboto-v20-latin-ext_latin-regular.woff2.xhtml?ln=serenity-layout") format("woff2"), url("/MemberServices/javax.faces.resource/fonts/roboto-v20-latin-ext_latin-regular.woff.xhtml?ln=serenity-layout") format("woff");
  /* Modern Browsers */
}
/* roboto-regular - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("/MemberServices/javax.faces.resource/fonts/roboto-v20-latin-ext_latin-500.woff2.xhtml?ln=serenity-layout") format("woff2"), url("/MemberServices/javax.faces.resource/fonts/roboto-v20-latin-ext_latin-500.woff.xhtml?ln=serenity-layout") format("woff");
  /* Modern Browsers */
}
/* roboto-700 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/MemberServices/javax.faces.resource/fonts/roboto-v20-latin-ext_latin-700.woff2.xhtml?ln=serenity-layout") format("woff2"), url("/MemberServices/javax.faces.resource/fonts/roboto-v20-latin-ext_latin-700.woff.xhtml?ln=serenity-layout") format("woff");
  /* Modern Browsers */
}
h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 3px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid #dbdbdb;
  border-width: 1px 0 0 0;
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

*[hidden] {
  display: none;
}

.card {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #ffffff;
  padding: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.card.card-w-title {
  padding-bottom: 32px;
}
.card .card-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card .card-subtitle {
  color: #757575;
  font-weight: 600;
  margin: -1rem 0 1rem 0;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rippleOn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}
@keyframes rippleOff {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}
.fadeInDown {
  -webkit-animation: fadeInDown 5s;
  /* Safari 4.0 - 8.0 */
  animation: fadeInDown 5s;
}

.fadeOutUp {
  -webkit-animation: fadeOutUp 0.3s;
  /* Safari 4.0 - 8.0 */
  animation: fadeOutUp 0.3s;
}

.exception-body {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.exception-body.error {
  background-image: url("/MemberServices/javax.faces.resource/images/exception/access-bg.jpg.xhtml?ln=serenity-layout");
}
.exception-body.error .exception-panel .exception-code {
  background-color: #FFBA00;
}
.exception-body.error .exception-panel .exception-code img {
  margin-left: -194px;
}
.exception-body.error .exception-panel .exception-icon {
  background-color: #FFBA00;
}
.exception-body.notfound {
  background-image: url("/MemberServices/javax.faces.resource/images/exception/notfound-bg.jpg.xhtml?ln=serenity-layout");
}
.exception-body.notfound .exception-panel .exception-code {
  background-color: #e91e63;
}
.exception-body.notfound .exception-panel .exception-code img {
  margin-left: -206px;
}
.exception-body.notfound .exception-panel .exception-icon {
  background-color: #e91e63;
}
.exception-body.accessdenied {
  background-image: url("/MemberServices/javax.faces.resource/images/exception/access-bg.jpg.xhtml?ln=serenity-layout");
}
.exception-body.accessdenied .exception-panel .exception-code {
  background-color: #ffb300;
}
.exception-body.accessdenied .exception-panel .exception-code img {
  margin-left: -178px;
}
.exception-body.accessdenied .exception-panel .exception-icon {
  background-color: #ffb300;
}
.exception-body .exception-panel {
  width: 550px;
  height: 480px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -275px;
  margin-top: -240px;
  padding: 0;
  text-align: center;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 6px 10px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 6px 10px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 6px 10px 0 rgba(0, 0, 0, 0.14);
}
.exception-body .exception-panel .exception-code {
  height: 240px;
  position: relative;
}
.exception-body .exception-panel .exception-code img {
  position: absolute;
  bottom: 0;
  height: 190px;
  left: 50%;
}
.exception-body .exception-panel .exception-detail {
  height: 240px;
  position: relative;
  padding: 60px 0 0 0;
}
.exception-body .exception-panel .exception-detail .exception-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  display: inline-block;
  z-index: 100;
  position: absolute;
  top: -45px;
  left: 50%;
  margin-left: -45px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.12), 0 0 1px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.12), 0 0 1px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.12), 0 0 1px 0 rgba(0, 0, 0, 0.14);
}
.exception-body .exception-panel .exception-detail .exception-icon i {
  font-size: 45px;
  line-height: inherit;
  color: #ffffff;
}
.exception-body .exception-panel .exception-detail h1 {
  font-size: 15px;
  font-weight: bold;
  margin: 10px 0 8px 0;
}
.exception-body .exception-panel .exception-detail p {
  color: #757575;
  margin: 0 0 60px 0;
}

@media (max-width: 640px) {
  .exception-body .exception-panel {
    left: 0;
    margin-left: 0;
    width: 100%;
  }
  .exception-body.error .exception-panel .exception-code img {
    height: 150px;
    margin-left: -150px;
  }
  .exception-body.notfound .exception-panel .exception-code img {
    height: 150px;
    margin-left: -163px;
  }
  .exception-body.accessdenied .exception-panel .exception-code img {
    height: 150px;
    margin-left: -141px;
  }
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #F5F5F5;
  
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
body .ajax-loader {
  font-size: 32px;
  color: #E91E63;
}

a {
  text-decoration: none;
  color: #012169;
}
a:hover {
  text-decoration: none;
}
.layout-wrapper .layout-main {
 /*  margin-left: 60px; */
  width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  -moz-transition: margin-left 0.3s;
  -o-transition: margin-left 0.3s;
  -webkit-transition: margin-left 0.3s;
  transition: margin-left 0.3s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.layout-wrapper .layout-main .layout-topbar {
  height: 64px;
  background-color: #012169;
  padding: 16px 42px 16px 24px;
  position: fixed;
  /* width: calc(100% - 40px); */
  width: 960px;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1000;
}
.layout-wrapper .layout-main .layout-topbar .topbar-logo {
  display: none;
}
.layout-wrapper .layout-main .layout-topbar .menu-btn {
  display: none;
  color: #e8eaf6;
  float: left;
}
.layout-wrapper .layout-main .layout-topbar .menu-btn i {
  font-size: 32px;
}
.layout-wrapper .layout-main .layout-topbar .topbar-menu-btn {
  display: none;
  color: #e8eaf6;
  float: right;
}
.layout-wrapper .layout-main .layout-topbar .topbar-menu-btn i {
  font-size: 32px;
}
.layout-wrapper .layout-main .layout-topbar .mobile-logo {
  display: none;
  height: 48px;
  margin-top: -8px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  margin: 0;
  -webkit-animation-duration: 0s;
  -moz-animation-duration: 0s;
  animation-duration: 0s;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu:before, .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu:after {
  content: "";
  display: table;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu:after {
  clear: both;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu .topbar-badge {
  width: 16px;
  height: 16px;
  text-align: center;
  background-color: #E91E63;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li {
  float: right;
  position: relative;
  margin-left: 20px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > a {
  color: #e8eaf6;
  position: relative;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > a .topbar-item-name {
  display: none;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > a i {
  font-size: 28px;
  color: #e8eaf6;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > a i:hover {
  color: #c3c9e8;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > a .topbar-badge {
  position: absolute;
  right: -4px;
  top: -20px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item {
  float: left;
  margin-left: 0;
  padding-top: 4px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > a {
  display: inline-block;
  position: relative;
  top: -10px;
  color: #e8eaf6;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > a .profile-image-wrapper {
  display: inline-block;
  vertical-align: middle;
  border: 2px solid transparent;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > a .profile-image-wrapper img {
  width: 36px;
  height: 36px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > a .profile-name {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  margin-top: -4px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > a:hover .profile-image-wrapper {
  border-color: #E91E63;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > ul {
  right: auto;
  left: 5px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > ul:before {
  left: 8px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.search-item input {
  padding: 6px 32px 6px 6px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.search-item i {
  font-size: 1em;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul {
  position: absolute;
  top: 60px;
  right: 5px;
  display: none;
  width: 250px;
  background-color: #ffffff;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
  list-style-type: none;
  margin: 0;
  padding: 8px 0;
  border-top: 4px solid #012169;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a {
  padding: 10px 10px 10px 10px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #212121;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a i {
  color: #757575;
  margin-right: 8px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a img {
  margin-right: 8px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a i, .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a img, .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a span {
  vertical-align: middle;
  display: inline-block;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a .topbar-submenuitem-badge {
  background-color: #E91E63;
  padding: 2px 4px;
  display: block;
  font-size: 12px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #ffffff;
  float: right;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a:hover {
  background-color: #f1f2f7;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul a:hover i {
  color: #212121;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li > ul:before {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 15px solid #012169;
  content: " ";
  position: absolute;
  top: -15px;
  left: 232px;
}
.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.active-topmenuitem > ul {
  display: block;
}
.layout-wrapper .layout-main .layout-breadcrumb {
  background-color: #ffffff;
  -webkit-box-shadow: inset 0 -2px 4px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: inset 0 -2px 4px 0 rgba(0, 0, 0, 0.14);
  box-shadow: inset 0 -2px 4px 0 rgba(0, 0, 0, 0.14);
  min-height: 42px;
  padding-top: 64px;
}
.layout-wrapper .layout-main .layout-breadcrumb:before, .layout-wrapper .layout-main .layout-breadcrumb:after {
  content: "";
  display: table;
}
.layout-wrapper .layout-main .layout-breadcrumb:after {
  clear: both;
}
.layout-wrapper .layout-main .layout-breadcrumb ul {
  margin: 8px 0 0 0;
  padding: 0 0 0 20px;
  list-style: none;
  color: #757575;
  display: inline-block;
}
.layout-wrapper .layout-main .layout-breadcrumb ul li {
  display: inline-block;
  vertical-align: middle;
  color: #757575;
}
.layout-wrapper .layout-main .layout-breadcrumb ul li:nth-child(even) {
  font-size: 20px;
}
.layout-wrapper .layout-main .layout-breadcrumb ul li:first-child(even) {
  color: #012169;
}
.layout-wrapper .layout-main .layout-breadcrumb ul li a {
  color: #757575;
}
.layout-wrapper .layout-main .layout-breadcrumb .layout-breadcrumb-options {
  float: right;
  padding: 0px 20px 0 0;
  height: 100%;
}
.layout-wrapper .layout-main .layout-breadcrumb .layout-breadcrumb-options a {
  color: #757575;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.layout-wrapper .layout-main .layout-breadcrumb .layout-breadcrumb-options a:hover {
  background-color: #e8e8e8;
}
.layout-wrapper .layout-main .layout-breadcrumb .layout-breadcrumb-options a i {
  font-size: 1.25rem;
  line-height: inherit;
}
.layout-wrapper .layout-main .layout-content {
  padding: 0px 17px 14px 17px;
  margin-top: 64px;
  flex: 1 1 0;
}
.layout-wrapper .layout-main .layout-main-mask {
  display: none;
}
.layout-wrapper .layout-main .layout-footer {
  padding: 16px 24px;
  border: 0 none;
  border: 1px solid #dbdbdb;
  background: #ffffff;
}
.layout-wrapper .layout-main .layout-footer img {
  margin-top: 5px;
  width: 100px;
}
.layout-wrapper .layout-main .layout-footer .footer-text-right {
  float: right;
  margin-top: 10px;
}
.layout-wrapper .layout-main .layout-footer .footer-text-right span {
  vertical-align: middle;
}

.layout-wrapper-static .layout-sidebar {
  left: 0;
}
.layout-wrapper-static .layout-sidebar .sidebar-logo .sidebar-anchor {
  display: inline-block;
  background-color: #ffffff;
}
.layout-wrapper-static .layout-sidebar .layout-menu li a i.layout-submenu-toggler {
  display: inline-block;
}
.layout-wrapper-static .layout-sidebar .layout-menu li a .menuitem-badge {
  display: inline-block;
}
.layout-wrapper-static .layout-main {
  margin-left: 240px;
}
.layout-wrapper-static .layout-main .layout-topbar {
  width: calc(100% - 240px);
}

.layout-wrapper-static-restore .layout-sidebar {
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

@media (max-width: 500px) {
	body {
	  font-family: "Roboto", "Helvetica Neue", sans-serif;
	  font-size: 14px;
	  color: #212121;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  padding: 0;
	  margin: 0;
	  min-height: 100%;
	  background-color: #F5F5F5;
	  
	  display: flex;
	  flex-direction: row;
	  
	}
	
  /* .layout-wrapper .layout-sidebar {
    left: -240px;
  }
  .layout-wrapper .layout-sidebar .sidebar-logo .sidebar-anchor {
    display: none !important;
  } */
  .layout-wrapper .layout-main {
    width:100%;
    margin-left: 0;
    left: 0;
    -moz-transition: left 0.3s;
    -o-transition: left 0.3s;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    display:flex;
    flex-direction: column;
  }
  .layout-wrapper .layout-main .layout-topbar {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
  .layout-wrapper .layout-main .layout-topbar:before, .layout-wrapper .layout-main .layout-topbar:after {
    content: "";
    display: table;
  }
  .layout-wrapper .layout-main .layout-topbar:after {
    clear: both;
  }
  .layout-wrapper .layout-main .layout-topbar .menu-btn {
    display: inline-block;
  }
  .layout-wrapper .layout-main .layout-topbar .topbar-menu-btn {
    display: inline-block;
  }
  .layout-wrapper .layout-main .layout-topbar .mobile-logo {
    display: inline;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu {
    display: none;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    text-align: left;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu:before {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #012169;
    content: " ";
    position: absolute;
    top: -15px;
    left: 232px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active {
    position: fixed;
    top: 75px;
    right: 30px;
    width: 250px;
    display: block;
    padding: 8px 0;
    background-color: #ffffff;
    border-top: 4px solid #012169;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li {
    float: none;
    display: block;
    margin: 0;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > a {
    padding: 8px 14px;
    display: block;
    color: #212121;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > a:hover {
    background-color: #e8e8e8;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > a:hover i {
    color: #212121;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > a i {
    color: #757575;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > a .topbar-item-name {
    display: inline-block;
    vertical-align: middle;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > a .topbar-badge {
    position: static;
    float: right;
    margin-top: 4px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > ul {
    position: static;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    padding: 0;
    width: 100%;
    border-top: 0 none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > ul:before {
    display: none;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li > ul a {
    padding-left: 28px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu.topbar-menu-active > li.profile-item img {
    width: 24px;
    height: 24px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu li a {
    font-size: 14px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu li a i {
    font-size: 24px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu li.search-item {
    padding: 8px 14px;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu li.search-item i {
    color: #757575;
  }
  .layout-wrapper.layout-wrapper-active {
    overflow: hidden;
  }
  .layout-wrapper.layout-wrapper-active .layout-sidebar {
    left: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
  }
  .layout-wrapper.layout-wrapper-active .layout-sidebar .layout-menu li.layout-root-menuitem > .layout-menuitem-root-text i {
    display: none;
  }
  .layout-wrapper.layout-wrapper-active .layout-sidebar .layout-menu li a i.layout-submenu-toggler {
    display: inline-block;
  }
  .layout-wrapper.layout-wrapper-active .layout-sidebar .layout-menu li a .menuitem-badge {
    display: inline-block;
  }
  .layout-wrapper.layout-wrapper-active .layout-main {
    position: fixed;
    left: 240px;
    width: calc(100%);
    -webkit-box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
    box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
  }
  .layout-wrapper.layout-wrapper-active .layout-main .layout-topbar {
    -webkit-box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
    box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
  }
  .layout-wrapper.layout-wrapper-active .layout-main .layout-breadcrumb {
    -webkit-box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
    box-shadow: inset 3px 0px 6px 1px rgba(0, 0, 0, 0.3);
  }
  .layout-wrapper.layout-wrapper-active .layout-main .layout-breadcrumb .layout-breadcrumb-options {
    display: none;
  }
  .layout-wrapper.layout-wrapper-active .layout-main-mask {
    z-index: 999998;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #424242;
    display: block;
    opacity: 0.5;
    filter: alpha(opacity=50);
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body.hidden-overflow {
    overflow: hidden;
  }
}

.widget-task-box {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
}
.widget-task-box .task-box-header {
  padding: 8px 14px;
}
.widget-task-box .task-box-header:before, .widget-task-box .task-box-header:after {
  content: "";
  display: table;
}
.widget-task-box .task-box-header:after {
  clear: both;
}
.widget-task-box .task-box-header i {
  float: right;
  color: #ffffff;
}
.widget-task-box .task-box-content {
  background-color: #ffffff;
  padding: 8px 14px;
}
.widget-task-box .task-box-content h3 {
  font-weight: bold;
  font-size: 14px;
  margin: 14px 0 7px 0;
  padding: 0;
}
.widget-task-box .task-box-content p {
  color: #757575;
  margin: 0 0 28px 0;
  padding: 0;
}
.widget-task-box .task-box-footer {
  background-color: #ffffff;
  padding: 8px 14px;
}
.widget-task-box .task-box-footer:before, .widget-task-box .task-box-footer:after {
  content: "";
  display: table;
}
.widget-task-box .task-box-footer:after {
  clear: both;
}
.widget-task-box .task-box-footer img {
  width: 32px;
  float: right;
  margin-left: 4px;
}
.widget-task-box .task-box-footer .task-status {
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  padding: 2px 8px;
  color: #ffffff;
}
.widget-task-box.widget-task-box-1 .task-box-header {
  background-color: #e91e63;
}
.widget-task-box.widget-task-box-1 .task-box-footer .task-status {
  background-color: #e91e63;
}
.widget-task-box.widget-task-box-2 .task-box-header {
  background-color: #ffc107;
}
.widget-task-box.widget-task-box-2 .task-box-footer .task-status {
  background-color: #ffc107;
}
.widget-task-box.widget-task-box-3 .task-box-header {
  background-color: #00bcd4;
}
.widget-task-box.widget-task-box-3 .task-box-footer .task-status {
  background-color: #00bcd4;
}

.widget-overview-box {
  text-align: center;
  color: #ffffff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
}
.widget-overview-box .overview-box-header {
  height: 24px;
}
.widget-overview-box .overview-box-content {
  padding: 8px 14px 14px 14px;
}
.widget-overview-box .overview-box-content .overview-box-icon {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  margin-top: -28px;
}
.widget-overview-box .overview-box-content .overview-box-icon i {
  line-height: inherit;
  font-size: 28px;
}
.widget-overview-box .overview-box-content .overview-box-title {
  font-size: 16px;
}
.widget-overview-box .overview-box-content .overview-box-count {
  font-size: 24px;
}
.widget-overview-box.widget-overview-box-1 .overview-box-header {
  background-color: #f06292;
}
.widget-overview-box.widget-overview-box-1 .overview-box-content {
  background-color: #e91e63;
}
.widget-overview-box.widget-overview-box-1 .overview-box-content .overview-box-icon {
  background-color: #e91e63;
}
.widget-overview-box.widget-overview-box-2 .overview-box-header {
  background-color: #4dd0e1;
}
.widget-overview-box.widget-overview-box-2 .overview-box-content {
  background-color: #00bcd4;
}
.widget-overview-box.widget-overview-box-2 .overview-box-content .overview-box-icon {
  background-color: #00bcd4;
}
.widget-overview-box.widget-overview-box-3 .overview-box-header {
  background-color: #ffd54f;
}
.widget-overview-box.widget-overview-box-3 .overview-box-content {
  background-color: #ffc107;
}
.widget-overview-box.widget-overview-box-3 .overview-box-content .overview-box-icon {
  background-color: #ffc107;
}
.widget-overview-box.widget-overview-box-4 .overview-box-header {
  background-color: #9e9e9e;
}
.widget-overview-box.widget-overview-box-4 .overview-box-content {
  background-color: #616161;
}
.widget-overview-box.widget-overview-box-4 .overview-box-content .overview-box-icon {
  background-color: #616161;
}

.widget-chat .p-panel-content {
  padding: 0 !important;
}
.widget-chat ul {
  padding: 12px;
  margin: 0;
  list-style-type: none;
}
.widget-chat ul li {
  padding: 6px 0;
}
.widget-chat ul li img {
  width: 36px;
  float: left;
}
.widget-chat ul li span {
  padding: 6px 12px;
  float: left;
  display: inline-block;
  margin: 4px 0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.widget-chat ul li.message-from img, .widget-chat ul li.message-from span {
  float: left;
}
.widget-chat ul li.message-from img {
  margin-right: 8px;
}
.widget-chat ul li.message-from span {
  background-color: #e8eaf6;
  color: #000000;
}
.widget-chat ul li.message-own img, .widget-chat ul li.message-own span {
  float: right;
}
.widget-chat ul li.message-own img {
  margin-left: 8px;
}
.widget-chat ul li.message-own span {
  background: #c8e6c9;
  color: #000000;
}
.widget-chat .new-message {
  height: 40px;
  border-top: 1px solid #dce2e7;
  color: #afafc0;
}
.widget-chat .new-message .message-attachment {
  display: inline-block;
  border-right: 1px solid #dce2e7;
  width: 40px;
  line-height: 40px;
  height: 100%;
  text-align: center;
}
.widget-chat .new-message .message-attachment i {
  line-height: inherit;
  font-size: 24px;
}
.widget-chat .new-message .message-input {
  position: relative;
  top: -4px;
  width: calc(100% - 100px);
  display: inline-block;
}
.widget-chat .new-message .message-input input {
  border: 0 none;
  font-size: 14px;
  width: 100%;
  background-color: transparent;
  outline: 0 none;
  color: #757575;
}

.widget-status-bars ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.widget-status-bars ul li {
  padding: 8px 14px;
  position: relative;
}
.widget-status-bars ul li span {
  position: absolute;
  right: 36px;
  top: 8px;
}
.widget-status-bars ul li i {
  position: absolute;
  right: 4px;
  top: 4px;
}
.widget-status-bars .widget-status-bar {
  height: 18px;
  width: 75%;
  background-color: #d8d8d8;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.widget-status-bars .widget-status-bar .status-bar-value {
  height: 100%;
  color: #ffffff;
  text-align: right;
  padding-right: 4px;
  padding-top: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.widget-status-bars .widget-status-bar.widget-status-bar-1 .status-bar-value {
  background-color: #e91e63;
}
.widget-status-bars .widget-status-bar.widget-status-bar-1 ~ i {
  color: #e91e63;
}
.widget-status-bars .widget-status-bar.widget-status-bar-2 .status-bar-value {
  background-color: #00bcd4;
}
.widget-status-bars .widget-status-bar.widget-status-bar-2 ~ i {
  color: #00bcd4;
}
.widget-status-bars .widget-status-bar.widget-status-bar-3 .status-bar-value {
  background-color: #ffc107;
}
.widget-status-bars .widget-status-bar.widget-status-bar-3 ~ i {
  color: #ffc107;
}
.widget-status-bars .widget-status-bar.widget-status-bar-4 .status-bar-value {
  background-color: #cddc39;
}
.widget-status-bars .widget-status-bar.widget-status-bar-4 ~ i {
  color: #cddc39;
}
.widget-status-bars .widget-status-bar.widget-status-bar-5 .status-bar-value {
  background-color: #ff9800;
}
.widget-status-bars .widget-status-bar.widget-status-bar-5 ~ i {
  color: #ff9800;
}

.widget-image-box.card {
  padding: 0;
}
.widget-image-box.card img {
  width: 100%;
}
.widget-image-box.card .image-box-content {
  padding: 16px;
}
.widget-image-box.card .image-box-content h3 {
  font-weight: 700;
  margin-top: 0;
}
.widget-image-box.card .image-box-content .image-box-tag {
  width: 40px;
  text-align: left;
  color: #ffffff;
  background-color: #e91e63;
  padding: 0 8px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.widget-image-box.card .image-box-footer {
  text-align: right;
}

.widget-user-card {
  border: 1px solid #dbdbdb;
  padding: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.widget-user-card .user-card-header {
  height: 100px;
  overflow: hidden;
}
.widget-user-card .user-card-header img {
  width: 100%;
}
.widget-user-card .user-card-content {
  min-height: 340px;
  background-color: #ffffff;
  position: relative;
}
.widget-user-card .user-card-content img {
  position: absolute;
  top: -90px;
  left: 24px;
}
.widget-user-card .user-card-content .p-button {
  position: absolute;
  width: 36px;
  height: 36px;
  top: -18px;
  right: 24px;
}
.widget-user-card .user-card-content .user-card-name {
  font-size: 20px;
  color: #212121;
  position: absolute;
  top: -60px;
  margin-left: 110px;
  font-weight: 700;
  white-space: nowrap;
}
.widget-user-card .user-card-content .user-detail {
  text-align: left;
}
.widget-user-card .user-card-content .user-detail ul {
  padding: 0px 0 32px 0;
  margin: 0;
  list-style-type: none;
}
.widget-user-card .user-card-content .user-detail ul li {
  padding: 16px 24px;
  border-top: 1px solid #dbdbdb;
}
.widget-user-card .user-card-content .user-detail ul li:last-child {
  border-bottom: 1px solid #dbdbdb;
}
.widget-user-card .user-card-content .user-detail ul li i {
  font-size: 24px;
  margin-right: 8px;
  width: 32px;
  vertical-align: middle;
  color: #757575;
}
.widget-user-card .user-card-content .user-detail ul li .project-title {
  font-weight: 700;
  margin-right: 8px;
}
.widget-user-card .user-card-content .user-detail ul li .project-detail {
  color: #757575;
}
.widget-user-card .user-card-content .user-detail ul li .project-progressbar {
  display: inline-block;
  width: 100px;
  background-color: #dbdbdb;
  float: right;
  margin-top: 12px;
}
.widget-user-card .user-card-content .user-detail ul li .project-progressbar .project-progressbar-value {
  background-color: #012169;
  height: 4px;
}

.widget-tasks .task {
  padding: 1rem 0;
}
.widget-tasks .task-name {
  margin-bottom: 0.5rem;
}
.widget-tasks .task-name span {
  font-weight: 600;
}
.widget-tasks .task-progress {
  border-radius: 3px;
  height: 0.5rem;
  background: #dbdbdb;
}
.widget-tasks .task-progress > div {
  border-radius: 3px;
  height: 100%;
}
.widget-tasks .task-1 .task-progress > div {
  background: #64B5F6;
  width: 75%;
}
.widget-tasks .task-2 .task-progress > div {
  background: #A5D6A7;
  width: 60%;
}
.widget-tasks .task-3 .task-progress > div {
  background: #7986CB;
  width: 80%;
}
.widget-tasks .task-4 .task-progress > div {
  background: #9575CD;
  width: 40%;
}
.widget-tasks .task-5 .task-progress > div {
  background: #4DB6AC;
  width: 50%;
}

.widget-pricing-box {
  width: 100%;
  text-align: left;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.widget-pricing-box .pricing-header {
  background-color: #e91e63;
  color: #ffffff;
  padding: 16px;
  text-align: center;
}
.widget-pricing-box .pricing-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 4px;
  border-bottom: 1px solid #ffffff;
}
.widget-pricing-box .pricing-header p {
  color: #ffffff;
  margin: 0;
  padding: 4px 0 0 0;
}
.widget-pricing-box .pricing-content {
  padding: 16px;
  min-height: 350px;
  position: relative;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
}
.widget-pricing-box .pricing-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.widget-pricing-box .pricing-content ul li {
  padding: 8px 0;
}
.widget-pricing-box .pricing-content ul li i {
  color: #4caf50;
  vertical-align: middle;
  margin-right: 6px;
}
.widget-pricing-box .pricing-content button {
  position: absolute;
  min-width: 180px;
  bottom: 20px;
  left: 50%;
  margin-left: -90px;
  padding: 0.5rem 2rem;
  display: block;
  font-weight: 600;
  width: 10rem;
  border-radius: 3px;
  transition: background-color 0.2s;
  border-color: #212121;
  background-color: #212121;
  color: #FFFFFF;
  cursor: pointer;
}
.widget-pricing-box .pricing-content button:focus {
  outline: none;
}
.widget-pricing-box .pricing-content .pricing-fee {
  position: absolute;
  top: -24px;
  right: 14px;
  margin-left: -90px;
  text-align: center;
  font-size: 16px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: #212121;
  color: #ffffff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
}
/* Add your customizations of layout here */
