img.infoicon {
  width: 33px;
  position: absolute;
  top: 5px;
  left: 165px;
  cursor: pointer;
}
img#info-icon:hover {
  transform: scale(1.1);
}

.info-panel {
    position: fixed;
    top: 0;
    right: -135%;
    width: 360px;
    height: auto;
    background-color: #000;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 1000;
}
@media (max-width: 325px) {
  .info-panel {
    width: 330px;
  }
  .info-panel p, 
  .info-panel ul {
    font-size: 0.9rem !important;
  }
  .info-panel ul li {
    line-height: 1.15 !important;
    padding-bottom: 13px !important;
  }
}
.info-panel.open {
    right: -25px;
}
.info-panel-content {
  color: #fff;
    padding: 30px 20px 30px 30px;
    position: relative;
}
.close-btn {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
  line-height: 1.5;
}
span.closex {
  padding-bottom: 3px;
}
h3.panel-title {
  color: #fe0;
  font-size: 1.5rem;
  margin-top: -5px;
  margin-bottom: 20px;
}
h3.infotagline {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: -30px;
  margin-bottom: 15px;
}
.info-panel p, 
.info-panel ul {
  font-size: 1.1rem;
  font-weight: 500;
}

.info-panel ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.info-panel ul li {
  line-height: 1.35;
  padding-bottom: 25px;
}
.info-panel ul li:last-child {
    padding-bottom: 15px;
}
.info-panel a {
  color: #fff;
  border-bottom: 1px dashed #fff;
}
.info-panel a:hover {
  color: #ff0;
  border-bottom: 1px solid #ff0;
}
::marker {
  color: #666;
}

.info-modal {
    position: absolute;
    top: 100%;
    right: 0;
    background: #000;
    border-radius: 5px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.2s ease-out;
}

.info-modal.is-visible {
    transform: translateX(0);
}

.modal-text {
  margin: -5px 10px;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  padding-top: 9px;
  padding-bottom: 9px;
}
.close-modal-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}