/* *{
    margin:0;
    padding:0;
    box-sizing: border-box;
} */

.account-wrapper, .balance-wrapper {
    position: relative;
}

.account-wrapper .account-details, .balance-wrapper .account-details {
    display: none;
    position: absolute;
    min-width: 250px;
    padding: 10px 15px;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 5%);
    border: 1px solid #cccccc;
}

.account-wrapper .account-details {
    top: 150%;
    left: -150%;
}

.balance-wrapper .account-details {
    top: 150%;
    left: -50%;
}

.account-wrapper.is-loggedin .account-details {
    min-width: 300px;
}

.account-wrapper .account-details .account-placeholder, .balance-wrapper .account-details .account-placeholder {
    position: absolute;
    top: -27px;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: 999;
}

.account-wrapper:hover .account-details, .balance-wrapper:hover .account-details {
    display: block !important;
}

.account-wrapper .account-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.account-wrapper .account-details ul li {
    display: block;
    padding: 5px 0;
    color: #333;
}

.account-wrapper .account-details ul li.separator, .balance-wrapper .account-details ul li.separator {
    height: 1px;
    padding: 0;
    margin: 10px 0px;
    overflow: hidden;
    background-color: #dcdcdc;
}

.account-wrapper .account-details ul li a:hover {
    text-decoration: none;
}

.account-wrapper .account-details ul li .welcome-back, .account-wrapper .account-details ul li .new-customer {
    margin: 0;
    padding: 0;
}

.account-wrapper .account-details ul li a.loginBtn {
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
    background-color: #5378f4;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.account-wrapper .account-details ul li a.registerBtn {
    border: 1px solid #5378f4;
    width: 100%;
    display: block;
    color: #5378f4;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    margin-top: 15px;
}

.account-wrapper .account-details ul li a.registerBtn:hover {
    background-color: #5378f4;
    color: #fff;
}

.account-details:before, .account-details:after {
    content: '';
    position: absolute;
    top: -14px;
    margin-left: -14px;
    width: 0;
    height: 0;
    border-bottom: 14px solid #fff;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
}

.balance-wrapper .account-details:before, .balance-wrapper .account-details:after {
    top: -14px;
    margin-left: 66px;
}

.balance-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.balance-wrapper .current-account-balance {
    font-size: 14px;
}

.balance-wrapper ul li {
    margin: 8px 0px;
}

.balance-wrapper ul li.balance-account span {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}

.balance-wrapper ul li.balance-account a {
    text-align: right;
    float: right;
    font-size: 12px;
    color: #5378f4;
}

.balance-wrapper ul li.credit-history span, .balance-wrapper ul li.payment-history span {
    font-size: 14px;
}

.balance-wrapper ul li.credit-history span:nth-child(2), .balance-wrapper ul li.payment-history span:nth-child(2) {
    float: right;
    text-align: right;
    font-weight: bold;
}

.balance-wrapper a.add-account-funds {
    border: 1px solid #5378f4;
    color: #5378f4;
    background: #fff;
    width: 100%;
    display: block;
    text-align: center;
    padding: 5px 0px;
    text-decoration: none;
    border-radius: 5px;
}

.balance-wrapper a.add-account-funds:hover {
    background: #5378f4;
    color: #fff;
}

.is-loggedin.account-wrapper .account-details:before, .is-loggedin.account-wrapper .account-details:after {
    left: 46%;
}

.account-wrapper .account-details:before, .account-wrapper .account-details:after {
    left: 55%;
}

.account-details:before {
    top: -14px;
    border-bottom: 14px solid #cccccc;
}

.is-loggedin.account-wrapper .account-details:after {
    top: -12px;
}

.account-wrapper .account-details:before {
    top: -14px;
    border-bottom: 14px solid #cccccc;
}

.account-wrapper .account-details:after {
    top: -12px;
}

.card.account-balance-header {
    box-shadow: 0px 4px 10px 2px #c4cad5;
    border-radius: 5px;
}

.card.account-balance-header .card-body {
    padding: 10px;
}

.panel {
    min-height: 80px;
    border-radius: 10px;
    padding: 10px 20px;
}

.panel.panel-account-balance {
    background-color: #ffd755;
}

.panel.panel-account-balance .account-balance-value {
    font-size: 24px;
    color: #867a51;
}

.panel .panel-title {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}

.panel.panel-account-balance .panel-title {
    color: #867a51;
}

.panel p {
    margin: 0;
    padding: 0;
}

.panel-account-balance .add-funds {
    color: #fff;
    background: #c5a83c;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

.panel.panel-credit-history {
    background-color: #84b5e8;
    text-align: center;
}

.panel.panel-payment-history {
    background-color: #82ce94;
    text-align: center;
}

.panel.panel-credit-history .credit-histroy-value, .panel.panel-payment-history .payment-histroy-value {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

#accountBalanceTab {
    margin: 0;
    padding: 0;
}

#accountBalanceTab .nav-item .nav-link {
    background-color: #edeff3;
    border-color: #edeff3;
    color: #5378f4;
    text-align: center;
    font-size: 15px;
}

#accountBalanceTab .nav-item .nav-link:after {
    height: 0px;
}

#accountBalanceTab .nav-item .nav-link.active {
    background: #5378f4;
    color: #fff;
    border-color: #5378f4;
    border-radius: 5px;
}

#accountBalanceTabContent {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    box-shadow: 0px 4px 10px 2px #c4cad5;
}

@media print {
    .right_col .page-title, .main_container .nav_menu, footer, footer .pull-right, .no-print {
        display: none;
    }
    .print_0_padding {
        padding: 0;
    }
    .print_0_border {
        border: 0px;
    }
    .print-show-flex {
        display: initial;
        display: flex !important;
    }
}

.invalid-feedback {
    display: block;
}

.alert-dismissible .close {
    padding: 6px;
}

.required-input_star::before {
    content: "*";
    color: red;
    padding-right: 2px;
}

.validate_react_select .has-error {
    border: 1px solid red !important;
    border-radius: 5px;
}

.has-error input, .has-error textarea, .has-error select {
    border: 1px solid red !important;
}

.validate_react_select input {
    border: 0px !important;
}

.first--capatilize::first-letter {
    text-transform: capitalize;
}

/* product-image */

.product-image, .partner-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
}

.product-image img, .partner-image img {
    visibility: hidden;
    opacity: 0;
}

.circle-label-compare.circle-label-wishlist--off.js-remove-wishlist {
    display: block !important;
}

.circle-label-compare.circle-label-wishlist--add.js-add-wishlist {
    display: block !important;
}

.heart--big .circle-label-compare {
    font-size: 26px;
}

text.CircularProgressbar-text {
    font-size: 14px !important;
}

/* end- product image */

/* sizing guide image */

.sizing-guide-image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100%;
    width: 100%;
    min-width: 100%;
}

/* end-sizing guide image */

/* quick view modal  */

.modal--quickview .prd-block--prv-bottom .product-previews-carousel {
    padding: 0;
}

body:not(.equal-height) .modal--quickview .product-previews-carousel a>span {
    display: block;
    position: relative;
    border: 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 128%;
    height: 120px;
}

body:not(.equal-height) .modal--quickview .product-previews-carousel a>span>span {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body:not(.equal-height) .modal--quickview .product-previews-carousel a>span img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal--quickview.modal-quickview--classic .product-previews-carousel {
    height: 0;
    position: relative;
    transition: 0s;
}

@media (min-width: 480px) {
    .modal--quickview.modal-quickview--classic .product-previews-carousel {
        padding-bottom: calc(38% + 10px);
    }
}

@media (max-width: 479px) {
    .modal--quickview.modal-quickview--classic .product-previews-carousel {
        padding-bottom: calc(38% + 10px);
    }
}

@media (min-width: 992px) {
    .modal--quickview .prd-block--no-previews .prd-block_info-bottom, .modal--quickview .prd-block--no-previews .prd-block_info-top {
        width: calc(100% - 50% - 20px);
    }
    .modal--quickview.modal-quickview--classic .prd-block_info-bottom {
        width: calc(100% - 50% - 20px);
    }
    .modal--quickview.modal-quickview--classic .quickview-info {
        min-height: 65vh;
    }
}

/* end  quick view modal  */

/* header  */

.dropdn-link, .js-dropdn-close {
    cursor: pointer;
}

/* register */

.form-title {
    margin-bottom: 16px !important;
    color: #3e2b75;
    font-size: 20px;
}

/* end-register */

.prd-img {
    /* padding-bottom: 0px !important; */
}

/* margin for our partners */

.slick-track {
    margin: 0;
}

/* end - margin for our partners */

#new-stores .product-image {
    background-size: cover;
    background-color: #fff;
}

#search_input_box {
    height: 46px;
}

.store-menu-link.active {
    text-decoration: underline;
}

/* react -slick */

.store-slider-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
    width: 100%;
    min-width: 100%;
}

.store-slider-background img {
    visibility: hidden;
}

.react-slick-slider .slick-prev:before, .react-slick-slider .slick-next::before {
    font-size: 3rem;
    color: white;
}

.react-slick-slider  button.slick-arrow.slick-next {
    right: 20px !important;
}

.react-slick-slider button.slick-arrow.slick-prev {
    left: 15px !important;
}

/* end-react -slick */

.categories-line {
    padding: 2px 17px;
    font-size: 12px;
    position: relative;
    top: -1px;
}