

.btn-blue{
    background-color:#3F627A;
    border-color: #3F627A;
    color:white;
}
.btn-blue:hover{
    background-color: #335065;
    color:white;
}


.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.breadcrumb-item {
    display: flex;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item > a{
    color: #3F627A;
}
.breadcrumb-item.active > a{
    color: #006abd;
    font-weight:bold;
}
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #0087ca;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0087ca;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.text-size-80{
    font-size:80%;
}
.text-size-70{
    font-size:70%;
}
.text-size-90{
    font-size:80%;
}
.opacity-7{
    opacity:0.7;
}


@keyframes blink{
    0%{opacity: 0;}
    50%{opacity: .5;}
    100%{opacity: 1;}
}


.blink{
    animation: blink 1s linear infinite;
}


/* SHINE EFFECT */

.image-wrapper {
    height: auto;
    width: auto;
    border-radius: 6px;
    /*background-color: #ccc;*/
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}
.image-wrapper img {
    height: auto;
    max-width: 100%;
}

.shine {
    position: relative;
    overflow: hidden;
}
.shine::before {
    /*background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);*/
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}
.shine:hover::before, .shine:focus::before {
    -webkit-animation: shine 1.85s;
    animation: shine 1.85s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}


.text-orange{
    color:#EA7428;
}


.select2-results__option--disabled{
    color:black!important;
    text-decoration: underline;
    font-weight: bold;
}
.select2-results__option--selectable{
    color: black!important;
}
