/*
    TABLE OF CONTENT
    1. BODY
    2. BUTTONS
    3. DESIGN
    4. FORMS
    5. HEADER
    6. MOBILE MENU
    7. HOME BANNER
    8. SERVICE CATEGORY
    9. PARTNERS
    10. SCOPE
    11. PROCESS
    12. PRICING
    13. CATEGORY
    14. CATEGORIES WIDGET
    15. PUBLIC PROFILE
    16. SIGNUP/SIGNIN
    17. MODALS
    18. PROJECTS
    19. PROJECT DETAILS
        19.1. Responsive Design
        19.2. Reviews
        19.3. Package Table
    20. SLICK SLIDER
    21. SEARCH
    22. FREELANCERS
    23. PROCESS
    24. ABOUT
    25. INFORMATION PAGE
    26. STORIES
    27. INSPIRATIONS
    28. DASHBOARD
    29. USER PROFILE
    30. CUSTOMER SUPPORT
    31. START SELLING
    32. CREATE PROPOSAL
    33. MESSAGING
    34. NOTIFICATIONS
    35. SELLING
    36. COUPONS
    37. REVENUE/PURCHASES/FAVOURITES/REQUESTS/CONTACTS
    38. PROFILE
    39. USER SETTINGS
    40. SINGLE PROJECT
    41. CART
    42. CONTACT
    43. FOOTER
    44. RESPONSIVE DESIGN
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

:root {
    --primary-color: #093514;
    --primary-dark: #008329;
    --text-primary: #8DC643;
    --text-primary-light: #0ae24f;
    --secondary-color: #1d4354;
    --deep-blue: #0d084d;
    --grey-sky: #f1fdf7;
    --nav-background: #1d4354;
    --primary-button: #8DC643;
    --primary-button-hover: #008329;
    --btn-border-white: #FFFFFF;
    --white-button: #FFFFFF;
    --white-button-hover: #008329;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --link-color: #6FDA44;
    --heading-color: #222222;
    --body-color: #5c5c5c;
    --dark-grey: #494949;
    --nav-search-bg: #8DC643;
    --light-secondary-color: #2b5468;
    --nav-white: #f3f5f6;
    --bg-white: #FFFFFF;
    --light-grey-bg: #f1f2f4;
    --secondary-border: #336278;
    --grey-white: #acacac;
    --sky-blue: #14BFF4;
    --button-light-bg: #e0e0e0;
    --red: #f84a36;
    --orange: #fa921e;
}


/* =========================
/* ****** 1. Body *****
========================= */

* {
    margin: 0;
    padding: 0;
}

body {
    color: #504e4b;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #ffffff;
}

.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
    word-break: break-word;
    margin: 0 0 30px;
    color: var(--heading-color);
    font-family: inherit;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
}

a,
a:link {
    text-decoration: none;
}

input[type="radio"]::selection {
    background-color: var(--primary-color);
    color: var(--primary-color);
}

ul li {
    list-style: none;
}

.text-primary {
    color: var(--text-primary);
}

/* =========================
/* ****** 2. Buttons *****
========================= */

.btn {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.btn-primary {
    background-color: var(--primary-button);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-button-hover);
}

.btn-primary-outline {
    border: 1px solid var(--primary-button);
    color: var(--link-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-white {
    background-color: var(--white-button);
    color: var(--link-color);
}

.btn-white:hover {
    color: var(--white-button-hover);
}

.progress-bar.bg-primary {
    background-color: var(--sky-blue) !important;
}

.badge-primary {
    background-color: var(--primary-button);
    color: var(--text-white);
    padding: 5px 5px;
}

.badge-primary:hover {
    background-color: transparent;
    border: 1px solid var(--primary-button);
    color: var(--link-color);
    transition: all 0.3s ease;
}

ul li a span.badge-success {
    color: var(--text-white);
}

/* =========================
/* ****** 3. Design *****
========================= */

.green-dash {
    width: 31px;
    height: 7px;
    background: var(--text-primary);
    margin: 0px 0px 10px;
}


/* =========================
/* ****** 4. Form *****
========================= */

input [type="text"],
input [type="email"],
input [type="password"],
input [type="number"] {
    height: 40px;
    padding: 10px 19px;
    display: block;
    width: 100%;
    background-color: var(--bg-white);
    font-size: 13px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* =========================
/* ****** 5. Header *****
========================= */

/* Nav */
.alert {
    text-align: center;
    margin: 0px;
}

.alert-primary {
    background-color: var(--primary-button);
    border-radius: 0px;
    color: var(--text-white);
}

.alert a {
    color: var(--text-white);
    text-decoration: underline;
}

.uw-nav {
    padding: 8px 0px;
    background-color: var(--bg-white);
    -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);
    margin-bottom: 10px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.uw-nav a.navbar-brand span {
    color: var(--primary-color);
    font-style: italic;
}

.uw-nav a.navbar-brand {
    font-size: 30px;
    font-weight: 600;
}

.uw-nav a.navbar-brand img {
    width: 100px;
}

.uw-nav .navbar ul li {
    font-size: 15px;
}

.uw-nav .navbar ul li a {
    color: var(--body-color);
    font-weight: 400;
}
.uw-nav .navbar ul li a:hover{
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.uw-nav .navbar ul li {
    background-color: var(--bg-white);
    /* box-shadow: 0 1px 6px rgba(57, 73, 76, .35); */
}

.uw-nav .navbar ul li .dropdown-menu {
    margin-top: 25px;
}

.uw-nav .navbar ul li .dropdown-menu a {
    color: var(--body-color);
    font-weight: 300;
}
.uw-nav .navbar ul li .dropdown-menu a:hover{
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.uw-nav .navbar ul li .dropdown-menu a i {
    color: var(--link-color);
}

.uw-nav .navbar form input[type="search"] {
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: var(--nav-search-bg);
    color: var(--text-white);
}

.uw-nav .navbar form input[type="search"]::placeholder {
    color: var(--text-white);
    font-size: 15px;
}

.uw-nav .navbar form input[type="search"]:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.uw-nav .navbar .auth-btns a {
    padding: 5px 15px;
    font-size: 13px;
    border-radius: 20px;
    margin-left: 10px;
}

.uw-nav .navbar .loged-in-icons a i {
    font-size: 20px;
    margin: 10px;
    color: #838383;
}

.uw-nav .navbar .loged-in-icons .icon-wrapper {
    position: relative;
}

.uw-nav .navbar .loged-in-icons .icon-wrapper .counter {
    position: absolute;
    background-color: var(--primary-button);
    clip-path: polygon(0% 0%, 100% 0, 100% 75%, 75% 75%, 37% 99%, 50% 75%, 0% 75%);
    /* border-radius: 50%; */
    display: block;
    top: -5px;
    right: 3px;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 2px;
}

.uw-nav .navbar .loged-in-icons .icon-wrapper .counter.orange {
    background-color: var(--orange);
}

.uw-nav .navbar .loged-in-icons .icon-wrapper .counter.red {
    background-color: rgb(255, 57, 57);
}

.uw-nav .navbar .loged-in-icons .icon-wrapper .counter.yellow {
    background-color: yellowgreen;
}

.uw-nav .navbar .loged-in-icons .icon-wrapper .counter.blue {
    background-color: var(--sky-blue);
}

.uw-nav .navbar .loged-in-icons .icon-wrapper .counter span {
    padding-bottom: 5px;
    color: var(--text-white);
}

.uw-nav .navbar .loged-in-icons .user-profile-icon {
    margin-left: 15px;
}

.uw-nav .navbar .loged-in-icons .user-profile-icon .media a {
    margin-right: 8px;
}

.uw-nav .navbar .loged-in-icons .user-profile-icon .media a img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

.uw-nav .navbar .loged-in-icons .user-profile-icon .media h5 {
    font-size: 14px;
    margin: 0px;
}

.uw-nav .navbar .auth-btns a.btn-primary-outline:hover {
    color: var(--text-white);
    background-color: var(--primary-button-hover);
}

.navbar-toggler span {
    color: var(--nav-white);
    font-size: 24px;
    color: var(--heading-color);
}

.navbar-toggler span:focus {
    outline: none;
    outline-width: 0px;
    border: none;
    background-color: transparent;
    border-color: transparent;
}

.dropdown-menu .multi-dropdown {
    position: relative;
    /* background-color: var(--primary-button); */
}

a.multi-dropdown {
    color: var(--text-white) !important;
    background-color: var(--primary-button);
}
a.multi-dropdown:hover{
    background-color: var(--primary-button-hover);
}
.sub-menu {
    width: 150px;
    display: block;
    position: absolute;
    z-index: 100;
    left: 100%;
    /* border-top: 3px solid var(--text-primary); */
    border: 1px solid #cacaca;
    border-radius: 3px;
    padding: 10px;
    background-color: var(--bg-white);
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.dropdown-item:hover+.sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu:hover {
    opacity: 1;
    visibility: visible;
}

.sub-menu li {
    line-height: 26px;
}

/* Nav header categories */

.uw-header-category {
    background-color: var(--bg-white);
    padding: 5px 0px;
}

.uw-header-category ul li {
    display: inline-block;
    padding: 10px 15px;
}

.uw-header-category ul li a {
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 300;
}

.uw-header-category ul li a:hover {
    color: var(--link-color);
    transition: all 0.3s;
}

.uw-header-category ul li.btn-more {
    background-color: var(--primary-button);
    padding: 5px 15px;
    border-radius: 25px;
}

.uw-header-category ul li.btn-more a {
    color: var(--text-white);
}

/* ============================
/* ****** 6. 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;
    /* max-height: 250px; */
}

.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: var(--text-primary);
}

.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);
}

@media only screen and (max-width: 479.98px) {
    .mobile-menu {
        margin-top: 15px;
    }
}

.mobile-menu {
    padding-bottom: 15px;
    padding-top: 25px;
    background-color: var(--bg-white);
    margin-top: 0px;
}

.mobile-menu .mobile-toggler {
    display: flex;
}

.mobile-menu .mobile-toggler i {
    margin-right: 15px;
    font-size: 22px;
}

.mobile-menu .mobile-logo img {
    width: 90px;
}

.mobile-menu .mobile-user-links ul li {
    display: inline;
    margin: 0 5px;
}

.mobile-menu .mobile-user-links ul li a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu .mobile-user-links ul li.signup-btn {
    background-color: var(--primary-button);
    padding: 5px 12px;
    border-radius: 25px;
}

.mobile-menu .mobile-user-links ul li.signup-btn a {
    color: var(--text-white);
}

.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;
    color: var(--text-primary);
}

.mobile-menu .user-icons a:first-child {
    padding: 0px 2px;
}

/* Mobile Logged User Icons */
.mobile-user-links .loged-in-icons a i {
    font-size: 20px;
    margin: 10px;
    color: #838383;
}

.mobile-user-links .loged-in-icons .icon-wrapper {
    position: relative;
}

.mobile-user-links .loged-in-icons .icon-wrapper .counter {
    position: absolute;
    background-color: var(--primary-button);
    clip-path: polygon(0% 0%, 100% 0, 100% 75%, 75% 75%, 37% 99%, 50% 75%, 0% 75%);
    /* border-radius: 50%; */
    display: block;
    top: -5px;
    right: 3px;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 2px;
}

.mobile-user-links .loged-in-icons .icon-wrapper .counter.orange {
    background-color: var(--orange);
}

.mobile-user-links .loged-in-icons .icon-wrapper .counter.red {
    background-color: rgb(255, 57, 57);
}

.mobile-user-links .loged-in-icons .icon-wrapper .counter.yellow {
    background-color: yellowgreen;
}

.mobile-user-links .loged-in-icons .icon-wrapper .counter.blue {
    background-color: var(--sky-blue);
}

.mobile-user-links .loged-in-icons .icon-wrapper .counter span {
    padding-bottom: 5px;
    color: var(--text-white);
}

.mobile-user-links .loged-in-icons .user-profile-icon {
    margin-left: 15px;
}

.mobile-user-links .loged-in-icons .user-profile-icon .media a {
    margin-right: 8px;
}

.mobile-user-links .loged-in-icons .user-profile-icon .media a img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

.mobile-user-links .loged-in-icons .user-profile-icon .media h5 {
    font-size: 14px;
    margin: 0px;
}

/* offcanvas */

.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 {
    list-style: none;
}

.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: var(--body-color);
    margin-right: 10px;
    border: 1px solid var(--text-primary);
}

.auth-links-offcanvas ul li a.signup-btn {
    background-color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 3px 10px;
    color: var(--text-white);
}

.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: var(--bg-white);
    width: fit-content;
    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: var(--text-white);
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: var(--secondary-color);
}

.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 input {
    color: var(--body-color);
    font-size: 13px;
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: var(--light-grey-bg);
}

.search-box-offcanvas form .form-group {
    position: relative;
}

.search-box-offcanvas form button {
    top: 0;
    right: 0;
    width: 80px;
    height: 40px;
    /* line-height: 42px; */
    font-size: 16px !important;
    color: var(--body-color);
    position: absolute;
    background-color: transparent;
    border: none;
}

@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;
    }
}

/* =========================
/* ****** 7. Home banner *****
========================= */

#uw-home-banner-wrapper {
    background-color: var(--light-grey-bg);
    padding: 100px 0px;
    color: var(--heading-color);
}

.uw-home-banner h1 {
    font-size: 46px;
    line-height: 50px;
    font-weight: 700;
}

.uw-home-banner h2 {
    font-size: 42px;
    color: var(--text-white);
}

.uw-home-banner h1.text-heading {
    color: var(--heading-color);
}

.uw-home-banner p {
    font-size: 16px;
}

.uw-home-banner-form {
    margin-top: 20px;
}

.uw-home-banner-form .form-group-wrapper {
    position: relative;
}

.uw-home-banner-form .form-group-wrapper button {
    position: absolute;
    top: 15%;
    right: 2%;
    background-color: var(--primary-button);
    padding: 5px 10px;
    color: var(--text-white);
    border-radius: 25px;
}

.uw-home-banner-form .form-group-wrapper input[type="text"] {
    height: 50px;
    border-radius: 25px;
}

.uw-home-banner .uw-home-buttons .btn {
    padding: 8px 25px;
    margin-right: 10px;
    vertical-align: baseline;
    font-size: 14px;
    border-radius: 25px;
}


/* ==============================
/* ****** 8. Service Category *****
=================================*/

.uw-service-category {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.uw-service-category h2 {
    line-height: 24px;
    font-size: 20px;
    color: var(--heading-color);
}

.uw-service-category .card {
    border-top: 4px solid var(--text-primary-light);
    border-radius: 5px;
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    text-decoration: none;
    margin-bottom: 30px;
    background-color: var(--bg-white);
}

.uw-service-category .card .card-body {
    padding: 0px;
    background-color: var(--bg-white);
    border-radius: 5px;
}

.uw-service-category .card .card-footer {
    padding: 20px 20px;
    border: none;
    background-color: var(--light-grey-bg);
    border-radius: 5px;
}

.uw-service-category .card .card-footer h4 {
    font-size: 15px;
    text-align: center;
    margin: 0px;
}

.uw-service-category .card .card-footer h4:hover {
    color: var(--link-color);
    transition: all 0.3s;
}

.uw-service-category .uw-all-category-link span {
    color: var(--body-color);
    text-align: center;
    display: block;
}

.uw-service-category .uw-all-category-link span a {
    color: var(--link-color);
}


/* ==============================
/* ****** 9. Partners *****
=================================*/

.uw-trusted-partners {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.uw-trusted-partners .partner-heading {
    text-align: center;
    margin-bottom: 30px;
}

.uw-trusted-partners .partner-heading h6 {
    color: var(--heading-color);
}

.uw-trusted-partners .card {
    border: none;
    box-shadow: none;
    text-align: center;
    background: transparent;
}

.uw-trusted-partners .card .card-body {
    padding: 10px;
}


/* ==============================
/* ****** 10. Scope *****
=================================*/

.uw-scope-hire {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.uw-scope-hire .card {
    border: none;
    background-color: var(--bg-white);
    border-right: 1px solid var(--light-grey-bg);
    margin-bottom: 15px;
    border-top: 4px solid var(--text-primary);
}

.uw-scope-hire .card h4 {
    font-size: 16px;
    margin: 0px 0px 10px;
    color: var(--heading-color);
}

.uw-scope-hire .card p {
    font-size: 14px;
}


/* ==============================
/* ****** 11. Process *****
=================================*/

.uw-process {
    padding: 50px 0px;
}

.uw-process.categories {
    margin-bottom: 50px;
}

.uw-process .process-header h2 {
    line-height: 24px;
    font-size: 20px;
    color: var(--heading-color);
    text-align: center;
}

.uw-process .card {
    padding: 10px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    border: none;
    margin-top: 15px;
    border-left: 2px solid var(--text-primary);
    border-left-style: dotted;
}

.uw-process .card .card-body img {
    width: 90px;
    height: 90px;
}

.uw-process .card .card-body .process-content {
    margin-top: 10px;
}

.uw-process .card .card-body .process-content h4 {
    font-size: 16px;
    margin: 0px 0px 10px;
    color: var(--heading-color);
}


/* ==============================
/* ****** 12. Pricing *****
=================================*/

.uw-pricing {
    margin-top: 50px;
    background-color: var(--light-grey-bg);
    padding: 40px 0px;
}

.uw-pricing.pricing-pg {
    margin-top: -10px;
}

.uw-pricing .pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.uw-pricing .pricing-header h2 {
    margin: 10px;
    line-height: 40px;
    font-size: 26px;
    color: var(--heading-color);
}

.uw-pricing .card {
    padding: 15px;
    flex: 0 0 auto;
}

.uw-pricing .card .card-header {
    background-color: var(--bg-white);
    text-align: center;
}

.uw-pricing h4 {
    font-size: 16px;
    text-align: center;
    margin: 0px 0px 20px;
    color: var(--heading-color);
}

.uw-pricing .card {
    margin-bottom: 15px;
    min-height: 500px !important;
}

.uw-pricing .card .card-header a.btn {
    padding: 5px 15px;
    margin: 0px 0px 20px;
}

.uw-pricing .card .card-body .plan-features ul li {
    line-height: 1.8;
    margin: 10px 0px;
}

.uw-pricing .card .card-body .plan-features a {
    color: var(--link-color);
    margin-left: 30px;
}

@media only screen and (max-width: 280px) {
    .uw-pricing .pricing-header h2 {
        font-size: 22px;
        line-height: 30px;
    }
}


/* ==============================
/* ****** 13. Category *****
=================================*/

.uw-category-banner-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}
.sub-category-wrapper{
    background-color: var(--secondary-color);
    padding: 50px 0px;
}
.uw-category-banner .category-content {
    text-align: left;
}

.uw-category-banner h1 {
    font-size: 38px;
    /* line-height: 50px; */
    color: var(--heading-color);
    margin: 0PX;
}
.sub-category-wrapper .uw-category-banner h1{
    color: var(--text-white);
}
.uw-category-banner h4 {
    color: var(--text-primary-light);
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
    /* line-height: 1.4; */
}

.uw-category-banner p {
    font-size: 18px;
}
.sub-category-wrapper .uw-category-banner p{
    color: var(--text-white);
}
.sub-category-wrapper .category-img img{
    width: 350px;
}
.uw-category-banner .uw-category-buttons a {
    padding: 0px 10px;
    background-color: var(--primary-button);
    font-size: 14px;
    font-weight: 300;
}

.uw-category-banner .uw-category-buttons span {
    color: var(--link-color);
    font-weight: 500;
    font-size: 18px;
    margin-right: 10px;
}

.uw-trusted-partners.category-pg {
    background-color: var(--light-grey-bg);
    padding: 30px 0px;
}

.uw-category-wrapper {
    padding: 50px 0px;
    background-color: var(--bg-white);
}

.uw-category-wrapper .sec-title {
    font-size: 24px;
}

.sidebar-widgets-wrapper .card {
    border-radius: 5px;
    border: none;
    margin-bottom: 40px;
}

.sidebar-widgets-wrapper .card .card-body {
    padding: 0px;
}

.uw-trusted-partners.category-pg .card {
    background-color: transparent;
}

#uw-all-category .category-header {
    background-color: var(--light-grey-bg);
    padding: 50px 150px;
    text-align: center;
}

#uw-all-category .category-header h2 {
    font-size: 42px;
    color: var(--heading-color);
    font-weight: 600;
}
.uw-process.category{
    background-color: var(--light-grey-bg);
}
#uw-all-category .category-header p {
    color: var(--heading-color);
    font-size: 14px;
}

#uw-all-category .category-header input[type="text"]::placeholder {
    font-size: 14px;
}

#uw-all-category .categories h6 {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

#uw-all-category .categories .categories-list .form-check {
    margin: 15px 0px;
}

#uw-all-category .categories .categories-list .form-check input[type="radio"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#uw-all-category .categories .categories-list .form-check input[type="radio"]:focus {
    outline: none !important;
}

#uw-all-category .categories .categories-list .form-check label {
    color: var(--heading-color);
}

#uw-all-category .category-results h4 {
    font-size: 20px;
    margin: 10px 0px;
}

#uw-all-category .category-results .results-list ul li {
    list-style: none;
}

#uw-all-category .category-results .results-list ul li a {
    line-height: 28px;
    color: var(--heading-color);
}

#uw-all-category .category-results .results-list ul li a:hover {
    color: var(--primary-color);
    transition: all 0.3s;
}

.uw-authors {
    padding: 50px 0px;
    background-color: var(--light-grey-bg);
}

.uw-authors .card {
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    margin-bottom: 20px;
}

.uw-authors .authors-heading h2 {
    margin: 10px;
    line-height: 40px;
    font-size: 26px;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 30px;
}

.uw-authors .media img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.uw-authors .media .media-body h5 {
    font-size: 12px;
    margin: 5px;
    color: var(--primary-dark);
}

.uw-authors .media .media-body {
    font-size: 13px;
}

.uw-authors .media .media-body span {
    margin-left: 5px;
}

.uw-authors .media .media-body .rating {
    margin-top: 10px;
}

.uw-authors .media .media-body .rating i,
.uw-authors .media .media-body .rating span {
    color: var(--sky-blue);
}

.uw-authors .author-info {
    margin-top: 20px;
}

.uw-authors .author-info {
    display: flex;
    justify-content: space-between;
}

.uw-authors .author-info .pricing {
    font-size: 14px;
}

.uw-authors .author-info .pricing span b {
    font-weight: 500;
}

.uw-authors .author-info .location {
    font-size: 12px;
}

.uw-authors .author-skills a {
    background-color: var(--button-light-bg);
    margin-bottom: 5px;
    padding: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 12px;
    color: var(--heading-color);
}

.uw-authors .card-footer {
    background-color: var(--bg-white);
}

.uw-authors .card-footer a.btn {
    margin-top: 10px;
    padding: 5px 15px;
    font-size: 13px;
}

.uw-third-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
}

.uw-third-menu {
    border-bottom: 1px solid #dadbdd;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99;
}

.uw-third-menu .sub-category h2 {
    font-size: 20px;
}

.uw-third-menu .right ul li:last-child i {
    color: var(--text-primary);
}

.uw-third-menu .left ul li {
    margin: 0 20px 0 0px;
    position: relative;
}

.uw-third-menu .left ul li.selected:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--text-primary);
    bottom: -1px;
}

.uw-third-menu .left ul li a {
    font-size: 13px;
    line-height: 53px;
    color: #95979d;
}

.uw-third-menu .left ul li.selected a {
    color: #222325;
    cursor: default;
}

.uw-third-menu .right ul li button {
    height: 30px;
    border: 1px solid #c5c6c9;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    padding: 0 10px 0 8px;
    font-size: 13px;
}

.uw-third-menu .right ul li button i {
    color: #b5b6ba;
}

.uw-third-menu.filter-options {
    border-bottom: none;
    position: -webkit-sticky;
    position: sticky;
    min-height: 67px;
    z-index: 99999999;
    top: 0;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.uw-third-menu.filter-options ul li {
    text-align: right;
    align-items: center;
    display: flex;
}

.uw-third-menu.filter-options ul li+li {
    margin-left: 32px;
}

.uw-third-menu.filter-options ul li h5 {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: #62646a;
}

/* ==============================
/* ****** 14. Categories Widget *****
=================================*/
.sidebar-widgets-wrapper .categories-widget {
    position: relative;
    background-color: var(--bg-white);
    padding: 20px 20px;
    border-radius: 5px;
    border-bottom-left-radius: 2px;
    margin-bottom: 15px;
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
}

.sidebar-widgets-wrapper .categories-widget .categories-widget-clip {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-dark);
    clip-path: polygon(0% 1%, 0% 100%, 77% 0%);
    border-top-left-radius: 5px;
}

.sidebar-widgets-wrapper .categories-widget h2 {
    font-size: 20px;
    margin: 10px 0;
    color: var(--primary-dark);
}

.sidebar-widgets-wrapper .card {
    margin: 10px 0px;
    padding: 0px;
    background-color: transparent;
}

.sidebar-widgets-wrapper .card .card-header {
    padding: 0;
    background-color: transparent;
    border: none;
}

.sidebar-widgets-wrapper .card .card-header h5 a {
    font-size: 16px;
    color: var(--heading-color);
}

.sidebar-widgets-wrapper .card .card-header h5 i {
    float: right;
    font-size: 15px;
    margin-top: 6px;
}

.sidebar-widgets-wrapper .card .card-body {
    padding: 5px 5px;
}

.sidebar-widgets-wrapper .card .card-body ul li {
    display: block;
    padding: 3px;
}

.sidebar-widgets-wrapper .card .card-body ul li a {
    color: var(--light-secondary-color);
}

.sidebar-widgets-wrapper .card .card-body ul li a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

/* checkbox */
.checkbox-wrapper {
    position: relative;
}

input[type="checkbox"] {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
}

.checkbox-wrapper label {
    display: flex;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.checkbox-wrapper label::before,
.checkbox-wrapper label::after {
    pointer-events: none;
}

.checkbox-wrapper label::before {
    display: flex;
    content: "";
    height: 20px;
    width: 20px;
    border: solid 3px var(--primary-dark);
    background: var(--bg-white);
    margin-right: 10px;
}

.checkbox-wrapper label::after {
    position: absolute;
    top: 7px;
    left: 7px;
    display: flex;
    content: "";
    height: 12px;
    width: 12px;
    background: var(--primary-dark);
    transform: scale(0);
    transition: transform .3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked+label::after {
    transform: scale(1);
}

/* radio */
.radio-wrapper {
    position: relative;
}

input[type="radio"] {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
}

.radio-wrapper label {
    display: flex;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.radio-wrapper label::before,
.radio-wrapper label::after {
    border-radius: 50%;
}

.radio-wrapper label::before {
    display: flex;
    content: "";
    height: 20px;
    width: 20px;
    border: solid 3px var(--primary-dark);
    background: var(--bg-white);
    margin-right: 10px;
}

.radio-wrapper label::after {
    position: absolute;
    top: 7px;
    left: 7px;
    display: flex;
    content: "";
    height: 12px;
    width: 12px;
    background: var(--primary-dark);
    transform: scale(0);
    transition: transform .3s ease;
}

.radio-wrapper input[type="radio"]:checked+label::after {
    transform: scale(1);
}

/* ==============================
/* ****** 15. Public Profile *****
=================================*/

.uw-public-profile-header {
    background-image: url(../images/template/home-default/inspirations/startup-849804_1920.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    margin-top: -10px;
}

.uw-public-profile-header .header-content {
    background-color: var(--bg-white);
    width: max-content;
    padding: 20px 40px 20px 20px;
    border-radius: 5px;
}

@media only screen and (max-width: 280px) {
    .uw-public-profile-header .header-content {
        padding: 20px 20px 20px 20px;
    }

    .uw-public-profile-header .header-content h4 {
        font-size: 18px;
    }

    .uw-public-profile-header .header-content .header-other-info a {
        display: block;
    }
}

.uw-public-profile-header .header-content h4 {
    margin: 0;
}

.uw-public-profile-header .header-content .header-other-info {
    margin-top: 10px;
}

.uw-public-profile-header .header-content .header-other-info a {
    color: var(--body-color);
    margin-right: 10px;
}

#public-profile {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
    margin-bottom: 0;
}

#public-profile .card {
    background-color: var(--bg-white);
}

#public-profile .card .card-body .media img {
    margin-right: 25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

#public-profile .card .card-body .media h5 {
    font-size: 24px;
    color: var(--heading-color);
    margin: 10px 0px;
}

#public-profile .card .card-body .location,
#public-profile .card .card-body .rating,
#public-profile .card .card-body .job-percentage {
    font-size: 13px;
    line-height: 30px;
}

#public-profile .card .card-body .rating {
    color: var(--sky-blue);
}

#public-profile .card .card-body .job-percentage {
    margin-top: 10px;
}

#public-profile .tab-content .author-profile-head {
    display: flex;
    justify-content: space-between;
}

#public-profile .tab-content .author-profile-head h2 {
    font-size: 20px;
}

#public-profile .tab-content .author-profile-head .author-speciality h6 {
    margin-top: -20px;
    font-size: 14px;
    color: var(--heading-color);
}

#public-profile .tab-content h2 {
    font-size: 20px;
}

#public-profile .tab-content h2.work-headline {
    font-size: 18px;
    margin-top: 30px;
}

#public-profile .tab-content h2.text-primary {
    color: var(--primary-color) !important;
    font-size: 16px;
    margin: 0px 0px;
}

#public-profile .tab-content .completed-jobs h6 {
    color: var(--heading-color);
    font-weight: 400;
}

#public-profile .tab-content .completed-jobs .job-info .job-rating {
    color: var(--primary-dark);
    line-height: 30px;
}

#public-profile .tab-content .completed-jobs .job-info .job-date {
    line-height: 30px;
}

#public-profile .tab-content .completed-jobs .job-info .job-date span {
    color: var(--body-color);
}

#public-profile .tab-content .completed-jobs .job-info .job-description p {
    font-style: italic;
}

#public-profile .tab-content .skills h2 {
    font-size: 20px;
    color: var(--heading-color);
    margin-top: 40px;
}

#public-profile .tab-content .skills h6 {
    color: var(--heading-color);
}

#public-profile .tab-content .skills .skills-list ul li {
    display: inline-block;
    background-color: var(--light-grey-bg);
    margin-right: 5px;
    padding: 3px 10px;
    margin-bottom: 10px;
    border-radius: 25px;
    font-size: 12px;
}

#public-profile .tab-content .skills .skills-list ul li b {
    color: var(--heading-color);
    font-weight: 500;
}

#public-profile .profile-tabs .tab-heading h2 {
    font-size: 20px;
    color: var(--heading-color);
}

#public-profile .profile-tabs .tab-heading .nav-link {
    background-color: transparent;
    color: var(--body-color);
    margin: 5px 0px;
}

#public-profile .profile-tabs .tab-heading .nav-link.active {
    border-left: 4px solid var(--primary-dark);
    border-radius: 0px;
    color: var(--heading-color);
}

#public-profile .left-column {
    border-right: 1px solid var(--grey-white);
    padding: 20px;
}

#public-profile .right-column {
    padding: 20px;
}

#public-profile .signup-form form h2 {
    font-size: 20px;
    line-height: 30px;
    margin: 10px 0px;
}

#public-profile .signup-form form p {
    font-size: 14px;
}

#public-profile .signup-form form .btn {
    display: block;
    padding: 3px 10px;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: .22px;
    text-align: center;
}

#public-profile .signup-form form a.btn-google {
    background-color: var(--sky-blue);
    color: var(--text-white);
}

#public-profile .signup-form form .btn-email {
    background-color: var(--primary-dark);
    color: var(--text-white);
    width: 100%;
    margin: 20px 0px;
}

#public-profile .signup-form form .form-divider {
    text-align: center;
    margin: 10px 0px;
    font-size: 14px;
}

#public-profile .signup-form form input[type="text"] {
    padding: 10px 19px;
    background-color: var(--bg-white);
}

#public-profile .signup-form form input[type="text"]:focus {
    border: none;
    background-color: transparent;
}

#public-profile .signup-form form input[type="text"]:hover {
    border: 1px solid var(--primary-dark);
}

#public-profile .signup-form form input[type="text"]::placeholder {
    font-size: 14px;
}

#public-profile .total-author-work {
    display: flex;
    justify-content: space-between;
}

#public-profile .author-availability h2 {
    font-size: 20px;
    color: var(--heading-color);
}

#public-profile .author-availability span {
    color: var(--heading-color);
}


/* ==============================
/* ****** 16. Signup/Signin *****
=================================*/

#uw-signin-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

#uw-signin-wrapper .signin-form .card {
    padding: 30px;
}

#uw-signin-wrapper .signin-form .card {
    text-align: center;
}

#uw-signin-wrapper .signin-form .card h2 {
    font-size: 24px;
    text-align: center;
    margin: 0px 0px 5px;
}

#uw-signin-wrapper .signin-form .card .card-body a {
    display: block;
    padding: 10px 10px;
    color: var(--text-white);
}

#uw-signin-wrapper .signin-form .card.reset-card .card-body a {
    display: block;
    padding: 10px 0;
    color: var(--sky-blue);
}

#uw-signin-wrapper .signin-form .card .card-body a.btn-google {
    background-color: var(--red);
    margin: 10px 0px;
}

#uw-signin-wrapper .signin-form .card .card-body a.btn-facebook {
    background-color: var(--sky-blue);
    margin: 10px 0px;
}

#uw-signin-wrapper .signin-form .card .card-body input[type="text"],
#uw-signin-wrapper .signin-form .card .card-body input[type="email"],
#uw-signin-wrapper .signin-form .card .card-body input[type="password"] {
    margin: 10px 0px;
}

#uw-signin-wrapper .signin-form .card .card-body .btn {
    background-color: var(--primary-dark);
    display: block;
    color: var(--text-white);
    width: 100%;
    padding: 10px 10px;
}

input:focus,
input.form-control:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

/* ==============================
/* ****** 17. Modals *****
=================================*/
.modal .modal-header {
    background-color: rgb(241, 241, 241);
    border: none;
    border-top: 4px solid var(--text-primary);
    justify-content: center;
}

.modal .modal-header .modal-logo img {
    width: 80px;
}

.modal .modal-body form {
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    margin: 10px 20px 10px 20px;
}

.modal .modal-body form .btn {
    background-color: var(--primary-button);
    color: rgb(240, 240, 240);
    width: 100%;
    text-align: center;
    font-weight: 300;
    padding: 8px 15px;
}

::placeholder {
    font-weight: 300;
    font-size: 14px;
}

.modal-footer p {
    display: block;
    text-align: center !important;
    margin-right: 20%;
}

.social-login-wrapper {
    text-align: center;
}

.social-login-wrapper p {
    margin: 10px 0px;
}

.social-login-wrapper .social-login a {
    color: var(--text-white);
    margin: 5px 5px;
    font-weight: 300;
    padding: 5px 15px;
}

.social-login-wrapper .social-login .btn-facebook {
    background-color: var(--sky-blue);
}

.social-login-wrapper .social-login .btn-google {
    background-color: var(--red);
}

/* ==============================
/* ****** 18. Projects *****
=================================*/
.uw-projects {
    padding: 50px 0px;
}

#uw-projects-banner-wrapper {
    background-image: url(../images/template/home-default/projects-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    color: var(--text-white);
    margin-top: -10px;
}

#uw-projects-banner-wrapper .projects-content h1 {
    color: var(--text-white);
    font-size: 36px;
    line-height: 1.4;
}

#uw-projects-banner-wrapper .projects-content form input[type="text"] {
    height: 50px;
    border-radius: 25px;
}

#uw-projects-banner-wrapper .projects-content form .form-group {
    position: relative;
}

#uw-projects-banner-wrapper .projects-content form button {
    position: absolute;
    background-color: var(--text-primary);
    color: var(--text-white);
    font-size: 15px;
    padding: 5px 15px;
    border-radius: 25px;
    right: 3%;
    top: 17%;
}

#uw-projects-banner-wrapper .projects-content .uw-projects-buttons {
    margin-top: 15px;
}

#uw-projects-banner-wrapper .projects-content .uw-projects-buttons a {
    margin-right: 4px;
    padding: 3px 10px;
    font-size: 13px;
    border-radius: 25px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    /* margin: 50px 0px 20px 0px; */
    margin-bottom: 30px;
}

.projects-header h2 {
    font-size: 20px;
    color: var(--heading-color);
}

.projects-header h6 a {
    color: var(--primary-dark);
    font-weight: 400;
}


.uw-projects-wrapper .card {
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    margin-bottom: 20px;
}

.uw-projects-wrapper.category-projects .card {
    margin-bottom: 40px;
}

.uw-projects-wrapper .card .card-header {
    padding: 0px;
    position: relative;
}

.uw-projects-wrapper .card .card-header img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.uw-projects-wrapper .card .card-header .project-author {
    background-color: var(--bg-white);
    border: none;
    width: max-content;
    padding: 3px 10px;
    border-radius: 25px;
    /* box-shadow: 0 1px 6px rgba(57, 73, 76, .35); */
    position: absolute;
    bottom: 10%;
    left: 4%;
}

.recommended-slider.uw-projects-wrapper .card .card-header .project-author a {
    display: flex;
    flex-direction: row;
}

.recommended-slider.uw-projects-wrapper .card .card-header .project-author a img {
    margin-right: 5px;
}

.recommended h2 {
    font-size: 18px;
}

.uw-projects-wrapper .card .card-header .project-author a {
    color: var(--heading-color);
    font-weight: 500;
}

.uw-projects-wrapper .card .card-header .project-favorite {
    position: absolute;
    top: 10%;
    right: 8%;
}

.uw-projects-wrapper .card .card-header .project-favorite i {
    font-size: 18px;
    color: var(--dark-grey);
}

.uw-projects-wrapper .card .card-body .card-badges {
    display: flex;
    justify-content: space-between;
}

.uw-projects-wrapper .card .card-body .card-badges span {
    background-color: var(--orange);
    color: var(--text-white);
    padding: 2px 10px;
    border-radius: 25px;
    font-size: 13px;
}

.uw-projects-wrapper .card .card-body .card-badges span.status {
    background-color: transparent;
    border: 1px solid var(--primary-button);
    color: var(--text-primary);
}

.recommended-slider.uw-projects-wrapper .card .card-body .project-delivery .badges {
    display: flex;
    flex-direction: row;
}

.uw-projects-wrapper .card .card-header .project-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.uw-projects-wrapper .card .card-body {
    padding: 20px 15px;
}

.uw-projects-wrapper .card .card-body .project-name h6 {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
}

.uw-projects-wrapper .card .card-body .project-name h6 a {
    color: var(--heading-color);
}

.uw-projects-wrapper .card .card-body .project-delivery {
    margin-top: 15px;
    color: var(--body-color);
    display: flex;
    justify-content: space-between;
}

.uw-projects-wrapper .card .card-body .project-delivery .badges a {
    padding: 0px 3px;
}

.uw-projects-wrapper .card .card-body .project-delivery .badges a img {
    width: 20px;
    height: 20px;

}

.uw-projects-wrapper .card .card-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 15px;
    color: var(--heading-color);
}

.uw-projects-wrapper .card .card-footer .project-rating i {
    color: var(--primary-dark);
}

/* ==============================
/* ****** 19. Project Details *****
=================================*/
.uw-sticky-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
}

.uw-sticky-menu {
    border-bottom: 1px solid #dadbdd;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99;
}

.uw-sticky-menu .right ul li:last-child i {
    color: var(--text-primary);
}

.uw-sticky-menu .left ul li {
    margin: 0 20px 0 0px;
    position: relative;
}

.uw-sticky-menu .left ul li.selected:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--text-primary);
    bottom: -1px;
}

.uw-sticky-menu .left ul li a {
    font-size: 13px;
    line-height: 53px;
    color: #95979d;
}

.uw-sticky-menu .left ul li.selected a {
    color: #222325;
    cursor: default;
}

.uw-sticky-menu .right ul li span {
    height: 30px;
    border: 1px solid #c5c6c9;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    padding: 0 10px 0 8px;
    font-size: 13px;
}

.uw-sticky-menu .right ul li span i {
    color: #b5b6ba;
}

.uw-sticky-menu.filter-options {
    border-bottom: none;
    position: -webkit-sticky;
    position: sticky;
    min-height: 67px;
    z-index: 99999999;
    top: 0;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.uw-sticky-menu.filter-options ul li {
    text-align: right;
    align-items: center;
    display: flex;
}

.uw-sticky-menu.filter-options ul li+li {
    margin-left: 32px;
}

.uw-sticky-menu.filter-options ul li h5 {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: #62646a;
}

.collect-count {
    font-size: 13px;
    line-height: 28px;
    color: #222325;
    padding: 0 10px;
    margin-left: 13px;
    position: relative;
    display: inline-block;
    border: 1px solid #dadbdd;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.collect-count::before {
    z-index: 2;
    border-width: 8px 9px 8px 0;
    border-color: transparent #dadbdd transparent transparent;
    top: 6px;
    left: -9px;
    content: "";
    position: absolute;
    border-style: solid;
}

.collect-count::after {
    z-index: 3;
    border-width: 6px 8px 6px 0;
    border-color: transparent #fff transparent transparent;
    top: 8px;
    left: -8px;
    content: "";
    position: absolute;
    border-style: solid;
}

.uw-project-page {
    background-color: #f1f2f4;
}

.uw-project-page .breadcrumb {
    background: none;
    padding: 0 0 10px;
    margin: 0;
}

.uw-project-page .breadcrumb li,
.uw-project-page .breadcrumb li a {
    color: #4a73e8;
    font-size: 14px;
}

.uw-project-page h2 {
    font-size: 24px;
    padding: 0 0 16px;
    margin: 0;
    font-weight: 700;
}

.uw-project-page .right .nav-tabs {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #ffffff;
    border-bottom: none;
    overflow: hidden;
    margin-bottom: 12px;
}

.uw-project-page .right .sticky {
    top: 86px;
    position: sticky;
}

.uw-project-page .right .nav-tabs li {
    flex: 1;
}

.uw-project-page .right .nav-tabs li a.active {
    background: #fff;
    color: var(--text-primary);
    border-bottom: 3px solid var(--text-primary);
}

.uw-project-page .right .nav-tabs li a {
    background-color: #fafafa;
    font-size: 16px;
    font-weight: 700;
    color: #7a7d85;
    border-bottom: 3px solid #f1f2f5;
    text-align: center;
    border-left: none;
    padding: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    cursor: pointer;
    display: inline-block;
}

.uw-project-page .right .tab-content {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #ffffff;
    padding: 25px;
}

.uw-project-page .right .tab-content h3 {
    display: flex;
    justify-content: space-between;
    min-height: 48px;
}

.uw-project-page .right .tab-content h3 b {
    font-size: 16px;
}

.uw-project-page .right .tab-content h3 span {
    font-size: 20px;
}

.uw-project-page .right .tab-content p {
    word-break: break-word;
    font-size: 14px;
    line-height: 140%;
    margin-top: 10px;
    margin-bottom: 40px;
}

.uw-project-page .right .tab-content .delivery {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.uw-project-page .right .tab-content .delivery i {
    font-size: 16px;
    padding-right: 8px;
}

.uw-project-page .right .tab-content .features {
    list-style: none;
    margin: 0 0 20px;
}

.uw-project-page .right .tab-content .features li.included {
    color: #62646a;
}

.uw-project-page .right .tab-content .features li.included i {
    color: var(--text-primary);
}

.uw-project-page .right .tab-content .features li {
    font-size: 14px;
    font-weight: 400;
    color: #95979d;
}

.uw-project-page .right .tab-content .features li i {
    padding-right: 12px;
    color: #dadbdd;
}

.uw-project-page .right .tab-content button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 600;
    background: var(--text-primary);
    background: -webkit-linear-gradient(legacy-direction(to right), var(--text-primary) 0%, #1dc8cc 100%);
    background: -webkit-gradient(linear, left top, right top, from(var(--text-primary)), to(#1dc8cc));
    background: -webkit-linear-gradient(left, var(--text-primary) 0%, #1dc8cc 100%);
    background: -o-linear-gradient(left, var(--text-primary) 0%, #1dc8cc 100%);
    background: linear-gradient(to right, var(--text-primary) 0%, #1dc8cc 100%);
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    width: 100%;
    color: #fff;
}

.uw-project-page .left .slider {
    margin: 0 0 40px;
}

.uw-project-page .left h3 {
    font-size: 20px;
    padding-bottom: 25px;
    font-weight: 700;
    margin: 0;
}

.uw-project-page .left .description p {
    font-size: 15px;
    color: #62646a;
}

.uw-project-page .left ul.metadata {
    display: flex;
    padding-top: 20px;
    border-top: 1px solid #dadbdd;
    margin: 0 0 80px;
}

.uw-project-page .left ul.metadata li {
    list-style: none;
    width: 33%;
    padding-right: 20px;
}

.uw-project-page .left ul.metadata li p {
    color: #95979d;
    margin: 0;
}

.uw-project-page .left ul.metadata li ul {
    display: flex;
}

.uw-project-page .left ul.metadata li ul li {
    width: auto;
    color: #62646a;
}

.uw-project-page .profile-card .right {
    flex: 1;
}

.uw-project-page .profile-card .right .user-info {
    padding-left: 12px;
}

.uw-project-page .profile-card .right .user-info i {
    color: var(--orange);
}

.uw-project-page .profile-card .right .user-info .total-rating-out-five {
    color: #62646a;
    padding-left: 10px;
    font-weight: 700;
    font-size: 12px;
    padding-right: 5px;
}

.uw-project-page .profile-card .right .user-info .total-rating {
    color: #95979d;
    font-size: 12px;
}

.uw-project-page .profile-card .right .user-info a {
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    font-size: 13px;
    margin-top: 9px;
    transition: 0.6s;
    background: var(--text-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.uw-project-page .profile-card .right .user-info a:hover {
    background: #7a7d85;
    color: var(--text-white);
    transition: 0.6s;
}

.uw-project-page .stats-desc {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #ffffff;
    margin-top: 24px;
    padding: 25px;
    margin-bottom: 64px;
}

.uw-project-page .stats-desc .user-stats {
    display: flex;
    padding-bottom: 25px;
    border-bottom: 1px solid #dadbdd;
}

.uw-project-page .stats-desc .user-stats li {
    display: flex;
    flex-flow: column;
    flex: 1;
}

.uw-project-page .stats-desc .seller-desc {
    padding-top: 12px;
}

.uw-project-page .stats-desc .inner {
    font-size: 14px;
    color: #62646a;
    line-height: 23px;
}

.uw-project-page .stats-desc .inner span {
    display: inline-block;
    margin: 20px 0 0;
}

.uw-project-page .faq {
    margin-top: 64px;
}

.faq .accordion {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #ffffff;
    overflow: hidden;
}

.uw-project-page .faq .card {
    border: none;
}

.uw-project-page .faq .card .card-header {
    display: flex;
    background: none;
    border: none;
    padding: 0px;
}

.uw-project-page .faq .card .card-header h2 {
    padding: 0;
    width: 100%;
}

.uw-project-page .faq .card .card-header h2 button {
    width: 100%;
    text-align: left;
    padding: 15px 25px;
    font-weight: 600;
    text-decoration: none;
    color: #62646a;
    border: none;
    vertical-align: top;
    border-radius: 0px;
    box-shadow: none !important;
    outline: none !important;
}

.uw-project-page .faq .card {
    border-bottom: 1px solid #dadbdd;
    border-radius: 0;
}

.uw-project-page .faq .card .card-body {
    padding: 0 25px 25px 25px;
}

.uw-project-page .faq .card:last-child {
    border-bottom: none;
}

.faqs h2 {
    line-height: 120%;
    padding-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #222325;
    text-align: center;
}

.faqs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
}

.faqs ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 45%;
    padding-bottom: 20px;
    list-style: none;
}

.faqs ul li h3 {
    font-size: 15px;
    font-weight: 600;
}

.faqs ul li p {
    color: #999;
    font-size: 15px;
    padding-top: 5px;
}

.uw-project-page .tags {
    padding-top: 60px;
}

.uw-project-page .tags ul li {
    margin: 0 10px 10px 0;
}

.uw-project-page .tags ul li a {
    background: #fafafa;
    padding: 7px 12px;
    font-weight: 400;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    color: #95979d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.uw-project-page.second .left .seller-profile h3 {
    color: #555;
    font-size: 14px;
    font-weight: 700;
}

.uw-project-page.second .left .seller-profile p {
    font-size: 14px;
    margin: 0;
}

.uw-project-page.second .recommended {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.uw-project-page.second .right h2 {
    color: #222325;
    margin: 0 0 20px;
    font-size: 20px;
    text-transform: capitalize;
}

.uw-project-page.second .right .review-list .left {
    flex: 1;
    max-width: max-content;
}

.uw-project-page.second .right .review-list ul li {
    padding: 0 0 10px;
    margin: 0 0 30px;
}

.seller-overview .user-info .star-rating-s15-wrapper .star-rating-s15,
.uw-project-page .profile-card .right .user-info .star-rating-s15 {
    background-position: top left, top left 19px, top left 38px, top left 57px, top left 76px;
}

.uw-project-page.best-selling {
    padding: 0;
}

.uw-project-page.best-selling .view_slider.recommended {
    background: transparent;
    border: none;
    margin-top: 0;
}

.seller-overview .user-info {
    border-left: 1px solid #c5c6c9;
    margin: 0 10px;
    padding: 0 5px;
}

.seller-overview .user-info .user-info-rating {
    border-right: 1px solid #c5c6c9;
    padding-right: 10px;
    margin-right: 10px;
}

.seller-overview .user-info .user-info-rating i {
    color: var(--orange);
}

.seller-overview .user-info .total-rating-out-five {
    font-weight: 700;
    color: var(--orange);
    padding: 0 6px;
}

.seller-overview .user-info .total-rating {
    font-size: 14px;
    color: #62646a;
}

.seller-overview .orders-in-queue {
    color: #95979d;
    font-size: 14px;
}

.profile-card .user-profile-image {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    align-items: center;
}

.user-profile-image label {
    margin: 0;
    width: 32px;
    height: 32px;
}

.user-profile-image label img {
    border-radius: 50%;
}

.profile-card .user-profile-image label img {
    border-radius: 50%;
    width: 85px;
    height: 85px;
    margin: 0 11px 0 0px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 6px;
}

.user-profile-image .profile-name {
    padding-left: 12px;
    display: flex;
    align-items: center;
}

.user-profile-image .profile-name a {
    font-size: 14px;
    font-weight: 700;
    color: #0e0e0f;
    padding-right: 5px;
}

.user-profile-image .seller-level {
    font-size: 14px;
    color: #62646a;
}

.profile-card .user-profile-image .profile-name {
    flex-direction: column;
    align-items: start;
}

.profile-card .user-profile-image label.profile-pict {
    width: auto;
    height: auto;
}

.profile-card .user-profile-image .profile-name .seller-link {
    color: #222326;
    font-size: 16px;
    font-weight: 700;
}

.profile-card .user-profile-image .profile-name .seller-level {
    font-size: 13px;
    margin-bottom: 7px;
}

.seller-card .user-profile-image {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.seller-card .user-profile-image .user-pict {
    width: 90px;
    height: 90px;
    overflow: visible;
    border-radius: 50%;
    margin: 34px 0 0 0;
}

/* 19.1 Responsive Design  */

@media(max-width:1024px) {

    .sidenav,
    .submenu,
    .search a.green-btn,
    .uw-sticky-menu,
    .uw-project-page .breadcrumb {
        display: none;
    }

    .review-section,
    .review-list {
        display: none;
    }

    .uw-project-page {
        padding: 0;
    }

    .seller-overview {
        flex-wrap: wrap;
    }

    .seller-overview .user-info {
        margin-left: 40px;
        border-left: none;
    }

    .uw-project-page .left ul.metadata {
        flex-flow: column;
    }

    .uw-project-page .left ul.metadata li {
        width: 100%;
    }

    .uw-project-page .left ul.metadata li:first-child {
        margin-bottom: 10px;
    }

    .profile-card .user-profile-image {
        flex-flow: column;
        align-items: center;
    }

    .uw-project-page .profile-card .right {
        text-align: center;
        width: 100%;
    }

    .profile-card .user-profile-image .profile-name {
        align-items: center;
    }

    .uw-project-page .profile-card .right .user-info .user-info-rating {
        justify-content: center;
    }

    .uw-project-page .profile-card .right .user-info a {
        width: 100%;
    }

    .uw-project-page .profile-card .right .user-info {
        padding: 0;
    }

    .uw-project-page .stats-desc .user-stats li {
        width: 50%;
        flex: auto;
        margin-bottom: 10px;
    }

    .uw-project-page .stats-desc .user-stats {
        flex-wrap: wrap;
    }

    .table-package {
        display: none;
    }

    .uw-project-page .tags ul {
        flex-wrap: wrap;
    }
}


/* 19.2 Reviews */

.review-section h4 {
    font-size: 20px;
    color: #222325;
    font-weight: 700;
}

.review-section .stars-counters tr .stars-filter.fit-button {
    padding: 6px;
    border: none;
    color: var(--text-primary);
    text-align: left;
}

.review-section .fit-progressbar-bar .fit-progressbar-background {
    position: relative;
    height: 8px;
    background: #efeff0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    ;
    border-radius: 999px;
}

.review-section .stars-counters tr .star-progress-bar .progress-fill {
    background-color: var(--orange);
}

.review-section .fit-progressbar-bar .progress-fill {
    background: var(--text-primary);
    background-color: var(--text-primary);
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    border-radius: 999px;
}

.review-section .fit-progressbar-bar {
    display: flex;
    align-items: center;
}

.review-section .stars-counters td {
    white-space: nowrap;
}

.review-section .stars-counters tr .progress-bar-container {
    width: 100%;
    padding: 0 10px 0 6px;
    margin: auto;
}

.review-section .stars-counters td.star-num {
    color: var(--text-primary);
}

.review-section {
    border-bottom: 1px solid #dadbdd;
    padding-bottom: 24px;
    margin-bottom: 34px;
    padding-top: 64px;
}

.review-section select,
.review-section .select2-container {
    width: 188px !important;
    border-radius: 3px;
}

.review-section .header-stars {
    display: flex;
    margin-bottom: 5px;
    justify-content: space-between;
}

.review-section .header-stars li {
    font-size: 14px;
    font-weight: 500;
    color: #62646a;
}

.review-section span.star-rating-s15 {
    width: 15px;
    top: 1px;
    position: relative;
    margin-right: 5px;
}

.review-section .total-rating-out-five {
    color: var(--orange);
    font-weight: 700;
    margin-right: 5px;
    font-size: 16px;
}

.ranking h6 {
    font-weight: 600;
    padding-bottom: 16px;
}

.ranking li {
    display: flex;
    justify-content: space-between;
    color: #95979d;
    padding-bottom: 8px;
}

.ranking li>span {
    color: #62646a;
    white-space: nowrap;
    margin-left: 12px;
}

.review-list ul li .left span {
    width: 32px;
    height: 32px;
    display: inline-block;
}

.review-list ul li .left {
    flex: none;
    max-width: none;
    margin: 0 10px 0 0;
}

.review-list ul li .left span img {
    border-radius: 50%;
}

.review-list ul li .right h4 {
    font-size: 16px;
    margin: 0;
    display: flex;
}

.review-list ul li .right h4 .gig-rating {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: var(--orange);
}

.review-list ul li .right h4 .gig-rating svg {
    margin: 0 4px 0 0px;
}

.review-list ul li {
    border-bottom: 1px solid #dadbdd;
    padding: 0 0 30px;
    margin: 0 0 30px;
}

.review-list ul li .right {
    flex: auto;
}

.review-list ul li .review-description {
    margin: 20px 0 0;
}

.review-list ul li .review-description p {
    font-size: 14px;
    margin: 0;
}

.review-list ul li .publish {
    font-size: 13px;
    color: #95979d;
}

/* 19.3 Package Table */
.table-package table {
    width: 100%;
    font-size: 14px;
    line-height: 21px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 64px;
}

.table-package table tr th {
    color: #7a7d85;
    font-weight: 400;
    text-align: left;
    padding: 12px 16px;
    white-space: nowrap;
}

.table-package table td {
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
}

.table-package table tr.package-type td {
    padding-top: 24px;
    position: relative;
}

.table-package table tr.package-type .type {
    font-size: 19px;
    line-height: 26px;
    display: block;
    padding-bottom: 16px;
}

.table-package table tr:nth-child(2n+3) {
    background-color: #fafafa;
}

.table-package table tr.package-type .title {
    text-transform: uppercase;
    font-size: 12px;
    padding-bottom: 8px;
}

.table-package table tr.description td {
    padding-bottom: 24px;
    padding-top: 15px;
}

.table-package table .description td,
.table-package table tr.package-type td {
    text-align: left;
}

.table-package table col {
    border-right: 1px solid #efeff0;
}

.table-package table .fake-radio-wrapper {
    display: inline-block;
    text-align: left;
    padding: 16px 0;
}

.table-package table .fake-radio-wrapper .fake-radio {
    display: block;
    font-size: 14px;
    color: #62646a;
    cursor: pointer;
    position: relative;
}

.table-package table .fake-radio-wrapper .fake-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    top: -20px;
    left: -20px;
}

.table-package table .fake-radio-wrapper .fake-radio input[type="radio"]:checked+.radio-img {
    background-position: -100px -150px;
}

.table-package table .fake-radio-wrapper .fake-radio .radio-img {
    background: transparent url(../images/radio.html) no-repeat -125px -150px;
    width: 16px;
    height: 16px;
    float: left;
    margin-right: 8px;
    margin-top: 2px;
}

.table-package table .fake-radio-wrapper .fake-radio .faster-price {
    padding-left: 24px;
}

.table-package table tr.select-package td {
    padding: 12px 16px;
}

.table-package table tr.select-package td button {
    background: var(--text-primary);
    background: -webkit-linear-gradient(legacy-direction(to right), var(--text-primary) 0%, #1dc8cc 100%);
    background: -webkit-gradient(linear, left top, right top, from(var(--text-primary)), to(#1dc8cc));
    background: -webkit-linear-gradient(left, var(--text-primary) 0%, #1dc8cc 100%);
    background: -o-linear-gradient(left, var(--text-primary) 0%, #1dc8cc 100%);
    background: linear-gradient(to right, var(--text-primary) 0%, #1dc8cc 100%);
    padding: 12px 24px;
    color: #fff;
    width: 100%;
    cursor: pointer;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

.table-package table tr.select-package td button:hover {
    background: #1dc8cc;
    background: -webkit-linear-gradient(legacy-direction(to right), #1dc8cc 0%, var(--text-primary) 100%);
    background: -webkit-gradient(linear, left top, right top, from(#1dc8cc), to(var(--text-primary)));
    background: -webkit-linear-gradient(left, #1dc8cc 0%, var(--text-primary) 100%);
    background: -o-linear-gradient(left, #1dc8cc 0%, var(--text-primary) 100%);
    background: linear-gradient(to right, #1dc8cc 0%, var(--text-primary) 100%);
}

.table-package table tr td.boolean-pricing-factor.included::after {
    color: var(--text-primary);
}

.table-package table tr td.boolean-pricing-factor::after {
    content: "✓";
    color: #dadbdd;
    font-family: FontAwesome;
    font-size: 24px;
    font-weight: 700;
}

/* ==============================
/* ****** Slick Slider *****
=================================*/
.slick-slider-single.arrows-main .slick-arrow {
    float: right;
    position: absolute;
    top: 45%;
    z-index: 99;
    border: none;
}

.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-button);
    border-radius: 50%;
    color: var(--text-primary);
    border: none;
    outline: none;
    padding-top: 5px;
}

.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-button);
    border-radius: 50%;
    color: var(--text-primary);
    border: none;
    outline: none;
    padding-top: 5px;
}

.slick-slider-single .slick-arrow.slick-next:hover {
    outline: none;
}

.slick-next::before {
    content: "⇆";
    color: var(--text-white);
    font-size: 20px;
    font-weight: 700;
}

.slick-prev::before {
    content: "⇆";
    color: var(--text-white);
    font-size: 20px;
    font-weight: 700;
}

.recommended-slider .slick-arrow {
    bottom: auto;
    top: -51px;
    width: 30px;
    height: 30px;
}

.recommended-slider .slick-arrow.slick-prev {
    right: 32px;
    left: auto;
}

.recommended-slider .card {
    margin-right: 20px !important;
}

.slider-nav .item-slick img {
    width: 170px;
    border-radius: 4px;
    margin: 0 6px 0 0px;
}

.view_slider.recommended {
    position: relative;
}

.recommended .inner-slider {
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0px 0px 4px 4px;
    background-color: #ffffff;
    margin-bottom: 5px;
}

.p-list-two .recommended .inner-slider {
    margin-bottom: 30px;
}

.recommended .inner-slider .inner-wrapper {
    padding: 15px;
}

.inner-slider .seller-image {
    width: 48px;
    height: 48px;
    position: absolute;
    display: inline-flex;
    right: 15px;
    top: -24px;
}

.inner-slider .seller-image img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 5px solid #fff;
}

.inner-slider .seller-image figure {
    margin: 0;
    padding: 5px 0;
}

.recommended .inner-slider .inner-wrapper .seller-name {
    display: flex;
    flex-flow: column;
    margin-left: 0px;
    line-height: 20px;
}

.recommended .inner-slider .inner-wrapper .seller-name a {
    color: #0e0e0f;
    font-size: 15px;
    font-weight: 700;
}

.recommended .inner-slider .inner-wrapper .seller-name .level {
    color: #b2b2b2;
    font-weight: 300;
    font-size: 13px;
}

.recommended .inner-slider .inner-wrapper h3 {
    font-size: 13px;
    color: #30302F !important;
    font-weight: 300;
    margin-top: 13px;
    cursor: pointer;
    padding: 0;
    line-height: 21px;
}

.recommended .inner-slider .inner-wrapper h3:hover {
    color: var(--text-primary);
}

.recommended .inner-slider .inner-wrapper .content-info {
    padding: 12px 0 15px;
}

.recommended .inner-slider .inner-wrapper .content-info .gig-rating {
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.recommended .inner-slider .inner-wrapper .content-info .gig-rating svg {
    margin-right: 5px;
}

.recommended .inner-slider .inner-wrapper .content-info .gig-rating span {
    color: #b2b2b2;
    font-weight: 400;
    margin-left: 2px;
    font-size: 12px;
    margin: 0 0 0 3px;
}

.recommended .inner-slider .inner-wrapper .footer {
    justify-content: space-between;
    display: flex;
    border-top: 1px solid #eee;
    align-items: center;
    padding: 12px 15px;
    margin: 0px -15px -15px -15px;
}

.recommended .inner-slider .inner-wrapper .footer .fa {
    color: #b2b2b2;
}

.recommended .inner-slider .inner-wrapper .footer a {
    color: #555;
    text-transform: uppercase;
    font-size: 12px;
}

.recommended .inner-slider .inner-wrapper .footer a span {
    font-size: 16px;
}

.view_slider h3 {
    font-size: 20px;
    padding-bottom: 25px;
    font-weight: 700;
    margin: 0;
    padding-top: 0px;
}

.slider.round {
    border-radius: 34px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider.round:before {
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 23px;
    width: 23px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

@media(max-width:767px) {

    .recommended .inner-slider {
        margin-bottom: 15px;
    }

    .faqs ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .web-design-menu ul {
        text-align: center;
    }

    .web-design-menu ul li {
        margin: 0 auto 30px;
    }

    .uw-project-page.best-selling .view_slider.recommended {
        padding: 32px 0;
    }
}

.recommended-slider .slick-arrow {
    /* bottom: auto; */
    /* top: -51px; */
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    padding-top: 5px;
    border-radius: 50%;
}

.recommended-slider .slick-arrow.slick-prev {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: var(--primary-button);
    color: var(--text-white);
    border: none;
    outline: none;
    margin-right: 20px;
}

.recommended-slider .slick-arrow.slick-next {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: var(--primary-button);
    color: var(--text-white);
    border: none;
    outline: none;
}

#aniimated-thumbnials .slick-list.draggable img {
    width: 100%;
    border-radius: 4px;
}

/* Switch */
.switch input:checked+.slider {
    background-color: var(--text-primary);
}

.switch input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.switch {
    position: relative;
    display: inline-block;
    width: 57px;
    height: 30px;
    margin-bottom: 0;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* ==============================
/* ****** 21. Search *****
=================================*/

#uw-projects-search-wrapper {
    padding: 50px 0px;
    background-color: var(--light-grey-bg);
    margin-top: -10px;
}

#uw-projects-search-wrapper .search-content h1 {
    color: var(--heading-color);
    font-size: 36px;
    line-height: 1.4;
}

#uw-projects-search-wrapper .search-content form input[type="text"] {
    height: 50px;
    border-radius: 25px;
}

#uw-projects-search-wrapper .search-content form .form-group {
    position: relative;
}

#uw-projects-search-wrapper .search-content form button {
    position: absolute;
    background-color: var(--text-primary);
    color: var(--text-white);
    font-size: 15px;
    padding: 5px 15px;
    border-radius: 25px;
    right: 3%;
    top: 17%;
}

#uw-projects-search-wrapper .search-content .search-tags {
    margin-top: 15px;
}

#uw-projects-search-wrapper .search-content .search-tags a {
    margin-right: 4px;
    padding: 3px 10px;
    font-size: 13px;
    border-radius: 25px;
}

.pagination .page-item.active a {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
}

.filter-variables .filter-results-wrap .card {
    background: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: none;
}

.filter-variables .filter-results-wrap .card .card-header {
    padding: 5px 20px;
    border-radius: 25px;
}

.filter-variables .filter-results-wrap .card h2 button {
    color: var(--heading-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.filter-variables .filter-results-wrap .accordion .collapse ul {
    margin-left: 10px;
}

.filter-variables .filter-results-wrap .accordion .collapse ul li {
    line-height: 28px;
    list-style-type: "-";
    padding-left: 10px;
}

.filter-variables .filter-results-wrap .accordion .collapse ul li a {
    color: var(--heading-color);
}

.filter-heading h4 {
    font-size: 16px;
    margin-top: 55px;
}


/* ==============================
/* ****** 22. Freelancers *****
=================================*/

#uw-freelancers-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.uw-freelancers-banner h1 {
    font-size: 42px;
    line-height: 50px;
    color: var(--heading-color);
}

.uw-freelancers-banner h1 span {
    color: var(--text-primary);
}

.uw-freelancers-banner h4 {
    color: var(--body-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
}

#uw-freelancers-wrapper .btn {
    padding: 10px 20px;
}

.freelancers {
    padding: 50px 0px;
    background-color: var(--bg-white);
}

.freelancers .sec-title {
    font-size: 20px;
}

.freelancers .card.freelance-card {
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.freelancers .card.freelance-card .author-featured {
    background-color: var(--sky-blue);
    text-align: left;
    width: max-content;
    padding: 8px 10px;
    position: absolute;
    top: 5%;
    left: 0%;
    border-top-right-radius: 10px;
}

.freelancers .card.freelance-card .author-featured h6 {
    margin: 0px;
    font-size: 10px;
    color: var(--text-white);
}

.freelancers .card.freelance-card .author-profile img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.freelancers .card.freelance-card .author-profile .seller-badge {
    position: absolute;
    top: 20px;
    left: 15px;
}

.freelancers .card.freelance-card .author-profile .seller-badge img {
    width: 40px;
    height: 40px;
}

.freelancers .card .author-info {
    margin-top: 10px;
}

.freelancers .card .author-info p {
    margin: 5px 0px;
    color: var(--heading-color);
}

.freelancers .card.freelance-card .author-info h6 a {
    color: var(--heading-color);
}

.freelancers .card.freelance-card .author-info h6 span {
    background-color: transparent;
    padding: 2px 10px;
    border-radius: 25px;
    font-size: 13px;
    margin: 0px 5px;
}

.freelancers .card.freelance-card .author-info h6 span.online {
    border: 1px solid var(--primary-button);
    color: var(--text-primary);
}

.freelancers .card.freelance-card .author-info h6 span.offline {
    border: 1px solid var(--orange);
    color: var(--orange);
}

.freelancers .card.freelance-card .author-info .rating i {
    color: var(--primary-dark);
}

.freelancers .card.freelance-card .author-info .rating .point {
    font-weight: 500;
}

.freelancers .card.freelance-card .author-skills {
    margin-top: 10px;
}

.freelancers .card.freelance-card .author-skills a {
    background-color: var(--light-grey-bg);
    padding: 3px 10px;
    border-radius: 25px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 400;
    text-decoration: none;
}

.freelancers .card.freelance-card .athour-link {
    margin-top: 10px;
}

.freelancers .card.freelance-card .athour-link a {
    padding: 5px 15px;
    font-size: 14px;
}

.top-rated-banner-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.top-rated-banner h1 {
    font-size: 38px;
    color: var(--heading-color);
    margin: 0PX;
}
.top-rated-content h4 {
    color: var(--text-primary-light);
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
}

.top-rated-banner .top-rated-img img{
    width: 350px;
}
.uw-authors.top-rated{
    background-color: var(--bg-white);
}
.top-rated-banner .uw-category-buttons a {
    padding: 0px 10px;
    background-color: var(--primary-button);
    font-size: 14px;
    font-weight: 300;
}

.top-rated-banner .uw-category-buttons span {
    color: var(--link-color);
    font-weight: 500;
    font-size: 18px;
    margin-right: 10px;
}
/* ==============================
/* ****** 23. Process *****
=================================*/

.uw-process.projects {
    padding-bottom: 50px;
}

#uw-process-header {
    background-image: url(../images/template/home-default/process-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px;
}

#uw-process-header .header-content h2 {
    color: var(--text-primary);
    font-size: 42px;
    text-align: center;
    font-weight: 700;
}

#uw-process-header .header-content h4 {
    color: var(--text-white);
    text-align: center;
    padding: 0px 100px;
    line-height: 10px;
    font-size: 20px;
    /* margin: 5px 0px; */
}

.process-header-overly-content {
    margin-top: -100px;
}

.process-header-overly-content .card {
    border-top-left-radius: 5px;
    border-top: 4px solid var(--text-primary);
    margin-bottom: 20px;
    min-height: 300px;
}

.process-header-overly-content .card,
.process-header-overly-content .card-body,
.process-header-overly-content .card-footer,
.process-header-overly-content .card-header {
    background-color: var(--bg-white);
}

.process-header-overly-content .card-header {
    padding: 25px 50px;
    text-align: center;
}

.process-header-overly-content .card-body {
    padding: 25px 20px;
    text-align: left;
}

.process-header-overly-content .card-footer {
    padding: 20px 30px;
    text-align: center;
}

.process-header-overly-content .card-footer i {
    font-size: 26px;
    margin: 0px;
    color: var(--text-primary);
}

.process-header-overly-content .card-header h2 {
    font-size: 20px;
    margin: 0px;
    line-height: 28px;
    color: var(--heading-color);
    font-weight: 700;
}

.process-header-overly-content .card-body h4 {
    font-size: 16px;
    margin: 0px;
    color: var(--heading-color);
    font-weight: 400;
    line-height: 28px;
}

.process-desc {
    margin-top: 50px;
}

.process-desc h4 {
    font-size: 18px;
    color: var(--heading-color);
    font-weight: 700;
}

.process-desc p {
    font-size: 16px;
}

.process-desc .card {
    padding: 20px;
    text-align: center;
    border: none;
}

.process-desc .card h4 {
    margin-top: 15px;
}

.process-desc span.number {
    background-color: var(--text-primary);
    color: var(--text-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 5px;
    margin: 0px auto;
}

.process-desc .team-card {
    padding: 0px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.process-desc .team-card img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.uw-project-catalog {
    background-color: var(--light-grey-bg);
    padding: 80px 0px;
}

/* ==============================
/* ****** 24. About *****
=================================*/

.uw-about-header {
    /* background-image: url(../images/template/home-default/about-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    padding: 50px 0px;
    background-color: var(--light-grey-bg);
}

.uw-about-header h4 {
    color: var(--heading-color);
    font-size: 16px;
}

.uw-about-header h2 {
    font-size: 42px;
    color: var(--heading-color);
    font-weight: 700;
}

.uw-about-header h2 span {
    color: var(--text-primary);
    font-size: 28px;
}

.uw-about-content {
    padding: 50px 0px;
}

.uw-about-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
}

.uw-about-content p {
    font-size: 16px;
}

.uw-about-content .blockquote p {
    font-style: italic;
    color: var(--heading-color);
    font-size: 14px;
}

.uw-about-content ul {
    margin-left: 10px;
}

.uw-about-content ul li {
    list-style-type: "-";
    padding-left: 10px;
    line-height: 28px;
    font-size: 16px;
}


/* ==============================
/* ****** 25. Information Page *****
=================================*/

#uw-information-page {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
    margin-top: -10px;
}

#uw-information-page .card {
    padding: 30px;
}

#uw-information-page .card p {
    color: var(--body-color);
    line-height: 26px;
}

#uw-information-page .card ul {
    margin-left: 10px;
}

#uw-information-page .card ul li {
    list-style-type: "-";
    padding-left: 10px;
    line-height: 26px;
}

#uw-information-page .card-header {
    margin: 0px;
    padding: 0px;
    background-color: var(--bg-white);
}

#uw-information-page .card-header h2 {
    color: var(--heading-color);
    font-weight: 700;
}


/* ==============================
/* ****** 26. Stories *****
=================================*/
.stories-wrapper {
    padding: 50px 0px;
}

.stories-wrapper .section-title {
    font-weight: 600;
}

.stories-wrapper h6.page-header {
    color: var(--body-color);
    font-weight: 400;
}

.stories-wrapper .page-header span {
    color: var(--primary-color);
}


.stories-wrapper .featured-stories .stories-wrap-content a {
    color: var(--text-white);
}


.stories-wrap-content .card {
    min-height: 320px;
    /* background-color: var(--secondary-color); */
    color: var(--text-white);
    margin-bottom: 20px;
}

.stories-wrap-content .card.story-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stories-wrap-content .card.story-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stories-wrap-content .card.story-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stories-wrap-content .card.story-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stories-wrap-content .card.story-5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-5.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stories-wrap-content .card.story-6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-6.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stories-wrap-content .card.story-7 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-7.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stories-wrap-content .card.story-8 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/template/home-default/blog/blog-8.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
}

.stories-wrap-content .card .card-header {
    padding: 20px 20px;
}

.stories-wrap-content .card .card-header h6 {
    font-size: 12px;
    margin: 0px;
    font-weight: 300;
}

.stories-wrap-content .card .card-body h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 32px;
}

.all-customer-stories .card {
    background-color: var(--bg-white);
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    min-height: 340px;
    margin-bottom: 20px;
}

.all-customer-stories .card .card-header {
    background-color: var(--bg-white);
}

.all-customer-stories .card .card-header h6 {
    color: var(--body-color);
}

.all-customer-stories .card .card-body h4 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.all-customer-stories .card .card-footer {
    background-color: var(--secondary-color);
}

.all-customer-stories .card .card-footer a {
    color: var(--text-primary);
    font-size: 14px;
}

#stories-details-header {
   background-color: var(--light-grey-bg);
    padding: 50px 10px;
}

#stories-details-header h6 {
    color: var(--heading-color);
    font-weight: 400;
}

#stories-details-header span {
    color: var(--text-primary);
}

#stories-details-header h2 {
    color: var(--heading-color);
    font-weight: 600;
}

.full-stories-wrapper {
    padding: 50px 0px;
}

.full-stories-wrapper .page-header-image img {
    border-radius: 10px;
    border: 2px solid var(--btn-border-white);
    margin-bottom: 30px;
}

.full-stories-wrapper h2 {
    font-weight: 600;
    font-size: 26px;
}

.full-stories-wrapper p {
    font-size: 16px;
}

.full-stories-wrapper ul {
    margin-left: 10px;
}

.full-stories-wrapper ul li {
    list-style-type: "-";
    padding-left: 10px;
    font-size: 14px;
    line-height: 1.8;
}

#articles-header {
    padding: 80px 0px;
    background-color: var(--light-grey-bg);
}

#articles-header h2 {
    font-size: 42px;
    color: var(--heading-color);
    font-weight: 700;
}

#articles-header h4 {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 28px;
}

.artcles-category {
    margin-top: 30px;
}

.artcles-category .categories-list {
    text-align: center;
}

.artcles-category .categories-list a {
    background-color: var(--light-grey-bg);
    color: var(--heading-color);
    padding: 3px 10px;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 25px;
    text-decoration: none;
}

.artcles-category .categories-list span a {
    background-color: var(--dark-grey);
    color: var(--text-white);
}

.artcles-category .categories-list a:hover {
    color: var(--text-primary-light);
}

.full-article-overlay .article-overlay-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--sky-blue);
}

.full-article-overlay .article-overlay-wrap span {
    color: var(--text-white);
}


/* ==============================
/* ****** 27. Inspirations *****
=================================*/

.uw-inspirations {
    margin: 0px;
    padding: 50px 0px;
}

.uw-inspirations h2 {
    line-height: 24px;
    font-size: 20px;
    color: var(--heading-color);
}

.uw-inspirations .card {
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;

}

.uw-inspirations .card-body {
    padding: 0px;
    position: relative;
}

.uw-inspirations .card-body img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;

}

.uw-inspirations .card-footer .media img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.uw-inspirations .card-footer .media-body h5 {
    font-size: 14px;
    color: var(--heading-color);
    margin: 0px;
}

.uw-inspirations .card-body .uw-inspiration-text {
    position: absolute;
    top: 5%;
    margin: 0 10px;
    column-fill: auto;
    padding: 8px 20px;
    border-radius: 5px;
    background-color: var(--sky-blue);
    /* background: -webkit-linear-gradient(legacy-direction(to right), var(--text-primary) 0%, #1dc8cc 70%);
    background: -webkit-gradient(linear, left top, right top, from(var(--text-primary)), to(#1dc8cc));
    background: -webkit-linear-gradient(left, var(--text-primary) 0%, #1dc8cc 70%);
    background: -o-linear-gradient(left, var(--text-primary) 0%, #1dc8cc 70%);
    background: linear-gradient(to right, var(--text-primary) 0%, #1dc8cc 70%); */
    color: var(--text-white);
}

.uw-inspirations .card-body .uw-inspiration-text h5 {
    margin: 2px 0px;
    color: var(--text-white);
}

/* ==============================
/* ****** 28. Dashboard *****
=================================*/
#dashboard-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.uw-card-widgets {
    /* padding-top: 25px;
    padding-bottom: 25px !important; */
    padding: 25px 5px 25px 5px;
    background-color: var(--bg-white);
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
    --webkit-box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
}

.uw-card-widgets .uw-card-widget-body {
    margin: 0px;
}

.uw-card-widgets .widget-img img {
    width: 60px;
}

.uw-card-widgets .widget-info {
    margin: 10px 0px;
}

.uw-card-widgets .widget-info h5 {
    font-size: 14px;
    margin: 0px;
    padding: 6px 0px;
}

.uw-card-widgets .uw-card-widget-body .widget-info h3 {
    font-size: 26px;
    margin: 0px;
    color: var(--orange);
}

.message-medias ul li img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.message-medias ul li h5 {
    font-size: 18px;
}

.message-medias ul li a {
    color: var(--sky-blue);
}

.uw-dashboard-links .accordion {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: 5px;
}

.uw-dashboard-links .accordion button {
    font-size: 15px;
}
.uw-dashboard-links .accordion .card {
    border: none;
    border-radius: 5px;
    margin: 10px 0px;
}

.uw-dashboard-links .accordion .card.dasboard {
    background-color: var(--primary-button);
}
.uw-dashboard-links .accordion .card .card-header h2{
    font-size: 15px;
    padding: 8px 0px;
}
.uw-dashboard-links .accordion .card .card-header h2 a{
    color: var(--heading-color);
    font-weight: 600;
}
.uw-dashboard-links .accordion .card.dasboard h2 a {
    color: var(--text-white);
}

.uw-dashboard-links .accordion .card.dasboard .card-header h2 a:hover{
    color: var(--text-white);
}
.uw-dashboard-links .accordion .card h2 button {
    font-weight: 600;
    color: var(--heading-color);
}

.uw-dashboard-links .accordion .card h2 .btn-link:hover {
    color: var(--text-primary);
    text-decoration: none;
}
.uw-dashboard-links .accordion .card .card-header h2 a:hover{
    color: var(--text-primary);
    text-decoration: none;
}
.uw-dashboard-links .accordion .card h2 button a {
    color: var(--heading-color);
}

.uw-dashboard-links .accordion .card .card-header {
    padding: 5px 10px;
}

.uw-dashboard-links .accordion .card .card-header .btn a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.uw-dashboard-links .accordion .card .card-body a {
    display: block;
    margin: 5px 0px;
    color: var(--body-color);
}

.uw-dashboard-links .accordion .card .card-body a::before {
    content: "+";
    margin-right: 5px;
}

.uw-dashboard-links .accordion .card .card-body a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.uw-dashboard-links .contacts {
    background-color: var(--bg-white);
    padding: 25px 20px;
    border-radius: 5px;
}

.uw-dashboard-links .contacts .nav-tabs .nav-link.active {
    font-weight: 700;
    color: var(--text-primary);
}

.uw-dashboard-links .contacts .nav-tabs .nav-link {
    color: var(--heading-color);
}

.uw-dashboard-links .profile {
    background-color: var(--bg-white);
    padding: 20px;
    margin-bottom: 20px;
}

/* .uw-dashboard-links .profile .profile-head {
    display: inline-flex;
} */
.uw-dashboard-links .profile .profile-head {
    text-align: center;
}

.uw-dashboard-links .profile .profile-links .uw-db-link-icons {
    margin: 5px 0px;
}

.uw-dashboard-links .profile .profile-links .uw-db-link-icons i {
    color: var(--text-primary);
}

.uw-dashboard-links .profile .profile-links .uw-db-link-icons span.heading {
    color: var(--heading-color);
    font-weight: 500;
}

.uw-dashboard-links .profile .profile-head img {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    object-fit: cover;
    --webkit-box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    box-shadow: 0 1px 6px rgba(57, 73, 76, .35);
    margin-bottom: 20px;
}

.uw-dashboard-links .message-medias .media-body h5 {
    font-size: 16px;
}

/* .uw-dashboard-widgets {
    padding: 30px 0px;
} */

.uw-dashboard-messages {
    padding: 30px 0px;
}

.uw-dashboard-messages h2 {
    font-size: 22px;
}

.uw-dashboard-messages .card {
    padding: 20px 20px;
    overflow-y: auto;
    height: 500px;
    min-height: 500px;
}

.uw-dashboard-messages .card .media img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.uw-dashboard-messages .card .media .media-body h5,
.uw-dashboard-messages .card .media .media-body span,
.uw-dashboard-messages .card .media .media-body p {
    margin: 2px;
}

.uw-dashboard-messages .card .media .media-body h5 {
    font-size: 16px;
}

.uw-dashboard-messages .card .media .media-body span {
    color: var(--sky-blue);
    font-weight: 400;
}

.uw-dashboard-messages .card .media .media-body .delete-notify a {
    color: var(--red);
}

.uw-dashboard-messages a.btn {
    padding: 5px 20px;
}

/* ==============================
/* ****** 29. User Profile *****
=================================*/
.uw-user-profile-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 10px;
}

.uw-user-profile-wrapper .user-nav-links {
    margin-bottom: 30px;
}

.uw-user-profile-wrapper .recommended {
    margin-bottom: 30px;
}

.uw-user-profile-wrapper .recommended .card {
    box-shadow: none;
}

.uw-user-profile-wrapper .recommended .card .card-footer {
    background-color: var(--bg-white);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.uw-user-profile-wrapper .user-nav-links .card {
    padding: 20px;
}

.uw-user-profile-wrapper .user-nav-links .card .profile {
    text-align: center;
}

.uw-user-profile-wrapper .user-nav-links .card .profile img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.uw-user-profile-wrapper .user-nav-links .card .profile a {
    color: var(--text-primary);
}

.uw-user-profile-wrapper .user-nav-links .card .dashboard-links {
    margin-top: 10px;
}

.uw-user-profile-wrapper .user-nav-links .card .dashboard-links a {
    display: block;
    margin: 5px 0px;
    color: var(--heading-color);
    font-weight: 500;
}

.uw-user-profile-wrapper .user-nav-links .card .dashboard-links a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.uw-user-profile-wrapper .user-nav-links .card .profile h5 {
    font-size: 18px;
}

.uw-user-profile-wrapper .user-nav-links .card hr {
    margin: 0px;
}

.user-slider .carousel-inner .carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.selling .card {
    text-align: center;
    padding: 20px;
}

.selling .card img {
    width: 60px;
    margin-bottom: 15px;
}

.selling .card h2 {
    font-size: 18px;
    margin: 0px;
}

.selling .card p {
    margin-top: 20px;
}

.selling .card .btn {
    padding: 10px 0px;
}

.uw-projects .projects-header {
    display: flex;
    justify-content: space-between;
    /* margin: 50px 0px 20px 0px; */
    margin-bottom: 30px;
}

.user-slider {
    margin-bottom: 30px;
}

.buyer-requests .header {
    display: flex;
    justify-content: space-between;
    /* margin: 50px 0px 20px 0px; */
    margin-bottom: 0px;
    margin-top: 30px;
}

.buyer-requests h2 {
    font-size: 20px;
    color: var(--heading-color);
}

.buyer-requests a {
    color: var(--primary-dark);
    font-weight: 400;
}

.buyer-requests .requests-table tbody img {
    width: 50px;
    margin-right: 20px;
}

.buyer-requests .requests-table tbody .buyer-info {
    display: flex;
}

.buyer-requests .requests-table tbody .buyer-info p {
    font-size: 15px;
}

.buyer-requests .requests-table a.btn-load {
    border: 1px solid var(--primary-button);
    padding: 10px 20px;
}

/* ==============================
/* ****** 30. Customer Support *****
=================================*/
.uw-customer-support-wrapper {
    padding: 50px 0px;
    background-color: var(--light-grey-bg);
}

.uw-customer-support-wrapper form .btn {
    padding: 10px 20px;
    font-size: 14px;
    /* margin-top: 20px; */
}

/* ==============================
/* ****** 31. Start Selling *****
=================================*/
.selling-action {
    background-color: var(--light-grey-bg);
    padding: 80px 0px;
    text-align: center;
}

.selling-action a.btn {
    padding: 10px 20px;
}

/* ==============================
/* ****** 32. Create Proposal *****
=================================*/
.create-proposal-section {
    padding: 50px 0px;
    background-color: var(--light-grey-bg);
}

.create-proposal-section .card {
    padding: 30px 30px;
}

#heading {
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: normal
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: var(--bg-white);
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

#msform fieldset .card {
    background-color: var(--light-grey-bg);
}

#msform fieldset .card .accordion .btn {
    padding: 5px 10px;
}

.form-card {
    text-align: left;
}

.form-card .form-buttons {
    display: inline-block;
}

#msform fieldset:not(:first-of-type) {
    display: none
}

fieldset small.text-primary {
    color: var(--text-primary) !important;
}

#msform .action-button {
    width: 100px;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: var(--primary-button-hover);
    color: var(--text-white);
    transition: all 0.3s ease;
}

#msform .action-button-previous {
    width: 100px;
    background: var(--light-secondary-color);
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 0px 5px 10px 0px;
    color: var(--text-white);
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background: var(--light-secondary-color);
}

.card {
    z-index: 0;
    border: none;
    position: relative;
}

.fs-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: bold;
    text-align: left;
}

.purple-text {
    color: var(--text-primary);
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: var(--light-grey-bg);
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: var(--light-grey-bg);
    text-align: left;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: var(--text-primary);
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 16%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #overview:before {
    /* font-family: FontAwesome; */
    content: "1";
    font-size: 14px;
}

#progressbar #delivery:before {
    /* font-family: FontAwesome; */
    content: "2"
}

#progressbar #pricing:before {
    /* font-family: FontAwesome; */
    content: "3"
}

#progressbar #description:before {
    /* font-family: FontAwesome; */
    content: "4"
}

#progressbar #gallery:before {
    /* font-family: FontAwesome; */
    content: "5"
}

#progressbar #approval:before {
    /* font-family: FontAwesome; */
    content: "6"
}

#progressbar li:before {
    width: 40px;
    height: 40px;
    line-height: 35px;
    display: block;
    font-size: 16px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--text-primary);
}

@media (max-width: 768px) {
    #progressbar li strong {
        display: none;
    }
}

.progress {
    height: 13px;
    border-radius: 25px;
}

.progress-bar {
    background-color: var(--text-primary);
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.form-card .gallery {
    margin-top: 20px;
}

.form-card .gallery .pic {
    background-color: var(--light-grey-bg);
    text-align: center;
    padding: 20px;
    cursor: pointer;
}

.form-card .gallery .pic span {
    font-size: 11px;
}

/* ==============================
/* ****** 33. Messaging *****
=================================*/
.uw-messaging {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.uw-messaging .profile-info {
    padding: 10px 15px;
}

.uw-messaging .profile-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.uw-messaging .profile-info a {
    display: block;
    font-size: 18px;
    color: var(--heading-color);
    font-weight: 500;
}

.uw-messaging .message-btns i {
    font-size: 18px;
    background-color: transparent;
    margin-right: 10px;
    color: var(--primary-button);
}

.uw-messaging .list-sidebar .offer-btn {
    padding: 10px 20px;
}

.uw-messaging .list-sidebar a.btn {
    padding: 8px 20px;
}
.uw-messaging .list-sidebar ul li a{
    color: var(--body-color);
}
.uw-messaging .list-sidebar ul li a:hover{
    color: var(--text-primary);
    transition: all 0.3s ease;
}
.uw-messaging .message-btns span button {
    padding: 5px 20px;
}

.uw-messaging .uw-chat-list a {
    color: var(--heading-color);
    font-weight: 600;
}

.uw-messaging .uw-chat-list a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.uw-chat-box {
    height: 322px;
    overflow-y: scroll;
}

.uw-chat-list {
    overflow-y: auto;
    height: 463px;
    min-height: 463px;
}

.dropdown-list-image {
    position: relative;
    height: 2.5rem;
    width: 2.5rem;
}

.dropdown-list-image img {
    height: 2.5rem;
    width: 2.5rem;
}

.dropdown-list-image .status-indicator {
    background-color: #eaecf4;
    height: .75rem;
    width: .75rem;
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: .125rem solid #fff;
}

.uw-proposal-modal .modal-body .radio-wrapper img {
    width: 70px;
    margin-bottom: 10px;
}

.uw-proposal-modal .btn {
    padding: 5px 10px;
}

.icon-form-control i {
    display: flex;
    top: 0;
    bottom: 0;
    align-items: center;
    font-size: 16px;
    justify-content: center;
    width: 40px;
}

.icon-form-control .form-control {
    padding-left: 40px;
}

/* ==============================
/* ****** 34. Notifications *****
=================================*/
.customer-notifications-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.customer-notifications-wrapper .order-header {
    background-color: var(--orange);
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.customer-notifications-wrapper .order-header h5 {
    margin: 0px;
    font-size: 18px;
    color: var(--text-white);
}

.customer-notifications-wrapper h2.title {
    font-size: 22px;
}

.notifications-wrapper .card {
    padding: 10px;
}

.notifications-wrapper .card.order-details-card {
    padding: 30px;
}

.notifications-wrapper .card .order-info h6 {
    font-weight: 600;
    color: var(--heading-color);
}

.notifications-wrapper .card .order-info h6 a {
    color: var(--text-primary);
}

.notifications-wrapper .card .order-info .proposal-amount {
    margin-top: 10px;
}

.notifications-wrapper .card .order-info .proposal-amount h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.notifications-wrapper .card td a img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px;
}

.notifications-wrapper .card td a p {
    color: var(--heading-color);
    font-weight: 600;
}

.notifications-wrapper .card td .make-black {
    display: flex;
    align-items: center;
}

.notifications-wrapper .card td.action a {
    padding: 5px 10px;
}

.notifications-wrapper .card td.action a i {
    font-size: 14px;
}

.notifications-wrapper .card table {
    width: 100%;
    overflow-y: hidden;
}

.notifications-wrapper .author-card {
    margin-top: 20px;
    padding: 30px;
    position: relative;
}

.notifications-wrapper .author-card .media img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.notifications-wrapper .author-card .media {
    margin-top: 30px;
}

.notifications-wrapper .author-card .media .media-body h5 {
    margin: 0px;
    font-size: 16px;
}

.notifications-wrapper .author-card .media .media-body a {
    display: block;
    margin-top: 10px;
    color: var(--text-primary);
}

.notifications-wrapper .author-card .date-item {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--orange);
    padding: 5px 10px;
    border-bottom-right-radius: 10px;
    color: var(--text-white);
}

.notifications-wrapper .rating-card {
    margin-top: 20px;
    padding: 30px;
    text-align: center;
}

.notifications-wrapper .rating-card h2 {
    font-size: 22px;
    margin: 0px;
}

.notifications-wrapper .rating-card .star-rating i {
    font-size: 18px;
    color: var(--orange);
}

.notifications-wrapper .rating-card .btn {
    padding: 5px 10px;
}

/* ==============================
/* ****** 35. Selling *****
=================================*/
.selling-wrapper {
    padding: 50px 0px;
    background-color: var(--light-grey-bg);
}

.selling-wrapper .order-buttons {
    margin-bottom: 20px;
    display: inline-flex;
}

.selling-wrapper .order-buttons a {
    margin-right: 20px;
    padding: 5px 10px;
    font-size: 13px;
}

.selling-wrapper .selling-orders-card {
    padding: 30px;
}

.selling-wrapper .selling-orders-card td a img {
    width: 50px;
    margin-right: 10px;
}

.selling-wrapper .selling-orders-card td a.make-flex {
    display: flex;
}

.selling-wrapper .selling-orders-card td a p {
    color: var(--body-color);
}

.selling-wrapper .selling-orders-card td .btn {
    padding: 5px 10px;
    font-size: 12px;
}

.selling-orders-card .nav-item a {
    color: var(--sky-blue);
}

.selling-orders-card .nav-item a.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* ==============================
/* ****** 36. Coupons *****
=================================*/
.coupons-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.coupons-wrapper h2 {
    font-size: 22px;
}

.coupons-wrapper .card {
    padding: 30px;
}

.coupons-wrapper .card td a img {
    width: 80px;
    height: 60px;
    border: 1px solid var(--white-button);
    border-radius: 5px;
    object-fit: cover;
    margin-right: 10px;
}

.coupons-wrapper .card td a.make-flex {
    display: flex;
}

.coupons-wrapper .card td .buyer-info .customer-name {
    color: var(--heading-color);
    font-weight: 600;
}

.coupons-wrapper .card td .buyer-info .proposal-title {
    color: var(--text-primary);
    font-weight: 600;
}

.coupons-wrapper .card td .buyer-info .proposal-description {
    color: var(--body-color);
    margin-top: 10px;
}

.coupons-wrapper .card td .buyer-info .tags {
    margin-top: 10px;
}

.coupons-wrapper .card td .badge {
    padding: 5px 10px;
    margin-top: 10px;
}

.coupons-wrapper .card td.badget h6 {
    color: var(--text-primary);
    font-weight: 600;
}

.coupons-wrapper .card td.badget a {
    background-color: var(--orange);
    margin-top: 20px;
    padding: 5px 10px;
    font-size: 10px;
    color: var(--text-white);
    border-radius: 5px;
}

.coupons-wrapper .card td .buyer-info .tags span {
    background-color: var(--light-grey-bg);
    border-radius: 25px;
    padding: 5px 10px;
    font-size: 10px;
    color: var(--heading-color);
    font-weight: 500;
}

.coupons-wrapper .card td a .buyer-info p {
    margin: 0px;
}

/* ==============================
/* ****** 37. Revenue/Purcahse/Favourites/Requests/Contacts *****
=================================*/
.revenue-wrapper,
.purchases-wrapper,
.favourites-wrapper,
.requests-wrapper,
.contacts-wrapper,
.referrals-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.revenue-wrapper h2,
.purchases-wrapper h2,
.favourites-wrapper h2,
.requests-wrapper h2,
.contacts-wrapper h2,
.referrals-wrapper h2 {
    font-size: 22px;
}

.revenue-wrapper .header {
    display: flex;
    justify-content: space-between;
}

.revenue-wrapper .header span {
    color: var(--text-primary);
    font-weight: 600;
}

.revenue-wrapper .alert {
    margin: 20px 0px;
    border-radius: 5px;
}

.revenue-wrapper .card,
.purchases-wrapper .card,
.favourites-wrapper .card {
    padding: 20px;
    margin-top: 20px;
}

.favourites-wrapper .uw-projects-wrapper .card {
    padding: 0px;
}

.revenue-wrapper .card .table a,
.purchases-wrapper .card .table a {
    color: var(--text-primary);
    font-weight: 600;
}

.favourites-wrapper .header a {
    padding: 5px 10px;
    font-size: 13px;
}

.favourites-wrapper .media img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.favourites-wrapper .media .media-body h5 {
    font-weight: 600;
    margin: 0px;
}

.favourites-wrapper .media .media-body span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
}

.favourites-wrapper .media .media-body .social-links {
    margin-top: 10px;
}

.favourites-wrapper .media .media-body .social-links i {
    font-size: 20px;
    margin-right: 10px;
}

.requests-wrapper .card .table .btn-icon {
    padding: 5px 10px;
    font-size: 10px;
}

.requests-wrapper .card {
    padding: 20px;
}

.requests-wrapper ul li {
    line-height: 30px;
    font-weight: 500;
    color: var(--heading-color);
}

.requests-wrapper ul li span {
    color: var(--text-primary);
}

.requests-wrapper .radio-wrapper {
    margin: 0px;
}

.requests-wrapper form .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.contacts-wrapper .card {
    padding: 20px;
}

.contacts-wrapper .media img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.contacts-wrapper .media .media-body h5 {
    margin: 0px;
    font-size: 17px;
}

.media .media-body a.text-primary {
    color: var(--text-primary);
}

.table .btn-icon {
    padding: 5px 10px;
}

.referrals-wrapper .card {
    padding: 20px;
}

/* ==============================
/* ****** 38. Profile *****
=================================*/
.seller-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.seller-wrapper .user-wrapper .card {
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.seller-wrapper .user-wrapper .card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.seller-wrapper .user-wrapper .card h6 {
    color: var(--heading-color);
    font-size: 18px;
}

.seller-wrapper .user-wrapper .card .rating i {
    color: var(--orange);
    font-size: 12px;
}

.seller-wrapper .user-wrapper .card .online-status span {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 2px 10px;
    border-radius: 25px;
    font-size: 10px;
}

.seller-wrapper .user-wrapper .card .user {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    /* justify-content: space-between; */
}

.seller-wrapper .user-wrapper .card .user-badge {
    position: absolute;
    top: 8%;
    left: 5%;
}

.seller-wrapper .user-wrapper .card .user-badge img {
    width: 40px;
    height: 40px;
}

.seller-wrapper .user-wrapper .card a {
    color: var(--text-primary);
    font-weight: 500;
}

.seller-wrapper .language-wrapper .card,
.seller-wrapper .skills-wrapper .card {
    padding: 30px 20px;
    margin-top: 20px;
}

.seller-wrapper .language-wrapper .card h5,
.seller-wrapper .skills-wrapper .card h5 {
    margin: 0px;
}

.seller-wrapper .language-wrapper .card ul li a,
.seller-wrapper .skills-wrapper .card ul li a {
    padding: 5px 8px;
    font-size: 10px;
}

.seller-wrapper .language-wrapper .card ul li,
.seller-wrapper .skills-wrapper .card ul li {
    margin: 10px 0px;
}

.seller-wrapper .language-wrapper .card a.btn,
.seller-wrapper .skills-wrapper .card a.btn {
    padding: 5px 10px;
    font-size: 13px;
}

.seller-wrapper .bio-wrapper .card {
    padding: 20px;
}

.seller-wrapper .bio-wrapper .card .seller-data-wrapper span {
    margin-right: 10px;
}

.seller-wrapper .bio-wrapper .card .seller-data-wrapper span strong {
    color: var(--heading-color);
    font-weight: 500;
}

.seller-wrapper .bio-wrapper .card .seller-data-wrapper span.rating {
    color: var(--sky-blue);
}

/* ==============================
/* ****** 39. User Settings *****
=================================*/
.settings-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.settings-wrapper h2 {
    font-size: 22px;
}

.settings-wrapper .card {
    padding: 30px 20px;
}

.settings-wrapper .profile-tabs .card a {
    color: var(--body-color);
}

.settings-wrapper .profile-tabs .card a.active {
    background-color: var(--primary-button);
    color: var(--text-white);
}

.settings-wrapper form .btn,
.settings-wrapper a.btn {
    padding: 5px 10px;
    font-size: 14px;
}

/* ==============================
/* ****** 40. Single Project *****
=================================*/
.referral-link-wrapper,
.contact-seller-wrapper {
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.referral-link-wrapper .btn,
.contact-seller-wrapper a {
    background-color: var(--primary-button);
    padding: 10px 10px;
    font-size: 14px;
}

.contact-seller-wrapper a {
    background-color: var(--orange);
    color: var(--text-white);
    text-align: center;
    border-radius: 5px;
}

/* ==============================
/* ****** 41. Cart *****
=================================*/
.cart-wrapper {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.cart-wrapper .cart-header {
    display: flex;
    justify-content: space-between;
}

.cart-wrapper h2 {
    font-size: 22px;
}

.cart-wrapper h2 span {
    color: var(--text-primary);
}

.cart-wrapper a {
    color: var(--sky-blue);
    font-weight: 600;
}

.cart-wrapper a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.cart-wrapper .card {
    padding: 20px;
}

.cart-wrapper .cart-card .media img {
    width: 150px;
    border-radius: 5px;
    margin-right: 15px;
}

.cart-wrapper .cart-card .media h6 a {
    color: var(--heading-color);
}

.cart-wrapper .cart-card .media .rating i {
    font-size: 12px;
    color: var(--orange);
}

.cart-wrapper .cart-card .media .action-btn a {
    padding: 2px 10px;
    font-size: 10px;
    color: var(--text-white);
}

.cart-wrapper .cart-card .price span {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 20px;
}

.cart-wrapper .cart-card hr {
    margin: 30px 0px;
}

.cart-details-card .summery-item {
    display: flex;
    justify-content: space-between;
}

.cart-details-card .text-bold {
    font-weight: 600;
}

.cart-details-card form .btn {
    padding: 5px 10px;
    font-size: 14px;
}

.cart-details-card .btn-primary {
    padding: 8px 10px;
    color: var(--text-white);
}

.cart-wrapper .radio-wrapper img {
    width: 120px;
}

/* ==============================
/* ****** 42. Contact *****
=================================*/
.contact-header-wrapper {
    padding: 50px 0px;
    background-color: var(--secondary-color);
}

.contact-header-wrapper h4 {
    color: var(--text-white);
    font-size: 16px;
}

.contact-header-wrapper h2 {
    font-size: 42px;
    color: var(--text-white);
    font-weight: 700;
}

.contact-header-wrapper h2 span {
    color: var(--text-primary);
    font-size: 26px;
}

.uw-contact-content {
    background-color: var(--light-grey-bg);
    padding: 50px 0px;
}

.contact-form-wrap {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--bg-white);
    /* -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 .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;
    /* outline: none; */
    padding: 0 60px;
    font-size: 15px;
    /* border: none; */
    border-radius: 5px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    /* -webkit-box-shadow: 0 5px 20px 0 rgba(61, 82, 96, 0.15);
            box-shadow: 0 5px 20px 0 rgba(61, 82, 96, 0.15); */
}

@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;
    /* -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 .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(--text-primary);
    color: var(--text-white);
    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);
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.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;
}

.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;
    }
}

.custom-control {
    padding: 0;
}

.custom-control .custom-control-input {
    position: relative;
}

.custom-control span {
    vertical-align: middle;
    margin-left: 14px;
    color: #000;
}

.custom-control span a {
    color: var(--text-primary);
}

@media screen and (max-width: 576px) {
    .custom-control span {
        font-size: 14px;
    }
}

.custom-control .custom-control-label {
    margin-left: 0;
    width: 32px;
    height: 32px;
    outline: none;
    text-align: center;
    line-height: 32px;
}

.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;
}

.custom-control-input:checked~.custom-control-label::before,
.custom-control-label:active::before,
.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);
}

.custom-control-label::after {
    display: none;
}

.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;
}

.custom-select-wrapper select,
.custom-select-wrapper .select-hide {
    display: none;
}

.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;
    /* background-color: var(--text-white); */
    color: #677294 !important;
    /* -webkit-box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15);
            box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15); */
}

.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);
}

.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;
}

.custom-select-wrapper .select-selected.select-arrow-active:after {
    content: "\f077";
}

.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);
}

.custom-select-wrapper .select-items .same-as-selected {
    background-color: var(--primary-button);
    border-bottom-color: var(--primary-button);
    color: var(--text-white) !important;
}

.custom-select-wrapper .select-items .same-as-selected:after {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.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) {
    .custom-select-wrapper .select-items div {
        font-size: 14px;
    }
}

.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);
}

.custom-select-wrapper .select-items div:last-child {
    border-bottom: 0;
}

.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;
}

.custom-select-wrapper .select-items div:hover {
    background-color: var(--primary-button);
    border-bottom-color: var(--primary-button);
    color: var(--text-white);
}

.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(--text-primary);
    stroke: var(--text-primary);
    background: var(--secondary-color);
  }
  
  .custom-modal .modal-footer {
    padding: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

/* ==============================
/* ****** 43. Footer *****
=================================*/

#footer {
    background-color: var(--secondary-color);
    padding: 20px 0px;
    /* margin-top: 40px; */
}

footer hr {
    color: var(--nav-white);
}

footer .media-links.text-lg-right {
    float: right;
}

footer .media-links {
    color: var(--text-white);
}

footer .media-links i {
    font-size: 14px;
    padding: 10px 10px;
    color: var(--nav-white);
    background-color: var(--light-secondary-color);
    border-radius: 50%;
}

footer .media-links i:hover {
    color: var(--nav-white);
    background-color: var(--primary-button);
    transition: all 0.3s ease;
}

footer .footer-links h2 {
    line-height: 24px;
    font-size: 20px;
    color: var(--text-white);
    text-align: left;
    font-weight: 300;
    text-transform: capitalize;
}

footer .footer-links ul li {
    line-height: 28px;
    color: var(--nav-white);
}

footer .footer-links ul li::before {
    content: "-";
    margin-right: 10px;
}

footer .footer-links ul li a {
    color: var(--nav-white);
    font-weight: 300;
}

footer .footer-links ul li a:hover {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

footer .ajax-footer-switchers .language,
footer .ajax-footer-switchers .currency {
    margin: 5px 0px;
}


footer .copyright-text {
    text-align: center;
    color: var(--nav-white);
}

footer input[type=text] {
    height: 50px;
}

/* *************************
    44. Responsive Design 
*****************************/
@media only screen and (min-width: 280px) and (max-width: 414px) {
    .mobile-menu .mobile-logo img {
        display: none;
    }

    .mobile-menu .mobile-user-links ul li a {
        font-size: 10px;
    }

    .mobile-menu .mobile-user-links ul li.signup-btn {
        padding: 3px 12px;
    }

    .mobile-user-links .loged-in-icons a i {
        font-size: 16px;
        margin: 10px;
        color: #838383;
    }

    .mobile-user-links .loged-in-icons .remove-sm {
        display: none;
    }

    #uw-signin-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    #uw-signin-wrapper .signin-form .card {
        padding-right: 10px;
        padding-left: 10px;
    }

    .cart-item .media {
        display: flex;
        flex-direction: column;
    }

    .cart-item .media img {
        margin-bottom: 10px;
    }

    .favourites-wrapper .buyer-info .media {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

}

@media only screen and (min-width: 280px) and (max-width: 540px) {
    .uw-about-header h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .uw-about-content h2 {
        font-size: 26px;
    }

    .uw-about-header {
        padding: 60px 0px;
    }

    .full-article-overlay .article-overlay-wrap h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .full-article-overlay .article-overlay-wrap {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .uw-home-banner h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .uw-home-banner .uw-home-buttons .btn {
        margin-bottom: 10px;
    }

    .uw-service-category .card {
        min-height: 130px;
    }

    .uw-service-category .card .card-footer h4 {
        font-size: 12px;
    }

    .uw-service-category .card .card-body {
        margin: 0px;
    }

    #uw-all-category .category-header {
        padding: 50px 50px;
    }

    #uw-all-category .category-header h2 {
        font-size: 26px;
    }

    .contacts-wrapper .table .media {
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {
    .mobile-menu .mobile-logo img {
        width: 100px;
    }

    .mobile-menu .mobile-toggler i {
        margin-right: 15px;
        font-size: 30px;
    }
}

@media only screen and (min-width: 280px) and (max-width: 992px) {
    .uw-nav .navbar {
        display: none;
    }

    .uw-nav .navbar .auth-btns a {
        margin-top: 10px;
    }

    .uw-header-category {
        display: none;
    }

    .container {
        overflow-x: hidden;
    }

    #uw-projects-search-wrapper .search-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    #uw-projects-search-wrapper .search-content .search-tags a {
        margin-bottom: 10px;
    }

    #uw-freelancers-wrapper {
        padding: 50px 0px;
    }

    .uw-freelancers-banner h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .uw-freelancers-banner h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    #uw-freelancers-wrapper .btn {
        padding: 5px 10px;
    }

    #uw-process-header .header-content h2 {
        font-size: 32px;
    }

    #uw-process-header .header-content h4 {
        font-size: 22px;
        padding: 0px 15px;
    }

    .process-desc h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .full-stories-wrapper h2 {
        font-size: 26px;
    }

    #stories-details-header h6 {
        line-height: 1.6;
    }

    .full-article-overlay .article-overlay-wrap {
        padding: 80px 50px;
    }

    #articles-header {
        padding: 50px 0px;
    }

    #articles-header h2 {
        font-size: 32px;
    }

    .stories-details-header h2 {
        font-size: 24px;
    }

    #articles-header h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .buyer-requests h2 {
        font-size: 18px !important;
    }

    footer .media-links i {
        font-size: 10px;
        padding: 10px 10px;
    }

    footer .media-links.text-lg-right {
        float: left;
        margin-top: 10px;
    }

    .uw-category-banner h1 {
        font-size: 28px;
        line-height: 35px;
    }

    .uw-category-banner h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .uw-category-banner .uw-category-buttons a {
        margin-bottom: 10px;
        margin-right: 5px;
    }

    .uw-authors .authors-heading h2 {
        line-height: 30px;
        font-size: 20px;
        text-align: center;
    }

    .uw-pricing .pricing-header h2 {
        font-size: 20px;
    }

    #uw-projects-banner-wrapper .projects-content h1 {
        font-size: 26px;
    }

    #uw-projects-banner-wrapper .projects-content .uw-projects-buttons a {
        margin-bottom: 10px;
    }

    .uw-projects .projects-header h2 {
        font-size: 18px !important;
    }

    .uw-project-page .project-title {
        font-size: 20px;
        line-height: 1.4;
    }

    #uw-information-page .card-header h2 {
        font-size: 20px;
    }

    #uw-information-page .card-body {
        padding: 0px;
    }

    .buyer-requests .table td a.make-flex {
        display: flex;
        flex-direction: column;
    }

    .buyer-requests .table td a.make-flex .tags span {
        margin-bottom: 10px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .uw-nav .navbar ul li a {
        font-size: 14px;
    }
}