.wrapper-box {
    margin-top: 10px;
    border-top: 1px solid #ececec;
    padding-top: 16px;
}
.cart-list-box {
    border: 1px solid rgba(152, 148, 148, 1);
    padding: 16px;
    margin-top: 16px;
}
.cart-list-box .check-all label {
    color: #333;
    background-color: rgba(223, 223, 244, 1);
    padding: 3px 12px;
    border-radius: 30px;
}
.cart-list-box .cart-list {
    margin-top: 16px;
}
.cart-list-box .cart-list .form-check {
    display: flex;
}
.cart-list-box .cart-list label {
    display: flex;
    align-items: center;
}
.cart-list-box .cart-list label .desc {
    display: none;
}
.cart-list-box .cart-list img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin: 0 16px;
    object-fit: cover;
}
.cart-list-box .cart-list button {
    margin: 0 0 0 auto;
    align-self: center;
    height: 30px;
    font-size: 14px;
}
.cart-list-box .cart-list.sold-out .sold-out-info {
    display: block;
}
.cart-list-box .cart-list.pre-order-ended .pre-order-ended-info {
    display: block;
}
.cart-list-box .form-check {
    position: relative;
}
.cart-list-box .form-check .sold-out-info {
    display: none;
    position: absolute;
    top: 50%;
    left: -16px;
    right: -16px;
    transform: translateY(-50%);
    background-color: rgba(254, 135, 137, 0.5);
    border: 1px solid rgba(254, 135, 137, 1);
    color: rgba(225, 37, 37, 1);
    text-align: center;
}
.cart-list-box .form-check .pre-order-ended-info {
    display: none;
    position: absolute;
    top: 50%;
    left: -16px;
    right: -16px;
    transform: translateY(-50%);
    background-color: rgba(254, 135, 137, 0.5);
    border: 1px solid rgba(254, 135, 137, 1);
    color: rgba(225, 37, 37, 1);
    text-align: center;
}
.ctrl-group-box {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}
.ctrl-group-box .desc {
    display: block;
}
.num-ctrl-box {
    display: flex;
    align-items: center;
    border: 1px #333 solid;
    width: fit-content;
}
.num-ctrl-box .num-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    width: 28px;
    cursor: pointer;
}
.num-ctrl-box .num-item:nth-child(2) {
    width: 48px;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    cursor: none;
}
.num-ctrl-box input {
    width: 100%;
    border: none !important;
    text-align: center;
    outline: none;
}
.order-transport-box {
    width: 100%;
    background-color: rgba(245, 245, 245, 1);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.order-transport-box .transport-item:nth-child(2) {
    order: 3;
}
.order-transport-box .transport-item:nth-child(3) {
    order: 2;
    justify-self: end;
}
.order-transport-box .address-info {
    font-size: 13px;
    color: #999;
}
.alert-box.order-success-modal {
    text-align: center;
}
.alert-box.order-success-modal .alert-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    height: 50vh;
    background-color: rgba(223, 223, 244, 1);
}
.alert-box.order-success-modal .alert-content img {
    width: 70%;
}
.alert-box.order-success-modal .alert-content .alert-info-box {
    margin: 2.5rem 1.5rem 0;
}
.alert-box.order-success-modal .alert-content .alert-info-box div:nth-child(1) {
    font-size: 1.5em;
    color: rgba(117, 130, 177, 1);
}
.alert-box.order-success-modal .alert-content .alert-info-box div:nth-child(2) {
    font-size: 1em;
    color: rgba(247, 135, 195, 1);
}
.order-info-box {
    text-align: left;
    padding: 0 16px;
}
.order-info-box .info-list {
    display: flex;
    align-items: center;
}
.order-info-box .info-list + .info-list {
    margin-top: 8px;
}
.order-info-box .info-list span {
    display: inline;
}
.order-info-box .info-list span:nth-child(1) {
    width: 100px;
    text-align: left;
}
.order-info-box .info-list button {
    display: inline-block;
    border-radius: 15px;
    background: rgba(209, 178, 225, 1);
    color: #fff;
    margin-left: auto;
    margin-right: 0;
}
.order-info-box .info-list #order-btn {
    width: 100%;
    margin-top: 1.5rem;
}
.plower-coin-box .plower-coin-item {
    display: flex;
    align-items: center;
}
.plower-coin-box .plower-coin-item + .plower-coin-item {
    margin-top: 16px;
}
.plower-coin-box .plower-coin-item img {
    width: 30px;
    margin-right: 8px;
}
.plower-coin-box .plower-coin-item .have-coin {
    width: 50px;
    border: 1px solid rgba(209, 178, 225, 1);
    color: rgba(249, 136, 196, 1);
    padding: 3px 16px;
    margin-left: 12px;
}
.plower-coin-box .plower-coin-item .coin-ctrl-box {
    display: flex;
    align-items: center;
    margin-left: 12px;
    border: 1px solid rgba(209, 178, 225, 1);
}
.plower-coin-box .plower-coin-item .coin-ctrl-box .coin-reduce, .plower-coin-box .plower-coin-item .coin-ctrl-box .coin-add {
    width: 30px;
    text-align: center;
    cursor: pointer;
}
.plower-coin-box .plower-coin-item .coin-ctrl-box input {
    width: 100%;
    max-width: 60px;
    border-left: 1px solid rgba(209, 178, 225, 1);
    border-right: 1px solid rgba(209, 178, 225, 1);
}
.address-list-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.address-list-box .address-item {
    flex: 1;
    margin: 3px;
    border: 1px solid #fff;
    cursor: pointer;
}
.address-list-box .address-item.focus, .address-list-box .address-item:hover {
    border-radius: 16px;
    border: 1px solid rgba(249, 136, 196, 1);
}
.address-list-box .address-item img {
    width: 100%;
}
.alert-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem;
}
.alert-footer-item {
    display: flex;
    align-items: center;
}
.alert-footer-item:first-child {
    flex: none;
    width: 80%;
}
@media (min-width: 576px) {
    .ctrl-group-box {
        font-size: 16px;
   }
}
@media (min-width: 768px) {
    .cart-list-box .cart-list .form-check {
        display: flex;
        flex-direction: row;
        align-items: center;
   }
    .cart-list-box .cart-list label .desc {
        display: block;
   }
    .cart-list-box .cart-list button {
        margin: 0;
        font-size: 16px;
   }
    .ctrl-group-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-left: auto;
   }
    .ctrl-group-box .desc {
        display: none;
   }
    .ctrl-group-box .price-box {
        margin: auto 1.5rem;
        order: 3;
   }
    .ctrl-group-box .num-ctrl-box {
        order: 2;
   }
    .order-transport-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
   }
    .order-transport-box .transport-item:nth-child(2) {
        order: 2;
   }
    .order-transport-box .transport-item:nth-child(3) {
        order: 3;
   }
    .alert-box.order-success-modal .alert-content {
        flex-direction: row;
        max-width: 70%;
        padding: 2.4rem;
        height: 70vh;
   }
    .alert-box.order-success-modal .alert-content img {
        width: 80%;
   }
    .alert-box.order-success-modal .alert-content .alert-info-box div:nth-child(1) {
        font-size: 2em;
   }
    .alert-box.order-success-modal .alert-content .alert-info-box div:nth-child(2) {
        font-size: 1.2em;
   }
}
@media (min-width: 992px) {
    .alert-box.order-success-modal .alert-content {
        padding: 3rem;
   }
    .alert-box.order-success-modal .alert-content img {
        width: 90%;
   }
}
