* { 
    margin: 0px; 
    padding: 0px;
    font-size: 22px;
}

/********************************************************/

div.download{
    width: 250px;
    position: absolute;   
    bottom: 0;
    right: 0;
    margin-right: 200px;
    margin-bottom: 200px;
}

.download a{
    font-size: 0.9em;
    color: blue;
}

/********************************************************/

header h1{
    font-size: 4em;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 10px solid lightblue;
}

/********************************************************/

#wrapper{                                                               /* стили для обёртки */
    width: 1250px;
    height: 500px;
    border: 1px solid black;
    border-radius: 15px;
    background-color: lightblue;
    margin: 30px auto 0 auto;
    padding: 20px;
}

#wrapper > h1{                                                          /* стили названия "Комплектующие" */
    font-size: 2em;
    padding-bottom: 20px;
    width: 50%;
    margin: 0 auto 0 auto;
    text-align: center;
}

form{                                                                   /* form по сути как обёртка для информации для заполнения */
    padding: 0 100px 0 100px;
    border-top: 1px dotted gray;
    height: 380px;
    overflow-y: scroll;
    position: relative;
}

form > p{                                                               /* общее описание всех "p" */
    border-bottom: 1px dotted gray;
    font-size: 1.3em; 
    line-height: 50px;
    padding-left: 18px;
    display: block;
    background-color: gray;
    height: 50px;
}

#p_cpu{                                                                 /* позиция sticky для названия "Процессор:" */
    position: sticky;
    top: 0;
}

#p_mb{                                                                  /* позиция sticky для названия "Материнские платы:" */
    position: sticky;
    top: 100px;
}

form > label{                                                           /* общее описание всех "label" */
    font-size: 1.3em;
    line-height: 50px;
    height: 50px;
}

input[type="radio"]:checked + .only_cpu{                                /* позиция sticky для названия процессоров */
    position: sticky;
    top: 50px;
    background-color: lightgrey;
    display: inline-block;
    
}

input[type="radio"]:checked + .only_mb{                                 /* позиция sticky для названия материнских плат */
    position: sticky;
    top: 150px;
    background-color: lightgrey;
    display: inline-block;
    
}

input[type="radio"]{
    margin-left: -19px;
}