/*body {
    -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;  
    -o-user-select: none;
    user-select: none;
}*/

a.no-hover-color:hover, a.no-hover-color:focus {
    color: inherit !important;
}

/*@url https://stackoverflow.com/a/67068063*/
.two-line-ellipsis {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    height: 2.6em; /* Fallback for non-webkit, line-height * 2 */
    line-height: 1.3em;
    -webkit-line-clamp: 2; /* if you change this, make sure to change the fallback line-height and height */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jl_img_box img {
    aspect-ratio: 1;
    height: 200px!important;
}

.jl_grid_wrap_f .jl-roww {
    margin-left: -15px;
}

.options_dark_skin .card {
    border: 1px solid #303030;
    background: #1a1a1a;
}

.htmx-indicator, .htmx-image-indicator {
    display: none;
}

.htmx-indicator.htmx-request, .htmx-image-indicator.htmx-request {
    display: block;
}

.section-title {
    font-size: 1.25rem;
    color: #252930;
    font-weight: 600;
}

.primary-color {
    color: var(--main-color) !important;
}

.border-radius-50 {
    border-radius: 50%;
}

.img-100 {
    height: 100px!important;
    width: 100px!important;
}

.img-75 {
    height: 75px!important;
    width: 75px!important;
}

.img-50 {
    height: 50px!important;
    width: 50px!important;
}

.ml--3 {
    margin-left: -1rem!important;
}

.post-thumnail-overlay {
    object-fit: cover;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.post-thumnail-overlay.pending-overlay {
    background: #ebebebc7;
}

.post-thumnail-overlay.rejected-overlay {
    background: #ff4c4c9c;
    color: #ffffff;
}

.btn-round-lg{
    border-radius: 22.5px;
}
.btn-round{
    border-radius: 17px;
}
.btn-round-sm{
    border-radius: 15px;
}
.btn-round-xs{
    border-radius: 11px;
    padding-left: 10px;
    padding-right: 10px;
}

/* 
 * A set of classes to use Bootstrap widths on different screens.
 * @link https://stackoverflow.com/a/62245627/8960497
*/

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }

    .h-sm-75 {
        height: 75% !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }
}


/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .w-md-100 {
        width: 100% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .h-md-75 {
        height: 75% !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .h-md-25 {
        height: 25% !important;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .w-lg-100 {
        width: 100% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }

    .h-lg-75 {
        height: 75% !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .w-xl-100 {
        width: 100% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }

    .h-xl-75 {
        height: 75% !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }
}