.modtrjct-cart-selection {
    display: flex;
    background-color: #fff;
    border-top: 1px solid #e8139f;
    border-bottom: 1px solid #e8139f;
    padding: 0;
    position: sticky;
    top: 0;
    margin: 0;
    z-index: 9994;
}

.modtrjct-cart-selection > .row {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-basis: 100%;
    position: relative;
    justify-content: space-between;
}

.modtrjct-cart-selection > .row > .option {
    margin: 1em 1em 1em 0;
}

.modtrjct-cart-selection > .row > .option.counter-container {
    font-size: 1.0rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.modtrjct-cart-selection > .row > .option.counter-container > .credits-counter {
    margin: 0 0.5em;
    color: #e8139f;
    font-size: 1.4rem;
}

.modtrjct-cart-selection > .row > .option.counter-container > .credits-count-text {
    margin-left: 0.75em;
}

.modtrjct-cart-selection > .row > .option.cart-button {
    display: flex;
    position: relative;
    margin-left: 0.75em;
    flex: 1 1 100%;
    max-width: 200px;
}

.modtrjct-cart-selection > .row > .option.cart-button > .modtrjct-button.button-general > button {
    border: 0;
    padding: 0;
    font-size: 1.6rem;
}

.modtrjct-cart-selection > .row > .option.cart-button > .modtrjct-button.button-general > button > span {
    margin: 0;
}

.modtrjct-cart-selection > .row > .option.cart-button > .modtrjct-button.button-general > button:not([disabled]):hover {
    background-color: transparent;
    color: #1a438c;
}

.modtrjct-cart-selection > .row > .option.cart-button > .modtrjct-button.button-general > button > .button-text {
    font-size: 1rem;
    margin-left: 0.5em;
}

.modtrjct-cart-selection > .row > .option.cart-button > .cart-selection-count {
    position: absolute;
    border-radius: 50%;
    background-color: #e8139f;
    color: #fff;
    width: 18px;
    height: 18px;
    top: 0;
    left: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}

.modtrjct-cart-selection > .row > .option.response {
    color: #FF4136;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    word-break: break-all;
}

.modtrjct-cart-selection > .row > .option.dropdown-content.cart-selection-popup {
    display: none;
    position: absolute;
    background-color: #fff;
    max-width: 400px;
    right: 0;
    top: 100%;
    margin: 0;
    z-index: 9999;
    border: 1px solid #233e80;
    box-shadow: 0 2px 12px rgba(0,0,0,0.24);
    width: 100%;
}

.modtrjct-cart-selection > .row > .option.dropdown-content.cart-selection-popup:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: -10px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: #233e80 transparent;
    left: 49%;
}

.modtrjct-cart-selection > .row > .option.dropdown-content.cart-selection-popup.show {
    display: flex;
    flex-direction: column;
}

.modtrjct-cart-selection > .row > .option.dropdown-content.cart-selection-popup > .item-selection-container {
    padding: 1em 1em;
    display: flex;
    flex-direction: column;
}