.rdn-cart-modal {
    font-family: Outfit, sans-serif;
    display: none;
}

.rdn-cart-modal.is-open {
    display: block;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9995;
}

.modal__container {
    background-color: #fff;
    max-width: 700px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #1b1b1b;
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before {
    content: "\2715";
}

.modal__content {
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}


.rdn-modal-content {
    display: block;
    gap: 0.5rem;
    width: 100%;
    height: 250px;
    text-align: center;
    overflow-y: scroll;
    padding: 30px;
}

.rdn-modal-content .rdn-wall-option,
.rdn-modal-content .rdn-accessory-option {
    border-bottom: solid 1px #9b9b9a;
    background: #fff;
    padding: 16px 5px 16px 5px;
    align-content: space-between;
}

.rdn-modal-content .rdn-wall-option:last-child,
.rdn-modal-content .rdn-accessory-option:last-child {
    border-bottom: none;
}

.rdn-modal-content .rdn-wall-option-image,
.rdn-modal-content .rdn-accessory-option-image {
    overflow: hidden;
    margin-bottom: 16px;
    height: 100%;
    width: 175px;
    float: left;
}

.rdn-modal-content .rdn-wall-option-image img,
.rdn-modal-content .rdn-accessory-option-image img {
    object-fit: contain;
    height: 100%;
    width: calc(100% - 10px);
    vertical-align: middle;
    border-style: none;
    border-radius: 5px;
    margin-right: 10px;
}

.rdn-modal-content .rdn-wall-option-content,
.rdn-modal-content .rdn-accessory-option-content {
    text-align: left;
}

.rdn-modal-content .rdn-wall-option-title,
.rdn-modal-content .rdn-accessory-option-title {
    color: #212529;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 4px;
    padding: 0 16px;
    width: 100%;
}

.rdn-modal-content .rdn-wall-option-desc,
.rdn-modal-content .rdn-accessory-option-desc {
    color: rgba(0, 0, 0, 0.5);
    font-family: Outfit;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 8px;
    padding: 0 16px;
    width: 100%;
}

/* 533 */
.rdn-modal-content .rdn-sidewall-quantity-select,
.rdn-modal-content .rdn-accessory-quantity-select,
.rdn-modal-content .rdn-quantity-input {
    text-align: center;
    border-color: #cececb;
    width: 200px;
    float: left;
    margin-right: 10px;
    padding: 7px !important;
}


.rdn-modal-content .rdn-sidewall-quantity-select:focus,
.rdn-modal-content .rdn-sidewall-quantity-select:focus-visible {
    border-color: #cececb;
}

.rdn-modal-content .rdn-wall-option-price,
.rdn-modal-content .rdn-accessory-option-price {
    color: #212529;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    padding: 0 16px;
}

.rdn-modal-content .rdn-add-wall-btn,
.rdn-modal-content .rdn-add-accessory-btn {
    padding: 6px 15px !important;
    border: #000000 solid 1px;
    background: #000000;
    color: #ffffff;
}