.banyan-video-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.marketplace-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 33%;
    padding: 10px;
}
.marketplace-card__thumbnail {
    padding-bottom: 5px;
    border-radius: 10px;
}
.marketplace-card__thumbnail:hover {
    transform: scale(1.05);
    transition: all 100ms linear;
}
.marketplace-card a:link,
.marketplace-card a:visited {
    text-decoration: none;
}
.marketplace-card__subtitle {
    padding-top: 15px;
    text-transform: uppercase;
    font-weight: normal;
    color: #000;
}
.marketplace-card__title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none!important;
    line-height: 1.2em;
    color: #111111;
}
.marketplace-card__wishlist-add {
    margin-top: auto;
}
.marketplace-card button {
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
}
.marketplace-card__learn-more {
    font-size: 14px;
    font-weight: 400;
    fill: #000000;
    color: #000000;
}
.marketplace-card__learn-more:hover {
    color: #004171;
    text-decoration: underline;
}

/** Modal */
.banyan-wishlist-modal {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    z-index: 999;
}
.banyan-wishlist-modal__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #000;
    opacity: 0.7;
    top: 0;
    left: 0;
}
.banyan-wishlist-modal__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    margin: 10vh auto 0;
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px 5px #000;
    -moz-box-shadow: 0px 0px 30px 5px #000;
    box-shadow: 0px 0px 30px 5px #000;
}
.banyan-wishlist-modal__content-wrap {
    max-width: 400px;
    margin: 0 auto;
}
.banyan-wishlist-modal__content-wrap ul {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 5px 20px;
    max-height: 160px;
    overflow-y: auto;
    padding: revert;
    margin: revert;
    padding-left: 20px;
}
.banyan-wishlist-modal__content .product_list_item {
    font-size: 14px;
    line-height: normal;
}
.banyan-wishlist-modal__content .product_list_item:hover {
    color: red;
    cursor: pointer;
}
.bayan-marketplace-wishlist-form input {
    margin: 5px 0; 
}
.bayan-marketplace-wishlist-form .wishlist-modal-submit-btn {
    width: 100%;
    margin-top: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 16px;
}
.bayan-marketplace-wishlist-form .wishlist-modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent!important;
    color: #000!important;
    box-shadow: none;
}
.banyan-wishlist-modal__open-button,
.marketplace-video-single__add-wishlist .marketplace-card__wishlist-add {
    padding: 20px 30px;
    font-size: 18px;
}
.banyan-wishlist-modal .wishlist-modal-logo {
    width: 50px;
}
.banyan-wishlist-modal .wishlist-modal-hdr,
.banyan-wishlist-modal .wishlist-modal-center {
    text-align: center;
}
.banyan-wishlist-modal .wishlist-modal-hdr {
    font-weight: 600;
}
.wishlist-modal-desc {
    font-size: 14px;
    text-align: center;
}
.wishlist-vid-btn p {
    margin-bottom: 0;
}
.row-vid-buttons .banyan-back-button,
.row-vid-buttons button {
    width: 100%;
    padding: 15px 30px!important;
    font-size: 18px;
    line-height: 1.2;
}
.row-vid-buttons .banyan-back-button {
    border: 2px solid var(--ast-global-color-1);
    color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-4);
    font-family: inherit;
    font-weight: 500;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    display: block;
}
.banyan-back-button:hover {
    color: var(--ast-global-color-4);
    background-color: var(--ast-global-color-2);
    border: 2px solid var(--ast-global-color-2);
}
.row-vid-buttons button {
    border: 2px solid var(--ast-global-color-1);
}
.row-vid-buttons button:hover {
    border: 2px solid var(--ast-global-color-2);
}

@media (max-width:921px){
    .marketplace-card {
        width: 50%;
    }
}
@media (max-width:768px){ 
    .row-vid-buttons .banyan-back-button,
    .row-vid-buttons button {
        padding: 10px 20px!important;
        font-size: 16px!important;
    }
    .marketplace-card button {
        max-width: 180px;
        margin: 0 auto;
    }
}
@media (max-width:544px){
    .marketplace-card {
        width: 100%;
    }
}