/*
|------------------------------
| General
|------------------------------
*/

:root {
    --primary: rgba(247, 147, 47, 0.8);
    --primary-dark: rgba(247, 147, 47, 1);
    --navbar-bg: #444648;
    --body-bg: #444648;
    --text-color-dark: #444648;
    --calendar-table-stripped-row: rgba(255, 236, 214, 0.95);
    --companies-table-stripped-row: rgba(252, 243, 232, 1);
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--body-bg);
    font-size: 0.8rem;
    position: relative;
    padding-bottom: 72px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

h2 {
    color: #ffffff;
}

a {
    outline: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary);
}

#app {
    min-height: calc(100vh - 72px);
}

main {
    background: var(--body-bg);
}

.btn:not(.btn-secondary),
.btn:link:not(.btn-secondary),
.btn:visited:not(.btn-secondary),
.btn:hover:not(.btn-secondary),
.btn:active:not(.btn-secondary),
.btn:focus:not(.btn-secondary) {
    color: #ffffff;
    background: var(--primary);
    border-color: transparent;
    border-radius: 4px;
}

.btn:hover:not(.btn-secondary) {
    background: var(--primary-dark);
}

.btn:disabled {
    cursor: not-allowed;
}

.btn-calendar-nav {
    border-radius: 0;
}

.icon-play-arrow-left {
    transform: scale(-1);
}

.icon-arrow-left {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 8px 5px 0;
    border-color: transparent #545454 transparent transparent;
}

.icon-arrow-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #545454;
}

label.required::after {
    color: #dd0000;
    content: "*";
    margin-left: 8px;
    top: 7px;
}

/*
|------------------------------
| Navbar
|------------------------------
*/

.navbar-toggler,
.navbar-toggler:focus {
    border: none;
    outline: none;
}

.navbar-toggler span.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247, 147, 47, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media screen and (max-width: 575.98px) {
    .navbar-brand {
        max-width: 215px;
    }
}

nav.navbar {
    background: var(--navbar-bg);
    font-size: 1rem;
}

.navbar-nav li.nav-item a {
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1300px) {
    .navbar-brand {
        max-width: 200px;
    }

    .navbar-nav li.nav-item a {
        font-size: 0.95rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .navbar-brand {
        max-width: 150px;
    }

    .navbar-nav li.nav-item a {
        font-size: 0.85rem;
    }
}

.navbar-nav li.nav-item::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 86%;
    border-bottom: 2px solid #ffffff;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.navbar-nav li.active::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 86%;
    border-bottom: 2px solid #ffffff;
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .navbar-nav li.nav-item::after,
    .navbar-nav li.active::after {
        display: none;
    }
}

.navbar-nav li.nav-item:hover::after {
    opacity: 1;
}

/*
|------------------------------
| Roombooking
|------------------------------
*/
.roombooking .table tr th{
    min-width: 110px;
}
.roombooking .table-booking p {
    max-width: 100px;
    word-break: break-word
}
@media (min-width: 1200px) {
    .roombooking {
        max-width: 1200px;
    }
}
@media (max-width: 1130px) {
    .roombooking > div{
        flex-direction: column;
    }
}
@media (max-width: 720px) {
    .roombooking > div{
        flex-direction: initial;
    }
}


/*
|------------------------------
| Calendar Table Navbar
|------------------------------
*/
.table-responsive {
    border-radius: 4px;
}

.nav-calendar-flexbox {
    min-width: 0;
}

@media screen and (min-width: 1139px) {
    .nav-calendar-flexbox {
        max-width: 900px;
    }
}

.nav-calendar {
    margin-left: 0;
    margin-right: 0;
    background: #ffffff;
    color: var(--text-color-dark);
    letter-spacing: 0.25px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.nav-calendar > div {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

a.link {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.2s ease-in-out;
}

a.link:hover {
    color: var(--primary-dark);
}

.nav-calendar .navbar-icon {
    display: inline-block;
}

.nav-calendar .navbar-icon a {
    color: var(--primary);
}

.nav-calendar .navbar-icon-text {
    color: var(--primary);
}

.nav-calendar .navbar-icon-text a {
    cursor: pointer;
}

.nav-calendar .navigation-bold {
    font-weight: bold;
}

.nav-calendar .navbar-link {
    color: var(--text-color-dark);
}

#datePickerModal .modal-dialog {
    max-width: 330px;
    margin: 1.75rem auto
}

/*
|------------------------------
| Calendar Table
|------------------------------
*/
.table {
    margin-bottom: 0;
}

.calendar-table {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.calendar-table td a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.calendar-table thead {
    border: none;
    background: var(--calendar-table-stripped-row);
    text-transform: uppercase;
    text-align: center;
}

.calendar-table thead th {
    letter-spacing: 0.25px;
    color: var(--text-color-dark);
    padding: 0.5rem 0;
    border-bottom: none;
    min-width: 130px;
}

.calendar-table tbody {
    background: #ffffff;
}

.calendar-table tbody th[scope=row] {
    width: 100px;
    letter-spacing: 0.25px;
    text-align: center;
    color: var(--text-color-dark);
}

.calendar-table tbody tr:nth-child(even) {
    background: var(--calendar-table-stripped-row);
}

.calendar-table th, .calendar-table td {
    border-right: 1px solid #e3e7eb;
    border-top: none;
    border-bottom: none;
}

.calendar-table td {
    color: #ffffff;
    position: relative;
}
@media screen and (min-width: 1131px){
    .calendar-table td {
        max-width: 110px;
    }
}

.calendar-table th:last-child, .calendar-table td:last-child {
    border-right: none;
}

.calendar-table td.table-booking {
    background: var(--primary);
}

.calendar-table td.table-cleaning {
    background: var(--primary-dark);
}

.calendar-table td.blocking-time {
    background: #de5241;
    opacity: 0.6;
}

.calendar-table td.blocking-time:hover {
    opacity: 1;
}

.calendar-table td.blocking-time svg {
    color: #ffffff;
}

.calendar-table td .td-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.calendar-table-monthly {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.calendar-table-monthly thead {
    border: none;
    background: var(--calendar-table-stripped-row);
    text-align: center;
}

.calendar-table-monthly thead tr th {
    font-size: 0.6rem;
    padding: 6px;
}

.calendar-table-monthly tbody {
    background: #ffffff;
}

.calendar-table-monthly tbody tr td.stripped-column-odd:nth-child(odd),
.calendar-table-monthly tbody tr td.stripped-column-even:nth-child(even) {
    background: var(--calendar-table-stripped-row);
}

.calendar-table-monthly tbody tr td {
    padding: 0;
}

@-webkit-keyframes moving-gradient {
    0% {
        background-position: -250px 0;
    }
    100% {
        background-position: 250px 0;
    }
}

.calendar-table-monthly-loading-overlay {
    background: linear-gradient(to right, #eee 20%, #ddd 50%, #eee 80%);
    background-size: 500px 100px;
    animation-name: moving-gradient;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.calendar-table-monthly tbody tr td.blocking-time {
    background: #de5241 !important;
    position: relative;
}

.calendar-table-monthly tbody tr td.table-booking {
    position: relative;
}

.calendar-table-monthly tbody tr td.blocking-time div,
.calendar-table-monthly tbody tr td.table-booking div {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    border: 0;
    right: 0;
    left: 0
}

.calendar-table-monthly tbody tr td.table-booking {
    background: var(--primary) !important;
}

#roomBookingInfo table.table td {
    border-top: 0;
}

td .event-type-title {
    font-weight: bold;
    margin-bottom: 0;
}

td.store-booking svg {
    color: #20b977;
}

td a.booking-icons {
    display: inline-block;
    color: #ffffff;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    transition: all 0.2s ease-in-out;
}

td a.booking-icons:hover {
    color: #cccccc;
}

td.middle {
    vertical-align: middle;
}

/*
|------------------------------
| Small Calendar in Sidebar
|------------------------------
*/
@media screen and (min-width: 1131px) {
    .calendar-sidebar {
        max-width: 300px;
        margin-left: 0.5rem !important;
    }
    .calendar-sidebar .calendar__date {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
    .calendar-sidebar .calendar__date > * {
        width: 25px;
        height: 25px;
    }
}


.calendar-sidebar > div {
    box-shadow: 0 10px 20px 0 rgba(43, 45, 46, 0.4);
}

.small-calendar-wrapper {
    background: #ffffff;
    border-radius: 4px;
    padding: 1rem 1rem 0 1rem;
}

@media screen and (max-width: 1130px) {
    .small-calendar-wrapper {
        display: none;
    }
}

.calendar {
    max-width: 265px;
    margin: 0 auto;
}

.calendar select.custom-select {
    border: none;
    outline: none;
    background: rgba(148, 145, 137, 0.2) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f7932f' class='bi bi-chevron-down'    viewBox='0 0 16 16'> <path fill-rule= 'evenodd' d= 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' /> </svg> ") no-repeat right 0.75rem center / 13px 15px;
}

.calendar__header {
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    color: #ffffff;
    background: #949189;
    box-sizing: border-box;
    border-radius: 4px;
}

.calendar__header a {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.calendar__header a:hover {
    color: var(--primary-dark);
}

.calendar__header h3 {
    margin: 0;
    font-size: large;
    font-weight: 500;
}

.calendar__date {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25px, 1fr));
    grid-gap: 5px;
    box-sizing: border-box;
}

.calendar__date a {
    text-decoration: none;
}

.calendar__day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    font-weight: 600;
    color: #262626;
}

.calendar__day:nth-child(7) {
    color: var(--primary);
}

.calendar__number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    color: #262626;
}

.calendar__date a:nth-child(7n) > div {
    color: var(--primary);
    font-weight: 700;
}

.calendar__date a > div.calendar__number--today {
    background-color: #b7bfc7;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.calendar__date a > div.calendar__number--current,
.calendar__date a div.calendar__number:hover {
    background-color: var(--primary);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.custom-card-header {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    background: #ffffff;
    border: none;
    margin-top: 0.3rem;
}

.custom-card-header::after {
    content: "";
    display: block;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-bottom: 2px solid rgb(227, 231, 235);
}

.custom-card-body {
    padding-bottom: 0.3rem;
}

.custom-card-body li {
    border: none;
}

.custom-card-body p {
    color: var(--text-color-dark);
}

.custom-card-body li:not(:last-child)::after {
    content: "";
    display: block;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-bottom: 2px solid rgb(227, 231, 235);
}

.custom-card-body a {
    width: 100%;
    font-weight: bold;
}

.custom-card-body svg {
    float: right;
}

.custom-card-header-login {
    text-transform: none;
    font-weight: initial;
}

.custom-card-header-login > b {
    color: var(--primary-dark);
}

.guest-card-header {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    margin-top: 0.3rem;
}

.guest-card-body label {
    color: var(--text-color-dark);
}

.guest-card-body .checkbox-container:hover {
    cursor: pointer;
}

.guest-card-body .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.guest-card-body .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 15px;
    width: 15px;
    border: 1px solid var(--text-color-dark);
}

/* On mouse-over, add a grey background color */
.guest-card-body .checkbox-container:hover input ~ .checkmark {
    cursor: pointer;
}

.guest-card-body .checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.guest-card-body .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.guest-card-body .checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.guest-card-body .checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.guest-card-body .btn {
    padding: 0.375rem 2rem;
}

/*
|------------------------------
| Downloadcenter Table
|------------------------------
*/
.downloadcenter-table {
    border-radius: 4px;
}

.downloadcenter-table th {
    vertical-align: middle;
}

.downloadcenter-table td {
    color: #222222;
    vertical-align: middle;
}

.downloadcenter-table td a {
    display: inline-block;
}

td a.file-edit-icons {
    display: inline-block;
    color: #444444;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    transition: all 0.2s ease-in-out;
}

td a.file-edit-icons:hover {
    color: #222222;
}

/*
|------------------------------
| Janitor Form
|------------------------------
*/
.janitor-request-wrapper {
    background: #ffffff;
    padding: 2rem 1rem;
    box-shadow: 0 10px 20px 0 rgba(43, 45, 46, 0.4);
    border-radius: 4px;
}

.form-check-inline input,
.form-check-inline label {
    cursor: pointer;
}

.form-error {
    color: #dc3545;
}


/*
|------------------------------
| Companies Page
|------------------------------
*/
div.input-group-prepend {
    border-radius: 18px;
}

div.input-group-prepend ~ input {
    border-left: none;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

div.input-group-prepend ~ input:focus {
    box-shadow: none;
}

#search {
    background: #ffffff;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    border-right: none;
}

.companies-table table {
    background: #ffffff;
    border-radius: 4px;
}

.companies-table thead {
    border: none;
    background: #ffdfbe;
    color: var(--text-color-dark);
    text-transform: uppercase;
}

.companies-table tbody tr:hover {
    background: var(--companies-table-stripped-row);
}

.companies-table tbody tr:nth-child(even),
.companies-table tbody tr:nth-child(even) td {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
    background: var(--companies-table-stripped-row);
}

.companies-table td:last-child {
    vertical-align: middle;
}

.companies-table td a.link {
    font-weight: bold;
}

.companies-table div.details-card-body {
    border: none;
    background: transparent;
}

/*
|------------------------------
| Industries Page and FaqPage
|------------------------------
*/
.light-arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: transparent;
    border-right: 1px solid var(--primary);
    border-top: 1px solid var(--primary);
    transition: all 0.2s ease-in-out;
}

.industry-content table th {
    color: #ffffff;
    border-top: none;
    font-size: 20px;
    letter-spacing: 1px;
}

.industry-content table td {
    vertical-align: middle;
    padding: 0.8rem;
}

.industry-content td a {
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.industry-content td a span {
    color: #ffffff;
}

.industry-content td a:hover .light-arrow-right {
    transform: translateX(3px) rotate(45deg);
}

.industry-content table td .light-arrow-right {
    margin-top: 0.4rem;
    float: right;
}

.industry-content,
.industry-details {
    padding-right: 1rem;
    overflow: auto;
    max-height: 70vh;
}
.industry-details--mobile {
    display: none;
    letter-spacing: initial !important;
    margin-top: 22px;
}
.industry-details--mobile a {
    text-transform: none !important;
    letter-spacing: initial !important;
}
.industry-details--mobile h5,
.industry-details--mobile .card-text,
.industry-details--mobile .card-title {
    color: #222222 !important;
}

@media screen and (max-width: 767px){
    .industry-content,
    .industry-details {
        max-height: initial;
    }
    .industry-details--desktop {
        display: none;
    }
    .industry-details--mobile {
        display: block;
    }
    .industry-details--faq {
        padding: 0;
        width: calc(100% + 1.6rem);
        margin: 15px 0 3px -.8rem;
    }
}

.industry-content::-webkit-scrollbar,
.industry-details::-webkit-scrollbar {
    width: 8px;
}

.industry-content::-webkit-scrollbar-track,
.industry-details::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

.industry-content::-webkit-scrollbar-thumb,
.industry-details::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.industry-details .card-title {
    background: var(--calendar-table-stripped-row);
    word-wrap: break-word;
    padding: 1.25rem;
}

/*
|------------------------------
| Vacancy Page Table
|------------------------------
*/

.vacancy-page-table {
    border-radius: 4px;
    max-width: 753px;
}

.vacancy-page-table thead th {
    padding-left: 1rem;
    text-align: left;
    min-width: unset;
}

.vacancy-page-table tbody th[scope=row] {
    width: 40px;
    vertical-align: middle;
}

.vacancy-page-table td {
    color: #222222;
    vertical-align: middle;
}

.vacancy-page-table .room-label {
    width: 140px;
}

.vacancy-page-inline-data-table tbody {
    background: transparent !important;
}

.vacancy-page-inline-data-table th,
.vacancy-page-inline-data-table td {
    padding: 0;
}

.vacancy-page-inline-data-table tbody th[scope=row] {
    vertical-align: top;
    width: 140px;
    text-align: left;
}

.vacancy-page-inline-data-table tbody th {
    border: none;
}

.vacancy-page-inline-data-table tbody tr:nth-child(2n) {
    background: transparent;
}

/*
|------------------------------
| Legal Page
|------------------------------
*/
.legal-page {
    color: #ffffff;
}

.legal-page h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/*
|------------------------------
| Legal Page
|------------------------------
*/
.data-protection-page {
    color: #ffffff;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-spin-clockwise,
.la-ball-spin-clockwise > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-spin-clockwise {
    display: none;
    font-size: 0;
    color: #fff;
}

.la-ball-spin-clockwise.la-dark {
    color: #333;
}

.la-ball-spin-clockwise > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-spin-clockwise {
    width: 32px;
    height: 32px;
}

.la-ball-spin-clockwise > div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    border-radius: 100%;
    -webkit-animation: ball-spin-clockwise 1s infinite ease-in-out;
    -moz-animation: ball-spin-clockwise 1s infinite ease-in-out;
    -o-animation: ball-spin-clockwise 1s infinite ease-in-out;
    animation: ball-spin-clockwise 1s infinite ease-in-out;
}

.la-ball-spin-clockwise > div:nth-child(1) {
    top: 5%;
    left: 50%;
    -webkit-animation-delay: -.875s;
    -moz-animation-delay: -.875s;
    -o-animation-delay: -.875s;
    animation-delay: -.875s;
}

.la-ball-spin-clockwise > div:nth-child(2) {
    top: 18.1801948466%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.75s;
    -moz-animation-delay: -.75s;
    -o-animation-delay: -.75s;
    animation-delay: -.75s;
}

.la-ball-spin-clockwise > div:nth-child(3) {
    top: 50%;
    left: 95%;
    -webkit-animation-delay: -.625s;
    -moz-animation-delay: -.625s;
    -o-animation-delay: -.625s;
    animation-delay: -.625s;
}

.la-ball-spin-clockwise > div:nth-child(4) {
    top: 81.8198051534%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.5s;
    -moz-animation-delay: -.5s;
    -o-animation-delay: -.5s;
    animation-delay: -.5s;
}

.la-ball-spin-clockwise > div:nth-child(5) {
    top: 94.9999999966%;
    left: 50.0000000005%;
    -webkit-animation-delay: -.375s;
    -moz-animation-delay: -.375s;
    -o-animation-delay: -.375s;
    animation-delay: -.375s;
}

.la-ball-spin-clockwise > div:nth-child(6) {
    top: 81.8198046966%;
    left: 18.1801949248%;
    -webkit-animation-delay: -.25s;
    -moz-animation-delay: -.25s;
    -o-animation-delay: -.25s;
    animation-delay: -.25s;
}

.la-ball-spin-clockwise > div:nth-child(7) {
    top: 49.9999750815%;
    left: 5.0000051215%;
    -webkit-animation-delay: -.125s;
    -moz-animation-delay: -.125s;
    -o-animation-delay: -.125s;
    animation-delay: -.125s;
}

.la-ball-spin-clockwise > div:nth-child(8) {
    top: 18.179464974%;
    left: 18.1803700518%;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

.la-ball-spin-clockwise.la-sm {
    width: 16px;
    height: 16px;
}

.la-ball-spin-clockwise.la-sm > div {
    width: 4px;
    height: 4px;
    margin-top: -2px;
    margin-left: -2px;
}

.la-ball-spin-clockwise.la-2x {
    width: 64px;
    height: 64px;
}

.la-ball-spin-clockwise.la-2x > div {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
}

.la-ball-spin-clockwise.la-3x {
    width: 96px;
    height: 96px;
}

.la-ball-spin-clockwise.la-3x > div {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-spin-clockwise {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes ball-spin-clockwise {
    0%,
    100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes ball-spin-clockwise {
    0%,
    100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes ball-spin-clockwise {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}
