@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,700&display=swap');
/*<link href="https://fonts.googleapis.com/css?family=Poppins:200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap" rel="stylesheet"/>*/

:root {
    --color-primary: #FE0000;
    --color-primary-light: #8c71db;
    --color-primary-dark: #4a2b7f;

    --color-secondary: #01528C;
    --color-secondary-dark: #002f4a;
    --color-secondary-light: #1299e8;

    --color-text: #333;
    --color-text-light: #666;
    --color-white: #fff;
    --color-black: #000000;
    --color-gray: #999FAE;
    --color-dark: #27272E;

    --color-heading: #292930;
    --color-border-light: #E3E6E9;
    --color-border-dark: #42424A;
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-link: #007bff;
    --color-link-hover: #0056b3;
    --color-link-active: #0056b3;
    --color-link-visited: #4a2b7f;
    --color-link-disabled: #6c757d;
    --color-link-focus: #1ba2db;

    --primary-font-family: "Roboto";
    --primary-font-weight: 600;
    --secondary-font-family: "Roboto Slab";
    --secondary-font-weight: 400;
    --text-font-family: "Roboto";
    --text-font-weight: 400;

    --radius: 5px;
    --radius-small: 3px;
    --radius-big: 16px;
    --radius-round: 50%;

    --border-width: 2px;
    --border-thin: 1px;
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-bold: 700;
    --s-black: 900;
    --shadow-primary: 0px 4px 10px rgba(37, 47, 63, 0.1);
    --shadow-light: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
    --shadow-dark: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
    --transition: 0.3s;
    --font-primary: "DM Sans", sans-serif;
    --font-secondary: "DM Sans", sans-serif;
    --font-awesome: "Font Awesome 5 Pro";
    --font-size-b1: 16px;
    --font-size-b2: 14px;
    --font-size-b3: 12px;
    --line-height-b1: 1.7;
    --line-height-b2: 1.65;
    --line-height-b3: 1.6;
    --h1: 46px;
    --h2: 36px;
    --h3: 28px;
    --h4: 24px;
    --h5: 20px;
    --h6: 18px;

    --color-facebook: #3B5997;
    /*background-color: #0f62b7;*/

    --color-twitter: #1BA1F2;
    --color-youtube: #ED4141;
    /*background-color: #e91700;*/
    --color-linkedin: #0077B5;
    /*background-color: #4080b7;*/
    --color-pinterest: #E60022;
    /*background-color: #ef1438;*/

    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
    --color-skype: #00AFF0;
    /*background-color: #13caff;*/
    --color-whatsapp: #25D366;
    /*background-color: #29B200;*/
    --color-telegram: #0088cc;
    --color-slack: #4A154B;
    --color-dribbble: #EA4C89;
    --color-behance: #1769FF;
    --color-github: #333;
    --color-gitlab: #FC6D26;
    --color-bitbucket: #205081;
    --color-codepen: #1E1F26;
    --color-stackoverflow: #F48024;
    --color-medium: #02B875;
    --color-tumblr: #35465C;
    --color-flickr: #FF0084;
    --color-vk: #4C75A3;
    --color-soundcloud: #FF5500;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

/* Chrome, Safari, Edge, Opera এর জন্য */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox এর জন্য */
input[type="number"] {
    -moz-appearance: textfield;
}


article, aside, details, figcaption, figure, footer, header, nav, section, summary {
    display: block
}

audio, canvas, video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden] {
    display: none
}

a {
    color: var(--color-heading);
    text-decoration: none;
    outline: none
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: var(--color-secondary-light);
}

a:focus {
    outline: none
}

address {
    margin: 0 0 24px
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

mark {
    background: var(--color-primary);
    color: #fff
}

code, kbd, pre, samp {
    font-size: var(--font-size-b3);
    hyphens: none;
    color: var(--color-primary)
}

pre {
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: var(--font-size-b3);
    margin: 10px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--color-text);
    background: var(--color-lighter)
}

small {
    font-size: smaller
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

dl {
    margin-top: 0;
    margin-bottom: 10px
}

dd {
    margin: 0 15px 15px
}

dt {
    font-weight: bold;
    color: var(--color-heading)
}

menu, ol, ul {
    margin: 16px 0;
    padding: 0 0 0 40px
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none
}

li > ul,
li > ol {
    margin: 0
}

ol ul {
    margin-bottom: 0
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 0
}

form {
    margin: 0
}

fieldset {
    border: 1px solid var(--color-border);
    margin: 0 2px;
    min-width: inherit;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0;
    white-space: normal
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline
}

button,
input {
    line-height: normal
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    appearance: button;
    cursor: pointer
}

button[disabled],
input[disabled] {
    cursor: default
}

input[type=checkbox],
input[type=radio] {
    padding: 0
}

input[type=search] {
    appearance: textfield;
    padding-right: 2px;
    width: 270px;
    cursor: text
}

input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto;
    vertical-align: top
}

caption, th, td {
    font-weight: normal
}

th {
    font-weight: 500;
    text-transform: uppercase
}

td,
.wp-block-calendar tfoot td {
    border: 1px solid var(--color-border);
    padding: 7px 10px
}

del {
    color: #656973
}

ins {
    text-decoration: none
}

hr {
    background-size: 4px 4px;
    border: 0;
    height: 1px;
    margin: 0 0 24px
}

.clearfix:before, .clearfix:after {
    display: table;
    content: " "
}

.clearfix:after {
    clear: both
}

table a,
table a:link,
table a:visited {
    text-decoration: underline
}

dt {
    font-weight: bold;
    margin-bottom: 10px
}

dd {
    margin: 0 15px 15px
}

caption {
    caption-side: top
}

kbd {
    background: var(--color-text)
}

dfn,
cite,
em {
    font-style: italic
}

blockquote,
q {
    hyphens: none;
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

blockquote {
    font-size: var(--font-size-b1);
    font-style: italic;
    font-weight: var(--p-light);
    margin: 24px 40px
}

blockquote blockquote {
    margin-right: 0
}

blockquote cite,
blockquote small {
    font-size: var(--font-size-b3);
    font-weight: normal
}

blockquote strong,
blockquote b {
    font-weight: 700
}

* {
    box-sizing: border-box
}

html {
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font: 12px/18px Roboto Arial, Helvetica, sans-serif;

    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgb(244, 120, 32);
}

@media only screen and (min-width: 992px) {
    body.overflow-visible {
        overflow-y: visible
    }
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    font-family: var(--font-primary);
    color: var(--color-text);
    font-weight: var(--p-regular);
    overflow: hidden;
    overflow-y: auto;
    background-color: #f1f1f1;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, address, p, pre, blockquote, menu, ol, ul, table, hr {
    margin: 0;
    margin-bottom: 30px
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    word-break: break-word;
    font-family: var(--font-secondary);
    line-height: 1.3;
    color: var(--color-heading)
}

h1, .h1 {
    font-size: var(--h1)
}

h2, .h2 {
    font-size: var(--h2)
}

h3, .h3 {
    font-size: var(--h3)
}

h4, .h4 {
    font-size: var(--h4)
}

h5, .h5 {
    font-size: var(--h5)
}

h6, .h6 {
    font-size: var(--h6)
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: inherit
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    h1,
    .h1 {
        font-size: 40px
    }

    h2,
    .h2 {
        font-size: 30px
    }

    h3,
    .h3 {
        font-size: 26px
    }

    h4,
    .h4 {
        font-size: 22px
    }
}

@media only screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 34px
    }

    h2,
    .h2 {
        font-size: 26px
    }

    h3,
    .h3 {
        font-size: 24px
    }

    h4,
    .h4 {
        font-size: 20px
    }
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-weight: var(--s-bold)
}

h4,
.h4,
h5,
.h5 {
    font-weight: var(--s-bold)
}

h6,
.h6 {
    font-weight: var(--s-medium)
}

h1.b1,
h2.b1,
h3.b1,
h4.b1,
h5.b1,
h6.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1)
}

h1.b2,
h2.b2,
h3.b2,
h4.b2,
h5.b2,
h6.b2 {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2)
}

h1.b3,
h2.b3,
h3.b3,
h4.b3,
h5.b3,
h6.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3)
}

p {
    margin: 0;
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: var(--color-heading);
}

p.has-large-font-size {
    line-height: 1.5;
    font-size: 36px
}

p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px
}

p.has-small-font-size {
    font-size: 13px
}

p.has-very-light-gray-color {
    color: var(--color-white)
}

p.has-background {
    padding: 20px 30px
}

p.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1)
}

p.b2 {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2)
}

p.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3)
}

p:last-child {
    margin-bottom: 0
}

.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1)
}

.b2 {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2)
}

.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3)
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 20px;
    width: 100%
}

table a,
table a:link,
table a:visited {
    text-decoration: none
}

cite,
.wp-block-pullquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
    color: var(--color-text)
}

var {
    font-family: "Courier 10 Pitch", Courier, monospace
}

ul,
ol {
    padding-left: 18px
}

ul {
    list-style: square;
    margin-bottom: 30px;
    padding-left: 20px
}

ul.liststyle.bullet li {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text);
    position: relative;
    padding-left: 30px
}

ul li {
    /*font-size: var(--font-size-b1);*/
    /*line-height: var(--line-height-b1);*/
    /*margin-top: 8px;*/
    /*margin-bottom: 8px;*/
    color: var(--color-text);
    font-family: var(--font-secondary)
}

ul li a {
    text-decoration: none;
    color: var(--color-heading)
}

ul li a:hover {
    color: var(--color-primary)
}

ul li::marker {
    color: var(--color-text)
}

ul ul {
    margin-bottom: 0
}

ol {
    margin-bottom: 30px
}

ol li {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    color: var(--color-text);
    margin-top: 8px;
    margin-bottom: 8px
}

ol li a {
    color: var(--color-text);
    text-decoration: none
}

ol li a:hover {
    color: var(--color-primary)
}

ol ul {
    padding-left: 30px
}

body {
    font-family: Roboto, sans-serif;
    font-style: normal;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    color: rgb(27, 29, 29);
    min-height: 100vh;
    font-size: 12px;
    overflow: hidden auto !important;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important
}

a {
    text-decoration: none;
    color: var(--color-text)
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

dl, ol, ul {
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: none
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me4WxK.woff2") format("woff2");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: url("https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc-.woff2") format("woff2");
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

.color-plate {
    position: fixed;
    display: block;
    z-index: 99998;
    padding: 20px;
    width: 245px;
    background: #fff;
    right: -245px;
    text-align: left;
    top: 30%;
    transition: all 0.4s ease;
    box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
}

.color-plate.active {
    right: 0;
}

.color-plate .color-plate-icon {
    position: absolute;
    left: -48px;
    width: 48px;
    height: 45px;
    line-height: 45px;
    font-size: 21px;
    border-radius: 5px 0 0 5px;
    background: #fff;
    text-align: center;
    color: var(--color-text);
    top: 0;
    cursor: pointer;
    box-shadow: -4px 0px 5px #00000036;
}

.color-plate h4 {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

.color-plate p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 20px;
}

.color-plate span {
    width: 42px;
    height: 35px;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    margin-right: 3px;
}

.color-plate span:hover {
    cursor: pointer;
}

.color-plate span.color1 {
    background: var(--color-secondary-light);
}

.color-plate span.color2 {
    background: #0088CC;
}

.color-plate span.color3 {
    background: #32B87D;
}

.color-plate span.color4 {
    background: #FE754A;
}

.color-plate span.color5 {
    background: #F82F56;
}

.color-plate span.color6 {
    background: #00cec9;
}

.color-plate span.color7 {
    background: #6c5ce7;
}

.color-plate span.color8 {
    background: #85BA46;
}

.color-plate span.color9 {
    background: #fd79a8;
}

.color-plate span.color10 {
    background: #a29bfe;
}

.color-plate span.color11 {
    background: #badc58;
}

.color-plate span.color12 {
    background: #FF1D38;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-icon {
    width: 100px;
    height: 100px;
    display: inline-block;
    padding: 0px;
}

.preloader-icon span {
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: var(--color-secondary-light);
    animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
    animation-delay: -0.8s;
}

@keyframes preloader-fx {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes preloader-fx {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}

/* End Preloader */

.btn {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    background: var(--color-secondary-light);
    color: var(--color-white);
    transition: all 0.5s ease;
    z-index: 5;
    padding: 8px 30px;
    border-radius: 5px;
    text-transform: capitalize;
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 18px;
    letter-spacing: 0;
    white-space: nowrap;
}

.btn:hover {
    color: var(--color-secondary-light);
    border-color: 1px solid var(--color-secondary-light);
}

#scrollUp {
    right: 10px;
    z-index: 33;
    bottom: 10px;
    text-align: center;
}

#scrollUp i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: transparent;
    background: var(--color-secondary-dark);
    border-radius: 0;
    font-size: 18px;
    transition: all 500ms ease;
    display: block;
    color: #fff;
    box-shadow: 0px 4px 19px #00000038;
}

#scrollUp i:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

.product-area {
    padding: 10px 15px;
    margin-bottom: 15px;
    background-color: #fff;
}


/*======================================
    01. Header CSS
========================================*/
/* Topbar */
.topbar {
    background-color: var(--color-secondary-light);
    border-bottom: 1px solid #e2e2e2;
    padding: 15px 0;
}

/* Logo */
.header .logo {
    float: left;
    transition: all 0.4s ease;
}

.header .logo img {
    width: 260px;
}

.header .navbar {
    padding: 0;
}

/* Main Menu */
.navbar-expand-lg .navbar-collapse {
    display: block !important;
}

.header .nav li a i {
    margin-left: 6px;
    font-size: 10px;
}

/* Dropdown Menu */
.header .nav li .dropdown {
    background: #fff;
    width: 220px;
    position: absolute;
    top: 100%;
    z-index: 999;
    box-shadow: 0px 3px 5px var(--color-text) 3334d;
    transform-origin: 0 0 0;
    transform: scaleY(0.2);
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    left: 0;
    margin: 0;
}

.header .nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header .nav li .dropdown li {
    float: none;
    margin: 0;
}

.header .nav li .dropdown li a {
    padding: 8px 15px;
    color: var(--color-text);
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    background: transparent;
}

.header .nav li .dropdown li a:before {
    display: none;
}

.header .nav li .dropdown li:last-child a {
    border-bottom: 0px;
}

.header .nav li .dropdown li:hover a {
    color: #fff;
    background: var(--color-secondary-light);
}

.header .nav li .dropdown li a:hover {
    border-color: transparent;
}

.header .nav li .dropdown li i {
    float: right;
    margin-top: 8px;
    font-size: 10px;
    z-index: 5;
}

.header .nav li .dropdown.sub-dropdown {
    background: #fff;
    width: 220px;
    position: absolute;
    left: 200px;
    top: 0;
    z-index: 999;
    box-shadow: 0px 3px 5px var(--color-text) #3334d;
    transform-origin: 0 0 0;
    transform: scaleY(0.2);
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}

.header .nav li .dropdown li:hover .dropdown.sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header .nav li .dropdown.sub-dropdown li a {
    padding: 8px 15px;
    color: var(--color-text);
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    background: transparent;
}

.header .nav li .dropdown li:hover .dropdown.sub-dropdown li a {
    background: transparent;
}

.header .nav li .dropdown li .dropdown.sub-dropdown li a:hover {
    color: #fff;
    background: var(--color-secondary-light);
}

.header .nav li .dropdown.sub-dropdown li:last-child a {
    border-bottom: 0px solid;
}

.mobile-search {
    display: none;
}

.header .topbar {
    border: none;
    padding: 8px;
}

.header .topbar p {
    color: #ccc;
}

.header .nav-inner {
    margin-right: 188px;
}

.header .top-contact {
    margin-top: 0px;
}

.header .topbar .login a {
    color: var(--color-secondary-light);
}

/* Topbar Left Nav */
.header.shop .left-nav {

}

.header.shop .top-left .list-main li:first-child {
    padding-left: 0;
}

.header.shop .top-left .list-main li i {
    display: inline-block;
    margin-right: 4px;
    font-size: 15px;
    color: #fff;
    position: relative;
    top: 3px;
}

.header .right-content {
    float: right;
}

.header .list-main li {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-right: 1px solid #f0f0f0;
    padding: 0px 13px;
}

.header .list-main li i {
    display: inline-block;
    margin-right: 4px;
    font-size: 15px;
    color: #fff;
    position: relative;
    top: 1px;
}

.header .list-main li:last-child {
    padding-right: 0;
    border: none;
}

.header .list-main li a {
    color: #fff;
}

.header .nav li {
    margin-right: 40px;
    float: left;
    position: relative;
}

.header .nav li {
    margin-right: 38px;
    position: relative;
}

.header .nav li:last-child {
    margin: 0 !important;
}

.header .nav li .new {
    background: var(--color-secondary-light);
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    padding: 0px 9px;
    position: absolute;
    left: 0;
    top: 6px;
    font-weight: 500;
}

.header .nav li .new::before {
    position: absolute;
    content: "";
    left: 4px;
    bottom: -8px;
    border: 4px solid var(--color-secondary-light);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}

/* Shopping Cart */
.header .shopping {
    display: inline-block;
    z-index: 9999;
}

.header .shopping .icon {
    position: relative;
    cursor: pointer;
    color: var(--color-secondary-dark);
}

.header .shopping .shopping-item {
    position: absolute;
    top: 30px;
    right: 0;
    width: 300px;
    background: #fff;
    padding: 5px 10px;
    transition: all 0.3s ease 0s;
    transform: translateY(10px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.header .shopping:hover .shopping-item {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.header .shopping .dropdown-cart-header {
    padding-bottom: 10px;
    /*margin-bottom: 15px;*/
    border-bottom: 1px solid #e6e6e6;
}

.header .shopping .dropdown-cart-header span {
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    font-size: 13px;
    font-weight: 600;
}

.header .shopping .dropdown-cart-header a {
    float: right;
    text-transform: uppercase;
    color: var(--color-secondary-light);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--color-secondary-light);
    padding: 1px 7px;
    border-radius: 3px;
}

.header .shopping .dropdown-cart-header a:hover {
    color: var(--color-secondary-light);
}

.header ul.shopping-list {
    padding: 0;
}

.header ul.shopping-list li {
    overflow: hidden;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 6px;
    margin-bottom: 6px;
    position: relative;
}

.header .shopping-list li .remove {
    position: absolute;
    right: 0;
    bottom: 10px;
    margin-top: -20px;
    height: 20px;
    width: 20px;
    line-height: 18px;
    text-align: center;
    background: #fff;
    color: var(--color-danger);
    border-radius: 0;
    font-size: 11px;
    border: 1px solid #ededed;
}

.header .shopping-list li .remove:hover {
    background: var(--color-danger);
    color: #fff !important;
    border-color: transparent;
}

.save-button {
    display: block;
    border: 1px solid var(--color-secondary-light);
    padding: 2px 5px;
    color: var(--color-secondary-light);
    border-radius: 3px;
}

.header .shopping-list .cart-img {
    /*float: right;*/
    border: 1px solid #ededed;
    /*overflow: hidden;*/
}

.header .shopping-list .cart-img img {
    width: 65px;
    height: 50px;
    border-radius: 0;
}

/*.header .shopping-list .cart-img:hover img {*/
/*    transform: scale(1.09);*/
/*}*/

.header .shopping-list .quantity {
    line-height: 20px;
    font-size: 13px;
    padding-bottom: 8px;
    font-weight: bold;
}

.header .shopping-list h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.header .shopping-list h4 a {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-text);

    display: -webkit-box;
    overflow: hidden;
}

.header .shopping-list h4 a:hover {
    color: var(--color-secondary-light);
}

.header .shopping-item .bottom {
    text-align: center;
}

.header .shopping-item .total {
    overflow: hidden;
    display: block;
    padding-bottom: 10px;
}

.header .shopping-item .total span {
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    font-size: 13px;
    font-weight: 500;
    float: left;
}

.header .shopping-item .total .total-amount {
    float: right;
    font-size: 14px;
}

.header .shopping-item .bottom .btn {
    background: var(--color-secondary-dark);
    padding: 10px 20px;
    display: block;
    color: #fff;
    margin-top: 10px;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.header .shopping-item .bottom .btn:hover {
    color: #fff;
    background: linear-gradient(226.1deg, rgb(17, 160, 219) 0%, rgb(17, 160, 219) 101.24%);
}

.header.shop {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header.shop .nav-inner {
    margin: 0;
    float: left;
}

.header.shop .topbar {
    background: var(--color-secondary-light);
    border-top: 1px solid var(--color-secondary-light);
}

.header.shop .topbar a {
    color: #fff;
}

.header.shop .right-nav li a {
    color: var(--color-text);
}

.header.shop .top-contact {
    margin-top: 0px;
}

/* Header Middle */
.header.shop .search-bar {
    text-align: center;
    margin-top: 15px;
    display: inline-block;
    background: #fff;
    position: relative;
    width: 535px;
    height: 50px;
    line-height: 45px;
    border-radius: 5px;
    border: 1px solid #ececec;
}

.header.shop .nice-select {
    clear: initial;
    margin: 0;
    height: 48px;
    width: 150px;
    border: none;
    text-align: center;
    background: transparent;
    text-transform: capitalize;
    padding: 0 0 0 20px;
    border-right: 1px solid #eee;
    line-height: 50px;
    font-size: 14px;
    font-weight: 400;
}

.header.shop .nice-select::after {
    border-color: var(--color-text);
    right: 15px;
}

.header.shop .nice-select .list {
    border-radius: 0px;
}

.header.shop .nice-select .list li.focus {
    font-weight: 400;
}

.header.shop .nice-select .list li {
    color: var(--color-text);
    border-radius: 0px;
    font-size: 14px;
    font-weight: 400;
}

.header.shop .nice-select .list li:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

.header.shop .search-bar form {
    display: flex;
    width: 100%;
}

.header.shop .search-bar input {
    height: 48px;
    background: transparent;
    color: var(--color-text);
    border-radius: 0;
    border: none;
    font-size: 14px;
    font-weight: 400;
    padding: 0 15px;
    width: 100%;
}

.search-bar .btn {
    height: 50px;
    line-height: 40px;
    padding: 8px;
    width: 62px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: var(--color-secondary-light);
    position: absolute;
    right: -2px;
    top: -1px;
    border: none;
    border-radius: 0 5px 5px 0;
    transition: all 0.4s ease;
}

@media only screen and (max-width: 479px) {
    .header.shop .search-bar {
        margin-top: 10px;
        width: 500px;
        height: 35px;
        line-height: 35px;
    }

    .header.shop .search-bar input {
        height: 35px;
        font-size: 12px;
        font-weight: 400;
        padding: 0 10px;
    }

    .search-bar .btn {
        height: 35px;
        line-height: 20px;
        padding: 5px;
        width: 50px;
        font-size: 18px;
    }
}

/* Search Form */
.header.shop .search-top {
    opacity: 1;
    visibility: visible;
    top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.header.shop .middle-inner {
    padding: 10px;
    background-color: var(--color-secondary-light2);
}

.header.shop .header-inner {
    background: var(--color-secondary-light);
}

.header.shop.v2 .header-inner {
    background: #fff;
    border-top: 1px solid #eee;
}

.header.shop .topbar p {
    color: var(--color-text);
}

.header.shop .all-category {
    color: #fff;
    background: transparent;
    position: relative;
    background: var(--color-secondary-light);
}

.header.shop .all-category h3 {
    padding: 20px 25px;
}

.header.shop .cat-heading {
    font-size: 20px;
    color: #fff;
}

.header.shop .cat-heading i {
    color: #fff;
    display: inline-block;
    margin-right: 15px;
    font-size: 22px;
}

.header.shop .main-category {
    position: absolute;
    left: 0;
    top: 64px;
    background: #fff;
    z-index: 1;
    width: 100%;
    box-shadow: 0px 5px 15px #0000000a;
}

.header.shop .main-category li {
    display: block;
    border-bottom: 1px solid #f6f6f6;
    position: relative;
}

.header.shop .main-category li:last-child {
    border: none;
}

.header.shop .main-category li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    padding: 13px 25px 13px 25px;
    display: block;
    text-transform: uppercase;
}

.header.shop .main-category li a i {
    display: inline-block;
    float: right;
}

.header.shop .sub-category {
    background: #fff;
    width: 220px;
    position: absolute;
    left: 238px;
    top: 0;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-left: 3px solid var(--color-secondary-light);
    box-shadow: 0px 5px 15px #0000000a;
}

.header.shop .main-category li:hover .sub-category {
    opacity: 1;
    visibility: visible;
}

.header.shop .main-category li a {
    text-transform: capitalize;
    font-weight: 400;
}

.header.shop .main-category li a:hover {
    color: var(--color-secondary-light);
}

.header.shop .main-category .main-mega {
    position: relative;
}

.header.shop .main-category li .mega-menu {
    width: 850px;
    display: inline-block;
    height: auto;
    position: absolute;
    left: 238px;
    top: 0;
    z-index: 99999;
    background: #fff;
    border: none;
    padding: 30px;
    border-left: 3px solid var(--color-secondary-light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.header.shop .main-category li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.header.shop .main-category li .mega-menu .single-menu {
    width: 33%;
    display: inline-block;
    border: none;
    padding: 0;
    padding-right: 20px;
}

.header.shop .main-category li .mega-menu .single-menu a {
    padding: 0;
}

.header.shop .main-category li .mega-menu .single-menu .image {
    overflow: hidden;
}

.header.shop .main-category li .mega-menu .single-menu img {
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.header.shop .main-category li .mega-menu .single-menu .image:hover img {
    transform: scale(1.1);
}

.header.shop .main-category li .mega-menu .single-menu .title-link {
    margin-bottom: 20px;
    background: var(--color-secondary-light);
    color: #fff;
    padding: 2px 13px;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
}

.header.shop .main-category li .mega-menu .single-menu .title-link:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link {
    margin-top: 25px;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link a {
    margin-bottom: 10px;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link a:hover {
    color: var(--color-secondary-light);
    background: transparent;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link a:last-child {
    margin-bottom: 0px;
}

.header.shop .menu-origin {
    float: none;
    display: inline-block;
    float: right;
}

.header.shop .nav li {
    margin-right: 40px;
    float: left;
    position: relative;
}

.header.shop .nav li {
    margin-right: 5px;
    position: relative;
    float: none;
}

.header.shop .nav li:last-child {
    margin-right: 0;
}

.header.shop .nav li .new {
    background: var(--color-secondary-light);
    color: #fff;
    text-transform: uppercase;
    font-size: 9px;
    position: absolute;
    left: 21px;
    top: 2px;
    font-weight: 500;
    height: 18px;
    line-height: 18px;
    text-align: center;
    display: block;
}

.header.shop.v2 .nav li a {
    color: var(--color-text);
}

.header.shop .nav li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
    padding: 20px 15px;
    font-weight: 500;
    display: block;
    position: relative;
    transition: all 0.4s ease;
}

.header.shop .nav li:hover a {
    color: #fff;
    background: var(--color-secondary-light);
}

.header.shop.v2 .nav li:hover a {
    color: var(--color-secondary-light);
    background: transparent;
}

.header.shop .nav li.active a {
    color: #fff;
    background: var(--color-secondary-light);
}

.header.shop.v2 .nav li.active a {
    color: var(--color-text) !important;
    background: transparent !important;
}

.header.shop.v2 .nav li.active a {
    color: var(--color-secondary-light) !important;
}

.header.shop .nav .dropdown li {
    margin: 0;
}

.header.shop .nav li .dropdown li:hover a {
    background: var(--color-secondary-light);
}

.header.shop.v2 .nav li.active .dropdown li a {
    color: var(--color-text) !important;
}

.header.shop.v2 .nav li.active .dropdown li a:hover {
    color: #fff !important;
    background: var(--color-secondary-light) !important;
}

.header.shop.v2 .nav li.active .dropdown li a:hover {
    color: #fff !important;
}

.header.shop.v2 .nav li .dropdown li:hover a {
    color: var(--color-secondary-light);
}

.header.shop .nav li .dropdown li a {
    color: var(--color-text);
    padding: 15px;
    font-weight: 400;
    background: #fff;
}

.header.shop.v2 .nav li .dropdown li a {
    color: var(--color-text);
    background: #fff;
}

.header.shop .nav li .dropdown li a {
    font-weight: 400;
    font-size: 14px;
}

.header.shop .nav li .dropdown li a:hover {
    color: #fff;
}

.header.shop.v2 .nav li .dropdown li a:hover {
    color: #fff !important;
    background: var(--color-secondary-light);
}

.header.shop .nav li .dropdown li .dropdown.sub-dropdown li a:hover {
    background: var(--color-secondary-light);
}

.header.shop .right-bar {
    display: inline-block;
    padding: 0;
    margin: 0;
    top: 20px;
    float: right;
    position: relative;
    color: #000;
}

.header.shop .right-bar .sinlge-bar.top-search a {
    transform: translateY(3px);
}

.header.shop .right-bar .sinlge-bar.top-search a:hover {
    color: var(--color-secondary-light);
}

.header.shop .right-bar .sinlge-bar .single-icon {
    font-size: 20px;
    position: relative;
}

.header.shop .right-bar .sinlge-bar .single-icon:hover {
    color: var(--color-secondary-light);
}

.header.shop .right-bar .sinlge-bar .single-icon .total-count {
    position: absolute;
    top: -7px;
    right: -8px;
    background: var(--color-secondary-light);
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    font-size: 11px;
}

.header.shop .right-bar .single-bar {
    display: inline-block;
    margin-right: 25px;
}

.header.shop .right-bar .single-bar:last-child {
    margin-right: 0px;
}

.header.shop .right-bar .single-bar li a:hover {
    color: var(--color-secondary-light);
}

.header.shop .right-bar .single-bar a {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-heading);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.header.shop .right-bar .single-bar a::after {
    content: "";
    height: 45px;
    width: 45px;
    background-color: var(--color-secondary);
    transform: scale(0);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    transition: var(--transition);
}

.header.shop .right-bar .single-bar a:hover::after {
    transform: scale(1);
}

.header.shop .right-bar .single-bar a:hover {
    color: var(--color-white);
}

.mobile-search {
    display: none;
}

/* Header Search */
/* Search */
.header .search-top {
    display: none;
}

.header .search-top a {
    font-size: 17px;
}

.header .search-top a:hover {
    color: var(--color-secondary-light);
}

.header .search-form {
    position: absolute;
    left: -128px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    top: 46px;
    background: #ffffff75;
    transform: scaleY(0);
    box-shadow: 0px 4px 7px #0000003b;
    padding: 0;
    border-radius: 0;
}

.header .search-top.active .search-form {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.header .search-form input {
    width: 220px;
    height: 45px;
    line-height: 45px;
    padding: 0 60px 0 15px;
    transition: all 0.4s ease;
    border: none;
    background: #fff;
    color: var(--color-text);
    border-radius: 0;
}

.header .search-form button {
    position: absolute;
    right: 0;
    height: 45px;
    top: 0;
    width: 45px;
    background: transparent;
    border: none;
    border-radius: 0;
    border-left: 1px solid #eee;
    font-size: 15px;
    color: var(--color-text);
    transition: all 0.4s ease;
}

.header .search-form button:hover {
    color: #fff;
    background: var(--color-secondary-light);
    border-color: transparent;
}

/* Header Sticky */
.header .header-inner {
    width: 100%;
    z-index: 999;
}

.header.sticky .all-category {
}

.header.sticky .all-category h3 {
    cursor: pointer;

}

.header.sticky .all-category .main-category {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.header.sticky .all-category:hover .main-category {
    opacity: 1;
    visibility: visible;
}

.header.sticky .header-inner .nav li a {
    color: var(--color-text);
}

.header.sticky .header-inner .nav li:hover a {
    color: #fff;
}

.header.sticky.v2 .header-inner .nav li:hover a {
    color: var(--color-secondary-light);
}

.header.sticky .header-inner .nav li .dropdown li a {
    color: var(--color-text);
}

.header.sticky.v2 .header-inner .nav li .dropdown li a {
    color: var(--color-text);
}

.header.sticky .header-inner .nav li .dropdown li a:hover {
    color: #fff;
}

.header.sticky .header-inner .nav li.active a {
    color: #fff;
}

.header.sticky .header-inner {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    animation: fadeInDown 1s both 0.2s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

/*======================================
   Hero Area CSS
========================================*/
.hero-slider {
    background: #fff;
    overflow: hidden;
}

.hero-slider .single-slider {
    background-image: url('https://via.placeholder.com/1900x700');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 510px;
}

.hero-slider .text-inner {

}

.hero-slider .hero-text {
    padding: 0 30px;
    margin-top: 100px;
}

.hero-slider .hero-text h1 {
    line-height: 50px;
    font-size: 47px;
    font-weight: 700;
    color: var(--color-secondary-light);
    margin-bottom: 20px;
}

.hero-slider .hero-text h1 span {
    font-size: 20px;
    display: block;
    margin-bottom: 12px;
    color: var(--color-text);
    font-weight: 700;
    line-height: initial;
}

.hero-slider .hero-text p {
    color: var(--color-text);
    margin-bottom: 35px;
}

.hero-slider .hero-text .button {
    margin: 0;
}

.hero-slider .hero-text .btn {
    color: #fff;
    background: var(--color-secondary-light);
    padding: 13px 30px;
    line-height: initial;
    border: none;
    height: auto;
    z-index: 0;
}

.hero-slider .hero-text .btn:hover {
    color: #fff;
    background: linear-gradient(226.1deg, rgb(17, 160, 219) 0%, rgb(17, 160, 219) 101.24%);
}

/* Start Hero Area 2 CSS */
.hero-area2 {
    position: relative;
}

.hero-area2 .single-slider.overlay:before {
    background: var(--color-secondary-light);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
}

.hero-area2 .single-slider.overlay:hover:before {
    opacity: 0.9;
    visibility: visible;
    transform: scale(1);
}

.hero-area2 .single-slider {
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-area2 .single-slider .content {
    position: relative;
}

.hero-area2 .single-slider .content {
    width: 100%;
    padding: 15px;
    z-index: 2;
    transition: all 0.4s ease;
    text-align: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.hero-area2 .single-slider:hover .content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-area2 .single-slider .content .sub-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.hero-area2 .single-slider .content .title {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero-area2 .single-slider .content .des {
    color: #fff;
}

.hero-area2 .single-slider .content .button {
}

.hero-area2 .single-slider .content .button .btn {
    padding: 9px 25px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    margin-top: 25px;
}

.hero-area2 .single-slider .content .button .btn:hover {
    background: #fff;
    color: var(--color-text);
    border-color: transparent;
}

/* Owl Nav CSS */
.hero-area2 .owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -30px;
}

.hero-area2 .owl-carousel .owl-nav div {
    height: 60px;
    width: 40px;
    line-height: 60px;
    text-align: center;
    background: var(--color-secondary-light);
    color: #fff;
    font-size: 14px;
    position: absolute;
    margin: 0;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 0;
}

.hero-area2 .owl-carousel .owl-nav div:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

.hero-area2 .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 0;
}

.hero-area2 .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0;
}

/* Hero Area 3 */
.hero-area3 {
}

.hero-area3 .big-content {
    background-image: url('https://via.placeholder.com/850x530');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 511px;
    margin-top: 30px;
    position: relative;
}

.hero-area3 .big-content .inner {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 0 50px 0 360px;
    transform: translateY(-50%);
}

.hero-area3 .big-content .title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 37px;
}

.hero-area3 .big-content .title span {
    color: var(--color-secondary-light);
}

.hero-area3 .big-content .des {
}

.hero-area3 .big-content .button {
    margin-top: 40px;
    display: block;
}

.hero-area3 .big-content .button .btn {
    color: #fff;
}

.hero-area3 .small-content {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 30px;
    position: relative;
}

.hero-area3 .small-content.first {
    background-image: url('https://via.placeholder.com/450x300');
}

.hero-area3 .small-content.secound {
    background-image: url('https://via.placeholder.com/450x300');
}

.hero-area3 .small-content .inner {
    padding: 30px;
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
}

.hero-area3 .small-content .title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.hero-area3 .small-content .title span {
    color: var(--color-secondary-light);
}

.hero-area3 .small-content .des {
}

.hero-area3 .small-content .button {
    margin-top: 10px;
    display: block;
}

.hero-area3 .small-content .button .btn {
    background: transparent;
    padding: 0;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-text);
    font-size: 13px;
}

.hero-area3 .small-content .button .btn:hover {
    color: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
}

/* Hero Area 4 */
.hero-area4 .big-content {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 510px;
    margin-top: 30px;
    position: relative;
}

.hero-area4 .big-content .inner {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 0 80px 0 50px;
    transform: translateY(-50%);
}

.hero-area4 .big-content .title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 35px;
}

.hero-area4 .big-content .title span {
    color: var(--color-secondary-light);
}

.hero-area4 .big-content .des {
}

.hero-area4 .big-content .button {
    margin-top: 40px;
    display: block;
}

.hero-area4 .big-content .button .btn {
    color: #fff;
}

.hero-area4 .owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -20px;
}

.hero-area4 .owl-carousel .owl-nav div {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--color-secondary-light);
    color: #fff;
    font-size: 14px;
    position: absolute;
    margin: 0;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 0;
}

.hero-area4 .owl-carousel .owl-nav div:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

.hero-area4 .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 0;
}

.hero-area4 .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0;
}

/*======================================
   End Hero Area CSS
========================================*/

/*======================================
   Start Small Banner CSS
========================================*/
.small-banner {
    padding: 30px 0;
    padding-bottom: 0;
}

.small-banner .single-banner {
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: 1px 1px 5px 1px #ccc;
    border-radius: 5px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.small-banner .single-banner img {
    width: 150px;
    height: 200px;
    transition: all 0.4s ease;
}

.small-banner .single-banner .content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 20px;
}

.small-banner .single-banner h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--color-text);
}

.small-banner .single-banner h3 span {
    color: var(--color-secondary-light);
}

.small-banner .single-banner p {
    font-size: 14px;
    color: var(--color-secondary-light);
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.small-banner .single-banner a {
    color: var(--color-text);
    margin-top: 22px;
    display: block;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-text);
}

.small-banner .single-banner a:hover {
    color: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
}

/*======================================
   End Small Banner CSS
========================================*/


/*======================================
   Start Mid Banner CSS
========================================*/
.medium-banner {
    padding: 30px 10px;
    background-color: #f1f1f1;
}

.medium-banner .single-banner {
    position: relative;
    height: 600px;
    border: 1px solid #eee;
}

.medium-banner .single-banner img {
    height: 100%;
    width: 100%;
    transition: all 0.4s ease;
}

.medium-banner .single-banner .content {
    padding-left: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.medium-banner .single-banner h3 {
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 30px;
    text-shadow: 0 0 5px #000;
}

.medium-banner .single-banner h3 span {
    color: var(--color-secondary-light);
}

.medium-banner .single-banner p {
    font-size: 13px;
    color: var(--color-secondary-light);
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.medium-banner .single-banner a {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    user-select: none;
    font-size: 13px;
    background: var(--color-secondary-light);
    color: #fff !important;
    padding: 10px 27px;
    border-radius: 30px;
    margin-top: 25px;
    text-transform: uppercase;
    border: 2px solid #fff;
}

.medium-banner .single-banner a:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

/*======================================
   End Mid Banner CSS
========================================*/

/*======================================
   Start Most Popular CSS
========================================*/
.pro-tab-viewmore-wrap {
    position: relative;
    text-align: center;
}

.pro-tab-viewmore-wrap .pro-viewmore {
    position: absolute;
    right: 40px;
    top: 0;
}

/* Slider Nav */
.most-popular .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
}

.most-popular .owl-carousel .owl-nav div {
    height: 60px;
    width: 30px;
    line-height: 58px;
    background: #fff;
    color: var(--color-text);
    position: absolute;
    margin: 0;
    border-radius: 0;
    font-size: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px var(--color-text) 3331c;
}

.most-popular .owl-carousel .owl-nav div:hover {
    color: #fff;
    background: var(--color-secondary-light);
}

.most-popular .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 0;
}

.most-popular .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0;
}

/*======================================
   End Most Popular CSS
========================================*/

/*======================================
   Start Single Product CSS
========================================*/
.product-area .nav-tabs {
    text-align: center;
    display: inline-block;
    width: 100%;
    border: none;
    white-space: nowrap;
}

.product-area .nav-tabs .nav-item {
    margin-bottom: -1px;
    display: inline-block;
}

.product-area .nav-tabs li a {
    color: var(--color-text);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    font-weight: 500;
    background: #fff;
    color: var(--color-text);
    padding: 3px 14px;
    border-radius: 3px;
    font-size: 13px;
}

.product-area .nav-tabs li:last-child a {
    border-color: transparent;
}

.product-area .nav-tabs li a i {
    margin-right: 10px;
}

.product-area .nav-tabs li a.active,
.product-area .nav-tabs li:hover a {
    background: var(--color-secondary-light);
    color: #fff;
    border-color: transparent;
}

/* Sinlge Product */
.single-product {
    margin-top: 20px;
    border: 1px solid #ddd;
    /*height: 320px;*/
    background: #fff;
    /*padding: 0px 15px 10px;*/
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    width: 100%;
    vertical-align: top;
}

.single-product:hover {
    border: 1px solid var(--color-secondary-light);
}

.single-product .product-img {
    cursor: pointer;
    display: block;
    /*position: absolute;*/
    /*inset: 0px;*/
    box-sizing: border-box;
    margin: 0px;

    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.single-product .product-img a {
    /*display: block;*/
    /*position: relative;*/
    /*min-width: 8rem;*/
    /*width: 100%;*/
    /*height: 100%;*/
    display: block;
    width: 100%;
    height: auto;
}

.single-product .product-img a img {
    /*box-sizing: border-box;*/
    /*padding: 0px;*/
    /*border: none;*/
    /*margin: auto;*/
    /*display: block;*/
    /*width: 0px;*/
    /*height: 0px;*/
    /*min-width: 100%;*/
    /*max-width: 100%;*/
    /*min-height: 100%;*/
    /*max-height: 100%;*/
    /*object-fit: contain;*/
    /*object-position: center center;*/

    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease-in-out;
}

.single-product img.hover-img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;

    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease-in-out;
}

/*.single-product:hover .default-img {*/
/*    opacity: 0 !important;*/
/*}*/

.single-product:hover .hover-img {
    opacity: 1 !important;
}

span.product-offer {
    width: 55px;
    height: 25px;
    line-height: 25px;
    padding: 0;
    font-weight: normal;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
    text-transform: capitalize;
    color: #fff;
    background-color: #e74847;
    font-size: 12px;
    text-align: center;
    border-radius: 2px;
}

span.product-offer:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 10px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 7px solid #e74847;
}

.single-product .product-img a span.new {
    background-color: var(--color-secondary-light);
    display: inline-block;
    font-size: 11px;
    color: #fff;
    right: 20px;
    top: 20px;
    padding: 1px 16px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    border-radius: 30px;
    height: 26px;
    line-height: 24px;
}

.single-product .product-img a span.hot {
    background-color: #2cc95b;
    display: inline-block;
    font-size: 11px;
    color: #fff;
    right: 20px;
    top: 20px;
    padding: 1px 16px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    border-radius: 30px;
    height: 26px;
    line-height: 24px;
}

.single-product .product-img a span.out-of-stock {
    background-color: #ed1b24;
    display: inline-block;
    font-size: 11px;
    color: #fff;
    right: 20px;
    top: 20px;
    padding: 1px 16px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    border-radius: 30px;
    height: 26px;
    line-height: 24px;
}

.single-product .product-action {
    transition: all 250ms ease-out;

    background: #fff;
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: absolute;
    right: 10px;
    left: 0;
    bottom: -50px;
    z-index: 99;
    border-radius: 3px;
}

.single-product:hover .product-action {
    bottom: 10px;
}

.single-product .product-action a,
.single-product .product-action button {
    border-radius: 5px;
    border: 1px solid #ccc;
    display: inline-block;
    position: relative;
    top: 4px;
}

.single-product .product-action a span {
    visibility: hidden;
    position: absolute;
    background: var(--color-secondary-light) !important;
    color: #fff !important;
    text-align: center;
    padding: 5px 12px;
    z-index: 3;
    opacity: 0;
    transition: opacity .6s, margin .3s;
    font-size: 11px;
    right: 0;
    line-height: 14px;
    top: -12px;
    margin-top: -5px;
    margin-right: 0;
    display: inline-block;
    width: 120px;
    border-radius: 15px 0 0 15px;
}

.single-product .product-action a span::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -12px;
    border: 6px solid var(--color-secondary-light);
    border-left: 0px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

a.addToCartBtn {
    white-space: nowrap;
}

.single-product .product-action a.addToCartBtn {
    background: var(--color-secondary-light);
    color: #fff !important;
    border: none !important;
    line-height: 16px;
}

a.addToCartBtn.loading:after {
    opacity: 1;
    --wd-anim-state: running;
}

@keyframes wd-rotate {
    100% {
        transform: rotate(360deg)
    }
}

a.addToCartBtn.loading:after {
    opacity: 1;
    --wd-anim-state: running
}

a.addToCartBtn:after {
    position: absolute;
    top: calc(50% - 9px);
    inset-inline-start: calc(50% - 9px);
    opacity: 0;
    transition: opacity .2s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-left-color: currentColor;
    border-radius: 50%;
    vertical-align: middle;
    animation: wd-rotate 450ms infinite linear var(--wd-anim-state, paused);
}

.single-product .product-action a:hover {
    color: var(--color-secondary-light);
    border: 1px solid var(--color-secondary-light);
}

.single-product .product-action a:hover span {
    visibility: visible;
    opacity: 1;
    color: var(--color-text);
    background: #fff;
    margin-top: -12px;
}

.single-product .product-action.pro-action-width-dec a {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.single-product .product-action.pro-action-width-dec a i {
    line-height: 30px;
}

.single-product .product-action.pro-action-width-dec-2 {
    bottom: 45px;
}

.single-product a.quickview {
    font-size: 12px;
    text-transform: capitalize;
    background: #fff;
    border: 1px #ddd solid;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -48px;
    margin-top: -12px;
    height: 30px;
    max-width: 100px;
    line-height: 22px;
    text-align: center;
    transform: scale(0);
    visibility: hidden;
    transition: 0.3s ease;
}

.single-product:hover a.quickview {
    transform: scale(1);
    visibility: visible;
    transition: 0.3s ease;
}

.single-product .product-content {
    margin: 6px 10px 0;
    text-align: center;
    /*height: 70px;*/
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.single-product .product-img:hover.default-overlay::before {
    background-color: rgba(38, 38, 38, 0.2);
    z-index: 9;
    transition: all 250ms ease-out;
    pointer-events: none;
    opacity: 1;
}

.single-product .product-img:hover.default-overlay.metro-overlay::before {
    background-color: rgba(38, 38, 38, 0.4);
    z-index: 9;
    transition: all 250ms ease-out;
    pointer-events: none;
    opacity: 1;
}

.single-product .product-content h3 {
    line-height: 22px;
    margin-bottom: 10px;
}

.single-product .product-content h3 a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    white-space: normal;

    margin: 0px 0px 8px;
    transition: all 0.3s ease 0s;

    text-overflow: ellipsis;
    overflow: hidden;

    max-height: 4.4rem;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.single-product .product-content h3 a:hover {
    color: var(--color-secondary-light);
}

.single-product .product-content .product-price {
    margin: 6px 0;
}

.single-product .product-content .product-price ins {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-secondary-light);
    line-height: 14px;
}

.product-content .product-price del.old {
    text-decoration: line-through;
    opacity: .6;
    margin-right: 2px;
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
    color: var(--color-dark);
}


/*======================================
   Start Shop Sidebar CSS
========================================*/
.shop-sidebar .widget {
    margin-top: 30px;
    border: 1px solid var(--color-secondary-light);
}

.shop-sidebar .widget:first-child {
    margin-top: 0;
}

.shop-sidebar .widget .widget-title {
    position: relative;
    font-size: var(--font-size-b1);
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 10px 0;
    display: block;
    border-bottom: 1px solid var(--color-secondary-light);
    padding: 3px 12px;
}

.shop-sidebar .widget .widget-title:before {
    position: absolute;
    content: "";
    width: 104px;
    height: 1px;
    bottom: -1px;
    left: 0;
    background: #FE9812;
}

/* Shop Price */
.shop .range .price-filter {
    display: block;
    margin-top: 20px;
}

.shop .range #slider-range {
    box-shadow: none;
    border: none;
    height: 4px;
    background: var(--color-secondary-light);
    color: var(--color-secondary-light);
    border-radius: 0px;
}

.shop .range #slider-range .ui-slider-range {
    box-shadow: none;
    background: var(--color-secondary-dark);
    border-radius: 0px;
    border: none;
}

.shop .range .ui-slider-handle.ui-state-default.ui-corner-all {
    width: 14px;
    height: 14px;
    line-height: 10px;
    background: var(--color-secondary-dark);
    border: none;
    border-radius: 100%;
    top: -5px;
}

.shop .range .label-input {
    margin-top: 15px;
}

.shop .range .label-input span {
    margin-right: 5px;
    color: #282828;
}

.shop .range .ui-slider-handle.ui-state-default.ui-corner-all {
    background: var(--color-secondary-light);
    color: var(--color-secondary-light);
    cursor: pointer;
}

.shop .range .label-input input {
    border: none;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-secondary-dark);
    background: transparent;
}

.shop .range .check-box-list {
    margin-top: 15px;
}

.shop .range .check-box-list li {
    margin-bottom: 5px;
}

.shop .range .check-box-list li:last-child {
    margin: 0;
}

.shop .range .check-box-list li label input {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: 1px;
}

.shop .range .check-box-list li label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    cursor: pointer;
}

.shop .range .check-box-list .count {
    margin-left: 5px;
    color: var(--color-text);
}

/* Category List */
.shop-sidebar .widget-body {
    padding-left: 0;
    overflow-y: auto;
    max-height: 350px;
    background-color: #fff;
    margin: 10px 0 1rem 0;
}

.widget-body::-webkit-scrollbar {
    width: 10px;
}

.widget-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.widget-body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px #439DDF;
}


.shop-sidebar .widget-body li {
    margin: 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
}

.category-count {
    padding-inline: 5px;
    min-width: 30px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 35px;
    color: #ccc;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
    flex: 0 0 auto;
    position: absolute;
    right: 10px;
    top: 6px;
}

.shop-sidebar .widget-body li label {
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
    color: #ccc;
    position: relative;
}

.shop-sidebar .widget-body li label svg.checked {
    display: none;
}

.shop-sidebar .widget-body li label input[type="radio"]:checked ~ span svg.checked {
    display: inline-block;
}

.shop-sidebar .widget-body li label input[type="radio"]:checked ~ span {
    color: var(--color-secondary-light);
}

.shop-sidebar .widget-body li a:hover label {
    color: var(--color-secondary-light);
}

.shop-sidebar .widget-body li a:hover label svg.checked {
    display: inline-block;
}

.shop-sidebar .widget-body li a:hover {
    color: var(--color-secondary-light);
    background-color: #f1f1f1;
}

.shop-sidebar .widget-body li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.shop-sidebar .widget-body li a {
    display: block;
    color: var(--color-text);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    padding: 5px 15px;
}

/*.customScroll {*/
/*    overflow-y: auto;*/
/*    max-height: 350px;*/
/*    background-color: #fff;*/
/*    margin: 5px 0 5px 0;*/
/*}*/

/* Recent Post */
.shop-sidebar .sidebar-product {
    position: relative;
    padding: 10px 5px;
    border-bottom: 1px solid #ddd;
}

.shop-sidebar .sidebar-product:last-child {
    padding-bottom: 0px;
    border: none;
}

.shop-sidebar .sidebar-product .image img {
    height: 100%;
    width: auto;
    display: block;
    overflow: hidden;
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 3px;
}

.shop-sidebar .sidebar-product .product-content {
    padding-left: 85px;
}

.shop-sidebar .sidebar-product .product-content h5 {
    line-height: 18px;
    margin-bottom: 0;
}

.shop-sidebar .sidebar-product .product-content h5 a {
    font-weight: 500;
    font-size: 12px;
    display: block;

    transition: color 0.3s ease 0s;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.shop-sidebar .sidebar-product .product-content h5 a:hover {
    color: var(--color-secondary-light);
}

.shop-sidebar .sidebar-product .product-content .product-price {
    display: block;
    margin: 5px 0 0px 0;
    font-size: 12px;
}

.shop-sidebar .sidebar-product .product-content .product-price ins {
    font-weight: bold;
    color: var(--color-secondary-light);
    line-height: 14px;
}

.shop-sidebar .sidebar-product .reviews li {
    display: inline-block;
}

.shop-sidebar .sidebar-product .reviews li i {
    color: #999;
}

.shop-sidebar .sidebar-product .reviews li.yellow i {
    color: var(--color-secondary-light);
}


/*======================================
   Shop Topbar
========================================*/
.shop-top {
    /*clear: both;*/
    /*border-bottom: 1px solid #f6f7fb;*/
    /* padding: 10px 20px; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.single-shorter {
    display: flex;
    margin-right: 10px;
}

.single-shorter:last-child {
    margin: 0;
}

.single-shorter label {
    display: inline-block;
    float: left;
    margin: 4px 5px 0 0;
    font-weight: 500;
}

.single-shorter option {
}

.nice-select {
    clear: initial;
    display: inline-block;
    margin: 0;
    border: 1px solid #eee;
    border-radius: 0px;
    height: auto;
    width: auto;
}

.nice-select::after {
    border-color: var(--color-text);
}

.nice-select .list {
    border-radius: 0px;
}

.nice-select .option.selected {
    font-weight: 500;
}

.nice-select .list li {
    color: var(--color-text);
    border-radius: 0px;
}

.nice-select .list li:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

.view-mode li {
    display: inline-block;
    margin-right: 5px;
}

.view-mode li:last-child {
    margin: 0;
}

a.view-mode {
    width: 40px;
    height: 29px;
    background: transparent;
    border: 1px solid #77777775;
    text-align: center;
    display: block;
    line-height: 32px;
    color: var(--color-text);
    border-radius: 3px;
    margin-left: 5px;
}

a.view-mode.active,
a.view-mode:hover {
    background: var(--color-secondary-light);
    color: #fff;
    border-color: transparent;
}


/*======================================
   Start Shop Single CSS
========================================*/
.shop.single {
    padding: 5px;
    background-color: #fff;
    margin-bottom: 15px;
}

.shop.single .product-gallery {
    margin-top: 0;
    border: 1px solid #eee;
    height: 100%;
}

.shop.single .flexslider-thumbnails {
    position: relative;
}

.shop.single .product-gallery .slides img.slide-main-image {
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease-in-out;
}

.shop.single .product-gallery .slides li {
    position: relative;
}

.shop.single .product-gallery .slides li img {
    width: 100%;
}

.shop.single .flex-control-nav {
    margin-top: 15px;
}

.shop.single .flex-control-thumbs li {
    width: 20%;
    position: relative;
    margin: 0 8px 10px -3px;
}

.shop.single .flex-control-thumbs li img {
    padding: 0;
    border: 1px solid transparent;
}

.shop.single .flex-control-thumbs li img.flex-active {
    border-color: var(--color-secondary-light);
}

.shop.single .flex-direction-nav {
    display: none;
}

.shop.single .product-des {
    font-size: 14px;
    color: #000;
    background-color: #fff;
    margin-top: 0;
    padding: 10px;
    margin-bottom: 20px;
}

.shop.single .product-des .short h4 {
    font-size: 20px;
    font-weight: 600;
    margin: -5px 0 0;
    line-height: 28px;
}

.shop.single .product-des .total-review {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    display: inline-block;
}

.shop.single .product-des .total-review:hover {
    color: var(--color-secondary-light);
}

.shop.single .product-des .rating {
    margin: 5px 0;
    padding: 0;
    display: inline-block;
}

.shop.single .product-des .rating li {
    display: inline-block;
}

.shop.single .product-des .rating li i {
    color: var(--color-warning);
}

.shop.single .product-des .price {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.shop.single .product-des .price del {
    color: var(--color-text-light);
}

.shop.single .product-des .price ins {
    display: inline-block;
    margin-right: 15px;
    color: var(--color-secondary-light);
}

.shop.single .product-des .product-buy {
    margin-top: 30px;
}

.shop.single .product-des .product-buy {
}

.shop.single .product-des .color {
    display: inline-block;
    margin-right: 50px;
}

.shop.single .product-des .color h4 {
    font-size: 18px;
    font-weight: 600;
}

.shop.single .product-des .color h4 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.shop.single .product-des .color ul {
    margin-top: 10px;
}

.shop.single .product-des .color ul li {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .product-des .color ul li:last-child {
    margin-right: 0;
}

.shop.single .product-des .color ul li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    background: var(--color-secondary-light);
}

.shop.single .product-des .color ul li a i {
    font-size: 11px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.shop.single .product-des .color ul li a:hover i {
    opacity: 1;
    visibility: visible;
}

.shop.single .product-des .color ul li .one {
    background: #3498db;
}

.shop.single .product-des .color ul li .two {
    background: var(--color-secondary-light);
}

.shop.single .product-des .color ul li .three {
    background: #8e44ad;
}

.shop.single .product-des .color ul li .four {
    background: #2ecc71;
}


/* Size */
.shop.single .product-des .size {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.shop.single .product-des .size h4 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
}

.shop.single .product-des .size ul {
    display: inline-block;
    margin-left: 5px;
    padding: 0;
}

.shop.single .product-des .size ul li {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .product-des .size ul li:last-child {
    margin-right: 0;
}

.shop.single .product-des .size ul li a {
    display: block;
    height: 30px;
    /*width: 36px;*/
    border: 1px solid var(--color-secondary-light);
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 3px;
}

.shop.single .product-des .size ul li a:hover {
    color: var(--color-secondary-light);
}

/*.shop.single .quantity {*/
/*    display: inline-block;*/
/*    margin-right: 10px;*/
/*}*/

.shop.single .quantity h6 {
    display: inline-block;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
}

.shop.single .quantity .input-group {
    width: 151px;
    display: inline-block;
}

.shop.single .quantity .button {
    display: inline-block;
    position: absolute;
    top: 0;
    display: inline-block;
}

.shop.single .quantity .button.minus {
    left: 0;
    border-radius: 0;
    overflow: hidden;
}

.shop.single .quantity .button.plus {
    right: 0;
    border-radius: 0;
    overflow: hidden;
}

.shop.single .quantity .button .btn {
    padding: 0;
    width: 35px;
    height: 45px;
    line-height: 45px;
    border-radius: 0px;
    background: transparent;
    color: #282828;
    font-size: 12px;
    border: none;
}

.shop.single .quantity .button .btn:hover {
    color: var(--color-secondary-light);
}

.shop.single .quantity .input-number {
    border: 1px solid #ddd;
    width: 100%;
    text-align: center;
    height: 45px;
    border-radius: 0;
    overflow: hidden;
    padding: 0 38px;
}

.shop.single .addToCart .btn {
    height: 45px;
    width: auto;
    padding: 0 42px;
    line-height: 45px;
    text-align: center;
    text-transform: capitalize;
    margin-right: 5px;
    border-radius: 0px;
    background: var(--color-secondary-light);
    color: #fff;
    display: inline-block;
    font-weight: 500;
}

.shop.single .addToCart .btn:hover {
    color: #fff;
    background: linear-gradient(226.1deg, rgb(62, 184, 234) 0%, rgb(17, 160, 219) 101.24%);
}

.shop.single .addToCart .btn.min {
    padding: 0 20px;
    font-size: 17px;
    position: relative;
    top: 1px;
    line-height: 45px;
}

.shop.single .cat {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-top: 30px;
}

.shop.single .cat a {
    display: inline-block;
    margin-left: 10px;
}

.shop.single .cat a:hover {
    color: var(--color-secondary-light);
}

.shop.single .availability {
    color: var(--color-text);
    font-size: 14px;
    margin-top: 6px;
}


/* Product Tab */
.shop.single .product-info {
    margin-top: 50px;
}

.shop.single .nav-tabs {
    border: none;
}

.shop.single .nav-tabs li {
    margin-right: 10px;
}

.shop.single .nav-tabs li:last-child {
    margin-right: 0;
}

.shop.single .nav-tabs li a {
    border-radius: 0px;
    background: #fff;
    color: var(--color-text);
    padding: 10px 30px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #eee;
}

.shop.single .nav-tabs li a i {
    margin-right: 10px;
}

.shop.single .nav-tabs li a.active,
.shop.single .nav-tabs li:hover a {
    background: var(--color-secondary-light);
    color: #fff;
    border-color: transparent;
}

.shop.single .single-des {
    margin-top: 10px;
    border: 1px solid #ddd;
    padding: 10px;
}

.shop.single .single-des h4 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 22px;

}

.shop.single .single-des ul {
}

.shop.single .single-des ul li {
    color: #555;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.shop.single .single-des ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 9px;
    height: 7px;
    width: 7px;
    background: var(--color-secondary-light);
    border-radius: 50%;
}

.shop.single .single-des p {
}

.shop.single table {
    width: 100% !important;
    font-size: 13px !important;
}

.shop.single table tbody {

}

.shop.single table tbody tr {

}

.shop.single table tbody td {
    border: 1px solid #e6e6e6 !important;
    padding: 10px !important;
    color: #000 !important;
}

.shop.single table tbody strong {
}

.shop.single .ratting-main {
}

.shop.single .avg-ratting {
    margin-bottom: 20px;
}

.shop.single .avg-ratting h4 {
    font-size: 18px;
    margin: 0;
}

.shop.single .avg-ratting h4 span {
    font-size: 14px;
}

.shop.single .single-rating {
    margin-bottom: 20px;
}

.shop.single .single-rating:last-child {
    margin: 0;
    border: none;
    padding: 0;
}

.shop.single .rating-author {
    float: left;
    margin-right: 10px;
    padding: 20px;
    padding-right: 10px;
}

.shop.single .rating-author img {
    width: 60px;
    border-radius: 100%;
    height: 60px;
}

.shop.single .rating-des {
    padding-left: 72px;
    background: #f9f8f8;
    padding: 17px 20px 17px 107px;
}

.shop.single .rating-des .ratings {
    margin: 0;
}

.shop.single .rating-des h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}

.shop.single .ratting-main .single-rating ul {
}

.shop.single .ratting-main .single-rating ul li {
    display: inline-block;
}

.shop.single .ratting-main .single-rating ul li i {
    color: var(--color-secondary-light);
    font-size: 14px;
}

.shop.single .review-inner label {
    display: inline-block;
    margin: 0 5px 0 0;
}

.shop.single .review-inner .ratings {
    overflow: visible;
    display: inline-block;
    margin: 0;
}

.shop.single .review-inner .ratings ul {
    display: inline-block;
}

.shop.single .ratting-main .single-rating ul {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .ratings .rate-count {
    display: inline-block;
    color: var(--color-text);
    font-size: 13px;
}

.shop.single .comment-review {
    margin-bottom: 30px;
}

.shop.single .comment-review .add-review {
    margin-top: 30px;
}

.shop.single .comment-review .add-review h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px;
}

.shop.single .comment-review .add-review p {
    color: var(--color-text);
}

.shop.single .comment-review h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 20px;
}

.shop.single .comment-review .review-inner {
    margin-bottom: 15px;
    display: block;
}

.shop.single .comment-review .rating li {
    display: inline-block;
}

.shop.single .comment-review .rating li i {
    color: var(--color-secondary-light);
    font-size: 14px;
}

.shop.single .rating-des p {
    margin-top: 5px;
}

.shop.single .avg-ratting h4 {
    font-size: 20px;
    color: var(--color-text);
}

.shop.single .avg-ratting {
}

.shop.single .form .form-group input {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    resize: none;
    border-radius: 0;
    color: var(--color-text);
}

.shop.single .form .form-group button {
    border: none;
    padding: 17px 50px;
}

.shop.single .form .form-group textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    resize: none;
    border-radius: 0;
    color: var(--color-text);
}

.shop.single .form .form-group label {
    color: var(--color-text);
    position: relative;
}

.shop.single .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.single .review-panel {
    margin-top: 35px;
}

/*======================================
   End Shop Single CSS
========================================*/

/*======================================
   Start Shop Home List CSS
========================================*/
.shop-home-list {

}

.shop-home-list .shop-section-title {
    margin-bottom: 5px;
}

.shop-home-list .shop-section-title h2 {
    font-size: 22px;
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.shop-home-list .shop-section-title h2::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    background: var(--color-secondary-light);
    left: 0;
    bottom: -1px;
}

.shop-home-list .single-list {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    padding: 8px;
    /*height: 16rem;*/
    box-shadow: 1px 1px 2px #f1f1f1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background: #fff;
    border-radius: 3px;

}

.shop-home-list .single-list .list-image {
    position: relative;
    width: 50%;
}

.shop-home-list .single-list .right-side {
    position: relative;
    width: 50%;
}

.shop-home-list .single-list .list-image.overlay:before {
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.shop-home-list .single-list .list-image.overlay:hover:before {
    opacity: 0.3;
    visibility: visible;
}

.shop-home-list .single-list .list-image .buy {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    background: var(--color-secondary-light);
    border-radius: 100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    text-align: center;
    transition: all 0.4s ease;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
}

.shop-home-list .single-list .list-image .buy:hover {
    background: #fff;
    color: var(--color-text);
}

.shop-home-list .single-list .list-image:hover .buy {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shop-home-list .single-list .no-padding {
    padding-right: 0px;
}

.shop-home-list .single-list img {
    visibility: inherit;
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    padding: 0;
    border: none;
    margin: auto;
    display: block;
    width: 0;
    height: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

.shop-home-list .single-list .content {
    text-align: center;
    width: 100%;
}

.shop-home-list .single-list .content .title {
    line-height: 18px;
    margin-bottom: 0;
}

.shop-home-list .single-list .content .title a {
    font-size: 14px;
    color: var(--color-text);
    font-weight: normal;
    text-align: center;

    transition: all 0.3s ease 0s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.shop-home-list .single-list .content a:hover {
    color: var(--color-secondary-light);
}

.shop-home-list .single-list .content ins {
    margin-top: 15px;
    font-weight: 500;
    display: inline-block;
    color: #fff;
    padding: 2px 18px;
    border-radius: 30px;
    font-size: 14px;
    background: var(--color-primary);
}

/*.shop-home-list .single-list .content ins {*/
/*    font-size: 16px;*/
/*    font-weight: bold;*/
/*    background: rgb(255, 87, 34);*/
/*    color: #fff;*/
/*    !*color: var(--color-secondary-light);*!*/
/*    line-height: 14px;*/
/*}*/
.shop-home-list .single-list .content .price {
    text-decoration: line-through;
    /*opacity: .8;*/
    font-size: 16px;
    /*font-weight: 400;*/
    /*margin-right: 2px;*/
    /*margin-left: 10px;*/
    color: var(--color-dark);
    margin-bottom: 10px;
}

/*======================================
   End Shop Home List CSS
========================================*/

/*======================================
   Start Shopping Cart CSS
========================================*/
.table.shopping-summery {
    background: #fff;
}

.shopping-cart {
    /*background: #f6f6f6;*/
    padding: 5px 0 20px;
}

.shopping-summery thead .main-hading {
    padding: 0 50px;
}

.shopping-summery thead {
    background: var(--color-secondary-light);
    color: #fff;
}

.shopping-summery thead tr th {
    border: none;
    font-weight: 600;
    text-align: center;
}

.shopping-summery tbody tr {
    margin-top: 20px;
}

.shopping-summery tbody tr img {
    border-radius: 0;
    width: 80px;
    height: 80px;
}

.shopping-summery tbody tr:last-child {
    border: none;
}

.shopping-summery tbody .product-name a {
    font-weight: normal;
    color: #282828;
    font-size: 16px;
}

.shopping-cart .table p {
    font-size: 14px;
    color: var(--color-text);
}

.shopping-summery tbody .product-name a:hover {
    color: var(--color-secondary-light);
}

.shopping-summery tbody .product img {
    max-width: 70px;
    /*border-radius: 100%;*/
    max-height: 65px;
    border: 1px solid #e6e6e6;
    padding: 4px;
}

.shopping-summery tbody .product:hover img {
    border-color: var(--color-secondary-light);
    transform: rotate(360deg);
}

.shopping-cart .border {

}

.shopping-cart .table .remove-icon {
    font-size: 16px;
}

.shopping-cart .table td {
    vertical-align: middle;
    border-top: 1px solid #eee;
    padding: 7px;
    text-align: left;
}

.shopping-summery tbody .price {
    text-align: center;
}

.shopping-summery tbody .price span {
}

.shopping-cart tbody .qty .input-group {
    width: 120px;
    display: inline-block;
}

.shopping-cart .qty .button {
    display: inline-block;
    position: absolute;
    top: 0;
}

.shopping-cart .qty .button.minus {
    left: 0;
    border-radius: 0;
    overflow: hidden;
}

.shopping-cart .qty .button.plus {
    right: 0;
    border-radius: 0;
    overflow: hidden;
}

.shopping-cart .qty .button .btn {
    padding: 0;
    width: 44px;
    height: 47px;
    line-height: 50px;
    border-radius: 0px;
    background: transparent;
    color: #282828;
    border: none;
    font-size: 12px;
}

.shopping-cart .qty .button .btn:hover {
    color: var(--color-secondary-light);
}

.shopping-cart .qty .input-number {
    border: 1px solid #eceded;
    width: 100%;
    text-align: center;
    height: 47px;
    border-radius: 0;
    overflow: hidden;
    padding: 0px 45px;
}

.shopping-summery tbody .total-amount {
    text-align: center;
}

.shopping-summery tbody .total-amount span {
}

.shopping-summery tbody .action {
    text-align: center;
}

.shopping-summery tbody .action a:hover {
    color: var(--color-secondary-light);
}

.shopping-cart .total-amount {
    /*margin-top: 10px;*/
    /*text-align: right;*/
}

.shopping-cart .total-amount .left {
}

.shopping-cart .total-amount .left .coupon {
}

.shopping-cart .total-amount .left .coupon form {
}

.shopping-cart .total-amount .left .coupon form input {
    width: 220px;
    display: inline-block;
    height: 48px;
    color: var(--color-text);
    padding: 0px 20px;
    border: none;
    box-shadow: 0px 0px 5px #0000000a;
}

.shopping-cart .total-amount .left .coupon form .btn {
    display: inline-block;
    height: 48px;
    border: navajowhite;
    margin-left: 4px;
    color: var(--color-text);
    background: #fff;
    box-shadow: 0px 0px 5px #00000012;
}

.shopping-cart .total-amount .left .coupon form .btn:hover {
    color: #fff;
    background: linear-gradient(226.1deg, rgb(17, 160, 219) 0%, rgb(17, 160, 219) 101.24%);
}

.shopping-cart .total-amount .left label {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
}

.shopping-cart .total-amount .left .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
}

.shopping-cart .total-amount .left .checkbox label {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    position: relative;
    padding-left: 30px;
}

.shopping-cart .total-amount .left .checkbox label:hover {
    cursor: pointer;
}

.shopping-cart .total-amount .left .checkbox label input {
    display: none;
}

.shopping-cart .total-amount .left .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid #555555;
    border-radius: 0px;
}

.shopping-cart .total-amount .left .checkbox label::after {
    position: absolute;
    content: "\f00c";
    font-family: "Fontawesome";
    top: 0;
    width: 22px;
    height: 22px;
    line-height: 24px;
    left: 3px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.4s ease;
    display: block;
    font-size: 11px;
}

.shopping-cart .total-amount .left .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shopping-cart .total-amount .right {
    /*padding-left: 100px;*/
}

.shopping-cart .total-amount .right ul {

}

.shopping-cart .total-amount .right ul li {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 12px;
}

.shopping-cart .total-amount .right ul li.last {
    padding-top: 12px;
    border-top: 1px solid #c8c8c8;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 400;
}

.shopping-cart .total-amount .right ul li span {
    display: inline-block;
    float: right;
}

.shopping-cart .total-amount .right .button5 .btn {
    text-align: center;
    border-radius: 0;
    width: 100%;
    margin-top: 10px;
    height: 46px;
    line-height: 24px;
    font-size: 13px;
    color: #fff;
}

.shopping-cart .total-amount .right .button5 .btn:hover {
    color: var(--color-secondary-light);
}


/*======================================
   End Shopping Cart CSS
========================================*/

/*======================================
   Start Checkout Form CSS
========================================*/
.shop.checkout {
    padding: 0;
    background: #fff;
    padding-top: 20px;
    padding-bottom: 50px;
}

.shop.checkout .checkout-form {
    margin-top: 30px;
    background: #fff;
    padding: 15px 30px;
    border: 1px solid #eee;
}

.shop.checkout .checkout-form h2 {
    font-size: 25px;
    color: var(--color-text);
    font-weight: 700;
    line-height: 27px;
}

.shop.checkout .checkout-form p {
    font-size: 16px;
    color: var(--color-text);
    /*font-weight: 400;*/
    /*margin-top: 10px;*/
    /*margin-bottom: 10px;*/
}

.shop.checkout .form {
}

.shop.checkout .form .form-group {
    margin-bottom: 25px;
}

.shop.checkout .form .form-group label {
    color: var(--color-text);
    position: relative;
}

.shop.checkout .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.checkout .form .form-group input {
    width: 100%;
    height: 40px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #fff;
}

.shop.checkout .form .form-group input:hover {

}

.shop.checkout .nice-select {
    width: 100%;
    height: 45px;
    line-height: 50px;
    margin-bottom: 25px;
    background: #F6F7FB;
    border-radius: 0px;
    border: none;
}

.shop.checkout .nice-select .list {
    width: 100%;
    height: 300px;
    overflow: scroll;
}

.shop.checkout .nice-select .list li {
}

.shop.checkout .nice-select .list li.option {
    color: var(--color-text);
}

.shop.checkout .nice-select .list li.option:hover {
    background: #F6F7FB;
    color: var(--color-text);
}

.shop.checkout .form .address input {
    margin-bottom: 15px;
}

.shop.checkout .form .address input:last-child {
    margin: 0;
}

.shop.checkout .form .create-account {
    margin: 0;
}

.shop.checkout .form .create-account input {
    width: auto;
    display: inline-block;
    height: auto;
    border-radius: 100%;
    margin-right: 3px;
}

.shop.checkout .form .create-account label {
    display: inline-block;
    margin: 0;
}

.shop.checkout .order-details {
    margin-top: 30px;
    background: #fff;
    padding: 15px 30px;
    border: 1px solid #eee;
}

.shop.checkout .widget {
    margin-bottom: 30px;
}

.shop.checkout .widget:last-child {
    margin: 0;
}

.shop.checkout .widget h2 {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--color-text);
    padding-bottom: 5px;
}

.shop.checkout .widget h2:before {
    position: absolute;
    content: "";
    left: 30px;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: var(--color-secondary-light);
}

.shop.checkout .widget .content ul {
    margin-top: 30px;
}

.shop.checkout .widget .content ul li {
    display: block;
    padding: 0px 30px;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 12px;
}

.shop.checkout .widget .content ul li span {
    display: inline-block;
    float: right;
}

.shop.checkout .widget .content ul li.last {
    padding-top: 12px;
    border-top: 1px solid #ebebeb;
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
}

.shop.checkout .widget .checkbox {
    text-align: left;
    margin: 0;
    padding: 0px 30px;
    margin-top: 30px;
}

.shop.checkout .widget.payement {
    padding: 0px 38px;
    text-align: center;
    margin-top: 30px;
}

.shop.checkout .widget.get-button {
    text-align: center;
    padding: 0px 35px;
}

.shop.checkout .widget.get-button .btn {
    height: 46px;
    width: 100%;
    line-height: 19px;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
}


/*======================================
   Login & Register CSS
========================================*/
{
    padding: 50px 0;
}

.login-form h2 {
    position: relative;
    font-size: 20px;
    color: var(--color-text);
    font-weight: 600;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 20px;
    text-align: center;
}

.login-form {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.login-form h2:before {
    position: absolute;
    content: "";
    left: 25%;
    bottom: 10px;
    height: 2px;
    width: 50%;
    background: var(--color-secondary-light);
}

.login-form p {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
}

.form {
    margin-top: 30px;
}

.form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.login-btn {
    margin: 15px 0;
}

.form .btn-login:hover {
    background: linear-gradient(226.1deg, rgb(17, 160, 219) 0%, rgb(17, 160, 219) 101.24%);
    color: #fff;
}

.login-form .checkbox {
    text-align: left;
    margin: 0;
    display: inline-block;
}

.login-form .checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    position: relative;
    padding-left: 20px;
}

.login-form .checkbox label:hover {
    cursor: pointer;
}

.login-form .checkbox label input {
    display: none;
}

.login-form .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border: 1px solid #555555;
    border-radius: 0px;
}

.login-form .checkbox label::after {
    position: absolute;
    content: "\f00c";
    font-family: "Fontawesome";
    width: 12px;
    height: 12px;
    line-height: 23px;
    left: 2px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.4s ease;
    display: block;
    font-size: 9px;
}

.login-form .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.login-form .lost-pass {
    display: inline-block;
    margin-left: 25px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
}

.login-form .lost-pass:hover {
    color: var(--color-secondary-light);
}

/*======================================
	End Login CSS
========================================*/

/*======================================
   Start Shop List CSS
========================================*/
.shop-list .list-content {
    margin-top: 50px;
}

.shop-list .list-content .product-price {
}

.shop-list .list-content .product-price span {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
}

.shop-list .list-content .title {
    line-height: 20px;
}

.shop-list .list-content .title a:hover {
    color: var(--color-secondary-light);
}

.shop-list .list-content .title a {
    font-size: 18px;
    font-weight: 600;
}

.shop-list .list-content .rating {
    margin: 5px 0 8px 0;
}

.shop-list .list-content .rating li {
    display: inline-block;
}

.shop-list .list-content .rating li i {
    color: var(--color-secondary-light);
}

.shop-list .list-content .rating li.total {
    color: var(--color-text);
    font-size: 12px;
    margin-left: 3px;
}

.shop-list .list-content .des {
}

.shop-list .list-content .btn:hover {
    background: linear-gradient(226.1deg, rgb(17, 160, 219) 0%, rgb(17, 160, 219) 101.24%);
    color: #fff;
    border-color: transparent;
}

/* Pagination CSS */
.pagination {
    text-align: left;
    margin: 50px 0 0 0;
    display: block;
}

.pagination.center {
    text-align: center;
}

.pagination .pagination-list li {
    margin-right: 5px;
    display: inline-block;
}

.pagination .pagination-list li:last-child {
    margin-right: 0px;
}

.pagination .pagination-list li a {
    background: #F6F7FB;
    color: var(--color-text);
    padding: 6px 18px;
    font-weight: 400;
    border: 1px solid #e1e1e1;
    font-size: 16px;
    border-radius: 0px;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
    background: var(--color-secondary-light);
    color: #fff;
    border-color: transparent;
}

.pagination .pagination-list li a i {
    font-size: 13px;
}

.pagination .pagination-list li a i {
}

.blog-grids.pagination {
    margin-top: 50px;
    text-align: center;
}

/*======================================
   End Shop List CSS
========================================*/

/*=============================
	Start Cowndown CSS
===============================*/
.cown-down {
    position: relative;
    height: 515px;
    overflow: hidden;
}

.cown-down .padding-right {
    padding-right: 0;
}

.cown-down .padding-left {
    padding-left: 0;
}

.cown-down .image img {
    width: 100%;
    height: 100%;
}

.cown-down .content {
    text-align: center;
    background: #FDFBEF;
    height: 100%;
    position: relative;
}

.cown-down .content .heading-block {
    position: absolute;
    left: 0;
    top: 26%;
    transform: translateY(-50%);
    padding: 75px;
}

.cown-down .content .small-title {
    font-size: 13px;
    color: #777;
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.cown-down .content .title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cown-down .content .price {
    margin-top: 35px;
    font-size: 35px;
    font-weight: 700;
    color: var(--color-secondary-light);
}

.cown-down .content .price s {
    margin-top: 35px;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
}

.cown-down .content .cdown {
    float: none;
    text-align: center;
    margin-top: 40px;
    width: 80px;
    display: inline-block;

}

.cown-down .content .cdown {
    text-align: center;
}

.cown-down .content .cdown {
    display: inline-block;
}

.cown-down .content .cdown span {
    color: var(--color-text);
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}

.cown-down .content .cdown p {
    font-size: 13px;
    color: var(--color-text);
    text-transform: uppercase;
}

/*=============================
	End Cowndown CSS
===============================*/

/*======================================
   Start Shop Services CSS
========================================*/
.shop-services.section {
    padding: 80px 0 0px 0;
    background: #fff;
}

.shop-services.home {
    padding: 60px 0;
    background: #F6F7FB;
}

.shop-services .single-service {
    position: relative;
    padding-left: 65px;
}

.shop-services .single-service i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--color-text);
    background: transparent;
    border-radius: 100%;
    display: block;
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 0;
}

.shop-services .single-service h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 22px;
    color: var(--color-text);
}

.shop-services .single-service p {
    color: #898989;
    line-height: 28px;
    font-size: 14px;
}

/*======================================
   End Shop Services CSS
========================================*/

/*======================================
   Start Shop Newsletter CSS
========================================*/
.shop-newsletter {
    background: #f9f9f9;
}

.shop-newsletter .inner {
    text-align: center;
}

.shop-newsletter .inner h4 {
    color: var(--color-secondary-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.shop-newsletter .inner p {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.shop-newsletter .inner p span {
    color: var(--color-secondary-light);
}

.shop-newsletter .newsletter-inner {
    position: relative;
    display: inline-block;
}

.shop-newsletter .newsletter-inner input {
    width: 480px;
    height: 55px;
    border-radius: 0px;
    padding: 0px 30px;
    font-weight: 400;
    display: inline-block;
    text-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    border: 1px solid #ececec;
    border-radius: 30px 0 0 30px;
}

.shop-newsletter .newsletter-inner button {
    border: none;
    text-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.shop-newsletter .newsletter-inner .btn {
    display: inline-block;
    height: 55px;
    padding: 10px 30px;
    position: relative;
    top: 0;
    background: var(--color-secondary-light);
    color: #fff;
    left: -4px;
    border-radius: 0 30px 30px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}


/*======================================
   End Shop Newsletter CSS
========================================*/

/*=============================
	About US CSS
===============================*/
.about-us {
    background: #fff;
}

.about-us .about-content {
    padding-right: 50px;
}

.about-us .about-content .story {
    display: block;
    color: #04AAF4;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-us .about-content .story i {
    color: #04AAF4;
    margin-right: 5px;
    font-size: 22px;
}

.about-us .about-content h3 {
    font-size: 30px;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.about-us .about-content h3::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 60px;
    background: var(--color-secondary-light);
}

.about-us .about-content h3 span {
    display: inline-block;
    font-weight: 700;
    color: var(--color-secondary-light);
}

.about-us .about-content p {
    line-height: 26px;
    margin-bottom: 10px;
}

.about-us .about-content p:last-child {
    margin: 0;
}

.about-us .about-content .button {
    margin-top: 40px;
}

/*.about-us .about-content .button .btn {*/
/*    background: var(--color-secondary-light);*/
/*    color: #fff;*/
/*    margin-right: 15px;*/
/*}*/

/*.about-us .about-content .button .btn:hover {*/
/*    background: var(--color-secondary-light);*/
/*    color: #fff;*/
/*}*/

/*.about-us .about-content .button .btn.primary {*/
/*    background: var(--color-secondary-light);*/
/*    color: #fff;*/
/*}*/

.about-us .about-content .button .btn.primary:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

.about-us .about-content .button .btn:last-child {
    margin: 0;
}

.about-us .about-img {
    position: relative;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    border: 10px solid #fff;
}

.about-us .about-img:before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.about-us .about-img:hover:before {
    opacity: 0.6;
    visibility: visible;
}

.about-us .about-img .video {
    height: 64px;
    width: 64px;
    line-height: 64px;
    background: var(--color-secondary-light);
    color: #fff;
    font-size: 20px;
    border-radius: 100%;
    display: block;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
    padding-left: 4px;
    transform: scale(0);
    transition: all 0.4s ease;
}

.about-us .about-img .video:hover {
    background: #fff;
    color: var(--color-secondary-light);
}

.about-us .about-img:hover .video {
    transform: scale(1);
}

.about-us .about-img img {
    height: 100%;
    width: 100%;

}

/*=============================
	End About US CSS
===============================*/

/*======================================
  10. Start Team CSS
========================================*/
.team {
    background: #F6F7FB;
}

.team .title-line {
    margin-bottom: 40px;
}

.team .single-team {
    margin-top: 30px;
    position: relative;
    transition: all 500ms ease;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    background: #fff;
}

.team .single-team .info-head {
    padding: 35px 30px;
}

.team .single-team .image img {
    height: 100%;
    width: 100%;
}

.team .single-team .info-box {
    text-align: center;
}

.team .single-team .info-box .name {
    display: block;
    font-size: 17px;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.team .single-team .info-box .designation {
    color: #aaa;
    font-size: 13px;
}

.team .single-team .social-links {
    transition: all 500ms ease;
    margin-top: 15px;
}

.team .single-team .social-links .social li {
    display: inline-block;
    margin-right: 15px;
}

.team .single-team .social-links .social li:last-child {
    margin-right: 0px;
}

.team .single-team .social-links .social li a {
    color: var(--color-text);
    display: block;
    font-size: 14px;
}

.team .single-team .social-links .social li a:hover {
    color: var(--color-secondary-light);
}

/*======================================
  End Team CSS
========================================*/

/*======================================
   Start Shop Blog CSS
========================================*/
.shop-blog.grid .shop-single-blog {
    margin-top: 30px;
}

.shop-blog .shop-single-blog {
    text-align: center;
    transition: all 0.4s ease;
}

.shop-blog .shop-single-blog:hover {
    box-shadow: 0px 10px 10px #0000000a;
}

.shop-blog .shop-single-blog img {
    height: 100%;
    width: 100%;
}

.shop-blog .shop-single-blog .content {
    padding: 40px;
}

.shop-blog .shop-single-blog .content .title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
}

.shop-blog .shop-single-blog .content .title:hover {
    color: var(--color-secondary-light);
}

.shop-blog .shop-single-blog .content .date {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #B7B7B7;
}

.shop-blog .shop-single-blog .content .more-btn {
    font-size: 14px;
    font-weight: 400;
    color: #3c3c3c;
    margin-top: 10px;
    display: block;
}

.shop-blog .shop-single-blog .content .more-btn:hover {
    color: var(--color-secondary-light);
}

/* Related Product */
.related-product {
    padding-top: 0;
}


/* Blog Sidebar */
.main-sidebar {
    margin-top: 30px;
    padding: 40px;
    background: transparent;
    border: 1px solid #eeeeeec2;
}

.main-sidebar .widget {
    margin-bottom: 50px;
}

.main-sidebar .widget .widget-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.main-sidebar .widget .widget-title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: var(--color-secondary-light);
}

.main-sidebar .widget:last-child {
    margin: 0;
}

.main-sidebar .search {
    position: relative;
}

.main-sidebar .search input {
    width: 100%;
    height: 45px;
    box-shadow: none;
    text-shadow: none;
    font-size: 14px;
    color: var(--color-secondary-dark);
    background: transparent;
    padding: 0 70px 0 20px;
    transition: all 0.4s ease;
    border-radius: 0;
    border: 1px solid #eee;
}

.main-sidebar .search .button {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    width: 50px;
    line-height: 45px;
    box-shadow: none;
    text-shadow: none;
    text-align: center;
    border: none;
    font-size: 14px;
    color: #fff;
    background: var(--color-secondary-light);
    transition: all 0.4s ease;
}

.main-sidebar .search .button:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

/* Category List */
.main-sidebar .widget-body {
    margin-top: 15px;
}

.main-sidebar .widget-body li {

}

.main-sidebar .widget-body li {
    margin-bottom: 10px;
}

.main-sidebar .widget-body li:last-child {
    margin-bottom: 0px;
}

.main-sidebar .widget-body li a {
    display: inline-block;
    color: var(--color-text);
    font-size: 14px;
}

.main-sidebar .widget-body li a:hover {
    color: var(--color-secondary-light);
    padding-left: 7px;
}

.main-sidebar .widget-body li a i {
    display: inline-block;
    margin-right: 0px;
    font-size: 9px;
    transform: translateY(-1px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.main-sidebar .widget-body li a:hover i {
    margin-right: 6px;
    opacity: 1;
    visibility: visible;
}

/* Recent Post */
.main-sidebar .sidebar-product {

}

.main-sidebar .sidebar-product {
    position: relative;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 17px 0;
}

.main-sidebar .sidebar-product:last-child {
    padding-bottom: 0px;
    border: none;
}

.main-sidebar .sidebar-product .image {

}

.main-sidebar .sidebar-product .image img {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.main-sidebar .sidebar-product .content {
    padding-left: 100px;
}

.main-sidebar .sidebar-product .content h5 {
    line-height: 18px;
}

.main-sidebar .sidebar-product .content h5 a {
    color: #2C2D3F;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
    margin-top: 0;
}

.main-sidebar .sidebar-product .content h5 a:hover {
    color: var(--color-secondary-light);
}

.main-sidebar .sidebar-product .content .comment {
}

.main-sidebar .sidebar-product .content .comment li {
    color: var(--color-text);
    display: inline-block;
    margin-right: 15px;
    font-weight: 400;
    font-size: 14px;
}

.main-sidebar .sidebar-product .content .comment li:last-child {
    margin-right: 0;
}

.main-sidebar .sidebar-product .content .comment li i {
    display: inline-block;
    margin-right: 5px;
}

/* Blog Tags */
.main-sidebar .side-tags {
}

.main-sidebar .side-tags .tag {
    margin-top: 40px;
}

.main-sidebar .side-tags .tag li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 20px;
}

.main-sidebar .side-tags .tag li a {
    background: #fff;
    color: var(--color-text);
    padding: 8px 14px;
    text-transform: capitalize;
    border-radius: 0;
    font-size: 13px;
    background: #F6F7FB;
}

.main-sidebar .side-tags .tag a:hover {
    color: #fff;
    background: var(--color-secondary-light);
    border-color: transparent;
}

/* Blog Newslatter CSS */
.main-sidebar .newsletter {

}

.main-sidebar .newsletter .letter-inner {
    position: relative;
    padding: 35px 30px;
    box-shadow: 0px 0px 12px #00000014;
    z-index: 2;
    overflow: hidden;
}

.main-sidebar .newsletter .letter-inner h4 {
    text-transform: capitalize;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.main-sidebar .newsletter .letter-inner p {
    margin-bottom: 20px;
}

.main-sidebar .newsletter .letter-inner .form-inner {
    position: relative;
}

.main-sidebar .newsletter .letter-inner input {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    border: 1px solid #ddd;
    padding: 0px 60px 0px 20px;
    box-shadow: none;
    text-shadow: none;
    border-radius: 0;
}

.main-sidebar .newsletter .letter-inner .form-inner a {
    height: 42px;
    width: 100%;
    background: var(--color-secondary-light);
    color: #fff;
    font-size: 14px;
    display: block;
    text-align: center;
    line-height: 42px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-sidebar .newsletter .letter-inner .form-inner a:hover {
    background: var(--color-secondary-light);
    color: #fff;
}

/* Blog Single CSS */
.blog-single {
    background: #fff;
    padding: 70px 0 100px;
}

.blog-single .blog-single-main {
    margin-top: 30px;
    background: #fff;
}

.blog-single .blog-detail {
    background: #fff;
}

.blog-single .image {
    position: relative;
}

.blog-single .image img {
    width: 100%;
    height: 100%;
}

.blog-single .blog-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 40px 0 15px 0;
}

.blog-single .blog-meta {
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: 1px solid #dddddd6e;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.blog-single .blog-meta .author i {
    color: var(--color-secondary-light);
    margin-right: 10px;
    font-size: 13px;
}

.blog-single .blog-meta .author a {
    font-size: 13px;
    border-right: 1px solid #ddd;
    padding: 0px 15px;
}

.blog-single .blog-meta .author a:first-child {
    padding-left: 0;
}

.blog-single .blog-meta .author a:last-child {
    padding-right: 0;
    border: none;
}

.blog-single .blog-meta span {
    display: inline-block;
    font-size: 14px;
    color: var(--color-text);
}

.blog-single .blog-meta span a i {
    margin-right: 10px;
    color: var(--color-secondary-light);
}

.blog-single .blog-meta span a:hover {
    color: var(--color-secondary-light);
}

.blog-single .content p {
    margin-bottom: 25px;
    line-height: 26px;
}

.blog-single .content p:last-child {
    margin: 0;
}

.blog-single blockquote {
    position: relative;
    font-size: 13px;
    font-weight: 400;
    padding-left: 20px;
    padding: 10px 20px;
    background: #F6F6F6;
    padding: 30px 40px 30px 70px;
    color: #555;
    border: none;
    margin-bottom: 25px;
    border-left: 3px solid var(--color-secondary-light);
}

.blog-single blockquote i {
    font-size: 30px;
    color: var(--color-secondary-light);
    position: absolute;
    left: 20px;
    top: 20px;
}

.blog-single .content .img-post {
    margin-bottom: 25px;
}

.blog-single .share-social .content-tags {
    position: relative;
    margin-top: 25px;
}

.blog-single .share-social .content-tags h4 {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 15px;
    font-weight: 500;
}

.blog-single .share-social .content-tags .tag-inner {
    padding-left: 60px;
}

.blog-single .share-social .content-tags .tag-inner li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 10px;
    margin-top: 4px;
}

.blog-single .share-social .content-tags .tag-inner li:last-child {
    margin-right: 0px;
    margin-bottom: 0px;
}

.blog-single .share-social .content-tags .tag-inner li a {
    border-radius: 30px;
    padding: 5px 15px;
    background: #f4f7fc;
    font-size: 13px;
}

.blog-single .share-social .content-tags .tag-inner li a:hover {
    color: #fff;
    background: var(--color-secondary-light);
}

/* Comments */
.blog-single .comments {
    margin-top: 40px;
}

.blog-single .comments .comment-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.blog-single .comments .comment-title:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: var(--color-secondary-light);
}

.blog-single .comments {

}

.blog-single .comments .single-comment {
    position: relative;
    margin-bottom: 40px;
    border-radius: 5px;
    padding-left: 95px;
}

.blog-single .comments .single-comment.left {
    margin-left: 110px;
}

.blog-single .comments .single-comment img {
    height: 70px;
    width: 70px;
    border-radius: 100%;
    position: absolute;
    left: 0;
}

.blog-single .single-comment .content {

}

.blog-single .single-comment .content h4 {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.blog-single .single-comment .content h4 span {
    display: inline-block;
    font-size: 13px;
    color: #8D8D8D;
    margin: 0;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    margin-top: 5px;
}

.blog-single .single-comment .content p {
    color: var(--color-text);
    font-weight: 400;
    display: block;
    margin: 0;
    margin-bottom: 20px;
    line-height: 22px;
}

.blog-single .single-comment .content .button {
}

.blog-single .single-comment .content .btn {
    display: inline-block;
    color: var(--color-text);
    font-weight: 400;
    color: #6a6a6a;
    border-radius: 4px;
    text-transform: capitalize;
    font-size: 14px;
    background: transparent;
    padding: 0;
}

.blog-single .single-comment .content a i {
    display: inline-block;
    margin-right: 5px;
}

.blog-single .single-comment .content a:hover {
    color: var(--color-secondary-light);
}

/* Comment Form */
.blog-single .reply form {
    padding: 40px;
    border: 1px solid #eee;
}

.blog-single .reply .reply-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.blog-single .reply .reply-title:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: var(--color-secondary-light);
}

.blog-single .reply .form-group {
    margin-bottom: 20px;
}

.blog-single .reply .form-group input {
    width: 100%;
    height: 45px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 0px;
    color: var(--color-text) !important;
    border: none;
    border: 1px solid #eee;
}

.blog-single .reply .form-group textarea {
    width: 100%;
    height: 200px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 0px;
    color: var(--color-text) !important;
    border: none;
    border: 1px solid #eee;
}

.blog-single .reply .form-group label {
    color: var(--color-text);
    position: relative;
}

.blog-single .reply .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.blog-single .reply .button {
    text-align: left;
    margin-bottom: 0px;
}

.blog-single .reply .button .btn {
    height: 50px;
    border: none;
}

/*======================================
   End Shop Blog CSS
========================================*/


/*======================================
  21. Contact CSS
========================================*/
.contact-us {
    position: relative;
    z-index: 43;
}

.contact-us .title {
    margin-bottom: 30px;
}

.contact-us .title h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-secondary-light);
}

.contact-us .title h3 {
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
}

.contact-us .single-head {
    padding: 50px;
    box-shadow: 0px 0px 15px #0000001a;
    height: 100%;
}

.contact-us .single-info {
    text-align: left;
    margin-bottom: 30px;
}

.contact-us .single-info i {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 15px;
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    border-radius: 3px;
    line-height: 40px;
    background: var(--color-secondary-light);
}

.contact-us .single-info ul
.contact-us .single-info ul li {
    margin-bottom: 5px;
}

.contact-us .single-info ul li:last-child {
    margin-bottom: 0;
}

.contact-us .single-info ul li a {
    font-weight: 400;
}

.contact-us .single-info ul li a:hover {
    color: var(--color-secondary-light);
}

.contact-us .single-info .title {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 18px;
}

.contact-us .form-main {
    box-shadow: 0px 0px 15px #0000001a;
    padding: 50px;
}

.contact-us .form .form-group input {
    height: 48px;
    line-height: 48px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 0px 20px;
    color: var(--color-text);
    border-radius: 0px;
    font-weight: 400;
}

.contact-us .form .form-group textarea {
    height: 180px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 15px 20px;
    color: var(--color-text);
    border-radius: 0px;
    resize: none;
    font-weight: 400;
}

.contact-us .form .form-group label {
    color: var(--color-text);
    position: relative;
}

.contact-us .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.contact-us .form .button {
    margin: 0;
}

.contact-us .form .button .btn {
    height: 50px;
    border: none;
}

#myMap {
    height: 500px;
    width: 100%;
}

/*======================================
  End Contact CSS
========================================*/

/* Mail Success */
.mail-success .mail-inner {
    text-align: center;
    background: #fff;
    padding: 0px 30px;
}

.mail-success .mail-inner h2 {
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    color: var(--color-secondary-light);
    text-transform: uppercase;
    font-size: 30px;
}

.mail-success .mail-inner p {
    font-size: 14;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 22px;
}

.mail-success .mail-inner .btn {
    color: #fff;
    padding: 10px 30px;
}

.mail-success .mail-inner .btn i {
    margin-right: 5px;
}

/*=============================
	Start 404 Error CSS
===============================*/
.error-page {
    background: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.error-page .error-inner {
    text-align: center;
    flex-direction: initial;
    height: auto;
    text-align: center;
}

.error-page .error-inner h2 {
    color: var(--color-secondary-light);
    margin-bottom: 0;
    font-weight: 700;
    font-size: 100px;
    display: inline-block;
    font-size: 120px;
}

.error-page .error-inner h5 {
    display: block;
    color: #444;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.error-page .error-inner p {
    color: var(--color-text);
    font-weight: 400;
    line-height: 22px;
    font-size: 15px;
    padding: 0 30px;
}

.error-page .button {
    margin-top: 30px;
}

.error-page .button .btn {
    margin-right: 15px;
    border-radius: 30px;
    background: var(--color-secondary-light);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #d7d7d7;
    padding: 10px 28px;
}

/*=============================
	/End 404 Error CSS
===============================*/

/*=============================
	20. Start Footer CSS
===============================*/
footer {
    background: var(--color-lighter);
    position: relative;

    padding: 40px 0 0;
    border-bottom: 1px solid #eee;
}

footer .links p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    color: var(--color-text);
}

footer .links i {
    margin-right: 10px;
    color: var(--color-secondary);
    font-size: 18px;
    vertical-align: super;
}

footer .links span {
    margin-left: 5px;
    display: inline-block;
}

.footer .single-footer h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-secondary-dark);
    text-transform: capitalize;
    margin: 25px 0 15px 0;
    white-space: nowrap;
}

.footer .about .logo {
    margin-bottom: 0px;
}

.footer .about .logo img {
    height: auto;
    width: 100%;
}

.footer .about .text {
    font-weight: 400;
    text-align: justify;
}

/*.footer .about .call {*/
/*    !*color: #fff;*!*/
/*    margin-top: 15px;*/
/*    font-weight: 400;*/
/*}*/

/*.footer .about .call span {*/
/*    display: block;*/
/*}*/

/*.footer .about .call a {*/
/*    color: var(--color-secondary-light);*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*}*/


footer .links ul {
    /*padding: 0 0 0 15px;*/
}

footer .links ul li {
    list-style-type: none;
    list-style-position: inside;
    position: relative;
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
}

footer .links ul li:before {
    content: "";
    border: 3px solid var(--color-secondary);
    width: 0;
    height: 0;
    position: absolute;
    left: -10px;
    top: 35%;
}

footer .links ul li a {
    /*color: var(--color-secondary);*/
    transition: all 0.2s ease-in-out;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 25px;
}

footer .links ul li a:hover {
    color: var(--color-secondary-light);
    padding-left: 5px;
}

/*.footer .links ul {*/
/*}*/

/*.footer .links ul li {*/
/*    display: block;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.footer .links ul li:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

/*footer .links ul li a:hover {*/
/*    color: var(--color-secondary-light);*/
/*    padding-left: 10px;*/
/*}*/

footer .social {
}

footer .social .contact {
}

footer .social .contact ul {
}

/*footer .social .contact ul li {*/
/*    display: block;*/
/*    margin-bottom: 15px;*/
/*    font-weight: 400;*/
/*}*/

footer .social ul {
    margin-top: 20px;
}

footer .social ul li {
    display: inline-block;
    margin-right: 25px;
}

footer .social ul li:last-child {
    margin-right: 0;
}

footer .social ul li a {
    color: #fff;
    display: block;
    font-size: 16px;
}

footer .social ul li a:hover {
    color: var(--color-secondary-light);
}

/* Copyright */
footer .copyright {

}

footer .copyright .inner {
    border-top: 1px solid var(--color-text);
    padding: 20px 0;
}

footer .copyright .left {
}

footer .copyright .right {
    float: right;
}

footer .copyright p {
    color: #fff;
    margin: 0;
}

footer .copyright p a {
    color: #fff;
}

/*=============================
	End Footer CSS
===============================*/


#st-2 {
    display: none !important;
}


.contact-location-section {
    padding: 80px 0;
}

.bg-gray2 {
    background-color: #f6f6f6;
}

.contact-location-content h4 {
    color: #ed1c24;
    margin-bottom: 10px;
    display: block;
}

.bg-gray1 {
    background-color: #fcfcfc;
}

.sp-110 {
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h3 {
    font-size: 30px;
    margin-bottom: 0;
}

.section-heading p {
    margin-bottom: 0;
    font-size: 18px;
}

.section-heading h3 span {
    color: #ed1c24;
}


.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 40px 0;
    justify-content: space-evenly;
    background: var(--color-secondary-light2);
    text-align: center;
}

.category-slider-container .swiper-slide .category-item {
    margin-bottom: 10px;
}

.category-slider-container .category-item {
    display: flex;
    align-items: center;
    border: 3px solid #fff;
    background-color: #e8050e;
    border-radius: 10px;
    padding: 10px 20px;
    min-height: 70px;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 6%);
    transition: all 0.3s ease;
}

.category-slider-container .category-item:hover {
    transform: scale(1.1);
}

.category-slider-container .category-item .content h6 {
    color: white;
    margin-bottom: 0;
    font-size: 13px;
}


.swiper-container {
    text-align: center;
}

.logo-slider p {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(0, 1, 0);
    line-height: 20px;
    margin: 0px;
    text-transform: uppercase;
    transition: color 0.3s ease 0s;
}


.BannerSlider .menu-wrap {
    /*width: 270px;*/
    width: 20%;
    position: relative;
}

.BannerSlider .menu-area {
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0 0 10px;
    transition: all 0.4s ease 0s;
}

.BannerSlider .menu-area > ul {
    position: relative;
    padding-left: 0;
}

.BannerSlider .menu-area ul li {
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.BannerSlider .menu-area ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.BannerSlider .menu-area ul li a {
    font-size: 14px;
    padding: 5px 12px 5px 30px;
    color: #111;
    text-transform: unset;
    display: block;
    position: relative;
    font-weight: 500;
}

.BannerSlider .menu-area ul li a:hover {
    background: var(--color-secondary-light);
    color: #fff;
}


.menu-area ul.sub-menu {
    position: absolute;
    min-width: 268px;
    padding: 20px;
    background-color: rgb(246, 246, 246);
    left: calc(100%);
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    transform: translateX(-7px);
    z-index: 999;
    display: grid;
    grid-template-rows: repeat(8, 20px);
    grid-auto-flow: column;
    gap: 10px 40px;
}

.menu-area ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.menu-area ul li:hover ul.sub-menu li {
    padding: 0px 24px 0px 0px;
    /*margin-left: 20px;*/
    cursor: pointer;
    border: none;
}

.menu-area ul li:hover ul.sub-menu li a {
    background: none;
    padding: 0;
    border: none;
    white-space: nowrap;
}

.menu-area ul li:hover ul.sub-menu li a:before {
    content: none;
}

.BannerSlider .menu-area ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 25px;
    width: 25px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9IkNvbXBvbmVudCAxOCDigJMgOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPjxwYXRoIGRhdGEtbmFtZT0iUGF0aCAxMjY3IiBkPSJNNSAybDYgNi02IDYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ExYTFhMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIvPjwvc3ZnPg==);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 10px;
}

.menu-area ul li:hover ul.sub-menu li a:hover {
    color: var(--color-secondary-light);
}

.featured-products {
    padding: 30px 10px;
    background-color: #f1f1f1;
}

.featured-products .single-product p {
    font-size: 13px;
    color: var(--color-secondary-light);
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.featured-products .single-product:hover h3 {
    color: var(--color-secondary-light);
}

.featured-products .single-product {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    /* height: 350px; */
    background: #fff;
    padding: 0;
    border-radius: 10px 10px 0 0;
}

.featured-products .product-img {
    padding-top: 58%;
    position: relative;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.featured-products h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin: 0px 0px 3px;
    color: rgb(51, 51, 51);
    transition: color 0.3s ease 0s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.featured-products img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 1.2s ease 0s;
}

.featured-products .single-product:hover img {
    transform: scale(1.04);
}

.featured-products .product-content {
    margin: 15px 10px;
    text-align: center;
}

.featured-products .product-price {
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 1, 0);
}


.breadcrumbs {
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    padding: 10px 15px;
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumbs ul li {
    border-top: 1px solid var(--color-secondary-light);
    border-bottom: 1px solid var(--color-secondary-light);
    border-left: 0;
    border-right: 0;
    position: relative;
    display: inline-block;
}

.breadcrumbs ul li.active span {
    display: inline-block;
}

.breadcrumbs ul li .divider {
    display: none;
}

.breadcrumbs ul li a {
    display: inline-block;
    width: 100%;
    font-size: 1rem;
    margin-right: 4px;
    line-height: 22px;
    padding: 0 15px;
}

.breadcrumbs ul li:before {
    position: absolute;
    content: "";
    top: -1px;
    left: 1px;
    background: url(../images/breadcrumbs-right.png) no-repeat;
    width: 10px;
    height: 24px;
}

.breadcrumbs ul li:after {
    position: absolute;
    content: "";
    top: -1px;
    right: -10px;
    background: url(../images/breadcrumbs-right.png) no-repeat;
    width: 10px;
    height: 24px;
}

.breadcrumbs ul li:first-child {
    border-left: 1px solid var(--color-secondary-light);
}

.breadcrumbs ul li:first-child:before {
    display: none;
}


/*.breadcrumb {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    font-family: Arial, sans-serif;*/
/*    font-size: 16px;*/
/*}*/

/*.breadcrumb-item {*/
/*    color: var(--color-text);*/
/*    text-decoration: none;*/
/*    padding: 5px 10px;*/
/*    border: 1px solid orange;*/
/*    border-radius: 3px;*/
/*    background-color: #fff;*/
/*    position: relative;*/
/*    margin-right: 5px;*/
/*}*/

/*.breadcrumb-item:hover {*/
/*    background-color: orange;*/
/*    color: #fff;*/
/*}*/

/*.breadcrumb-separator {*/
/*    font-size: 18px;*/
/*    color: orange;*/
/*    margin: 0 5px;*/
/*}*/

/*!* Arrow design for breadcrumb *!*/
/*.breadcrumb-item::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: -10px;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-top: 15px solid transparent;*/
/*    border-bottom: 15px solid transparent;*/
/*    border-left: 10px solid orange;*/
/*    z-index: 1;*/
/*}*/

/*.breadcrumb-item:last-child::after {*/
/*    display: none; !* Remove arrow from last breadcrumb item *!*/
/*}*/


.tracking_box_area {
    margin-left: 200px;
    margin-right: 200px;
}


.footer-bottom {
    margin-top: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    background: var(--color-secondary);
}

.payment-methods p {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0px;
    color: #fff;
}

.payment-methods ul {
    height: 35px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: #fff;
    margin-left: 10px;
    border-radius: 7px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 5px 10px;
}

.payment-methods ul li {
    margin-right: 10px;
}

.payment-methods img {
    max-height: 15px;
    vertical-align: middle;
}


/*Newsletters*/
.etrade-newsletter-wrapper {
    padding: 100px 80px 85px;
    border-radius: 6px;
    background-image: url(../images/newsletter-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 1199px) {
    .etrade-newsletter-wrapper {
        padding: 80px 30px 65px
    }
}

@media only screen and (max-width: 767px) {
    .etrade-newsletter-wrapper {
        padding: 60px 20px 45px
    }

    .newsletter-form {
        display: block
    }

    .newsletter-form button {
        padding: 16px 35px
    }

    .newsletter-inner {
        margin-right: 0
    }
}

@media only screen and (max-width: 575px) {
    .newsletter-content .title {
        letter-spacing: -0.045em;
        font-size: 30px
    }
}

.newsletter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.newsletter-form h2 {
    margin-bottom: 40px;
    font-size: var(--h2);
    font-weight: var(--s-bold);
}

.newsletter-form button {
    border-radius: 6px !important;
    padding: 16px 38px 17px;
}

.newsletter-form button:before {
    background-color: var(--color-heading)
}

.newsletter-form button:hover {
    background-color: var(--color-secondary)
}

.newsletter-inner {
    margin-right: 20px;
    position: relative;
}

.newsletter-inner::before {
    content: "";
    position: absolute;
    left: 20px;
    background: url(../images/send-mail.png) no-repeat;
    z-index: 2;
    top: 17px;
    width: 25px;
    height: 25px;
}

.newsletter-inner input {
    width: 390px;
    font-size: var(--font-size-b2);
    font-weight: 400;
    height: auto;
    line-height: 60px;
    background: #fff;
    box-shadow: none;
    padding: 0 10px 0 54px;
    outline: none;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--radius);
}

.send-mail-icon {
    position: absolute;
    max-width: 100%;
    top: 17px;
    left: 30px
}

.title-highlighter {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: var(--s-bold);
    line-height: 1;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.title-highlighter.highlighter-primary2 i {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.title-highlighter i {
    height: 24px;
    width: 24px;
    line-height: 24px;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
}


/*------------------------------------*\
    Social Media
\*------------------------------------*/
.social-media-wrapper {
    overflow: hidden;
    padding: 0px !important;
    margin-top: 4px;
    text-align: center;
    /*float: left;*/
}

.social-media-wrapper .social-media {
    padding: 5px 0;
}

.social-media-wrapper .social-media ul {
    margin: 0;
    padding: 0;
}

.social-media-wrapper .social-media ul li {
    display: inline-block;
}

.social-media-wrapper .social-media ul li:before {
    content: "";
    border: none;
}

.social-media-wrapper .social-media ul li a > i {
    height: 30px;
    width: 30px;
    text-align: center;
    transition: all 0.3s ease 0s;
    display: inline-block;
    font-size: 16px;
    margin: 0;
    line-height: 33px;
}

.social-media-wrapper .social-media ul li a > i:hover {
    font-size: 18px;
}


.social-round .social-media ul li a > i {
    border-radius: 50%;
    margin: 0 1px;
}


.social-square .social-media ul li a > i {
    width: 45px;
    height: 40px;
    line-height: 40px;
}

.social-bgcolor .social-media ul li a > i {
    color: #fff;
    margin-right: 5px;
    border-radius: 5px;
}

.social-bgcolor .social-media ul li.facebook-social a > i {
    background-color: #0f62b7;
}

.social-bgcolor .social-media ul li.twitter-social a > i {
    background-color: #41ade2;
}

.social-bgcolor .social-media ul li.youtube-social a > i {
    background-color: #e91700;
}

.social-bgcolor .social-media ul li.linkedin-social a > i {
    background-color: #4080b7;
}

.social-bgcolor .social-media ul li.pinterest-social a > i {
    background-color: #ef1438;
}

.social-bgcolor .social-media ul li.skype-social a > i {
    background-color: #13caff;
}

.social-bgcolor .social-media ul li.whatsapp-social a > i {
    background-color: #29B200;
}


.social-textcolor .social-media ul li a > i {
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    background: #fff;
}

.social-textcolor .social-media ul li.facebook-social a > i {
    color: #0f62b7;
}

.social-textcolor .social-media ul li.twitter-social a > i {
    color: #41ade2;
}

.social-textcolor .social-media ul li.youtube-social a > i {
    color: #e91700;
}

.social-textcolor .social-media ul li.linkedin-social a > i {
    color: #4080b7;
}

.social-textcolor .social-media ul li.pinterest-social a > i {
    color: #ef1438;
}

.social-textcolor .social-media ul li.skype-social a > i {
    color: #13caff;
}

.social-textcolor .social-media ul li.whatsapp-social a > i {
    color: #29B200;
}


.list-content {

}

.list-content .product-content {

}


.rating-list span.fa-star {
    color: #00000029;
}

.rating-list span.fa-star.checked {
    color: orange;
}

.checkbox-design {
    /*margin: 5px 6px 5px 0;*/
    border: 1px solid;
    border-radius: 9px;
    width: 18px;
    height: 18px;
    transform: translateY(25%);
    text-indent: 1px;
    line-height: 1.3em;
}


/*-------------------------------- [ Menu bar ] --------------------------------*/
nav.navbar-custom .navbar-collapse {
    padding: 0;
    justify-content: center;
}

nav.navbar-custom {
    /*margin: 7px auto 15px;*/
    /*z-index: 999;*/
    /*min-height: 45px;*/
}

nav.navbar-custom.menuTextColor li > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 12px;
    left: 20px;
    width: 0;
    visibility: hidden;
    opacity: 0;
    border-top: 2px solid transparent;
    transition: all 350ms ease;
}

nav.navbar-custom.menuTextColor li:hover > a:after {
    width: 80%;
    visibility: visible;
    opacity: 1;
    border-color: #0082C8;
}

nav.navbar-custom.menuTextColor ul.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav.navbar-custom.fill-color {
    background-color: #0082C8;
}

nav.navbar-custom ul.main-menu > li {
    position: relative;
    border-right: 1px solid #fff;
    /*height: 40px;*/
}

nav.navbar-custom ul.main-menu li a {
    font: normal bold 16px/20px Arial, Vrinda, Helvetica, sans-serif;
    padding: 15px;
    text-decoration: none;
    margin: 0 5px;
    white-space: nowrap;
    display: inline-block;
    transition: all 0.5s ease;
}

nav.navbar-custom.fill-color ul.main-menu li a {
    color: #fff;
}

nav.navbar-custom.menuTextColor ul.main-menu li a {
    color: var(--color-secondary-light);
}

nav.navbar-custom ul.main-menu > li.active,
nav.navbar-custom ul.main-menu > li:last-child {
    border-right: none;
}

nav.navbar-custom.fill-color ul.main-menu > li a.active,
nav.navbar-custom.fill-color ul.main-menu > li a:hover,
nav.navbar-custom.fill-color ul.main-menu > li a:focus {
    background: #fff !important;
    color: #0082C8 !important;
    border-radius: 7px;
}

nav.navbar-custom ul.dropdown-menu {
    position: absolute;
    top: 200%;
    left: 0;
    z-index: 1000;
    width: 220px;
    padding: 10px 0;
    margin-top: 0;

    transition: all linear .3s;
    display: block;
    opacity: 0;
    visibility: hidden;

    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

nav.navbar-custom ul.dropdown-menu {
    background-color: #0082C8;
    border-top: 3px solid #0082C8;
    border-radius: 0;
}

nav.navbar-custom ul.main-menu > li:hover ul.dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

nav.navbar-custom ul.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
}

nav.navbar-custom ul.dropdown-menu li.menu-item {
    position: relative;
}

nav.navbar-custom ul.dropdown-menu ul.sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

nav.navbar-custom ul.sub-dropdown-menu {
    position: absolute;
    left: 0;
    z-index: 1000;
    width: 220px;
    border-radius: 0;
    padding: 10px 0;
    margin-top: 0;

    transition: all linear .3s;
    display: block;
    opacity: 0;
    visibility: hidden;

    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

nav.navbar-custom.fill-color ul.sub-dropdown-menu {
    background-color: #0082C8;
    border-top: 3px solid #0082C8;
}

nav.navbar-custom ul.dropdown-menu li:hover ul.sub-dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

nav.navbar-custom ul li > ul.dropdown-menu li > a::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;

    content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: rotate(270deg);
}

/******** Scroll Menu *********/
/*nav.navbar-custom.affix {*/
/*    top: 0;*/
/*    left: 7.75%;*/
/*    right: 0;*/
/*    width: 86.7%;*/
/*    margin: 0 auto;*/
/*    background-color: #fff;*/
/*    border-right: none;*/
/*    border-bottom: 3px solid #0082C8;;*/
/*    z-index: 99999999;*/
/*    transition: all .5s ease-in-out;*/
/*}*/

/*nav.navbar-custom.affix a {*/
/*    color: #0082C8 !important;*/
/*    border-right: none;*/
/*    transition: all .5s ease-in-out;*/
/*}*/

/*nav.navbar-custom.affix ul.main-menu > .active > a,*/
/*nav.navbar-custom.affix ul.main-menu > li a:hover {*/
/*    background-color: #0082C8 !important;*/
/*    color: #fff !important;*/
/*    text-decoration: none;*/
/*}*/

/*nav.navbar-custom.affix-top {*/
/*    position: static;*/
/*    top: -35px;*/
/*}*/

/*nav.navbar-custom .collapse.in ul.main-menu li.home_btn {*/
/*    display: none !important;*/
/*}*/

/*nav.navbar-custom .collapse.in {*/
/*    display: block;*/
/*    overflow-y: auto;*/
/*    background-color: #FFF;*/
/*    z-index: 999;*/
/*}*/

/*nav.navbar-custom .collapse.in ul.navbar-nav {*/
/*    width: 100%;*/
/*    background: #fff;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 100%;*/
/*}*/

/*nav.navbar-custom .collapse.in ul.navbar-nav li {*/
/*    display: block;*/
/*    float: none;*/
/*    width: 100%;*/
/*}*/

/*nav.navbar-custom .collapse.in ul.navbar-nav li a {*/
/*    color: #0082C8;;*/
/*    border-bottom: 1px solid #0082C8;;*/
/*    position: relative;*/
/*    width: 100%;*/
/*}*/

/*nav.navbar-custom .collapse.in ul.navbar-nav li a span.caret {*/
/*    position: absolute;*/
/*    right: 5%;*/
/*    top: 45%;*/
/*}*/

.offcanvas.offcanvas-start {
    width: 280px !important;
    background: #fff;
    z-index: 1055;
}

.accordion-button > a {
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/********** Footer Menu **********/
.footer-archive-menu {

}

.footer-archive-menu ul li {
    list-style-type: none;
    list-style-position: inside;
    position: relative;
}

.footer-archive-menu ul li a {
    color: #fff;
    transition: all 0.2s ease-in-out;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    line-height: 40px;
}

.footer-archive-menu ul li:first-child a i {
    color: #9c27b0;
}

.footer-archive-menu ul li:nth-child(2) a i {
    color: #5c6bc0;
}

.footer-archive-menu ul li:last-child a i {
    color: #d84315;
}


@media only screen and (min-width: 320px) and (max-width: 767px) {
    .navbar-custom {
        border-bottom: none;
        background: none;
    }
}

.navbar-brand {
    color: #fff;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    padding: 0;
    top: 50%;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent;
}

.navbar-brand > img {
    height: 40px;
    width: auto;
}

.navbar-toggler {
    /*background-color: #0082C8 !important;*/
    /*border: 1px solid #FCCE00;*/
}


form#mobileMenuSearchForm {
    position: absolute;
    top: 11%;
    right: 13%;
    width: 10px;
    padding: 0px;
    margin: 0px;
    z-index: 999;
}

form#mobileMenuSearchForm button,
form#mobileMenuSearchForm input {
    padding: 10px 9px;
    border-radius: 0px;
    border-width: 0px;
    color: #005EA4;
    border-color: rgb(231, 231, 231);
    box-shadow: none;
    outline: none;
}

form#mobileMenuSearchForm.active {
    right: 0.4%;
}

form#mobileMenuSearchForm.active button:first-child {
    border-right: 2px solid #fff;
}

form#mobileMenuSearchForm input {
    padding: 8px 10px;
    font-size: 14pt;
    font-style: italic;
    color: rgb(160, 160, 160);
    box-shadow: none;

    opacity: 0;
    display: none;
    height: 44px;
    color: #005EA4;
    background: #fff;
    border: 1px solid #005EA4;
    margin-left: 7px;
}

form#mobileMenuSearchForm button[type="reset"] {
    display: none;
}

form#mobileMenuSearchForm.active {
    width: 99%;
}

form#mobileMenuSearchForm.active button,
form#mobileMenuSearchForm.active input {
    display: table-cell;
    opacity: 1;
}

.navbar-collapse form[role="search"].active input {
    width: 100%;
}


/*********     col-lg-*     *******/
@media only screen and  (min-width: 480px) and (max-width: 767px),
(min-width: 768px) and (max-width: 1024px) {
    .footer-archive-menu {
        text-align: center;
        overflow: hidden;
    }

    .footer-archive-menu ul li {
        float: left;
        width: 30%;
        padding: 0px 1.2%;
        background: rgba(255, 255, 255, .5);
        border-radius: 3px;
        margin: 5px 1.5%;
        display: inline-table;
    }
}


#mobileMenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #0082C8;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

#mobileMenu li {
    list-style: none;
}

#mobileMenu li ul {
    display: none;
}

#mobileMenu li a {
    color: #fff;
    text-transform: uppercase;
}

#mobileMenu > li > a {
    display: block;
    position: relative;
    margin: 0;
    border: 0;
    padding: 18px 20px 18px 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}

#mobileMenu li.menu-active > a {
    background: #024f78;
    color: #fff;
}

#mobileMenu li .menu-active {
    position: relative;
}

#mobileMenu li.has-submenu > a::after {
    float: right;
    content: " \276F";
    font-weight: 300;
    text-shadow: none;
    width: 10px;
    display: inline-block;
    transform: rotate(90deg);

    font-size: 12px;
    display: inline-block;
    transition: transform 0.3s;
}

#mobileMenu li.menu-active > a::after {
    transform: rotate(180deg);
}

#mobileMenu li ul.sub-menu {
    background: #098cd2;
}

#mobileMenu li ul.sub-menu li a {
    display: block;
    margin: 0px 0px;
    padding: 12px 20px 12px 25px;
    text-decoration: none;
    /*font-size: 13px;*/
    font-weight: normal;
    background: none;
}

#mobileMenu li ul.sub-menu li a:before {
    content: "";
    border: 3px solid #fff;
    width: 0;
    height: 0;
    position: absolute;
    left: 12px;
    top: 45%;
}

#mobileMenu > li > ul.sub-menu > li {
    position: relative;
}

#mobileMenu > li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    left: 185px;
    top: 0px;
    display: none;
    list-style: none;
}

#mobileMenu > li {
    display: block;
    margin: 0;
    padding: 0;
    border: 0px;
    float: none !important;
}

#mobileMenu > li:first-child {
    border-top: 2px solid #fff;
}

#mobileMenu li ul.sub-menu > li {
    width: 100%;
}

#mobileMenu > li > ul.sub-menu {
    position: static;
}

#mobileMenu > li > a i {
    padding-right: 10px;
    color: #FF5737;
}

#mobileMenu > li > ul.sub-menu > li ul.sub-menu {
    position: static;
}

#mobileMenu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: static;
}

#mobileMenu > li {
    border-bottom: 1px solid #fff;
}

#mobileMenu li a:hover {
    background: #024f78 !important;
}

.offcanvas-body {
    padding: 0 !important;
}

.offcanvas-header {
    padding: 7px 25px 7px 10px;
}


/*.scroll-header {*/
/*    transition: top 0.3s ease;*/
/*}*/

/*.sticky-show {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 50;*/
/*    transition: top 0.3s ease;*/
/*}*/
/*.sticky-hide {*/
/*    top: -100px;*/
/*}*/


.modal-extra-lg {
    max-width: 70% !important;
}

.modal-extra-extra-lg {
    max-width: 85% !important;
}


.tab-content table,
.tab-content table {
    width: 100%;
}

.tab-content table td,
.tab-content table th {
    border: 1px solid #222 !important;
    color: #333;
    padding: 10px !important;
}

.form-group {
    margin-bottom: 10px;
}

.login-btn {
    width: 100%;
    margin-bottom: 10px;
}






.product-images-container {
    position: relative;
}

.product-images-container .slider-images img {
    width: 99.5%;
    height: 450px;
    border: 1px solid #ccc;
    margin-bottom: 0;
}

.product-images-container .slider-images {
    padding: 0;
    position: relative;
}

.product-images-container .slider-thumbnail {
    overflow: visible;
    padding: 10px 0;
    position: relative;
    height: 150px;
}

.product-images-container .slider-thumbnail .slick-list {
    margin: 0 -6px;
    overflow: hidden;
}

.product-images-container .slider-thumbnail .slick-list .item-thumbnail-product {
    padding: 3px 5px;
    cursor: pointer;
    width: 100px;
    height: 100px;
}

.product-images-container .slider-thumbnail .slick-list .item-thumbnail-product img {
    border: 2px solid #e1e1e1;
    padding: 5px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.product-images-container .slider-thumbnail .slick-list .item-thumbnail-product.slick-current img,
.product-images-container .slider-thumbnail .slick-list .item-thumbnail-product img:hover {
    border: 3px solid #0082C8;
}

.product-images-container .slider-thumbnail button {
    border: 1px solid #ddd;
    border-radius: 3px;
    position: absolute;
    text-indent: -9999px;
    text-shadow: none;
    top: 25%;
    height: 25px;
    width: 25px;
    line-height: 25px;
    background: none repeat scroll 0 0 #fff;
    cursor: pointer;
    transition: 0.2s;
    z-index: 9;
}

.product-images-container .slider-thumbnail .slick-prev {
    left: -15px;
    background-color: #0082C8;
    border: 1px solid #0082C8;
}

.product-images-container .slider-thumbnail .slick-prev:before {
    content: '\f104';
    position: absolute;
    font-family: FontAwesome;
    top: 1px;
    right: 9px;
    font-size: 18px;
    text-indent: 0;
    color: #fff;
}

.product-images-container .slider-thumbnail .slick-next {
    right: -15px;
    background-color: #0082C8;
    border: 1px solid #0082C8;
}

.product-images-container .slider-thumbnail .slick-next:before {
    content: '\f105';
    position: absolute;
    font-family: FontAwesome;
    top: 1px;
    left: 10px;
    font-size: 14px;
    text-indent: 0;
    color: #fff;
}

.product-images-container.thumbnail-left {
    position: relative;
}

.product-images-container.thumbnail-left .slider-thumbnail {
    float: left;
    width: 100px;
}

.product-images-container.thumbnail-left .slider-thumbnail.slick-list .item-thumbnail-product {
    padding: 0;
    border: 0;
}

.product-images-container.thumbnail-left .slider-thumbnail button {
    width: 30px;
    height: 25px;
}

.product-images-container.thumbnail-left .slider-thumbnail button.slick-prev {
    top: 20px;
    left: 50%;
    margin-left: 15%;
    right: auto;
    bottom: auto;
    transform: translate3d(-30px, 0, 0);
}

.product-images-container.thumbnail-left .slider-thumbnail button.slick-prev:before {
    content: '\f106';
    top: -2px;
    right: 8px;
}

.product-images-container.thumbnail-left .slider-thumbnail button.slick-next {
    bottom: 20px;
    left: 50%;
    margin-left: -15%;
    right: auto;
    transform: translate3d(0, 30px, 0);
    top: auto;
}

.product-images-container.thumbnail-left .slider-thumbnail button.slick-next:before {
    content: "\f107";
    top: -1px;
    right: 8px;
}

.product-images-container.thumbnail-left .product-responsive {
    margin-bottom: -3px;
    width: auto;
    position: absolute;
    left: 115px;
    top: 0;
    bottom: 0;
    right: 0;
}

.product-images-container.thumbnail-left .product-responsive .slick-list {
    overflow: hidden;
}

.product-images-container.thumbnail-left .product-responsive .item-img-slider {
    border: 0;
    text-align: center;
}

.product-images-container.thumbnail-left .product-responsive .item-img-slider img {
    display: inline-block;
    max-width: 100%;
    width: auto;
}

.slick-center img {
    color: #e67e22;
    opacity: 1;
    transform: scale(1.04);
    border: 3px solid #0082C8 !important;
}

.product-image-expand {
    position: absolute;
    right: 0;
    top: 5%;
    z-index: 2;
    margin-right: 5px;
    background: #a8afac;
    color: #fff;
    font-size: 25px;
    opacity: 0.70;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
}


.form-control {
    padding: 8px 15px;
}
