* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 10px;
    width: 100%;
    overflow-x: hidden;
    background: transparent;
}

.cartomante {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 300px;
    min-height: 150px;
    padding: 8px;
    margin: 6px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    transition: all .3s;
}

.cartomante:hover {
    background-color: #eeeeee;
    cursor: default;
}

.cartomante img.photo {
    width: 134px;
    height: 134px;
    float: left;
    margin: 0 10px 0 0;
    padding: 0;
    border-radius: 6px;
    object-fit: cover;
}

.cartomante img.phone {
    width: 20px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.labelnome {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.cartcodice {
    font-weight: 400;
    font-size: 13px;
    margin: 2px 0 6px 0;
}

.cartcod {
    font-weight: 700;
    font-size: 18px;
}

.rating-inline {
    height: 15px;
    width: 70px;
    margin-top: 3px;
}

.rating-inline i.rating-star {
    float: left;
    height: 15px;
    width: 14px;
    background: url(/status/img/rating-stars.png) no-repeat;
}

.cartintro {
    font-size: 12px;
    line-height: 14px;
    margin: 4px 0 42px 0;
    min-height: 38px;
}

.btncart {
    position: absolute;
    min-width: 130px;
    text-align: center;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
    color: #ffffff;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 14px;
}

.btn-busy {
    border: solid 2px #ff0000;
    background-color: #ff0000;
}

.btn-free {
    border: solid 2px #6ab165;
    background-color: #6ab165;
}

.btn-free:hover {
    border: solid 2px #3fafd4;
    background-color: #3fafd4;
}

.btn-pause {
    border: solid 2px #ff9900;
    background-color: #ff9900;
}

.btn-offline {
    border: solid 2px #666666;
    background-color: #666666;
}

.no-operatori {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #5b1394;
    font-weight: bold;
    padding: 30px 15px;
}

/* Tablet */
@media (max-width: 900px) {
    .cartomante {
        width: calc(50% - 16px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    body {
        padding: 6px;
    }

    .cartomante {
        width: calc(100% - 12px);
        min-height: 150px;
        margin: 6px;
    }

    .labelnome {
        font-size: 18px;
    }
}