footer{
    background-color:#000;
    width:100%;
    height:auto;
}

.containerItemsFullFooter{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:50px;
  padding-top:50px;
  padding-bottom:10px;
  padding-left:20px;
  padding-right:20px;
}

.containerItemsFullFooter .itemBrand{
  width:20%;
  height:100%;
  display:flex;
  align-items:center;
  color:var(--black);
  flex-wrap:wrap;
}
.containerItemsFullFooter .itemBrand .containerImgBrandFooter{
  width:150px;
  height:auto;
}

.containerItemsFullFooter .itemBrand .containerImgBrandFooter img{
  width:100%;
  height:100%;
}

.containerItemsFullFooter .itemBrand a{
  width:100%;
  color:var(--white);
}

.containerItemsFullFooter .itemBrand .flexLink{
  margin:5px 0px;
}


.containerItemsFullFooter .itemBrand .flexLinkOv{
    text-decoration:underline;
}

.containerItemsFullFooter .itemBrand .flexLinkOv:hover{
   text-decoration:none;
}

.containerItemsFullFooter .itemLinks{
  width:20%;
  padding-left: 15px;
  height:auto;
  /*background-color:rgb(51, 255, 0);*/
}


.pOvetFooter{
    color:var(--white);
    font-size:13px;
    font-weight:400;
    padding-top:5px;
    padding-bottom:10px;
}


.itemLinks h5{
  font-size:20px;
  font-weight:600;
  color:var(--white);
}


.flexLink{
  display:flex;
  justify-content:left;
  align-items:center;
  gap:10px;
  margin:15px 0px;
}


.flexLink p,.itemLinks .flexLink i{
  transition:all ease .3s;
  font-size:11px;
  color:var(--principal);
}

.flexLink p,.itemLinks .flexLink{
  color:var(--white);
  font-size:18px;
}

.flexLink:hover p,.flexLink:hover i{
  color:var(--principalHover);
}


.containerItemsFullFooter .itemSocialLinks{
  width:15%;
  height:auto;
  /*background-color:rgb(51, 255, 0);*/
}


.itemSocialLinks h5{
  font-size:20px;
  font-weight:600;
  color:var(--white);
}

footer .flexRdsHeader{
	display:flex;
	justify-content:left;
    gap:10px;
    margin-top:10px;
	align-items:center;
}

footer .flexRdsHeader a{
	width:30px;
	height:30px;
	background-color:var(--principal);
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:3px;
	cursor:pointer;
	color:var(--white);
	transition:all ease .3s;
}

footer .flexRdsHeader a:hover{
	background-color:var(--principalHover);
   transform: scale(1.1);
     color:var(--white);
}


/* CopyRight*/

footer .copyright{
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:10px;
  flex-wrap:wrap;
  text-align:center;
  color:var(--white);
  padding:15px 0px;
  margin-top:30px;
  background-color: var(--principal);
}

footer .copyright .webFooterCopy{
  font-size:13px;
}

footer .copyright p{
  width:100%;
}
footer .copyright a{
  color: var(--white);
}




/* BUTTON UP */

.btn-scrolltop {
    position: fixed;
    bottom: 25px;
    left:25px;
    padding: 12px 15px;
    background-color: var(--white);
    color: var(--principal);
    border:none;
    box-shadow: rgba(101, 107, 114, 0.2) 0px 8px 24px;
    cursor: pointer;
    transform: translateY(100px);
    border-radius:5px;
    transition: 0.3s;
    z-index:11;
  }

  .btn-scrolltop-active {
    transform: translateY(0);
  }

  .btn-scrolltop:hover{
    background-color: var(--principal);
    color:var(--white);
  }




/* OVET CHAT */

.chatOvetButton{
    position: fixed;
    bottom: 25px;
    right:25px;
    width:60px;
    height:60px;
    background-color: var(--white);
    border:none;box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
    border-radius:50%;
    transition: 0.3s;
    z-index:13;
    overflow: hidden;
    border:3px solid var(--white);
}

.chatOvetButton .containerImgChat{
    width:100%;height: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.chatOvetButton .containerImgChat img{
    width:100%;
    height:100%;
    object-fit: contain;
    transition: all ease .3s;
}

.closeChat{
    cursor: pointer;
    padding:0px 5px;
    border-radius:50%;
    transition: all ease .3s;
}

.closeChat:hover{
    background-color:var(--white);
    color:#01BC63;
    transform: rotate(360deg);
}

.containerChatOvet{
    position: fixed;
    bottom:95px;
    right:25px;
    width:320px;
    height:auto;
    border-radius:15px;
    background-color: var(--white);
    z-index:13;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display:none;
}

.flexCabChat{
    width:100%;
    height:42px;
    display: flex;
    justify-content: space-between;
    padding:10px 15px;
    background-color: #01BC63;
    color:var(--white);
    padding-top:8px;
}

.flexCabChat .flexIconTitle{
    font-weight:600;
    font-size:18px;
}

.flexCabChat .flexIconTitle i{
    margin-right:5px;
}

.contactsChat{
    width:100%;
    height:auto;
    max-height:160px;
    overflow-y: auto;
    padding:10px;
}

.flexcontactOvetWhatsApp{
    width:100%;
    background-color:var(--white);
    display:flex;
    justify-content: start;
    align-items: center;
    padding:10px;
    gap:10px;
    position:relative;
    border-radius:5px;
    margin-bottom:10px;
}

.containerContactChatImg{
    width:45px;height:45px;
    background-color: var(--white);
    border-radius:50%;
    border:1px solid var(--silverDark);
    overflow: hidden;
}

.containerContactChatImg img{
    width:100%;
    height:100%;
    object-fit: contain;
    transition: all ease .3s;
}

.pointerActive{
    position:absolute;
    width:10px;height:10px;
    border-radius:50%;
    background-color: #01BC63;
    left:43px;
    top:43px;
}

.nombreContactChat{
    color:var(--black);
    font-size:14px;
}


.flexcontactOvetWhatsApp:hover{
    width:100%;
    background-color:#f5f5f5;
}


.overlayChat{
    position: fixed;
	top:0px;
	left:0;
	width: 100%;
	height:100%;
	z-index:12;
	background-color: rgba(0, 0, 0, 0.219);
	display:none;
}

.showBlock{
    display:block;
}




  @media(max-width:1150px){
    .itemLinks h5{
      font-size:18px
    }
    .flexLink p{
      font-size:14px
    }
    .containerItemsFullFooter{
      gap:30px;
    }
  }

  @media(max-width:900px){
    .containerItemsFullFooter .itemLinks,.containerItemsFullFooter .itemSocialLinks,.containerItemsFullFooter .itemBrand{
      width:100%;
    }
    .containerItemsFullFooter{
      flex-wrap:wrap;
    }

    .containerItemsFullFooter .itemLinks{
      padding-left:0px;
    }
    .containerItemsFullFooter{
    padding-left: 10px;
    padding-right: 10px;
    }
}


@media(max-width:500px){
  footer .copyright{
    padding:20px 50px;
  }

  .webFooterCopy{
    display:flex;
    flex-direction:column;
  }

  .webFooterCopy a{
    font-size:10px;
  }
}

@media(max-width:365px){
  .containerChatOvet{
    width:310px;
  }
}


@media(max-width:350px){
  .containerChatOvet{
    width:300px;
  }
}
