





/*Sección Setting Empieza*/
.openSet {
    position: fixed;
    z-index: 50;
    right: 1rem;
    bottom: 1rem;
    cursor: pointer;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #6b6b6b;
    border: 3px solid #dddddd;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.4, 0.32, 1.3);
    box-shadow: 0 0 8px rgb(0, 0, 0, .1);
}
.openSet:hover{
    background:#000 ;
    color: #fff;
    border: 3px solid #8b8b8b;
}

.openSet.hide {
    right: -7rem;
    opacity: 0;
    /* transition: all 0.4s cubic-bezier(0.6, -0.28, 0.74, 0.05); */
}


.setting {
    position: fixed;
    bottom: -5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.5, 1.35, 0.5, 1); 
}

.setting.show {
    bottom: 2rem;
    opacity: 1;
}


.setting .container{
    padding: .5rem;
    background: #fff;
    border-radius: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0, 0.090);
}
.setting .container .linkSet{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    background: #e9e9e9;
    border-radius: 50px;
    cursor: pointer;
}
.setting .container .linkSet:hover i{
    color: #fff;
}
.setting .container .linkSet:hover{
    color: #fff;
    background: #000;
}

.setting .container .linkSet i{
    color: #7a7a7a;
    font-size: clamp(1.7rem, 3vw, 2rem);
}
/*Sección Setting Termina*/