/* #region General */
:root {
    --cdt-primaryForst: #7ab51d;
    --cdt-secondaryForst: #00722d;
    --cdt-shadowForst: #adcf82;
    --cdt-errorFontColor: #960005;
}

.pva-embedded-web-chat {
    display: none !important;
}

* :not(.fa) {
    font-family: 'Fira Sans', sans-serif !important;
}

.headerImg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 350px;
    overflow: hidden;

    & img {

        clip-path: ellipse(100% 33% at 20% 30%);
        width: 100%;
    }

    & .copyRight {
        display: none;
        /* Initially hidden */
        position: absolute;
        bottom: 40px;
        left: 5px;
        color: white;
        font-size: 0.75rem;
    }
}

.headerImg:hover .copyRight {
    display: block;
}

#breadcrumbs {
    margin: 8px 0;
}

hr {
    color: var(--cdt-primaryForst);
}

p {
    font-size: 1rem;
}

/* #endregion */

/* #region ZoomIn */
img.zoomIn {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;

    &:hover {
        -webkit-transform: scale(1.025);
        transform: scale(1.025);
    }
}

/* #endregion */

/*#region Loader*/
#loadingDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    z-index: 99999;
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 20em;
    height: 20em;
}

.loader {
    margin: 5%;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid var(--cdt-secondaryForst);
    border-right: 1.1em solid var(--cdt-secondaryForst);
    border-bottom: 1.1em solid var(--cdt-secondaryForst);
    border-left: 1.1em solid var(--cdt-primaryForst);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: spinner 1.1s infinite linear;
    animation: spinner 1.1s infinite linear;
}

#loadingMessage {
    text-align: center;
    padding: 0 20px;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*#endregion*/

/* #region Fonts */
@font-face {
    font-family: 'Fira Sans';
    src: url('/FiraSansRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* #endregion */

/* #region mediaqueries */
@media (max-width:1900px) {
    .copyRight {
            bottom: 60px;
        }
    }

@media (max-width: 1200px) {
    .copyRight {
        display: block !important;
        bottom: 20px;
    }

    .headerImg {
        height: 250px;

        & img {
            clip-path: ellipse(100% 33% at 10% 35%);
        }
    }
}

@media (max-width: 992px) {
    .headerImg img {
        clip-path: ellipse(100% 33% at 10% 30%);
    }

}

@media (max-width: 768px) {
    .headerImg .copyRight {
        bottom: 80px;
    }
    .copyRight {
        font-size: 8px !important;
    }

}







/* #endregion */