@media (min-width: 1500px) {
    .container {
     max-width: 1440px;
    }
}

.card {
    margin-bottom: 20px;
}

.avatar-lg {
    padding-left: 60px;
}

.avatar-lg img {
    -webkit-transform: translateX(-55px);
    -moz-transform: translateX(-55px);
    -ms-transform: translateX(-55px);
    -o-transform: translateX(-55px);
    transform: translateX(-55px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.6s ease-in-out 0s;
    box-shadow: 0 3px 1px -2px rgba(255, 255, 255, .2), 0 2px 2px 0 rgba(255, 255, 255, .14), 0 1px 5px 0 rgba(255, 255, 255, .12);
    position: absolute;
}

.avatar-lg.avatar-warning img, img.avatar-large.avatar-warning {
    border: 5px solid #ffc107;
}

.avatar-lg.avatar-warning-close-deadline img, img.avatar-large.avatar-warning-close-deadline {
    border: 5px solid #dc3545;
}

.scale-on-hover:hover {
    transition: all 0.6s ease-in-out 0s;
    -webkit-transform: scale(3) translateX(-8px);
    -moz-transform: scale(3) translateX(-8px);
    -ms-transform: scale(3) translateX(-8px);
    -o-transform: scale(3) translateX(-8px);
    transform: scale(3) translateX(-8px);
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    z-index: 9000;
}

@keyframes fallDown {
    0% {
        transform: scale(0) translateY(0);
    }
    20% {
        transform: scale(1) translateY(0);
    }
    99% {
        transform: scale(1) translateY(100vh);
    }
    100% {
        transform: scale(1) translateY(100vh) translateX(-100vw);
    }
}

.falling {
    animation: 2s ease-in 0s 1 fallDown;
    animation-fill-mode: forwards;
}

#cursor-image-template {
    max-height: 80px;
    max-width: 80px;
    position: fixed;
    z-index: 9000;
}

.list-group-item {
    border-color: #dee2e6
}

.ajax-alert {
    position: fixed !important;
    top: 20px;
    right: 20px;

    width: 300px !important;
    z-index: 10;
}

.progress {
    height: 2rem;
    min-width: 10rem;
}

.progress .progress-bar {
    color: transparent;
}

.progress .progress-bar:hover {
    color: #fff;
}

.button-shadow {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

/* Transition to a bigger shadow on hover */
.button-shadow:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fab-button {
    margin: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding-top: .5rem;

    z-index: 100;
    position: fixed;
    right: 40px;
    bottom: 40px;
    border: none;
    outline: none;

    transition: all 0.3s ease-in-out;
}

.fab-button.open {
    display: block;
    width: 60px;
    height: 60px;
}

.feedback-parent-button {
    z-index: 150;
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 20px;
}

.fab-button.content {
    transition-delay: 0.2s;
}

.fab-button.content.open {
    transition-delay: 0s;
    right: 40px;
    bottom: 103px;
}

.fab-button.bug {
    transition-delay: 0.4s;
}

.fab-button.bug.open {
    right: 105px;
    bottom: 40px;
    transition-delay: 0s;
}

.fab-button:hover {
    width: 66px;
    height: 66px;
}

.fab-button:focus {
    outline: none;
}

.fab-button i {
    font-size: 1.3rem;
    color: white;
}

.user-media {
    min-width: 16rem;
}

.weekend {
    background-color: lightgray;
}

.user-table th {
    min-width: 8rem;
}

.big-drop-down ul {
    max-height: 60vh !important;
    position: relative;
}

.navbar .pending-todo-badge {
    position: absolute;
    right: -2px;
    top: 18px;
}

.keep-whitespaces {
    white-space: pre-wrap;
}

.circle-background {
    border-radius: 50%;
    width: 3em;
    height: 3em;
    padding-top: 0.8em;
    display: inline-block;
    font-weight: bold;
}

.blockquote {
    color: #555;
    font-style: italic;
    padding-left: 20px;
}

.pre {
    font-family: "Fira Mono", "Roboto Mono", Monaco, courier, monospace;
}


.spin {
    animation-name: spin-animation;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin-animation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.progressbar {
    width: 100%;
    text-align: center;
}

.progressbar img {
    width: 50px;
}

#login-modal {
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
}

.info-button {
    cursor: pointer;
}

.rotate {
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}