.tool-tip a:hover {
    color: var(--clr-accent2-dark);
    text-decoration: none;
}


.overlay {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.pop-up {
    text-align: left;
    margin: 70px auto  ;
    padding: var(--size-600);
    background: var(--clr-neutral-light);
    border: 1px solid black;
    border-radius: 1rem;
    width: 80%;
    position: relative;
    transition: all 1s ease-in-out;
}

.pop-up .close {
     position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

.pop-up .close:hover {
     color:  var(--clr-accent2-dark);
}

.pop-up h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--size-400);
  color: var(--clr-neutral-dark);
}

/* Numbered list */
.decimal-conditions {
    list-style-position: outside;
    margin-inline: var(--size-600);
}

.decimal-conditions > li {
    list-style: decimal;
    padding-inline: var(--size-400);
    padding-bottom: var(--size-400);
}
  
/* Numbered marker */
.decimal-conditions > li::marker {
font-weight: bold;
}

/* List with small letters */

.letter-conditions > li {
    list-style-type: lower-latin;
    margin-left: var(--size-400);
    padding-bottom: var(--size-400);
}