@import "global.css";

.dfp-social {
    font-family: 'FontAwesome' !important;
    font-weight: 500 !important;
    font-size: 32px;
    padding: 5px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    margin: 0 5px;
    color: black;
}

.dfp-favorite {
    color: var(--dfp-s-ch-base-color-darker);
}

.df-fa-dark {
    border: none;
    font-size: 30px;
    color: #ffffff;
}

.fa-circle {
    border-radius: 50%;
}

.fa:hover {
    opacity: 0.9;
}

.dfp-promotion-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: var(--dfp-s-ch-base-color-darker);
    font-weight: bold;
    z-index: 9999;
    color: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dfp-promotion-banner__separator {
    border: 1px solid rgb(224, 224, 224);
    height: 20px;
    width: 2px;
    background: rgb(224, 224, 224);
}

.dfp-promotion-box {
    display: flex;
    justify-content: space-between;
    padding: 16px 8px;
    gap: 10px;
    background: linear-gradient(90deg, var(--dfp-s-ch-base-color-lighter) 0%, var(--dfp-s-ch-base-color-lighter) 109.76%); /*dfp-var */
    border-radius: 8px;
}

.dfp-promotion-box .dfp-promotion-box__title-wrapper {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 20px;
    color: rgb(38, 38, 38);
}

.dfp-promotion-box .dfp-promotion-box__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dfp-promotion-box .dfp-promotion-box__item .dfp-promotion-box__copy {
    color: var(--dfp-s-ch-base-color-darker);
}

.dfp-promotion-box .dfp-promotion-box__item path {
    fill: var(--dfp-s-ch-base-color-darker);
}

.dfp-promotion-box .dfp-promotion-box__item:last-child {
    cursor: pointer;
}

.dfp-tooltip {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.dfp-tooltip .dfp-tooltip__text {
    width: 140px;
    background-color: var(--dfp-s-ch-base-color-darker);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.dfp-tooltip .dfp-tooltip__text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dfp-s-ch-base-color-darker) transparent transparent transparent;
}

.dfp-tooltip:hover .dfp-tooltip__text {
    visibility: visible;
    opacity: 1;
}

/*=========== user panel module style =============*/

.cart .dfp-seller-chat {
    position: relative;
    background: transparent;
    border: 1px solid var(--dfp-s-ch-base-color-darker);
    border-radius: 5px;
    color: var(--dfp-s-ch-base-color-darker);
}

.dfp-size-guide__modal {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
}

.dfp-size-guide__modal-body {
    background: #fff;
    max-width: 600px;
    margin: 10% auto;
    padding: 20px;
    position: relative;
}

.dfp-size-guide__modal-close {
    position: absolute;
    top: 10px;
    left: 15px;
    cursor: pointer;
}

.cart_totals .wc-proceed-to-checkout a:last-child {
    display: none !important;
}

/* ========================== ====================== */
.dfp-hot-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 241, 241);
    padding: 5px 10px;
    border-radius: 5px;
}

.dfp-hot-offer .dfp-hot-offer__title {
    display: block;
    font-weight: bold;
    color: rgb(250, 77, 86);
    font-size: 14px;
}

.dfp-hot-offer .count-down {
    display: flex;
    flex-direction: row-reverse;
    border-radius: 5px;
    align-items: center;
    color: rgb(250, 77, 86);
}

.dfp-hot-offer .count-down__item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: rgb(250, 77, 86);
    border-radius: 6px;
    padding: 6px;
    width: 36px;
    height: 28px;
}

.dfp-hot-offer .count-down__separator {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: rgb(250, 77, 86);
    margin: 0 5px;
}

.dfp-hot-offer .count-down__value {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: rgb(255, 255, 255);
}





