﻿.social-icon_petasofts_petasoft{
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.3rem;
  z-index: 999999999999999999999;
}

.social-icon_petasofts_petasoft a{
  color: white;
}

.icon_petasoft{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: coral;
  transition: width .5s ease;
  cursor: pointer;
}

.icon_petasoft:first-child{
  border-top-right-radius: 5px;
}

.icon_petasoft:last-child{
  border-bottom-right-radius: 5px;
}

.icon_petasoft:hover{
  width: 60px;
}

.icon_petasoft.fb-fb{
  background-color: #3A579A;
}

.icon_petasoft.tw-tw{
  background-color: #000;
}

.icon_petasoft.pt-pt{
  background-color: #CD1C1F;
}

.icon_petasoft.in-in{
  background-color: #0077B5;
}

.icon_petasoft.gp-gp{
  background-color: #DD4B39;
}

.icon_petasoft.int-ins{
  background-color: #E4405F;
}

.icon_petasoft.yt-yt{
  background-color: #CD201F;
}







.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    left:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:9999999999999999;
}

.my-float{
    margin-top:16px;
}









* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
 
.wrapper {
  position: fixed;
  max-width: 365px;
  background: #fff;
  border: 5px solid #fca311;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
  text-align: center;
  bottom: 50px;
  right: 50px;
  z-index: 9999;
}
.wrapper.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
::selection {
  color: #fff;
  background: #212529;
}
.wrapper img {
  max-width: 90px;
}
.content header {
  font-size: 25px;
  font-weight: 600;
}
.content {
  margin-top: 10px;
}
.content p {
  color: #858585;
  margin: 5px 0 20px 0;
}
.content .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons button {
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #212529;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: #fcba7f;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buttons button:hover {
  transform: scale(0.97);
}
.buttons .item {
  margin: 0 10px;
}
.buttons a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: #212529;
  background: #e9ecef;
}