/* Start custom CSS */p:last-child {
    /* No margin after last paragraph in every text widget */
  margin-bottom: 0;
}

::selection {
    background: #d68e1a; 
    color: #fff;
}

.undraggable img {
    pointer-events: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    -moz-user-select: none;
    user-select: none;
}

.highlight {
    padding: 1px 6px;
    border-radius: 4px;
    background-color: #FF7602;
    color: #fff;
    font-weight: bold;
}


/* RESPONSIVE */

/* Only Desktop */

@media (min-width: 1025px) {
    .hidden-desktop {
        display: none;
    }
}

@media (min-width: 1001px) {
    .only-small-tablet {
        display: none;
    }
}

/* Only Mobile */

@media (max-width: 767px) {
    .only-small-tablet {
        display: none;
    }
    
    .hidden-phone {
        display: none;
    }
}/* End custom CSS */