div.reveal-at-hover {
    overflow: hidden;
    text-overflow: ellipsis;
}

div.reveal-at-hover:hover {
    overflow: visible;
}

.select2-selection--single {
    height: 40px !important;
}

/*
.select2-selection--multiple {
    height: 40px !important;
}
*/

.btn--primary:hover {
    color: white;
}

/* Modal */

.modal-shadow{
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 0.9;
    background: #222;
    z-index: 40000;
    top:0;
    left: 0;
    overflow: hidden;

    animation-name: fadeIn_Container;
    animation-duration: 1s;

}

.modal{
    display:none;
    top: 0;
    min-width: 250px;
    width: 80%;
    margin: 0 auto;
    position: fixed;
    z-index: 40001;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #000;
    margin-top: 30px;
    margin-left: 10%;

    animation-name: fadeIn_Modal;
    animation-duration: 0.8s;

}

.modal-header{
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    border-bottom: 2px solid #ccc;
    padding: 24px;
}

.modal-header .modal-hide{
    float: right;
    color: #aaa;
    background-color: none;
    border: none;
}

.modal-content{
    width: 100%;
    height: fit-content;
    padding: 24px;
}

.modal-footer{
    width: 100%;
    height: fit-content;
    padding: 24px;
    border-radius: 0px 0px 10px 10px;
    border-top: 2px solid #ccc;
}

/****MEDIA QUERIES****/

@media screen and (min-width: 600px){

    .modal{
        width: 500px;
        height: fit-content;
        margin-left: calc(50vw - 250px);
        margin-top: calc(50vh - 150px);
    }

    .modal-header{
        width: 100%;
    }

    .modal-header a{
        line-height: 40px;
    }

    .modal-content{
        width: 100%;
    }

    .modal-footer{
        width: 100%;
    }

}

/*LARGE SCREEN*/
@media screen and (min-width: 1300px){

}

/****ANIMATIONS****/

@keyframes fadeIn_Modal {
from{
    opacity: 0;
}
to{
    opacity: 1;
}
}

@keyframes fadeIn_Container {
from{
    opacity: 0;
}
to{
    opacity: 0.9;
}
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.text-break {
    word-break: break-word !important;
    word-wrap: break-word !important;
}