.restrictions > h4 {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.restrictions > p {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.tab {
    border: 4px solid #621F4E;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 5px;
}

.tab.active {
    background-color: #621F4E;
    color: white;
}

.content {
    display: none;
}
.content.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}