.blur {
    filter: blur(2px) !important;
}

.modal-overlay.open {
    visibility: visible;
    opacity: 0.5;
}

.modal-overlay {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    backdrop-filter: blur(8px);
    border-right: 1px solid whitesmoke;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    opacity: 0;
    transition : opacity 0.5s;
    height: 100%;
    visibility: hidden;
}

.modal-container.modal-form{
    width: 85vw;
    height: 95vh;
}

.modal-form {
    box-shadow: 0px 8px 44px -15px rgba(0,0,0,0.25)
}

.modal-container {
    border-radius: 5px;
    max-width: 100%;
    padding: 15px;
    width: 750px;
    /*width: 95vw;*/
    /*height: 95vh;*/
    z-index: 2500;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    visibility: hidden;
    transition: transform 0.35s ease-out, opacity 0.35s ease-out, visibility 0.35s;
    transform: translate(-50%, -50%);
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    /*align-items: center;*/
}

.modal-container.show {
    opacity: 1;
    visibility: visible;
}

.modal-wrapper {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 80px);
    overflow-y: scroll;
    overflow-x: hidden;
}

.modal-grp-search {
    margin-top: 20px;
}

.modal-grp-search input {
}

.modal-grp-content.modal-dashboard{
    animation: fadein 1s;
    -moz-animation: fadein 1s; /* Firefox */
    -webkit-animation: fadein 1s; /* Safari and Chrome */
    -o-animation: fadein 1s; /* Opera */
}

.modal-grp-content {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-grp-header {
    display: flex;
    flex-direction: row;
    align-content: center;
    margin: 10px 0 10px 0;
}

.modal-grp-header .grp-header.start {
    display: flex;
    justify-content: flex-start;
}

.modal-grp-header .grp-header.end {
    display: flex;
    justify-content: flex-end;
}

.modal-grp-header span, .modal-close span {
    transition: all 0.5s;
    font-size: 32px;
    color: rgb(51, 51, 51);
    margin-right: 20px;
}

.modal-close {
    height: 40px;
    position: fixed;
    right: 20px;
    top: 0;
    width: 40px;
}

.modal-grp-footer {
    display: flex;
    justify-content: center;
    align-content: center;
}
.modal-grp-footer-left {
    display: flex;
    justify-content: flex-end;
}

/* from dashboard */

.isCircle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

.btn-grp {
    background-color: #333;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.btn-grp:hover {
    color: #E7BE20;
    background-color: #333;
}

.btn-grp.btn-xl {
    width: 50px;
    height: 50px;
    padding: 9px;
    border-radius: 35px;
    font-size: 23px;
}

.modal-grp-content {
    color: #ffffff;
}

.modal-grp-content .no-group{
    color: rgb(51, 51, 51)
}

.modal-list-grp {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    height: 400px;
    overflow: auto;
    align-items: center;
    align-content: stretch;
}

.modal-grp-container p {
    color: #ffffff;
}

.modal-grp-container {
    width: 100%;
    padding: 20px;
    margin: 20px;
    text-align: center;
    color: #ffffff;
    opacity: 1;
    border: 1px solid #333;
    border-radius: 20px;
    flex-basis: auto;
    height: auto;
    background-color: #333;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    word-break: break-all;
    animation: fadein 0.5s;
    -moz-animation: fadein 0.5s; /* Firefox */
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
    -o-animation: fadein 0.5s; /* Opera */
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.modal-grp-container:hover,
.modal-grp-container:focus {
    color: #E7BE20;
    text-decoration: none;
    cursor: pointer;
}

.modal-grp-header {
    justify-content: flex-end;
}
.modal-grp-header span {
    transition : all 0.5s;
    font-size: 32px;
    color: rgb(51, 51, 51);
    margin-right: 20px;
}

@media (max-width: 768px) {
    .modal-container.modal-form {
        width: 95vw;
    }
}

@media screen and (min-width: 769px), print {
    .modal-grp-container {
        width: 200px!important;
    }
}