section {
    position: relative;
    width: 100%;
    padding: var(--spacing-xl) 0;
}

.license-button {
    padding: var(--spacing-xs) var(--spacing-xxl);
    border: none;
    border-radius: var(--border-m);
    font-size: var(--fsize-xs);
    cursor: pointer;
    color: var(--color-white);
}

.license-button-blue {
    background-color: var(--color-blue);
}

.license-button-grey {
    background-color: var(--color-grey);
}

.license-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.license-banner-content {
    display: flex;
    flex-direction: column;
}

.license-banner-title {
    font-size: var(--fsize-l);
    font-weight: var(--fweight-regular);
    text-align: left;
    padding-bottom: var(--spacing-xxxs);
}

.license-banner-list {
    list-style-position: inside;
    padding: var(--spacing-xs) 0;
}

.license-products-duration input {
    display: none;
}

.license-products {
    margin-top: var(--spacing-m);
    max-width: 500px;
}

.license-products-title {
    font-size: var(--fsize-m);
    font-weight: var(--fweight-regular);
    text-align: left;
    padding-top: var(--spacing-xxxs);
}

.license-products-duration {
    margin: var(--spacing-xs) 0 var(--spacing-s);
}

.license-products-duration-options {
    margin: var(--spacing-xs) 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: var(--spacing-s);
}

.license-products-duration label {
    border: 2px solid var(--color-lblue);
    border-radius: var(--border-l);
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: var(--spacing-s);
    cursor: pointer;
}

.license-products-duration input:checked + label {
    background-color: var(--color-lblue);
    color: var(--color-black);
}

.license-products-options {
    margin: var(--spacing-xs) 0 var(--spacing-s);
    display: flex;
    flex-direction: column;
}

.license-products-option {
    display: flex;
    gap: var(--spacing-xs);
    padding: var(--spacing-xxs) 0;
}

.license-products-option input,
.license-products-option label {
    cursor: pointer;
}

.license-products-option-half {
    display: none;
}

#select:checked ~ .license-products-publishers {
    background-color: pink;
}

.license-products-publishers {
    display: none;
    margin: var(--spacing-xs) 0 0;
    list-style-type: none;
    width: 100%;
    max-height: 150px;
    overflow: auto;
}

.license-products-publishers-active {
    display: block;
}

.license-products-publisher {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--spacing-xxs) 0;
    font-size: var(--fsize-xs);
}

.license-products-publisher label {
    position: absolute;
    width: 100%;
    height: 100%;
}

.license-products-publisher-left {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
}

.license-banner-image-container img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-l);
}

@media  (max-width: 768px) {
    .license-banner {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575.98px) {
    .license-banner {
        flex-direction: column-reverse;
    }
    .license-banner-image-container {
        width: 100%;
        align-self: flex-end;
    }

    .license-pricing-item-price {
        justify-self: end;
    }

    .license-products-duration label {
        padding: var(--spacing-s) var(--spacing-xxs);
    }

    .license-banner-content {
        order: 2;
    }

    .license-banner-image-container {
        order: 1;
    }

    .license-banner-image-container img {
        height: 200px;
    }
}
