.site-container {
    position: relative;
    min-height: 100vh;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

.hero-div {
    background-color: rgba(255, 255, 255, 0.3);
}

.card {
    margin: 15px 0px 15px 0px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.user-div {
    background-color: rgb(55, 55, 140);
    color: white;
}

.user-div td,
.user-div th {
    color: white;
}

body {
    background: rgb(136, 145, 185);
    background: linear-gradient(0deg, rgb(0, 16, 96) 0%, rgba(255, 255, 255, 1) 100%);
}

table tr td,
table tr th {
    background-color: rgba(255, 255, 255, 0.0) !important;
}

table tr th {
/*    font-size: larger;*/
}

.page-link,
.img-btn {
    cursor: pointer;
}

.large-icon-div {
    opacity: 0.6;
    width: 350px;
    height: 350px;
    transition: opacity 0.5s ease;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    border-radius: 15%;
    /* mask-image: url('/public/icons/puzzle-piece-solid.svg');
    mask-border-repeat: no-repeat;
    mask-size: 100%;
    background-size: cover; */
}

.rotate-45 {
    transform: rotate(45deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-135 {
    transform: rotate(135deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-270 {
    transform: rotate(270deg);
}

.rotate-315 {
    transform: rotate(315deg);
}

.large-icon-div:hover .large-icon-label {
    transition: opacity 0.5s ease;
    transition: color 0.5s ease;
}

/* Darken the background color on hover */
.large-icon-div:hover {
    opacity: 100%;
}

span.btn {
    cursor: default;
}

.loader {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite;
}

.loader::after {
    inset: 8px;
    transform: rotate3d(90, 90, 0, 180deg);
    border-color: #FF3D00;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    75%,
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }
}