.sticky-icon {
  position: fixed;
  bottom: 80px;
  right: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  z-index: 1000;

}
.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  transition: all 0.8s;
}

.sticky-icon a:hover {
  color: #fff;
  transform: translate(0px, 0px);
}
.sticky-icon a:hover i {
  transform: rotate(360deg);
}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook {
  background-color: #2c80d3;
  color: #fff;
}

.Youtube {
  background-color: #fa0910;
  color: #fff;
}

.Whatsapp {
  background-color: #25d366;
  color: #fff !important;
  cursor: pointer;
}

.Instagram {
  background-color: #ffb526;
  color: #fff;
}

.Google {
  background-color: #d34836;
  color: #fff;
}
.sticky-icon a i {
  background-color: #fff;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}
.sticky-icon a i.fa-facebook-f {
  background-color: #fff;
  color: #2c80d3;
}


.sticky-icon a i.fa-instagram {
  background-color: #fff;
  color: #ffb526;
}

.sticky-icon a i.fa-youtube {
  background-color: #fff;
  color: #fa0910;
}

.sticky-icon a i.fa-whatsapp {
  background-color: #fff;
  color: #25d366;
}
.fas fa-shopping-cart {
  background-color: #fff;
}
#myBtn {
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align: center;
  padding: 10px;
  text-align: center;
  line-height: 40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up {
  font-size: 30px;
}

#myBtn:hover {
  background-color: #555;
}

@media (max-width: 600px) {
  .sticky-icon {
    flex-direction: row;
    bottom: 10px;
    right: 0;
    transform: translateX(0);
    justify-content: center;
    align-items: flex-end;
  }
  .sticky-icon a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50% !important;
    padding: 0;
    font-size: 0; /* metni gizle */
    margin: 2px 4px;
    transform: none !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sticky-icon a i {
    margin-right: 0;
    font-size: 24px;
    width: 100%;
    height: 100%;
    line-height: 44px;
    text-align: center;
    display: block;
    color: #fff !important;
    background: transparent !important;
  }
}


