.license-row {
    margin-bottom:12px; 
    padding:10px;
    border:1px solid #ddd;
    background:#f9f9f9; 
    display:flex; 
    gap:12px;
}


.font-license-options {
    width: 100%;
    background: transparent;
    border-radius: 8px;
    font-family: inherit;
}
.font-license-options h4 {
    margin-top: 0;
    font-size: 24px;
}
.discount-note {
    background: #4E19CD;
    color: #fff;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.discount-note_percent {
    font-size: larger;
    font-weight: 700;
}

.discount-note_text {
    color: rgb(255,255,255. 0.7);
}


.license-item {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 25px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.license-label-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}
.license-label-wrapper input[type="checkbox"] {
    margin-right: 1em !important;
    background-color: transparent !important;
    width: 24px !important;
    height: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.license-label-wrapper input[type="checkbox"]:checked {
    background-color: #4E19CD !important;
}

.license-label-wrapper label {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.license-price {
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    min-width: 150px;
}
.seats-quantity {
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.seats-quantity label {
    margin-right: 10px;
    font-weight: normal;
    font-size: 16px;
}
.seats-quantity .quantity {
    display: flex;
    flex-direction: row;
    padding: 8px;
    background: #494949;
    justify-content: space-between;
    max-width: 100% !important;
}
.seats-quantity input.qty {
    width: 80px;
    text-align: center;
    height: 44px;
    background: #333;
    color: #fff;
    border: 1px solid #555;
}
.seats-quantity .plus, .seats-quantity .minus {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    width: 44px;
    height: 44px !important;
    cursor: pointer;
}