/*
Template Name: Crearive Zone | Multivendor Digital Downloads Marketplace
Author: osipothemes
Author Email: info@osipothemes.com
Date Created: 25/12/2020
Version: 1.0
*/


/*
    TABLE OF CONTENT
    1. BODY
    2. HEADER
        2.1 Top Bar
	    2.2 Navbar
	    2.3 Mobile Menu
	    2.4 Offcanvas
    3. HOME HERO
    4. PRODUCTS
    5. CATEGORY
    6. CATEGORY CARD
    7. FREE GOODS
    8. CORPORATE CARDS
    9. SALE PRODUCTS
    10. POPULAR SEARCHES
    11. SUB CATEGORY
    12. PROFILE
    13. UPLOAD
    14. SINGLE PRODUCT
    15. CALL TO ACTION
    16. BLOG
    17. FOOTER
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,500&amp;display=swap');

/* Variables */
:root {
    --primary-color: #d20000;
    --secondary-color: #7fb82c;
    --heading-color: #303538;
    --sub-heading-color: hsl(0, 0%, 30%);
    --muted-color: hsl(0, 0%, 60%);
    --yellow-color: rgb(254, 196, 45);
    --yellow-light: #f7c481;
    --yellow-secondary-light: #fee4c3;
    --body-color: #504e4b;
    --white-color: #fff;
    --grey-color: #f8f5f0;
    --red-color: #c72020;
}

/* =========================
/* ****** 1. Body *****
========================= */

* {
    margin: 0;
    padding: 0;
}

body {
    color: var(--body-color);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: var(--white-color);
}

button,
html,
input,
select,
textarea {
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    margin: 20px 0px;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #c72020;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin: 20px 0px;
    border-radius: 25px;
}

.btn-secondary {
    background-color: var(--yellow-light);
    border: 1px solid var(--yellow-light);
    margin: 20px 0px;
    border-radius: 25px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-icon {
    margin-bottom: 5px;
}

.badge-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.badge-secondary {
    background-color: var(--yellow-light);
}

.text-green {
    color: var(--primary-color);
}

.nav-pills li {
    background-color: var(--grey-color);
    margin: 5px;
    border-radius: 5px;
    padding: 0px;
}

.nav-pills li a {
    padding: 3px;
}

.nav-pills li .nav-link.active {
    background-color: var(--primary-color);
}

.nav-pills li .nav-link.active:hover {
    color: var(--white-color);
}

.justify-content-center {
    display: flex;
    align-content: center;
    width: 100%;
    flex-wrap: wrap;
}

img {
    object-fit: cover;
}

a {
    transition: color .25s;
    color: #d20000;
    text-decoration: none;
    outline: 0 none;
}

a:hover {
    color: #d20000;
}

b {
    color: #d20000;
}

a:link {
    text-decoration: none;
}

ul li {
    list-style: none;
}

input:focus,
textarea:focus,
button:focus {
    outline: medium none;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="file"] {
    font-size: 14px;
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.custom-select {
    font-size: 14px;
}

::selection {
    background: #d20000;
    color: #fff;
    text-shadow: none;
}

.card {
    padding: 15px;
    border: none;
}

.pagination li a {
    color: var(--primary-color);
    border-radius: 25px;
    margin-right: 5px;
}

.pagination .page-item.active a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Modals */
.modal h5 {
    color: var(--heading-color);
    font-weight: 600;
}

.modal .close span {
    background-color: var(--red-color);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    padding: 1px 10px;
    color: var(--white-color);
}

.modal .modal-footer .btn {
    margin-right: 10px;
    font-size: 14px;
}

.modal .product {
    background-color: var(--grey-color);
}

.modal .product h2 {
    color: var(--heading-color);
    font-weight: 600;
}

.modal .product .product-info p {
    margin: 0px;
}

.modal .product-row .media img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.modal .product-row .media h5 {
    font-size: 14px;
}

/* Accordions */
.accordion .card {
    border-radius: 10px;
}

.accordion .card-header {
    border: none;
    background-color: var(--grey-color);
}

.accordion .card h2 .btn {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

/* Tables */
.table-responsive table img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 10px;
}

.table-responsive table h5 {
    font-size: 14px;
    color: var(--heading-color);
}

.table-responsive table .media span {
    display: block;
}

.table-responsive table .badge {
    padding: 5px 10px;
}

thead {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* followers and Following*/
.followers {
    margin-top: 30px;
}

.followers .heading {
    font-weight: 700;
    color: var(--heading-color);
}

.followers .card {
    border: 1px solid var(--grey-color);
    background-color: var(--grey-color);
    margin: 20px 0px 20px 0px;
}

.followers .card .d-flex {
    justify-content: space-between;
}

.followers .card .media img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 10px;
}

.followers .card .media h5 {
    margin: 0px;
    font-size: 16px;
    font-weight: 600;
}

.followers .card .media .rating {
    margin: 0px;
}

.followers .card .media .rating i {
    color: orange;
}

.followers .card .media .badge {
    font-weight: 300;
    font-size: 13px;
}

.followers .card a.btn-primary {
    background-color: #c72020;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
}

.followers .card a.btn-primary:hover {
    background-color: #c72020;
}


/* ========================= 
/* ****** 2. Header ***** 
========================= */
/* ========================= 
/* ****** 2.1 Top Bar ***** 
========================= */
.topbar {
    padding-top: 15px;
    background-color: #fff;
    border-bottom: 1px solid #d6d6d6;
}

.topbar .text-left ul li,
.topbar .text-lg-right ul li {
    display: inline;
    padding-right: 10px;

}

.topbar .text-lg-right ul li a.btn-login {
    background-color: #d20000;
    color: #fff;
    padding: 5px 20px;
    border-radius: 3px;
}

.topbar .text-lg-right ul li a.btn-signup {
    background-color: #fee4c3;
    color: #504e4b;
    padding: 5px 20px;
    border-radius: 3px;
}

.topbar .text-lg-right ul li a.btn-signup:hover {
    background-color: #f7c481;
}

.topbar .text-left ul li a {
    color: #504e4b;

}

.topbar .text-left ul li a:hover {
    color: #d20000;
}

/* ========================= 
/* ****** 2.2 Navigation ***** 
========================= */

.navbar {
    background-color: #fff;
    -webkit-box-shadow: 0px 6px 5px -4px rgba(235, 235, 235, 1);
    -moz-box-shadow: 0px 6px 5px -4px rgba(235, 235, 235, 1);
    box-shadow: 0px 6px 5px -4px rgba(235, 235, 235, 1);
}

.navbar .navbar-nav .nav-item a {
    color: #6d6c6c;
    font-size: 15px;
}

.navbar .navbar-nav .dropdown-menu {
    margin-top: 12px;
}

.navbar .navbar-toggler i {
    font-size: 28px;
}

.navbar .navbar-brand img {
    width: 100px;
}

.navbar .form-inline input[type="text"] {
    height: 35px;
    border-radius: 3px;
    position: relative;
}

.navbar .form-inline button {
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    right: 2%;
    background-color: transparent;
    color: #303538;
}

.navbar .form-inline button:hover {
    background-color: #d20000;
    color: #fff;
}


/* ============================
/* ****** 2.3 Mobile Menu *****
=============================== */

.mobile-header-items {
    display: flex;
    justify-content: space-between;
}

.off-canvas-btn i {
    font-size: 18px;
    cursor: pointer;
}

.mobile-icons a:first-child {
    margin: 0px 15px 0px 0px;
}

.main-mobile-header .mobile-form {
    margin-top: 30px;
    height: auto;
    width: 100%;
}

.main-mobile-header .mobile-form .form-group {
    position: relative;
}

.main-mobile-header .mobile-form .form-group .btn {
    position: absolute;
    right: 2%;
    top: 10%;
}

.mobile-navigation {
    overflow: hidden;
}

.mobile-navigation nav {
    height: 100%;
}

.mobile-menu {
    margin-top: 30px;
    height: 100%;
    overflow: auto;
    padding-right: 30px;
    margin-right: -30px;
}

.mobile-menu li>a {
    font-size: 15px;
    color: #333333;
    text-transform: capitalize;
    line-height: 18px;
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.mobile-menu li>a:hover {
    color: #007bff;
}

.mobile-menu li ul li {
    border: none;
    padding-left: 15px;
}

.mobile-menu li ul li a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 8px 0;
}

.mobile-menu li.menu-item-has-children {
    display: block;
    position: relative;
}

.mobile-menu li.menu-item-has-children .menu-expand {
    line-height: 50;
    top: -5px;
    left: 95%;
    width: 30px;
    position: absolute;
    height: 50px;
    text-align: center;
    cursor: pointer;
}

.mobile-menu li.menu-item-has-children .menu-expand i {
    display: block;
    position: relative;
    width: 10px;
    margin-top: 25px;
    border-bottom: 1px solid #333333;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.mobile-menu li.menu-item-has-children .menu-expand i:before {
    top: 0;
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-bottom: 1px solid #333333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile-menu li.menu-item-has-children.active>.menu-expand i:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.mobile-menu {
    padding-bottom: 15px;
    padding-top: 25px;
    background-color: #fff;
    margin-top: 0px;
}

.mobile-menu .mobile-logo img {
    width: 90px;
}

.mobile-form .form-group {
    position: relative;
}

.mobile-form .form-group .btn {
    position: absolute;
    right: 2%;
    top: 10%;
}

.mobile-menu .user-icons a i {
    font-size: 25px;
}

.mobile-menu .user-icons a:first-child {
    padding: 0px 2px;
}

/* =================================
/* ****** 2.4 Offcanvas Widget *****
==================================== */

.off-canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vh;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9999;
}

.auth-links-offcanvas ul {
    display: flex;
}

.auth-links-offcanvas ul li a.shopping-cart {
    margin-right: 15px;
}

.auth-links-offcanvas ul li a.login-btn {
    background-color: transparent;
    padding: 3px 10px;
    color: #504e4b;
    margin-right: 10px;
    border: 1px solid #d20000;
}

.auth-links-offcanvas ul li a.signup-btn {
    background-color: #f7c481;
    border: 1px solid #f7c481;
    padding: 3px 10px;
    color: #504e4b;
}

.off-canvas-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.off-canvas-wrapper.open .off-canvas-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.off-canvas-wrapper .off-canvas-inner-content {
    background-color: #fff;
    width: 300px;
    padding: 20px;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 50px));
    -ms-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.off-canvas-wrapper .btn-close-off-canvas {
    top: 0;
    left: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #d20000;
}

.off-canvas-wrapper .btn-close-off-canvas i {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
    line-height: 40px;
}

.off-canvas-wrapper .btn-close-off-canvas:hover i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.off-canvas-wrapper .off-canvas-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    height: 100%;
}

.search-box-offcanvas form {
    position: relative;
}

.search-box-offcanvas form input {
    color: #666;
    font-size: 13px;
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: #f2f2f2;
}

.search-box-offcanvas form .search-btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 42px;
    font-size: 20px;
    color: #333333;
    position: absolute;
}

.search-box-offcanvas form .search-btn:hover {
    color: #007bff;
}

.offcanvas-search-inner {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.offcanvas-search-inner.show {
    opacity: 1;
    visibility: visible;
}

.offcanvas-search-inner.show .offcanvas-search-box {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.offcanvas-search-inner .offcanvas-close {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #fff;
    color: #007bff;
    font-size: 22px;
    cursor: pointer;
    top: 50px;
    right: 50px;
    position: absolute;
    z-index: 9;
}

.offcanvas-search-inner .offcanvas-close i {
    display: block;
    line-height: 50px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.offcanvas-search-inner .offcanvas-close:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.offcanvas-search-box {
    height: 100vh;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.offcanvas-search-box .bdr-bottom {
    border-color: #007bff;
}

.offcanvas-search-box input {
    width: 100%;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding-right: 20px;
    padding-bottom: 15px;
    background-color: transparent;
}

.offcanvas-search-box input::-webkit-input-placeholder {
    color: #fff;
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box input:-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box input::-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box input::placeholder {
    color: #fff;
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box .search-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    padding-bottom: 15px;
    text-transform: capitalize;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.offcanvas-search-box .search-btn i {
    display: block;
    line-height: 1;
    font-size: 28px;
    padding-right: 15px;
}

.offcanvas-search-box .search-btn:hover {
    color: #007bff;
}

.search-box-offcanvas form {
    position: relative;
}

.search-box-offcanvas form input {
    color: #666;
    font-size: 13px;
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: #f2f2f2;
}

.search-box-offcanvas form .search-btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 42px;
    font-size: 20px;
    color: #333333;
    position: absolute;
}

.search-box-offcanvas form .search-btn:hover {
    color: #007bff;
}


/* =========================
/* ****** 3. cr Hero *****
========================= */

.cr-hero-banner {
    background-color: var(--grey-color);
    width: 100%;
    background-size: cover;
    color: white;
    padding: 80px 20px 80px 20px;
}

.cr-hero-banner .text-wrap h1 {
    font-size: 42px;
    line-height: 50px;
    text-align: center;
    width: 100%;
    max-width: none;
    color: var(--heading-color);
    font-weight: 600;
    font-style: normal;
}

.cr-hero-banner .text-wrap h2 {
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    color: var(--body-color);
    font-style: normal;
}

.cr-hero-banner form input[type="text"] {
    height: 55px;
    margin-top: 15px;
    border: none;
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
    border-radius: 25px;
}

.cr-hero-banner form .form-element-wrapper {
    position: relative;
}

.cr-hero-banner form .form-element-wrapper .btn {
    position: absolute;
    right: 2%;
    top: -20%;
}

/* ==============================
/* ****** Other Pages *****
================================= */
.page-breadcrumb {
    background-color: var(--yellow-secondary-light);
    padding: 50px 20px;
}

.page-breadcrumb .text-wrap {
    text-align: center;
}

.page-breadcrumb h1 {
    font-weight: 700;
    line-height: 125%;
    color: var(--heading-color);
    font-size: 35px;
    -webkit-font-smoothing: antialiased;
}

.page-breadcrumb h2 {
    font-size: 18px;
    margin-top: 8px;
    margin: 0;
    line-height: 28px;
}

.page-wrapper {
    background-color: var(--white-color);
    padding: 50px 0px;
}

.page-wrapper h5 {
    color: var(--heading-color);
    font-weight: 700;
    margin: 20px 0px;
}

.why-choose-us {
    text-align: center;
}

.qualities .card {
    margin-bottom: 10px;
    text-align: center;
    background-color: var(--grey-color);
}

.qualities .card img {
    width: 80px;
}

/* ==============================
/* ****** 4. Products *****
================================= */

.cr-product-headings {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}

.cr-product-headings a.cr-heading {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 500;
}

.cr-product-headings a.btn {
    border-radius: 25px;
    font-size: 14px;
    padding: 5px 20px;
}

.cr-products-info .card {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0;
    font-size: 12px;
    color: hsl(0, 0%, 60%);
    border-radius: 4px;
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
    overflow: hidden;
    background-color: hsl(0, 0%, 100%);
}

.cr-products-info .card img {
    border-style: none;
}

.cr-products-info .card .card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-products-info .card.audio-card .card-body {
    padding: 15px;
    border-bottom: 2px dashed var(--primary-color);
}

.cr-products-info .card.audio-card .card-footer {
    border: none;
}

.cr-products-info .card.audio-card .controls {
    margin: 20px;
    display: flex;
    align-items: center;
}

.cr-products-info .card.audio-card .controls img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.cr-products-info .card.audio-card .media-body h5 {
    font-size: 14px;
    color: var(--heading-color);
}

.audio-card wave {
    border: none !important;
}

.audio-card-details {
    border: 1px solid #dadada;
    margin-bottom: 30px;
}

.audio-card-details .controls {
    margin: 20px;
    display: flex;
    align-items: center;
}

.audio-card-details .controls img {
    width: 30px;
    margin-right: 15px;
    cursor: pointer;
}

.photo-card-details {
    border: 1px solid #dadada;
}

.photo-card-details img {
    width: 100%;
}

.cr-products-info .card .media img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    margin-right: 10px;
}

.cr-products-info .card .card-footer {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 15px;
}

.cr-products-info .card .pr-name a {
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: hsl(0, 0%, 30%);
    font-size: 14px;
    vertical-align: bottom;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.cr-products-info .card .pr-name a:hover{
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.cr-products-info .card .pr-author span {
    height: 18px;
    font-size: 12px;
    line-height: 18px;
    max-height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cr-products-info .card .pr-price {
    margin-top: 15px;
}

.cr-products-info .card .pr-price span.original-pr {
    text-decoration: line-through;
    padding-right: 4px;
    font-size: 18px;
}

.cr-products-info .card .pr-price span.discount-pr {
    padding-right: 4px;
    font-size: 18px;
    color: #d20000;
}

.cr-products-info .card .pr-actions .pr-rating {
    margin-top: 8px;
}

.cr-products-info .card .pr-actions .pr-rating .star-ratings i {
    vertical-align: middle;
    color: rgb(254, 196, 45);
    margin: 0 0 3px;
    line-height: 20px;
}

.cr-products-info .card .pr-actions .pr-rating .star-ratings i:not(:root) {
    overflow: hidden;
}

.cr-products-info .card .pr-actions .pr-rating .star-ratings span {
    line-height: 20px;
    font-size: 12px;
    padding-right: 8px;
}

.cr-products-info .card .pr-actions .pr-rating .pr-sales {
    line-height: 20px;
    color: hsl(0, 0%, 60%);
    font-size: 12px;
}

.cr-products-info .card .pr-actions {
    display: flex;
    justify-content: space-between;
}

.cr-products-info .card .pr-actions .pr-buttons a.btn-preview {
    flex-basis: auto;
    text-decoration: none;
    padding: 7px 10px;
    color: hsl(0, 0%, 40%);
    justify-content: center;
    margin: 0 4px 0 0;
    align-items: center;
    border-radius: 2px;
    font-size: 12px;
    line-height: 1.5;
    border: 1px solid hsl(0, 0%, 80%);
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}
.cr-products-info .card .pr-actions .pr-buttons a.btn-preview:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}

.cr-products-info .card .pr-actions .pr-buttons a.btn-cart {
    color: #d20000;
    border-color: hsl(87, 58%, 45%);
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
    line-height: 1.5;
    padding: 5.5px 10px;
    margin-top: 5px;
    text-align: center;
    border: 1px solid hsl(0, 0%, 80%);
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
}

/* Product Sidebar */
.product-sidebar .toggler h5 {
    font-size: 18px;
    color: var(--white-color);
    display: block;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
}

.product-sidebar .menu {
    margin: 20px 20px;
}

.product-sidebar .menu a {
    display: block;
    margin: 10px 0px;
    font-size: 16px;
}

.product-sidebar .dropdown {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    background-color: var(--grey-color);
}

.product-sidebar .menu .custom-control {
    margin: 10px 0px;
    display: block;
}

/* =========================
/* ****** Product Details *****
========================= */
.product-details-hero {
    background-color: var(--grey-color);
}

.product-details-hero .breadcrumb-list {
    padding: 20px 0px;
}

.product-details-hero .breadcrumb-list h4 {
    font-weight: 600;
    color: var(--heading-color);
}

#productTabContent {
    margin-top: 20px;
}

#productTabContent #pr-details .product-image .card {
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
}

#productTabContent #pr-details .product-image img {
    width: 100%;
    height: 360px;
}

#productTabContent #pr-details .product-card-buttons {
    display: inline-flex;
}

#productTabContent #pr-details .product-card-buttons a.btn {
    font-size: 13px;
    padding: 8px 20px;
    margin: 5px;
}

#productTabContent #pr-details .product-card-buttons .preview-button {
    margin-right: 30px;
}

#productTabContent .product-image .card {
    background-color: #fafafa;
    padding: 15px;
    border-radius: 10px;
}

#productTabContent .product-details .card {
    border: 1px solid #dadada;
    margin-bottom: 20px;
    color: var(--heading-color);
}

#productTabContent .product-details .card h5 {
    font-weight: 700;
}

#productTabContent .product-details ul {
    margin-left: 20px;
}

#productTabContent .product-details ul li {
    list-style-type: circle;
}

/* Reviews */
.user-reviews .media {
    margin: 15px 0px;
}

.user-reviews .media img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-reviews .media h5 {
    font-size: 16px;
}

.user-reviews .media h5 button.badge {
    font-size: 10px;
    border-radius: 2px;
}

.user-reviews .single-review {
    background-color: var(--grey-color);
    padding: 15px;
    margin: 15px 0px;
}

.user-reviews .single-review .d-flex {
    justify-content: space-between;
}

.user-reviews .single-review .star-rating span {
    font-size: 16px;
}

.user-reviews .single-review .star-rating i {
    color: orange;
    font-size: 16px;
}

.user-reviews .single-review .star-rating .purchase {
    margin-top: 5px;
}

.reviews-form {
    background-color: var(--grey-color);
    padding: 20px;
}

.reviews-form h5 {
    font-weight: 700;
    color: var(--heading-color);
}

.reviews-form .btn {
    font-size: 13px;
}

/* Comments */
.user-comments .media {
    margin: 15px 0px;
}

.user-comments .media img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-comments .media h5 {
    font-size: 16px;
}

.user-comments .media h5 button.badge {
    font-size: 10px;
    border-radius: 2px;
}

.user-comments .single-comment .d-flex {
    justify-content: space-between;
}

.user-comments .single-comment {
    background-color: #e1e8ed;
    padding: 15px;
    margin: 15px 0px;
}

.user-comments .single-comment p {
    margin-top: 10px;
}

.user-comments .nested-comment {
    background-color: #f5f6fa;
    padding: 15px;
    margin: 15px 0px;
}

.comments-form .btn {
    font-size: 13px;
}

/* Right Data */
.product-purchase-data,
.author-details,
.count-sales,
.product-comments,
.product-features {
    padding: 15px;
    border: 1px solid #e6e6e6;
    margin-top: 20px;
}

.product-purchase-data .license-details {
    display: inline-flex;
    justify-content: space-between;
}

.product-purchase-data .license-details button.btn {
    padding: 5px;
    background-color: transparent;
    color: #303538;
    border: none;
}

.product-purchase-data .license-details h1 {
    font-size: 30px;
}

.product-purchase-data .license-details button.btn:focus {
    border: none;
}

.product-purchase-data .license-coverage ul {
    margin-left: 20px;
}

.product-purchase-data .license-coverage ul li {
    list-style-type: circle;
}

.product-purchase-data .extended-support {
    display: inline-flex;
    justify-content: space-between;
}

.product-purchase-data .action-buttons a.btn {
    padding: 12px 10px;
    font-size: 14px;
}

.product-purchase-data .action-buttons a.btn-add-cart:hover {
    background-color: #d20000;
}

.product-purchase-data .action-buttons a.btn-buy:hover {
    background-color: #808080;
    border: 1px solid #808080;
}

.author-details .media img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
}

.author-details .media .author-badges img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.author-details .btn-portfolio {
    margin-top: 10px;
}

.count-sales {
    margin-top: 20px !important;
}

.count-sales h5 {
    font-weight: 400;
    font-size: 18px;
}

.product-comments a {
    font-weight: 400;
    font-size: 18px;
}

.product-features {
    background-color: #FAFAFA;
}

.product-features span {
    font-weight: 500;
    line-height: 25px;
}

.product-features .row {
    margin-bottom: 10px;
}

.product-features .text-primary span {
    color: var(--primary-color);
}

.product-tags {
    display: block;
}

.product-tags a {
    display: inline-block;
    background-color: var(--grey-color);
    padding: 3px 15px;
    border-radius: 25px;
    margin-bottom: 10px;
    color: var(--body-color);
}

/* single product comments */
#comment form {
    padding: 15px;
    border: 1px solid #e6e6e6;
    margin-top: 20px;
    background-color: #f5f5f5;
}

/* single product Support */
#support .author-setting {
    padding: 15px;
    margin-top: 20px;
    background-color: #f5f5f5;
}

#support .author-setting .media img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
}

/* =========================
/* ****** Sale Products *****
========================= */
.sale-products {
    background-color: var(--white-color);
    padding: 0px 0px;
}

.sale-products .sale-header {
    text-align: center;
    padding: 10px 0px;
}

.sale-products .sale-header h2 {
    font-weight: 600;
    font-size: 22px;
    color: var(--heading-color);
}

/* =========================
/* ****** Categories *****
============================ */
.categories-elements {
    padding: 30px 0px;
}

.categories-elements .card {
    text-align: center;
    padding: 20px 10px;
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
    margin-bottom: 10px;
}

.categories-elements .card img {
    width: 60px;
}

.categories-elements .card .category-info {
    margin: 0px;
    padding: 10px 0px;
}

.categories-elements .card .category-info span {
    color: var(--body-color);
    font-size: 12px;
}

.categories-elements .card .category-info h6 {
    color: var(--heading-color);
}

.categories-elements .card .btn {
    border-radius: 25px;
    font-size: 13px;
    padding: 5px 15px;
    margin: 0px;
}

.categories-elements .card .category-button {
    margin: 0px;
}

#category-hero {
    padding: 70px 0px;
    background-color: var(--grey-color);
}

#category-hero .text-wrap {
    text-align: center;
}

#category-hero .text-wrap h1 {
    font-weight: 700;
    line-height: 125%;
    color: var(--heading-color);
    font-size: 35px;
    -webkit-font-smoothing: antialiased;
}

#category-hero .text-wrap h2 {
    font-size: 18px;
    margin-top: 8px;
    margin: 0;
    line-height: 28px;
}

#category-hero .category-search-form {
    padding: 0px 150px;
}

#category-hero .category-search-form form .form-group {
    position: relative;
}

#category-hero .category-search-form form input[type="text"] {
    flex: 1 auto;
    box-sizing: border-box;
    border: 0;
    color: var(--body-color);
    font-size: 16px;
    line-height: normal;
    height: 60px;
    box-shadow: hsl(0, 0%, 80%) 0 5px 16px;
    padding: 0 150px 0 32px;
    width: 100%;
    border-radius: 30px;
    background-color: var(--white-color);
    margin-top: 30px;
}

#category-hero .category-search-form form .btn-cat-search {
    position: absolute;
    right: 3%;
    top: -13%;
    border-radius: 25px;
}

.product-category-wrapper {
    background-color: var(--white-color);
    padding: 50px 0px;
}

.sub-categories-card {
    padding: 50px 0px;
    background-color: var(--white-color);
}

.sub-categories-card .card {
    background-color: var(--white-color);
    margin-bottom: 10px;
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
}

.sub-categories-card .card-content {
    padding: 20px;
}

.sub-categories-card .card-content img {
    width: 48px;
    height: 48px;
}

.sub-categories-card .card-content h3 {
    font-size: 14px;
    margin-top: 10px;
}

.showcase-category {
    padding: 50px 0px;
    background-color: #f5f6fa;
}

.showcase-category .showcase-cat-header {
    padding: 10px 0px;
}

.showcase-category .showcase-cat-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
}

.showcase-category .showcase-cat-header p {
    font-size: 16px;
}

.showcase-category .card {
    background-color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 30px;
}

.showcase-category .card img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.showcase-category .card .text-wrap {
    padding: 20px;
}


/* =========================
/* ****** Sub category *****
========================= */
.subcategory-hero {
    background-color: var(--grey-color);
    padding: 70px 0px;
}

.subcategory-content-wrapper {
    background-color: var(--white-color);
    padding: 50px 0px;
}

.subcategory-hero.category-details {
    padding-top: 70px;
    padding-bottom: 20px;
}

.subcategory-hero .text-wrap .navigation {
    margin-bottom: 15px;
}

.subcategory-hero .text-wrap h1 {
    font-size: 30px;
    font-weight: 700;
}

.subcategory-hero .text-wrap p {
    font-size: 14px;
    font-weight: 300;
}

.subcategory-hero .search-form form .form-group {
    position: relative;
}

.subcategory-hero .search-form form input[type="text"] {
    flex: 1 auto;
    box-sizing: border-box;
    border: 0;
    color: gray;
    font-size: 16px;
    line-height: normal;
    height: 60px;
    box-shadow: hsl(0, 0%, 80%) 0 5px 16px;
    padding: 0 150px 0 32px;
    width: 100%;
    border-radius: 50px;
    background-color: var(--white-color);
    margin-top: 30px;
}

.subcategory-hero .search-form form .btn-cat-search {
    position: absolute;
    right: 3%;
    top: -8px;
}

.popular-searches {
    padding: 50px 0px;
    background-color: var(--white-color);
    text-align: center;
}

.popular-searches.category-details {
    padding-top: 0px;
    padding-bottom: 70px;
    background-color: var(--grey-color);
    text-align: center;
}

.popular-searches .popular-search-headings a {
    font-size: 20px;
    color: #303538;
    font-weight: 500;
}

.popular-searches .search-tags {
    margin-top: 20px;
}

.popular-searches.category-details .search-tags {
    margin-top: 0px;
    padding: 0px;
}

.popular-searches .search-tags a {
    display: inline-block;
    background-color: #fff;
    margin: 0px 10px 15px 0px;
    padding: 10px 30px;
    border-radius: 20px;
    border: 2px solid #e6e6e6;
    font-size: 12px;
}


/* =========================
/* ****** Free Goods Area *****
============================ */
.free-products {
    padding: 50px 0px;
    background-color: #f5f6fa;
}

.free-products .fr-goods-header {
    padding: 10px 0px;
}

.free-products .fr-goods-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
}

.free-products .fr-goods-header p {
    font-size: 16px;
}

/* =========================
/* ****** Action Area *****
============================ */
.cr-action-wrapper {
    background-color: var(--grey-color);
    padding: 30px 20px;
    width: 100%;
}

.cr-action-wrapper .card {
    background-color: transparent;
    text-align: center;
}

.cr-action-wrapper .card img {
    width: 80px;
}

.cr-action-wrapper .card .card-info {
    margin: 0;
    padding: 20px 0px;
}

.cr-action-wrapper .card h5 {
    color: var(--heading-color);
}

.cr-action-wrapper .card .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* =========================
/* ****** Blog Area *****
============================ */
.blog-wrapper {
    background-color: var(--white-color);
}

.blog-wrapper .blog-content {
    margin: 30px 0px;
}

.blog-wrapper .blog-content .card {
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-sidebar {
    margin: 30px 0px;
}

.blog-sidebar .toggler h5 {
    font-size: 18px;
    color: var(--white-color);
    display: block;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
}

.blog-sidebar .menu {
    margin: 20px 20px;
}

.blog-sidebar .menu a {
    display: block;
    margin: 10px 0px;
    font-size: 16px;
}

.blog-sidebar .dropdown {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    background-color: var(--grey-color);
}

.blog-sidebar .menu .custom-control {
    margin: 10px 0px;
}

.blog-sidebar .media {
    margin: 15px 0px;
}

.blog-sidebar .media img {
    width: 80px;
    border-radius: 5px;
}

.blog-sidebar .media h5 {
    font-size: 15px;
}

@media (max-width: 280px) {
    .blog-sidebar .menu .media {
        display: block;
    }

    .blog-sidebar .media img {
        margin-bottom: 10px;
    }
}

.blog-content-wrapper {
    padding: 50px 0px;
}

.blog-header {
    text-align: center;
    margin-bottom: 20px;
}

.blog-header h4 {
    color: var(--heading-color);
}

.blog-content .card {
    padding: 0px;
    margin-bottom: 10px;
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
}

.blog-content.blog-content-details .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content .card .blog-info {
    margin: 10px 0px;
    padding: 10px 15px;
}

.blog-content .card .blog-info .blog-heading {
    margin-top: 15px;
    overflow: hidden;
    max-width: 75ch;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.blog-content .card .blog-info .blog-heading a{
    color: var(--heading-color);
}
.blog-content .card .blog-info .blog-heading a:hover{
    color: var(--primary-color);
}

.blog-content .card .blog-info span.blog-category {
    background-color: var(--yellow-light);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 13px;
}

.blog-content .card .blog-info span.blog-date {
    color: var(--primary-color);
    font-weight: 600;
}

/* =============================
/* ****** Discussions *****
================================ */

#discussions {
    background-color: #ebedec;
    margin-top: -15px;
}

#discussions h5 {
    font-weight: 500;
    color: #303538;
}

.discussion-profile .user-profile img {
    width: 50px;
    height: 50px;
    border-radius: 2px;
}

.discussion-profile {
    display: flex;
}

.discussion-profile .discussion-info {
    margin-left: 10px;
}

.discussion-profile .discussion-info h6 {
    font-size: 16px;
}

.discussion-profile .discussion-info span {
    font-size: 12px;
}

.discussions-form {
    display: flex;
    justify-content: space-between;
}

.sr-topic-form .form-group {
    position: relative;
}

.sr-topic-form i {
    position: absolute;
    right: 5%;
    top: 35%;
    cursor: pointer;
}

.sr-topic-form input[type="text"] {
    height: 35px;
}

.discussion-message p {
    font-weight: 300;
    line-height: 22px;
}

.discussions-replies p {
    font-weight: 300;
    line-height: 22px;
}

.post-reply form .btn {
    border-radius: 2px;
}

.post-reply form .btn:hover {
    background-color: #d20000;
}

.post-btn {
    border-radius: 2px;
}

.post-btn:hover {
    background-color: #d20000;
}

/* =========================
/* ****** Slick Slider *****
============================ */
.cr-product-wrapper .left .slider {
    margin: 0 0 40px;
    border-radius: 10px;
}

.slick-slider-single {
    border: 1px solid #dadada;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
}

.slick-slider-single.arrows-main .slick-arrow {
    float: right;
    position: absolute;
    top: 45%;
    z-index: 99;
    border: none;
}

.slick-slider-single.arrows-main a img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slick-slider-single.arrows-sub .slick-arrow {
    float: right;
    position: absolute;
    top: 30%;
    z-index: 99;
    border: none;
}

.slick-slider-single .slick-arrow.slick-prev {
    left: 11px;
    display: block;
    height: 40px;
    width: 40px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
    border: none;
    outline: none;
    margin-top: 20px;
}

.slick-slider-single .slick-arrow.slick-next {
    right: 12px;
    display: block;
    height: 40px;
    width: 40px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
    border: none;
    outline: none;
    margin-top: 20px;
}

.slick-slider-single .slick-arrow.slick-next:hover {
    outline: none;
}

.slick-next::before {
    content: "⇆";
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
}

.slick-prev::before {
    content: "⇆";
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
}

.slider-nav {
    border: 1px solid #dadada;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}

.slider-nav .item-slick img {
    width: 170px;
    border-radius: 4px;
    margin: 0 6px 0 0px;
}

/* ============================
/* ****** Profile *****
=============================== */
.profile-wrapper {
    background-color: var(--white-color);
}

.profile-hero {
    background-color: var(--grey-color);
}

.profile-hero .media {
    padding: 25px 0px;
    float: left;
}

.profile-hero .right-content {
    padding: 25px 0px;
    float: right;
}

.profile-hero .right-content .author-rating i {
    vertical-align: middle;
    color: rgb(254, 196, 45);
    margin: 0 0 3px;
    line-height: 20px;
}

.profile-hero .right-content .author-sales h6 {
    font-size: 25px;
    color: #d20000;
}

.profile-hero .media img {
    border-radius: 5px;
    object-fit: cover;
    height: 90px;
    width: 90px;
}

.profile-hero .media h5 {
    font-weight: 500;
}

.profile-hero .media .media-body .buttons a.btn {
    font-size: 12px;
}

.profile-hero .media .media-body .buttons {
    margin-top: 10px;
}

.profile-tab-content {
    padding: 50px 0px;
}

.profile-tab-content .author .card {
    display: flex;
    flex-direction: row;
    background-color: #e6e6e6;
    border: 1px solid #dadada;
    padding: 20px;
}

.profile-tab-content .author .card img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.item-card,
.message-card {
    margin-top: 20px;
    border: 1px solid #dadada;
}

.profile-tab-content .item-card .media img {
    width: 100px;
    border-radius: 5px;
}

.profile-tab-content .item-card h6 {
    margin-bottom: 20px;
}

.profile-tab-content .item-card .media h5 {
    font-size: 16px;
}

.profile-tab-content .item-card .shop-count img {
    width: 40px;
    margin-right: 10px;
}

.profile-tab-content .item-card .badges img {
    width: 30px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.profile-tab-content .btn-send {
    padding: 5px 20px;
}

/* ============================
/* ****** Dashboard *****
=============================== */
.cr-dashboard-wrapper {
    background-color: var(--white-color);
}

.cr-profile-hero {
    background-color: var(--grey-color);
}

.cr-profile-hero .media {
    padding: 25px 0px;
    float: left;
}

.cr-profile-hero .right-content {
    padding: 25px 0px;
    float: right;
}

.cr-profile-hero .right-content .author-rating i {
    vertical-align: middle;
    color: rgb(254, 196, 45);
    margin: 0 0 3px;
    line-height: 20px;
}

.cr-profile-hero .right-content .author-sales h6 {
    font-size: 25px;
    color: #d20000;
}

.cr-profile-hero .media img {
    border-radius: 5px;
    object-fit: cover;
    height: 90px;
    width: 90px;
}

.cr-profile-hero .media h5 {
    font-weight: 500;
}

.cr-profile-hero .media .media-body .buttons a.btn {
    font-size: 12px;
}

.cr-profile-hero .media .media-body .buttons {
    margin-top: 10px;
}

.cr-profile-hero .media .media-body .buttons a.btn-portfolio {
    background-color: #d20000;
    color: #fff;
    border: 1.5px solid #d20000;
}

.cr-profile-hero .media .media-body .buttons a.btn-follow {
    background-color: transparent;
    border: 1.5px solid #d20000;
}

#profileTabContent {
    padding-bottom: 50px;
}

#profileTabContent .upload-card,
#profileTabContent .weeks-stats,
#profileTabContent .author-resources,
#profileTabContent .previous-announcements {
    border: 1px solid #d6d6d6;
    margin-bottom: 20px;
}

#profileTabContent .upload-card {
    margin-top: 30px;
}

#profileTabContent .upload-card form .btn {
    margin-top: 2px;
    padding: 5px 20px;
}

#profileTabContent .author-resources ul li {
    list-style-type: circle;
    margin-left: 20px;
    line-height: 1.9;
}

#profileTabContent .previous-announcements span {
    font-weight: 500;
    color: #1a1a1a;
}

/* Portfolio items */
.porfolio-items {
    padding: 0px 0px;
}

.porfolio-items .media img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    margin-right: 10px;
}

.porfolio-items .media .media-body h5 {
    font-size: 16px;
    line-height: 1.5rem;
    margin: 0px;
}

.porfolio-items .media .media-body a {
    font-size: 12px;
    border-radius: 25px;
    padding: 5px 15px;
}

.porfolio-items .media .media-body .product-btn {
    margin-top: -10px;
}

.porfolio-items .property-list ul li {
    font-size: 12px;
}

.porfolio-items .product-stats .rating i {
    vertical-align: middle;
    color: rgb(254, 196, 45);
    margin: 0 0 3px;
    line-height: 20px;
    font-size: 13px;
}

.porfolio-items .product-stats .rating span {
    font-size: 13px;
}

.porfolio-items .product-stats .price h2 {
    font-size: 24px;
}

.author-data .author img {
    width: 46px;
    margin-right: 10px;
}

.author-data .author .card {
    margin-top: 30px;
    border: 1px solid #d6d6d6;
}

.author-data .item-card .shop-count img {
    width: 42px;
    margin-right: 10px;
}

.author-data .item-card .badges img {
    width: 32px;
    margin-bottom: 5px;
    margin-right: 5px;
}

/* ============================
/* ****** User Dashboard 2 *****
=============================== */
.cr-dashboard-two {
    padding: 50px 0px;
    background-color: #f5f6fa;
}

.cr-dashboard-two .card {
    margin-bottom: 20px;
}

.cr-dashboard-two .card-header {
    background-color: var(--white-color);
}

.cr-dashboard-two h5 {
    font-weight: 600;
    color: var(--heading-color);
}

.cr-dashboard-two .card .user-profile {
    text-align: center;
}

.cr-dashboard-two .card .user-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.cr-dashboard-two .card .user-profile a {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 600;
}

.cr-dashboard-two .card ul {
    margin-top: 20px;
}

.cr-dashboard-two .card ul li {
    line-height: 2.5rem;
    border-bottom: 1px solid #e7e7e7;
}

.cr-dashboard-two .card ul li a {
    color: var(--heading-color);
}

.cr-dashboard-two .card ul li a:hover {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.cr-dashboard-two .card ul li i {
    margin-right: 10px;
}

.cr-dashboard-two .card form {
    margin-top: 20px;
}

.cr-dashboard-two .card form .btn {
    font-size: 14px;
}

.table-responsive span i {
    color: var(--primary-color);
}

.table-responsive span.category {
    color: var(--primary-color);
}

/* ============================
/* ****** Upload *****
=============================== */
.upload-wrapper,
.cr-upload-wrapper .cr-content-wrapper {
    padding: 50px 0px;
}

#cr-upload-hero {
    padding: 50px 0px;
    background-color: var(--grey-color);
}

.cr-upload-wrapper h3,
.cr-upload-wrapper h6 {
    font-weight: 600;
    color: var(--heading-color);
}

.dropzone {
    border: 2px dashed var(--primary-color);
}

#cr-upload-hero h3 {
    margin: 7px 0px;
}

.upload-heading h3 {
    margin: 25px 0px;
    font-size: 20px;
}

.select-form .btn {
    font-size: 14px;
    padding: 5px 20px;
}

li.select2-search.select2-search--inline{
    display: none;
}

.upload-cat-category,
.upload-guide,
.upload-error,
.corrupt-files,
.upload-1,
.upload-files,
.upload-category,
.upload-tags,
.upload-supporting,
.upload-price,
.upload-message {
    background-color: #fafafa;
    padding: 20px;
    margin-bottom: 20px;
}

.upload-files small {
    color: var(--primary-color);
}

.upload-cat-category p,
.upload-guide p,
.upload-error p,
.corrupt-files p {
    font-size: 16px;
    line-height: 26px;
}

.upload-cat-category ul li,
.upload-guide ul li,
.upload-error ul li,
.corrupt-files ul li {
    list-style-type: circle;
    font-size: 14px;
    line-height: 22px;
    margin-left: 20px;
}

.drop-zone {
    width: 100%;
    height: 150px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}


/* ============================
/* ****** Signin/Signup *****
=============================== */
.sign-up-wrapper {
    padding: 100px 0px;
    background-color: #cccccc;
}

.form-wrapper .form-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
}

.form-wrapper .form-container p,
.form-wrapper .form-container .social-logins {
    text-align: center;
}

.form-wrapper .form-container .social-logins a {
    margin: 0px 5px;
}

/* =========================
/* ****** Pricing Table *****
============================ */

.pricingTable {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px #ababab;
    padding-bottom: 40px;
    border-radius: 10px;
    color: #cad0de;
    transform: scale(1);
    transition: all .5s ease 0s
}

.pricingTable:hover {
    z-index: 1
}

.pricingTable .pricingTable-header {
    padding: 40px 0;
    background: #f5f6f9;
    border-radius: 10px 10px 50% 50%;
    transition: all .5s ease 0s
}

.pricingTable:hover .pricingTable-header {
    background: #ff9624
}

.pricingTable .pricingTable-header i {
    font-size: 50px;
    color: #858c9a;
    margin-bottom: 10px;
    transition: all .5s ease 0s
}

.pricingTable .price-value {
    font-size: 35px;
    color: #ff9624;
    transition: all .5s ease 0s
}

.pricingTable .month {
    display: block;
    font-size: 14px;
    color: #cad0de
}

.pricingTable:hover .month,
.pricingTable:hover .price-value,
.pricingTable:hover .pricingTable-header i {
    color: #fff
}

.pricingTable .heading {
    font-size: 24px;
    color: #ff9624;
    margin: 20px 20px;
    text-transform: capitalize;
}

.pricingTable .pricing-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px
}

.pricingTable .pricing-content ul li {
    line-height: 30px;
    color: #a7a8aa
}

.pricingTable .pricingTable-signup a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    padding: 10px 35px;
    border-radius: 20px;
    background: #ffa442;
    text-transform: capitalize;
    transition: all .3s ease 0s
}

.pricingTable .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #ffa442
}

.pricingTable.blue .heading,
.pricingTable.blue .price-value {
    color: var(--secondary-color);
}

.pricingTable.blue .pricingTable-signup a,
.pricingTable.blue:hover .pricingTable-header {
    background: var(--secondary-color);
}

.pricingTable.blue .pricingTable-signup a:hover {
    box-shadow: 0 0 10px var(--secondary-color);
}

.pricingTable.green .heading,
.pricingTable.green .price-value {
    color: var(--primary-color);
}

.pricingTable.green .pricingTable-signup a,
.pricingTable.green:hover .pricingTable-header {
    background: var(--primary-color);
}

.pricingTable.green .pricingTable-signup a:hover {
    box-shadow: 0 0 10px var(--primary-color);
}

.pricingTable.blue:hover .price-value,
.pricingTable.green:hover .price-value,
.pricingTable.red:hover .price-value {
    color: #fff
}

/* =========================
/* ****** Elements *****
============================ */
.cr-elements {
    padding: 50px 0px;
    background-color: #f5f6fa;
}

.cr-elements .card-header {
    background-color: transparent;
}

.cr-elements .card-header h5 {
    color: var(--heading-color);
    font-weight: 600;
}

.cr-elements .btn {
    border-radius: 5px;
    margin-bottom: 10px;
}

/* =========================
/* ****** Cart & Checkout *****
============================ */
.cart-wrapper,
.checkout-wrapper {
    padding: 50px 0px;
    background-color: #f5f6fa;
}

.checkout-wrapper h6 {
    color: var(--primary-color);
}

.checkout-wrapper .payment-methods img.card-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.checkout-wrapper .payment-methods img {
    width: 80px;
}

.checkout-wrapper .payment-methods .d-flex {
    justify-content: space-between;
}

.checkout-wrapper .payment-methods .card-header {
    background-color: transparent;
}

.cart-card .notification p {
    background-color: var(--yellow-secondary-light);
    padding: 10px 10px;
    border-radius: 5px;
    color: var(--body-color);
}

.cart-card .card-header {
    background-color: #454545;
    border-radius: 5px;
}

.cart-card .card-header .shopping-btn {
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--white-color);
    margin-right: 20px;
}

.cart-card .card-header span {
    color: var(--white-color);
}

.cart-card .card-header .empty-cart-btn {
    background-color: var(--yellow-light);
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--body-color);
}

.cart-card .link-buttons {
    display: flex;
    justify-content: space-between;
}

.cart-card .media img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.cart-card .media h5 {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 16px;
}

.cart-card .media p {
    margin: 0px;
}

.cart-card .media .license {
    margin-top: 10px;
}

.cart-card .support {
    margin-top: 20px;
    background-color: var(--yellow-light);
    padding: 10px 10px;
    border-radius: 5px;
}

.cart-card .d-flex {
    justify-content: space-between;
}

.cart-card i {
    color: var(--red-color);
}

.cart-card h2 {
    font-weight: 600;
    color: var(--heading-color);
    margin-top: 10px;
}

.cart-checkout-card .card {
    text-align: left;
}

.cart-checkout-card .card .d-flex {
    justify-content: space-between;
}

.cart-checkout-card .card h2 {
    color: var(--heading-color);
    font-weight: 600;
}

.cart-checkout-card h6 {
    text-align: center;
    margin-top: 20px;
}

.checkout-wrapper .card {
    margin-bottom: 20px;
}

.checkout-wrapper h5 {
    font-weight: 600;
    color: var(--heading-color);
}

/* ==============================
/* ****** Contact Form *****
=================================*/

.contact-form-wrap {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--bg-white);
}

.contact-form-wrap .contact-form-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-form-wrap .contact-form-group>i {
    left: 14px;
    top: 4px;
    width: 32px;
    height: 32px;
    position: absolute;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    display: inline-block;
    pointer-events: none;
    color: var(--text-primary);
    background: rgba(10, 192, 131, 0.2);
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.contact-form-wrap .contact-form-group .form-control {
    height: 40px;
    color: #000;
    padding: 0 60px;
    font-size: 15px;
    border-radius: 5px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

@media screen and (max-width: 576px) {
    .contact-form-wrap .contact-form-group .form-control {
        font-size: 14px;
    }
}

.contact-form-wrap .contact-form-group .form-control:focus {
    outline: none;
    border: 1px solid var(--text-primary);
    color: #000;
}

.contact-form-wrap .contact-form-group #txtInput {
    padding-left: 90px;
}

.contact-form-wrap .contact-form-group #txtCaptchaSpan {
    position: absolute;
    top: 50%;
    height: 40px;
    padding-left: 14px;
    padding-right: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px 0 0 5px;
}

.contact-form-wrap .contact-form-group textarea.form-control {
    height: auto;
    padding-top: 20px;
}

.contact-form-wrap .empty-form span,
.contact-form-wrap .email-invalid span,
.contact-form-wrap .phone-invalid span,
.contact-form-wrap .terms-alert span,
.contact-form-wrap .subject-alert span,
.contact-form-wrap .security-alert span {
    display: block;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: var(--red);
    background: rgba(242, 116, 116, 0.2);
}

#error_message {
    margin-top: 30px;
    display: block;
    padding: 20px;
    border-radius: 5px;
    word-break: break-word;
    background: rgba(242, 116, 116, 0.2);
    color: var(--red);
}

.contact-form-wrap .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.contact-form-wrap .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.contact-form-wrap .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}

.contact-form-wrap .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dashCheck 0.9s 0.35s ease-in-out forwards;
    animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dashCheck {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dashCheck {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

.contact-form-wrap .custom-control {
    padding: 0;
}

.contact-form-wrap .custom-control .custom-control-input {
    position: relative;
}

.contact-form-wrap .custom-control span {
    vertical-align: middle;
    margin-left: 14px;
    color: #000;
}

.contact-form-wrap .custom-control span a {
    color: var(--text-primary);
}

@media screen and (max-width: 576px) {
    .contact-form-wrap .custom-control span {
        font-size: 14px;
    }
}

.contact-form-wrap .custom-control .custom-control-label {
    margin-left: 0;
    width: 32px;
    height: 32px;
    outline: none;
    text-align: center;
    line-height: 32px;
}

.contact-form-wrap .custom-control .custom-control-label::before {
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
    text-align: center;
    line-height: 32px;
    position: absolute;
    border: none !important;
    pointer-events: initial;
    border-radius: 50% !important;
    display: inline-block;
    color: var(--text-primary);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: rgba(10, 192, 131, 0.2);
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.contact-form-wrap .custom-control-input:checked~.custom-control-label::before,
.contact-form-wrap .custom-control-label:active::before,
.contact-form-wrap .custom-control-input:not(:disabled):active~.custom-control-label::before {
    border: none;
    content: "\f00c";
    color: var(--text-primary);
    background: rgba(10, 192, 131, 0.2);
}

.contact-form-wrap .custom-control-label::after {
    display: none;
}

.contact-form-wrap .custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border: none;
}

.form-validate-icons {
    top: 0;
    right: 14px;
    height: 60px;
    position: absolute;
    line-height: 40px;
}

.form-validate-icons span {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.form-validate-icons span:before {
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    color: var(--text-white);
    display: inline-block;
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.form-validate-icons span.error {
    opacity: 1;
    visibility: visible;
}

.form-validate-icons span.error:before {
    content: "\f00d";
    color: var(--red);
    background: rgba(242, 116, 116, 0.2);
}

.form-validate-icons span.success {
    opacity: 1;
    visibility: visible;
}

.form-validate-icons span.success:before {
    content: "\f00c";
    color: var(--text-primary);
    background: rgba(10, 192, 131, 0.2);
}

.custom-select-wrapper {
    position: relative;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    height: 40px;
}

.contact-form-wrap .custom-select-wrapper select,
.contact-form-wrap .custom-select-wrapper .select-hide {
    display: none;
}

.contact-form-wrap .custom-select-wrapper .select-selected {
    border-radius: 5px;
    outline: none;
    padding: 10px 60px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    color: #677294 !important;
}

.contact-form-wrap .custom-select-wrapper .select-selected:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
    box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.contact-form-wrap .custom-select-wrapper .select-selected:after {
    right: 14px;
    top: 3px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    content: "\f078";
    position: absolute;
    pointer-events: none;
    display: inline-block;
    color: var(--text-primary);
    background: rgba(10, 192, 131, 0.2);
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

span.select2-selection__rendered{
    display: none;
}

.contact-form-wrap .custom-select-wrapper .select-selected.select-arrow-active:after {
    content: "\f077";
}

.contact-form-wrap .custom-select-wrapper .select-items {
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 10px;
    position: absolute;
    background-color: #fff;
    -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
    box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.contact-form-wrap .custom-select-wrapper .select-items .same-as-selected {
    background-color: var(--primary-button);
    border-bottom-color: var(--primary-button);
    color: var(--text-white) !important;
}

.contact-form-wrap .custom-select-wrapper .select-items .same-as-selected:after {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form-wrap .custom-select-wrapper .select-items div {
    color: #000;
    outline: none;
    width: 100%;
    display: block;
    padding: 18px 60px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 576px) {
    .contact-form-wrap .custom-select-wrapper .select-items div {
        font-size: 14px;
    }
}

.contact-form-wrap .custom-select-wrapper .select-items div:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
    box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.contact-form-wrap .custom-select-wrapper .select-items div:last-child {
    border-bottom: 0;
}

.contact-form-wrap .custom-select-wrapper .select-items div:after {
    content: "\f036";
    left: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
    z-index: 14;
    position: absolute;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    display: inline-block;
    color: var(--text-primary);
    background: var(--primary-color);
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.contact-form-wrap .custom-select-wrapper .select-items div:hover {
    background-color: var(--primary-button);
    border-bottom-color: var(--primary-button);
    color: var(--text-white);
}

.contact-form-wrap .custom-select-wrapper .select-items div:hover:after {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form-wrap .btn {
    padding: 10px 20px;
}

.custom-modal .modal-header {
    text-align: center;
    padding: 20px;
}

.custom-modal .modal-header h5,
.custom-modal .modal-header button {
    color: var(--text-white);
}

.custom-modal .modal-header.danger {
    background: #f27474;
    color: var(--text-white);
}

.custom-modal .modal-header.success {
    background: var(--text-primary);
    color: var(--text-white);
}

.custom-modal .modal-header.terms {
    background: var(--sky-blue);
    color: var(--text-white);
}

.custom-modal .modal-body {
    padding: 20px;
}

.custom-modal .modal-body .form-popup-inner {
    text-align: center;
}

.custom-modal .modal-body .form-popup-inner .form-icon {
    margin-bottom: 30px;
}

.custom-modal .modal-body .form-popup-inner .form-icon svg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.custom-modal .modal-body .form-popup-inner .form-icon.danger svg {
    fill: #f27474;
    stroke: #f27474;
    background: rgba(242, 116, 116, 0.1);
}

.custom-modal .modal-body .form-popup-inner .form-icon.success svg {
    fill: var(--primary-color);
    stroke: #fff;
    background: var(--secondary-color);
}

.custom-modal .modal-footer {
    padding: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* =========================
/* ****** 17. Footer *****
============================ */

footer {
    background-color: #303538;
    padding: 50px 0px 30px 0px;
}

footer img {
    margin-bottom: 20px;
}

footer .about-us img {
    width: 150px;
}

footer hr.border-line {
    border-top: 1px solid rgba(250, 247, 247, 0.171);
}

footer,
footer ul li a {
    color: #eef0ef;
    font-weight: 300;
    line-height: 20px;
}

footer ul li a {
    line-height: 28px;
}

footer .content-top {
    display: flex;
    align-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

footer .footer-links h2 {
    color: #d20000;
    font-size: 16px;
}

/* Media Queries */
@media only screen and (max-width : 576px) {
    h1 {
        font-size: 32px !important;
        line-height: 36px !important;
    }

    .subcategory-hero .text-wrap {
        text-align: center;
    }

    .table .media {
        display: block;
    }

    .table .media img {
        margin-bottom: 10px;
    }

    .followers {
        margin-top: 0px;
    }

    .followers .card a.btn-primary {
        padding: 5px 10px;
        position: absolute;
        right: 10%;
    }

    .followers .media {
        display: block;
    }

    .cr-product-headings .search-tags span {
        margin: 5px;
    }

    .cr-product-headings {
        display: block;
        margin: 0px;
    }

    #category-hero .category-search-form {
        padding: 0px;
    }

    .cr-hero-banner h1 {
        font-size: 28px;
        line-height: 38px;
        font-weight: 600;
        color: var(--heading-color);
    }

    .cr-hero-banner {
        padding: 80px 10px 80px 10px;
    }

    .cr-product-headings {
        display: block;
        margin: 20px 0px;
    }

    .cr-product-headings a.cr-heading {
        display: block;
        text-align: center;
        padding-bottom: 10px;
    }

    .cr-product-headings a.btn {
        display: block;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings i {
        font-size: 9px;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings i:not(:root) {
        overflow: hidden;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings span {
        font-size: 10px;
    }

    .cr-products-info .card .pr-actions .pr-buttons a.btn-preview {
        padding: 9px 16px;
        font-size: 10px;
    }

    .cr-products-info .card .pr-actions .pr-buttons a.btn-cart {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media only screen and (max-width: 768px) {

    .cr-profile-hero .right-content {
        float: left;
    }

    #category-hero .category-search-form {
        padding: 0px;
    }

    .topbar ul {
        text-align: center;
    }

    .showcase-category .showcase-cat-header .card {
        padding: 100px 50px;
    }
}


@media only screen and (max-width: 992px) {
    .cr-wrapper {
        overflow-y: hidden;
        overflow-x: hidden;
    }

    .navigation {
        display: none;
    }

    .topbar ul {
        text-align: center;
    }

    .topbar .auth-btns {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {

    #cr-hero-banner {
        padding: 80px 10px 80px 10px;
    }

    .cr-product-headings a.cr-heading {
        display: block;
        text-align: center;
        padding-bottom: 10px;
    }

    .cr-product-headings a.btn {
        display: block;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings i {
        font-size: 9px;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings i:not(:root) {
        overflow: hidden;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings span {
        font-size: 10px;
    }

    .cr-products-info .card .pr-actions .pr-buttons a.btn-preview {
        padding: 9px 16px;
        font-size: 10px;
    }

    .cr-products-info .card .pr-actions .pr-buttons a.btn-cart {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media only screen and (max-width: 479.98px) {
    .offcanvas-widget-area {
        padding-bottom: 0;
    }

    .off-canvas-wrapper .off-canvas-inner-content {
        width: 260px;
        padding: 15px;
    }
}


@media screen and (max-width:992px) {
    .pricingTable {
        margin: 0 0 20px
    }
    
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .followers .card a.btn-primary {
        padding: 5px 10px;
        position: absolute;
        right: 10%;
    }

    .followers .media{
        display: block;
    }
    .followers .media .media-body{
        display: block;
    }
    
    .cr-products-info .card .pr-actions .pr-rating .star-ratings i {
        font-size: 8px;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings i:not(:root) {
        overflow: hidden;
    }

    .cr-products-info .card .pr-actions .pr-rating .star-ratings span {
        font-size: 10px;
    }

    .cr-products-info .card .pr-actions .pr-buttons a.btn-preview {
        padding: 9px 14px;
        font-size: 8px;
    }

    .cr-products-info .card .pr-actions .pr-buttons a.btn-cart {
        font-size: 10px;
        padding: 8px 10px;
    }
}


@media only screen and (max-width: 1024px) {
    .showcase-category .showcase-cat-header .card {
        padding: 150px 50px;
    }

    .cr-product-wrapper {
        padding: 0;
    }

    .cr-product-wrapper {
        padding: 0;
    }

    .navbar .form-inline input[type="text"] {
        position: relative;
    }

    .navbar .form-inline button {
        position: absolute;
        right: 3%;
        font-size: 10px;
    }
}