/* Change Form body content */
.form-loading-overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index: 10;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.form-loading-overlay-content > div {
    position: absolute;
    top: 40vh;
    left: 40vw;
}

.form-loading-overlay-content > div > .lds-roller > div:after {
    background: #000;
}

/* Multiple Select2 with Bootstrap styles */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #cccccc !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%) !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: rgba(82, 168, 236, 0.8) !important;
    outline: 0 !important;
    outline: thin dotted \9 !important;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(82 168 236 / 60%) !important;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6) !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(82 168 236 / 60%) !important;
}

.capitalize {
    text-transform: capitalize;
}

.no-wrap {
    white-space: nowrap;
}

.loader-mini {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    position: relative;
    display: block;
    animation: rotate 1s linear infinite;
    margin-top: 4px;
}

.loader-mini::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #333;
    animation: prixClipFix 2s linear infinite;
}

.ip-address-block {
    display: flex;
}

.ip-address-text {
    display: inline-block;
    margin: 0;
}

.ip-address-country-flag {
    width: 15px;
    margin-right: 3px;
    display: inline-block;
}

.popover-title .ip-address-country-flag {
    width: 20px;
}

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

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }
    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}