.section__license .container__layout {
    display: flex;
    flex-direction: column;
    padding: 0 70px;
    gap: 40px;
}

.section__license--title {
    font-size: 40px;
    line-height: 52px;
    font-weight: 700;
}

.section__license--info {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.license__device {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.license__device .license__device--title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.license__device--list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.license__device--list .license__device--item {
    padding: 24px;
    border: 1px solid var(--light-grey-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all linear 0.3s;
    min-width: 324px;
    max-width: 324px;

}

.license__device--item-title {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--light-grey-color);
}

.license__device--item-title .license__device--checked {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid var(--light-grey-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all linear 0.3s;

}

.license__device--item-title p {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.license__device--quantity {
    display: flex;
    align-items: center;
    gap: 4px;
}

.license__device--quantity-btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--light-grey-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all linear 0.3s;

}

.license__device--quantity-btn img {
    width: 10px;
    height: 10px;
}

.license__device--quantity input {
    background-color: var(--main-white-color);
    border-radius: 4px;
    width: 36px;
    min-height: 24px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    outline: none;
    border: 0;
    text-align: center;
}

.license__device--item-price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.license__device--item-info p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}


.license__device--list .license__device--item.active,
.license__device--list .license__device--item:hover {
    border: 1px solid var(--primary-color);
    background-color: #D1D8FC;
    transition: all linear 0.3s;
}
.license__device--item.active .license__device--checked,
.license__device--item:hover .license__device--checked{
    background-color: var(--main-white-color);
    transition: all linear 0.3s;

}
.license__device--item.active .license__device--checked::after,
.license__device--item:hover .license__device--checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all linear 0.3s;

}

.license__device--item.active .license__device--quantity-btn,
.license__device--item:hover .license__device--quantity-btn{
    background-color:var(--primary-color) ;
    transition: all linear 0.3s;
}

.license__total--price{
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--main-white-color);
    padding: 0 70px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--light-grey-color);
}
.license__total--price-init{
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: var(--light-grey-color);
    text-decoration: line-through;
}

.license__total--price-final{
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
    color: var(--primary-color);
    transition: all linear 0.3s;
}

.license__total--price-final.scale-up{
    transform: scale(1.25);
}

.license__total--price-content{
    display: flex;
    gap: 4px;
    align-items: end;
}