/* CSS Document */

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mint);
  color: var(--rosa);
}

.link {
  text-decoration: none:
  color: var(--rosa);
}

.text-wrapper {
  top: 175px;
}

#parfum3 {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5%;
}

label {
  display: block;
  position: relative;

  padding: 0 0 0 40px;
  margin: 0 0 40px 0;
  cursor: pointer;
  font-size: 3.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
label:hover input:not(:checked) ~ .radio {
  opacity: 0.8;
}
.label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-right: 3rem;
}
input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  left: -2000px;
}
input:checked ~ .radio {
  background-color: rgba(0,0,0,0);
  -webkit-transition: background .3s;
  transition: background .3s;
}
input:checked ~ .radio::after {
  opacity: 1;
}


.radio {
  position: absolute;
  top: 0.75rem;
  left: 0;
  height: 2rem;
  width: 2rem;
  background: rgba(0,0,0,0);
  border-radius: 50%;
  border: 3px solid var(--rosa);
}
.radio::after {
  content: '';
  position: absolute;
  opacity: 0;
  top: .3125rem;
  left: .3125rem;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: var(--rosa)



  ;
}

.container {
  height: 100vh;
}
.arrows {
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 175px;
  width: 100%;

  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
