

/**************************/
/* STYLES FOR THE SPINNER */
/**************************/
body {
    background: #ffffff !important;

}
body ::-webkit-scrollbar-thumb {
    cursor: pointer;
    border-radius: 5px;
    background: #d2d1d1;
}

body ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
    height: 4px;
}
.popup-modal-register {
    padding-right: 15px !important;
}
.cm-e-menu ul {
    display: flex !important;
    justify-content: center;
    overflow: hidden;
    overflow-x: auto;
}
.preloader-wrapper
{
    position: relative;

    display: inline-block;

    width: 50px;
    height: 50px;
}
.navbar .navbar-brand h2 {
    font-size: 20px;
}
.preloader-wrapper.small
{
    width: 36px;
    height: 36px;
}

.preloader-wrapper.big
{
    width: 64px;
    height: 64px;
}

.preloader-wrapper.active
{
    /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
    -webkit-animation: container-rotate 1568ms linear infinite;
            animation: container-rotate 1568ms linear infinite;
}

.slider93 .grid-img img {

    object-fit: cover;
}
.slider93 .grid-img {
    margin-bottom: 15px;
}
.navbar.builder_bg {
    box-shadow: none;
    background: #fff;
    color: #494949;
    border-top: solid 1px #ddd;
}

.sticky-top {
    background: #fff;
}

@-webkit-keyframes container-rotate
{
    to
    {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes container-rotate
{
    to
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.spinner-layer
{
    position: absolute;

    width: 100%;
    height: 100%;

    opacity: 0;
    border-color: #ff4081;
}

.spinner-blue,
.spinner-blue-only
{
    border-color: #4285f4;
}

.spinner-red,
.spinner-red-only
{
    border-color: #db4437;
}

.spinner-yellow,
.spinner-yellow-only
{
    border-color: #f4b400;
}

.spinner-green,
.spinner-green-only
{
    border-color: #0f9d58;
}



/**
 * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
 *
 * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
 * guarantee that the animation will start _exactly_ after that value. So we avoid using
 * animation-delay and instead set custom keyframes for each color (as redundant as it
 * seems).
 *
 * We write out each animation in full (instead of separating animation-name,
 * animation-duration, etc.) because under the polyfill, Safari does not recognize those
 * specific properties properly, treats them as -webkit-animation, and overrides the
 * other animation rules. See https://github.com/Polymer/platform/issues/53.
 */
.active .spinner-layer.spinner-blue
{
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
            animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.active .spinner-layer.spinner-red
{
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
            animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.active .spinner-layer.spinner-yellow
{
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
            animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.active .spinner-layer.spinner-green
{
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
            animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.active .spinner-layer,
.active .spinner-layer.spinner-blue-only,
.active .spinner-layer.spinner-red-only,
.active .spinner-layer.spinner-yellow-only,
.active .spinner-layer.spinner-green-only
{
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
            animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
    /* durations: 4 * ARCTIME */

    opacity: 1;
}

@-webkit-keyframes fill-unfill-rotate
{
    12.5%
    {
        -webkit-transform: rotate(135deg);
    }
    /* 0.5 * ARCSIZE */
    25%
    {
        -webkit-transform: rotate(270deg);
    }
    /* 1   * ARCSIZE */
    37.5%
    {
        -webkit-transform: rotate(405deg);
    }
    /* 1.5 * ARCSIZE */
    50%
    {
        -webkit-transform: rotate(540deg);
    }
    /* 2   * ARCSIZE */
    62.5%
    {
        -webkit-transform: rotate(675deg);
    }
    /* 2.5 * ARCSIZE */
    75%
    {
        -webkit-transform: rotate(810deg);
    }
    /* 3   * ARCSIZE */
    87.5%
    {
        -webkit-transform: rotate(945deg);
    }
    /* 3.5 * ARCSIZE */
    to
    {
        -webkit-transform: rotate(1080deg);
    }
    /* 4   * ARCSIZE */
}

@keyframes fill-unfill-rotate
{
    12.5%
    {
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg);
    }
    /* 0.5 * ARCSIZE */
    25%
    {
        -webkit-transform: rotate(270deg);
                transform: rotate(270deg);
    }
    /* 1   * ARCSIZE */
    37.5%
    {
        -webkit-transform: rotate(405deg);
                transform: rotate(405deg);
    }
    /* 1.5 * ARCSIZE */
    50%
    {
        -webkit-transform: rotate(540deg);
                transform: rotate(540deg);
    }
    /* 2   * ARCSIZE */
    62.5%
    {
        -webkit-transform: rotate(675deg);
                transform: rotate(675deg);
    }
    /* 2.5 * ARCSIZE */
    75%
    {
        -webkit-transform: rotate(810deg);
                transform: rotate(810deg);
    }
    /* 3   * ARCSIZE */
    87.5%
    {
        -webkit-transform: rotate(945deg);
                transform: rotate(945deg);
    }
    /* 3.5 * ARCSIZE */
    to
    {
        -webkit-transform: rotate(1080deg);
                transform: rotate(1080deg);
    }
    /* 4   * ARCSIZE */
}

@-webkit-keyframes blue-fade-in-out
{
    from
    {
        opacity: 1;
    }
    25%
    {
        opacity: 1;
    }
    26%
    {
        opacity: 0;
    }
    89%
    {
        opacity: 0;
    }
    90%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 1;
    }
}

@keyframes blue-fade-in-out
{
    from
    {
        opacity: 1;
    }
    25%
    {
        opacity: 1;
    }
    26%
    {
        opacity: 0;
    }
    89%
    {
        opacity: 0;
    }
    90%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 1;
    }
}

@-webkit-keyframes red-fade-in-out
{
    from
    {
        opacity: 0;
    }
    15%
    {
        opacity: 0;
    }
    25%
    {
        opacity: 1;
    }
    50%
    {
        opacity: 1;
    }
    51%
    {
        opacity: 0;
    }
}

@keyframes red-fade-in-out
{
    from
    {
        opacity: 0;
    }
    15%
    {
        opacity: 0;
    }
    25%
    {
        opacity: 1;
    }
    50%
    {
        opacity: 1;
    }
    51%
    {
        opacity: 0;
    }
}

@-webkit-keyframes yellow-fade-in-out
{
    from
    {
        opacity: 0;
    }
    40%
    {
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    75%
    {
        opacity: 1;
    }
    76%
    {
        opacity: 0;
    }
}

@keyframes yellow-fade-in-out
{
    from
    {
        opacity: 0;
    }
    40%
    {
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    75%
    {
        opacity: 1;
    }
    76%
    {
        opacity: 0;
    }
}

@-webkit-keyframes green-fade-in-out
{
    from
    {
        opacity: 0;
    }
    65%
    {
        opacity: 0;
    }
    75%
    {
        opacity: 1;
    }
    90%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}

@keyframes green-fade-in-out
{
    from
    {
        opacity: 0;
    }
    65%
    {
        opacity: 0;
    }
    75%
    {
        opacity: 1;
    }
    90%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}

/**
 * Patch the gap that appear between the two adjacent div.circle-clipper while the
 * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
 */
.gap-patch
{
    position: absolute;
    top: 0;
    left: 45%;

    overflow: hidden;

    width: 10%;
    height: 100%;

    border-color: inherit;
}

.gap-patch .circle
{
    left: -450%;

    width: 1000%;
}

.circle-clipper
{
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 50%;
    height: 100%;

    border-color: inherit;
}
.user-dropdown .fa-2x {
    font-size: 22px !important;
}
.circle-clipper .circle
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 200%;
    height: 100%;

    -webkit-animation: none;
            animation: none;

    border-width: 3px;
    /* STROKEWIDTH */
    border-style: solid;
    border-color: inherit;
    border-bottom-color: transparent !important;
    border-radius: 50%;
}

.circle-clipper.left .circle
{
    left: 0;

    -webkit-transform: rotate(129deg);
        -ms-transform: rotate(129deg);
            transform: rotate(129deg);

    border-right-color: transparent !important;
}

.circle-clipper.right .circle
{
    left: -100%;

    -webkit-transform: rotate(-129deg);
        -ms-transform: rotate(-129deg);
            transform: rotate(-129deg);

    border-left-color: transparent !important;
}

.active .circle-clipper.left .circle
{
    /* duration: ARCTIME */
    -webkit-animation: left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
            animation: left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.active .circle-clipper.right .circle
{
    /* duration: ARCTIME */
    -webkit-animation: right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
            animation: right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

@-webkit-keyframes left-spin
{
    from
    {
        -webkit-transform: rotate(130deg);
    }
    50%
    {
        -webkit-transform: rotate(-5deg);
    }
    to
    {
        -webkit-transform: rotate(130deg);
    }
}

@keyframes left-spin
{
    from
    {
        -webkit-transform: rotate(130deg);
                transform: rotate(130deg);
    }
    50%
    {
        -webkit-transform: rotate(-5deg);
                transform: rotate(-5deg);
    }
    to
    {
        -webkit-transform: rotate(130deg);
                transform: rotate(130deg);
    }
}

@-webkit-keyframes right-spin
{
    from
    {
        -webkit-transform: rotate(-130deg);
    }
    50%
    {
        -webkit-transform: rotate(5deg);
    }
    to
    {
        -webkit-transform: rotate(-130deg);
    }
}

@keyframes right-spin
{
    from
    {
        -webkit-transform: rotate(-130deg);
                transform: rotate(-130deg);
    }
    50%
    {
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
    to
    {
        -webkit-transform: rotate(-130deg);
                transform: rotate(-130deg);
    }
}

#spinnerContainer.cooldown
{
    /* duration: SHRINK_TIME */
    -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(.4, 0, .2, 1);
            animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(.4, 0, .2, 1);
}

@-webkit-keyframes fade-out
{
    from
    {
        opacity: 1;
    }
    to
    {
        opacity: 0;
    }
}

@keyframes fade-out
{
    from
    {
        opacity: 1;
    }
    to
    {
        opacity: 0;
    }
}

/* STYLES FOR THE SPINNER END */

h2,h3{
	font-size: 25px;
}
.display-4 {
    font-size: 28px;
}

/* Checkout */
@media screen and (min-width: 992px) {
  .checkout .col-lg-3 {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .checkout .col-lg-9 {
    -ms-flex: 0 70%;
    flex: 0 0 70%;
    max-width: 70%; } }

  .checkout .form-control + .form-control {
    margin-top: 2rem; }
.checkout .form-control:not(:focus) {
  background-color: #f9f9f9; }
.checkout textarea.form-control {
  min-height: 150px; }
.checkout .custom-control {
  margin-top: 2.5rem; }
  .checkout .custom-control + .custom-control {
    margin-top: 1.8rem; }
  .checkout .custom-control + label {
    margin-top: 1rem; }
  .checkout .custom-control .custom-control-label {
    font-weight: 400;
    color: #333; }

.checkout-title {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-top: 2.2rem;
  margin-bottom: 1.8rem; }

.checkout-discount {
  position: relative;
  max-width: 340px;
  margin-bottom: .5rem; }
  .checkout-discount label {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    font-weight: 400;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    opacity: 1;
    transition: all .3s; }
    .checkout-discount label span {
      color: #cc6666; }
  .checkout-discount .form-control {
    background-color: transparent !important;
    border-radius: .3rem;
    border: .1rem dashed #d7d7d7;
    padding-left: 1.1rem;
    padding-right: 1.1rem; }
    .checkout-discount .form-control:focus {
      border-color: #cc6666;
      outline: none !important; }

.summary {
    padding: 1rem 1rem 2rem;
    border: .1rem dashed #d7d7d7;
    border-radius: .3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.summary-title {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0;
  padding-bottom: 1.7rem;
  border-bottom: .1rem solid #cccccc;
  margin-bottom: 2.1rem; }

.table.table-summary {
    line-height: 1.43;
    color: #666666;
    border: none;
    margin-bottom: 30px;
}
tr.summary-subtotal td {
    text-align: left;
}
  .table.table-summary a {
    color: inherit; }
    .table.table-summary a:hover, .table.table-summary a:focus {
      color: #cc6666; }
  .table.table-summary thead th,
  .table.table-summary .summary-subtotal td {
    color: #333333;
    font-weight: 400;
    font-size: 1.1rem; }
  .table.table-summary thead th {
    border-bottom: none;
    padding: 0 0 .3rem; }
  .table.table-summary tbody td {
    padding: 0;
    height: 50px;
    font-size: 12px;
    border-bottom: .1rem solid #ebebeb; }
  .table.table-summary thead th,
  .table.table-summary tbody td {
    vertical-align: middle;
    border-top: none; }
    .table.table-summary thead th:last-child,
    .table.table-summary tbody td:last-child {
      text-align: right;
      min-width: 100px; }
  .table.table-summary .summary-total td {
    font-weight: 400;
    font-size: 1.6rem;
    color: #cc6666;
    border-bottom: none; }

.accordion-summary {
  margin-bottom: 3.2rem; }
  .accordion-summary .card {
    color: #999999;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.67;
    border: none;
    background-color: transparent; }
  .accordion-summary .card-title {
    font-weight: 300;
    font-size: 1.4rem;
    color: #333333;
    letter-spacing: 0; }
    .accordion-summary .card-title a {
      color: inherit;
      padding: .7rem 0 .7rem 3rem; }
      .accordion-summary .card-title a img {
        margin-top: 1rem; }
      .accordion-summary .card-title a:hover, .accordion-summary .card-title a:focus {
        color: inherit; }
      .accordion-summary .card-title a small {
        font-size: 1.1rem;
        color: #999999; }
      .accordion-summary .card-title a:before {
        content: '';
        width: 1.6rem;
        height: 1.6rem;
        border-radius: 50%;
        border: 0.1rem solid #cc6666;
        right: auto;
        left: 0;
        top: .7rem;
        transform: translateY(0);
        -ms-transform: translateY(0); }
      .accordion-summary .card-title a:after {
        content: '';
        display: block;
        width: .6rem;
        height: .6rem;
        position: absolute;
        left: .5rem;
        top: 1.2rem;
        border-radius: 50%;
        background-color: #cc6666;
        visibility: visible;
        opacity: 1;
        transition: all .3s; }
      .accordion-summary .card-title a.collapsed:before {
        border-color: #dadada; }
      .accordion-summary .card-title a.collapsed:after {
        opacity: 0;
        visibility: hidden; }
  .accordion-summary .card-body {
    padding: .4rem 0 .8rem 3rem; }

.paypal-link {
  cursor: pointer;
  margin-top: .2rem; }
  .paypal-link:hover, .paypal-link:focus {
    color: #cc6666 !important; }

    .navbar.builder_bg li a {
        font-size: 15px;
    }

@media screen and (min-width: 992px) {
  .summary {
    margin-top: 0; } }
/*--------------------- 5.14.Wishlist -------------------- */
/* Wishlist */
.table td {
  padding-top: 3rem;
  padding-bottom: 3rem; }
.table .price-col {
    width: 180px;
    color: #333333;
    font-weight: 500;
    font-size: .8rem;
}
.table .stock-col {
  width: 160px;
  font-weight: 400;
  font-size: 1.6rem; }
.table .action-col {
  width: 202px; }
  .table .action-col .btn {
    height: 40px;
    padding-top: .55rem;
    padding-bottom: .55rem;
    font-size: 1.3rem;
    text-transform: uppercase; }
    .table .action-col .btn i {
      font-size: 1.8rem;
      margin-right: 1rem !important;
      margin-left: 0 !important; }
    .table .action-col .btn.disabled {
      opacity: 1 !important;
      color: #cccccc !important;
      cursor: default;
      pointer-events: none;
      background-color: #fafafa !important;
      border-color: #ebebeb !important; }
.table .remove-col {
    padding-right: 10px;
    padding-left: 10px;
    width: 50px;
    text-align: right;
}
  .table .remove-col .btn-remove {
    margin-right: -.7rem; }

.product-col .product {
  display: flex;
  align-items: center;
  margin: 0;
  padding-right: 2rem;
  box-shadow: none; }
.product-col .product-media {
  display: inline-block;
  margin: 0;
  margin-right: 2.8rem;
  flex-shrink: 0;
  max-width: 60px; }
.product-col .product-title {
  display: inline-block;
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0; }
  .product-col .product-title a {
    color: inherit; }
    .product-col .product-title a:hover, .product-col .product-title a:focus {
      color: #cc6666; }

.in-stock {
  color: #a6c76c; }

  .table td, .table th {
    vertical-align: middle !important;
}
table.table.table-cart.table-mobile {
    margin-bottom: 30px;
}

.out-of-stock {
  color: #ef837b; }

.btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #cccccc;
  background-color: transparent;
  font-size: 1.7rem;
  line-height: 1;
  border: none;
  outline: none;
  transition: all .35s; }
  .btn-remove:hover, .btn-remove:focus {
    color: #333333; }

.action-col .dropdown-menu {
  color: #666;
  border-radius: 0;
  width: 100%;
  font-size: 1.3rem;
  padding-top: .5rem;
  padding-bottom: .5rem; }
.action-col .dropdown-item {
  padding: .5rem 1.5rem;
  transition: background .35s ease, color .1s ease; }
.action-col .dropdown-item.active,
.action-col .dropdown-item:active,
.action-col .dropdown-item:hover,
.action-col .dropdown-item:focus {
  color: #fff;
  background-color: #cc6666; }
  .pagesLinks li a {
    text-decoration: none !important;
}
.header-search-wrapper.search-wrapper-wide.header-search_result input.form-control {
    height: 36px !important;
    border-radius: 5px;
}
.navbar li.nav-item {
    align-items: center;
    display: flex;
}

.copyright {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    align-items: center;

}
.copyright p.text-center.footer-text {
    margin: 0;
}
.copyright p {
    font-size: 15px;
}
.copyright .nav.nav-pills {

    font-size: 15px;
}
.copyright  .pagesLinks li a {
    text-decoration: none !important;
    padding: 0px 5px;
}
.copyright .nav.nav-pills {
    display: inline-block;
    width: auto  !important;
}

.user-dropdown .dropdown-menu a.dropdown-item {
    padding: 6px 10px;
    border-bottom: solid 1px #ddd;
    line-height: 24px;
}
.user-dropdown .dropdown-menu a.dropdown-item:last-child {
    border-bottom: none;
}
.user-dropdown .dropdown-menu {
    top: 80%;
    left: -10%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    min-width: 130px;
}
.search-box-div .mCSB_inside > .mCSB_container {
    margin-right: 0;
}
.search-box-div p {
    font-size: 15px;
}
.search-box-div .mCSB_scrollTools.mCSB_1_scrollbar {
    display: none !important;
}
.modal-body form label {

    margin-top: 10px;
}
.modal-md .sellerDoc input {
    padding: 4px !important;
}
.register-no select {
    width: 120px;
    margin-right: 10px;
    border: 1px solid #e6e9ec;
}
select.form-control:not([size]):not([multiple]) {
    height: 45px !important;
}
.register-no {
    display: flex;
    width: 100%;
    align-items: center;
}
input[type="file"]::before {
    padding: 4px 0;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 8%;
    font-size: 10px;
    margin-top: 0;
    content: "\f0c6 ";
    font-size: 20px;
    font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;


}
input[type=file]::-webkit-file-upload-button {
    visibility: hidden;
}

input[type=file]{
    font-size: 0;
}
.rightSideIcon .dropdown-toggle{
    padding: 8px !important;
}
.headerCart {
    padding: 8px !important;
}
.boxex h6.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.shipping-sections .uesr-logindetail0box td {
    vertical-align: baseline !important;
}
.shipping-sections .btn.btn-outline-dark-3.btn-more {
    margin-top: 15px;
    background: #464645;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
}
.col-md-10.terms.blog-pf img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-pf {
    box-shadow: 0px 0px 20px 0px gainsboro;
    padding: 20px;
    border-radius: 10px;
}
.blog-pf p {
    color: #000;
}
.blog-pf h5 {
    color: #000;
}
.blog-pf h3 {
    color: #000;
}
.sphone.ml-3 {
    margin-right: 10px;
}
.topheader {
    padding: 5px 0px;
}
.modal-body .whatsapp-link.social_share.btn {
    margin: 0;
}

.modal-body .facebook-link.social_share.btn {
    margin: 0;
}
.filter_tag .dropdown.select-products {
    width: 27%;
}
.product_filter .filter_tag .select-products .btn.btn-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left_product_filter {
    background: transparent !important;
}
.modal-dialog.modal-md .register-no span.text-danger {
    position: absolute;
    bottom: -29px;
}
.collection-sections .product-box1 {
    padding-bottom: 40px;
}

.topheader {
    padding: 0.2rem 2.5rem;
}
.home-sections .navbar.builder_bg {
    border-bottom: solid 1px #ddd;
}
ul.navbar-nav.ml-auto.back_dash {
    display: none !important;
}
.collection-sections .product-box1 .col-md-4.col-sm-12.col-lg-4 {
    margin-bottom: 30px;
}
.collection-sections  .pull-right.text-info.overlay-icon1 i {
    background: #fff;
    color: #000 !important;
    padding: 7px;
    margin: 4px 0px;
    border: 0;
    box-shadow: none;
    border-radius: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
/*header css new */
.left_product_filter .select-products .btn.btn-block {
    background: #fff !important;
}
/* .top-left div#navbarsExampleDefault {
    display: inline-block !important;
} */
.sticky-top.top-left .navbar.builder_bg {
    display: block;
}
.sticky-top.top-left .navbar-expand-md .navbar-nav .nav-item .nav-link:first-child {
    padding-left: 0;
}
.sticky-top.top-left .navbar-brand {
    display: inline-block;
}
.sticky-top.top-left .head-icons {
    display: inline-block;
    float: right;
}
.sticky-top.top-left .searchForm {
    display: inline-block;
}
.sticky-top.top-left .rightSideIcon {
    display: inline-flex;
    margin-left: 7px;
    align-items: center;
}
.sticky-top.top-left ul.navbar-nav.ml-auto.back_dash {
    display: none;
}
.sticky-top.top-left ul.navbar-nav.ml-auto {
    margin-left: 0 !important;
}
/*middle-left css new */
.sticky-top.middle-left .navbar.builder_bg {
    display: inline-block;
   width: 100%;

}
.sticky-top.middle-left div#navbarsExampleDefault {

    margin-top: 10px;
}
.sticky-top.middle-left ul.navbar-nav.ml-auto {
    margin-left: 0 !important;
}
.sticky-top.middle-left .head-icons {
    margin-top: 9px;
    float: right;
}
.sticky-top.middle-left .navbar-brand {
    display: inline-block;
    float: left;
}
.sticky-top.middle-left .navbar-expand-md .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 1rem;
    margin-top: 0px;
}
/*middle-left css new */

/*top-center css new */
.sticky-top.top-center .navbar.builder_bg {
    display: block;
   width: 100%;
}
 .sticky-top.top-center div#navbarsExampleDefault {
    margin-top: 15px;
}
.sticky-top.top-center a.navbar-brand {
    width: 100%;
    display: flex !important;
    margin: 0 auto;
    justify-content: center;
}
.sticky-top.top-center  a.navbar-brand img {
    width: auto;
    margin-top: 10px;
}
.sticky-top.top-center .head-icons {
    margin-top: -40px;
    width: 100%;
    display: block;
}
.sticky-top.top-center .head-icons .searchForm {
    float: left;
}
.sticky-top.top-center div#navbarsExampleDefault {
    margin-top: 15px;
    width: 100%;
}
.sticky-top.top-center ul.navbar-nav.ml-auto {
    width: 100%;
    margin: 0 auto !important;
}
.sticky-top.top-center .rightSideIcon {
    display: inline-flex;
    margin-left: 7px;
    align-items: center;
    float: right;
}
.sticky-top.top-center ul.navbar-nav {
    margin: 0 auto;
    display: flex;
     justify-content: center;
}
/*top-center css new */

/*middle-center css new */



/*middle-center css new */
 .sticky-top.middle-center .navbar.builder_bg {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}
.sticky-top.middle-center a.navbar-brand {
    text-align: -webkit-center;
    margin: 0 auto;
    width: 20%;
    padding: 0;
}
.sticky-top.middle-center ul.navbar-nav {
    display: flex;
    justify-content: start;
    margin-left: 0 !important;
}

.sticky-top.middle-center a.navbar-brand img {
    width: auto;
    margin-top: 0;
    display: inline;
}
.sticky-top.middle-center .head-icons {
    max-width: 40%;
    margin-top: 3px;
}
.sticky-top.middle-center .head-icons {
    display: flex;
    float: right;
    justify-content: end;
}

.sticky-top.middle-center div#navbarsExampleDefault {
    margin-top: 0;
    float: left;
    max-width: 40%;
    width: 40%;
}
.sticky-top.middle-center a.navbar-brand {
    display: inline-block !important;
}
/*header css new */
.left_product_filter .filter_tag .dropdown.select-products {
    width: 100%;
}

.similar-title h3.display-4 {
    margin: 0;
}
.pull-right.text-info.social-icon.overlay-icon i {
    box-shadow: none;
}
.table.table-cart thead th:first-child {
    text-align: left;
}

  @media screen and (max-width: 1024px) {
    .copyright {
        display: block !important;
    }
    .copyright .nav.nav-pills {
        display: inline-block;
        width: 100% !important;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding: 7px 10px !important;
        font-size: 12px !important;
        text-transform: capitalize !important;
    }
    .checkout h2.checkout-title {
        font-size: 22px;
    }
    .checkout .table.table-summary .summary-total td {
        font-size: 14px;
    }
    .product-discription .text-overflows {
        height: auto;
    }
    .filter_tag {
        column-gap: 14px !important;
    }
    label.control-label {
        font-size: 14px;
    }
    .product-discription .text-overflows h1 {
        font-size: 18px;
    }
    .product-label.label-circle {
        font-size: 12px;
        border-radius: 3px;
        margin: 0;
        padding: 0;
        line-height: 14px;
        height: auto;
        width: auto;
        padding: 5px;
        box-shadow: 18px 22px 39px 16px #ffffff26;
    }
    .product-content .product-price p {
        margin-bottom: 0px;
        font-size: 14px;
    }
    .product-content .product-detail h2 {
        display: inline-block;
        font-size: 22px;
    }
    .product-content .bulk-price {
        font-size: 12px;
    }
    .product-discription p {
        margin-top: 12px;
        margin-bottom: 0;
    }
    .boxex-content .text-info {
        color: #363333!important;
        font-size: 14px !important;
    }
    .product-box1 .display-4 {
        font-size: 25px !important;
        padding: 0 !important;
        margin-top: 0;
    }
    .footer h4.foot-head {
        font-size: 22px;
        margin-top: 0;
    }
    .product_filter {
        align-items: center;
    }
    .filter_tag {
        column-gap: 12px;
    }
   .checkout-sections form label {
        font-size: 13px !important;
    }
    .purchase-info button {
        font-size: 14px;
    width: auto;
    }
  }

@media screen and (max-width: 991px) {
    .search-box-div {
        width: 200px !important;
    }
    .search-box-div p {
        font-size: 13px;
    }
    .head-icons .ml-3.dropdown-toggle {
        font-size: 13px !important;
    }
    .header-search_result .icon_reslut {
        position: absolute;
        top: 7px !important;
        right: -76px;
        color: #000;
        font-size: 12px;
    }
    .header-search-wrapper.search-wrapper-wide.header-search_result input {
        width: 120px !important;
        font-size: 11px;
        height: 33px !important;
    }
    .header-search_result .icon_reslut {
        right: 13px !important;
    }
    .products-sections .product-box .col-lg-6.col-md-6 {
        max-width: 100%;
        flex: 100%;
    }
    tr.summary-subtotal span {
        font-size: 14px;
    }
    .cart-sections .summary {
        padding: 15px;
    }
    .cart-sections .conti_btn a {
        font-size: 14px;
    }
    .cart-sections .table-mobile tr .product-col {
       border: 0;
    }
    .cart-sections .table-mobile tr {
        padding: 15px 0px;
        border: 0;
    }
    .cart-sections .table-mobile .remove-col {
        border: 0;
    }
    .cart-sections .table .price-col {
        font-size: 14px;
    }
    .cart-sections .table .total-col {
        font-size: 14px;
    }
    .cart-sections .cart-product-quantity .form-control {
        margin-left: 0 !important;
    }
    .product_filter {
        align-items: flex-start;
    }
    .filter_tag {
        column-gap: 20px;
    }

    .filter_tag {
        display: block !important;
    }
    .select-products .btn.btn-block {
        margin-bottom: 10px;
    }

  .table-mobile,
  .table-mobile tbody,
  .table-mobile tr,
  .table-mobile td {
    width: 100% !important;
    display: block !important; }

  .table-mobile thead {
    display: none !important; }

  .table-mobile tr {
    position: relative;
    padding-top: 4.2rem;
    padding-bottom: 4rem; }

  .table-mobile .remove-col {
    position: absolute;
    right: 1.5rem;
    top: .5rem;
    padding: .5rem !important;
    width: auto !important; }

  .table-mobile tr td {
    text-align: center;
    padding: .1rem 3rem;
    border-bottom: none; }

  .table-mobile tr .product-col {
    padding-bottom: .6rem; }

  .table-mobile tr .action-col {
    padding-top: 1.5rem; }
    .table-mobile tr .action-col .btn,
    .table-mobile tr .action-col .dropdown {
      max-width: 220px;
      margin-left: auto;
      margin-right: auto; }

  .table-mobile .product-col .product {
    justify-content: center; }

  .table-mobile .product-col .product-title {
    text-align: left; }

  .table-mobile {
    border: .1rem solid #ebebeb; }

  .table-mobile tr:not(:last-child) {
    border-bottom: .1rem solid #ebebeb; }

  .table-mobile .cart-product-quantity {
    margin: .5rem auto; }

  .product-col .product {
    padding-right: 0; }


    .boxex-content span.new-price {
        font-size: 14px;
    }


.footer h4.foot-head {
    font-size: 16px;
    margin-top: 0;
}
.select-products .btn.btn-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



}
@media screen and (max-width: 767px) {
    .cart-sections .product-box h3, .display-4 {

        margin-top: 0 !important;
    }
   .cart-sections .table-mobile .remove-col {
        position: absolute;
        right: 0;
    }
    .cart-sections .product-col .product-title a {

        font-size: 14px;
        line-height: 28px;
    }
    .popup-modal-register {
        padding-right: 0px !important;
        padding-bottom: 10px;
    }
    .main-slide.slide.section-slider .carousel-item {
        max-height: 400px ;
    }
    .main-slide.slide.section-slider {
        max-height: 400px ;
    }
    .slider93.carousel.slide.section-slider {
        max-height: 100%;
        height: 100% !important;
    }
    .copyright .nav.nav-pills {
        text-align: center !important;
    }
    .sitemap-data ul.sitemap-url-links li {
        display: block !important;

    }
    .sitemap-data li.sitemap-pages-link a {
        font-size: 16px !important;
    }
    .sitemap-data ul.sitemap-url-links li {
        padding-bottom: 10px;
    }
    /*header css new */
    .sticky-top.middle-left .navbar.builder_bg {
        overflow: initial;
    }
    .sticky-top.middle-center div#navbarsExampleDefault {
        margin-top: 0 !important;
    }
    .sticky-top.middle-left .navbar-expand-md .navbar-nav .nav-item .nav-link {
        margin-top: 0;
    }
    .topheader {
        padding: 0 !important;
    }
    /*middle-left css new */
    .sticky-top.middle-left .head-icons {
        margin-top: 0px !important;
    }
    .sticky-top.middle-left .navbar.builder_bg {
        display: flex;
        width: 100%;
    }
    .sticky-top.middle-left div#navbarsExampleDefault {
        margin-top: 0;
    }
    /*middle-left css new */
    .sticky-top.top-left .navbar.builder_bg {
        display: flex;
        align-items: center;
    }
    /*top-center css new */
    .sticky-top.top-center .navbar.builder_bg {
        display: flex;
        width: 100%;
    }
    .sticky-top.top-center a.navbar-brand img {
        width: 100px;
        margin-top: 0;
        object-fit: contain;
    }
        /*middle-center css new */
    .sticky-top.middle-center div#navbarsExampleDefault {
        max-width: 100%;
        width: 100%;
    }
    .sticky-top.middle-center .navbar.builder_bg {
        display: flex;
    }
    .sticky-top.middle-center a.navbar-brand img {
        width: auto;
        margin-top: 0;
    }
    .sticky-top.middle-center a.navbar-brand {
        margin: 0;
        width: 26%;
    }
    .sticky-top.top-center div#navbarsExampleDefault {
        margin-top: 0;

    }

    /*header css new */
    .section-header button.navbar-toggler {
        right: 10px !important;

    }
    .navbar-toggler-icon {
        background: transparent !important;
    }
    .user-dropdown .dropdown-menu a.dropdown-item {
        padding: 4px 10px;
        line-height: 22px;
        font-size: 14px;
    }
    .home-sections .grid-three {
        padding: 10px;
    }
    .boxex-content {
        margin-bottom: 15px;
    }
    .collection-sections .left_product_filter .dropdown-menu.show {
        transform: translate3d(-33px, 49px, -4px) !important;
    }
    .semail a {
        font-size: 13px;
    }
    .sphone {
        font-size: 13px;
        margin-right: 10px;
    }
    .head-icons {
        padding-right: 24px;
    }
    .navbar.builder_bg li a {
        font-size: 12px;
    }

    .header-search-wrapper.search-wrapper-wide.header-search_result input.form-control {
        width: 110px !important;
        height: 31px !important;
    }
    .product-price {
        font-size: 14px !important;
    }
    .products-sections .prod-detail .rating-stars ul > li.star > i.fa {
        font-size: 15px !important;
    }
    ul.navbar-nav.ml-auto.back_dash {
        display: none;
    }
    .products-sections .for_checkout {
        height: auto;
    }
   .navbar .dropdown a {
        color: #343434;
        font-size: 14px;
    }
    .navbar {
        padding: 0.5rem 0.5rem !important;
    }
    .navbar a.navbar-brand.idashboard {
        margin-right: 10px;
    }
    .header-search-wrapper.search-wrapper-wide.header-search_result input {
        width: 120px !important;
        font-size: 9px !important;
        height: 33px !important;
    }


    .section-header ul.navbar-nav {
        /* margin: 0 auto; */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0;
        /* font-size: 6px !important; */
    }

    .head-icons .ml-3.dropdown-toggle {
        font-size: 0px !important;
    }
    .headerCart .cartBtnn i {
        font-size: 14px;
    }
    .section-header .ml-3.dropdown-toggle:before {
        content: "\f1ab !i";
        color: #494949;
        width: 26px;
        font-size: 18px !important;
        font-family: 'Font Awesome 5 Pro';
        content: "\f1ab ";
        content: "\f0ac ";
    }
    .user-dropdown .fa-2x {
        font-size: 20px !important;
    }
    .purchase-info button {
        margin: 5px 0px !important;
        font-size: 14px;
    width: auto;
    }
    .checkout .summary {
        margin-bottom: 0;
        padding: 10px;
    }
    .checkout .breadcrumb a {
        font-size: 14px;
    }
    .checkout h2.checkout-title {
        font-size: 22px;
    }
    .checkout .table.table-summary .summary-total td {
        font-size: 14px;
    }
    .checkout .table.table-summary tbody td {
        font-size: 13px;
    }
    .product-content .product-detail h2 {
        font-size: 18px;
    }
    .navbar-nav.ml-auto {
        align-items: self-start !important;
    }
    .product-discription p {
        margin-top: 10px;
    }
    .customer-questions h4 {
        font-size: 18px !important;
    }
    .product-discription h1 {
        font-size: 20px;
    }
    h2.product-title {
        font-size: 20px;
    }
    .product-box h3 {
        font-size: 25px !important;
        margin-bottom: 15px;
        margin-top: 0;
    }
    .product-price p {
        font-size: 14px;
    }

    .product-detail {
        font-size: 14px;
    }
  .table-mobile .product-col .product-media {
    margin-right: 1.5rem; }
    .rightSideIcon .dropdown-toggle {
        padding: 5px !important;
    }
    .navbar li.nav-item.dropdown.user-dropdown {
        padding: 5px !important;
    }
    .headerCart {
        padding: 5px !important;
    }
    .user-dropdown .dropdown-toggle {
        padding: 0 !important;
    }
}
@media screen and (max-width: 575px) {
  .cart-bottom {
    flex-direction: column;
    margin-bottom: 4rem; }
    .cart-bottom .cart-discount .btn {
      margin-top: 0; }
    .cart-bottom .btn {
      margin-left: 0 !important;
      margin-top: 1rem; } }
/*--------------------- 5.15.Cart -------------------- */
/* Shopping Cart */
@media screen and (min-width: 992px) {
  .cart .col-lg-3 {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .cart .col-lg-9 {
    -ms-flex: 0 70%;
    flex: 0 0 70%;
    max-width: 70%; } }

.table .total-col {
  color: #cc6666;
  font-weight: 400;
  font-size: .8rem; }

.table.table-cart .price-col {
  width: 120px; }
.table.table-cart .total-col {
    width: 120px;
}
.table.table-cart .quantity-col {
  width: 135px; }

.cart-product-quantity {
  width: 80px; }
  .cart-product-quantity .form-control {
    margin-left: 20px; }

.remove-col button.btn-remove.removeProduct {
    padding: 0 !important;
    height: auto;
}

.input-spinner {
  position: relative; }
  .input-spinner .input-group-prepend,
  .input-spinner .input-group-append {
    position: absolute;
    top: 0; }
  .input-spinner .input-group-prepend {
    left: 0; }
  .input-spinner .input-group-append {
    right: 0; }
  .input-spinner .form-control {
    padding: .85rem 2.6rem;
    height: auto;
    border-color: #dadada;
    background-color: #fff;
    margin: 0; }
    .input-spinner .form-control[disabled] {
      background-color: #f9f9f9; }

.btn.btn-spinner {
  min-width: 0;
  color: #333333;
  padding: 1.25rem .4rem;
  font-size: 1rem;
  border: none;
  background: none; }
  .btn.btn-spinner i {
    margin: 0 !important; }
  .btn.btn-spinner:hover, .btn.btn-spinner:focus {
    color: #cc6666; }

.cart-bottom {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5rem; }
  .cart-bottom .btn {
    margin-left: auto;
    min-width: 152px; }

.cart-discount {
  flex: 0 0 50%;
  max-width: 326px; }
  .cart-discount .form-control {
    margin-right: 1.1rem; }
  .cart-discount .btn {
    min-width: 40px;
    padding-left: 0;
    padding-right: 0; }

.summary.summary-cart {
  margin-bottom: 3rem; }
.summary.summary-cart .summary-title {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 15px;
}

.table.table-summary .summary-shipping {
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem; }
  .table.table-summary .summary-shipping td {
    padding-top: 2rem;
    padding-bottom: 1.3rem;
    height: auto;
    border-bottom: none; }
.table.table-summary .summary-shipping-row {
  color: #333333; }
  .table.table-summary .summary-shipping-row label {
    color: inherit; }
  .table.table-summary .summary-shipping-row td {
    height: auto;
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom: none; }
.table.table-summary .custom-control {
  margin: 0; }
.table.table-summary .summary-shipping-estimate {
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem; }
  .table.table-summary .summary-shipping-estimate td {
    height: auto;
    padding-top: 1.4rem;
    padding-bottom: 2.3rem; }
  .table.table-summary .summary-shipping-estimate a {
    margin-top: .6rem;
    display: inline-block;
    font-weight: 300;
    color: #999999;
    font-size: 1.4rem;
    border-bottom: 0.1rem solid #999999; }
    .table.table-summary .summary-shipping-estimate a:hover, .table.table-summary .summary-shipping-estimate a:focus {
      color: #cc6666;
      border-bottom-color: #cc6666; }

.summary-cart .table.table-summary thead th:last-child,
.summary-cart .table.table-summary tbody td:last-child {
  min-width: 0; }

.products_img1   {
    display: flex;
    padding-bottom: 15px;
    align-items: center;
    column-gap: 10px;
    padding-top: 15px;
}
.pro_content h4{
    font-size: 16px;
    margin-bottom: 0px;
}
.pro_content p{
    font-size: 12px;
    margin-bottom: 0px;
}
.img_bagdes span.product-thumbnail__quantity {
    position: absolute;
    top: 0px;
    right: 1px;
}
.img_bagdes img{
  width: 100%;
}
.img_bagdes {
    width: 100px;
      position: relative;
}
 .img_bagdes span.cart-count{
    position: absolute;
    top: -15px;
    right: -15px;
}
.img-item img {
    max-width: 120px;
    max-height: 120px;
}
.cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    font-weight: 400;
    font-size: .8rem;
    line-height: 1;
    margin-left: .5rem;
    margin-top: .1rem;
    color: #fff;
    background-color: #cc6666; }

.mt-2 {
    margin-top: 2rem !important;
}
.more-container {
     margin-bottom:2rem;
   /* margin-bottom: 7rem;*/
}
.btn-more {
    min-width: 130px;
    text-transform: capitalize;
}
.btn-outline-dark-3 {
    color: #333333;
    background-color: transparent;
    background-image: none;
    border-color: #d7d7d7;
    box-shadow: none;
}
.btn.btn-more {
    padding-top: .8rem !important;
    padding-bottom: .8rem !important;
    text-transform: uppercase;
    margin: 0;
}
/* select.form-control:not([size]):not([multiple]) {
    height: 40px !important;
} */

.sfvPF {
    padding: 0;
    margin: 0;
        margin-top: 0px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    list-style: none;
    margin-top: 15px;
}
li._2uKz_ {
    border-bottom: 1px solid #d0d0d0;
}
.sfvPF li label {
    display: flex;
    cursor: pointer;
    align-items: center;
    height: 100%;
    margin-bottom: 0px;
    padding: 10px 20px;
    width: 100%;
    justify-content: space-between;
}
.inpu_label_pricing {
    display: flex;
    align-items: baseline;
}
.sfvPF li input {
    margin-right: 10px;
    width: 15px;
    height: 15px;
}
.sfvPF li label p {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 0px;
}
label.control-label {
    font-size: 14px;
    margin-bottom: 2px;
    color: #000;
    font-family: 'AvertaStd';
}
.products-sections .product-box {
    padding-bottom: 0;
}
ul.ul_new_tag {
    list-style: none;
    padding: 0px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    row-gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}
ul.ul_new_tag li {
    background: #e4e4e4;
    padding: 2px 5px 2px 5px;
    border-radius: 5px;
    font-size: 15px;
}
ul.ul_new_tag li a {
    margin-left: 3px;
    font-size: 14px;
    margin-top: -1px;
    float: right;
}
ul.ul_new_tag li svg {
    width: 15px;
    height: 15px;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}
.product-price {
    text-align: left;
}
.new-price {
    color: #bf9e2a;
    font-size: 14px;
    font-weight: 500;
}
.product-label.label-sale {
    color: #fff;
}
.old-price {
    font-size: 14px;
}
.old-price {
    color: #cccccc;
    text-decoration: line-through;
    font-weight: 500;
}
.product-label.label-sold {
    color: #fff;
    background-color: #1c1a1a;
}
.label-circle {
    min-width: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    top: 15px;
    left: 15px;
    height: auto;
    width: auto;
    z-index: 11;
    padding: 6px 10px;
}

.products_img1.products_img2{
  align-items: flex-start;
}
.products_img1.products_img2 .pro_content{
margin-top: 10px;
}
.products_img1.products_img2 img{
  width: 100%;
}

.products_img2-linkz {
    width: 100px;
}

.img_bagdes span.product-thumbnail__quantity {
    position: absolute;
    top: 0px;
    right: 1px;
}
.img_bagdes img{
  width: 100%;
}
.img_bagdes {
    width: 100px;
      position: relative;
}
 .img_bagdes span.cart-count{
    position: absolute;
    top: -8px;
    right: -8px;
}
.img-item img {
    max-width: 120px;
    max-height: 120px;
}
.wishlist .section {
  width:100% !important;
}
.table_edit {
    margin-bottom: 4rem !important;
}
.table_edit tr.border-botton_dark {
    border-bottom: 1px solid #6b6b6b !important;
}
.table_edit tr {
    border-bottom: 1px solid #ccc;
}

ul.ul_new_tag {
    list-style: none;
    padding: 0px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    row-gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}
ul.ul_new_tag li {
    background: #e4e4e4;
    padding: 0px 10px;
    border-radius: 3px;
    font-size: 14px;
}
ul.ul_new_tag li svg {
    width: 13px;
    height: 13px;
}
label.control-label {
    font-size: 14px;
    margin-bottom: 2px;
    color: #000;
    font-family: 'AvertaStd';
}

.filter_tag {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.header-search-extended .search-wrapper-wide {
    width: 100%;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin:20px;
    display: flex;
    justify-content: space-between;
}
.search-box-div {
    position: absolute;
    background: #fff;
    width: 96%;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    z-index: 10;
}
li.blk2.ui-menu-item:last-child {
    border-bottom: 0px solid;
}
li.blk2.ui-menu-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
a.ui-menu-item-wrapper {
    display: flex;
    column-gap: 10px;
    row-gap: 9px;
}
  .select-products .btn.btn-block {
   background: #fff;
   padding: 10px;
   text-align: left;
   box-shadow: none;
   border: 1px solid #ccc;
   font-size: 14px;
   font-weight: normal;
   }
   .select-products .btn.btn-block i {
   margin-left: 10px
   }
   .head_select {
   display: flex;
   align-content: center;
   justify-content: space-between;
   padding: 15px 20px;
   border-bottom: 1px solid #ccc
   }
   .body_select{
   padding: 10px 20px;
   }
   .dropdown.select-products.show .head_select h5{
   margin: 0px;
   line-height: 28px;
   color: #000!important;
   font-size: 14px;
   }
   .head_select a{
   text-decoration: underline;
   color: #000;
   font-size: 14px
   }
   .select-products .dropdown-menu{
   min-width: 22rem;
   border: 1px solid #ccc;
   padding: 0px;
   border-radius: 0px;
   }
   .custom-control-label{
   color: #000
   }
   .custom-control {
   position: relative;
   padding-left: 2.6rem;
   margin-top: 1rem;
   margin-bottom: 10px; }

   .custom-control-label {
   position: static;
   margin-bottom: 0;
   margin-top: .1rem;
   font-size: 14px;
   padding-left: 35px;
   margin-left: -2.2rem;
   line-height: 20px;
   }
   .check-list-dropdown .custom-control-label {
    padding-left: 0px;
    margin-left: 0px;
}
.check-list-dropdown label.custom-control-label::before {
    content: none;
}
.check-list-dropdown label.custom-control-label::after {
    content: none;
}
.custom-control-label input[type=checkbox] {
    vertical-align: middle;
    margin-right: 5px;
}
   .custom-control-label::before {
   left: 0;
   top: 5px;
   width: 20px;
   height: 20px;
   background-color: #f9f9f9;
   border: 1px solid #dadada;
   box-shadow: none !important; }
   .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
   border-color: #dadada; }
   .custom-control-label::after {
   left: 0;
   top: 3px;
   width: 20px;
   height: 20px;}
   .custom-checkbox .custom-control-label::before {
   border-radius: 0; }
   .custom-checkbox .custom-control-label::after {
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   background-image: none;
   font-size: 1rem;
   font-family: "Font Awesome 5 Pro";
   content: '\f00c';
   line-height: 1;
   text-align: center;
   opacity: 0;
   margin-top: .1rem;
   visibility: hidden;
   transition: opacity .01s; }
   .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
   color: #fff;
   border-color: #333;
   background-color: #333; }
   .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
   background-color: #333; }
   .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
   background-color: rgba(51, 51, 51, 0.5); }
   .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
   background-color: rgba(51, 51, 51, 0.5); }
   .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
   background-image: none;
   opacity: 1;
   visibility: visible; }
   .custom-control.custom-radio .custom-control-label::before {
   top: .4rem;
   background-color: #f9f9f9;
   border-color: #dadada;
   border-radius: 50%; }
   .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
   border-color: #cc6666;
   background-color: #fff; }
   .custom-control.custom-radio .custom-control-label::after {
   border-radius: 50%;
   width: .6rem;
   height: .6rem;
   top: .9rem;
   left: .5rem; }
   .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
   background-image: none !important;
   z-index: 2;
   background-color: #cc6666; }
   .label_rate {
    display: flex;
    column-gap: 20px;
}
   .label_rate .icon_rate {
    display: flex;
    align-content: center;
    column-gap: 6px;
}
.resul-text{
    color:#7d7d7d;
    font-size: 14px
}
.rightSideIcon {
    display: flex;
    margin-left: 7px;
    align-items: center;
}
.header-search-wrapper.search-wrapper-wide.header-search_result {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
}
.header-search_result .icon_reslut {
    right: 30px !important;
}
.search-box-div {
    width: 250px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
    overflow-y: scroll;
    max-height: 215px;
}
.header-search-wrapper.search-wrapper-wide.header-search_result input{
    width: 262px;
    text-align: left;
    padding-left: 1rem;
    padding-bottom: 1rem;
    border-radius: 50px !important;
}
.header-search_result .icon_reslut{
}
.search-box-div .viewallresult{
    text-align: center;

}
.search-box-div .viewallresult a{
text-decoration: underline;

}

.headerCart {
  padding-left: 2.3rem;
  display: flex;
  align-self: stretch;
  align-items: center;
}
.headerCart .cartBtnn {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
    color: #333;
    white-space: nowrap;
}
.headerCart .cartBtnn i {
    display: inline-block;
    margin-top: 0px;
}
.cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    margin-left: .1rem;
    margin-top: .1rem;
    color: #fff;
    background-color: #cc6666;
}

.modal .sellerDoc p {
    font-size: 14px;
}
.compare-box h3 {
    font-size: 16px !important;
    text-align: left;
    line-height: 26px;
    margin: 0 0 10px;
}
.compare-box p {
    color: #000;
    font-size: 14px;
    text-align: left;
    margin: 0 0 20px;
}
.compare-box label {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 14px;
    color: #494949;
    width: 100%;
}
.collection-sections .product-box1 .col-md-3.col-sm-12.col-lg-3 {
    margin-bottom: 30px;
}
.compare-detail h4 {
    font-size: 14px;
    text-align: left;
    font-weight: 400;
    color: #494949;
    line-height: 20px;
    margin: 10px 0 10px;
}
.compare-detail  p {
    color: #494949;
    font-size: 15px;
    text-align: left;
    font-weight: 500;
    margin: 0;
}
.compare-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}
.compare-item span {
    font-weight: 300;
    position: absolute;
    z-index: 2;
    top: -10px;
    right: 0;
    height: 34px;
    width: 34px;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 15%);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 50%;
    font-size: 30px;
    line-height: 32px;
    color: #878787;
    text-align: center;
    cursor: pointer;
}
.pd-50 {
    padding: 0 50px !important;
}
.compare-parts-detail {
    display: inline-block;
    width: 100%;
}
.compare-offer {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    text-align: left;
}
.compare-offer span {
    font-size: 14px;
    color: #494949;
}
.compare-offer.heading-left span {
    font-weight: 500;
    color: #494949;
}
.compare-parts-detail .col.col-1-5 {
    border-right: solid 1px #e0e0e0;
}
.compare-parts-detail .col.col-1-5:last-child {
    border-right: none;
}
button.btn.rate-btn {
    line-height: normal;
    display: inline-block;
    color: #fff;
    padding: 2px 4px 2px 6px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 12px;
    vertical-align: middle;
    background-color: #388e3c;
    margin: 0;
}
.compare-offer p {
    font-size: 14px;
    color: #333;
    margin: 0;
}
.compare-offer h5 {
    font-size: 14px;
    margin: 15px 0 5px;
    color: #808080;
}
.compare-offer p span {
    color: #808080;
    font-weight: 500;
    font-size: 14px;
}
button.btn.buynow {
    margin: 0;
    width: 100%;
    color: #fff;
    background: #4091eb;
    padding: 13px 16px;
    font-size: 15px;
    border-radius: 3px;
    letter-spacing: .2px;
}
span.green-text {
    color: #388e3c;
    font-weight: 500;
}
.compare-offer ul {
    padding: 0 0 0 25px;
    margin: 0;
}
.compare-offer ul li {
    font-size: 14px;
    color: #494949;
}
span.green-box {
    background: #388e3c;
    padding: 1px 3px;
    color: #fff;
    border-radius: 3px;
}
section.pro_feature {
    position: sticky;
    top: -200px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    border-bottom: none;
    padding-bottom: 15px;
    padding-top: 20px;
}
.select-products .btn {
    margin: 0px;
}

.img-active {
    border: 2px solid #a7a7a7;
}
.pro_feature{
width:100%;
}
.boxex h6{
    text-align: left;
    font-size: 18px;
    font-weight: bold;
   }
   .product-modal-boxx.pro_content {
    margin-top: 10px;
}
.modal-footer {
    padding-top: 0;
}
.boxex p{
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

img{
    width: 100%;
    /*display: block;*/
}
.img-display{
    overflow: hidden;
}
.img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}
.img-showcase img{
    min-width: 100%;
}
.img-select{
    display: flex;
}
.img-item {
    margin: 10px 10px 10px 0px;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.img-item:hover{
    opacity: 0.8;
}
.img-item img {
    max-width: 100px;
    height: 90px;
    object-fit: cover;
}
.product-content{
    padding: 0px;
}
.product-title {
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin: 0px 0px 10px;
}

.product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #256eff;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}
.product-link:hover{
    opacity: 0.9;
}
.product-rating{
    color: #ffc107;
}
.product-rating span{
    font-weight: 600;
    color: #252525;
}
.product-price{
    margin: 1rem 0 0;
    font-size: 1rem;
    font-weight: 500;
}
/*.product-price span{
    font-weight: 400;
}*/
.last-price span{
    color: #f64749;
    text-decoration: line-through;
}
.new-price span{
    color: #256eff;
}
.product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8;
}

.product__policies.rte {
    font-size: 13px;
    color: #808080;
}
.product__policies.rte a{
     color: #808080;
     text-decoration: underline;
}
.product-detail ul li span{
    font-weight: 400;
}
.product-price p{
    margin-bottom: 0px;
}

.product-content .form-control{
    height: 40px!important;
}
.purchase-info input{
    width: 60px;
}
.purchase-info .btn{
    cursor: pointer;
    color: #fff;
}
.blue-btn.btn{
    background: #256eff;
}
.green-btn.btn{
    background: #14bd00;
}
.purchase-info .btn:hover{
    opacity: 0.9;
}
.social-links{
    display: flex;
    align-items: center;
}
.social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}
.social-links a:hover{
    background: #000;
    border-color: transparent;
    color: #fff;
}
.pro_feature .product-content{
text-align: left;
}

.purchase-info button.btn {
    margin: 0 10px 0 0;
}
.liked {
    color: #c60f0fdb;
}

.customer-questions {
    color: #000;
    margin-top: 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    text-align: left;
}
.customer-questions h4 {
    font-size: 16px;
    font-weight: 500;
    color: #494949;
}
.customer-questions h5 {
  font-size: 16px;
  margin: 10px 0 0;
  font-weight: 300;
}

.customer-questions a {
  padding: 10px 20px;
  background-color: #e3e3e3;
  color: #000;
  font-size: 15px;
  font-weight: 300;
}
.reviews-de {
  display: inline-block;
}
.reviews-de h1 {
  font-size: 60px;
  font-weight: 300;
  padding-right: 30px;
}
.rating-star {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
}
.rating-star span {
  padding: 5px;
  font-size: 22px;
  color: #b1b1b1;
}
.rating-star p {
  margin-left: 10px;
}
.customer-reviews-box {
  display: inline-block;
  width: 90%;
}
.star-rating {
  display: inline-block;
  vertical-align: middle;
}
.star-rating p {
  margin: 0;
}
.star-rating span {
  margin-left: 30px;
  font-weight: 600;
}
.write-review a {
  padding: 13px 36px;
  background-color: #ea0001;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.write-review {
  margin-top: 30px;
  margin-bottom: 50px;
}
.write-review a:hover {
  color: #fff;
}
.top-customer-box p {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
  padding: 40px 0;

}
.top-customer-box p::before {
  content: "";
  position: absolute;
  right: 0;
  background-color: #ccc;
  height: 1px;
  width: 48%;
  top: 60px;
}
.no-revie-boxx {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
.my_ticketslist {
    width: 100% !important;
    padding: 0;
    text-align: left !important;
    border: 0;
    margin-top: 20px !important;
    background: none !important;
    margin-bottom: 15px !important;
}
.my_ticketslist li {
    list-style: none;
    color: #808080;
}
#addCustomerForm {
    width: 100%;
}
.reviwing-form-you p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}
.rating-form-boxx-top {
  color: #000;
  font-size: 18px;
  text-align: left;
}
.rating-form-boxx-top span {
  padding-left: 8px;
}
.main-form-sec .form-group label {
  font-size: 14px;
  color: #000;
  padding: 5px 0 5px;
}
.main-form-sec {
  margin-top: 10px;
  text-align: left;
}
textarea.form-control {
    min-height: 110px !important;
    max-width: 100%;
}
.submit-review-btm {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
}
.submit-review-btm {
  margin-top: 40px;
}
.prod-detail .rating-stars ul {
    list-style-type: none;
    padding: 0;
    margin-top: 18px;
    -moz-user-select: none;
    -webkit-user-select: none;
}
.prod-detail .rating-stars ul > li.star {
    display: inline-block;
}
.prod-detail .rating-stars ul > li.star > i.fa {
    font-size: 1.2em;
    color: #ccc;
}
.prod-detail .rating-stars ul > li.star.hover > i.fa {
    color: #FF912C;
}
.prod-detail .rating-stars ul > li.star.selected > i.fa {
    color: #FF912C;
}

.ticket_row {
    display: table;
    width: 100%;
    padding: 15px 20px !important;
}
.ticket_left, .ticket_right {
    display: inline-flex;
}
.pull-left {
    float: left;
}
.ticket_left img {
    width: 60px !important;
    height: 60px !important;
}
.ticket_left h4 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
}
.ticket_left p {
    margin: 0 0 5px;
}
.pull-right {
    float: right;
}
.filter-tag-list h4 {
    text-align: left;
    font-size: 18px;
    margin: 0;
}
.boxex {
    margin-bottom: 30px;
}
.product-detail h2 {
    display: inline-block;
}
.product-detail .heart-icon {
    display: inline-block;
    float: right;
    margin-left: 10px;
}
.product-detail .heart-icon span {
    font-size: 24px;
    line-height: 24px;
}
.purchase-info {
    margin: 10px 0;
}
.product-discription {
    display: inline-block;
    width: 100%;
    margin-top: 35px;
}
.product-discription h4 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #494949;
}
.reviews-de {
    display: inline-block;
    background: #256eff;
    padding: 5px 15px;
    border-radius: 6px;
}
.customer-questions .rating-stars h4 {
    display: inline-block;
    margin: 0;
    font-size: 30px;
    color: #fff;
    line-height: 30px;
    vertical-align: middle;
}
.rating-stars ul {
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}
.rating-stars ul li.star {
    display: inline-block;
    color: #fff;
    vertical-align: middle;
}
.rating-star.prod-detail p {
    vertical-align: middle;
    margin: 0 10px;
    font-size: 16px;
    color: #808080;
}
.rating-stars {
    text-align: left;
}
.customer-questions .rating-stars h4 i.fa.fa-star {
    font-size: 16px;
    vertical-align: middle;
    margin-top: -5px;
}
.product-box h3 {
    font-weight: 500;
}
.compare-item img {
    object-fit: fill;
    height: 180px;
    width: auto;
    text-align: center;
    margin: 0 auto;
}
section.pro_feature .compare-box {
    position: sticky;
    top: 40px;
}
.form-group.col-md-12.cardInfo {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}
.cardInfo img.cart-seq {
    width: 38px;
    height: 24px;
    margin-right: 5px;
}
.cardInfo label {
    margin-right: 10px;
}
.official-flag.show a {
    display: flex;
    font-size: 14px;
    padding: 4px 12px;
}
.official-flag.show a img {
    width: 18px !important;
    margin-right: 7px;
    vertical-align: top;
}
.dropdown-menu.official-flag a.dropdown-item {
    width: 100%;
    border-bottom: solid 1px #ddd;
    padding: 5px 10px;
}
.dropdown-menu.official-flag {
    padding: 0;
    margin: 0;
    border-radius: 0px;
    min-width: 130px;
}

.official-flag.show a {
    display: flex;
    font-size: 14px;
    align-items: center;
}
/* product card */
.boxex-content .product-price {
    line-height: 1.5;
}
.boxex-content {
     padding: 5px 15px !important;

}
.boxex-content .rating-stars {
    line-height: 1.5;
}
.blog-section h3 {
    text-align: center;
}
.blog-post-box:hover {
    box-shadow: 0px 0px 10px 0px #dcdcdcab;
    transition: .5s;
}
.blog-post-box {
    border: solid 1px #f5f5f5;
    border-radius: 10px;
    background: #fff;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.blog-img-post {
    height:100%;
    overflow: hidden;
    width: 100%;
    max-height: 300px;
}
.blog-img-post img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.blog-post-detail {
    display: inline-block;
    width: 100%;
    padding: 15px;
}
.blog-post-detail h5.span_date {
    font-size: 13px;
    margin: 0 0 10px;
    color: #808080;
}
.blog-post-detail h4 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #303030;
}
.blog-post-detail p {
    margin: 0;
    color: #494949;
    font-size: 18px;
}

.blog-large-img {
    display: inline-block;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.blog-large-img img.img_blogs {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
}
.blog-detail {
    border: 0;
    display: inline-block;
    width: 100%;
    padding: 30px 0px;
    margin-top: -9px;
    border-radius: 0 0 15px 15px;
    margin-bottom: 20px;
    border-top: 0;
}
.side-blog h4 {
    margin-top: 0;
}
.side-blog i {
    margin-right: 10px;
}
.side-blog {
    border: 1px solid #ede5e5;
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.blog-detail h6 {
    color: #303030;
    font-size: 24px;
    margin: 0 0 10px;
}
.blog-detail  p {
    color: #494949;
    margin: 0 0 5px;
    font-size: 16px;
}
.blog_ineer h3 {
    color: #494949;
}
.copyright a {
    font-size: 14px !important;
}
.modal-body .register-no {
    align-items: baseline;
}
.products-sections .product-discription {
    text-align: left;
}
.products-sections .img-showcase {
    background: #f7f7f7;
}

.products-sections .product-imgs .img-select {
    justify-content: center;
}


.topheader {
    align-items: center;
}
/* .boxex::after {
    content: "\f004";
    font-family: "Font Awesome 5 pro";
    position: absolute;
    right: 14px;
    top: 0;
    margin-top: 15px;
    margin-right: 10px;
    z-index: 99;
    width: 35px;
    height: 35px;
    color: #000;
    background: #ffffff;
    font-size: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px gainsboro;
    display: none;
 animation-name: example1;
     animation-duration: 1s;
     text-align: center;

}

.boxex:hover::after {
    display: block;
} */
/* @keyframes example1 {

 0% {
        right: 0px;
        top: 0px;
    }

    100% {
        right: 14px;
        top: 0px;
    }
} */
.boxex {
    position: relative;
    height: 100% !important;
    margin-bottom: 0px;
    margin-top: 0;
}
/* .boxex::before {
    content: " ";
    font-family: "Font Awesome 5 pro";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 249px;
    color: #000;
    background: #00000052;
    display: none;

}
.boxex:hover::before {
    display: block;
} */
.pull-right.text-info.social-icon.overlay-icon i {
    background: #fff;
    color: #000 !important;
    padding: 7px;
    margin: 4px 0px;
    border: 0;

    border-radius: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;

}
.pull-right.text-info.social-icon.overlay-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    opacity: 0;
    transition: 1s;
}
.boxex:hover .pull-right.text-info.social-icon.overlay-icon {
    opacity: 1;
}
.product-box .col-md-6.col-sm-6.col-lg-4 {
    margin-bottom: 15px ;
}
.product-box .col-md-6.col-sm-6.col-lg-3 {
    margin-bottom: 15px ;
}
.home--sections .product-box1 .col-md-6.col-sm-6.col-lg-4 {
    margin-bottom: 15px;
}
.boxex-content {
    padding: 10px 15px !important;
}
.collection-sections .product-box1 .col-md-6.col-sm-6.col-lg-4 {
    margin-bottom: 15px;
}
.products-sections .product-discription .input.select select {
    width: 50%;
}
.product-price span {
    font-size: 14px;
}
.boxex-content .item-left span {
    font-size: 14px;
}
.boxex:hover .boxex-content .overlay-icon i.fa {
    color: #000 !important;
}

.pull-right.text-info.overlay-icon1 {
    position: absolute;
    top: 55px;
    right: 12px;
    opacity: 0;
    transition: 1s;
}
.boxex:hover .pull-right.text-info.overlay-icon1 {
    opacity: 1;
}
.home-sections .pull-right.text-info.overlay-icon1 i {
    background: #fff;
    color: #000 !important;
    padding: 7px ;
    margin: 4px 0px;
    border: 0;
    border-radius: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.col-md-6.col-sm-6.col-lg-4 .pull-right.text-info.overlay-icon1 i {
    padding: 7px;
    background: #fff;
    color: #000 !important;
    padding: 7px ;
    margin: 4px 0px;
    border: 0;
    border-radius: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.collection-sections .col-md-6.col-sm-6.col-lg-4 .pull-right.text-info.social-icon.overlay-icon i{
    padding: 7px;
}

.col-md-6.col-sm-6.col-lg-4 .pull-right.text-info.social-icon.overlay-icon1 i{
    padding: 9px;
    background: #fff;
    color: #000 !important;
    padding: 7px;
    margin: 4px 0px;
    border: 0;

    border-radius: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.boxex:hover .boxex-content .overlay-icon1 i.fa {
    color: #000 !important;
}
.products-sections .product-variant-flags {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 10px;
}
.product-price p.new-price {
    padding-bottom: 5px;
}
.products-sections .product-variant-flags form {
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
}
.product-variant-flags .form-control {
    min-width: 140px;
}

.products-sections h2{
    font-family: 'Montserrat-Arabic' !important;
}
.prod-img {
    height: 300px !important;

}
.product-variant-flags .qty-vtp .input.number input {
    height: 45px !important;
}
.prod-img img {
    object-position: top !important;
}
.prod-img::before {
    position: absolute;
    width: 100%;
    height: 300px !important;
    background: #00000063;
    content: " ";
    left: 0;
    right: 0;
    opacity: 0;
    transition: all ease-in-out .5s;
}
.collection-home .prod-img {
    height: 250px !important;
}
.collection-home .prod-img img {
    object-position: center !important;
}
h6.product-title a {
    font-weight: 600 !important;
}

.product-imgs .img-select img, .product-imgs .img-select a {
    object-position: center !important;
}
.collection-home .prod-img::before {
    position: absolute;
    width: 100%;
    height: 250px !important;
    background: #00000063;
    content: " ";
    left: 0;
    right: 0;
    opacity: 0;
    border-radius: 0px;
}
.boxex:hover .prod-img:before {
    opacity: 1 !important;
}
.row.footer-menu {
    display: none;
}
.boxex:hover .pull-right.text-info.social-icon.overlay-icon i {
    color: #000 !important;
}

.user-dropdown .dropdown-menu a.dropdown-item:hover{
  background: #fff;
}
.form-control:focus {
    box-shadow: none  !important;
}
.boxex {
    box-shadow: none !important;
}

.home-inner-banner {
    background: #0000000d;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 70px 0;
}
.home-inner-banner h3.display-4 {
    text-align: center;
    margin: 0 !important;
    padding: 0;
    font-size: 36px;
}
.home-inner-banner ul {
    padding: 0;
    margin: 10px 0 0;
    display: inline-block;
}
.home-inner-banner ul li {
    display: inline-block;
    font-size: 15px;
    color: #202020;
}
.home-inner-banner ul li a {
    padding-right: 5px;
    color: #808080;
}
.home-inner-banner ul li:last-child {
    margin-left: 5px;
}
.similar-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.similar-title h3.display-4 {
    margin: 0 !important;
    font-size: 24px !important;
    color: #333;
}
.collection-home .boxex {
    position: relative;
}
.collection-home .boxex .boxex-content {
    position: absolute;
    top: 5%;
    left: 5%;
    display: flex;
    justify-content: center;
    height: 90%;
    align-items: center;
    border: solid 1px #fff;
    width: 90%;
    padding: 0 !important;
    opacity: 0;
    transition: all 0.3s linear;
}
.collection-home .boxex .boxex-content h6.product-title {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    color: #fff;
}
.collection-home .boxex .boxex-content h6.product-title::after{
    content: none;
}
.collection-home .boxex .boxex-content h6.product-title a {
    color: #fff;
}
.collection-home .boxex {
    position: relative;
    border: none;
}
.collection-home .boxex:hover{
    border: none;
}
.collection-home .boxex:hover .boxex-content {
    opacity: 1;
}
.boxex:hover .pull-right.text-info.overlay-icon1 {
    opacity: 1;
    right: 15px !important;
    transition: all 0.3s linear;
}
.boxex:hover .pull-right.text-info.social-icon.overlay-icon {
    opacity: 1;
    right: 15px !important;
    transition: all 0.3s linear !important;
}
.boxex-content {
    display: inline-block;
    width: 100%;
}
.boxex:hover {

    transition: all 0.3s linear !important;
}
.prod-img img {
    object-position: center !important;
}
.boxex-content .rating-stars {
    text-align: center;
    margin-bottom: 10px;
}
.boxex-content .product-price {
    display: inline-block;
    float: left;
}
.item-left {
    display: inline-block;
    float: right;
}


.left_product_filter label.control-label {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
}

.left_product_filter .select-products .btn.btn-block {
    padding: 8px 10px 8px !important;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    border-radius: 4px !important;
    border: 1px solid #c7cfd8;
    justify-content: space-between;
    display: flex;
    align-items: center;
}
.left_product_filter .form-group {
    margin-top: 0 !important;
    display: inline-block;
    width: 100%;
    padding: 20px !important;
    border: none;
    background: #ffffff !important;
    border-radius: 0px;
}
.product-item-left {
    display: inline-block;
    float: right;
}
.boxex {
    transition: all 0.3s linear !important;
}
.left_product_filter label.control-label {
    padding: 0px 0px !important;
    margin-top: 0 !important;
}
.tax-included {
    position: absolute;
    left: 0;
    margin-top: -40px;
}

.tax-included span {
    background: #fcc909;
    padding: 5px 10px;
    border-top-right-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border-bottom-right-radius: 25px;
}
.modal .modal-body form #loginSubmitBtn, .modal .modal-body form #forgotSubmitBtn, .modal .modal-body form #registerSubmitBtn, #addProductSubmitBtn {
    margin: 0 auto;
    display: block;
    border-radius: 50px;
    padding: 10px 30px;
    transition: all ease-in-out .5s;
    min-width: 40%;
}


.sitemap-data li.sitemap-pages-link a {
    color: #0e0d0d;
    font-size: 18px;
}
.sitemap-data h4 {
    border-bottom: 1px solid #dcdcdca6;
    width: fit-content;
    padding-bottom: 10px;
}
.sitemap-data ul.sitemap-url-links {
    padding: 0;
    padding-bottom: 20px;
}
.sitemap-data ul.sitemap-url-links li {
    display: inline;
    margin-right: 30px;
}
.sitemap-data li.sitemap-pages-link a:hover {
    color: #7faaff;
}
div#page-content1307 {
    padding: 50px 0px;
}

.copyright {
    display: inline-flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    padding: 6px 0px 10px !important;
    border-radius: 0;
    border-bottom: solid 1px #3d4c58;
    margin-bottom: 20px;
    background: transparent !important;
}
.payment-icons {
    padding-left: 0;
}
p.footer-text {
    font-size: 15px;
    font-weight: 400;
}
.payment-icons li:first-child {
    margin-left: 0 !important;
}
#footer1362 .social-icon a {
    background-color: #cbcbcb !important;
}
#footer1362 .social-icon i {
    color: #2c3841 !important;
}
.product-box h6.product-title {
    margin-bottom: 10px;
}
.boxex h6 {
    margin-bottom: 10px !important;
}
input[type=number]::-webkit-inner-spin-button {
    opacity: 1;
    font-size: 60px;
    height: 50px;
    margin-right: -10px;
}
.product-imgs .img-showcase img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}
.product-imgs .img-showcase {
    height: 380px;
    width: auto;
    object-fit: contain;
    object-position: top;
    overflow: hidden;
}
.select-seller-dropdown .form-control {
    width: 50%;
}
.select-seller-dropdown p {
    font-size: 14px;
    font-weight: 300;
}
.select-seller-dropdown h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #1d2547;
}

.footerrow .col:nth-child(2) {
    margin-left: 80px;
}
img.footerlogo {
    max-width: 200px;
    margin-bottom: 20px;
}
.footerrow a.nav-link {
    padding-left: 0;
}
.footer {
    padding: 30px 0px !important;
}
.left_product_filter .filter_tag {
    display: inline-block;
    width: 100%;
}
.left_product_filter .filter_tag .dropdown.select-products {
    margin-bottom: 10px;
}
.left_product_filter label.control-label {
    margin-bottom: 15px;
    font-size: 15px;

}
.custom-control-label::after {
    top: 6px;
    left: 2px;
    width: .7rem;
    height: .8rem;
}

.custom-checkbox .custom-control-label::after {
    font-size: .8rem;
    margin-top: 1px;
}
.contact-route iframe {
    height: 425px;
}
.blogpost.product-box1 {
    padding: 50px 0px;
}
.blogdetails.product-box1 {
    padding: 50px 0px;
}
/*.page-content {
    background: #f9f9f9;
    padding: 30px 30px;
    border-radius: 10px;
}*/
.grid-box6-3
 .row.featurette.justify-content-center {
    align-items: flex-start;
}
.grid-box6-3 .inner-box .grid-img figure {
    height: 630px;
}
.grid-box6-3 .inner-box .grid-img figure img {
    height: 100%;
    object-fit: cover;
}
.grid-box6-3 .grid-img {
    height: 300px;
}
.grid-box6-3 .grid-img img {
    object-fit: cover;
}
.grid-box6-3 .inner-box .grid-img {
    height: auto;
}
button:focus {

    outline: 0 !important;
}
.collection-sections .home-inner-banner h3.display-4 {
    margin-bottom: 0px !important;
}
.feature_product.gird-feature.builder_bg img {
    border-radius: 0%!important;
    height: 100%;
    max-height: 400px;
}
.home-sections .feature_product.gird-feature.col-lg-4 {
    width: 100%;
    max-width: 100%;
}
.contact-sections .home-inner-banner {
    display: none;
}
.collection-sections .product-box1 .col-md-6.col-sm-12.col-lg-6 {
    margin-bottom: 30px;
}
.tab-content .number-format .col-lg-4.pl-0 {
    padding-right: 0;
}
.tab-content .number-format .col-lg-8.pr-0 {
    padding-left: 0;
}
.textright-section .heading_divs ul li h3 {
    font-size: 16px !important;
    font-weight: 100;
}
.textright-section .heading_divs ul li {
    display: list-item !important;
    width: 100% !important;
    text-align: left !important;

    font-size: 15px;
}
.grid-box6-3 .inner-box .grid-img .overlay-box .grid-txt {

    transition: .5s;
}
.product-variant-flags .form-group {
    margin-right: 10px;
}
.products-sections .product-variant-flags form {

    column-gap: 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .slider93 .col-md-9 {
        max-width: 100%;
    }
    .slider93 .col-md-3 {
        display: none;
    }
    .home-sections .career-info.action-section .col-md-12 {
        max-width: 90%;
    }
    .gridshort .rounded-circle {

        margin-top: 10px;
    }
    .grid-three {
        padding-left: 10px;
        padding-right: 10px;
    }
    .grid-three h3{
        font-size: 20px !important;
    }
    .gridshort .col-lg-3 {
        width: 50%;
    }
    .footer h5 {
        font-size: 16px;
    }


    .sticky-top.middle-center .navbar.builder_bg {

        padding-left: 0;
        padding-right: 0;
    }
    .collection-sections .col-md-4.col-sm-12.col-lg-4 {
        flex: 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 767px) {
    .checkout-sections .table.table-summary thead th:last-child, .table.table-summary tbody td:last-child {
        text-align: right;
        min-width: auto;
    }
    .newsletter-section .newsletterForm .btn {
        padding: 8px 25px;
    }
    .footerrow img.footerlogo {
        max-width: 150px;
        margin-bottom: 20px;
    }
    .footerrow .col:nth-child(2) {
        margin-left: 0;
    }
    .footerrow .col {
        width: 100%;
        flex: 100%;
        max-width: 100%;
        text-align: left;
    }
 .product-variant-flags .form-control {
    min-width: 105px;
}

}



@media screen and (max-width: 375px) {
    .headerCart {
        padding: 7px !important;
    }
    .section-header button.navbar-toggler {
        right: 4px !important;
    }
    .section-header .ml-3.dropdown-toggle:before {
        font-size: 16px !important;
    }
    a.nav-link.login_mode.loginBtn {
        padding: 4px;
    }
    .head-icons {
        padding-right: 18px;
    }
}
