/* Your custom styles */
.list-nohp
{
    display: none;
    position: absolute;
    width: 100%;
    background-color: white;
    border: 1px rgb(105, 105, 105);
    z-index: 10000;
    top: 70px;
    max-height: 300px;
    overflow-y: auto;
}

.cursor-pointer
{
    cursor: pointer !important;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

.underline
{
    text-decoration: underline !important;
}

.hover\:text-primary:hover
{
    color: #4285f4 !important;
}

.scale-80
{
    transform: scale(.80) !important;
}

.my-0
{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.readonly-input
{
    border: none;
    padding: 5px;
    width: 100%;
    background: transparent;
    outline: none;
}

.readonly-input:focus
{
    outline: none;
}

.max-h-300px
{
    max-height: 300px !important;
}

.object-cover
{
    object-fit: cover !important;
}

.btn-search {
    --text-color: rgba(0,0,0,0.7);
    background-color: transparent;
    color: var(--text-color);
    border: none;
    outline: none;
    position: absolute;
    top: 38px;
    right: 20px;
}

.btn-search:hover{
    --text-color: #000;
}

.img-profile {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 9999999;
    margin-left: auto;
    margin-right: auto;

}

.bg-blueish {
    background-color: #0089AA;
}

.font-bold {
    font-weight: 500;
}

.ungu {
    color:rgb(116, 0, 194);
}

@media (min-width: 768px) {
    .md-sticky {
        position: sticky;
        top: 30px;
    }

    .md\:w-half {
        width: 60%;
    }

    .md\:w-full {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .lg-sticky {
        position: sticky;
        top: 30px;
    }
}

.hover\:shadow-md {
    transition: all 0.3s ease;
}

.hover\:shadow-md:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btn-close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    user-select: none;
    z-index: 10000000;
    font-size: 20px;
    color: rgba(255,255,255, 0.5);
}

.btn-close-modal:hover {
    color: #fff;
}

.btn-close-modal-bordered {
    border: 2px solid rgba(255,255,255, 0.5);
    border-radius: 50%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    transform: scale(.8);
    transition: 0.2s ease-in-out;
    top: 10px;
    right: 10px;
}

.btn-close-modal-bordered:hover {
    border: 2px solid #fff;
    color: black;
    background-color: #fff;
}

.top-20 {
    top: 3.3em;
}

.-mt-2 {
    margin-top: -0.2rem;
}

.-mr-2 {
    margin-right: -0.4rem;
}
.-mr-4 {
    margin-right: -0.9rem;
}

.hover\:bg-light:hover
{
    background: rgba(255,255,255,0.6) !important;
}

.max-h-400
{
    max-height: 400px;
    overflow-y: auto;
}

.max-h-200
{
    max-height: 200px;
    overflow-y: auto;
}

.img-asset-full {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hover\:zoom {
    transition: 0.2s ease;
}

.hover\:zoom:hover {
    transform: scale(1.15);
}