:root {
    --fc-dark-purple: #292960;
    --fc-light-purple: #8282c9;
    --fc-white: #ffffff;
    --fc-dark-grey: #333333;

    --error-primary: #a94442;
}
body {
    color: var(--fc-dark-grey);
}
.squareBox
{
    display: inline-block;
    width: 10%;
    height: 100px;
    padding : 10px;
    margin: 2%;
    overflow:hidden;
    border: 1px solid transparent;
    border-radius: 4px;
}

.numbers
{
    font-weight:900;
    font-size: 3rem;
}
.selected {
    background-color: #f2f2f2;
}

h1 h2 h3 h4 {
    margin: 5px 0;
}
.mt-5 {
    margin-top: 5px;
}
.mb-1 {
    margin-bottom: 1px;
}
.mb-2 {
    margin-bottom: 2px;
}
.mb-3 {
    margin-bottom: 3px;
}
.mb-4 {
    margin-bottom: 4px;
}
.mb-5 {
    margin-bottom: 5px;
}

.p-5 {
    padding: 5px;
}

.w-100 {
    width: 100% !important;
}
.employee_form {
    background-color: #f2f2f2;
    border: 1px solid lightgrey;
    border-radius: 4px;
    padding: 10px;
}
.required {
    color: red !important;
    font-weight: bold !important;
    font-size: large !important;
}
.password-link {
    color: var(--fc-dark-purple);
}
.password-link:hover {
    color: var(--fc-light-purple);
}
.modal {
    padding-right: 0px !important;
}
.eventInfo {
    display: none;
    background-color: black;
    color: white;
    border-radius: 5px;
    font-size: 2.5rem;
    padding: 1rem;
    position: absolute;
    z-index: 1001;
    text-align: center;
    pointer-events: none;
}

.bold
{
    font-weight: bold;
}

.fc-event-container a:hover, .link {
    cursor: pointer;
}

/* Form errors */
.modal-input-error
{
    color: var(--error-primary);
    font-weight: bold;
    display: block;
    padding: 5px 0px;
}

.has-error
{
    box-shadow: 0px 0px 0px 2px var(--error-primary)
}

/* Form errors */

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #397bb5;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 900px) {
    .squareBox {
        width: 25%;
        padding: 1px;
    }
    .col-xs-12 > a {
        width: 100%;
    }
    .modal {
        max-width: calc(100vw);
    }
    .modal-content {
        padding: 10px;
    }
}