﻿.multiselect{
    display:grid;
    gap:15px;
    padding:10px;
}

.colorRectangleSmall {
    width: 15px;
    height: 15px;
    border: thin;
    border-radius: 5px;
}
.checkboxes {
    display: flex;
    gap: 15px;
    flex-wrap:wrap;
}

/*.colorContainer {
    position: relative;
    height: 50px;
    top: -25px;
}

.checkBoxColor {
    position: relative;
    top: -2px;
    left: 2px;
    z-index: 1;
}*/

.colorRectangle {
    width: 30px;
    height: 30px;
    border: solid;
    border-radius: 10px;
}

    .colorRectangle:hover {
        transform: translateY(-1px);
    }

.sizeRectangle {
    width: 40px;
    height: 30px;
    border: solid;
    border-radius: 10px;
    font-size: 10px;
    text-align: center;
    align-content: center;
    font-weight:bolder;
}

.form-checkStock {
    display: flex;
    padding: 24px 0px 10px 0px;
    gap: 10px;
    align-items: center;
}

.stockCheckBox {
    appearance: checkbox;
    width: 11px;
    height: 11px;
}

.image-radio {
    display: none;
}

    .image-radio:checked + label {
        outline: 5px solid #f00;
        border-radius: 10px;
    }
@media (min-width: 800px) {
    .checkboxes {
        display: flex;
        gap: 10px;
        height: 40px;
        font-weight: bolder;
    }

    .sizeRectangle {
        width: 50px;
        height: 50px;
    }
}