



.choose-avatar {
  width: 100%;
  float:left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top:9.0rem;
}


.avatar-item {
  width: 445px;
  height: 445px;
  background-size: cover;
  border-radius: 55px;
  transition: transform 500ms;
  transition-timing-function: cubic-bezier(0.22, 0.11, 0.67, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar-item img{
	max-width:50%;
}
.avatars-container {
  display: flex;
  width: 100%;
  height: 500px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  position: relative;
  gap: 50px;
}


.avatars {
  position: relative;
  display: flex;
  gap: 50px;
  transition: transform 500ms;
}

#text-avatar {
  display: none;
}

.button-simple {
  padding: 20px 70px;
  border-radius: 16px;
  font-size: 20px;
  background-color: var(--green);
  border: none;
  font-weight: 700;
  transition: .3s;
}

.button-simple:hover {
  cursor: pointer;
  opacity: .8;
}

.left {
  position: absolute;
  left: 28%;
  width: 3.0rem;
  height: 3.0rem;
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid var(--Color, #134441);
}
.left:hover{
	background: var(--Color, #134441);
	color:#FFF;
}
.right {
  position: absolute;
  right: 28%;
  width: 3.0rem;
  height: 3.0rem;
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid var(--Color, #134441);
}
.right:hover{
	background: var(--Color, #134441);
	color:#FFF;
}
.current {
  transform: scale(1.9);
}

.left::before {
  content: "\2190";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.2rem;
  z-index: 1;
  left: 0;
  top: 0;
  display: flex;
  width:3.0rem;
  z-index:4;
}
.right::after {
  content: "\2192";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.2rem;
  right: 0;
  top: 0;
  display: flex;
  width:3.0rem;
  z-index:4;
}

.current:hover {
  cursor: pointer;
  background-blend-mode: overlay;
  place-items: center;
  display: grid;
}



@media (max-width:999px) {
.avatar-item {
  width: 145px;
  height: 145px;
  background-size: cover;
  border-radius: 55px;
  transition: transform 500ms;
  transition-timing-function: cubic-bezier(0.22, 0.11, 0.67, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar-item img{
	max-width:50%;
}
.avatars-container {
  display: flex;
  width: 100%;
  height: 200px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  position: relative;
  gap: 50px;
}
.avatar-item img{
	max-width:70%;
}
.left{
	left:8%;
}
.right{
	right:8%;
}
.choose-avatar{
	margin-top:4.0rem;
}
















}