﻿.welcome-page .logo {
  width: 64px;
}

.icon-banner {
  width: 32px;
}

.body-container {
  display:flex;
  margin-top: 60px;
  padding-bottom: 40px;
}

.welcome-page li {
  list-style: none;
  padding: 4px;
}

.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0;
}

.grants-page .card {
  margin-top: 20px;
  border-bottom: 1px solid lightgray;
}
.grants-page .card .card-title {
  font-size: 120%;
  font-weight: bold;
}
.grants-page .card .card-title img {
  width: 100px;
  height: 100px;
}
.grants-page .card label {
  font-weight: bold;
}

.customLoginWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-bottom: 0px;
    background: url("../login-backgroundMedivet.svg") no-repeat center / cover #fff;
}

.customLoginWrapperEu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-bottom: 0px;
    background: url("../login-background.svg") no-repeat center / cover #fff;
}

.light-blue {
    max-width: 100%;
    padding: 0px !important;
}

.customArticleBody {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 100% !important;
}

.page-main {
    clear: both;
    min-height: 400px;
    padding: 0px;
    transition: width 0.4s ease-out;
    float: left;
    width: 100%;
}



.loader {
    display: block;
    width: 65px;
    height: 65px;
    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 #00a593;
        animation: prixClipFix 2s linear infinite;
    }

    .loader::after {
        transform: rotate3d(90, 90, 0, 180deg);
        border-color: #00a593;
    }

@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%);
    }
}
