.info__btn-content {
    display: flex;
    justify-content: flex-end;
}

#infoButton {
    border: 0;
    background: unset;
    padding: 0;
    margin-bottom: 10px;
}

.modal {
    position: fixed;
    z-index: 130;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.info__modal-content {
    border-radius: 10px;
    background: #fff;
    max-width: 624px;
    max-height: 80%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    padding: 20px;
}

.info__modal-title {
    font-weight: 400;
    font-size: 30px;
}

.info__modal-title span {
    font-weight: 600;
}

.info__modal-brand {
    font-size: 16px;
    margin: 15px 0 5px;
    color: #909090;
}

.info__modal-list {
    padding-left: 20px;
}

.info__modal-list li {
    list-style: disc;
    font-size: 14px;
    color: #909090;
}