/* --- barre haute --- */
.pays-nav {
  background: #000;
  overflow-x: auto;
  display: none;
  justify-content: end;
  white-space: nowrap;
  padding-right: 120px;
  font-family: Oswald, Helvetica, Arial, sans-serif;
  @media screen and (min-width: 768px) {
    display: flex;
  }
}
.pays-nav ul {
  display: flex;
  gap: 24px;
}

.pays-nav-list {
  margin: 0;
  padding: 0 12px;
  display: flex;
  gap: 18px;
}
.pays-nav li {
  list-style: none;
}
.pays-nav a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font: 600 12px/1;
  text-transform: uppercase;
  padding: 8px 0;

  @media screen and (min-width: 768px) {
    font: 500 13px/1;
  }
}
.pays-nav img {
  margin-right: 6px;
  border-radius: 1px;
}
.pays-nav a:hover {
  color: #fff;
  opacity: 0.75;
}

/* --- panneau latéral --- */
.pays-sheet,
.pays-sheet-backdrop {
  font-family: Oswald, Helvetica, Arial, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  transition: 0.3s;
  @media screen and (min-width: 768px) {
    left: auto;
    right: 0;
  }
}
.pays-sheet {
  width: 320px;
  background: #fff;
  overflow-y: auto;
  z-index: 1100;
  transform: translateX(-100%);
  @media screen and (min-width: 768px) {
    transform: translateX(100%);
  }
}
.pays-sheet-backdrop {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}
body.pays-sheet-open .pays-sheet {
  transform: translateX(0);
}
body.pays-sheet-open .pays-sheet-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.pays-sheet h3 {
  display: flex;
  align-items: center;
  margin: 20px 24px 12px;
  font-weight: 500;
  font-size: 16px;
}
.pays-sheet.web h3 {
    justify-content: space-between                                                                                      ;
}
.pays-sheet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pays-sheet-list li a {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  font-size: 18px;
  color: #222;
  text-transform: uppercase;
}
.pays-sheet-list img {
  margin-right: 10px;
  border-radius: 1px;
  vertical-align: middle;
}
.pays-sheet-close {
  background: 0;
  border: 0;
  font-size: 28px;
  display: none;
  line-height: 1;
  padding: 16px 20px;
  cursor: pointer;
  @media screen and (min-width: 768px) {
   display: block;
  }
}
.pays-sheet-close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: 0;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
