* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vente-body {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  font-family: "Open Sans", sans-serif, arial, sans-serif;
  font-size: 13px;
  line-height: 1.4 !important;
}

.vente-el-desk {
  display: none;
}

.vente-visuel {
  width: 100%;
}

.vente-expe-logo {
  max-width: 50px;
  position: absolute;
  top: 15px;
  left: 15px;
}

/* bloc sous-catégories */
.vente-souscat {
  background-color: var(--body);
  position: relative;
}

.vente-timer {
  position: absolute;
  top: 55.5vw;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  width: 93%;
  left: 50%;
  transform: translateX(-50%);
}

#countdown-values {
  color: var(--primary);
  font-size: 12px;
}

.timer-icon img {
  width: 18px;
  margin-right: 5px;
}

.vente-logo {
  max-width: 130px;
  background-color: var(--white);
  padding: 10px 20px;
  margin-top: -30px;
}

/* listes */
.vente-souscat-list li {
  list-style-type: none;
  text-align: left;
  padding: 3px 0;
  border-bottom: 1px solid var(--gray-300);
  cursor: pointer;
}

.vente-souscat-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  width: 90%;
  margin: auto;
}

.vente-souscat-list .v-list-chevron {
  font-size: 25px;
  color: var(--primary);
  transform: translateY(-2px);
  transition: all .3s ease;
}

.vente-souscat-list li a:hover .v-list-chevron {
  margin-right: -10px;
}

/**************** version desktop ****************/
@media screen and (min-width:768px) {
  .vente-body {
    padding-top: 30px;
    margin-bottom: 20px;
  }

  .vente-el-desk {
    display: block;
  }

  .vente-el-mob {
    display: none;
  }

  .vente-expe-logo {
    max-width: 70px;
    top: 45px;
    left: 20px;
  }

  /* timer */
  .vente-timer {
    top: 5px;
    right: 10px;
    left: auto;
    transform: translateX(0);
    width: auto;
    font-size: 14px;
  }

  #countdown-values {
    font-size: 14px;
  }

  /* eo: timer */

  /* bloc sous-catégories */
  .vente-souscat {
    width: 30%;
    min-width: 260px;
    margin: auto;
    position: absolute;
    right: 5%;
    top: 53%;
    transform: translateY(-50%);
    padding-bottom: 5px;
  }

  .vente-souscat-in {
    width: 90%;
    margin: auto;
  }

  .vente-logo {
    margin: 10px auto;
    padding: 10px;
    max-width: 120px;
  }

  .vente-souscat-list li:first-child {
    border-top: 1px solid var(--gray-300);
  }

  .vente-souscat-list li:last-child {
    border-bottom: 0;
  }

  .vente-souscat-list li a {
    width: 100%;
  }

  .v-list-chevron {
    margin-right: 10px;
  }

  .vente-souscat-list li a:hover .v-list-chevron {
    margin-right: 0px;
  }

  /* bloc sous-catégories */
}