@charset "UTF-8";
/*
 @Author: RAMSThemes
 @URL: https://www.templatemonster.com/vendors/ramsthemes/ 
 This file contains the styling for the actual theme, this
 is the file you need to edit to change the look of the
 theme. 
*/

/*----------------------------------------------------------------------
TABLE OF CONTENTS:
------------------------------------------------------------------------
1. BASE STYLES
2. FLICKITY SLIDER
3. FADE EFFECT ON PAGE LOAD
4. PACE LOAD BAR
5. NAVBAR
6. SIDE NAV MENU
7. LOGO
8. SEARCH
9. LAYOUT
10. TITLES
11. INFINITE SCROLL
12. USER AVATAR
13. CATEGORIES AND TAGS LIST
14. SINGLE STYLES 
15. WORDPRESS GENERAL STYLES
16. WORDPRESS PAGED NAVIGATION
17. WORDPRESS WIDGETS STYLES
18. GALLERY STYLES
19. CONTACT FORM 7 STYLES
20. SWITCH FOR ENABLE-DISABLE NORMAL AND DARK MODE
21. RESPONSIVE STYLES
------------------------------------------------------------------------*/

/*----------------------- 1. BASE STYLES ------------------------------ */

/* GENERAL STYLES
----------------- */

body {
	font-family: 'Nunito Sans', sans-serif;
    font-size: .975rem;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.65;
}

body a:hover {
    text-decoration: none;
}

input {
    outline: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
    display: none;
}

input:-moz-placeholder {
    color: #999;
}

input::-webkit-input-placeholder {
    color: #999;
}

p a {
    font-weight: bold;
}

ol, ul {
	list-style: none;
}

ins {
	text-decoration: none;
}

table, .table {
	text-transform: capitalize;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

button:focus, select:focus {
    outline: 0;
}

.btn {
	font-weight: 700;
}

:focus {
    outline: none !important;
}

.alert {
	margin: 1rem 0;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
    box-shadow: none !important;
}

.thin {
	font-weight: 300;
}

.medium {
	font-weight: 500;
}

.border {
    border: 1px solid #F1F1F1;
}

.border-bottom {
    border-bottom: 1px solid #F1F1F1 !important;
}

.border-top {
    border-top: 1px solid #F1F1F1 !important;
}

.border-left {
    border-left: 1px solid #F1F1F1 !important;
}

.border-right {
    border-right: 1px solid #F1F1F1 !important;
}

.form-control {
	font-size: unset;
}

.bottom {
    bottom: 0;
}

.top {
    top: 0;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.v-middle {
    vertical-align: middle;
}

.overflow-hidden {
    overflow: hidden;
}

.card {
	border: none;
}

.card-img-overlay {
	top: unset;
}

.modal-content {
	border-radius: .75rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-header .close {
    padding: 1.32rem 1rem;
}

.nav-pills .nav-link {
    background: #F1F1F1;
	margin-right: .5rem;
	margin-bottom: .5rem;
}

.form-control {
	background-color: #F1F1F1;
	border: 0;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.rounded-left {
    border-top-left-radius: .75rem !important;
    border-bottom-left-radius: .75rem !important;
}

.rounded-right {
    border-top-right-radius: .75rem !important;
    border-bottom-right-radius: .75rem !important;
}

.rounded-top {
    border-top-right-radius: .75rem !important;
    border-top-left-radius: .75rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: .75rem !important;
    border-bottom-left-radius: .75rem !important;
}

.front {
	z-index: 9;
}

.border-shadow {
	box-shadow: 0 15px 20px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.08);
}

.bg-none {
	background: none !important;	
}

/*----------------------- 2. FLICKITY SLIDER ------------------------------ */

.carousel {
	height: auto;
	min-height: 100%;
	overflow: initial;
}

.carousel-cell {
    width: 66%;
    height: 400px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-cell-image {
    display: block;
    max-height: 100%;
	max-width: 100%;
}

.home-slider-img { 
	width: 100%; 
}

.flickity-viewport {
    transition: height 0.2s;
}

.flickity-prev-next-button {
    width: 32px;
    height: 32px;
}

.flickity-button-icon {
    display: none;
}

.flickity-button:focus {
	box-shadow: none;
}

.previous:before {
    content: "\f060";
    /* left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 2px;
}

.next:before {
    content: "\f061";
    /* right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/*----------------------- 3. FADE EFFECT ON PAGE LOAD ------------------------------ */

#loadfade {
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*----------------------- 4. PACE LOAD BAR ------------------------------ */

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}

/*----------------------- 5. NAVBAR ------------------------------ */

.fixed-header {
    position: fixed;
    width: 100vw;
    backface-visibility: hidden;
    z-index: 1000;
}

.pt-fixed {
    position: absolute;
    width: 1400px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.pt-normal {
	width: 1400px;
    margin: 0 auto;
}

.navbar-pos {
	width: 1400px !important;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.navbar-container {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.navbar-shrink {
    height: 70px;
}

.logo-shrink {
    height: 50px;
}

.padding-shrink {
	padding: 0.5rem 0;
}

.hamb-menu {
	float: left;
}

.hamb-menu, .hamb-menu-right, .context-menu {
    position: relative;
    cursor: pointer;
}

.hamb-menu-right-box {
    vertical-align: middle;
}

.hamb-menu-circle {
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50% !important;
}

.navbar-toggler {
    border: unset;
}

.cart-contents {
    margin: 0 0.25rem;
}

.bottom-grad {
    position: fixed;
    left: 0;
    width: 100%;
}

/*----------------------- 6. SIDE NAV MENU ------------------------------ */

.sidenav-l, .sidenav-r {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10000;
    top: 0;    
    overflow: hidden;
    transition: 0.5s;    
}

.sidenav-l {
	left: -1px;
	padding-top: 25px;
}

.sidenav-r {
	right: -1px;
	padding-top: 25px;
}

.sidenav-w, .sidenav-w-right {
    width: 312px;
}

.sidenav a {
    text-decoration: none;
}

.sidenav-l .closebtn, .sidenav-r .closebtn {
    position: absolute;
    cursor: pointer;
	z-index: 999;
	right: 12px;
}

.buttons-sidenav {
    position: absolute;
    width: 260px;
    margin: 0 25px;
    padding: 0 10px;
	height: 20px;
    z-index: 99;
}

.pointerbtn {
    position: relative;
	float: left;
    cursor: pointer;
	z-index: 999;
}

.menu-nav-container {
    padding: 1rem;
	width: 300px;
}

ul.menu {
    padding: 0;
    list-style: none;
}

ul.menu>li {
    position: relative;
    display: block;
    padding: .75rem;
	font-weight: 500;
	z-index: 9;
}

ul.menu>li .menu-parent-item {
    position: relative;
    display: block;
    padding: .75rem;
	padding-right: 1px;
}

ul.menu>li .menu-parent-item a.parent {
    top: 6px;
}

ul.menu>li .menu-parent-item .dropdown-sidenav-btn {
	padding-left: 82%;
}

ul.sub-menu {
    padding: 0;
	margin-top: .75em;
}

.sub-menu li {
    list-style: none;
}

.sub-menu li a {
    padding: .75em;
}

.menu-item a {
	display: block;
}

.menu-item .parent {
    position: absolute;
	z-index: -1;
}

.dropdown-menu {
	margin: .75rem 0;
	font-size: unset;
	border: 0;
	min-width: auto;
	box-shadow: 0 15px 20px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.08);
}

.dropdown-menu-blog-w {
    width: 330px;
}

.dropdown-menu-center {
	left: 50%;
	right: auto;
	text-align: center;
	transform: translate(-50%, 0);
}

.dropdown-btn {
    text-decoration: none;
    border: 0;
    background: none;
    cursor: pointer;
    outline: none;
    float: right;
	vertical-align: middle;
}

.sub-menu {
    display: none;
}

.menu-bar {
    margin: 0;
}

.menu-bar li {
    display: inline-block;
    margin-right: 1em;
}

.current_page_item .parent, .current-menu-item {
    font-weight: 500;
}

.toggle-open-close-right {
	vertical-align: middle;
}

#sidebar {
    min-width: 260px;
    max-width: 260px;
    position: relative;
    margin: 1rem;
}

#sidebar.active {
    margin-left: -260px;
	padding-right: 15px;
}

#sidebarCollapse {
	cursor: pointer;
}

.sidenav-margin-top {
    margin-top: 3em;
}

.sidenav-nav-container {
	padding: 1em;
    width: 260px;
}

.sidenav-nav-container-res {
    padding: 0;
    margin: 15px 0 0 24px;
	width: 260px;
}

.sidenav-shop-container {
    padding: 1.5rem;
}

.sidenav-nav-menu-container { 
    padding: .5rem 0;
}

.sidenav-nav-widget-container {
	padding: .5rem;
}

.dropdown-sidenav-btn {
    text-decoration: none;
    border: 0;
    background: none;
    cursor: pointer;
    outline: none;
    font-size: xx-small;
    padding: calc(3px + 0.25rem);
    padding-right: 13px;
    right: 0;
    padding-left: 92%;
    margin: -3px 3px;
}

.toggle-open-close-left {
	position: absolute;
    right: 18px;
    top: 0px;
}

.bg-sidemenu-responsive {
	background: #f7f7f7;
}

.dropdown-toggle::after  {
	display: inline-block;
	padding: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f142";
	vertical-align: middle;
	border: 0;
}

.navbar-ft .dropdown-menu, .navbar-dd .dropdown-menu, .dropup .dropdown-menu {
    font-size: 14px;
}

.navbar-ft-opt {
	padding: 0.5rem;
}

.navbar-box {
    display: inline-block;
    position: relative;
}

.navbar-icons {	
	float: right;
}

.navbar-dd {
	display: inline-block;
}

.dropdown-item.active, .dropdown-item:active {
    color: unset;
    background-color: unset;
}

.menu-right {
    width: auto;
}

@media only screen and (min-width: 1009px) and (max-width: 1199px) {
	.menu-right {
		width: 28%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1008px) {
	.menu-right {
		width: 31%;
	}
}

.navbar-box label {
	margin: .5rem;
    vertical-align: middle;
}

.navigation-sticky-top, .wc-navigation-sticky-top {
    position: sticky !important;
    z-index: 999;
}

.scrollbar-sidenav, .scrollbar-sidenav-res {
    height: 87vh;
}

/*----------------------- 7. LOGO ------------------------------ */

.navbar-logo-left {
	float: left;
}

.logow {
    display: block;
}

.logob {
    display: none;
}

/*----------------------- 8. SEARCH ------------------------------ */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    z-index: 99999;
    /* Transition */
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    /* Transform */
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    text-align: center;
    border: 0px;
    margin: 0 auto;
    margin-top: -51px;
    font-size: 5vw;
    padding: 0;
    outline: none;
}

#search .close {	
	position: fixed;
    top: 20px;
    right: 15px;
    opacity: 1;
    width: 24px;
    height: 24px;
    text-align: center;
    background: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/close-w.svg) no-repeat 2px center;
    background-size: 20px 20px;
}

#search .post-types {
    color: #fff;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 60%;
}

#search input[type="radio"]:after {
    width: 22px;
    height: 22px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
}

#search input[type="radio"]:checked:after {
    width: 22px;
    height: 22px;    
    top: -3px;
    left: -1px;
    position: relative;
    background-color: red;
    content: '';
    display: inline-block;
    visibility: visible;
}

/* CUSTOM SEARCH BAR
-------------------- */

.search-query {
	background-color: #F1F1F1;
	border: 1px solid #F1F1F1;
}

#custom-search-input {
    width: 100%;
    position: relative;
}

#custom-search-input button {
    border: 0;
    background: none;
    padding: 7px 10px;
    position: absolute;
    right: 0;
    margin-bottom: 0;
    color: #8E8E8E;
    top: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}

input[type="search"] {
    background: #ededed url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/search.svg) no-repeat 9px center;
    background-size: 18px 18px;
    border: 1px solid #efefef;
    padding: 7px 15px 9px 32px;
    width: 55px;
}

/*----------------------- 9. LAYOUT ------------------------------ */

#page-content-wrapper {
    width: 100%;
	padding: 1rem;
}

.container-general {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
	min-height: 100vh;
}

.img__wrap {
    position: relative;
    transition: 0.3s;
}

.img__description_layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: opacity .3s, visibility .2s;
}

.img__description {
    transition: 0.3s;
    transform: translateY(1em);
}

.img__description a {
    color: #FFF;
}

.img__description a:hover {
    color: #FFF;
}

.img__wrap:hover .img__description {
    transform: translateY(0);
}

.overlaytxt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .8);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.3s ease;
}

.overlaytxt a:hover {
    color: #fff;
}

.img__wrap:hover .overlaytxt {
    height: 100%;
}

.img__wrap img {
    display: block;	
    object-fit: cover;
    width: 100%;
}

.img-res {
    width: 100%;
	height: auto;
}

.imageoutlink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index: 9;
}

.txt {
    color: white;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.txt a {
    color: #fff;
}

.img-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -o-object-fit: cover;
    -ms-object-fit: cover;
}

.home-element-centered {
	position: absolute;
	top: 50%;
    left: 50%;
    color: white;
	text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.slider-wrap, .slider-featured-wrap, .feat-cat-wrap, .feat-home-blog-wrap {
	background: linear-gradient(0deg, rgba(55,52,50,1) 30%, rgba(0,0,0,0) 40%);
    overflow: hidden;
	position: relative;
}

.elements-wrap {
	background: rgb(55,52,50);
    overflow: hidden;
	position: relative;
}

.slider-wrap img, .slider-featured-wrap img, .elements-wrap img, .feat-cat-wrap img, .feat-home-blog-wrap img {
    transition: 0.3s ease-in-out;
    display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.feat-home-blog-wrap img {
    opacity: 1;
}

.shop-slider-wrap img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.line {
    height: 1px;
    background-image: linear-gradient(90deg,rgba(0,0,0,0.00) 0%,#000000 50%,rgba(0,0,0,0.00) 100%);
    opacity: .1;
    width: 100%;
}

.vline {
    width: 1px;
    height: 100%;
    position: absolute;    
    background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 0%,#000000 50%,rgba(0,0,0,0.00) 100%);
    opacity: .1;
}

.vline-left {
	left: 100%;
}

.vline-right {
	left: 0;
}

.card-custom {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
}

/* BACK BUTTONS
-------------------------------------- */

#back-to-top,
#back-to-home {
    position: fixed;
    bottom: 30px;
    z-index: 1040;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}

#back-to-top {
    right: 16px;
}

#back-to-home {
    right: 56px;
}

#back-to-top.show {
    opacity: 1;
}

#back-to-home.show {
    opacity: 1;
}

.back-shop {
	position: absolute;
    right: 140px;
    top: 0px;
}

/*----------------------- 10. TITLES ------------------------------ */

.home-titles {
	font-size: 2.5rem;
    line-height: 1.2em;
}

.home-va-btn {	
	float: right;
    border: 0;
    text-decoration: none;
    margin: 0 .5em;
    font-weight: bold;
}

@media only screen and (max-width: 900px) {
	.home-titles {
		font-size: 2.2rem;
	}
}

.page-wide-cover {
	max-width: 100%;
	object-fit: cover;
}

.page-overlaytxt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
    overflow: hidden;
    width: 100%;
    top: 0;
}

.page-overlaytxt-center {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page-tpl-titles {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: bold;
}

/* author badges titles */

.author-list {
    display: inline-block;
}

.author-list-name {
	margin-top: 5px;
    display: inline-block;
	font-weight: 500;
}

/*----------------------- 11. INFINITE SCROLL ------------------------------ */

.view-more-button {
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: inline-block;
	cursor: pointer;
}

.page-load-status {
    display: none;
    /* hidden by default */
    padding: 20px 0;
    text-align: center;
    color: #777;
}

.loader-ellips {
    font-size: 20px;
    /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555;
    /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

/*----------------------- 12. USER AVATAR ------------------------------ */

.ppua-edit-container h3 {
	display: none;
}

.pp-user-avatar img {
	max-width: 100%;
    height: auto;
}

img.avatar-default, img.pp-user-avatar-300 {
	border-radius: 50% !important;
}

#ppua-preview img, #ppua-thumbnail img, #ppua-preview-existing img, #ppua-thumbnail-existing img {
	border: 0;
	margin-bottom: 0.5em;
}

#ppua-remove-existing:after {
    content: '';
    margin-left: 0.35rem;
    content: "\f146";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

#ppua-undo-existing:after {
    content: '';
    margin-left: 0.35rem;
    content: "\f2ea";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.updated p {
	margin-bottom: 0;
}

.user-container {
	position: relative;
}

.user-container img {
	opacity: 1;
	display: block;
	width: 150px;
	height: auto;
	transition: .5s ease;
	backface-visibility: hidden;
    margin: 0 auto;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.user-container:hover img  {
	opacity: 0.3;
}

.user-container:hover .middle {
	opacity: 1;
}

.user-container-text {
	color: white;
	padding: 16px 32px;
}

/*----------------------- 13. TAGS AND CATEGORIES LIST ------------------------------ */

.catlist {
    display: table;
    line-height: 1.5em;
}

.catlist:before {
    content: "\f105";
    /* right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
}

.taglist {
    margin-top: 0.3rem;
    margin-right: 0.5rem;
    padding: 0.5rem 0;
    font-weight: bold;
}

/*----------------------- 14. SINGLE STYLES ------------------------------ */

.second-ft-image,
.ft-video {
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    height: calc(100vh - 69px);
}

.sticky-ft-image {
    height: auto;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.second-ft-image-page {
    width: 100%;
    position: relative;
    height: 23vh;
}
@media (max-width: 991px) {
	body.search-results .second-ft-image-page {
		height: 40vh;
	}
}

.overlay-single,
.overlay-page {
    background: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.single-title-box,
.page-title-box {
    position: absolute;
    color: #fff;
    width: auto;
    left: 0;
}

.page-title-box {
    top: calc(50% - 40%);
}

.single-title-box a,
.page-title-box a {
    color: #fff;
}

.post-header {
    font-size: 2.5em;
    margin: 0.25em 0;
}

.page-title {
    padding: 0.5em;
}

.text-weight-light {
	font-weight: 300;
}

.post-page-breadcrumb {
    color: #777;
    margin-bottom: 0;
    padding: 0.327em 0;
}

/* You can use this class for a wide image in a full container post */
.wide {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: auto;
    z-index: 999;
    position: relative;
	padding: 0 8px;
}

/* The container for the featured video in single */
.video-container {
    width: 100%;
    height: 90vh;
    position: relative;
}

.border-bottom-ct {
    border-bottom: 1px solid #EDEDED;
}

.border-top-ct {
    border-top: 4px solid #EDEDED;
}

.table-bordered {
    border: unset;
}

.blog-content p:first-child {
    margin-top: 15px;
}

.sticky-top-left-title {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
    margin-bottom: 1rem;
}

.bottom-info {
    border-top: 2px dashed;
    margin-top: 1rem;
    padding-top: 1rem;
}

.single-comments-content {
	margin: 0 0 0 6.5em;
    padding: 1em;
}

.single-comments-author-meta {
    font-size: 1rem;
	margin: 0 0 1em;
}

.single-comments-author-meta a {
    font-weight: normal;
}

.single-comments-author {
    font-weight: 500;
}

.product-extra-table th {
	width: 190px;
	vertical-align: top;
}

.product-extra-table td {
    display: block;
}

/*----------------------- 15. WORDPRESS GENERAL STYLES ------------------------------ */

.gallery-caption {
    display: block;
    font-size: 0.71111em;
    line-height: 1.6;
    margin: 0;
    padding: 0.5rem;
}

.bypostauthor {
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption p.wp-caption-text {
    border-bottom: 1px solid #EDEDED;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 1rem;
    text-align: left;
}

div.wp-caption {
    max-width: 100%;
}

blockquote>p {
    border-left: 4px solid #19F;
    padding: 1rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.25em;
}

pre {
    margin: 1rem;
    padding: 1rem;
    color: #aaa;
    background-color: #333333;
    white-space: pre;
    border-radius: .25rem;
    font: 16px/24px 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
}

/* WORDPRESS COMMENTS 
--------------------- */

.author-avatar img {
	transition: unset;
}

.bypostauthor {
    padding: 1em 0;
}

.logged-in-as a {
	font-weight: normal;
}

#comments ol li {
    display: block;
	margin: 1.5rem 0;
}

.comment-respond {
    margin: 1rem 0;
}

/*----------------------- 16. WORDPRESS PAGED NAVIGATION ------------------------------ */

.page-numbers,
.page-numbers a,
.page-numbers a:hover,
.page-numbers li.active a,
.page-numbers.disabled {
    cursor: pointer;
    padding: .25rem .75rem;
    display: inline-block;
    width: 35px;
    height: 35px;
    vertical-align: middle;
	font-size: 16px;
}

.page-numbers.current {
    font-weight: bold;
}

/*----------------------- 17. WORDPRESS WIDGETS STYLES ------------------------------ */

.sidenav-nav-container .widget_categories, 
.sidenav-nav-container .widget_archive, 
.sidenav-nav-container .widget_pages, 
.sidenav-nav-container .widget_meta, 
.sidenav-nav-container .widget_recent_entries, 
.sidenav-nav-container .widget_tag_cloud,
.sidenav-nav-container .widget_calendar,
.sidenav-nav-container .widget_search,
.sidenav-nav-container .widget_custom_html,
.sidenav-nav-container .widget_recent_comments,
.sidenav-nav-container .widget_nav_menu .widget_titles {
    padding: .9rem;
}

.widget_categories ul,
.widget_archive ul,
.widget_pages ul,
.widget_meta ul,
.widget_recent_entries ul {
    padding-left: 0;
	margin-top: 0.25rem;
}

.widget_categories li,
.widget_archive li,
.widget_pages li,
.widget_meta li,
.widget_recent_entries li {
    list-style: none;
    margin-bottom: 0.25rem;
}

.widget_categories li ul li, 
.widget_archive li ul li, 
.widget_pages li ul li, 
.widget_meta li ul li,
.widget_recent_entries li ul li {
	margin-left: 0.25rem;
}

.widget_categories li ul li:before, 
.widget_archive li ul li, 
.widget_pages li ul li, 
.widget_recent_entries li ul li {
	margin: 0 0.25rem;
	content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	color: #007BFF;
}

.widget_media_image img {
    width: 100%;
}

/* Specially rational-styled calendar for WP */
#wp-calendar {
    width: 100%;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
}

#wp-calendar caption {
    padding: 0.5rem;
    text-align: right;
    caption-side: top;
    font-size: 1rem;
    color: unset;
    text-transform: lowercase;
}

#wp-calendar thead tr {
    border-right: 1px solid #ccc;
}

#wp-calendar thead th {
    font-weight: 500;
    padding: 0.25rem;
    text-transform: lowercase;
    text-align: right;
    border-right: 1px solid #ccc;
}

#wp-calendar tbody td {
    position: relative;
    padding: 0.25rem;
    text-align: right;
    border-right: 1px solid #ccc;
}

#wp-calendar tbody td.pad {
    opacity: 0.7;
}

#wp-calendar tbody td#today {
    font-weight: 500;
}

#wp-calendar tbody td#today:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #999;
    border-left: 10px solid transparent;
}

#wp-calendar tbody td a {
    display: block;
    background: #20c997;
}

#wp-calendar tbody td a:hover {
    background: #0074C6;
    color: #fff;
}

#wp-calendar tfoot tr {
    border-bottom: 1px solid #ccc;
}

#wp-calendar tfoot tr td {
    border: 0;
    padding: 0;
}

#wp-calendar tfoot tr a {
    display: block;
    padding: 0.25rem 0.75rem;
    text-transform: lowercase;
}

#wp-calendar tfoot tr #prev {
    text-align: left;
}

#wp-calendar tfoot tr #next {
    text-align: right;
}

/* RECENT COMMENTS WIDGET
------------------------- */

.widget_recent_comments ul {
    list-style: none;
    padding: 0;
}

.widget_recent_comments li:before {
    content: "\f27a";
    /* right */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0.25em;
}

.comment-author-link {
    font-weight: bold;
}

/* COUNTS IN WIDGETS
-------------------- */

.post_count {
    margin-left: 0.5em;
    font-size: 0.75rem;
}

/* WIDGET NAV MENU
-------------------- */

.widget_nav_menu .widget_titles {
    margin: 1rem;
}
	
/* WIDGET DROPDOWNS
------------------- */

.widget_archive, .widget_categories {
	position: relative;
}

.widget_archive select, .widget_categories select {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #F1F1F1;
    border: 1px solid #F1F1F1;
    background-clip: padding-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* WIDGET SEARCH BAR
-------------------- */

#custom-search-input {
    width: 100%;
    position: relative;
}

#custom-search-input button {
    border: 0;
    background: none;
    padding: 7px 10px;
    position: absolute;
    right: 0;
    margin-bottom: 0;
    color: #8E8E8E;
    top: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}

input[type="search"] {
    background: #ededed url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/search.svg) no-repeat 9px center;
    background-size: 18px 18px;
    border: 1px solid #efefef;
    padding: 7px 15px 9px 32px;
    width: 55px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

/*----------------------- 18. GALLERY STYLES ------------------------------ */

.gallery {
	background: #e9e9e9;
    margin-bottom: 2em !important;
}

.gallery-item {
	margin: 0 !important;
}

.gallery-item img {
	width: 100%;
	height: auto;
    max-width: 100%;
	border: 0 !important;
    padding: .5em;
}

@media(max-width: 720px){
    .gallery-item {
        max-width: 50%;
    }
}

@media(max-width: 480px){
    .gallery-item {
        max-width: 100%;
    }
}

.gallery-caption {
    display: block;
    font-size: 0.71111em;
    line-height: 1.6;
    margin-bottom: 1em;
    padding: 0.5rem;
}

/*----------------------- 19. CONTACT FORM STYLES ------------------------------ */

.contact-border {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #F1F1F1;
	background: unset;
	padding: 0.375rem 0;
	display: block;
	width: 100%;
}

.message-label {
    color: #6c757d;
    padding: 0.375rem 0;
}

/* CUSTOM CF7 STYLES
-------------------- */

.wpcf7 label {
    text-transform: uppercase;
}

/* SELECT
--------- */

select.wpcf7-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/arrowdown.svg);
    background-position-x: 95%;
    background-position-y: 50%;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-color: #ededed;
}

.wpcf7-select {
    width: 100%;
    border: 1px solid #efefef;
    padding: 7px 40px;
    margin-top: 0.5rem;
    padding-left: 20px;
}

/* FIELDS
--------- */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    background-color: #ededed;
    border: 1px solid #efefef;
    padding: 7px 20px;
    margin-top: 0.5rem;
    width: 100%;
}

.wpcf7 textarea {
    background-color: #ededed;
    border: 1px solid #efefef;
    padding: 7px 20px;
    margin-top: 0.5rem;
    width: 100%;
	height: auto;
}

.wpcf7-quiz-label {
    display: block;
    margin-top: 0.5rem;
}

/* RADIO
-------- */

.wpcf7-list-item-label {
    margin-left: 0.5em;
    display: inline-block;
}

.wpcf7 input[type="radio"]:after {
    width: 22px;
    height: 22px;
    border-radius: 15px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.wpcf7 input[type="radio"]:checked:after {
    width: 22px;
    height: 22px;
    border-radius: 15px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #1199FF;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

/* CHECKBOX
----------- */

.wpcf7-list-item-label {
    margin-left: 0.75em;
    display: inline-block;
}

.wpcf7 input[type="checkbox"]:after {
    width: 22px;
    height: 22px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.wpcf7 input[type="checkbox"]:checked:after {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: red;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

/* BUTTONS
---------- */

.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] {
    background-color: #5C5C5C;
    border: 0;
    padding: 7px 20px;
    margin: 20px 0;
    width: 100%;
    color: #fff;
}

.wpcf7 input[type=file] {
    color: #000;
    background-color: #ededed;
    border: 1px solid #efefef;
    padding: 7px 20px;
}

/* MESSAGES
----------- */

span.wpcf7-not-valid-tip {
    padding: 7px 20px;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng, 
div.wpcf7-aborted {
    font-weight: bold;
    margin: 0;
    padding: 7px 20px;
	text-transform: uppercase;
	color: #fff;
	border: 0;
}

div.wpcf7-mail-sent-ok {
    background: #398f14;
}

div.wpcf7-acceptance-missing {
	background: #FFA500;
}

div.wpcf7-validation-errors{
	background: #ff0000;
}

.wpcf7-mail-sent-ok:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
}

.wpcf7-not-valid-tip:before,
.wpcf7-validation-errors:before,
.wpcf7-acceptance-missing:before,
.wpcf7-mail-sent-ng:before, 
.wpcf7-aborted:before {
    content: "\f06a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
}

div.wpcf7-mail-sent-ng, div.wpcf7-aborted {
    background: #ff0000;
}

/*----------------------- 20. DARK MODE ------------------------------ */

body.wp-night-mode-on {
    background: #232323 !important;
}

body.wp-night-mode-on footer {
    background: #191919;
}

body.wp-night-mode-on select {
    background: #323232;
	color: #fff;
}

body.wp-night-mode-on a:hover {
    text-decoration: none;
}

body.wp-night-mode-on ul.menu > li a {
    color: #fff;
}

body.wp-night-mode-on .menu-hover:hover > .sub-menu li a {
    color: #fff;
}

body.wp-night-mode-on .form-control {
    background-color: #323232;
}

body.wp-night-mode-on .form-control:focus {
    color: #fff;
}

body.wp-night-mode-on .btn-custom {
    color: #fff !important;
    background-color: #363636 !important;
    border-color: #363636 !important;
}

body.wp-night-mode-on .page-numbers {
    color: #fff !important;
    background-color: #363636 !important;
    border-color: #363636 !important;
}

body.wp-night-mode-on .bg-navbar {
    background: #191919;
}

body.wp-night-mode-on .bg-sidenav, body.wp-night-mode-on .woo-sidenav {
    background: #323232;
}

body.wp-night-mode-on .bg-sidemenu-responsive {
    background: #191919;
}

body.wp-night-mode-on .bg-current, body.wp-night-mode-on .card-body, body.wp-night-mode-on .card-custom {
    background: #181818;
}

body.wp-night-mode-on .bg-post-ly1 {
    background: #141414;
}

body.wp-night-mode-on .bg-side {
    background: #333333;
}

body.wp-night-mode-on .bg-light, body.wp-night-mode-on .btn-light {
    background-color: #151515 !important;
	border: 0;
}

body.wp-night-mode-on .bg-cart-totals, body.wp-night-mode-on .bg-customer-order-address {
    background: #121212;
}

body.wp-night-mode-on .hamb-menu, body.wp-night-mode-on .hamb-menu-right {
    color: #fff;
}

body.wp-night-mode-on .sidenav {
    background: #232323;
}

body.wp-night-mode-on .logow {
    display: none;
}

body.wp-night-mode-on .logob {
    display: block;
}

body.wp-night-mode-on .img__description a:hover {
    color: #fff;
}

body.wp-night-mode-on .arrow-icon:before {
    background: #141414;
}

body.wp-night-mode-on .dropdown-divider {
    border-top: 1px solid #232323;
}

body.wp-night-mode-on .modal-content {
    background-color: #191919;
}

body.wp-night-mode-on .title-out, body.wp-night-mode-on .title-out a {
    color: #fff;
}

body.wp-night-mode-on .text-out {
    color: #fff;
}

body.wp-night-mode-on .border-custom {
    border-color: #232323;
}

body.wp-night-mode-on .border {
    border: 1px solid rgba(0, 0, 0, .1);
}

body.wp-night-mode-on .border-bottom, body.wp-night-mode-on .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

body.wp-night-mode-on .border-top {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

body.wp-night-mode-on .border-left {
    border-left: 1px solid rgba(0, 0, 0, .1);
}

body.wp-night-mode-on .border-right {
    border-right: 1px solid rgba(0, 0, 0, .1);
}

body.wp-night-mode-on .dropdown-menu {
	background-color: #191919;
	color: #fff;
}

body.wp-night-mode-on .dropdown-btn {
    color: #fff;
}

body.wp-night-mode-on .dropdown-item {
    color: #fff;
}

body.wp-night-mode-on .dropdown-item:hover, body.wp-night-mode-on .dropdown-item:focus {
	background-color: unset; 
	color: unset;
}

body.wp-night-mode-on .dropdown-sidenav-btn {
    color: #fff;
}

body.wp-night-mode-on .message-label {
    color: #fff;
}

body.wp-night-mode-on .close, body.wp-night-mode-on .closebtn:hover {
    color: #fff;
}

body.wp-night-mode-on .alert-dismissible .close {
    color: inherit;
}

body.wp-night-mode-on .navbar-2 .nav-link {
	color: #fff;
}

body.wp-night-mode-on .nav-pills .nav-link.active {
	background: #060606 !important;
    color: #fff !important;
}

body.wp-night-mode-on .nav-pills .nav-link {
	background: #7C7D7D;
}

body.wp-night-mode-on #search {
    background: #191919;
}

body.wp-night-mode-on #search input[type="search"] {
	color: #fff;
}

body.wp-night-mode-on #search .close {
	background: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/close-w.svg) no-repeat 7px center;
	background-size: 18px 18px;
}

body.wp-night-mode-on form#searchb input[type="search"], body.wp-night-mode-on form#searchres input[type="search"], body.wp-night-mode-on form#searchb button, body.wp-night-mode-on form#searchres button {
	background: #323232;
	border: 1px solid #323232;
}

body.wp-night-mode-on #back-to-top, body.wp-night-mode-on #back-to-home {
	color: #fff;
}

body.wp-night-mode-on.woocommerce .cart-contents {
	color: #fff;
}

body.wp-night-mode-on.woocommerce a.button, body.wp-night-mode-on.woocommerce button.button {
	background: #303030;
	color: #fff;
}

body.wp-night-mode-on.woocommerce a.button:hover, body.wp-night-mode-on.woocommerce button.button:hover {
	background: #333333;
	color: #fff;
}

body.wp-night-mode-on.woocommerce div.product form.cart .variations select, body.wp-night-mode-on.woocommerce .quantity .qty, body.wp-night-mode-on.woocommerce .woocommerce-ordering select {
    border: none;
    background: #323232;
}

body.wp-night-mode-on.woocommerce div.product p.stock {
    color: #fff;
}

body.wp-night-mode-on .woocommerce-breadcrumb, body.wp-night-mode-on .woocommerce-breadcrumb a {
	color: #fff;
}

body.wp-night-mode-on .woocommerce-error, body.wp-night-mode-on .woocommerce-info, body.wp-night-mode-on .woocommerce-message {
    background-color: #333333;
	color: #fff;
}

body.wp-night-mode-on .woocommerce #reviews #comments ol.commentlist li .comment-text, body.wp-night-mode-on .single-comments-content {
    background: #333333;
}

body.wp-night-mode-on .woocommerce #reviews #comments ol.commentlist li .meta {
	color: #fff;
}

body.wp-night-mode-on .woocommerce .mini_cart_item {
	background: #1C1C1C;
}

body.wp-night-mode-on .woocommerce-checkout #payment div.payment_box {
	background: #1e272e;
}

body.wp-night-mode-on .woocommerce form .form-row select, body.wp-night-mode-on .woocommerce form .form-row textarea {
	color: #495057;
}

body.wp-night-mode-on .woocommerce .quantity .qty {
    background: #333333;
}

body.wp-night-mode-on .woocommerce button.button {
	background: #333333;
	color: #fff;
}

body.wp-night-mode-on .woocommerce button.button:hover {
	color: #fff;
}

body.wp-night-mode-on .widget_price_filter .ui-slider .ui-slider-range, body.wp-night-mode-on .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #fff;
}

body.wp-night-mode-on p.price, body.wp-night-mode-on .price { 
	color: #fff !important;
}

body.wp-night-mode-on .tab-content {
	background: #282828;
}

body.wp-night-mode-on .tinv-wishlist .product-remove button {
	background: #323232;
}

body.wp-night-mode-on .tinvwl-mobile {
    color: unset;
}

body.wp-night-mode-on .menu-hover:hover, body.wp-night-mode-on .col-hover:hover {
	background: #282828;
}

body.wp-night-mode-on .drawer-content {
    background: #232323;
}

body.wp-night-mode-on .flickity-prev-next-button {
	background: none;
}

body.wp-night-mode-on .alert {
	background: #1e272e !important;
    border: 0;
}

body.wp-night-mode-on .gallery {
	background: #323232;
}

body.wp-night-mode-on .pass-strength-result {
	color: #323232;
}

body.wp-night-mode-on .widget_archive select, body.wp-night-mode-on .widget_categories select {
	background: #323232;
	border: 0;
}

body.wp-night-mode-on .shop-slider-bg-text {
	background-color: #363636;
	color: #fff;
}

body.wp-night-mode-on .shop-paragraph {
	background-color: #363636;
}

body.wp-night-mode-on .addtoany_list a:not(.addtoany_special_service)>span {
    background-color: #363636 !important;
}

/*----------------------- 21. RESPONSIVE STYLES ------------------------------ */

@media only screen and (max-height: 450px) {

    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }

}

@media only screen and (min-width: 300px) and (max-width: 450px) {

    #headsearch input[type="search"]:focus {
        width: 60px;
    }

}

@media only screen and (max-width: 411px) {
	
	.woocommerce form.cart .quantity .qty {
		width: 100%;
		margin-bottom: 1em;
	}
	
	.woocommerce .quantity .input-text {
		width: 60px;
	}
	
	.woocommerce-message a.wc-forward {
		width: auto;
	}
		
	.nav-pills {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		display: block;
	}
	
	.nav-pills li {
		display: inline-block;
	}
	
}

@media only screen and (max-width: 468px) {
	
	.product-list-height {
		min-height: 300px;
	}
	
}

@media only screen and (max-width: 576px) {
    
    .video-container {
        height: 50vh;
    }
	
	.card-img-overlay {
		padding: .75rem;
	}
	
	.card-title {
		font-size: 1rem;
	}
	
	.woocommerce span.onsale {
		font-size: .65em;
	}

}

@media only screen and (max-width: 768px) {
	
	.btn-block-res { 
		width: 100%; 
		display:block;
	}
	
}

@media only screen and (max-width: 900px) {

	.woocommerce .ordering-pos {
		float: left;
		margin: 1rem 0;
		clear: both;
	}
	
}

@media only screen and (max-width: 800px) {

    .slider-box {
        width: auto;
    }

    .grid-sizer, .grid-sizer-pc, .grid-sizer-pr {
        width: 50%;
    }

    .grid-item-2,
    .grid-item-3,
    .grid-item-4,
    .grid-item-5,
	.grid-item-6,
	.grid-item-7,
	.grid-item-pc-2,
	.grid-item-pc-3,
	.grid-item-pc-4,
	.grid-item-pc-5,
	.grid-item-pc-6,
	.grid-item-pc-7,
	.grid-item-pr-2,
	.grid-item-pr-3,
	.grid-item-pr-4,
	.grid-item-pr-5,
	.grid-item-pr-6
	.grid-item-pr-7 {
        width: 50%;
    }

}

@media only screen and (min-width: 768px) {

	.wc-navigation-sticky-top {
		min-height: 89vh;
	}	

}


@media only screen and (min-width: 991px) {
	
	.customsearch-res, .navbar-search {
		display: none;
	}
	
}

@media only screen and (min-width: 991px) and (max-width: 1290px) {
	
	.customsearch {
		width: 370px;
	}
	
}

@media only screen and (min-width: 992px) {

    .grid-item-2, .grid-item-pc-2, .grid-item-pr-2 {
        width: 50%;
    }

    .grid-item-3, .grid-item-pc-3, .grid-item-pr-3 {
        width: 33.333%;
    }

    .grid-item-4, .grid-item-pc-4, .grid-item-pr-4 {
        width: 25%;
    }

    .grid-item-5, .grid-item-pc-5, .grid-item-pr-5 {
        width: 20%;
    }
	
	.grid-item-6, .grid-item-pc-6, .grid-item-pr-6 {
        width: 16.666666%;
    }
	
	.grid-item-7, .grid-item-pc-7, .grid-item-pr-7 {
        width: 14.285714%;
    }

}

@media only screen and (min-width: 1399px) {
	
	.hide-res, .hide-logo-res {
		display: none !important;
	}
	
	.show-res {
		display: block !important;
	}
	
	.alignfull {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		max-width: 100vw;
	}
	
	.footer-width {
		width: 1400px;
	}
	
}

@media only screen and (max-width: 1024px) {

    span.wpcf7-list-item {
        display: block;
        margin: 0;
    }
}

@media only screen and (max-width: 1399px) {
	
	.container-general {
		width: 100%;
	}
	
	.customsearch {
		display: none;
	}
	
	.customsearch-res {
		display: block;
		padding: 0 1em;
	}
	
	.navbar-search {
		height: 52px;
		display: block;
	}
	
	.navbar-icons {	
		padding: 0 .5rem;
	}
	
	.navbar-pos {
		padding: 0;
	}
	
	.logo {
		width: auto;
	}
	
	.logores {
		display: none !important;
	}
	
	.login-btn-navbar {
		right: 5.75rem;
	}
	
	.register-btn-navbar {
		right: 8rem;
	}
	
	.fixed-header {
		width: 100%;
	}
	
	.navbar-pos, .pt-fixed, .pt-normal {
		width: 100%;
	}	
	
	.responsive-account-navigation .wrapper nav#sidebar {
		margin-left: unset;
		display: unset;
		width: 100%;
		max-width: 100%;
	}
	
	.sidenav-nav-container, .sidenav-nav-container-res {
		padding: 0;
		margin: 15px 0 0 25px;
	}		
	
    #sidebar {
        margin-left: -270px;
		display: none;
    }
	
	#sidebar.active {
        margin-left: 0;
    }
	
	#page-content-wrapper {
		padding: 0;
	}
	
	.woo-carousel-nav .woo-carousel-cell {
		height: 50px;
		width: 50px;
	}		
	
	.page-wide-cover {
		max-width: 100%;
		height: auto;
	}
	
	.page-tpl-titles {
		font-size: 2.5rem;
	}
	
	.container-general {
		padding-right: 15px;
		padding-left: 15px;
	}
	
	.product-meta-res .author-name-archive, .product-meta-res .publisher-name-archive {
		display: none;
	}

	.woocommerce-product-details__short-description {
		display: none;
	}
	
	.woocommerce div.product div.summary {
		margin-bottom: 0;
	}
	
	.woocommerce div.product div.images {
		margin-bottom: 1em;
	}
	
	.center-addtocart {
		display: block;
		margin: 1em auto;
		width: fit-content;
	}	
	
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@font-face {
    font-family: star;
    src: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/star.eot);
    src: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/star.eot?#iefix) format("embedded-opentype"), url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/star.woff) format("woff"), url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/star.ttf) format("truetype"), url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/star.svg#star) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: WooCommerce;
    src: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/WooCommerce.eot);
    src: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/WooCommerce.eot?#iefix) format("embedded-opentype"), url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/WooCommerce.woff) format("woff"), url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/WooCommerce.ttf) format("truetype"), url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/webfonts/woocommerce/WooCommerce.svg#WooCommerce) format("svg");
    font-weight: 400;
    font-style: normal
}

.woocommerce-store-notice,
p.demo_store {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    font-size: 1em;
    padding: 1em 0;
    text-align: center;
    background-color: #a46497;
    color: #fff;
    z-index: 99998;
    box-shadow: 0 1px 1em rgba(0, 0, 0, .2);
    display: none
}

.woocommerce-store-notice a,
p.demo_store a {
    color: #fff;
    text-decoration: underline
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important
}

.admin-bar p.demo_store {
    top: 32px
}

.clear {
    clear: both
}

.woocommerce .blockUI.blockOverlay {
    position: relative
}

.woocommerce .blockUI.blockOverlay::before {
    height: 1em;
    width: 1em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -.5em;
    margin-top: -.5em;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/loader.svg) center center;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0, 0, 0, .75)
}

.woocommerce .loader::before {
    height: 1em;
    width: 1em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -.5em;
    margin-top: -.5em;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/loader.svg) center center; 
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0, 0, 0, .75)
}

.woocommerce a.remove {
    display: block;
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: red!important;
    text-decoration: none;
    font-weight: 700;
    border: 0
}

.woocommerce a.remove:hover {
    color: #fff!important;
    background: red
}

.woocommerce small.note {
    display: block;
    color: #777;
    font-size: .857em;
    margin-top: 10px
}

.woocommerce .woocommerce-breadcrumb {
    margin: 0 0 1em;
    padding: 0;
    font-size: .92em;
    color: #777
}

.woocommerce .woocommerce-breadcrumb::after,
.woocommerce .woocommerce-breadcrumb::before {
    content: ' ';
    display: table
}

.woocommerce .woocommerce-breadcrumb::after {
    clear: both
}

.woocommerce .woocommerce-breadcrumb a {
    color: #777
}

.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center
}

.woocommerce div.product {
    margin-bottom: 0;
    position: relative
}

.woocommerce div.product .product_title {
    clear: none;
    margin-top: 0;
    padding: 0
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    background: inherit;
    font-weight: 700;
    display: inline-block
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    opacity: .5;
    display: inline-block
}

.woocommerce div.product p.stock {
    font-size: .92em
}

.woocommerce div.product .stock {
    color: #77a464
}

.woocommerce div.product .out-of-stock {
    color: red
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 1.618em
}

.woocommerce div.product div.images {
    margin-bottom: 2em
}

.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: none
}

.woocommerce div.product div.images div.thumbnails {
    padding-top: 1em
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    -webkit-transition: all cubic-bezier(.795, -.035, 0, 1) .5s;
    transition: all cubic-bezier(.795, -.035, 0, 1) .5s;
    margin: 0;
    padding: 0
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
    background-color: #fff;
    opacity: 0
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
    border: 1px solid #f2f2f2
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
    width: 25%;
    display: inline-block
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 2em;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: #fff;
    text-indent: -9999px;
    border-radius: 100%;
    box-sizing: content-box
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    box-sizing: content-box
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    border-radius: 6px;
    position: absolute;
    top: 19px;
    left: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: content-box
}

.woocommerce div.product div.images .flex-control-thumbs {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
    list-style: none
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    cursor: pointer;
    opacity: .5;
    margin: 0
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    opacity: 1
}

.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
    clear: left
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
    clear: left
}

.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
    clear: left
}

.woocommerce div.product div.summary {
    margin: .75em 0
}

.woocommerce div.product div.social {
    text-align: right;
    margin: 0 0 1em
}

.woocommerce div.product div.social span {
    margin: 0 0 0 2px
}

.woocommerce div.product div.social span span {
    margin: 0
}

.woocommerce div.product div.social span .stButton .chicklets {
    padding-left: 16px;
    width: 0
}

.woocommerce div.product div.social iframe {
    float: left;
    margin-top: 3px
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0 0 0 1em;
    margin: 0 0 1.618em;
    overflow: hidden;
    position: relative
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid #d3ced2;
    background-color: #ebe9eb;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 4px 4px 0 0;
    margin: 0 -5px;
    padding: 0 1em
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: .5em 0;
    font-weight: 700;
    color: #515151;
    text-decoration: none
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    text-decoration: none;
    color: #6b6a6b
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #fff;
    z-index: 2;
    border-bottom-color: #fff
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: inherit;
    text-shadow: inherit
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
    box-shadow: 2px 2px 0 #fff
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    box-shadow: -2px 2px 0 #fff
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    border: 1px solid #d3ced2;
    position: absolute;
    bottom: -1px;
    width: 5px;
    height: 5px;
    content: " ";
    box-sizing: border-box
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    left: -5px;
    border-bottom-right-radius: 4px;
    border-width: 0 1px 1px 0;
    box-shadow: 2px 2px 0 #ebe9eb
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    right: -5px;
    border-bottom-left-radius: 4px;
    border-width: 0 0 1px 1px;
    box-shadow: -2px 2px 0 #ebe9eb
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    position: absolute;
    content: " ";
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #d3ced2;
    z-index: 1
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0 0 2em;
    padding: 0
}

.woocommerce div.product p.cart {
    margin-bottom: 2em
}

.woocommerce div.product p.cart::after,
.woocommerce div.product p.cart::before {
    content: ' ';
    display: table
}

.woocommerce div.product p.cart::after {
    clear: both
}

.woocommerce div.product form.cart {
    margin-bottom: 2em
}

.woocommerce div.product form.cart::after,
.woocommerce div.product form.cart::before {
    content: ' ';
    display: table
}

.woocommerce div.product form.cart::after {
    clear: both
}

.woocommerce div.product form.cart div.quantity {
    float: left;
    /* margin: 0 4px 0 0; */
}

.woocommerce div.product form.cart table {
    border-width: 0 0 1px
}

.woocommerce div.product form.cart table td {
    padding-left: 0
}

.woocommerce div.product form.cart table div.quantity {
    float: none;
    margin: 0
}

.woocommerce div.product form.cart table small.stock {
    display: block;
    float: none
}

.woocommerce div.product form.cart .variations {
    margin-bottom: 1em;
    border: 0;
    width: 100%
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
    border: 0;
    vertical-align: top;
    line-height: 2em
}

.woocommerce div.product form.cart .variations label {
    font-weight: 700
}

.woocommerce div.product form.cart .variations select {
    max-width: 100%;
    min-width: 75%;
    display: inline-block;
    margin-right: 1em
}

.woocommerce div.product form.cart .variations td.label {
    padding-right: 1em
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
    margin-bottom: 1em
}

.woocommerce div.product form.cart .reset_variations {
    visibility: hidden;
    font-size: .83em
}

.woocommerce div.product form.cart .wc-no-matching-variations {
    display: none
}

.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left
}

.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
    padding-right: 1em;
    padding-left: 1em
}

.woocommerce div.product form.cart .group_table td {
    vertical-align: top;
    padding-bottom: .5em;
    border: 0
}

.woocommerce div.product form.cart .group_table td:first-child {
    width: 4em;
    text-align: center
}

.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox {
    display: inline-block;
    width: auto;
    margin: 0 auto;
    -webkit-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5)
}

.woocommerce span.onsale { 
    font-size: .75em;
    z-index: 9
}

.woocommerce .products ul,
.woocommerce ul.products {
    margin: 0 0 1em;
    padding: 0;
    list-style: none outside;
    clear: both
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
    content: ' ';
    display: table
}

.woocommerce .products ul::after,
.woocommerce ul.products::after {
    clear: both
}

.woocommerce .products ul li,
.woocommerce ul.products li {
    list-style: none outside
}

.woocommerce ul.products li.product .onsale {
    top: 0;
    right: 0;
    left: auto;
    margin: -.5em -.5em 0 0
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    padding: .5em 0;
    margin: 0;
    font-size: 1em
}

.woocommerce ul.products li.product a {
    text-decoration: none
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 1em;
    box-shadow: none
}

.woocommerce ul.products li.product strong {
    display: block
}

.woocommerce ul.products li.product .woocommerce-placeholder {
    border: 1px solid #f2f2f2
}

.woocommerce ul.products li.product .star-rating {
    font-size: .857em
}

.woocommerce ul.products li.product .button {
    margin-top: 1em
}

.woocommerce ul.products li.product .price {
    color: #77a464;
    display: block;
    font-weight: 400;
    margin-bottom: .5em;
    font-size: .857em
}

.woocommerce ul.products li.product .price del {
    color: inherit;
    opacity: .5;
    display: inline-block
}

.woocommerce ul.products li.product .price ins {
    background: 0 0;
    font-weight: 700;
    display: inline-block
}

.woocommerce ul.products li.product .price .from {
    font-size: .67em;
    margin: -2px 0 0 0;
    text-transform: uppercase;
    color: rgba(132, 132, 132, .5)
}

.woocommerce .woocommerce-result-count {
    margin: 0 0 1em
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 1em
}

.woocommerce .woocommerce-ordering select {
    vertical-align: top
}

.woocommerce nav.woocommerce-pagination {
    text-align: center
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-block;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border: 1px solid #d3ced2;
    border-right: 0;
    margin: 1px
}

.woocommerce nav.woocommerce-pagination ul li {
    border-right: 1px solid #d3ced2;
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    padding: .5em;
    min-width: 1em;
    display: block
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #ebe9eb;
    color: #8a7e88
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-size: 100%;    
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;    
    left: auto;    
    border: 0;    
    box-shadow: none;
}

.woocommerce #respond input#submit.loading,
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading {
    opacity: .25;
    padding-right: 2.618em
}

.woocommerce #respond input#submit.loading::after,
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after {
    font-family: WooCommerce;
    content: "\e01c";
    vertical-align: top;
    font-weight: 400;
    position: absolute;
    top: .618em;
    right: 1em;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

.woocommerce #respond input#submit.added::after,
.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after {
    font-family: WooCommerce;
    content: "\e017";
    margin-left: .53em;
    vertical-align: bottom
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    text-decoration: none;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    -webkit-font-smoothing: antialiased
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    
}

.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #a46497;
    color: #fff
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
    color: inherit;
    cursor: not-allowed;
    opacity: .5;
    padding: .618em 1em
}

.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
    color: inherit;
    background-color: #ebe9eb
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
    float: none
}

.woocommerce a.added_to_cart {
    padding-top: .5em;
    display: inline-block
}

.woocommerce #reviews h2 small {
    float: right;
    color: #777;
    font-size: 15px;
    margin: 10px 0 0
}

.woocommerce #reviews h2 small a {
    text-decoration: none;
    color: #777
}

.woocommerce #reviews h3 {
    margin: 0
}

.woocommerce #reviews #respond {
    margin: 0;
    border: 0;
    padding: 0
}

.woocommerce #reviews #comment {
    height: 75px
}

.woocommerce #reviews #comments .add_review::after,
.woocommerce #reviews #comments .add_review::before {
    content: ' ';
    display: table
}

.woocommerce #reviews #comments .add_review::after {
    clear: both
}

.woocommerce #reviews #comments h2 {
    clear: none
}

.woocommerce #reviews #comments ol.commentlist {
    margin: 0;
    width: 100%;
    background: 0 0;
    list-style: none
}

.woocommerce #reviews #comments ol.commentlist::after,
.woocommerce #reviews #comments ol.commentlist::before {
    content: ' ';
    display: table
}

.woocommerce #reviews #comments ol.commentlist::after {
    clear: both
}

.woocommerce #reviews #comments ol.commentlist li {
    padding: 0;
    margin: 0 0 20px;
    border: 0;
    position: relative;
    background: 0;
    border: 0
}

.woocommerce #reviews #comments ol.commentlist li .meta {
    color: #777;
    font-size: .75em
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px;
    width: 32px;
    height: auto;
    background: #ebe9eb;
    border: 1px solid #e4e1e3;
    margin: 0;
    box-shadow: none
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 0 0 50px;
    padding: 1em 1em 0
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after,
.woocommerce #reviews #comments ol.commentlist li .comment-text::before {
    content: ' ';
    display: table
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after {
    clear: both
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
    margin: 0 0 1em
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-size: .83em
}

.woocommerce #reviews #comments ol.commentlist ul.children {
    list-style: none outside;
    margin: 20px 0 0 50px
}

.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
    display: none
}

.woocommerce #reviews #comments ol.commentlist #respond {
    border: 1px solid #e4e1e3;
    border-radius: 4px;
    padding: 1em 1em 0;
    margin: 20px 0 0 50px
}

.woocommerce #reviews #comments .commentlist>li::before {
    content: ""
}

.woocommerce .star-rating {	
	float: left;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    font-family: star
}

.woocommerce .star-rating::before {
    content: "\73\73\73\73\73";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute
}

.woocommerce .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em
}

.woocommerce .star-rating span::before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0
}

.woocommerce .woocommerce-product-rating {
    line-height: 2;
    display: block
}

.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
    content: ' ';
    display: table
}

.woocommerce .woocommerce-product-rating::after {
    clear: both
}

.woocommerce .woocommerce-product-rating .star-rating {
    margin: .5em 4px 0 0;
    float: left
}

.woocommerce .products .star-rating {
    display: block;
    margin: 0 0 .5em;
    float: none
}

.woocommerce .hreview-aggregate .star-rating {
    margin: 10px 0 0
}

.woocommerce #review_form #respond {
    position: static;
    margin: 0;
    width: auto;
    padding: 0;
    background: transparent none;
    border: 0
}

.woocommerce #review_form #respond::after,
.woocommerce #review_form #respond::before {
    content: ' ';
    display: table
}

.woocommerce #review_form #respond::after {
    clear: both
}

.woocommerce #review_form #respond p {
    margin: 0 0 10px
}

.woocommerce #review_form #respond .form-submit input {
    left: auto
}

.woocommerce #review_form #respond textarea {
    box-sizing: border-box;
    width: 100%
}

.woocommerce p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none
}

.woocommerce p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: WooCommerce;
    content: "\e021";
    text-indent: 0
}

.woocommerce p.stars a:hover~a::before {
    content: "\e021"
}

.woocommerce p.stars:hover a::before {
    content: "\e020"
}

.woocommerce p.stars.selected a.active::before {
    content: "\e020"
}

.woocommerce p.stars.selected a.active~a::before {
    content: "\e021"
}

.woocommerce p.stars.selected a:not(.active)::before {
    content: "\e020"
}

.woocommerce table.shop_attributes {
    border: 0;
    border-top: 1px dotted rgba(0, 0, 0, .1);
    margin-bottom: 1.618em;
    width: 100%
}

.woocommerce table.shop_attributes th {
    width: 150px;
    font-weight: 700;
    padding: 8px;
    border-top: 0;
    border-bottom: 1px dotted rgba(0, 0, 0, .1);
    margin: 0;
    line-height: 1.5
}

.woocommerce table.shop_attributes td {
    font-style: italic;
    padding: 0;
    border-top: 0;
    border-bottom: 1px dotted rgba(0, 0, 0, .1);
    margin: 0;
    line-height: 1.5
}

.woocommerce table.shop_attributes td p {
    margin: 0;
    padding: 8px 0
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
    background: rgba(0, 0, 0, .025)
}

.woocommerce table.shop_table {
    border: 1px solid rgba(0, 0, 0, .1);
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px
}

.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 9px 12px;
    line-height: 1.5em
}

.woocommerce table.shop_table td {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 9px 12px;
    vertical-align: middle;
    line-height: 1.5em
}

.woocommerce table.shop_table td small {
    font-weight: 400
}

.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
    border-top: 0
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
    font-weight: 700;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.woocommerce table.my_account_orders {
    font-size: .85em
}

.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
    padding: 4px 8px;
    vertical-align: middle
}

.woocommerce table.my_account_orders .button {
    white-space: nowrap
}

.woocommerce table.my_account_orders .order-actions {
    text-align: right
}

.woocommerce table.my_account_orders .order-actions .button {
    margin: .125em 0 .125em .25em
}

.woocommerce table.woocommerce-MyAccount-downloads td,
.woocommerce table.woocommerce-MyAccount-downloads th {
    vertical-align: top;
    text-align: center
}

.woocommerce table.woocommerce-MyAccount-downloads td:first-child,
.woocommerce table.woocommerce-MyAccount-downloads th:first-child {
    text-align: left
}

.woocommerce table.woocommerce-MyAccount-downloads td:last-child,
.woocommerce table.woocommerce-MyAccount-downloads th:last-child {
    text-align: left
}

.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,
.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before {
    content: "\2193";
    display: inline-block
}

.woocommerce td.product-name .wc-item-meta,
.woocommerce td.product-name dl.variation {
    list-style: none outside
}

.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,
.woocommerce td.product-name .wc-item-meta dt,
.woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce td.product-name dl.variation dt {
    float: left;
    clear: both;
    margin-right: .25em;
    display: inline-block;
    list-style: none outside
}

.woocommerce td.product-name .wc-item-meta dd,
.woocommerce td.product-name dl.variation dd {
    margin: 0
}

.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child,
.woocommerce td.product-name dl.variation p,
.woocommerce td.product-name dl.variation:last-child {
    margin-bottom: 0
}

.woocommerce td.product-name p.backorder_notification {
    font-size: .83em
}

.woocommerce td.product-quantity {
    min-width: 80px
}

.woocommerce ul.cart_list,
.woocommerce ul.product_list_widget {
    list-style: none outside;
    padding: 0;
    margin: 0
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
    margin: 0;
    list-style: none
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.cart_list li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce ul.product_list_widget li::before {
    content: ' ';
    display: table
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after {
    clear: both
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
    display: block;
    font-weight: 700
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    float: right;
    /* box-shadow: none */ 
}

.woocommerce ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl {
    margin: 0;
    padding-left: 1em;
    border-left: 2px solid rgba(0, 0, 0, .1)
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.cart_list li dl::before,
.woocommerce ul.product_list_widget li dl::after,
.woocommerce ul.product_list_widget li dl::before {
    content: ' ';
    display: table
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.product_list_widget li dl::after {
    clear: both
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dd,
.woocommerce ul.product_list_widget li dl dt {
    display: inline-block;
    float: left;
    margin-bottom: 1em
}

.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt {
    font-weight: 700;
    padding: 0 0 .25em;
    margin: 0 4px 0 0;
    clear: left
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
    padding: 0 0 .25em
}

.woocommerce ul.cart_list li dl dd p:last-child,
.woocommerce ul.product_list_widget li dl dd p:last-child {
    margin-bottom: 0
}

.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
    float: none
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
    border-top: 0;
    padding: 0.5rem 0 0
}

.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
    min-width: 40px;
    display: inline-block
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
    padding-left: 2em;
    position: relative;
    padding-top: 0
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
    position: absolute;
    top: 0;
    left: 0
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce .widget_shopping_cart .buttons::before,
.woocommerce.widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::before {
    content: ' ';
    display: table
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::after {
    clear: both
}

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
    margin-right: 5px;
    margin-bottom: 5px
}

.woocommerce form .form-row {
    padding: 3px;
    margin: 0 0 6px
}

.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder {
    -webkit-transition: opacity .5s .5s ease;
    transition: opacity .5s .5s ease;
    opacity: 0
}

.woocommerce form .form-row label {
    line-height: 2
}

.woocommerce form .form-row label.hidden {
    visibility: hidden
}

.woocommerce form .form-row label.inline {
    display: inline
}

.woocommerce form .form-row .woocommerce-input-wrapper .description {
    background: #1e85be;
    color: #fff;
    border-radius: 3px;
    padding: 1em;
    margin: .5em 0 0;
    clear: both;
    display: none;
    position: relative
}

.woocommerce form .form-row .woocommerce-input-wrapper .description a {
    color: #fff;
    text-decoration: underline;
    border: 0;
    box-shadow: none
}

.woocommerce form .form-row .woocommerce-input-wrapper .description::before {
    left: 50%;
    top: 0;
    margin-top: -4px;
    -webkit-transform: translateX(-50%) rotate(180deg);
    -ms-transform: translateX(-50%) rotate(180deg);
    transform: translateX(-50%) rotate(180deg);
    content: "";
    position: absolute;
    border-width: 4px 6px 0 6px;
    border-style: solid;
    border-color: #1e85be transparent transparent transparent;
    z-index: 100;
    display: block
}

.woocommerce form .form-row select {
    cursor: pointer;
    margin: 0
}

.woocommerce form .form-row .required {
    color: red;
    font-weight: 700;
    border: 0!important;
    text-decoration: none;
    visibility: hidden
}

.woocommerce form .form-row .optional {
    visibility: visible
}

.woocommerce form .form-row .input-checkbox {
    display: inline;
    margin: -2px 8px 0 0;
    text-align: center;
    vertical-align: middle
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal
}

.woocommerce form .form-row textarea {
    height: 4em;
    line-height: 1.5;
    display: block;
    box-shadow: none
}

.woocommerce form .form-row .select2-container {
    width: 100%;
    line-height: 2em
}

.woocommerce form .form-row.woocommerce-invalid label {
    color: #a00
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #a00
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
    border-color: #6dc22e
}

.woocommerce form .form-row::-webkit-input-placeholder {
    line-height: normal
}

.woocommerce form .form-row:-moz-placeholder {
    line-height: normal
}

.woocommerce form .form-row:-ms-input-placeholder {
    line-height: normal
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid #d3ced2;
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    border-radius: 5px
}

.woocommerce ul#shipping_method {
    list-style: none outside;
    margin: 0;
    padding: 0
}

.woocommerce ul#shipping_method li {
    margin: 0 0 .5em;
    line-height: 1.5em;
    list-style: none outside
}

.woocommerce ul#shipping_method li input {
    margin: 3px .4375em 0 0;
    vertical-align: top
}

.woocommerce ul#shipping_method li label {
    display: inline
}

.woocommerce ul#shipping_method .amount {
    font-weight: 700
}

.woocommerce p.woocommerce-shipping-contents {
    margin: 0
}

.woocommerce ul.order_details {
    margin: 0 0 3em;
    list-style: none
}

.woocommerce ul.order_details::after,
.woocommerce ul.order_details::before {
    content: ' ';
    display: table
}

.woocommerce ul.order_details::after {
    clear: both
}

.woocommerce ul.order_details li {
    float: left;
    margin-right: 2em;
    text-transform: uppercase;
    font-size: .715em;
    line-height: 1;
    border-right: 1px dashed #d3ced2;
    padding-right: 2em;
    margin-left: 0;
    padding-left: 0;
    list-style-type: none
}

.woocommerce ul.order_details li strong {
    display: block;
    font-size: 1.4em;
    text-transform: none;
    line-height: 1.5
}

.woocommerce ul.order_details li:last-of-type {
    border: none
}

.woocommerce .wc-bacs-bank-details-account-name {
    font-weight: 700
}

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
    margin-bottom: 2em
}

.woocommerce .woocommerce-customer-details:last-child,
.woocommerce .woocommerce-order-details:last-child,
.woocommerce .woocommerce-order-downloads:last-child {
    margin-bottom: 0
}

.woocommerce .woocommerce-customer-details address {
    font-style: normal;
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-bottom-width: 2px;
    border-right-width: 2px;
    text-align: left;
    width: 100%;
    border-radius: 5px;
    padding: 6px 12px
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
    margin-bottom: 0;
    padding-left: 1.5em
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "";
    text-decoration: none;
    margin-left: -1.5em;
    line-height: 1.75;
    position: absolute
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "";
    text-decoration: none;
    margin-left: -1.5em;
    line-height: 1.75;
    position: absolute
}

.woocommerce .woocommerce-widget-layered-nav-list {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none outside
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
    padding: 0 0 1px;
    list-style: none
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before {
    content: ' ';
    display: table
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after {
    clear: both
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span {
    padding: 1px 0
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "";
    text-decoration: none;
    color: #a00
}

.woocommerce .woocommerce-widget-layered-nav-dropdown__submit {
    margin-top: 1em
}

.woocommerce .widget_layered_nav_filters ul {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none outside;
    overflow: hidden;
    zoom: 1
}

.woocommerce .widget_layered_nav_filters ul li {
    float: left;
    padding: 0 1em 1px 1px;
    list-style: none
}

.woocommerce .widget_layered_nav_filters ul li a {
    text-decoration: none
}

.woocommerce .widget_layered_nav_filters ul li a::before {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "";
    text-decoration: none;
    color: #a00;
    vertical-align: inherit;
    margin-right: .5em
}

.woocommerce .widget_price_filter .price_slider {
    margin-bottom: 1em
}

.woocommerce .widget_price_filter .price_slider_amount {
    text-align: right;
    line-height: 2.4;
    font-size: .8751em
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    font-size: 1.15em;
    float: left
}

.woocommerce .widget_price_filter .ui-slider {
    position: relative;
    text-align: left;
    margin-left: .5em;
    margin-right: .5em
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    border-radius: 1em;
    cursor: ew-resize;
    outline: 0;
    margin-left: -.5em
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    border-radius: 1em;
    background-color: #a46497
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    border-radius: 1em;
    background-color: #462940;
    border: 0
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: .5em
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
    left: -1px
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
    right: -1px
}

.woocommerce .widget_rating_filter ul {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none outside
}

.woocommerce .widget_rating_filter ul li {
    padding: 0 0 1px;
    list-style: none
}

.woocommerce .widget_rating_filter ul li::after,
.woocommerce .widget_rating_filter ul li::before {
    content: ' ';
    display: table
}

.woocommerce .widget_rating_filter ul li::after {
    clear: both
}

.woocommerce .widget_rating_filter ul li a {
    padding: 1px 0;
    text-decoration: none
}

.woocommerce .widget_rating_filter ul li .star-rating {
    float: none;
    display: inline-block
}

.woocommerce .widget_rating_filter ul li.chosen a::before {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "";
    text-decoration: none;
    color: #a00
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    float: left;
    margin-right: 1em
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-block
}

.woocommerce-no-js form.woocommerce-form-coupon,
.woocommerce-no-js form.woocommerce-form-login {
    display: block!important
}

.woocommerce-no-js .showcoupon,
.woocommerce-no-js .woocommerce-form-coupon-toggle,
.woocommerce-no-js .woocommerce-form-login-toggle {
    display: none!important
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 1em 2em 1em 3.5em;
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
    content: ' ';
    display: table
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
    clear: both
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    font-family: WooCommerce;
    content: "\e028";
    display: inline-block;
    position: absolute;
    top: 1em;
    left: 1.5em
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
    float: right
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
    list-style: none outside!important;
    padding-left: 0!important;
    margin-left: 0!important
}

.rtl.woocommerce .price_label,
.rtl.woocommerce .price_label span {
    direction: ltr;
    unicode-bidi: embed
}

.woocommerce-message::before {
    content: "\e015";
    color: #8fae1b
}

.woocommerce-info {
    border-top-color: #007bff
}

.woocommerce-info::before {
    color: #1e85be
}

.woocommerce-error {
    border-top-color: #b81c23
}

.woocommerce-error::before {
    content: "\e016";
    color: #b81c23
}

.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
    content: ' ';
    display: table
}

.woocommerce-account .woocommerce::after {
    clear: both
}

.woocommerce-account .addresses .title::after,
.woocommerce-account .addresses .title::before {
    content: ' ';
    display: table
}

.woocommerce-account .addresses .title::after {
    clear: both
}

.woocommerce-account .addresses .title h3 {
    float: left
}

.woocommerce-account .addresses .title .edit {
    float: left;
    clear: both;
    margin-bottom: .5em;
}

.woocommerce-account ol.commentlist.notes li.note p.meta {
    font-weight: 700;
    margin-bottom: 0
}

.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
    margin-bottom: 0
}

.woocommerce-account ul.digital-downloads {
    margin-left: 0;
    padding-left: 0
}

.woocommerce-account ul.digital-downloads li {
    list-style: none;
    margin-left: 0;
    padding-left: 0
}

.woocommerce-account ul.digital-downloads li::before {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "";
    text-decoration: none
}

.woocommerce-account ul.digital-downloads li .count {
    float: right
}

#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
    min-width: 32px
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 32px;
    box-shadow: none
}

#add_payment_method table.cart td,
#add_payment_method table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout table.cart td,
.woocommerce-checkout table.cart th {
    vertical-align: middle
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
    float: left;
    box-sizing: border-box;
    border: 1px solid #d3ced2;
    padding: 6px 6px 5px;
    margin: 0 4px 0 0;
    outline: 0
}

#add_payment_method table.cart input,
.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input {
    margin: 0;
    vertical-align: middle
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
    padding: 1em 0
}

#add_payment_method .wc-proceed-to-checkout::after,
#add_payment_method .wc-proceed-to-checkout::before,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::before,
.woocommerce-checkout .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::before {
    content: ' ';
    display: table
}

#add_payment_method .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::after {
    clear: both
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
    display: block;
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.25em;
    padding: 1em
}

#add_payment_method .cart-collaterals .shipping-calculator-button,
.woocommerce-cart .cart-collaterals .shipping-calculator-button,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button {
    float: none;
    margin-top: .5em;
    display: inline-block
}

#add_payment_method .cart-collaterals .shipping-calculator-button::after,
.woocommerce-cart .cart-collaterals .shipping-calculator-button::after,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button::after {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-left: .618em;
    content: "";
    text-decoration: none
}

#add_payment_method .cart-collaterals .shipping-calculator-form,
.woocommerce-cart .cart-collaterals .shipping-calculator-form,
.woocommerce-checkout .cart-collaterals .shipping-calculator-form {
    margin: 1em 0 0 0
}

#add_payment_method .cart-collaterals .cart_totals p small,
.woocommerce-cart .cart-collaterals .cart_totals p small,
.woocommerce-checkout .cart-collaterals .cart_totals p small {
    color: #777;
    font-size: .83em
}

#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
    border-collapse: separate;
    margin: 0 0 6px;
    padding: 0
}

#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,
#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th {
    border-top: 0
}

#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
    width: 35%
}

#add_payment_method .cart-collaterals .cart_totals table td,
#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
    vertical-align: top;
    border-left: 0;
    border-right: 0;
    line-height: 1.5em
}

#add_payment_method .cart-collaterals .cart_totals table small,
.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small {
    color: #777
}

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
    width: 100%
}

#add_payment_method .cart-collaterals .cart_totals .discount td,
.woocommerce-cart .cart-collaterals .cart_totals .discount td,
.woocommerce-checkout .cart-collaterals .cart_totals .discount td {
    color: #77a464
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
    border-top: 1px solid #ebe9eb
}

#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination,
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination {
    margin-bottom: 0
}

#add_payment_method .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product {
    margin-top: 0
}

#add_payment_method .checkout .col-2 h3#ship-to-different-address,
.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
    float: left;
    clear: none
}

#add_payment_method .checkout .col-2 .notes,
.woocommerce-cart .checkout .col-2 .notes,
.woocommerce-checkout .checkout .col-2 .notes {
    clear: left
}

#add_payment_method .checkout .col-2 .form-row-first,
.woocommerce-cart .checkout .col-2 .form-row-first,
.woocommerce-checkout .checkout .col-2 .form-row-first {
    clear: left
}

#add_payment_method .checkout .create-account small,
.woocommerce-cart .checkout .create-account small,
.woocommerce-checkout .checkout .create-account small {
    font-size: 11px;
    color: #777;
    font-weight: 400
}

#add_payment_method .checkout div.shipping-address,
.woocommerce-cart .checkout div.shipping-address,
.woocommerce-checkout .checkout div.shipping-address {
    padding: 0;
    clear: left;
    width: 100%
}

#add_payment_method .checkout .shipping_address,
.woocommerce-cart .checkout .shipping_address,
.woocommerce-checkout .checkout .shipping_address {
    clear: both
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: #ebe9eb;
    border-radius: 5px
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
    text-align: left;
    padding: 1em;
    border-bottom: 1px solid #d3ced2;
    margin: 0;
    list-style: none outside
}

#add_payment_method #payment ul.payment_methods::after,
#add_payment_method #payment ul.payment_methods::before,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::before,
.woocommerce-checkout #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::before {
    content: ' ';
    display: table
}

#add_payment_method #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::after {
    clear: both
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
    line-height: 2;
    text-align: left;
    margin: 0;
    font-weight: 400
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
    margin: 0 1em 0 0
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
    vertical-align: middle;
    margin: -2px 0 0 .5em;
    padding: 0;
    position: relative;
    box-shadow: none
}

#add_payment_method #payment ul.payment_methods li img+img,
.woocommerce-cart #payment ul.payment_methods li img+img,
.woocommerce-checkout #payment ul.payment_methods li img+img {
    margin-left: 2px
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
    content: ' ';
    display: table
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after {
    clear: both
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
    padding: 1em
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
    margin: 1em 0;
    font-size: .92em;
    border-radius: 2px;
    line-height: 1.5;
    background-color: #dfdcde;
    color: #515151
}

#add_payment_method #payment div.payment_box input.input-text,
#add_payment_method #payment div.payment_box textarea,
.woocommerce-cart #payment div.payment_box input.input-text,
.woocommerce-cart #payment div.payment_box textarea,
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea {
    border-color: #c7c1c6;
    border-top-color: #bbb3b9
}

#add_payment_method #payment div.payment_box::-webkit-input-placeholder,
.woocommerce-cart #payment div.payment_box::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box::-webkit-input-placeholder {
    color: #bbb3b9
}

#add_payment_method #payment div.payment_box:-moz-placeholder,
.woocommerce-cart #payment div.payment_box:-moz-placeholder,
.woocommerce-checkout #payment div.payment_box:-moz-placeholder {
    color: #bbb3b9
}

#add_payment_method #payment div.payment_box:-ms-input-placeholder,
.woocommerce-cart #payment div.payment_box:-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box:-ms-input-placeholder {
    color: #bbb3b9
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods {
    list-style: none outside;
    margin: 0
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token {
    margin: 0 0 .5em
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label {
    cursor: pointer
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
    vertical-align: middle;
    margin: -3px 1em 0 0;
    position: relative
}

#add_payment_method #payment div.payment_box .wc-credit-card-form,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form {
    border: 0;
    padding: 0;
    margin: 1em 0 0
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number {
    font-size: 1.5em;
    padding: 8px;
    background-repeat: no-repeat;
    background-position: right .618em center;
    background-size: 32px 20px
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/visa.svg)
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/mastercard.svg)
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/laser.svg)
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/diners.svg)
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/maestro.svg)
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/jcb.svg)
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/amex.svg)
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover {
    background-image: url(//creativevisionaryhub.com/wp-content/themes/personawp/assets/img/woocommerce/icons/credit-cards/discover.svg)  
}

#add_payment_method #payment div.payment_box span.help,
.woocommerce-cart #payment div.payment_box span.help,
.woocommerce-checkout #payment div.payment_box span.help {
    font-size: .857em;
    color: #777;
    font-weight: 400
}

#add_payment_method #payment div.payment_box .form-row,
.woocommerce-cart #payment div.payment_box .form-row,
.woocommerce-checkout #payment div.payment_box .form-row {
    margin: 0 0 1em
}

#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child {
    margin-bottom: 0
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    content: "";
    display: block;
    border: 1em solid #dfdcde;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -.75em;
    left: 0;
    margin: -1em 0 0 2em
}

#add_payment_method #payment .payment_method_paypal .about_paypal,
.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
    float: right;
    line-height: 52px;
    font-size: .83em
}

#add_payment_method #payment .payment_method_paypal img,
.woocommerce-cart #payment .payment_method_paypal img,
.woocommerce-checkout #payment .payment_method_paypal img {
    max-height: 52px;
    vertical-align: middle
}

.woocommerce-terms-and-conditions {
    border: 1px solid rgba(0, 0, 0, .2);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .05)
}

.woocommerce-invalid #terms {
    outline: 2px solid red;
    outline-offset: 2px
}

.woocommerce-password-strength {
    text-align: center;
    font-weight: 600;
    padding: 3px .5em;
    font-size: 1em
}

.woocommerce-password-strength.strong {
    background-color: #c1e1b9;
    border-color: #83c373
}

.woocommerce-password-strength.short {
    background-color: #f1adad;
    border-color: #e35b5b
}

.woocommerce-password-strength.bad {
    background-color: #fbc5a9;
    border-color: #f78b53
}

.woocommerce-password-strength.good {
    background-color: #ffe399;
    border-color: #ffc733
}

.woocommerce-password-hint {
    margin: .5em 0 0;
    display: block
}

#content.twentyeleven .woocommerce-pagination a {
    font-size: 1em;
    line-height: 1
}

.single-product .twentythirteen #reply-title,
.single-product .twentythirteen #respond #commentform,
.single-product .twentythirteen .entry-summary {
    padding: 0
}

.single-product .twentythirteen p.stars {
    clear: both
}

.twentythirteen .woocommerce-breadcrumb {
    padding-top: 40px
}

.twentyfourteen ul.products li.product {
    margin-top: 0!important
}

body:not(.search-results) .twentysixteen .entry-summary {
    color: inherit;
    font-size: inherit;
    line-height: inherit
}

.twentysixteen .price ins {
    background: inherit;
    color: inherit
}/*
 @Author: personawp
 This file contains the WooCommerce customized CSS styles
*/

/*----------------------- WOOCOMMERCE STYLES ------------------------------ */

/* Common styles */

body.post-type-archive-product .add_to_cart_button, body.tax-product_cat .add_to_cart_button, body.tax-product_tag .add_to_cart_button, body.single-product .related .add_to_cart_button, body.single-product .cross-sells .add_to_cart_button, body.single-product .upsells .add_to_cart_button, body.home .add_to_cart_button, body.tax-book_author .add_to_cart_button, body.page-template-template-product .add_to_cart_button, 
body.post-type-archive-product .product_type_grouped, body.tax-product_cat .product_type_grouped,  body.tax-product_tag .product_type_grouped, body.single-product .related .product_type_grouped, body.home .product_type_grouped, body.tax-book_author .product_type_grouped, body.page-template-template-product .product_type_grouped,
body.page-template .add_to_cart_button, body.post-type-archive-product .product_type_simple, body.tax-product_cat .product_type_simple, body.tax-product_tag .product_type_simple, body.home .product_type_simple, body.single-product .product_type_simple,
body.archive .product_type_simple, body.archive .product_type_grouped {
	text-align: center;
	margin: .5rem;
    display: block;
	width: auto;
	line-height: 1.2;
}

body.home .price, body.archive .price, body.post-type-archive-product .price, body.single-product .related .price {
    font-weight: 500;
}

button.single_add_to_cart_button {
	margin-bottom: 1em;
}

.product-details-custom-fields-icons {
	text-align: center;
	width: 24px;
}

.sku_wrapper, .posted_in, .tagged_as, .preview_single {
    display: block;
	margin-bottom: .25rem;
}

.posted_in a, .tagged_as a {
    font-size: 14px;
	font-weight: bold;
}

a.added_to_cart {
	display:none !important;
}

.cart-contents:before {
    font-family: "Font Awesome 6 Free";
    content: "\f07a";
    font-weight: 900;
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: middle;
}

.cart-contents-count {
	background: red;
    color: white;
    padding: 0 0.5em;
    font-size: 0.75rem;
    display: inline-block;
	vertical-align: top;
    border-radius: 25rem;
    height: 18px;
}

.cart-empty {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
	border-top: 0;
	padding: 1em 0;
}

.cart-empty.woocommerce-info::before {
    content: none;
}

.showcoupon {
    font-weight: 700;
    color: inherit !important;
}

.coupon input.input-text {
	width: 160px;
    height: 43px;
}

.comment-form-cookies-consent label {
	font-style: normal;
    font-size: 13px;
    margin: .5rem 0;
    display: inline;
    margin-left: 0.5rem;
}

.edit-account legend {
    margin: 50px 0 15px;
    padding: 0;
    display: inline-block;
    float: left;
    font-size: 2rem;
}

.select2-container--default .select2-selection--single {
	background: #f1f1f1;
    border: 0;
    color: rgba(0,0,0,.75);
    display: block;
    padding: .5rem;
    height: 2.3125rem !important;
}

/* Widget styles */

.widget_product_categories ul {
    padding-left: 0;
	margin-top: 0.25rem;
}

.widget_product_categories li {
    list-style: none;
    margin-bottom: 0.25rem;
}

.widget_product_categories li ul li {
	margin-left: 0.25rem;
}

.widget_product_categories li ul li:before {
	margin: 0 0.25rem;
	content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	color: #E75120;
}

.product-categories .categories_count {
    background: #E75120;
	color: #fff;
}

.price_slider_wrapper {
	margin-top: 1.5rem;
}

.price_slider_amount button {
	border-radius: .25rem !important;
	display: block;
    line-height: normal;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: 2px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	background-color: #212529;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background-color: #929292;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	width: 0.5em;
    height: 0.5em;
    top: -0.2em;
}

.woocommerce ul.cart_list li img {
	width: 54px;
	margin-left: 1rem;
}

.woocommerce.widget_shopping_cart .cart_list li a.remove {
    top: 3px;
    left: 4px;
	font-size: unset;
}

.woocommerce-cart table.cart img {
    width: 85px;
}

.mini_cart_item {
	background: #F1F1F1;
}

/* Woocommerce base general styles */

body.woocommerce-account button.woocommerce-Button {
    margin: 1em 0;
}

body.woocommerce-checkout .product-thumbnail img {
	width: 54px;
}

body.home .woocommerce .woocommerce-ordering, body.home .woocommerce .woocommerce-result-count {
	display: none;
}

body.post-type-archive-product ins, .woocommerce div.product p.price ins, .woocommerce div.product span.price ins, body.single-product .price ins, body.home .price ins {
    text-decoration: none;
	font-weight: 500;
}

body.single-product div.product p.price {
	font-size: 1.25rem;
}

.woocommerce .product_meta, .woocommerce div.product form.cart {
    margin-bottom: 1em;
}

.woocommerce div.product p.price del, .woocommerce ul.product_list_widget li p.price del {
    font-size: 15px;
}

.woocommerce div.product p.price ins, .woocommerce ul.product_list_widget li p.price ins {
	font-size: 1.25rem;	
	text-decoration: none;
}

.woocommerce .woocommerce-form__label #rememberme {
    vertical-align: middle;
}

.woocommerce .taxonomy-summary p.price {
    margin-bottom: 0.5rem;
}

.woocommerce .widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons a {
	border-radius: .25rem;
}

.woocommerce .circled-button {
    height: 34px;
    width: 34px;
    line-height: 36px;
    text-align: center;
}

.woocommerce .ordering-pos {
    float: right;
}

.woocommerce .woocommerce-ordering select {
	font-size: .875rem;
	width: auto;
	box-shadow: 0 15px 20px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.08);
}

.woocommerce .woocommerce-ordering select option {
    margin: 5px 0;
	padding: 5px;
}

.woocommerce-account .woocommerce-MyAccount-content p.form-row span em {
    font-style: normal;
	margin: .5rem 0;
    display: block;	
	font-size: 14px;
    font-weight: 500;
}

.woocommerce-MyAccount-navigation ul li {
    list-style: none;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:after {
	content: '';
    margin-right: 0.35rem;
    content: "\f2bb";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	font-size: 1.15rem;
    position: absolute;
    right: 8px;
    top: 8px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:after {
	content: '';
    margin-right: 0.35rem;
    content: "\f218";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	font-size: 1.15rem;
    position: absolute;
    right: 8px;
    top: 8px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:after {
	content: '';
    margin-right: 0.35rem;
    content: "\f019";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	font-size: 1.15rem;
    position: absolute;
    right: 8px;
    top: 8px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:after {
	content: '';
    margin-right: 0.35rem;
    content: "\f02e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	font-size: 1.15rem;
    position: absolute;
    right: 8px;
    top: 8px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:after {
	content: '';
    margin-right: 0.35rem;
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	font-size: 1.15rem;
    position: absolute;
    right: 8px;
    top: 8px;
}

.woocommerce form .form-row select {
	background: #f1f1f1;
    border: 0;
}

.woocommerce table.my_account_orders {
    font-size: 100%;
}

.woocommerce ul.order_details {
	padding-inline-start: 0;
	margin: 2rem 0;
}

.woocommerce ul.order_details li {
	border-right: unset; 
	font-size: unset;
}

.woocommerce ul.order_details li span {
    display: flex;
    font-weight: 500;
    text-transform: none;
    line-height: 1.75;
}

@media (max-width: 991px) {
	.woocommerce ul.order_details li {
		float: none;
		margin: 1rem 0;
	}
}

.woocommerce .woocommerce-customer-details address {
	border: 0;
	padding: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
	content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
	content: "\f01c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.woocommerce .col-1,.col-2 {
	/*flex: unset;
    max-width: unset;*/
}

.woocommerce .edit, fieldset legend {
	font-weight: bold;
}

.woocommerce-Address {
	padding: 0;
    flex: unset;
    max-width: unset;
}

.woocommerce .woocommerce-breadcrumb {
    margin: 1rem 0;
}

.woocommerce table.shop_table {
	border: 0;
}

.woocommerce form .form-row, .woocommerce-page form .form-row {
    padding: 5px 0;
    margin: 0;
	display: block;	
}

.woocommerce-checkout .woocommerce form .form-row .select2-container {
    width: 100%!important;
    background: #f1f1f1;
    height: 2.3125rem;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
    background: 0 0;
    border: none;
    height: 37px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 36px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
    padding-left: 0;
}

.woocommerce form.checkout_coupon {
	border-radius: 0;
}

.woocommerce button.button, .woocommerce a.button, .woocommerce a.added_to_cart, .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th, .woocommerce table.shop_table th, .woocommerce-privacy-policy-link  {
	font-weight: 500;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.woocommerce-cart table.cart .product-thumbnail {
	width: 110px;
}

.woocommerce table.shop_table th, .woocommerce table.shop_table td {
	padding: 9px 0;
}

.woocommerce table.shop_table th {	
	text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
		content: attr(data-title) ": ";
		font-weight: normal;
		float: left;
		text-transform: uppercase;
	}
}

.woocommerce-checkout #payment div.form-row {
    padding: 1em 0;
}

.woocommerce-address-fields__field-wrapper {
	margin-bottom: 1em;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
	color: #333;
	clear: both;
    display: block;
	font-weight: 500;
	margin-bottom: 10px;
}

.woocommerce .product a:hover {
	text-decoration: none;
}

.woocommerce a.added_to_cart {
    margin-top: 1.5em;
    font-size: 100%;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    border-radius: 3px;
    left: auto;
    color: #515151;
    background-color: #ebe9eb;
    border: 0;
    display: block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    text-align: center;
    margin: 0 auto;
}

.woocommerce a.added_to_cart::before {
	content: '';
    margin-right: 0.75rem;
	content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.woocommerce span.onsale {
    padding: 5px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
    margin: 0.5rem;
    display: inline-block;
    font-weight: 700;
    font-size: .85em;
}

.woocommerce span.onsale:after {
	content: '';
    margin-left: 0.25rem;
	content: "\f02c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.taxonomy-summary span.onsale, .summary span.onsale {
    background: none;
    padding: 0;
    display: inline-block;
    margin-bottom: 0.5em;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    border: 0;
}

.woocommerce ul.products li.product .onsale {
    margin: 0;
}

.woocommerce div.product form.cart .variations select {
    width: auto;
}

.woocommerce-cart .cart .button, .woocommerce-cart .cart input.button {
    float: right;
}

.woocommerce .quantity .qty {
	display: table-cell;
	height: 40px;
    margin-right: .25rem;
	border: 0;	
    background: #f1f1f1;
}

.woocommerce table.shop_attributes {
	border-top: 0;
}

.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
	border-bottom: 0;
}

.woocommerce-product-details__custom-fields, .woocommerce-product-details__share-buttons {
    padding: 0.5em 0;
    display: inline-block;
}

.woocommerce div.product .product_title {
	padding-top: 0.5em;
}

.woocommerce-message::before {
    color: #28a745;
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
	content: "\f06a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.woocommerce-error {
    border-top-color: #dc3545;
}

.woocommerce-error::before {
    color: #dc3545;
}

.woocommerce #respond input#submit.added::after, .woocommerce a.button.added::after, .woocommerce button.button.added::after, .woocommerce input.button.added::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.woocommerce-notices-wrapper {
    margin-top: 1rem;
}

.woocommerce-info::before {
    color: #007bff;
}

.woocommerce form .form-row input.input-text {
    background: #f1f1f1;
    border: 0;
    color: rgba(0,0,0,.75);
    display: block;
    padding: .5rem;
    height: 2.3125rem;
}

.woocommerce form .form-row label {
    font-weight: 500;
    font-size: 18px;
}

.woocommerce form .form-row textarea {
    padding: .5em;
}

.woocommerce form.login, .woocommerce form.register {
    border: 0;
	padding: 0;
}

.woocommerce .form-row-first {
    width: 48%;
    float: left;
}

.woocommerce .form-row-last {
    width: 48%;
    float: right;
}

.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
    float: left;
}

.woocommerce #content table.cart td.actions .coupon label, .woocommerce table.cart td.actions .coupon label, .woocommerce-page #content table.cart td.actions .coupon label, .woocommerce-page table.cart td.actions .coupon label {
    display: none;
}

.woocommerce .woocommerce-result-count {
	float: left;
    position: relative;
    margin-bottom: 0;
    padding: 0.327em 0;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 0;
	position: relative;
}

.woocommerce table.shop_attributes td {
    font-style: normal;
}

.woocommerce-titles {
    padding-bottom: 0.5rem;
}

.woocommerce .woocommerce-review__author { 
	font-weight: 500; 
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-size: 1rem;
}

.woocommerce #reviews #comments ol.commentlist {
    padding-inline-start: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	width: 40px;
    border: 0;
	padding: 0;
}

.woocommerce-review__verified {
    font-style: normal;
    color: #fff;
    background: #28A745;
    padding: 0 3px;
}

.woocommerce tr.cart_item td.product-total {
    vertical-align: top;
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
	border: none;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	background: none;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 0;
}

@media (min-width: 768px) {
	.woocommerce-checkout #payment ul.payment_methods {
		padding: 1em 0;
	}
}

.woocommerce .total-cart-title {
	display: block;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.woocommerce .order-details-image {
    margin-right: 1rem;
	display: inline-block;
}

.woocommerce .order-details-image img {
    width: 85px;
}

/* Change the default remove items style from cart page */

/* hide the "X" button */ 
.woocommerce td.product-remove a.remove { 
    text-indent: -9999px;
    border: 0;
	font-size: 1em;
}
 
/* add the Fontawesome "X" icon instead */ 
.woocommerce td.product-remove a.remove:before {
    font-family: "Font Awesome 6 Free";
    content: "\f2ed";
    float: left;
    text-indent: 0;
}

.woocommerce td.product-remove a.remove:hover {
    color: #333 !important;
    background: unset;
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: unset;
}

/* Change default star rating styles - Delete the lines below for reset the classical star rating */ 

.taxonomy-summary .woocommerce-product-rating {
    margin-bottom: 0 !important;
}

a.woocommerce-loop-product__link .star-rating {
	margin: 10px auto !important;
    float: none !important;
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 1rem;
}

.woocommerce .star-rating {
	width: 5.55em;
	margin-bottom: 0.5rem;
    margin-top: 0.4rem;
    margin-right: 0.25rem;
}

.woocommerce p.stars a:before, .woocommerce p.stars:hover a::before {
	font-family: "Font Awesome 6 Free";
    font-weight: 400; 
	content: '\f005';
}

.woocommerce p.stars a:hover~a::before {
	font-family: "Font Awesome 6 Free";
    font-weight: 400; 
	content: '\f005';
}
	
.woocommerce .star-rating span::before {
	font-family: "Font Awesome 6 Free";
    font-weight: 900; 
	content: '\f005 \f005 \f005 \f005 \f005';
	color: #ffc107;
	position: absolute;
    top: 0;
    left: 0;
}
.woocommerce .star-rating::before {
	font-family: "Font Awesome 6 Free";
    font-weight: 400; 
    content: '\f005 \f005 \f005 \f005 \f005';
	color: #d3ced2;
}

.woocommerce p.stars.selected a.active::before, .woocommerce p.stars.selected a:not(.active)::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f005';
}

.woocommerce p.stars.selected a.active~a::before {
	font-family: "Font Awesome 6 Free";
    font-weight: 400; 
	content: '\f005';
}

/* WooCommerce Gallery */
 
.woocommerce-product-gallery {
	position: relative;
	margin-bottom: 3em
}
 
.woocommerce-product-gallery figure {
	margin: 0
}
 
.woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 25%;
	display: inline-block
}

.flex-control-thumbs {
	display: table-row;
}
 
.woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	float: left;
	cursor: pointer;
}
 
.woocommerce-product-gallery .flex-control-thumbs img {
	opacity: .5;
}
 
.woocommerce-product-gallery .flex-control-thumbs img.flex-active,.woocommerce-product-gallery .flex-control-thumbs img:hover {
	opacity: 1;
}
 
.woocommerce-product-gallery img {
	display: block;
	/* customized */
	max-width: 100%;
	height: auto;
}
 
.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 33.3333%
}
 
.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 25%
}
 
.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 20%
}
 
.woocommerce-product-gallery__trigger {
	position: absolute;
	top: 1em;
	right: 1em;
	z-index: 99;
}
 
a.woocommerce-product-gallery__trigger {
	text-decoration: none;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: .875em;
	right: .875em;
	display: block;
	height: 2em;
	width: 2em;
	border-radius: 3px;
	z-index: 99;
	text-align: center;
	text-indent: -999px;
	overflow: hidden;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	background-color: #169fda;
	color: #ffffff;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
	background-color: #1781ae;
	border-color: #1781ae;
	color: #ffffff;
}
 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
	font: normal normal normal 1em/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: block;
	content: "\f00e";
	line-height: 2;
	text-indent: 0;
}

/* WooCommerce Customized Gallery Slider */

.woo-carousel {
	margin-bottom: 10px;
}

.woo-carousel-cell {
	width: 100%;
	margin-right: 10px;
}

.woo-carousel-nav .woo-carousel-cell {
	height: 100px;
	width: 100px;
}

.woo-carousel-nav .woo-carousel-cell.is-nav-selected {
	background: #ED2;
}

/* Five columns - Added extra column for larger resolutions */

.col-five,
.col-sm-five,
.col-md-five,
.col-lg-five,
.col-xl-five {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-five {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 576px) {
    .col-sm-five {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 768px) {
    .col-md-five {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 992px) {
    .col-lg-five {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 1200px) {
    .col-xl-five {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Six columns */

.col-six,
.col-sm-six,
.col-md-six,
.col-lg-six,
.col-xl-six {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-six {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666666%;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
}
@media (min-width: 576px) {
    .col-sm-six {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666666%;
        flex: 0 0 16.666666%;
        max-width: 16.666666%;
    }
}
@media (min-width: 768px) {
    .col-md-six {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666666%;
        flex: 0 0 16.666666%;
        max-width: 16.666666%;
    }
}
@media (min-width: 992px) {
    .col-lg-six {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 1200px) {
    .col-xl-six {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666666%;
        flex: 0 0 16.666666%;
        max-width: 16.666666%;
    }
}

/* Seven columns */

.col-seven,
.col-sm-seven,
.col-md-seven,
.col-lg-seven,
.col-xl-seven {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-seven {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.285714%;
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
}
@media (min-width: 576px) {
    .col-sm-seven {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%;
    }
}
@media (min-width: 768px) {
    .col-md-seven {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%;
    }
}
@media (min-width: 992px) {
    .col-lg-seven {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 1200px) {
    .col-xl-seven {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%;
    }
}

/* Other custom styles */

.attributes-card {
	display: block;
}

.attributes-card li {
	display: inline-block;
	margin-right: .5rem;
}

.attributes-card li:after {
	content: "|";
	padding-left: .5rem;
}

.attributes-card li:last-child:after {
	content: "";
}/*

THIS FILE IS OVERWRITTEN EVERY TIME YOU UPDATE THE PLUGIN.
USE THE CUSTOM CSS OPTION IN THE SUBSCRIPTION SETTING PANEL FOR YOUR
CUSTOM CSS RULES.

*/

div.tnp-subscription,
form.tnp-subscription, form.tnp-profile {
    display: block;
    margin: 1em auto;
    max-width: 500px;
    width: 100%;
}

div.tnp-profile {
    display: block;
    margin: 1em 0;
    max-width: 500px;
    /*width: 100%;*/
}

/* Generic field wrapper */
.tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field
{
    margin-bottom: .7em;
    border: 0;
    padding: 0;
}

.tnp-subscription label,
.tnp-profile label
{
    display: block;
    color: inherit;
    font-weight: normal;
    line-height: normal;
    padding: 0;
    margin: 0;
    margin-bottom: .25em;
    font-size: .9em;
}

.tnp-subscription .tnp-field-checkbox label,
.tnp-profile .tnp-field-checkbox label
{
    display: inline-block;
}

.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea
{
    width: 100%;
    padding: .7em;
    display: block;
    border: 1px;
    color: #444;
    border-color: #ddd;
    background-color: #f4f4f4;
    background-image: none;
    text-shadow: none;
    font-size: 1em;
    margin: 0;
    line-height: normal;
    box-sizing: border-box;
}

.tnp-subscription input[type=checkbox],
.tnp-widget input[type=radio],
.tnp-profile input[type=checkbox]
{
    /* Fixes some bad themes CSS */
    max-width: 1em;
    display: inline-block;
    margin-right: .5em;
}

/* Antireset - http://www.satollo.net/css-and-select-space-between-the-options-and-the-arrow */
.tnp-subscription select option,
.tnp-profile select option
{
    margin-right: .75em;
}

.tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit,
.tnp-unsubscribe button.tnp-submit,
.tnp-reactivate button.tnp-submit
{
    background-color: #444;
    color: #fff;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
}

@media all and (max-width: 480px) {
    .tnp-subscription input[type=submit],
    .tnp-profile input[type=submit] {
        width: 100%;
    }
}

.tnp-widget {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.tnp-widget .tnp-field {
    margin-bottom: 10px;
    border: 0;
    padding: 0;
}

.tnp-widget label {
    display: block;
    color: inherit;
    font-size: 14px;
}

.tnp-widget input[type=text], .tnp-widget input[type=email], .tnp-widget input[type=submit], .tnp-widget select {
    width: 100%;
    padding: 10px;
    display: block;
    border: 1px solid #ddd ;
    border-color: #ddd;
    background-color: #f4f4f4;
    background-image: none;
    text-shadow: none;
    color: #444;
    font-size: 14px;
    line-height: normal;
    box-sizing: border-box;
    height: auto;
}

.tnp-widget input[type=checkbox], .tnp-widget input[type=radio] {
    width: auto;
    display: inline-block;
}

/* Antireset - http://www.satollo.net/css-and-select-space-between-the-options-and-the-arrow */
.tnp-widget select option {
    margin-right: 10px;
}

.tnp-widget input.tnp-submit {
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    margin: 0;
}

.tnp-field input[type="submit"] {
    position: inherit;
}

.tnp-field label {

}

/* Newsletter Widget Minimal */

.tnp-widget-minimal {
    width: 100%;
}

.tnp-widget-minimal form {
    margin: 0;
    padding: 0;
    border: 0;
}

.tnp-widget-minimal input.tnp-email {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #444;
    font-size: 14px;
}

.tnp-widget-minimal input.tnp-submit {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    border-radius: 0px;
    height: auto;
    margin: 0;
}

/* The minimal form */

.tnp-subscription-minimal {
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
}

.tnp-subscription-minimal form {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    white-space: nowrap;
}

.tnp-subscription-minimal input.tnp-email,
.tnp-subscription-minimal input.tnp-name
{
    width: 70%;
    max-width: 300px;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0px;
    margin-right: 10px;
}

.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name
{
    width: 31%;
}

.tnp-subscription-minimal .tnp-privacy-field {
    margin-top: 10px;
}

/* Some of these styles are overridden by theme styles... */
.tnp-subscription-minimal input.tnp-submit {
    width: 29%;
    box-sizing: border-box;
    display: inline-block;
    padding: 10px;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0px;
    margin: 0;
}

.tnp-subscription-posts {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2rem;
}

.tnp-subscription-posts .tnp-subscription {
    max-width: auto;
    margin: 0;
}

@media all and (max-width: 525px) {
    .tnp-subscription-minimal.with-name input.tnp-email,
    .tnp-subscription-minimal.with-name input.tnp-name,
    .tnp-subscription-minimal input.tnp-submit
    {
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: block;
        margin-bottom: .5rem;
    }
}

/* Single button forms */
.tnp-button-form button.tnp-submit {
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    border-radius: 0px;
    height: auto;
    margin: 0;
}

/* Comments Extension */
.tnp-comments {
    clear: both;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tnp-comments label {
    display: block;
}

.tnp-comments input[type=checkbox] {
    display: inline-block;
    width: auto!important;
}


/* Locked Content Extension */
.tnp-lock {
    clear: both;
    display: block;
    box-sizing: border-box;
    box-shadow: none;
    margin: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.tnp-nl-checkout {
    margin-bottom: 1em;
}