.tooltip__container {
    padding: 16px;
}

.info-tooltip__content {
    font-size: 18px;
    line-height: 1.2;
    height: auto;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    padding: 16px;
}

.info-tooltip__content>p:not(:first-child) {
    margin-top: 12px;
}

.tooltip__main-content {
    display: flex;
    gap: 12px;
    line-height: 1.2;
    border: solid 2px #9C2AA0;
    padding: 20px;
    background-color: white;
}

.tooltip__text {
    font-size: 18px;
}

.tooltip__textlink {
    margin-top: 12px;
}

.tooltip__textlink-link {
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: underline;
}

.tooltip__textlink-icon {
    display: flex;
}

.tooltip__textlink-icon>svg {
    width: 18px;
}

.tooltip__text-info.tooltip__text-info---active {
    display: block;
}

.info-tooltip>p {
    margin: 16px 0;
}

.info-tooltip table {
    font-size: 13px;
    border-collapse: separate;
    margin: 20px 0;
    max-width: 700px;
    width: 100%;
}

.info-tooltip table th {
    text-align: left;
}

.info-tooltip tbody tr {
    background: #F2F2F2;
}

.info-tooltip table th,
.info-tooltip table td {
    border-top: solid 12px white;
    border-bottom: solid 12px white;
}

.info-tooltip table td {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 12px;
}

.info-tooltip table td:first-child {
    padding-left: 12px;
    padding-right: 0;
}

@media screen and (min-width: 1024px) {
    .info-tooltip__content {
        padding: 0;
    }
}

@media screen and (min-width: 1280px) {
    .product-info.info-tooltip {
        width: 70%;
        right: 15%;
    }
    .info-tooltip table {
        font-size: 16px;
    }
}