body{
  background-color: #000;
}

header{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin: 14px 14px 0 14px;
}

header > div:last-of-type{
  text-align: right;
}

header h1{
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

a{
  cursor: pointer;
}

.dashboard-help-container{
  align-self: center;
  justify-self: center;
}

.dashboard-help-button{
  text-align: center;
}

.dashboard-help-button i{
  font-size: 21px;
}

.dashboard-help-button a{
  display: block;
  width: 80px;
  color: #000;
  padding: 12px 24px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #f7b91a;
  border: 1px solid #f7b91a;
  text-decoration: none;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
}

.dashboard-help-button span{
  margin-left: 10px;
}

@media (max-width:500px){
  header{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .dashboard-help-container{
     grid-area: 2 / 1 / 3 / 3; 
  }

  header h1{
    font-size: 22px;
  }
}

/* Dashboard Overlay */

#dashboard-overlay{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#dashboard-overlay-content{
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  background-color: #fff;
  padding: 0;
  border-radius: 6px;
}

#dashboard-overlay-content-inner{
  border: 6px solid #f7b91a;
  border-radius: 5px;
  padding: 20px;
  font-family: "proxima-nova", sans-serif;
  text-align: center;
}

#dashboard-overlay-content-inner h1{
  margin-top: 0;
  font-size: 1.4rem;
}

.dashboard-overlay-button{
  color: #000;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: #f7b91a; 
  border: 1px solid #f7b91a;
  border-radius: 10px;
  padding: 12px 24px;
  text-decoration: none;
}

/* Main Headers */

.header-title{
  display: flex;
  align-items: center;
  margin: 0 34px 24px 34px;
}

.header-divider{
  flex: 1 1 auto;
  vertical-align: middle;
}

.header-divider span{
  border-top: 1px solid #f7b91a;
  display: block;
  margin-top: 0 !important;
}

.header-title h3{
  color: #f5f5f5;
  padding: 0 10px;
  font-family: "proxima-nova", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.4;
}

@media (max-width:500px){
  .header-title h3{
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
  }
}

/* Dashboard Items */
.dashboard-item-container{
  width: 250px;
  height: 250px;
  overflow: hidden;
  position: relative;
  display: block;
  box-sizing: border-box;
  margin: 0 auto 30px auto;

  -webkit-perspective: 900px;
  -moz-perspective: 900px;
  perspective: 900px;

  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.dashboard-item-container:before{
  border-radius: 50%
}

.dashboard-item-front{
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;

  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.dashboard-item-image-wrapper{
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  border: 10px solid    #EFEFEF;
  box-sizing: border-box;
  border-radius: 50%;
}

.dashboard-item-image{
  border-radius: 50% !important;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.dashboard-item-back{
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  display: block;
  height: 100%;
}

.dashboard-item-back-content-container{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f7b91a;

  border-radius: 50%;

  visibility: hidden;

  -webkit-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
  -moz-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
  -ms-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
  -o-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
  transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);

  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-transition: all .35s linear;
  -moz-transition: all .35s linear;
  transition: all .35s linear;
}

.dashboard-item-back-content-container-disabled{
  background-color: #999999 !important;
}

.dashboard-item-back-content{
  visibility: visible;
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dashboard-item-back-content h3{
  margin: 10px 20px;
  color: #232525;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
}

.dashboard-item-back-content a{
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #232525;
}

.dashboard-item-back-content a:hover{
  color: #43a6e9;
}

.dashboard-item-divider{
  margin: 7px auto;
  border-top-style: solid;
  border-top-color: #ffffff;
  width: 50%;
  height: 1px;
  border-top-width: 1px;
}

.dashboard-item-container.dashboard-item-hover .dashboard-item-front{
  -moz-transform: translate3d(0, 300px, 0) rotate3d(1, 0, 0, -90deg);
  -ms-transform: translate3d(0, 300px, 0) rotate3d(1, 0, 0, -90deg);
  -o-transform: translate3d(0, 300px, 0) rotate3d(1, 0, 0, -90deg);
  transform: translate3d(0, 300px, 0) rotate3d(1, 0, 0, -90deg);
}

.dashboard-item-container.dashboard-item-hover .dashboard-item-back-content-container{
  visibility: visible;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;

  -webkit-transform: rotate3d(1, 0, 0, 0);
  -moz-transform: rotate3d(1, 0, 0, 0);
  -ms-transform: rotate3d(1, 0, 0, 0);
  -o-transform: rotate3d(1, 0, 0, 0);
  transform: rotate3d(1, 0, 0, 0);

  -webkit-transition: all .35s linear;
  -moz-transition: all .35s linear;
  transition: all .35s linear;
}

@media (max-width:1060px){
  .dashboard-item-container {
    width: 200px;
    height: 200px;
  }

  .dashboard-item-back-content h3{
    font-size: 24px;
  }
}

@media (max-width:900px){
  .dashboard-item-container {
    width: 150px;
    height: 150px;
  }

  .dashboard-item-back-content h3{
    font-size: 18px;
    font-weight: 500;
  }

  .dashboard-item-back-content a{
    font-size: 18px;
  }
}

@media (max-width:660px){
  .dashboard-item-container {
    width: 200px;
    height: 200px;
  }

  .dashboard-item-back-content h3{
    font-size: 24px;
  }
}

/* Dashboard Items Grid */

#main-dashboard-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  justify-content: space-evenly;
}

@media (max-width:660px){
  #main-dashboard-items {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
}

/* Dashboard Tools */

@font-face {
  font-family: 'Ultimate-Icons';
  src:
    url('fonts/Ultimate-Icons.ttf?1ddi1j') format('truetype'),
    url('fonts/Ultimate-Icons.woff?1ddi1j') format('woff'),
    url('fonts/Ultimate-Icons.svg?1ddi1j#Ultimate-Icons') format('svg');
  font-weight: normal;
  font-style: normal;
}

#dashboard-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 34px 20px 34px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.dashboard-tool-container{
  font-family: "proxima-nova", sans-serif;
  border: 1px solid #5b5e5e;
  height: 100%;
}

.dashboard-tool-inner{
  padding: 20px;
}

.dashboard-tool-link{
  text-decoration: none;
}

.dashboard-tool-top{
  display: flex;
}

.dashboard-tool-top h3{
  font-size: 28px;
  font-weight: 700;
  line-height: 45px;
  color: #e0e0e0;
}

.dashboard-tool-icon{
  flex-shrink: 0;
  margin: 0 20px 20px 0;
  color: #0a0000;
  font-size: 50px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  line-height: 100px !important;
  height: 100px;
  width: 100px;
  text-align: center;
}

@media (max-width:1140px){
  .dashboard-tool-top h3{
    font-size: 24px;
  }
}

@media (max-width:900px){
  #dashboard-tools {
    grid-template-columns: 1fr;
  }
}

@media (max-width:500px){
  .dashboard-tool-top h3{
    margin-top: 0;
    line-height: 30px;
  }
}
/* Dashboard Divider */

.dashboard-tool-divider{
  border-top: 1px solid #f7b91a;
  width: 100%;
  margin: 0 0 6px 0;
}

/* Dashboard Tools */

.dashboard-tool-bottom{
  color: #808285;
  font-size: 16px;
  line-height: 24px;
}

.dashboard-icon-website-badge,
.dashboard-icon-escrow{
  font-family: dashicons;
  font-style: normal;
}

.dashboard-icon-crm{ background: #fc5a0b; }
.dashboard-icon-career-planner{ background: #00c5fd; }
.dashboard-icon-jobs{ background: #fa7c02; }
.dashboard-icon-void{ background: #05fde9; }
.dashboard-icon-career-profile{ background: #fbd103; }
.dashboard-icon-website-badge{ background: #04fb6b; }
.dashboard-icon-escrow{ background: #d9f030; }
.dashboard-icon-blog{ background: #4ce10f; }
.dashboard-icon-reading-speed{ background: #fc5a0b; }
.dashboard-icon-talent-finder{ background: #00c5fd; }
.dashboard-icon-disabled { background: #999999 !important; }

.full-page-divider{
  margin: 0 34px;
  border-top: 1px solid #f7b91a;
}

#dashboard-voiceover-resources{
  position: relative;
  margin-right: 300px;
  margin-left: 300px;
}

.dashboard-voiceover-resources-circle{
  border: 1px solid #f7b91a;
  border-radius: 50%;

  width: calc(80% + 1px);
  height: calc(80% + 1px);
  left: 50%;
  top: 50%;
  z-index: 1;
  position: absolute;

  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.dashboard-voiceover-resources-circle-small{
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;

  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.dashboard-voiceover-resources-icon{
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px !important;
  font-size: 40px;
  color: #000;
  background-color: #f7b91a;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.dashboard-voiceover-resources-icon-disabled{
  background-color: #999999 !important;
}

.dashboard-voiceover-resources-icon:hover{
  color: #fff;
}

.dashboard-voiceover-resources-icon-dashicons{
  font-family: dashicons;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  transition: color .1s ease-in;
}

.dashboard-voiceover-resources-circle-1{
  left: 50%;
}

.dashboard-voiceover-resources-circle-2{
  left: 81%;
  top: 11%;
}

.dashboard-voiceover-resources-circle-3{
  left: 99%;
  top: 41%;
}

.dashboard-voiceover-resources-circle-4{
  left: 93%;
  top: 75%;
}

.dashboard-voiceover-resources-circle-5{
  left: 68%;
  top: 97%;
}

.dashboard-voiceover-resources-circle-6{
  left: 32%;
  top: 97%;
}

.dashboard-voiceover-resources-circle-7{
  left: 7%;
  top: 75%;
}

.dashboard-voiceover-resources-circle-8{
  left: 1%;
  top: 41%;
}

.dashboard-voiceover-resources-circle-9{
  left: 18.5%;
  top: 11%;
}

.dashboard-voiceover-resources-icon:hover{
  animation-duration: 1s;
  animation-name: rubberBand;
}

.dashboard-voiceover-resources-info{
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  text-align: center;
  width: 100%;
}

.dashboard-voiceover-resources-info.active{
  display: block;
}

.dashboard-voiceover-resources-info h3{
  font-family: "proxima-nova", sans-serif;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  line-height: 33.6px;
  margin-bottom: 20px;
}

.dashboard-voiceover-resources-info p{
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  color: #5b5e5e;
  line-height: 24px;
  margin: 0 60px 30px 60px;
  box-sizing: border-box;
}

.dashboard-voiceover-resources-info .dashboard-voiceover-resources-info-button{
  background-color: #f7b91a;
  border: 1px solid #f7b91a;
  border-radius: 10px;
  text-decoration: none;
  color: #0c0c0c;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  padding: 12px 24px;
  transition: all 200ms linear;
}

.dashboard-voiceover-resources-info-button-disabled{
  background-color: #999999 !important;
  border: 1px solid #999999 !important;
}

.dashboard-voiceover-resources-info .dashboard-voiceover-resources-info-button:hover{
  background-color: #000;
  color: #fff;
}

@media (max-width:1099px){
  #dashboard-voiceover-resources{
    height: auto !important;
    margin: 40px;
  }

  .dashboard-voiceover-resources-circle{
    width: 100%;
    height: auto;
    position: relative;
    border: none;
    border-radius: 0;
    left: auto;
    top: auto;
    -webkit-transform: none;
    transform: none;
  }

  .dashboard-voiceover-resources-circle-small{
    text-align: center;
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
  
  .dashboard-voiceover-resources-icon{
    height: 60px !important;
    width: 60px !important;
    line-height: 60px !important;   
  }

  .dashboard-voiceover-resources-info{
    display: block;
    position: relative;
    left: auto; 
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;    
  }

  .dashboard-voiceover-resources-info-button-container{
    margin-bottom: 40px !important;
  }

  .dashboard-voiceover-resources-divider{
    display: block;
    width: 60%;
    text-align: center;
    margin: 30px auto;    
    border-bottom: 1px solid #f7b91a;
  }
}

#dashboard-footer{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-content: space-evenly;
  margin: 20px 34px;
  color: #999;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
}

.dashboard-footer-item a{
  display: flex;
  align-items: center;
  justify-content: center;

  color: #999;
  text-decoration: none;
}

.dashboard-footer-item i{
  font-size: 30px;
  margin-right: 20px;
}

@media (max-width:1000px){
  #dashboard-footer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr); 
    grid-row-gap: 20px;  
  }
}

@media (max-width:600px){
  #dashboard-footer{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(7, 1fr); 
    grid-row-gap: 30px;  
  }

  .dashboard-voiceover-resources-info h3{
    font-size: 22px;
  }
}

@media (max-width:400px){
  #dashboard-voiceover-resources{
    margin: 40px 10px;
  }

  .dashboard-voiceover-resources-info p{
    margin: 0 10px 30px 10px;
  }
}

/* Animation */

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}