/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/*? Helpers  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.center-v-h
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* perfect scrollbar */
.scrollbar-container{
    position: relative;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Auth  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */

.auth-card{
    width: 22rem;
    margin: auto;
    margin-top: 30px;
}

@media screen and (max-width: 400px) {
    .auth-card{
        width: 19rem;
    }
}

.auth-card .auth-input{
    background: rgba(255, 255, 255, 0.8);
    border: 2.45079px solid #B38F47;
    border-radius: 31.8602px;
}

.auth-card .auth-input:focus,
.auth-card .auth-input:hover{
    border-color: #B38F47;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(194 151 24 / 18%);
}

.auth-card .auth-pass-input{
    background: rgba(255, 255, 255, 0.8);
    border: 2.45079px solid #B38F47;
    border-radius: 31.8602px;
}

.auth-card .auth-pass-input:focus,
.auth-card .auth-pass-input:hover{
    border-color: #B38F47;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(194 151 24 / 18%);
}

.auth-card #pass-show-hide{
    background: rgba(255, 255, 255, 0.8);
    border: 2.45079px solid #B38F47;
    border-right: none;
    border-top-left-radius: 31.8602px;
    border-bottom-left-radius: 31.8602px;
}

.auth-card .auth-btn{
    border-radius: 9px;
    font-weight: 700 !important;
}
.auth-card .auth-btn:hover{
    color: var(--color-primary-p50);
}
.auth-card .language-dropdown{
    position: absolute;
    top: 10px;
    left: 0;
}
.auth-card .language-dropdown.forgot{
    position: absolute;
    top: 20px;
    left: 20px;
}

/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Footer  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.footer-links{
    color: var(--color-blue-b0) !important;
}
.footer-links:hover{
    color: var(--color-blue-b0) !important;
}

@media screen and (max-width: 991px) {
    .footer-wraper{
        flex-direction: column;
        gap: 15px;
    }
    .f-rights, .f-links{
        justify-content: center;
    }
}

/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Service in progress section  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */

 .services-in-progress .service-card{
    border-radius: 8px;
    transition: all 350ms linear;
}
 .services-in-progress .service-card .service-card-header .order-description{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    min-height: 6em;
}
 .services-in-progress .service-card .service-card-header .title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    min-height: 3em;
}

.services-in-progress .service-card.open{
    transform: scale(1.02) !important;
}

.services-in-progress .service-card .bottom-order-description{
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;

    transition: all 350ms linear;
    visibility: hidden;
    opacity: 0;
}
.services-in-progress .service-card.open .bottom-order-description{
    visibility: visible;
    opacity: 1;
}

/* inprogress */
.services-in-progress .service-card.inprogress .service-card-header{
    transition: all 350ms;
}
.services-in-progress .service-card.inprogress.open .service-card-header{
    padding-top: 15px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}
.services-in-progress .service-card.inprogress .service-card-header .order-status{
    transition: all 350ms;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    background: var(--color-blue-b0);
}
.services-in-progress .service-card.inprogress.open .service-card-header .order-status{
    height: 78px;
    width: 100%;
    opacity: 1;
}
.services-in-progress .service-card.inprogress .service-card-header .dates{
    transition: all 350ms;
    height: 24px;
    opacity: 1;
}
.services-in-progress .service-card.inprogress.open .service-card-header .dates{
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* progress bar */
.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar{
    position: relative;
    padding-top: 4px;
}
.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar .circle::after{
    content: "";
    width: 100%;
    height: 1.5px;
    position: absolute;
    background: #F4EAEF;
    left: 0; /* RTL */
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar.start .circle::after{
    width: 50%;
}
.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar.end .circle::after{
    width: 50%;
    right: 0 ; /* RTL */
}

.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar .circle-number{
    height: 25px !important;
    width: 25px !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-p300);
    background: var(--color-blue-b0);
    position: relative;
    z-index: 1;
}

.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar .circle-number span{
    background: #F4EAEF;
    width: 100%;
    border-radius: 50%;
}

.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar.active .circle-number span{
    background: var(--color-success-s300);
    color: var(--color-blue-b0);
}

.services-in-progress .service-card.inprogress .service-card-header .order-status .service-progress-bar .phase-name{
    line-height: 20px;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Price offer section  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */

/* card button */
.price-offers-section .details-btn{
    position: absolute;
    top: 50%;
    left: -10%; /* RTL */
    transform: translateY(-50%);
    width: 35%;
    height: 35%;
    border-radius: 11px;
    z-index: 3;
}
.price-offers-section .details-btn .inner-btn .link{
    z-index: 5;
}

.price-offers-section .details-btn .inner-btn{
    position: relative;
    background: var(--color-style-g1); /* RTL */
    border-radius: 11px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}
.price-offers-section .details-btn .inner-btn::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #074C75;
    transition: opacity 0.3s linear;
    z-index: 4;
    opacity: 0;
    border-radius: 11px;

}
.price-offers-section .details-btn .inner-btn:hover::before{
    opacity: 1;
}


/* card */
.price-offers-section .content-card.hovered .title,
.price-offers-section .content-card.hovered .offer-date,
.price-offers-section .content-card.hovered .offer-date span,
.price-offers-section .content-card.hovered .offer-expire-date span{
    color:  var(--color-blue-b0);
}
.price-offers-section .content-card.hovered .offer-expire-date{
    color: var(--color-yellow-y300);
}
.price-offers-section .content-card{
    width: 90%;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.5rem 30%; /* RTL */
    position: relative;
    z-index: 1;
}
.price-offers-section .content-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-style-g1);
    transition: opacity 0.3s linear;
    z-index: -1;
    opacity: 0;
    border-radius: 12px;
}
.price-offers-section .content-card:hover::before{
    opacity: 1;
}


/* show details link */
.price-offers-section .show-details-link{
    border-radius: 11px;
    position: relative;
    z-index: 1;
}
.price-offers-section .show-details-link i{
    transform: rotate(180deg);
}
.price-offers-section .show-details-link:hover{
    color: var(--color-blue-b0);
}
.price-offers-section .show-details-link::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 11px;
    background: var(--color-style-g2);
    transition: opacity 0.3s linear;
    z-index: -1;
    opacity: 0;
}
.price-offers-section .show-details-link:hover::before{
    opacity: 1;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Tasks section  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.tasks-bar .bar-btn{
    border-radius: 0;
    cursor: pointer;
}
.tasks-bar .bar-btn.active{
    border-bottom: 2px solid var(--color-accent-a500);
}
@media screen and (max-width: 576px) {
    .task-tab .head{
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 12px;
    }
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** sections section  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.sections-section .section-card{
    transition: all 250ms ease;
    min-height: 200px;
    position: relative;
    z-index: 1;
    aspect-ratio: 10/9;
}
.sections-section .section-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 17px;
    background: var(--color-style-g2);
    transition: opacity 0.3s linear;
    z-index: -1;
    opacity: 0;
}
.sections-section .section-card:hover::before{
    opacity: 1;
}

.sections-section .section-card:hover{
    transform: scale(1.05);
}
.sections-section .section-card .sec-img{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 17px;
    object-fit: cover;
}
.sections-section .section-card.hovered .sec-img{
    display: none;
}
.sections-section .section-card.hovered .sec-title{
    display: block !important;
}



/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Secions pages => sections  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.sections .section-card{
    position: relative;
    transition: all 200ms linear;
    z-index: 1;
    /* height: auto; */
}
.sections .section-card:hover{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.sections .section-card .show-details-btn{
    visibility: hidden;
    opacity: 0;
    transition: 250ms;
}
.sections .section-card .show-details-btn i{
    transform: rotate(180deg);
}
.sections .section-card.hovered .show-details-btn{
    visibility: visible;
    opacity: 1;
}
.sections .section-card.hovered .title{
    color: var(--color-blue-b0);
    font-size: 50px;
}
.sections .section-card .description{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    min-height: 6em;
}

.sections .section-card.hovered .description{
    color: var(--color-blue-b0);
    font-size: var(--h5);
}

.sections .section-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 11px;
    background: var(--color-style-g5);
    transition: opacity 0.3s linear;
    z-index: -1;
    opacity: 0;
}
.sections .section-card:hover::before{
    opacity: 1;
}

/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Single Secion page
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.single-service .add-to-cart:hover{
    color: var(--color-primary-p50);
}
.single-service .product-img{
    width: 11rem;
    height: 11rem;
    object-fit: cover;
    border-radius: 23.197px;
}

/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Breadcrumbs
/* -------------------------------------------------------------------------- */
/* ########################################################################## */

ul.breadcrumb {
    padding: 10px 0;
    list-style: none;
}

ul.breadcrumb li {
    display: inline;
    font-size: var(--large-text);
    font-weight: 500 !important;
}

ul.breadcrumb li+li:before {
padding: 8px;
color: black;
content: "/\00a0";
}

ul.breadcrumb li a {
color: rgba(0, 0, 0, 0.3);;
text-decoration: none;
}
ul.breadcrumb li a:hover {
color: var(--color-primary-p300);
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** My Orders Page
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.orders-grid .service-card{
    border-radius: 20px;
    height: 100%;
}

.orders-grid .service-card .title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
}

.orders-grid .service-card .order-description{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
}


/* progress bar */
.orders-grid .service-card.inprogress .service-card-header .order-status{
    background: var(--color-blue-b0);
}
.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar{
    position: relative;
    padding-top: 4px;
}
.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar .circle::after{
    content: "";
    width: 100%;
    height: 1.5px;
    position: absolute;
    background: #F4EAEF;
    left: 0; /* RTL */
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar.start .circle::after{
    width: 50%;
}
.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar.end .circle::after{
    width: 50%;
    right: 0 ; /* RTL */
}

.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar .circle-number{
    height: 25px !important;
    width: 25px !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-p300);
    background: var(--color-blue-b0);
    position: relative;
    z-index: 1;
}

.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar .circle-number span{
    background: #F4EAEF;
    width: 100%;
    border-radius: 50%;
}

.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar.active .circle-number span{
    background: var(--color-success-s300);
    color: var(--color-blue-b0);
}

.orders-grid .service-card.inprogress .service-card-header .order-status .service-progress-bar .phase-name{
    line-height: 20px;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Price offer page  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */

/* card button */
.price-offer-page .details-btn{
    position: absolute;
    top: 20%;
    left: -10%;
    transform: translateY(-20%);
    width: 35%;
    height: 35%;
    border-radius: 11px;
    z-index: 3;
}
.price-offer-page .details-btn .inner-btn .link{
    z-index: 5;
}

.price-offer-page .details-btn .inner-btn{
    position: relative;
    background: var(--color-style-g1); /* RTL */
    border-radius: 11px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.price-offer-page .content-card{
    width: 90%;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    background: var(--color-style-g1); /* RTL */
}
.price-offer-page .content-card .order-title{
    padding-left: 30% /* RTL */;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
}

.price-offer-page.pending .content-card .reject-btn,
.price-offer-page.pending .content-card .accept-btn{
    background: #ffffff;
    width: 35%;
    display: block;
    padding: 1rem;
    border-radius: 11px;
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: 1.5rem;
    transition: all 350ms ease;
}
.price-offer-page.pending .content-card .reject-btn:hover{
    background: var(--color-red-r300);
}
.price-offer-page.pending .content-card .reject-btn:hover h5{
    color: #ffffff;
}

.price-offer-page.pending .content-card .accept-btn:hover{
    background: var(--color-success-s300);
}
.price-offer-page.pending .content-card .accept-btn:hover h5{
    color: #ffffff;
}
.price-offer-page.pending .content-card .accept-btn{
    left: auto;
    right: 1.5rem;
}



/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Profile page  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.profile .profile-photo{
    width: 180px;
    height: 200px;
    border-radius: 17px;
}
.profile .profile-photo img{
    border-radius: 17px
}
.profile .edit-photo-btn{
    width: 150px;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px
}
.profile .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--color-primary-p300);
    background-color: #ffffff;
    border-bottom: 2px solid var(--color-primary-p400);
    border-radius: 0
}

.profile .profile-input{
    background: rgba(255, 255, 255, 0.8);
    border: 2.45079px solid var(--color-primary-p300);
    border-radius: 10px;
}

.profile .profile-input:focus,
.profile .profile-input:hover{
    border-color: var(--color-primary-p400);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(194 151 24 / 0%);
}


.profile .profile-btn{
    border-radius: 11px;
    position: relative;
    z-index: 1;
    color: var(--color-blue-b0);
}
.profile .profile-btn::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 11px;
    background: var(--color-style-g1);
    z-index: -1;
}


.profile .inverse-border-raduis{
    background: #f4f5f6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.profile .select2{
    background: rgba(255, 255, 255, 0.8);
    border: 2.45079px solid var(--color-primary-p300);
    border-radius: 10px;
}

.profile .select2:focus,
.profile .select2:hover{
    border-color: var(--color-primary-p400);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(194 151 24 / 0%);
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Add Support ticket page  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.support-ticket {
    border-radius: 17px;
}

.support-ticket .form-label {
    color: #000;
}

.support-ticket .form-label small {
    color: rgb(0, 0, 0, 0.5);
}

.support-ticket .select2 {
    background: rgba(255, 255, 255, 0.8);
    border: 2.45079px solid var(--color-primary-p300);
    border-radius: 10px;
}

.support-ticket .select2:focus,
.support-ticket .select2:hover {
    border-color: var(--color-primary-p400);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(194 151 24 / 0%);
}

.support-ticket .details {
    border: 2.45079px solid var(--color-primary-p300);
    border-radius: 10px;
}

.support-ticket .details textarea {
    border: none
}

.support-ticket .details textarea:focus,
.support-ticket .details textarea:hover {
    border: none;
    box-shadow: none
}

.support-ticket .details button {
    border-radius: 18px
}

.support-ticket .details button i {
    font-size: var(--h4)
}

.support-ticket .details .btns-group {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #fff
}

.support-ticket .add-ticket-btn {
    background: transparent
}

.support-ticket .details .btns-group .voice-spinner{
    position: absolute;
    width: 8px;
    right: 34%;
    height: 8px;
    top: 39%;
}

@media screen and (max-width: 991px) {
    .support-ticket .details .btns-group .voice-spinner{
        position: absolute;
        width: 8px;
        right: 30%;
        height: 8px;
        top: 34%;
    }
}

.support-ticket .screen-timer{
    bottom: 60px;
    left: 100px;
    background: rgb(0,0,0,0.6);
    border-radius: 5px;
    padding: 3px 8px;
    color: #fff;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}
.support-ticket .voice-timer{
    bottom: 60px;
    left: 100px;
    background: rgb(0,0,0,0.6);
    border-radius: 5px;
    padding: 3px 8px;
    color: #fff;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Price offer Details section  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */

/* card button */
.details-btn-search{
    position: relative !important ;width: 70% !important ;z-index: 3 !important;top: 20%;left: -10%;height: 50%;
}
.top-4{
    top: 40%;
}
.w-8{
    width: 80%;
}
.mt-8{
    margin-top: 3.8rem;
}
.reson-refuose-offer{
    margin-top: 5rem;
    width: 90%;
}
.border-blue{
    border: 2px solid #0db8ec;
}
.btn-rejected{
    background: var(--color-red-r300);
    color: #fff;;
}
.btn-rejected:hover{
    color: #fff;;
}
 .content-card-detail{
    width: 90%;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    color: #fff;;
    background: var(--color-style-g1); /* RTL */
}
.icon-offer{
    position: relative;
    top:30% !important;
}
.icon-waiting{
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Support Details section  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */



   .details-btn-support{
    position: absolute;
    top: 29%;
    left: 4%;
    transform: translateY(-20%);
    width: 26%;
    height: 76%;
    border-radius: 23px;
    z-index: 0;
    background-color: #fff;
    color: #074C75;

}

.detail-btn{
    background: #ffffff;
    width: 80%;
    display: block;
    padding: 1rem;
    border-radius: 11px;
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: 2.8rem;
    transition: all 350ms ease;
    color: #074C75;
}
 .content-card-support{
    width: 75% !important;

}
.color-s{
    color: #1688ca;
}

/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Bookmarks  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.bookmarks .search-input{
    border: 2px solid var(--color-primary-p300);
    border-radius: 7px;
}
.bookmarks .search-input .search-icon {
    border: none;
    background: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
.bookmarks .search-input input {
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.bookmarks .search-input input:focus,
.bookmarks .search-input input:hover{
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Bookmarks  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.bookmarks .search-input{
    border: 2px solid var(--color-primary-p300);
    border-radius: 7px;
}
.bookmarks .search-input .search-icon {
    border: none;
    background: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
.bookmarks .search-input input {
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.bookmarks .search-input input:focus,
.bookmarks .search-input input:hover{
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}
/* bookmark card */
.bookmarks-grid .bookmark-card{
    border-radius: 8px;
}
/*
.bookmarks-grid .bookmark-card .title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    min-height: 3em;
} */

.bookmarks-grid .bookmark-card .order-description{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    min-height: 4.5em;
}
.bookmarks-grid .bookmark-card .show-details{
    background: #fff;
    width: 80%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 10px;
}
.bookmarks-grid .bookmark-card .show-details a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


.bookmarks-grid .bookmark-card .close-btn{
    background: #fff;
    width: 65px;
    height: 53px;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 8px;
}
.bookmarks-grid .bookmark-card .close-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Product  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.product .product-img-container{
    width: 300px;
    height: 330px;
    background-color: #0E72B3;
    border-radius: 23.5px;
}
.product .product-img-container img{
    width: 100%;
    height: 90%;
    border-radius: 23.5px;
}
.product .product-img-container .product-version{
    background: #fff;
    width: 85%;
    height: 60px;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 25px);
    font-weight: 400 !important;
}
.product .product-img-container .add-bookmark{
    height: 55px;
    width: 60px;
    background: #fff;
    border-radius: 11px;
    position: absolute;
    left: 0;
    top: 20px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .product-img-container .add-bookmark a{
    width: 100%;
    height: 1   00%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product button.add-to-cart{
    background-color: #0E72B3;
    color: #fff;
    border-radius: 14px;
    border: 1px solid rgba(169, 171, 210, 0.10);
}

.product .p-price{
    background-color: #fff;
    border-radius: 11.25px;
}
.product .p-currency{
    border-top-left-radius: 11.25px;
    border-bottom-left-radius: 11.25px;
    background: var(--colors-primary-b-50, #E7F2F9);
    box-shadow: 0px 4.5px 22.5px 3.75px rgba(0, 0, 0, 0.12);

    height: 80%;
    margin-top: auto;
    margin-right: -12px;
    z-index: -1;
    padding-left: 8px;
    padding-right: 20px;
    color: #7B2F2F;
}

.product-card .add-to-cart:hover{
    color: var(--color-primary-p50);
}
.product-card .product-img{
    width: 11rem;
    height: 11rem;
    object-fit: cover;
    border-radius: 23.197px;
}


/* ########################################################################## */
/* -------------------------------------------------------------------------- */
/** Shooping Cart  */
/* -------------------------------------------------------------------------- */
/* ########################################################################## */
.shooping-cart{
    border-radius: 32px;
}

.cart-order{
    border-radius: 8.097px;
    background: var(--color-style-g1);
}

.cart-order .order-checkbox{
    width: 36px;
    height: 36px;
    accent-color: var(--color-primary-p300) !important;
}

.cart-order .order-price{
    background-color: #fff;
    border-radius: 7.806px;
    box-shadow: 0px 3.1224491596221924px 15.612245559692383px 2.602041006088257px rgba(0, 0, 0, 0.12);
    z-index: 2;
}
.cart-order .order-currency{
    color: #fff;
    border-top-left-radius: 7.806px;
    border-bottom-left-radius: 7.806px;
    background: var(--colors-primary-b-200, #3492CB);
    box-shadow: 0px 3.1224491596221924px 15.612245559692383px 2.602041006088257px rgba(0, 0, 0, 0.12);
    padding-right: 25px !important;
    margin-right: -18px;
    z-index: 1;
}

.cart-order .items-counter{
    background: #fff;
    border-radius: 7.806px;
}
.cart-order .items-counter .plus-btn{
    box-shadow: 2px 0px 8px -1px;
    border-radius: 7.806px;
    cursor: pointer;
    height: 100%;
}

.cart-order .items-counter .minus-btn{
    box-shadow: -2px 0px 8px -1px;
    border-radius: 7.806px;
    cursor: pointer;
    height: 100%;
}

.cart-order .items-counter .items-count{
    width: 60px;
}

.cart-payment-card{
    background-color: #fff;
    border-radius: 32px;
}
.cart-payment-card .payment-receipt{
    color: #354764;
}



.cart-payment-card .file-input{
    width: fit-content;
    background: var(--color-style-g5);
    border-radius: 9px;
    padding: 2px;
    cursor: pointer;
}
.cart-payment-card .file-input .inner{
    border-radius: 6px;
    background: white;
    padding: 3px 10px;
    position: relative;
    z-index: 1;
}
.cart-payment-card .file-input .inner::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 6px;
    background: var(--color-style-g5);
    transition: opacity 500ms ease;
    z-index: -1;
    opacity: 0;
}
.cart-payment-card .file-input .inner:hover::before{
    opacity: 1;
}

.cart-payment-card .file-input .inner .inner-text{
    background: var(--color-style-g5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700 !important
}
.cart-payment-card .file-input .inner:hover .inner-text{
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-payment-card .purchase-btn{
    background: var(--color-style-g1);
    color: #fff;
    border-radius: 12px;

}
.object-fit-cover {
    object-fit: cover
}




.product-in-list .p-price{
    background-color: #fff;
    border-radius: 11.25px;
    z-index: 2;
}
.product-in-list .p-currency{
    border-top-left-radius: 11.25px;
    border-bottom-left-radius: 11.25px;
    background: var(--colors-primary-b-50, #E7F2F9);
    box-shadow: 0px 4.5px 22.5px 3.75px rgba(0, 0, 0, 0.12);

    height: 80%;
    margin-top: auto;
    margin-right: -12px;
    z-index: 1;
    padding-left: 8px;
    padding-right: 20px;
    color: #7B2F2F;
}
