/***************************
         GENERAL
***************************/
body {
    background: url(../../assets/img/lines.svg),linear-gradient(135deg,#1e73be,#0073b3);
    /*background: #1e73be;*/
    padding: 80px 0;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/***************************
         HEADER
***************************/

#edit-mode-warning {
    position: fixed;
    top: -5rem;
    left: 0;
    right: 0;
    background-color: #fff;
    color: #000;
    vertical-align: center;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 5px 4px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: 0.4s top;
}

#edit-mode-warning p {
    margin-bottom: 0;
}

.editing {
  animation: shake 0.82s linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.site-logo-wrapper {
    text-align: center;
    margin: 0 auto 80px;
}

.site-logo {
    margin-left: 20px; /* Logo alignment fix */
}

.construction {
    text-align: center;
}

.construction i {
    font-size: 4rem;
}

.add-resource:not(.resource) {
    border: 2px dashed #ddd;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.resource.add-resource {
    border-style: dashed;
}


/***************************
         STATUS BAR
***************************/
.card.status-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.6rem;
    margin-bottom: 2rem;
    align-items: center;
}

.status-bar-message {
    margin-bottom: 0;
}

.status-bar-actions {
    display: flex;
}

.status-bar-actions a {
    padding: 0.2rem 0.5rem;
}

.status-bar-actions i {
    font-size: 2rem;
}


/***************************
         OVERVIEW
***************************/
.overview {
    margin-bottom: 2rem;
}


/***************************
         FOOTER
***************************/
.footer {
    color: #fff;
    margin-bottom: 4rem;
}

.footer p {
    margin-bottom: 0;
    text-align: center;
}


/***************************
         SOCIAL
***************************/
.social {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

a.social-link {
    margin: 0.3rem;
    color: #dedede;
    transition: color 0.4s;
    font-size: 3.2rem;
}

a.social-link:hover {
    color: #fff;
}

a.social-link i {
    padding: 0.4rem;
}

/***************************
         WIDGETS
***************************/
.widget {
    padding: 0 !important;
}

.widget-title {
    background: #ddd;
    border-top-left-radius: .625rem;
    border-top-right-radius: .625rem;
    text-align: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0;
}

.widget-body {
    padding: 0.8rem 1.6rem;
    height: 10rem;
    overflow-y: auto;
}

.widget a {
    display: block;
}

.widget-launch {
    padding: 10px 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    transition: 0.4s border;
}

.widget-launch:hover {
    border: 2px solid #1e73be;
}

.widget-body .progress-bar {
    background-color: #2673BB;
}

.widget-body .progress {
    margin-bottom: 1.4rem;
    border-radius: .3rem;
}

.trainings-overdue {
    text-align: center;
    margin-bottom: 0;
}

/***************************
         RESOURCES
***************************/
.card {
    padding: 1.6rem;
    margin-bottom: 30px;
}


.resources {
    padding-top: 0;
}

.resources-section {
    margin-top: 2rem;
}

.resource {
    display: block;
    margin-top: 10px;
    padding: 10px 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.4s all;
    text-align: center;
}

.resource:hover {
    border: 2px solid #1e73be;
}

.resources-icon {
    display: block;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.resources-title {
    text-align: center;
}





/***************************
         LOGIN
***************************/
.login-wrapper {
    padding: 30px;
    background: #fff;
    border-radius: 7px;
}

.login-form {
    margin-top: 30px;
}

#login-btn {
    width: 150px;
    margin-top: 20px;
    text-transform: uppercase;
}

.logout-wrapper {
    margin-top: 40px;
    text-align: center;
}