
/** PERSONALIZZAZIONE */

/** PADDING */

.pl-1{
    padding-left:0.25rem;
}

.pl-2 {
    padding-left: 0.5rem;
}

.pl-3 {
    padding-left: 1rem;
}
/** BORDI */

.border-default{
 border: 1px solid black;
}

.border-top {
    border-top: 1px solid black;
}

.border-left {
    border-left: 1px solid black;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-20 {
    border-radius: 20px;
}

.border-default {
    border-radius: var(--default-border-radius);
}

/** BOTTONI */
.icon-button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 2px;
}

/** SCROLL PAGINE */

.scrollobject-ever {
    overflow-y: auto;
}

.scroll_object {
}


@media (min-width: 992px) {

    .scroll_object {
        overflow-y: auto;
        max-height: 84vh;
    }
}


/* SHADOWS */
.my-shadow {
    /*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);*/
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.my-shadow-strong {
    box-shadow: 1px 1px 35px 0px rgba(0, 0, 0, 0.5);
}

.my-no-shadow {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;
}

/* CARDS */

.my-card {
    max-width: 98%;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}

    .my-card:hover {
        transform: scale(1.03);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    }

.my-card-selected {
    transform: scale(1.03);
    background-color: var(--evm-blue-lighter);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}


@media (max-width: 500px) {

    .my-card {
        max-width: 100%;
    }
}


/** IMMAGINI */

.img-category {
    width: 130px !important;
    height: 130px !important;
    border-radius: 10px !important;
    border: 1px solid gray !important;
    object-fit: cover;
}

.img-phone {
    width: 60px !important;
    height: 100px !important;
/*    border-radius: 10px !important;
    border: 1px solid gray !important;*/
}

.img-class-sm {
    width: 100px !important;
    height: 100px !important;
    border-radius: 10px !important;
    border: 1px solid gray !important;
}


/*  OVERRIDE RADZEN CLASS */

.rz-dialog{
    border-radius:10px !important;
}

.rz-dialog-confirm-buttons .rz-button.rz-primary.rz-shade-default {
    background-color: var(--rz-danger);
}