.wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.card {
    position: relative;
    width: 50%;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.input {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    appearance: none;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    z-index: 10;

}

.input + .check::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 16px;
    height: 16px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    background-color: #E8E8E8;
}

.input:checked + .check::after {
    content: '';
    position: absolute;
    top: 17px;
    right: 17px;
    width: 12px;
    height: 12px;
    background-color: rgba(0,128,0,0.7);
    border-radius: 50%;
}

.input[value="standart"]:checked + .check::after {
    background-color: rgba(255,165,0,0.7);
}

.input[value="premium"]:checked + .check::after {
    background-color: rgba(0,128,0,0.7);
}

.input[value="basic"]:checked {
    border: 1.5px solid rgba(255,0,0,0.7);
}

.input[value="standart"]:checked {
    border: 1.5px solid rgba(255,165,0,0.7);
}

.input[value="premium"]:checked {
    border: 1.5px solid rgba(0,128,0,0.7);
}

.label {
    color: #323232;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.label .title {
    margin: 15px 0 0 15px;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1.5px;
}

.label .price {
    margin: 5px 0 0 15px;
    /*font-size: 20px;*/
    font-weight: 900;
}

.label .description {
    font-size: 14px;
    font-style: italic;
    margin-left: 15px;
}

.label .span {
    color: gray;
    font-weight: 700;
    /*font-size: 15px;*/
}
