/* intlTelInput */
body .form-group .iti {
    display: block;
}

body .form-group .iti__dropdown-content {
    z-index: 1000;
}

body .form-group .iti__arrow {
    border: none;
}

[data-bs-theme="dark"] .form-group .iti__country-list {
    background-color: #212529;
}

.avatar {
    height: 40px;
    margin-bottom: -15px;
    margin-top: -15px;
    width: 40px;
}

.navbar-align {
    margin-left: auto;
}
body[data-sidebar-position="right"] .navbar-align {
    margin-right: auto;
}

.id-ellipsis-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    background: none;
}

.id-ellipsis-wrapper .id-ellipsis {
    display: block;
    width: 100%;
    transition: all 300ms ease;
    background: rgba(0, 0, 0, 0);
    color: #444;
    top: 0%;
    padding: 3px;
    border-radius: 4px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.id-ellipsis-wrapper:hover .id-ellipsis,
.id-ellipsis-wrapper:focus .id-ellipsis {
    z-index: 10;
    background: #ccc;
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.id-ellipsis-wrapper:after {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    bottom: -14px;
    color: #fff;
    content: attr(data-tooltip);
    /**extract the content from the title */
    left: 0%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: auto;
    white-space: nowrap;
    transition: all 300ms ease;
    font-size: 12px;
    font-weight: normal;
    margin-left: 6px;
}

.id-ellipsis-wrapper:before {
    border: solid;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 0px solid transparent;
    border-right: 6px solid rgba(0, 0, 0, 0.8);
    bottom: -6px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 99;
    transition: all 300ms ease;
    margin-left: 0px;
}
