/*----------- BAR SOCIAL -----------*/
.contenitore-sm{
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenitore-sm a{
    display: flex;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--clr-sm-circle);
    border-radius: 50%;
    box-shadow: 0 4px 4px rgb(0, 0, 0, .3);
    transform: translateY(0) scale(1);
    opacity: 0.5;
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
    margin: 0 4px;
}

.contenitore-sm a i{
    color: var(--clr-sm-icon);
    font-size: 15px;
    line-height: 30px;
}

.contenitore-sm a:nth-child(1):hover{
    opacity: 1;
    background: #1877F2;
    transform: translateY(-6px) scale(1.2);
}

.contenitore-sm a:nth-child(2):hover{
    opacity: 1;
    background: rgb(255,0,172);
    background: linear-gradient(222deg, rgba(255,0,172,1) 0%, rgba(252,176,69,1) 100%);
    transform: translateY(-6px) scale(1.2);
}


.contenitore-sm a:nth-child(3):hover{
    opacity: 1;
    background: #ffeed2;
    transform: translateY(-6px) scale(1.2);
}

.contenitore-sm a:nth-child(4):hover{
    opacity: 1;
    background: #000;
    transform: translateY(-6px) scale(1.2);
}

.contenitore-sm a:nth-child(5):hover{
    opacity: 1;
    background: #ff0000;
    transform: translateY(-6px) scale(1.2);
}

.contenitore-sm a:hover i{
    color: var(--clr-sm-icon-hover);
}

.contenitore-sm a:nth-child(3):hover i{
    color: #97700b;
}
/*----------- SMARTPHONE/TABLET -----------*/
@media (max-width: 1120px) {
    .contenitore-sm {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-left: auto;
        margin-right: 65px;
        max-width: none;
        align-self: center;
        z-index: 105;
    }

    .contenitore-sm a{
        opacity: 1;
    }

    .contenitore-sm a:nth-child(1){
        opacity: 1;
        background: #1877F2;
    }
    
    .contenitore-sm a:nth-child(2){
        opacity: 1;
        background: rgb(255,0,172);
        background: linear-gradient(222deg, rgba(255,0,172,1) 0%, rgba(252,176,69,1) 100%);
    }
    
    .contenitore-sm a:nth-child(3){
        opacity: 1;
        background: #ffeed2;
    }
    
    .contenitore-sm a:nth-child(4){
        opacity: 1;
        background: #000;
    }
    
    .contenitore-sm a:nth-child(5){
        opacity: 1;
        background: #ff0000;
    }
    
    .contenitore-sm a i{
        color: var(--clr-sm-icon-hover);
    }
    
    .contenitore-sm a:nth-child(3) i{
        color: #97700b;
    }

    .contenitore-sm a:nth-child(1):hover{
        opacity: 1;
        background: #1877F2;
        transform: translateY(0px) scale(1);
    }
    
    .contenitore-sm a:nth-child(2):hover{
        opacity: 1;
        background: rgb(255,0,172);
        background: linear-gradient(222deg, rgba(255,0,172,1) 0%, rgba(252,176,69,1) 100%);
        transform: translateY(0px) scale(1);
    }

    .contenitore-sm a:nth-child(3):hover{
        opacity: 1;
        background: #ffeed2;
        transform: translateY(0px) scale(1);
    }
    
    .contenitore-sm a:nth-child(4):hover{
        opacity: 1;
        background: #000;
        transform: translateY(0px) scale(1);
    }
    
    .contenitore-sm a:nth-child(5):hover{
        opacity: 1;
        background: #ff0000;
        transform: translateY(0px) scale(1);
    }
    
    .contenitore-sm a:hover i{
        color: var(--clr-sm-icon-hover);
    }
    
    .contenitore-sm a:nth-child(3):hover i{
        color: #97700b;
    }
}

@media (max-width: 480px) {
    .contenitore-sm {
        margin-right: 50px;
        gap: 3px;
    }

    .contenitore-sm a {
        width: 26px;
        height: 26px;
        margin: 0 1px;
    }

    .contenitore-sm a i {
        font-size: 13px;
        line-height: 26px;
    }
}