section.full-no-padding {
    width: 100%;
    margin-top: 30px;
    border-radius: 5px;
    box-shadow: 3px 3px 3px #777777;
    background-color: #ffffff;
    overflow: hidden;
}

div.bom-part,
div.bom-part-selected {
    position: relative;
    overflow: hidden;
    padding: 10px;
    gap: 20px;
}

div.bom-part-header {
    display: none;
}

div.bom-part-selected {
    background-color: #f5d8dd; /*#d86175;*/
}

div.bom-part:nth-child(even) {
    background-color: #efefef;
}

div.bom-part-selected:nth-child(even) {
    background-color: #ebb0ba;
}

div.bom-part:hover {
    background-color: #aaaaaa;
    color: #ffffff;
}

div.to-top {
    display: none;
}

button.to-top {
    width: 30px;
    border-radius: 100%;
    height: 30px;
    font-weight: 900;
    line-height: 11px;
}

div.number {
    color: #444444;
    text-transform: uppercase;
    font-weight: 900;
}
div.part-number {
    font-size: 1.25rem;
    font-weight: bold;
}
div.description {
    flex: 1 1 auto;
}
div.quantity {
    display: none;
}
div.unit-price {
    margin-top: 5px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column-reverse;
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
}
main span.tag {
    display: inline-block;
    padding: 1px 7px 2px 7px;
    margin: 0;
    vertical-align: top;
    font-size: 0.8rem;
    line-height: 0.8rem;
    font-weight: 700;
    border-radius: 7px;
    text-transform: uppercase;
}
div.bom-quantity {
    color: #444444;
    font-weight: 900;
    margin-bottom: 7px;
}
span.unit-of-measure {
    display: inline-block;
    font-size: 0.8rem;
}

div.spec {
    display: flex;
    gap: 15px;
    padding: 7px;
}
div.spec:nth-child(even) {
    background-color: #efefef;
}
div.spec span.label {
    font-weight: 900;
    flex: 0 0 200px;
}
div.spec span.value {
    font-weight: 100;
    flex: 1;
}
img.arrow {
    width: 8px;
}
div.header {
    color: #ffffff;
    font-weight: 900;
    padding: 10px;
    font-size: 1.25rem;
}
div.red-bg {
    background-color: #c41230;
}
div.gray-bg {
    background-color: #333333;
}
main h2 {
    margin-top: 25px;
}
object {
    padding: 20px;
}
div.selection {
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
    padding: 10px;
}
div.selection label {
    flex: 1;
    text-align: right;
    font-weight: bold;
    color: #c41230;
    text-transform: uppercase;
    font-size: 0.85rem;

}
div.selection select {
    padding: 5px;
    border-radius: 5px;
}

div.subassembly {
    display: flex;
    gap: 20px;
    padding: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}
div.subassembly:nth-child(even) {
    background-color: #efefef;
}
div.subassembly-title {
    flex: 1;
}
div.subassembly:hover {
    background-color: #cccccc;
}
div.add-to-cart {
    display: flex;
    gap: 10px;
    justify-content: end;
}
button.to-top-bottom {
    padding-left: 7px;
    padding-right: 7px;
    height: 38px;
}
form.add-to-cart {
    display:flex;
    flex: 0 0 90x;
    bottom:15px;
    right:15px;
    gap:0;
    border-radius:5px;
    overflow:hidden;
    border:1px solid #c41230;
    height: 38px;
    background-color: #c41230;
    z-index: 3;
}
form.add-to-cart:hover {
    border:1px solid #7a0016;
    background-color: #7a0016;
}
form.add-to-cart:focus-within {
    box-shadow: 2px 2px 4px #888888;
}
form.add-to-cart input.quantity {
    width: 50px;
    height: 100%;
    text-align: center;
    appearance:none;
    outline:none;
    border:none;
}
form.add-to-cart button {
    font-weight: 700;
    padding:0;
    width:38px;
    height:100%;
    border-radius: 0;
    font-size:2rem;
    line-height: 1rem;
    background-color: transparent;
    background-image: url("/static/store/svg/plus.svg");
    border: none;
    outline: none;
    appearance: none;
}
form.add-to-cart button:hover {
    background-color: transparent;
    border:none
}

div.added-to-cart {
    background-color: gold;
    color: #000000;
    font-weight: 900;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    text-align: center;
    z-index: 20;
    line-height: 200px;
    font-size: 1.5rem;
    z-index: 4;
    animation: revealing 1s ease-in;
}

@keyframes revealing {
    0% {
        top: -100%;
    }
    35% {
        top: 0;
    }
    65% {
        top: 0;
    }
    100% {
        top: -100%;
    }
}

@media only screen and (min-width: 480px) {

}

@media only screen and (min-width: 768px) {

}

@media only screen and (min-width: 1024px) {

    div.bom-part-header {
        display: flex;
        padding: 10px;
        gap: 20px;
        align-items: center;
        background-color: #c41230;
        color: #ffffff;
        font-weight: 900;
        align-items: end;
    }

    div.bom-part,
    div.bom-part-selected {
        display: flex;
        overflow: hidden;
        padding: 10px;
        gap: 20px;
        align-items: center;
    }

    div.to-top {
        display: block;
        flex: 0 0 30px;
    }

    div.number {
        color: unset;
        text-transform: unset;
        font-weight: unset;
        text-align: right;
        flex: 0 0 40px;
    }
    div.part-number {
        flex: 0 0 150px;
        font-size: unset;
        font-weight: unset;
    }
    div.description {
        flex: 1 1 auto;
    }
    div.quantity {
        display: block;
        text-align: right;
        flex: 0 0 50px;
    }
    div.unit-price {
        flex: 0 0 140px;
        flex-direction: column;
        text-align: right;
        margin: 0;
        font-size: unset;
        font-weight: unset;
    }
    div.bom-quantity {
        display: none;
    }
    div.add-to-cart {
        flex: 0 0 90px;
        display: block;
        text-align: center;
    }
    main span.tag {
        padding: 2px 5px 2px 5px;
        margin: 4px 0 0 2px;
        font-size: 0.75rem;
        line-height: 0.75rem;
        text-transform: unset;
    }
    span.unit-of-measure {
        display: none;
    }
    span.hide-large {
        display: none;
    }
    button.to-top-bottom {
        display: none;
    }
    div.added-to-cart {
        line-height: 60px;
    }
}