:root {
    --rg-bg: #f6f8fc;
    --rg-text: #1a1a1a;
    --rg-muted: #6a6f7a;
    --rg-border: #e5e7eb;
    --rg-soft: #ffffff;
    --rg-primary: #131921;
    --rg-accent: #febd69;
    --rg-highlight: #2874f0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0;
    /* font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; */
    color: var(--rg-text);
    background: var(--rg-bg);
    line-height: 1.5;
}

body {
    /* font-family: "Montserrat", Arial, sans-serif; */
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
} 
.container {
  max-width: 1500px;
  /* margin: 0 auto; */
}
.top-navbar {
    background: var(--rg-primary);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.search-wrap {
    flex: 2;
    max-width: 650px;
    margin-left: 1rem;
    margin-right: 1rem;
    background: #fff;
    border-radius: 0.35rem;
    overflow: hidden;
    border: 2px solid transparent;
}

.search-wrap:focus-within {
    border-color: var(--rg-accent);
}

.search-wrap .form-control {
    border: 0;
    border-radius: 0;
}

.search-wrap .btn {
    border-radius: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.header-icon-btn:hover,
.header-icon-btn:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.2);
}

.icon-count {
    position: absolute;
    top: -0.3rem;
    right: -0.25rem;
    min-width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
    padding: 0 0.2rem;
}

.category-strip {
    background: #fff;
}

.chip-link {
    text-decoration: none;
    color: #2f3542;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #eceef3;
    transition: all 0.2s ease;
}

.chip-link:hover {
    color: #111827;
    background: #f5f7fb;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 0.85rem;
    background: linear-gradient(120deg, #12203b 0%, #1b3d7a 50%, #2967d8 100%);
}

.hero-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 130px;
    object-fit: cover;
    opacity: 0.22;
    pointer-events: none;
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--rg-muted);
}

.quick-deals {
    background: #fff;
    border: 1px solid var(--rg-border);
    border-radius: 0.8rem;
    /* padding: 1rem; */
}

.deal-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.5rem;
    background: #f8f9fd;
    border: 1px dashed #dfe4ef;
    font-size: 0.9rem;
}

.deal-line img {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    object-fit: cover;
    flex-shrink: 0;
}

.deal-line strong {
    margin-left: auto;
}

.feature-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.75rem;
    padding: 1rem;
    background: #fff;
}

.offer-card-thumb {
    width: 100%;
    height: 90px;
    border-radius: 0.55rem;
    object-fit: cover;
    margin-bottom: 0.55rem;
}

.flash-offer {
    animation: flashPulse 1.6s ease-in-out infinite;
}

@keyframes flashPulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 80, 80, 0);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.25);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 80, 80, 0);
    }
}

.section-box {
    border: 1px solid var(--rg-border);
    border-radius: 0.85rem;
    background: #fff;
    padding: 1rem;
}

.recent-product-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.7rem;
    background: #fff;
    padding: 0.65rem;
}

.recent-product-card img {
    width: 100%;
    height: 170px;
    border-radius: 0.55rem;
    object-fit: cover;
    display: block;
}

.new-items-carousel {
    border: 1px solid var(--rg-border);
    border-radius: 0.85rem;
    background: #fff;
    padding: 1rem 2.5rem;
}

.new-item-card {
    border: 1px solid #edf1f7;
    border-radius: 0.75rem;
    background: #fbfdff;
    padding: 0.6rem;
}

.new-item-card img {
    width: 100%;
    height: 210px;
    border-radius: 0.55rem;
    object-fit: cover;
    display: block;
}

.new-items-carousel .carousel-control-prev,
.new-items-carousel .carousel-control-next {
    width: 2.1rem;
}

.new-items-carousel .carousel-control-prev-icon,
.new-items-carousel .carousel-control-next-icon {
    background-color: rgba(17, 24, 39, 0.65);
    border-radius: 999px;
    background-size: 60%;
}

.hot-deal-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.8rem;
    background: #fff;
    padding: 1rem;
    height: 100%;
}

.deal-thumb {
    width: 100%;
    height: 231px;
    border-radius: 0.6rem;
    object-fit: cover;
}

.old-price {
    color: #6b7280;
    text-decoration: line-through;
    margin-left: 0.35rem;
    font-size: 0.88rem;
}

.ads-banner {
    border-radius: 0.9rem;
    padding: 1.4rem;
    background: linear-gradient(120deg, #6528f7 0%, #9c27b0 50%, #ea4c89 100%);
}

.ads-flash-text {
    animation: adsTextFlash 3s ease-in-out infinite;
}

@keyframes adsTextFlash {
    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        opacity: 0.45;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    }
}

.brand-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.8rem;
    background: #fff;
    padding: 1rem;
}

.brand-list li + li {
    margin-top: 0.55rem;
}

.brand-list a {
    text-decoration: none;
    color: #334155;
    font-size: 0.92rem;
}

.brand-list a:hover {
    color: #1d4ed8;
}

.product-card {
    border: 1px solid var(--rg-border);
    border-radius: 0.85rem;
    padding: 0.85rem;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0.6rem;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.product-image-offer {
    position: relative;
    background: #fff;
}

.product-image-offer img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-offer {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    background: #cc0c39;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 0.35rem;
}

.discount-badge {

    background: #cc0c39;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.1rem 0.25rem;
    border-radius: 0.35rem;
    margin-left: 5px;
}

.rating-badge {
    /* display: block;
    flex-direction: row-reverse; */
    font-size: 0.83rem;
    color: #ffe30b;
    background: #DB9200;
    display: inline-flex;
    gap: 0.35rem;
    border-radius: 0.3rem;
    padding: 0.1rem 0.4rem;
}

.rating-badge span {
    color: #fff;
    background: transparent;
    font-weight: 500;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.price span {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 0.84rem;
    margin-left: 0.35rem;
    font-weight: 500;
}

.btn-cart {
    border: 1px solid #f59e0b;
    background: #facc15;
    color: #111827;
    font-weight: 700;
}

.btn-cart:hover {
    background: #fbbf24;
    color: #111827;
}

.related-item {
    display: block;
    text-decoration: none;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #dbe4f5;
    background: #f8fbff;
    border-radius: 0.6rem;
    padding: 0.7rem 0.8rem;
    height: 100%;
}

.related-item:hover {
    color: #1d4ed8;
    border-color: #c8d7f0;
}

.newsletter-wrap {
    border: 1px solid var(--rg-border);
    border-radius: 1rem;
    background: #fff;
}

#newsletterMessage.success {
    color: #0f5132;
}

#newsletterMessage.error {
    color: #842029;
}

@media (max-width: 991.98px) {
    .search-wrap {
        display: none;
    }

    .header-actions {
        margin-top: 0.5rem;
    }

    .hero-banner {
        padding: 1.5rem;
    }

    .new-items-carousel {
        padding: 1rem;
    }

    .new-items-carousel .carousel-control-prev,
    .new-items-carousel .carousel-control-next {
        display: none;
    }

    .select-style{        
        height: 37px;
        /* border-radius: 12px; */
    }

    .search-filters .form-select, .form-search-select {
        height: 34px;
        /* border-radius: 12px; */
        box-shadow: none;
    }
}

@media (max-width: 575.98px) {
    .hero-section .display-6 {
        font-size: 1.7rem;
    }

    #newsletterForm {
        flex-direction: column;
    }

    #newsletterForm .btn {
        width: 100%;
    }

     .new-items-carousel .carousel-control-prev,
    .new-items-carousel .carousel-control-next {
        display: none;
    }

    .select-style{
        height: 37px;
        /* border-radius: 12px; */
    }

    
    .search-filters .form-select, .form-search-select {
        height: 34px;
        /* border-radius: 12px; */
        box-shadow: none;
    }
}

.bg-primary{
    background-color:#DB9200!important; 
}

.filter-sidebar .btn-primary{
    --bs-btn-bg:#DB9200;
    --bs-btn-border-color : #DB9200;
}   

.filter-sidebar .dual-range-slider .slider-range{
    background: #DB9200 !important;
}
.filter-sidebar .dual-range-slider .slider-thumb{
    background: #DB9200 !important;
}

.brand-intro-section .brand-hero-image{
    width:100px;
}

body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image{
    width: 130px !important;
}

body.page-product .page-product-top .product-info .product-title{
    font-size: 20px!important;
}
.h6 {
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: #DB9200;
}

.filter-sidebar .subcategory-link.active{
    color:#DB9200!important;
}
.dropdown-item{
    font-size: 16px;
}

header .header-desktop .left .logo{
        margin-top: -7px!important;
}
.h-60{
    height: 60px!important;
}

.mobile-cart-icon li {
    list-style: none;
}
.header-mobile{
    background-color: #fff;
}

/* Search Filters */

.search-filters {
    position: sticky;
    top: 60px;
    z-index: 1020;
}

.filter-pill .form-select {
    min-width: 160px;
    border-radius: 999px;
    padding-left: 16px;
    padding-right: 36px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    background-color: #fff;
}

.filter-pill .form-select:focus, .form-search-select:focus {
    border-color: #DB9200;
    box-shadow: 0 0 0 0.15rem rgba(240, 173, 78, 0.18);
}

.search-filters form {
    justify-content: center;
}

.btn-primary-btn{
    color: rgb(255, 255, 255);
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: rgba(220, 42, 47, 0.28) 0px 5px 18px;
    background: rgb(219, 146, 0);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 999px;
    padding: 8px 10px;
}

.btn-primary-btn:hover{
    background: rgb(227, 161, 30);
     color: rgb(255, 255, 255);
}

.search-filters form{
    /* display: flex; */
    /* flex-direction: column; */
    gap: 18px;
} 


/* Combo box container */
.combo-box {
  position: relative;
  width: 300px;
  max-width: 100%;
  margin-bottom: 16px;
}

/* Main input field */
.combo-box .combo-input {
  width: 100%;
  padding: 10px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  box-shadow: 0 0 0 0 transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus state */
.combo-box .combo-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Datalist (dropdown) customization (limited by browser) */
/* You can style the options’ font size and color in most browsers */
@supports (caret-color: #000) {
  datalist option {
    padding: 6px 10px;
    font-size: 14px;
    color: #333;
  }
}


.form-card input,
.form-card select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  padding: 12px 0;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: #333;
}

/* Select box designs */
.search-filters {
    position: sticky;
    top: 60px;
    z-index: 3;
    font-size: 12px;
}

.filter-bar {
    padding: 6px 0;
}

.filter-box {
    min-width: 180px;
    position: relative;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
    display: block;
    padding-left: 6px;
}

.filter-select {
    width: 100%;
}

.select2-container--bootstrap-5 .select2-selection {
    height: 48px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.select2-container--bootstrap-5 .select2-selection__rendered {
    line-height: 46px;
    color: #111827;
    font-weight: 500;
}

.select2-container--bootstrap-5 .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.select2-container--bootstrap-5 .select2-results__option {
    padding: 12px 14px;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background: #f3f4f6;
    color: #111827;
}

.filter-btn {
    height: 48px;
    border-radius: 14px;
    padding: 0 24px;
    margin-top: 24px;
}

.search-filters .form-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

/* .search-filters .form-select {
    height: 46px;
    border-radius: 12px;
    box-shadow: none;
} */

.search-filters .btn-primary-btn {
   
    border-radius: 12px;
    height: 35px;
}


.select-style{
    /* border:1px solid #999;
    border-radius:5px;
    margin-top: 0px; */
    height: 37px;
    /* width: 205px;
    padding-left: 6px; */
}


@media (max-width: 575.98px) {
    .select-style{
        height: 37px;
        /* border-radius: 12px; */
    }
}

.search-filters .form-control,
.search-filters .form-select, .form-search-select {
    height: 37px;
    /* border-radius: 12px; */
}

@media (max-width: 767px) {
    .search-filters .row {
        row-gap: 10px;
    }

    .search-filters .btn-primary-btn {
        height: 46px;
    }
}

.mobile-filter-trigger {
    height: 35px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    cursor: pointer;
    margin: 8px;
}

.mobile-filter-offcanvas {
    height: 85vh;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.select2-container--default .select2-selection--single{
    height: 40px;
}

.h35{
    height: 35px;
}
.select2-container{
    margin-top:4px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: #999!important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding-right: 0px!important;
}

.form-select , .form-search-select, .select-style{
    width: 100%;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    padding: 2px 11px;
    font-size: 15px;
    outline: none;
    /* background: transparent; */
    color: #746e6e;
}

.fsize25{
    font-size: 25px;
}



/* Home Slider */
.contact-btn {
    background: #DB9200;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(220, 42, 47, 0.25);
}
.content-grid {
    display: grid;
    /* grid-template-columns: 1fr 320px; */
    gap: 32px;
    align-items: start;
}

.plan-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 115px 1fr;
  min-height: 150px;
}

.plan-card-small {
  grid-template-columns: 1fr;
}
.cards-row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 0.6fr 40px;
  
  gap: 16px;
  align-items: center;
  /* margin-bottom: 40px; */
}

.cards-row {
grid-template-columns:repeat(4, 1fr);
}

/* .cards-row {
grid-template-columns: 36px 1fr 1fr 36px;
}   */

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: grid;
    place-items: center;
    color: #888;
    font-size: 22px;
}

.plan-image {
    position: relative;
    background: #f6f6f6;
    overflow: hidden;
    min-height: 150px;
}

.plan-info {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.small-label {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 4px;
}

.plan-size {
    font-size: 17px;
    font-weight: 700;
    color: #333;
}
.plan-price {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #444;
}

.plan-possession {
    margin-top: 6px;
    font-size: 13px;
    color: #666;
}
.plan-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}


.plan-footer a {
  /* color: #c43a44; */
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}


.posted{
    font-size: 12px;
}

.custom-login{
    width:35%
}

@media (max-width: 1100px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: static;
  }

  .cards-row {
    grid-template-columns:repeat(4, 1fr);
  }

  .plan-card-small {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .cards-row {
    grid-template-columns: 1fr;
  }

  .nav-btn {
    display: none;
  }

  .plan-card {
    grid-template-columns: 90px 1fr;
  }

  .property-strip {
    grid-template-columns: 1fr 1fr;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .property-section h2 {
    font-size: 22px;
  }
}

.img-h200{
    height: 200px;
}

.forgot {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #7e9dc5;
    text-decoration:none;
}
/* Property Detail Page design */

.details-card {
    /* border: 1px solid #e5e7eb; */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.detail-row {
    display: flex;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f1f1;
    align-items: center;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 35%;
    font-weight: 600;
    color: #6b7280;
}

.detail-value {
    flex: 1;
    color: #111827;
    font-weight: 500;
}

@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .detail-label,
    .detail-value {
        width: 100%;
    }
}

#toggleFilterSidebar{
    background-color: #DB9200 !important;
    border-color: #c88d16 !important;
}

.about-text, .footer-box a {
    color: #e1dddd!important;
}
.contact-btn-mob{
    background: #DB9200;
    color: #fff;
    border: none;
    border-radius: 182px;
    padding: 5px 7px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(220, 42, 47, 0.25);
}

header .logo{
    margin-left:23px;
}
header .header-mobile{
    padding:0px!important;
    padding-bottom:14px!important;
}

.breadcrumb-wrap{
    padding: 12px 0!important;
}
.btn-primary-btn-search{
    color: rgb(255, 255, 255);
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: hsla(130, 34%, 71%, 0.855) 0px 5px 18px;
    background: #538253;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 999px;
    padding: 8px 10px;
}

/* ==========================================
   FLOATING SHARE
========================================== */

.floating-share{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:99999;
}

/* Toggle Button */

.share-toggle{
    width:48px;
    height:48px;
    border:none;
    background:#DB9200;
    color:#fff;
    border-radius:10px 0 0 10px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.share-toggle i{
    font-size:22px;
    transition:.3s;
}

/* Share Icons */

.share-icons{
    position:absolute;
    top:0;
    right:-48px;
    display:flex;
    flex-direction:column;
    transition:.35s ease;
}

.share-icons a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.share-icons a:hover{
    width:58px;
}

/* Desktop */

@media (min-width:992px){

    .floating-share:hover .share-icons{
        right:48px;
    }

}

/* Mobile */

@media (max-width:991px){

    .share-icons.open{
        right:48px;
    }

}

/* Colors */

.whatsapp{
    background:#25D366;
}

.instagram{
    background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
}

.facebook{
    background:#1877F2;
}

.email{
    background:#EA4335;
}

.copy-link{
    background:#6c757d;
}

body.page-news-details .newest-box .newes-title{
    line-height: 30px!important;
}