.share-cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}

#shareCartModal {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 9999;
    width: 40%;
    max-width: 90%;
}

.modal-share-cart {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.header-share-cart{
    border-bottom: 1px solid #E7E7E7;
    display: flex;
    align-content:space-between;
}

.share-cart-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0px;
    width:100%;
}

.header-share-cart .btn-close {
    background-color: #fff;
    border:0px;
    color: #000;
}

.header-share-cart .btn-close:hover {
    background-color: #fff;
    border:0px;
    color: #000;
}

.box-tutorial {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 20px;
}

.col-step {
    flex: 1;
    padding: 0 10px;
    position: relative;
}

.step-number {
    /* font-family: Ubuntu; */
    font-size: 180px;
    font-weight: 400;
    font-weight: bold;
    color: rgba(255, 90, 0, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.title-step {
    font-size: 16px;
    font-weight: bold;
    color: #ff5a00;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.detail-step {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

.box-message {
    text-align:center;
}

.box-message span.alert-message{
    color: #ff5a00;
    font-size: 1rem;
}

.share-cart-content {
    border:1px solid #FBDFD0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

input#shareCartLink{
    color: #ff5a00;
    opacity:0.7;
    border: 0px;
}

.share-cart-content button.btn-copy {
    background-color: #fff;
    color:#EA7021;
    font-size: 20px;
    padding:0px;
    border:unset;
    margin-right:8px;
}

.share-cart-content button.btn-copy:hover {
    background-color: #fff;
    border:unset;
}

#shareCartLink {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-copy {
    margin-left: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.btn-close {
    background: #eee;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.right-content .btn-share-cart{
    background-color: #fff;
    color:#EA7021;
    border: 1px solid #EA7021;
    border-radius:8px;
    padding: 7px;
    margin-right:10px;
    height: auto;
    text-transform: uppercase;
    font-weight: 700;
}

body.checkout-cart-index .right-content form > .action.clear {
    border: 1px solid #EA7021;
    padding: 7px;
    border-radius:8px;
    height: 36px;
}

body.checkout-cart-index .right-content form .action.clear > span {
    color:#EA7021;
    opacity: unset;
    font-weight: 700;
    font-family: poppins;
}

.right-content .btn-share-cart:hover{
    background-color: #fff;
    color:#EA7021;
    border-right: 1px solid #EA7021;
}
.right-content .btn-share-cart:before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../icon/ShareCartIcon.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
    margin-top: 0px;
    vertical-align: sub;
}

body.checkout-cart-index .right-content .action.clear span {
    font-weight: unset;
    font-size: unset;
    line-height: unset;
    text-align: unset;
    color: #EA7021;
    opacity: unset;
    text-transform: unset;
}

.minicart-wrapper .block-minicart #minicart-content-wrapper .block-content > .actions {
    display:flex;
    padding: 0px;
    margin-bottom:15px;
}

.minicart-wrapper .block-minicart #minicart-content-wrapper .block-content > .actions .secondary {
    width: 100%;
    min-height:45px;
    margin: 0px 5px 0px 0px;
}

.minicart-wrapper .block-minicart #minicart-content-wrapper .block-content > .actions .primary {
    width: 100%;
    min-height:45px;
    margin: 0px 0px 0px 5px;
}

.minicart-wrapper .block-minicart #minicart-content-wrapper .block-content .actions button {
    width: 100%;
    height:100%;
    padding: 0px;
}

.minicart-wrapper .block-minicart #minicart-content-wrapper .block-content .actions .secondary > button {
    color:#EA7021;
    background-color:unset;
}

.minicart-wrapper .block-minicart #minicart-content-wrapper .block-content .actions .secondary > button:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../icon/ShareCartIcon.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    margin-top: 0px;
    vertical-align: sub;
}


/* ======== Responsive Styles ========= */

@media screen and (max-width: 1440px) {
    #shareCartModal {
        width: 60%;
    }
}

@media screen and (max-width: 980px) {
    #shareCartModal {
        width: 80%;
        padding: 15px;
    }
}

@media screen and (max-width: 680px) {
    #shareCartModal {
        width: 95%;
        top: 5%;
        padding: 10px;
        height: 100vh;
        max-height: 90vh;
        overflow-y: auto;
    }

    .box-tutorial {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 40px;
    }

    .col-step {
        margin-bottom: 30px;
        padding: 0;
    }

    .header-share-cart {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .share-cart-title {
        font-size: 16px;
    }

    .step-number {
        font-size: 80px;
    }

    .title-step {
        font-size: 14px;
    }

    .detail-step {
        font-size: 12px;
    }

    .box-message span.alert-message {
        font-size: 0.9rem;
        display: block;
        padding: 5px;
    }

    .btn-copy {
        font-size: 16px;
    }
}

