:root {
    --color: bisque;
}

header>div:first-child {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}
header>.wrapper:first-child>* {font-size: 32px}

/* монетки */
#cluster img {
    width: 100%;
}
/************************************************/
.control {
    display: grid;
    padding: 1rem;
    grid-gap: 1rem;
    grid-template-columns: 1fr auto auto;
}

.control>div {
    display: flex;
    align-items: center;
}

/* размер карточек */
.card_size {}

/* режим просмотра */
button {
    border: none;
    background-color: transparent;
    border: 1px solid gray;
    padding: 0.3rem;
    overflow: hidden;
    cursor: pointer;
    &:first-child {
        border-right: 0;
        border-radius: 4px 0 0 4px;
    }
    &:last-child {border-radius: 0 4px 4px 0}
    &:hover {
        background-color: lightcyan;
    }
    &>img {
        height: 24px;
        vertical-align:bottom;
    }
}
.viewing_active {
    background-color: var(--color);
}

/************************************************/
/* Скрыть input (точки) radio и checkbox */
input[type=radio]{
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
}
input:checked + label {
    background-color: bisque;
/*    fill: var(--main-color);*/
}
.checkbox_radio {
    display: flex;
    gap: 0.2rem;
}

.checkbox_radio label {
    display: flex;
    padding: 0.3rem;
    border-radius: 4px;
    border: 1px solid gray;
    cursor: pointer;
    font-size: 1rem;
}
/************************************************/
.cards {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.card {
    width: 140px;
	position: relative;
}
.lists {
    display: grid;
    grid-gap: 1rem;
}
.list {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    grid-gap: 1rem 5rem;
    align-items: center;
}
/************************************************/
.have {
    color: darkcyan;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
}
/************************************************/
@media (width: 1366px) {
    .wrapper {
        width: 80%;
    }
}