@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap");
#recent-activity-container, #mobile-users-container, #new-members-container, #daily-traffic-container, #social-stats-container, #traffic-container {
  border-bottom: 1px solid #dfdfdf;
}

#social-stats-container, #traffic-container {
  grid-column: 1/-1;
}

@media screen and (min-width: 1024px) {
  #new-members-container, #daily-traffic-container {
    border-right: 1px solid #dfdfdf;
  }
}

#timezone-select, #message-user-message, #message-user-search, #dashboard-search {
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  padding-left: 10px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #666666;
}

#message-user-message::placeholder, #message-user-search::placeholder, #dashboard-search::placeholder {
  font-weight: 300;
  color: #bababa;
}

#settings-option-btns-save, #settings-option-btns-cancel, #message-user-submit-btn {
  height: 40px;
  text-transform: uppercase;
  color: white;
  border-radius: 6px;
}

/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

#body-container {
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: "header" "main-nav" "main-content";
}
@media screen and (min-width: 1024px) {
  #body-container {
    grid-template-columns: 50px auto;
    grid-template-areas: "header header" "main-nav main-content";
  }
}
@media screen and (min-width: 1024px) {
  #body-container {
    grid-template-columns: 50px auto;
    grid-template-areas: "header header" "main-nav main-content";
  }
}

header {
  grid-area: header;
}

#main-nav {
  grid-area: main-nav;
}

main {
  grid-area: main-content;
}

.hide {
  display: none;
}

header {
  display: flex;
  align-items: center;
  height: 70px;
  background-color: #7477bf;
  padding-left: 20px;
}
@media screen and (min-width: 1024px) {
  header {
    height: 50px;
    flex-direction: row;
  }
}

#site-name {
  font-size: 1.5rem;
  font-weight: 100;
  color: #fff;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  #site-name {
    font-size: 1.1rem;
    font-weight: 100;
    color: #fff;
  }
}
#site-name span {
  font-weight: 500;
}
#site-name sup {
  font-size: 0.3rem;
  font-weight: 100;
}

#alert-icon {
  height: 20px;
  width: auto;
}
@media screen and (min-width: 768px) {
  #alert-icon {
    height: 60%;
  }
}
#alert-icon:hover {
  animation: alert-bell-shake 0.5s forwards;
}
#alert-icon-container {
  position: relative;
  height: 40%;
  border-right: 2px solid #5d61bf;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #alert-icon-container {
    height: 60%;
  }
}
#alert-icon-notify {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0;
  right: 20px;
  background-color: #81c98f;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  #alert-icon-notify {
    top: 2px;
    right: 20px;
  }
}

@keyframes alert-bell-shake {
  10% {
    transform: rotate(20deg);
  }
  30% {
    transform: rotate(-40deg);
  }
  50% {
    transform: rotate(40deg);
  }
  70% {
    transform: rotate(-40deg);
  }
  90% {
    transform: rotate(40deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#current-user-container {
  height: 40%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  #current-user-container {
    height: 60%;
  }
}
#current-user-img {
  height: 35px;
  width: auto;
  border-radius: 50%;
  vertical-align: middle;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  #current-user-img {
    height: 30px;
  }
}
#current-user-name {
  display: none;
  vertical-align: middle;
  font-size: 0.8rem;
  font-weight: 300;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  #current-user-name {
    display: inline-block;
  }
}

main {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(min-content, max-content);
}
@media screen and (min-width: 1024px) {
  main {
    grid-template-columns: 1fr 1fr;
  }
}

#primary-nav {
  background-color: #4d4c72;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  #primary-nav {
    flex-direction: column;
    justify-content: flex-start;
  }
}
#primary-nav-selected-border {
  position: absolute;
  height: 2px;
  width: 40px;
  bottom: 0;
  background-color: #81c98f;
  border-radius: 0 6px 6px 0;
}
@media screen and (min-width: 1024px) {
  #primary-nav-selected-border {
    height: 40px;
    width: 2px;
    left: 0;
  }
}

.primary-nav-img-container {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 15px 0;
  position: relative;
}
.primary-nav-img-container img {
  height: 40px;
  width: auto;
  padding: 10px 0;
}

#secondary-nav-container {
  display: flex;
  flex-direction: column;
  background-color: #fbfbfb;
  grid-column: 1/-1;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  #secondary-nav-container {
    flex-direction: row;
    height: 50px;
    padding: 0;
  }
}

#secondary-nav-tab {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  #secondary-nav-tab {
    background-color: #fff;
  }
}
#secondary-nav-tab-text {
  font-size: 1rem;
  font-weight: 400;
  color: #6e6d6d;
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  #secondary-nav-tab-text {
    padding: 0 20px;
  }
}

#search-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #search-bar-container {
    justify-content: flex-end;
    border-left: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding-top: 0;
  }
}

#dashboard-search {
  width: 100%;
  height: 40px;
  margin: 0 20px;
}
@media screen and (min-width: 1024px) {
  #dashboard-search {
    width: 250px;
    margin-left: 0;
  }
}
#search-bar-icon {
  height: 15px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

#alert-banner-container {
  background-color: #7477bf;
  border-radius: 6px;
  margin: 20px;
  grid-column: 1/-1;
  position: relative;
}
#alert-banner-container img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  height: 15px;
}

@keyframes alert-banner-close {
  0% {
    height: 36px;
  }
  50% {
    height: 0;
    margin: 20px;
  }
  100% {
    height: 0;
    margin: 0;
  }
}
#alert-banner-title {
  display: inline-block;
  font-weight: 400;
  padding-right: 10px;
}
#alert-banner-message {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1rem;
  padding: 10px 50px 10px 10px;
}

.chart-header {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  text-transform: uppercase;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .chart-header {
    font-size: 0.8rem;
  }
}

.card-container {
  max-width: 100vw;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .card-container {
    max-width: initial;
  }
}

.chart-container {
  position: relative;
}

#traffic-header-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #traffic-header-container {
    flex-direction: row;
  }
}
#traffic-header-container ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  #traffic-header-container ul {
    padding-top: 0;
  }
}
#traffic-header-container ul li {
  display: inline-block;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  color: #8f8f8f;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  #traffic-header-container ul li {
    font-size: 0.7rem;
  }
}

#traffic-selector-active {
  color: #fff !important;
  background-color: #81c98f;
  border-radius: 50px;
}

#social-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  #social-cards-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.social-card {
  background-color: #fbfbfb;
  border: 1px solid #e7e8e7;
  border-radius: 6px;
  height: 80px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.social-card-logo-container {
  width: 50px;
  height: 50px;
  background-color: #7477bf;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.social-card-info-container {
  padding-left: 20px;
}
.social-card-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #7477bf;
  padding-bottom: 5px;
}
.social-card-engagements {
  font-size: 2rem;
  font-weight: 100;
  color: #666666;
}

.social-logo {
  fill: #fff;
}

#twitter-logo {
  width: 50%;
  padding-top: 5px;
}

#facebook-logo {
  width: 60%;
}

#google-plus-logo {
  width: 45%;
}

.new-member {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
  padding: 20px 0;
}
.new-member:last-child {
  border: none;
  padding-bottom: 0;
}
.new-member-profile-picture {
  height: 40px;
  border-radius: 50%;
}
.new-member-info {
  padding: 0 5px 0 10px;
  flex: 1;
}
.new-member-name {
  font-size: 0.8rem;
  font-weight: 400;
  color: #666666;
  padding-bottom: 5px;
}
.new-member-email {
  font-size: 0.7rem;
  font-weight: 300;
  color: #7477bf;
}
.new-member-sign-up-date {
  font-size: 0.7rem;
  font-weight: 300;
  color: #666666;
}

.recent-activity {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
  padding: 20px 0;
}
.recent-activity:last-child {
  border: none;
  padding-bottom: 0;
}
.recent-activity-info {
  padding: 0 10px;
  flex: 1;
}
.recent-activity-description {
  font-size: 0.8rem;
  font-weight: 300;
  color: #666666;
  line-height: 1rem;
  padding-bottom: 5px;
}
.recent-activity-time {
  font-size: 0.7rem;
  font-weight: 300;
  color: #666666;
}
.recent-activity-right-arrow-icon {
  height: 20px;
  width: auto;
}

.member-profile-picture {
  height: 40px;
  border-radius: 50%;
}

#message-user-container {
  border-bottom: 1px solid #dfdfdf;
}
@media screen and (min-width: 1024px) {
  #message-user-container {
    border-bottom: none;
    border-right: 1px solid #dfdfdf;
  }
}
#message-user-search {
  width: 100%;
  height: 40px;
  margin-top: 20px;
  background-color: #fbfbfb;
}
#message-user-message {
  width: 100%;
  resize: none;
  margin-top: 10px;
  padding-top: 10px;
  background-color: #fbfbfb;
}
#message-user-submit-btn {
  width: 100%;
  background-color: #7477bf;
  margin-top: 7px;
}

.on-off-switch {
  width: 80px;
  height: 30px;
  border: 2px solid #dfdfdf;
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #7477bf;
}
.on-off-switch-container {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 30px;
  align-items: center;
  padding-top: 20px;
}
.on-off-switch-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #666666;
  line-height: 1rem;
}
.on-off-switch-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: -2px;
  left: -2px;
  width: 80px;
  height: 30px;
  padding: 0;
  margin: 0;
  transition: translate 0.5s;
  z-index: 100;
}
.on-off-switch-checkbox:checked + .on-off-switch-switch {
  transform: translateX(45px);
}
.on-off-switch-text {
  position: absolute;
  top: 8px;
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
}
.on-off-switch-text-on {
  left: 8px;
}
.on-off-switch-text-off {
  right: 8px;
  display: none;
}
.on-off-switch-switch {
  margin: 0 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #dfdfdf;
  transition: transform 0.5s;
}

.select-container {
  position: relative;
}

.select-down-arrow {
  position: absolute;
  width: 20px;
  height: auto;
  top: 39px;
  right: 10px;
}

#timezone-select {
  width: 100%;
  height: 40px;
  margin-top: 30px;
  color: #bababa;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#settings-option-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}
#settings-option-btns-save {
  background-color: #7477bf;
}
#settings-option-btns-cancel {
  background-color: #b2b2b2;
}

.alert {
  position: fixed;
  top: 20px;
  left: 50vw;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 700px;
  max-height: 100px;
  border-radius: 6px;
}
.alert-success {
  background-color: #5bd44e;
}
.alert-error {
  background-color: #e65151;
}
.alert-title {
  padding: 10px 45px 0 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.alert-message {
  padding: 5px 45px 5px 10px;
  font-size: 0.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1rem;
  text-align: center;
}
.alert-close-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: auto;
  height: 20px;
}

#notifications {
  position: fixed;
  width: 90%;
  max-height: 70%;
  top: 80px;
  right: 50%;
  transform: translateX(50%);
  overflow: scroll;
  background-color: #81c98f;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  #notifications {
    width: 300px;
    max-height: 500px;
    right: 0;
    transform: translateX(-32%);
  }
}
@media screen and (min-width: 1024px) {
  #notifications {
    top: 60px;
    right: 20px;
    transform: translateX(-50%);
  }
}

.notification {
  padding: 20px;
  border-bottom: 1px solid #fff;
}
.notification:last-child {
  border-bottom: none;
}
.notification-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding-bottom: 5px;
}
.notification-message {
  font-size: 0.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1rem;
}

/*# sourceMappingURL=styles.css.map */
