/*
  You can add custom CSS rules or import files here.
*/


/* Import the Radzen CSS files */
@import './styles-generated.css';

.cursor-pointer {
    cursor: pointer;
}

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.flex-actual-content {
    height: 367px;
    text-align: center;
    width: 350px;
    flex-basis: 350px;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.flex-dummy-content {
    flex-basis: 350px !important;
    flex-grow: 1 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.spacefiles-flex-wrapper {
    display: flex;
    flex: auto;
    flex-wrap: wrap;
}

.spacefiles-flex-content {
    display: flex;
    flex-grow: 1 !important;
    width: 430px;
    flex-basis: 430px;
    flex-direction: column;
    align-items: center;
    margin: 25px;
}
.spacefiles-flex-dummy-content {
    display: flex;
    flex-grow: 1 !important;
    flex-basis: 430px;
    box-shadow: none !important;
    background-color: transparent !important;
    margin: 25px;
}
