.body-no-scroll {
    overflow: hidden;
    height: 100%;
}

.mcw-icon {
    color: gray;
}

.mcw-icon-disabled {
    color: lightgray;
    pointer-events: none;
}

.mcw-icon:hover {
    cursor: pointer;
    color: black;
    transform: scale(1.05);
}

.mcw-close-popup-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    z-index: 100;
}

.mcw-popup {
    position: fixed;
    background: rgba(67, 67, 67, 0.5);
    padding: 50px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mcw-popup-content {
    max-height: 90vh;
    background: white;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.mcw-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mcw-hover-tag {
    position: fixed;
    padding: 0 15px;
    background: rgb(39, 39, 39);
    color: white;
    font-weight: bold;
    font-size: 12px;
    border-radius: 65px 110px;
    transition: 100ms ease;
    pointer-events: none;
    box-shadow: 2px 2px 5px 0 rgb(63, 63, 63);
}

.mcw-undraggable {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
}

.mcw-hover-underline:hover {
    text-decoration: underline;
}

.mcw-input-override input {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mcw-icon-tooltip {
    position: relative;
}

.mcw-icon-tooltip-content {
    opacity: 0;
    transition: opacity 300ms;
}

.mcw-icon-tooltip:has(.mcw-icon-tooltip-icon:hover) > .mcw-icon-tooltip-content {
    opacity: 1;
}

.mcw-clickable:hover {
    cursor: pointer;
}

@keyframes fadein {
    from { opacity: 0 }
    to { opacity: 1 }
}

@keyframes scalein {
    from { transform: scale(0.2) }
    to { transform: scale(1) }
}

@media (orientation: portrait) {
    .mcw-popup {
        padding: 1em;
    }
}

.mcw-to-cart {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;

    gap: 2.5em 2.5em;
}

.mcw-to-cart-img-container {
    max-width: 60%;
    flex-shrink: 1;
}

.mcw-to-cart-img-wrapper {
    position: relative;
}

.mcw-to-cart-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 3px 7px 3px lightgray;
    z-index: 10;
    pointer-events: none;
}

.mcw-to-cart-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

@media screen and (max-width: 1080px) {
    .mcw-to-cart-img-container {
        max-width: 100%;
    }

    .mcw-to-cart-info {
        width: 100%;
    }
}