.majc.open .majc__overlay {
    opacity: 1;
    visibility: visible;
    z-index: 100000;
    transition: opacity 0.3s;
}

.majc.open .majc__cart {
    right: 0;
    transition: right 0.3s;
}

.majc__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    z-index: -999;
    transition: opacity 0.5s;
}

.majc__cart {
    position: fixed;
    top: 0;
    right: -999px;
    bottom: 0;
    width: 100%;
    min-width: 320px;
    max-width: 530px;
    background-color: #fff;
    z-index: 1500000;
    transition: right 0.5s;
}

.majc__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.majc__header-text {
    font-size: 600px;
    font-size: 18px;
}

.majc__close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    background-color: transparent;
}

.majc__wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100% - 60px);
}

.majc__products-wrap {
    height: 100%;
    overflow-y: auto;
}

.majc__product {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.majc__product:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.majc__product-wrap-img {
    display: block;
    margin-right: 10px;
}

.majc__product-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100px;
    max-height: 100px;
    min-width: 100px;
    min-height: 100px;
    object-fit: contain;
    object-position: center;
}

.majc__product-caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.majc__product-code {
    margin-bottom: 4px;
    font-size: 12px;
}

.majc__product-code span {
    display: inline-block;
    margin-right: 5px;
    color: #85838c;
}

.majc__product-name {
    margin-bottom: 10px;
    font-size: 12px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.majc__product-wrap-attrs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.majc__product-attr {
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 12px;
}

.majc__product-attr-key {
    margin-right: 2px;
    color: #85838c;
}

.majc__product-price-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.majc__product-price {
    font-size: 18px;
    font-weight: 600;
}

.majc__product-price-sale {
    display: inline-block;
    margin-right: 5px;
    color: #e61717;
    font-size: 18px;
    font-weight: 600;
}

.majc__product-price-old {
    color: #85838c;
    font-size: 12px;
    text-decoration: line-through;
}

.majc__product-price-discount {
    margin-left: auto;
    margin-right: 10px;
    padding: 4px;
    width: max-content;
    border: 1px solid #e66d17;
    border-radius: 2px;
    font-size: 12px;
    color: #e66d17;
}
@media (max-width: 480px) {
    .majc__product-price-discount {
        margin-left: 0;
        margin-right: 90px;
    }
}

.majc__product-wrap-counter-remove {
    display: flex;
    align-items: center;
}

.majc__product-wrap-counter {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    border-radius: 3px;
    background-color: #f2f2f2;
}

.majc__product-count {
    width: 30px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    background-color: #fff;
}

.majc__product-counter-btn {
    display: flex;
    align-items: center;
    height: 25px;
    margin: 0 3px;
    padding: 0 10px;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
}

.majc__product-counter-btn--minus {
    background-image: url(../img/minus.svg);
}

.majc__product-counter-btn--plus {
    background-image: url(../img/plus.svg);
}

.majc__product-remove {
    margin-left: 15px;
    padding: 5px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    background-color: transparent;
}

.majc__result {
    position: relative;
    padding: 20px 15px 25px 15px;
    border-top: 2px solid #e66d17;
    background-color: #fff;
    z-index: 5;
}

.majc__result-item {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    margin-bottom: 15px;
    font-size: 14px;
}

.majc__result-item--sale {
    font-weight: 500;
    color: #E61717;
}

.majc__result-item:last-child {
    margin-bottom: 0;
}

.majc__result-item-value {
    font-weight: 500;
}

.majc__result-item-value--accent {
    color: #e61717;
    font-size: 18px;
}

.majc__result-item-separator {
    width: 100%;
    height: 1px;
    margin: 0 10px;
    border-bottom: 1px dashed #c4c4c4;
}

.majc__total {
    display: flex;
    flex-direction: column;
}

.majc__total-value {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
}

.majc__total-value span {
    display: block;
    font-size: 12px;
}

.majc__btn {
    display: inline-block;
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.3rem 0.75rem;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    text-decoration: none;
    user-select: none;
    color: #fff;
    border-radius: 0.25rem;
    border: 1px solid #e66d17;
    background-color: #e66d17;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.majc__btn:hover {
    text-decoration: none;
}

.majc__empty {
    margin: auto;
    padding: 25px;
    font-size: 24px;
}

.majc-messages {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    z-index: -999;
    transition: opacity 0.5s;
}

.majc-messages__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.majc-messages.open {
    opacity: 1;
    visibility: visible;
    z-index: 100000000000;
    transition: opacity 0.3s;
}

.majc-messages__inner-wrap {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-top: 10vh;
    padding: 50px 25px 35px 25px;
    font-size: 16px;
    text-align: center;
    color: #444444;
    background-color: #FFFFFF;
    transform: translateY(-100%);
    z-index: 10000;
    transition: transform .3s;
}

.majc-messages.open .majc-messages__inner-wrap {
    transform: translateY(0);
    transition: transform .3s;
}

.majc-messages__close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    background-color: transparent;
}

.majc.loading .majc__spinner {
    visibility: visible;
    opacity: 1;
    z-index: 10000;
    transition: opacity .3s;
}

.majc__spinner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/spinner.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.35);
    visibility: hidden;
    opacity: 0;
    z-index: 0;
    transition: opacity .3s;
}