.mcs-product-detail {
    display: flex;
}

.mcs-product-detail-visual {
    box-shadow: 0px 10px 25px 5px #aaa;
    margin-right: 50px;
    margin-bottom: 30px;
    max-height: 120px;
}

.mcs-product-detail-heading {
    font-size: 24px;
}

.mcs-panel-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 650px;
    transform: translateX(100%);
    transition: .3s ease-in-out;
    z-index: 1040;
}

.mcs-panel-wrapper--is-active {
    transform: translateX(0%);
}

.mcs-panel-background--is-active {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
}

.mcs-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #000;
    overflow: auto;
    padding: 120px;
    max-width: 650px;
    width: 100%;
    z-index: 100;
}

.mcs-panel-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.mcs-panel-success {
    display: none;
}

.mcs-panel-heading {
    font-size: 34px;
    margin-bottom: 20px;
}

.mcs-panel-description {
    font-size: 20px;
    line-height: 27px;
}

.mcs-panel-explanation {
    font-size: 16px;
    line-height: 21px;
    border-bottom: 1px solid #E8E8E8E8;
    padding: 15px 0px;
    margin-bottom: 40px;
}

.mcs-panel-select {
    max-width: 100%;
    padding-right: 50px;
}

.mcs-panel-bulk-pricing {
    border-top: 1px solid #E8E8E8E8;
    border-bottom: 1px solid #E8E8E8E8;
    margin: 30px 0px 0px 0px;
    padding: 15px 0px;
    display: grid;
    grid-template-columns: max-content max-content;
    grid-column-gap: 40px;
    grid-row-gap: 5px;
    font-weight: normal;
    font-size: 16px;
}

.mcs-panel-bulk-pricing dt {
    font-weight: normal;
}

.mcs-panel-bulk-pricing dd {
    text-align: right;
    font-weight: bold;
    margin-bottom: 0px;
}

.mcs-panel-form-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.mcs-panel-form-checkbox {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    font: inherit;
    color: #000;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid #000;
    transform: translateY(-0.075em);
  
    display: grid;
    place-content: center;
    margin-right: 10px;
}

.mcs-panel-form-checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #000;
}

.mcs-panel-form-checkbox:checked::before {
    transform: scale(1);
  }

.mcs-panel-submit {
    margin-top: 40px;
}

.mcs-panel-button-group {
    display: flex;
    flex-wrap: wrap;
}

@media only screen and (max-width: 600px) {
    .mcs-product-detail {
        margin-bottom: 40px;
    }

    .mcs-panel-wrapper {
        transform: translateY(100%);
    }

    .mcs-panel-wrapper--is-active {
        transform: translateY(0%);
    }

    .mcs-panel {
        padding: 60px 40px;
    }

    .mcs-panel-bulk-pricing {
        grid-template-columns: max-content 1fr;
    }
}