/*Main Css */

body {
    font-family: "Josefin Sans";
    overflow-x: hidden;
    font-size: 14px;
    font-weight: normal;
}
select {
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: "Futura";
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0px;
}
a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
}

a:hover {
    color: #6fb940;
}

p,
a {
    font-size: 14px;
    font-weight: 500;
    color: #353535;
    line-height: 22px;
    text-decoration: none !important;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 24px;
    display: block;
}

span {
    display: inline-block;
}

ul {
    list-style: none;
}

/*Scrollbar*/

::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: rgb(138 198 61);
    border-radius: 0px;
    transition: all 0.4s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(000, 000, 000);
    background: linear-gradient(
        180deg,
        rgba(36, 37, 41, 1) 60%,
        rgba(36, 37, 41, 1) 100%
    );
}

.ovr-hiddn {
    overflow: hidden;
}
body.ovr-hiddn:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000082;
    z-index: 1;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #5a5a5a;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span {
    background: #fff;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/*Global Css*/
.hd-2 {
    font-family: "Proxima Nova";
    font-weight: 600;
    text-transform: uppercase;
    font-size: 35px;
    letter-spacing: 0.5px;
    color: #434343;
}

.hd-4 {
    font-family: "Proxima Nova";
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 0.5px;
    color: #434343;
}
.hd-shape {
    position: relative;
}

.hd-shape h5 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Josefin Sans";
    color: #252525;
    letter-spacing: 3px;
    margin: 0;
}

.hd-shape h2 {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    color: #252525;
    letter-spacing: 6px;
    margin: 0;
    padding-bottom: 20px;
}

.hd-shape p {
    font-size: 16px;
    font-weight: 400;
    color: #252525;
    letter-spacing: 1.5px;
    width: 89%;
    margin: auto;
    line-height: 1.5;
}

.hd-shape h5:before {
    content: "";
    position: relative;
    display: inline-block;
    background-color: #252525;
    width: 300px;
    height: 2px;
    left: -15px;
    top: -8px;
}

.hd-shape h5:after {
    content: "";
    position: relative;
    display: inline-block;
    background-color: #252525;
    width: 300px;
    height: 2px;
    right: -15px;
    top: -8px;
}

.light.hd-shape h5,
.light.hd-shape h2,
.light.hd-shape p {
    color: #ffffff;
}

.light.hd-shape h5:before,
.light.hd-shape h5:after {
    background-color: #ffffff;
}

/*Button*/

span.btn-span .join-btn {
    background: #fbde18;
    padding: 10px 20px;
    color: #5a5a5a;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    clip-path: polygon(0 0, 94% 0, 100% 20%, 100% 100%, 0 100%, 0% 50%);
    border-radius: 5px;
    border: 0;
}

span.btn-span a.join-btn:hover {
    color: #fff;
    background-color: #5a5a5a;
}

span.btn-span a.join-btn.lt:hover {
    color: #ffffff;
    background-color: #5a5a5a;
}

span.btn-span {
    position: relative;
}

span.btn-span:before {
    content: "";
    position: absolute;
    background-image: url(../images/btn-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 105%;
    right: -14px;
    top: 3px;
    pointer-events: none;
}

/*****************************************************************************************************/

/*                                          Header top head start                                     */

/*****************************************************************************************************/

.header-center {
    padding: 15px 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid #d7d7d7;
}

div#h-c .row {
    align-items: center;
}
/* div#search {
    width: 100%;
  } */
.search-products .custom-woo-search {
    border: none;
    border-radius: 3px;
    position: relative;
}
form#search-form {
    font-size: 14px;
    margin-bottom: 0;
}
form#search-form > div {
    display: inline-block;
}
.search-products .getsearchinput {
    width: 100%;
}
.search-products input.searchbox {
    padding-left: 33%;
}

/* .search-products .getsearchcat {
    border: 2px solid #4e76bd;
  } */
.search-products select#product_cat {
    border-radius: 2px 0px 2px 0px;
    /* border-left: 2px solid #4e76bd; */
}
select#product_cat {
    width: 100%;
    background: #f7f7f7;
    cursor: pointer;
    border: none;
    /* border: 1px solid #ebebeb; */
    height: 40px !important;
}
input.searchbox,
select#product_cat {
    border: 1px solid #ebebeb;
    height: 30px !important;
    height: 100%;
    border-radius: 5px;
}
button.search-btn-bg {
    background: #fbde18;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 9.5px 25px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    border-radius: 0px 2px 2px 0px;
}
button.search-btn-bg {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
button.search-btn-bg span {
    font-size: 14px;
}
button.search-btn-bg:hover {
    background-color: #5a5a5a;
}
.search-products .getsearchbtn {
    position: absolute;
    right: 0;
    border-right: 2px solid #4e76bd;
    top: 0px;
}
.getsearchinput input.searchbox {
    width: 100%;
}
.header-top-links button.btn {
    background-color: #4e76bd;
    border: none;
    color: white;
    border-radius: 0;
    padding-right: 1.5rem;
}
.header-top-links:not(:disabled):not(.disabled).active,
.header-top-links:not(:disabled):not(.disabled):active,
.header-top-links .show > .dropdown-toggle {
    color: #fff;
    background-color: #4e76bd;
    border-color: #4e76bd;
}
.btn-danger.focus,
.btn-danger:focus {
    background-color: #4e76bd;
    border-color: #4e76bd;
    box-shadow: none !important;
}
.account-list-container button.btn.btn-danger {
    line-height: 15px;
    width: 100%;
    text-align: left;
}
.account-list-container .dropdown-menu {
    background: #4e76bd;
    padding: 0;
    border-radius: 0;
    border: 1px solid #fbde18;
    width: 100% !important;
    margin: 0px;
}
.account-list-container .dropdown-menu .dropdown-item:hover {
    background-color: #4e76bd !important;
}
.account-list-container .dropdown-menu .dropdown-item {
    font-size: 14px;
    color: #fff;
    font-weight: 700 !important;
}
.header-top-links button.btn.btn-danger span.hello {
    font-size: 12px;
    display: block;
    text-align: left;
}
.header-top-links button.btn.btn-danger span.account-list {
    font-size: 13px;
    font-weight: 600;
}
.ps-hd-last-box {
    text-align: right;
}

.pop_cat_slider.slick-initialized.slick-slider {
    position: relative;
}

button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
}

button.slick-prev.slick-arrow {
    left: -12px !important;
}

button.slick-next.slick-arrow {
    right: -12px !important;
}

.home_search_box.single-product-serach {
    width: 98%;
    margin: 0 auto 20px auto;
}

.home_search_box.single-product-serach > form {
    box-shadow: 0px 0px 5px 2px #00000029;
}

.home_search_box.single-product-serach span.home_search_btn {
    padding-right: 6px;
}

.d-mobile-menu-remove,
.d-mobile-menu {
    display: none;
}

.unsubscribe-account > form {
    padding: 20px;
    border: 1px solid #c3322e;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #c3322e0d;
}

a.pro-btn {
    position: relative;
    padding: 10px 35px 10px 20px !important;
}

a.pro-btn svg {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 1600px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }
}

/*****************************************************************************************************/

/*                                          Header Start                                             */

/*****************************************************************************************************/

.main-header {
    position: relative;
    z-index: 1;
}

.main-header ul.top-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 0;
    margin: 0;
}

.main-header ul.top-menu li {
    padding-left: 30px;
}

.main-header ul.top-menu li a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
}

.main-header ul.top-menu li a i {
    padding-right: 5px;
}

.main-header ul.top-menu li a:hover {
    color: #6fb940;
}

.main-header ul.top-menu li a i.fa-shopping-cart {
    position: relative;
}

.main-header ul.top-menu li a i.fa-shopping-cart span.cart-count {
    background: #6fb940;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    top: -12px;
    right: -4px;
    font-size: 10px;
    font-family: "Josefin Sans";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.main-header .logo a {
    width: 100%;
}

.main-header .logo a img {
    width: 100%;
    height: 100%;
}

.main-header ul.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    position: relative;
}

.main-header ul.header-menu li {
    position: relative;
    z-index: 1;
    margin-left: 30px;
}

.main-header ul.header-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: #5a5a5a;
    position: relative;
}

.main-header ul.header-menu li.active_nav a,
.main-header ul.header-menu li a:hover {
    color: #6fb940;
}

/* .main-header ul.header-menu li.active_nav a:before,
  .main-header ul.header-menu li a:hover:before {
    content: '';
    position: absolute;
    background: #6fb940;
    width: 105%;
    height: 4px;
    top: -14px;
    margin: auto;
  } */

.main-header {
    /* background: #4e76bd; */
    height: 50px;
    display: flex;
    align-items: center;
}

/*****************************************************************************************************/

/*                                          Header End                                               */

/*****************************************************************************************************/

/*Footer*/

footer {
    background-color: #f8f8f8;
}

/* footer .footer-logo {
    text-align: center;
  } */
.footer-logo a img {
    width: 100%;
    height: 100px;
}
section.footer-sec {
    /* margin-top: 40px; */
    padding: 50px 0px;
}

section.footer-sec h4 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #5a5a5a;
    font-family: "Josefin Sans";
    margin-bottom: 15px;
    position: relative;
}
/*
  section.footer-sec h4.c-line:after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 50%;
    height: 1px;
    display: inline-block;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 120px;
  } */

section.footer-sec h4.c-line.n:after {
    width: 60%;
    left: 125px;
}

section.footer-sec ul.footer-menu {
    column-count: 2;
}

section.footer-sec ul.footer-menu,
section.footer-sec ul.info-menu {
    padding: 0;
    margin: 0;
}

section.footer-sec ul.footer-menu li,
section.footer-sec ul.info-menu li {
    padding-top: 10px;
}

section.footer-sec ul.footer-menu li a,
section.footer-sec ul.info-menu li a {
    color: #5a5a5a;
    font-size: 16px;
    font-family: "Josefin Sans";
    font-weight: 600;
}

section.footer-sec ul.footer-menu li a:hover,
section.footer-sec ul.info-menu li a:hover,
section.footer-sec ul.footer-menu li.active a,
section.footer-sec ul.info-menu li.active a {
    color: #6fb940;
}

.footer-sec p {
    color: #5a5a5a;
    width: 86%;
    font-weight: 500;
}

.footer-sec .footer-bottom {
    text-align: center;
}

.footer-sec .footer-bottom ul.foot-social-media {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

/* .footer-sec .footer-bottom ul.foot-social-media:before {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 40%;
    height: 1px;
    left: 0;
  } */

/* .footer-sec .footer-bottom ul.foot-social-media:after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 40%;
    height: 1px;
    right: 0;
  } */

.footer-sec .footer-bottom ul.foot-social-media li {
    margin: 0 5px;
}

.footer-sec .footer-bottom ul.foot-social-media li a {
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 18px;
}

.footer-sec .footer-bottom ul.foot-social-media li a {
    color: #fff;
    background: #6fb940;
}

.footer-sec form {
    text-align: right;
}

.footer-sec input[type="email"] {
    width: 100%;
    background: #fff;
    border: none;
    padding: 10px;
    color: #5a5a5a;
}

.footer-sec input::placeholder {
    color: #5a5a5a;
}

.footer-sec button {
    background: #fbde18;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    clip-path: polygon(0 0, 94% 0, 100% 20%, 100% 100%, 0 100%, 0% 50%);
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
}

.footer-sec button:hover {
    background: #5a5a5a;
    color: #fff;
}

.copyright {
    padding: 20px 0px;
    background-color: #eaeaea;
}

.copyright .row {
    align-items: center;
}

.copyright p {
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.copyright a {
    color: #6fb940;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.copyright a:hover {
    color: #5a5a5a;
}
/*****************************************************************************************************/

/*                                         Home Sec start                                         */

/*****************************************************************************************************/

.home-banner {
    margin-top: 50px;
    background-image: url(https://pricedroptracker.co.uk/assets/img/home-clothes.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    padding-left: 100px;
    padding-right: 24px;
    padding-bottom: 40px;
    width: 100%;
    min-height: 480px;
}

.home-banner-content h1 {
    font-size: 45px;
    color: #ffff;
    font-weight: bold;
}

.home_search_box {
    display: flex;
    flex-direction: column;
    width: 520px;
    margin-top: 50px;
}

.home_search_box form {
    background-color: #fff;
    border-radius: 1000px;
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 56px;
    width: 100%;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
span.home_search_icon {
    display: inline-flex;
    height: 100%;
    align-items: center;
    padding: 12px;
    white-space: nowrap;
    padding-right: 0;
    padding-left: 16px;
}

span.home_search_icon svg.mcTmq6ZSCW {
    height: 20px;
    width: 20px;
}

.home_search_box input[type="text"] {
    line-height: 38px;
    text-align: left;
    outline: 0;
    height: 56px;
    width: 100%;
    padding: 0 16px;
    -webkit-tap-highlight-color: transparent;
    background: #fff;
    border: none;
}

span.home_search_btn {
    display: inline-flex;
    height: 100%;
    align-items: center;
    padding: 12px;
    white-space: nowrap;
    padding-left: 0;
    padding-right: 16px;
}
span.home_search_btn {
    display: inline-flex;
    height: 100%;
    align-items: center;
    padding: 12px;
    white-space: nowrap;
    padding-left: 0;
    padding-right: 16px;
}

span.home_search_btn button.pr-6ludum {
    all: unset;
    background: #6cb946;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

span.home_search_btn button.pr-6ludum svg {
    width: 24px;
    height: 24px;
    color: #fff;
    transform: rotate(90deg);
}

section.Home_Product {
    padding: 50px 0px;
}
.cat_heading h2 {
    font-size: 30px;
    font-weight: 600;
}
span.clr_blue {
    color: #4e76bd;
}
.product-box {
    width: 95%;
    background-color: #fff;
    padding: 20px 10px;
    margin: auto;
    position: relative;
    box-shadow: 0px 1px 5px 0px #ccc;
    border-radius: 20px;
}
.product-box img {
    height: 200px !important;
    object-fit: contain;
    border-radius: 10px;
    margin: 0px;
    width: 100% !important;
}

.prod_slid {
    padding-top: 50px;
    padding-bottom: 10px;
}
.slick-list.draggable {
    padding: 0px !important;
}

.product-box a {
    display: block;
    text-align: center;
}

.product-box a p {
    color: #4e76bd;
    margin: 0px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}
/*****************************************************************************************************/

/*                                         subscription Page start                                   */

/*****************************************************************************************************/
section.subscription_sec {
    padding: 50px 0px 80px 0px;
}
section.subscription_sec .left .banner {
    align-items: center;
    /* background: url(../../assets/img/box_bg.jpg); */
    border-radius: 20px;
    display: flex;
    padding: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 1px 20px 0px #ccc;
    background-color: whitesmoke;
}
.content-img {
    width: 10rem;
    height: 10rem;
    /* background: #fff; */
    border-radius: 20px;
    padding: 10px;
}
.content-img img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.content-img {
    margin-right: 5%;
}
section.subscription_sec .left .banner .cat_heading.content-head h2 {
    color: #5a5a5a;
}

section.subscription_sec .left .banner .cat_heading.content-head .desc p {
    color: #5a5a5a;
    margin: 0px;
    margin-top: 10px;
}
.cat_heading.content-head h2 {
    color: #fff;
}

.product_data_Sec {
    padding-top: 50px;
}

.prod_head {
    background-color: #5a5a5a;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
}
.prod_head h2 {
    margin: 0px;
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
}
.prod_head svg {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    fill: #fff;
    transition: all 0.4s ease-In-out;
}

/* Define initial styles for the "hidden" class */
.hidden {
    display: none;
}

.prod_head.active svg {
    transform: rotate(180deg);
}

.shadow {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent),
        var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);
}

.prod_card {
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
.prod_card_top {
    display: flex;
    gap: 1rem;
}
.gap-4 {
    gap: 1rem;
}
.prod_title > a span {
    text-decoration: underline !important;
    font-size: 16px;
    font-family: "Futura";
    font-weight: 400;
}

.prod_title_data {
    margin-top: 15px;
    align-items: center;
}
.prod_title_data p {
    margin: 0px;
}
.prod_title_data a {
    background-color: #d1fae5;
    color: #064e3b;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-family: "Futura";
    font-size: 16px;
    font-weight: 500;
}
.font-bold {
    font-weight: 700;
}
.prod_title_data a.no_stock {
    background-color: #fee2e2;
    color: #7f1d1d;
}
.prod_card_inn a {
    padding: 0.5rem 1.25rem;
    background: #fbde18;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    font-family: "Futura";
    display: flex;
    align-items: center;
    gap: 5px;
}

.prod_card_inn a svg {
    fill: #5a5a5a;
}
span.btn-span a.join-btn.lt:hover svg {
    fill: #fff;
}
ul.prod_data_box li:not(:last-child) {
    margin-bottom: 40px;
}

.subscription_sec .right .report_box {
    text-align: center;
    background: #4e76bd;
    border-radius: 20px;
    padding: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 1px 20px 0px #ccc;
}
.subscription_sec .right .report_box .prod_card_inn a {
    justify-content: center;
    margin-top: 30px;
}

.report_box.query_box {
    margin-top: 50px;
}
.subscription_sec .right .report_box .cat_heading.content-head p {
    margin: 0px;
    color: #fff;
}
.modal-header .cat_heading h2 {
    margin: 0px;
    font-size: 20px;
}
input.form-input,
textarea.form-input {
    border: 1px solid #a0a0a0;
    color: #a0a0a0;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 15px;
    width: 100%;
    border-radius: 10px;
}
textarea.form-input {
    resize: none;
    height: 150px;
}

label.form-label {
    font-size: 18px;
    font-weight: 600;
}
form.modal_form .form_box_inp .g-form:not(:last-child) {
    margin-bottom: 30px;
}
.modal-btn {
    text-align: right;
    margin-top: 30px;
    margin-bottom: 10px;
}
button.btn.btn-primary,
button.btn.btn-secondary {
    all: unset;
    background: #6fb940;
    padding: 5px 25px;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 5px;
    border: none;
    transition: all 0.4s ease-in-out;
}

button.btn.btn-secondary {
    background: #4e76bd;
}
.modal-body {
    padding: 2rem;
}

/*****************************************************************************************************/

/*                                         Login Page start                                   */

/*****************************************************************************************************/

section.loginFormSec {
    width: 50%;
    margin: auto;
    box-shadow: 0px 1px 20px 0px #ccc;
    border-radius: 20px;
    padding: 3rem;
}

section.Login-page {
    padding: 70px 0px;
}
.panel-body .input-group {
    display: block;
    margin-top: 25px;
}
.panel-body .input-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.panel-body .input-group label input {
    cursor: pointer;
}
h2.dynamicHeading {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4e76bd;
}
.acc p a {
    font-size: 16px;
    font-weight: 600;
}

.detail_box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.detail_box .rating_box a {
    display: flex;
    align-items: center;
    width: auto;
}

.detail_box .rating_box a svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.detail_box .rating_box {
    margin-right: 20px;
    position: relative;
}

.detail_box .rating_box:before {
    content: "";
    position: absolute;
    right: -10px;
    height: 100%;
    width: 1px;
    background: #5a5a5a;
}
.detail_box .rating_box.yellow a svg {
    fill: #f7a301;
    width: 16px;
    height: 16px;
}
.detail_box p {
    font-size: 14px;
    margin: 0px;
}

.pop_cat_slider button.slick-arrow {
    width: 30.5px;
    height: 30.5px;
    background: #6cb946;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 50%;
}
.pop_cat_slider button.slick-prev {
    left: -15px;
    z-index: 1;
}
.pop_cat_slider button.slick-next {
    right: -15px;
}
.pop_cat_slider button.slick-arrow:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}
.pop_cat_slider button.slick-prev.slick-arrow:before {
    content: "\f053";
}

.d-icon a {
    display: block;
    width: 100%;
}

.d-icon img {
    width: 250px;
}

.d-left-sidebar {
    background-color: #4c77be29;
    /* height: 100vh; */
    height: auto;
}

.d-nav ul {
    padding: 0;
    margin-top: 20px;
}

.d-nav li {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #00000017;
    padding: 0;
}

.d-nav li a {
    text-decoration: none;
    color: #4a76bc;
    padding: 15px 15px 15px 0;
    display: block;
    transition: 0.5s;
    position: relative;
}

span.d-counts {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    margin: 0 !important;
    background-color: #fbdf0f;
    color: black;
    font-weight: 600;
    border-radius: 10px;
    padding: 0px 7px;
    font-size: 12px;
}

.d-nav li a:hover {
    padding-left: 15px;
    background-color: #4a76bc;
    color: #fff;
}

.d-nav .active_tab > a {
    background-color: #4a76bc;
    color: #fff;
    padding-left: 15px;
}

.d-nav li a span {
    margin-left: 10px;
}

.users-heading {
    display: flex;
    width: 100%;
}

.users-heading > h3,
.users-heading > div {
    flex: 0 0 50%;
    max-width: 50%;
}

.users-heading > div {
    text-align: end;
}

.users-listing tbody > tr > td:last-child {
    /* width: 160px; */
    width: 15%;
}

.users-listing .users-detail {
    padding: 0 15px;
    box-shadow: 0 0px 2px 1px #0000000f;
    border-radius: 10px;
}

.users-listing .users-detail > div:not(:last-child) {
    border-bottom: 1px solid #0000000f;
}

.users-listing .users-detail > div {
    padding: 15px 0;
    font-size: 18px;
}

.users-listing .users-detail > div > span:first-child {
    width: 75px;
    display: inline-block;
    font-weight: 600;
}

/* Dashboard Card */
.d-cards .card-counter {
    position: relative;
    box-shadow: 2px 2px 10px #dadada;
    margin: 5px;
    padding: 20px 10px;
    background-color: #fff;
    height: 150px;
    border-radius: 5px;
    transition: 0.3s linear all;
}

.d-cards .card-counter:hover {
    box-shadow: 4px 4px 20px #dadada;
    transition: 0.3s linear all;
}

.d-cards .card-counter.primary {
    background-color: #4a76bc;
    color: #fff;
}

.d-cards .card-counter.danger {
    background-color: #ef5350;
    color: #fff;
}

.d-cards .card-counter.success {
    background-color: #66bb6a;
    color: #fff;
}

.d-cards .card-counter.info {
    background-color: #26c6da;
    color: #fff;
}

.d-cards .card-counter svg {
    font-size: 8em;
    opacity: 0.2;
    transform: translateX(-35px);
}

.d-cards .card-counter .count-numbers {
    position: absolute;
    right: 35px;
    top: 20px;
    font-size: 40px;
    display: block;
}

.d-cards .card-counter .count-name {
    position: absolute;
    right: 35px;
    top: 75px;
    font-style: italic;
    text-transform: capitalize;
    opacity: 0.5;
    display: block;
    font-size: 30px;
}

.d-graph {
    margin-top: 30px;
}

canvas#dashboard-chart {
    height: 550px !important;
    width: 100% !important;
}

ul.slick-dots {
    display: none !important;
}

.scrap_website_logo {
    margin-top: 20px;
}
.scrap_website_logo > img {
    width: 50px;
}

.home_search_box > form > .home_search_btn {
    pointer-events: none;
}

/*Compare Page*/

.backbtn {
    display: flex;
    align-items: center;
    font-size: 18px;
}
.icon_root {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 26px;
}
.compare_table {
    overflow: auto;
}
.compare_table table {
    /* width: 825px; */
    width: 100%;
    overflow: hidden;
}
table {
    border-collapse: collapse;
    empty-cells: show;
    position: relative;
    width: 100%;
}
.compare_table thead tr td,
.compare_table tbody tr td,
.compare_table tbody tr th {
    border: 1px solid #ebeff5;
    padding: 12px 16px;
}
.compare_table tbody tr th {
    background-color: #f4f5f9;
    color: #5a5a5a;
    font-size: 16px;
}
.compare_table tbody tr td {
    color: #5a5a5a;
    font-size: 16px;
}
.compare_table thead tr td a {
    text-align: center;
    width: 100%;
}
.compare_table thead tr td a .content-imgs img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.compare_table thead tr td a .cat_heading h2 {
    font-size: 16px;
}

.compare_table thead tr td a .cat_heading {
    text-align: left;
    margin-top: 15px;
}

ul.side_bar .content-imgs {
    width: 30%;
    background: rgba(51, 53, 54, 0.05);
    padding: 5px;
}

ul.side_bar .detail {
    width: 65%;
    margin-left: 5%;
    padding: 5px;
}

ul.side_bar .content-imgs img {
    height: 100px;
    object-fit: contain;
}

ul.side_bar .detail h2 {
    font-size: 16px;
    margin: 0px;
}

ul.side_bar li:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: 1px solid #ebeff5;
    padding-bottom: 20px;
}
.compare_page_sec .col-md-3 .row {
    width: 100%;
    margin: auto;
}
.data_terms ul li {
    list-style: disc;
    font-size: 16px;
}
.data_terms p,
.data_terms a {
    font-size: 16px;
}
.data_terms h2,
.data_terms h3 {
    font-weight: 700;
    color: #4e76bd;
}

.data_terms ul {
    padding-left: 20px;
}

section.loginFormSec.contactFormSec {
    width: 70%;
}

.d-right-sidebar {
    min-height: 60vh;
}

ul.compare_side_bar > li {
    position: relative;
}

ul.compare_side_bar > li .add_compare_pro {
    position: absolute;
    top: -5px;
    right: 0;
    line-height: 0;
    border-radius: 50px;
    box-shadow: 0 0px 2px 0px #00000096;
    padding: 3px 2px;
    cursor: pointer;
}

ul.compare_side_bar > li .add_compare_pro svg {
    transform: translateX(1px);
}

.compare_container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.compare_container > div {
    flex: 0 0 33%;
    max-width: 33%;
    border: 1px solid #ebeff5;
    padding: 10px 20px;
    margin-right: 2px;
    position: relative;
    min-height: 400px;
    margin-bottom: 20px;
}

.compare_container > div > div:nth-child(1) img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.compare_container > div > div:nth-child(1) {
    text-align: center;
}

.compare_container > div > div:nth-child(2) a h5 {
    font-size: 18px;
    margin-top: 10px;
    min-height: 45px;
}

.compare_container > div > div:nth-child(3) p {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.compare_container > div > div:nth-child(4) img {
    width: 60px;
    object-fit: contain;
}

.compare_container > div > div:nth-child(5) {
    position: absolute;
    bottom: 0;
    background-color: #f9e10c;
    text-align: center;
    left: 0;
    width: 100%;
}

.compare_container > div > div:nth-child(5) a {
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    padding: 8px 10px;
    display: block;
}

.compare_container > div > div:nth-child(5) a:hover {
    color: #fff;
}

.side_bar.compare_side_bar {
    height: 30em;
    overflow-y: scroll;
    padding: 10px 10px 0 0;
}

.remove_compare_pro {
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 0;
    box-shadow: 0 0 2px 0 #00000096;
    padding: 2px 4px;
    border-radius: 100px;
    cursor: pointer;
}

ul.pager.light_connected button {
    text-shadow: unset;
    border: 0;
    background: #fbde18;
    color: black;
    font-weight: 400;
    padding: 5px 25px;
    font-family: "Futura";
    box-shadow: unset;
    border: 1px solid #fbde18;
}

ul.pager.light_connected button:hover {
    border: 1px solid #fbde18;
    background: #fff;
}

ul.pager.light_connected button[disabled="disabled"] {
    border: 0px solid #fbde18;
}

ul.pager.light_connected button[disabled="disabled"]:hover {
    background: #ccc;
    color: #aaa;
}

.text-container {
    margin: 0 auto;
    background-color: #00000005;
}

.text-container > div {
    width: 1240px;
    margin: 0 auto;
    padding: 30px 20px;
}

.text-container > div > div:last-child p {
    margin-bottom: 0;
}

.text-container h5 {
    font-size: 18px;
}

.text-container > div > div:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 30px;
}

.text-container > div > div:nth-child(2) > div {
    height: 250px;
    overflow-y: scroll;
}

.text-container-1 > div > div:nth-child(2) > div {
    flex: 0 0 49%;
    max-width: 49%;
}

.text-container-2 > div > div:nth-child(2) > div,
.text-container-3 > div > div:nth-child(2) > div {
    flex: 0 0 32%;
    max-width: 32%;
}

.text-container > div > div:nth-child(2) > div::-webkit-scrollbar {
    width: 4px;
}

.text-container > div > div:nth-child(2) > div::-webkit-scrollbar-thumb {
    background-color: #0000001a;
}

.text-container-4 > div > div:nth-child(2) > div {
    height: auto;
    overflow: auto;
}

.text-container-4 > div > div:nth-child(2) {
    margin-bottom: 0;
}

/*Responsive*/
@media (max-width: 1199px) {
    .main-header ul.header-menu li {
        margin-left: 20px;
    }
    .home-banner {
        padding-left: 60px;
    }
    .home-banner-content h1 {
        font-size: 40px;
    }
    .account-list-container button.btn.btn-danger {
        padding-left: 7px;
    }
    .cat_heading h2 {
        font-size: 26px;
    }
    section.loginFormSec {
        padding: 2rem;
    }
    .dropdown-menu {
        min-width: 100%;
    }
    span.btn-span a.join-btn {
        font-size: 14px;
    }

    /* Dashboard */
    .d-left-sidebar {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .d-right-sidebar {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .users-listing > .d-cards > div {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 0;
        padding-left: 0;
    }

    .d-cards .card-counter svg {
        font-size: 6em;
        transform: translateX(0);
    }

    .d-cards .card-counter .count-numbers {
        right: 25px;
        top: 20px;
        font-size: 35px;
    }

    .d-cards .card-counter .count-name {
        right: 25px;
        top: 85px;
        font-size: 25px;
    }

    canvas#dashboard-chart {
        height: 350px !important;
    }
}

@media (max-width: 991px) {
    .main-header {
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
        right: 0px;
    }
    .menuWrap.open {
        right: 0px;
    }
    .main-header ul.header-menu li {
        margin-left: 30px;
    }
    .main-header ul.header-menu {
        justify-content: left;
        padding-top: 100px;
    }
    div#h-c .d-flex.align-items-center.justify-content-center {
        justify-content: space-between !important;
    }
    .menuWrap {
        position: fixed;
        right: -210%;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #5a5a5a;
        height: 100vh;
        transition: all 0.4s ease;
        z-index: 3;
        width: 37%;
    }
    ul.header-menu li {
        display: block;
    }
    ul.header-menu li a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: left;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    header .header-top {
        display: none;
    }
    header .main-header ul.header-menu > li {
        display: block;
        padding: 0px;
    }
    header .main-header ul.header-menu > li a {
        color: #fff;
        padding: 0px;
        font-size: 20px;
    }
    header .main-header ul.header-menu > li a:before {
        display: none;
    }
    ul.header-menu:before {
        content: unset !important;
    }
    ul.header-menu {
        display: grid !important;
    }
    ul.header-menu {
        display: grid !important;
    }
    .home-banner-content h1 {
        font-size: 36px;
    }
    .home-banner {
        padding-left: 40px;
        padding-right: 40px;
    }
    .cat_heading h2 {
        font-size: 20px;
    }
    section.footer-sec h4 {
        font-size: 16px;
    }
    .footer-sec .footer-bottom ul.foot-social-media li a {
        height: 34px;
        width: 34px;
        font-size: 16px;
    }
    .product-box img {
        height: 170px !important;
    }
    section.loginFormSec {
        padding: 1.5rem;
        width: 70%;
    }
    section.subscription_sec .left .banner {
        padding: 1rem;
    }
    .content-img {
        width: 13rem;
        margin-right: 2%;
    }
    span.btn-span a.join-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    .footer-logo a img {
        width: 100%;
        height: auto;
    }
    .subscription_sec .right .report_box {
        padding: 2rem 1rem;
    }
    .compare_page_sec .col-md-3,
    .compare_page_sec .col-md-9 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    ul.side_bar li a {
        display: block;
    }

    ul.side_bar .row {
        width: 100%;
    }
}

@media (max-width: 767px) {
    div#h-c .logo img {
        width: 100%;
        height: 100px;
    }

    div#h-c .logo {
        text-align: center;
    }

    div#h-c .col-md-6.col-lg-7.col-xl-7.manual-width-set-1 {
        order: 1;
    }

    div#h-c .col-md-3.col-lg-3.col-xl-3.mobileResponsiveLogo {
        order: 2;
        margin: 20px 0;
    }

    div#h-c .col-md-3.col-lg-2.col-xl-2.manual-width-set-2.ps-hd-last-box {
        order: 3;
    }
    .header-right-sidebg {
        width: 40%;
        margin: auto;
    }
    .home_search_box {
        width: 100%;
    }
    .home-banner {
        padding-left: 30px;
        padding-right: 30px;
        min-height: 300px;
        background-position: right;
    }
    span.home_search_btn {
        padding-right: 7px;
    }
    .home-banner-content h1 {
        font-size: 28px;
    }
    .prod_slid {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    section.Home_Product {
        padding: 30px 0px;
    }
    .cat_heading h2 {
        font-size: 20px;
    }
    .footer-logo {
        text-align: center;
    }
    .footer-logo a img {
        width: 100%;
        height: 100px;
    }
    section.footer-sec h4 {
        text-align: center;
        margin-top: 30px;
    }
    section.footer-sec ul.footer-menu {
        column-count: 1;
        text-align: center;
    }
    .footer-sec .footer-bottom ul.foot-social-media {
        justify-content: center;
    }
    section.loginFormSec {
        padding: 1.5rem;
        width: 100%;
    }
    h2.dynamicHeading {
        font-size: 24px;
    }
    .product_data_Sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section.subscription_sec {
        padding: 60px 0px;
    }
    body.ovr-hiddn .pop_cat_slider button.slick-prev {
        z-index: 0;
    }
    .modal-header .close {
        padding-top: 0px;
    }
    .modal-header .close span {
        font-size: 40px;
    }
    .compare_table thead tr td a .cat_heading h2 {
        font-size: 14px;
    }

    /* Dashboard */
    .d-right-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .d-left-sidebar {
        flex: 0 0 40%;
        max-width: 40%;
        position: fixed;
        top: 0;
        z-index: 99;
        height: 100%;
        background-color: #4a76bc;
        transform: translateX(-100vw);
        transition: 0.5s;
    }

    .d-left-sidebar:after {
        content: "";
        background-color: #000000c4;
        position: absolute;
        top: 0;
        left: 0;
        width: 80vw;
        height: 100%;
        z-index: -1;
    }

    .d-menu-active .d-left-sidebar {
        transform: translateX(0px);
    }

    .d-menu-active .d-left-sidebar:after {
        left: 40vw;
    }

    .d-nav li {
        border-color: #ffffff17;
    }

    .d-nav li a {
        color: #ffffff;
    }

    .d-nav .active_tab > a {
        background-color: #ffffff;
        color: #4a76bc;
    }

    .d-mobile-menu {
        display: block;
        font-size: 24px;
        margin-top: 14px;
    }
    
    .d-mobile-menu:after {
        content: 'Dashboard';
        margin-left: 10px;
        font-weight: bold;
    }
    
    .users-heading {
        display: none;
    }

    .d-mobile-menu-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        line-height: 0;
        font-size: 25px;
    }

    .d-menu-active .d-mobile-menu-remove {
        display: inline;
        z-index: 999;
        color: #fff;
    }

    section.loginFormSec.contactFormSec {
        width: 100%;
    }
   
}

@media (max-width: 575px) {
    .menuWrap {
        width: 100%;
    }
    .home-banner-content h1 {
        font-size: 24px;
    }
    .home-banner {
        padding-left: 15px;
        padding-right: 15px;
        background-position: right;
    }
    .pop_cat_slider button.slick-next {
        right: -5px;
    }
    .pop_cat_slider button.slick-prev {
        left: -5px;
    }
    .cat_heading h2 {
        font-size: 18px;
    }
    section.subscription_sec .left .banner {
        padding: 1rem;
        display: block;
        text-align: center;
    }
    .content-img {
        width: 100%;
        margin-right: 0px;
        margin: auto;
        margin-bottom: 20px;
    }
    .detail_box {
        display: block;
    }
    .detail_box .rating_box a {
        justify-content: center;
        margin-bottom: 10px;
    }
    .detail_box .rating_box:before {
        display: none;
    }
    .prod_card_top {
        display: block;
        gap: 1rem;
    }
    .prod_card.shadow {
        display: block;
        text-align: center;
    }
    .prod_title_data {
        margin: 20px 0px;
        display: block !important;
    }

    .prod_title_data p {
        margin: 0px;
        margin-top: 20px;
    }
    .prod_title {
        margin-top: 20px;
    }

    /* Dashboard */
    .d-menu-active .d-left-sidebar {
        transform: translateX(0px);
    }

    .d-menu-active .d-left-sidebar:after {
        left: 80vw;
    }

    .d-left-sidebar {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .users-listing > .d-cards > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 993px) {
    .text-container > div {
        width: 960px;
    }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    .text-container > div {
        width: 720px;
    }
}

@media (max-width: 767px) {
    .text-container > div {
        width: 100%;
    }

    .text-container h4 {
        font-size: 22px;
    }

    .text-container h4 {
        font-size: 22px;
    }

    .text-container > div > div:nth-child(2) > div {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto;
        overflow-y: auto;
    }
}
