.acountUserSlider-Post{
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, auto));
  grid-template-rows: repeat(auto);
  gap: 4px;
}
.acountUserSlider-Post > div {
  width: auto;
  height: 120px;
}
.acountUserSlider-Post > div:hover {
  cursor: pointer;
}
.userIDCopy-box{
  position: absolute;
  top:5%;
  right: 10px;
  z-index: 10;
  width: 4rem;
  height: 2rem;
  color:#fff;
  background-color: #3b82f6;
  display: flex;
  justify-content: center;
  align-items:center;
  z-index: 10;
  border-radius: .3rem;
  -webkit-border-radius: .3rem;
  -moz-border-radius: .3rem;
  -ms-border-radius: .3rem;
  -o-border-radius: .3rem;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 transition-delay: 2s;
}
.userIDCopy-box::after{
  content: '';
  position: absolute;
  right:-7px;
  width: 1rem;
  height: 1rem;
  z-index: -10;
  background-color:#3b82f6;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-radius: .2rem;
  -webkit-border-radius: .2rem;
  -moz-border-radius: .2rem;
  -ms-border-radius: .2rem;
  -o-border-radius: .2rem;
}

/* chek box edit profile code styles */
.toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}
.toggle:before {
  content: "";
  position: relative;
  top: 3px;
  left: 3px;
  width: 30px;
  height: 11px;
  display: block;
  background: #ececec;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.toggle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
  transition: all 0.2s ease;
}
.toggle span:before {
  content: "";
  position: absolute;
  display: block;
  margin: -18px;
  width: 50px;
  height: 50px;
  background: rgba(220, 46, 197, 0.5);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}

#cbx:checked + .toggle:before {
  background: #ececec;
}
#cbx:checked + .toggle span {
  background: rgba(59, 130 ,246,1);
  transform: translateX(20px);
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
  -webkit-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -moz-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -ms-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -o-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
}
#cbx:checked + .toggle span:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.4s ease;
}

.center {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 20px);
}

.sinUpUser {
  background: linear-gradient(rgba(0,0,0,0.1) , rgba(0,0,0,0.8));
}
#followBox{
  opacity: 0;
  visibility: hidden;
}
#partFallow:hover #followBox{
 opacity: 1;
 transition: all .4s ease;
 visibility: visible;
 -webkit-transition: all .4s ease;
 -moz-transition: all .4s ease;
 -ms-transition: all .4s ease;
 -o-transition: all .4s ease;
}