.sectionContent {
    grid-template-columns: 2fr 3fr;
}

@media only screen and (max-width: 1024px) {
    .sectionContent {
        grid-template-columns: auto;
        width: 600px;
        max-width: 100%;
    }
}

.leftContainer,
.rightContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sectionContent h1 {
    margin: auto 0;
}

.partsTitle h1 {
    font-size: 1.1em;
    line-height: 1;
    padding-bottom: 5px;
}

.productTitle p,
.partsTitle p {
    color: grey;
}

.partsList {
    margin-top: -30px;
}

.productPic img {
    border: 4px solid lightgrey;
    border-radius: 15px;
    overflow: hidden;
    width: auto;
    min-width: 150px;
}

@media only screen and (max-width: 768px) {
    .productPic img {
        min-width: 110px;
    }
}

.partsList .partWrapper {
    padding: 15px 0;
    gap: 15px;
    padding: 30px 0 36px;
    position: relative;
    display: grid;
    grid-template-columns: 140px auto;
}

.partsList .partWrapper .leftContainer {
    width: 180px;
}

@media only screen and (max-width: 768px) {

    .partsList .partWrapper .leftContainer {
        width: 120px;
    }
}

.partsList .partWrapper .leftContainer .productPic img {
    width: 138px;
    height: 138px;
    min-width: 138px;
    max-width: 138px;
    min-height: 138px;
    max-height: 138px;
}

.partsList .partWrapper:after {
    position: absolute;
    content: '';
    background-image: url(../assets/images/red-dash-line.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 6px;
    background-size: auto;
    bottom: 0;
    right: 0;
    border-radius: 50px;
}

.partsList .partWrapper .rightContainer {
    gap: 5px;
}

.partsList .price {
    font-size: 32px;
    margin: 0;
    color: #00a4e5;
}

.addToCart {
    display: flex;
    gap: 10px 15px;
    margin-bottom: 0;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
}

.addToCart .amountControl {
    display: flex;
    gap: 5px;
}

.addToCart .amountControl.disable {
    cursor: not-allowed;
}

.addToCart .minus {
    background-image: url(../assets/images/btn-quantity-1a.png);
    height: 100%;
    background-size: contain;
    cursor: pointer;
    background-repeat: no-repeat;
}

.addToCart .minus.disable {
    background-image: url(../assets/images/btn-quantity-1b.png);
}

.addToCart .plus {
    background-image: url(../assets/images/btn-quantity-2a.png);
    height: 100%;
    background-size: contain;
    cursor: pointer;
    background-repeat: no-repeat;
}

.addToCart .plus.disable {
    background-image: url(../assets/images/btn-quantity-2b.png);
}

.addToCart .minus,
.addToCart .plus {
    width: 33px;
    margin: auto;
    height: 33px;
}

.addToCart .amount {
    border: 3px solid #e82e2f;
    border-radius: 50px;
    width: 80px;
    display: flex;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1em;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 33px;
}

.addToCart input {
    border: none;
    background-color: transparent;
    outline: none;
    appearance: none;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1em;
    height: 33px;
}

/* Chrome, Safari, Edge, Opera */
.addToCart input::-webkit-outer-spin-button,
.addToCart input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.addToCart input[type=number] {
    -moz-appearance: textfield;
    color: #6d6e71;
}

.addToCart.outStock div {
    cursor: text !important;
}

.addToCart .CTA {
    padding: 0 20px;
}

.addToCart .CTA img {
    height: 40px;
    margin: auto;
}

.price.outStock {
    color: #6d6e71;
}

.addToCart.outStock .amount {
    border-color: #c1c3c4;
    color: #6d6e71;
}

.addToCart.outStock .CTA {
    background: #c1c3c4;
}

.addToCart.outStock .CTA {
    color: #6d6e71;
}

.cartControl {
    width: 100%;
    gap: 20px;
    text-align: center;
}


.contactUs {
    grid-template-columns: 1fr;
    text-align: center;
}

.contactUs .CTA {
    margin-top: 0.5em;
    display: inline-block;
}

#form_other {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

#form_other h1 {
    margin: 0;
}

#form_other textarea {
    width: 100%;
    height: 200px;
    border: 2px solid grey;
    border-radius: 15px;
    font-size: 1em;
    margin: 0;
    padding: 0.5em;
}

.CTA.disable {
    padding: 0 20px;
    gap: 5px;
    margin: initial;
    width: 100%;
    min-width: 160px;
    max-width: 185px;
    cursor: text !important;
}

@media only screen and (max-width: 1024px) {
    .cartControl {
        flex-direction: column;
    }

    .sectionContent.split {
        grid-template-columns: auto;
        justify-content: center;
    }

    .partsList {
        margin-top: 0;
    }
}