/*--- Overflow ---*/
    @media (min-width: 1200px){
        .overflow-x-xl-initial{
            overflow-x: initial!important;
        }
    }
/*------*/

/*--- User select ---*/
    .user-select-none{
        -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
        user-select: none; /* Standard syntax */
    }
/*------*/

/*--- Text ---*/
    /*--- Wrap ---*/
        @media (max-width: 768px){
            .d-md-text-wrap{
                white-space: wrap!important;
            }
        }
    /*------*/
/*------*/

/*--- Sizing ---*/
    @media (max-width: 992px){
        .w-50-lg{
            width: 50%!important;
        }
    }
    .w-fit-content{
        width: fit-content!important;
    }
/*------*/
