/* ------------------------------------------------ */
/* ---------------- TABLE OF CONTENTS -------------- */
/* ------------------------------------------------ */

/*
01. BASIC ELEMENTS

02. WP CLASSES

03. PRE-LOADER

04. HEADER

05. FEATURED SLIDER

06. PROMOTIONAL BOXES

07. RECENT POSTS

08. ABOUT AUTHOR

09. RELATED POSTS

10. COMMENTS

11. MOST VIEWS

12. WIDGETS

13. INSTAGRAM FEED

14. 404 AND CONTENT NONE

15. FOOTER
*/

/* ------------- BASIC ELEMENTS -------------- */

:root {
    --primary-font: 'Droid sans', sans-serif;
    --primary-font-weight: 400;
    --secondary-font: 'Cabin', sans-serif;
    --secondary-font-weight: 500;
    --primary-color: #d78ab7;
    --secondary-color: #b86c99;
}

body {
    background-color: #f9f9f9;
    color: #888;
    font-family: 'Cabin', sans-serif;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-weight: var(--secondary-font-weight);
    font-size: 14px;
    line-height: 26px;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

::-moz-selection {
    color: #fff;
    background: #d78ab7;
    background: var(--primary-color);
}

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

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

a:hover,
a:focus {
    color: #b86c99;
    color: var(--secondary-color);
    text-decoration: none;
}

a,
a:hover,
.btn,
.btn:hover,
a > img,
input[type=button],
input[type=button]:hover,
input[type=submit],
input[type=submit]:hover,
button,
button:hover,
input,
input:focus,
textarea,
textarea:focus {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:not(.no-hover) > img:hover {
    -webkit-filter: saturate(1.5) hue-rotate(5deg);
    filter: saturate(1.5) hue-rotate(5deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

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

:-ms-input-placeholder {
    color: #ccc;
}

::placeholder {
    color: #ccc;
}

input[type=search],
input[type=email],
input[type=text],
input[type=number],
input[type=password],
input[type=tel],
textarea,
select {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    color: #707070;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid #eee;
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
}

textarea {
    height: auto;
    max-width: 100%;
}

input[type=search]:focus,
input[type=email]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #cecece;
}

input[type=button],
input[type=submit],
button {
    background: #d78ab7;
    background: var(--primary-color);
    border: none;
    padding: 8px 20px;
    line-height: normal;
    color: #fff;
    border-radius: 2px;
    outline: none;
}

input[type=button]:hover,
input[type=button]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
button:hover,
button:focus {
    background: #b86c99;
    background: var(--secondary-color);
    outline: none;
}

p {
    line-height: 26px;
    color: #707070;
}

div {
    line-height: 14px;
}

img {
    max-width: 100%;
    height: auto;
}

a img,
iframe {
    border: none !important;
}

iframe {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #3f3f3f;
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    margin: 0 0 15px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

blockquote {
    border-left: 5px solid #d78ab7;
    border-left-color: var(--primary-color);
    font-size: 14px;
    line-height: 28px;
    position: relative;
    padding: 20px 30px 20px 50px;
    background: #f5f5f5;
}

dl {
    margin: 0 0 28px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 0 28px;
}

table,
th,
td,
.mce-item-table,
.mce-item-table th,
.mce-item-table td {
    border: 1px solid #eaeaea;
}

table a {
    color: #333;
}

table,
.mce-item-table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 28px;
    width: 100%;
}

table th,
.mce-item-table th,
table caption {
    border-width: 0 1px 1px 0;
    font-family: Arial, Tahoma, sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 7px;
    text-align: left;
    vertical-align: baseline;
}

table td,
.mce-item-table td {
    border-width: 0 1px 1px 0;
    padding: 7px;
    vertical-align: baseline;
}

abbr[title] {
    border-bottom: none;
}

/* Internet Explorer warning */

.ie8-warning {
    color: #fff;
    background: #f00;
    padding: 20px;
    text-align: center;
}

.ie8-warning a {
    color: #fff;
    text-decoration: underline;
}

/* Extend Bootstrap */

@media (min-width: 768px) {
    .container {
        width: 735px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 955px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1185px;
    }
}

/* Text meant only for screen readers. */

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

/* -------------- WP CLASSES --------------- */

/**
 * Alignment
 */

.alignleft {
    float: left;
    margin: 7px 28px 28px 0;
}

.alignright {
    float: right;
    margin: 7px 0 28px 28px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 7px auto;
}

/**
 * Caption
 */

.wp-caption {
    background: transparent;
    border: none;
    color: #707070;
    font-family: Arial, Tahoma, sans-serif;
    margin: 0 0 28px 0;
    max-width: 100%;
    padding: 0;
    text-align: inherit;
}

.wp-caption.alignleft {
    margin: 7px 28px 21px 0;
}

.wp-caption.alignright {
    margin: 7px 0 21px 28px;
}

.wp-caption.aligncenter {
    margin: 7px auto;
}

.wp-caption .wp-caption-text,
.wp-caption-dd {
    font-size: 14px;
    line-height: 1.5;
    padding: 7px 0;
}

/**
 * Galleries
 */

.gallery-item {
    display: inline-block;
    padding: 1.79104477%;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery .gallery-caption {
    color: #707070;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    padding: 7px 0;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/**
 * Audio / Video
 */

.mce-content-body .wpview-wrap {
    margin-bottom: 32px;
}

.mce-content-body .wp-audio-playlist {
    margin: 0;
}

/* wp size classes */

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto;
}

.mar-t-30 {
    margin-top: 30px;
}

.mar-b-30 {
    margin-bottom: 30px;
}

/* ---------------- PRE-LOADER ------------ */

#nakhra-preloader {
    background: #fafafa;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

#nakhra-preloader .preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#nakhra-preloader .preloader span {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #000000;
    -webkit-animation: preloader 2s linear infinite;
    animation: preloader 2s linear infinite;
}

#nakhra-preloader .preloader span:last-child {
    animation-delay: -0.8s;
    -webkit-animation-delay: -0.8s;
}

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

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

/* ---------------- HEADER -------------- */

header {
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}

.single header, .page-template-default header {
    margin-bottom: 0;
}

.single-product header {
    margin-bottom: 30px;
}

header .social-icons {
    padding-top: 42px;
    padding-bottom: 42px;
    font-size: 16px;
}

@media (max-width: 991px) {
    header .social-icons {
        text-align: center;
        padding: 20px;
        border-bottom: 1px solid #f5f5f5;
    }
}

header .social-icons a {
    color: #000;
    margin-right: 15px;
}

@media (max-width: 425px) {
    header .social-icons a {
        margin-right: 12px;
    }
}

header .social-icons a:last-child {
    margin-right: 0;
}

header .social-icons a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

header .logo {
    text-align: center;
    padding-top: 27px;
    padding-bottom: 27px;
    font-size: 46px;
    font-family: 'Droid Sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    line-height: 1;
}

header .logo a {
    color: #000;
}

header .logo a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

header .search-icon {
    text-align: right;
    padding-top: 38px;
    padding-bottom: 38px;
    font-size: 24px;
    position: relative;
}

header .search-icon a {
    color: #000;
}

header .search-icon a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

header #cart-btn {
    margin-right: 10px;
}

@media (max-width: 991px) {
    header #cart-btn {
        margin-right: 0;
    }

    header #cart-btn {
        display: inline !important;
        font-size: 20px;
    }
    header .search-icon #cart-btn {
        display: none !important;
    }
}

header #cart-btn span {
    font-size: 9px;
    vertical-align: top;
}

/* Search box */

header form {
    border-radius: 27px !important;
    border: 2px solid #333;
    overflow: hidden;
    width: 200px !important;
    position: absolute;
    top: 35px;
    right: 15px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

header form.box-hidden {
    width: 0 !important;
    opacity: 0;
    visibility: hidden;
}

header form .form-control {
    border: none;
    outline: none;
}

header form .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

header form .btn {
    background: #fff;
    color: #000;
}

header form .btn:hover {
    outline: none;
    color: #d78ab7;
    color: var(--primary-color);
}

/* Menu */

header .menu {
    width: 100%;
    text-align: center;
    font-family: 'Droid Sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    font-size: 16px;
    min-height: 50px;
    margin-bottom: 0;
}

header .menu li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

header .menu li a {
    display: block;
    color: #000;
    padding: 15px 0;
}

header .menu > li.current-menu-item > a,
header .menu > li.current-menu-parent > a,
header .menu > li:hover > a {
    color: #d78ab7;
    color: var(--primary-color);
}

header .menu li.menu-item-has-children > a:after {
    padding-left: 5px;
    content: "\f107";
    font-family: FontAwesome;
}

header .menu .sub-menu {
    background-color: #fff;
    padding: 0;
    position: absolute;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    top: 150%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 99;
    -webkit-box-shadow: 1px 5px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 1px 5px 10px 0 rgba(0, 0, 0, 0.15);
}

header .menu .sub-menu li ul {
    top: 100%;
    left: 100%;
}

header .menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 6px);
}

header .menu ul li:hover > .sub-menu {
    top: 0;
}

header .menu .sub-menu li {
    margin-right: 0;
}

header .menu .sub-menu li a {
    text-align: left;
    padding: 15px 20px;
    min-width: 200px;
    line-height: 14px;
    font-size: 14px;
    border-bottom: 1px solid #ebebeb;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

header .menu .sub-menu li:hover > a,
header .menu .sub-menu li.current-menu-item > a,
header .menu .sub-menu li.current-menu-parent > a {
    background: #f5f5f5;
    color: #000;
}

header .menu .sub-menu li a:after {
    float: right;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    line-height: 18px;
}

/* Mobile menu */

@media (max-width: 991px) {
    header .menu {
        display: none;
    }
}

header .mobile-menu-icon {
    padding: 0;
}

header .slicknav_btn {
    position: absolute;
    top: -75px;
    left: 5px;
}

/* Archive title */

.archive-title {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
}

.archive-title h2 {
    margin-bottom: 0;
}

.archive-title h2 span {
    color: #d78ab7;
    color: var(--primary-color);
}

/* Mini header */

.mini-header {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 60px;
    background: #fff;
    -webkit-box-shadow: 0 1px 6px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 6px 3px rgba(0, 0, 0, .1);
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mini-header-show {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.mini-header .container {
    padding-top: 5px;
    padding-bottom: 5px;
}

.prev-post,
.next-post {
    display: table;
}

.next-post {
    text-align: right;
    float: right;
}

.next-post .mini-header-img-box {
    float: right;
}

.mini-header-img-box {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.mini-header-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mini-header-arrow {
    line-height: 50px;
    font-size: 30px;
}

.mini-header-post-content {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
}

.next-post .mini-header-post-content {
    padding-right: 15px;
    padding-left: 0;
}

.mini-header-text,
.mini-header-center-text {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mini-header-post-title {
    color: #777;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 200px;
    line-height: 1.1;
}

.mini-header-center {
    text-align: center;
    display: table;
    margin: 0 auto;
    height: 50px;
}

.mini-header-center-box {
    display: table-cell;
    vertical-align: middle;
}

.mini-header-center-title {
    color: #3f3f3f;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 400px;
    line-height: 1.1;
}

.mini-header a:hover img {
    -webkit-filter: saturate(1.5) hue-rotate(5deg);
    filter: saturate(1.5) hue-rotate(5deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mini-header a:hover .mini-header-text {
    color: #d78ab7;
    color: var(--primary-color);
}

@media (max-width: 1198px) {
    .mini-header-center-title {
        max-width: 200px;
    }
}

@media (max-width: 400px) {
    .mini-header-center-title {
        max-width: 150px;
    }
}

/* Post progress indicator */

progress {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    color: #d78ab7;
    color: var(--primary-color);
}

progress::-webkit-progress-bar {
    background-color: transparent;
}

progress::-webkit-progress-value {
    background-color: #d78ab7;
    background-color: var(--primary-color);
}

progress::-moz-progress-bar {
    background-color: #d78ab7;
    background-color: var(--primary-color);
}

.progress-container {
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    display: block;
}

.progress-bar {
    background-color: #d78ab7;
    background-color: var(--primary-color);
    width: 0%;
    display: block;
    height: inherit;
}

/* ------------ FEATURED SLIDER -------------- */

#featuredSlider1,
#featuredSlider2 {
    margin-bottom: 30px;
}

#featuredSlider1 .owl-carousel,
#featuredSlider2 .owl-carousel {
    position: relative;
}

#featuredSlider1 .carousel-img,
#featuredSlider2 .carousel-img {
    height: 510px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#featuredSlider2 .carousel-img {
    position: relative;
}

#featuredSlider1 .carousel-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 60px;
    right: 60px;
    background: #fff;
    padding: 10px;
    text-align: center;
	Border:solid 1px #666666;
}
#featuredSlider1 .carousel-content:after {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #fff;
    z-index: -1;
}

@media (min-width: 979px) and (max-width: 1199px) {
    #featuredSlider1 .carousel-content {
        left: 30px;
        right: 30px;
    }
}

#featuredSlider2 .carousel-content {
    height: 510px;
    background: #fafafa;
    border: 1px solid #666;
    padding: 92px 60px;
    text-align: center;
}

@media (max-width: 1198px) {
    #featuredSlider2 .carousel-content {
        padding: 92px 30px;
    }
}

#featuredSlider1 .owl-nav .owl-prev {
    display: none;
}

#featuredSlider1 .owl-nav .owl-next {
    display: block;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #000;
    padding: 15px;
    position: absolute;
    right: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.8);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#featuredSlider1 .owl-nav .owl-next:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 3px;
}

#featuredSlider1 .owl-nav .owl-next:active {
    margin-top: 5px;
}

@media (max-width: 767px) {
    #featuredSlider1 .carousel-content {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    #featuredSlider1 .owl-nav .owl-next,
    #featuredSlider2 .owl-dots {
        display: none;
    }

    #featuredSlider2 .carousel-content {
        height: auto;
        padding: 30px;
		position: absolute;
		top: 0;
		opacity: .9;
		margin: 20px;
    }

    #featuredSlider2 .carousel-img {
        height: 300px;
    }
}

#featuredSlider2 .dots-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, right top, left top, color-stop(30%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.1))) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to left, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.1) 100%) repeat scroll 0 0
}

#featuredSlider2 .owl-dots {
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#featuredSlider2 .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    display: block;
    border-radius: 50%;
    margin-bottom: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#featuredSlider2 .owl-dots .owl-dot.active span,
#featuredSlider2 .owl-dots .owl-dot:hover span {
    background: #d78ab7;
    background: var(--primary-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#featuredSlider2 .owl-dots .owl-dot:last-child span {
    margin-bottom: 0;
}

@media (max-width: 424px) {
    #featuredSlider1 .post-meta,
    #featuredSlider1 .post-content,
    #featuredSlider2 .post-content,
    #featuredSlider2 .post-meta {
        display: none;
    }
}

.slider-blog h2 a {
    color: #3f3f3f;
}

.slider-blog h2 a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

/* Seaparator dot */

.separator-dot {
    display: inline-block;
    height: 5px;
    width: 5px;
    background: #d78ab7;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}

/* Post meta */

.post-meta {
    margin-bottom: 15px;
}

.post-content {
    color: #707070;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 15px;
    word-break: break-word;
}

.readMoreBtn {
    color: #fff;
    background: #d78ab7;
    background: var(--primary-color);
    width: 150px;
    display: block;
    margin: 0 auto;
    border-radius: 22.5px;
    padding: 10px 30px;
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    vertical-align: middle;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.readMoreBtn:hover {
    color: #fff;
    background: #b86c99;
    background: var(--secondary-color);
}

/* ------------ PROMOTIONAL BOXES ----------- */

.pro-box {
    display: block;
    height: 270px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: 30px;
}

.pro-box:after {
    content: '';
    position: absolute;
    display: block;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    border: 1px solid #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 1;
}

.pro-box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    font-size: 18px;
    color: #464646;
    background-color: #fff;
    padding: 12px 60px;
    border-radius: 20px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 2;
}

#promotional-boxes a:hover .pro-box {
    -webkit-filter: saturate(1.3) hue-rotate(5deg);
    filter: saturate(1.3) hue-rotate(5deg);
}

#promotional-boxes a:hover .pro-box:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#promotional-boxes a:hover .pro-box-content {
    background-color: #d78ab7;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    -webkit-filter: saturate(1) hue-rotate(0);
    filter: saturate(1) hue-rotate(0);
}

/* ------------ RECENT POSTS ------------ */

.grid-col .col-md-6:nth-child(odd) {
    clear: left;
}

.full-1st .col-md-6:nth-child(even) {
    clear: left;
}

.hentry {
    border: 3px double #efefef;
    margin-bottom: 30px;
    position: relative;
    background: #fff;
}

.hentry.sticky {
    border-color: #d78ab7;
    border-color: var(--primary-color);
}

.post-all-data {
    padding: 30px;
}

.list-left .post-all-data {
    padding: 30px 37px 30px 15px;
}

.list-right .post-all-data {
    padding: 30px 15px 30px 37px;
}

.list-left .col-md-12.post-all-data, .list-right .col-md-12.post-all-data {
    padding: 30px 37px;
}

@media (max-width: 767px) {
    .list-left .post-all-data, .list-right .post-all-data {
        padding: 30px 37px;
    }
}

@media (max-width: 468px) {
    .post-all-data {
        padding: 15px;
    }

    .list-left .post-all-data, .list-right .post-all-data {
        padding: 15px 30px;
    }
}

.post-end-line {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: inline;
    padding: 4px;
    border-radius: 50%;
}

.list-left .post-end-line {
    bottom: auto;
    left: auto;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.list-right .post-end-line {
    bottom: auto;
    left: -20px;
    top: 50%;
    right: auto;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .list-left .post-end-line, .list-right .post-end-line {
        bottom: -20px;
        left: 50%;
        top: auto;
        right: auto;
        transform: translateX(-50%);
    }
}

.post-end-line div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d78ab7;
    background: var(--primary-color);
    display: inline-block;
    transition: 0.8s;
    padding: 0 10px 0 11px;
    line-height: 30px;
    color: #fff;
}

.post-end-line div:hover {
    background: #b86c99;
    background: var(--secondary-color);
}

.post-thumbnail-box {
    /*height: 260px;*/
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
	
}

.grid-full .hentry .post-thumbnail-box {
    height: 360px;
}

@media (max-width: 424px) {
    .col-md-12 .hentry .post-thumbnail-box {
        height: 240px;
    }
}

.post-thumbnail-box span {
    position: absolute;
    right: -2px;
    top: -2px;
    background: #fff;
    border: 2px solid #fff;
    padding: 3px 5px;
    z-index: 2;
    box-shadow: -2px 2px 5px 1px rgba(0, 0, 0, 0.2)
}

.list-left .post-thumbnail-box span {
    left: 12px;
    bottom: -2px;
    right: auto;
    top: auto;
    box-shadow: 2px -2px 5px 1px rgba(0, 0, 0, 0.2);
}

.list-right .post-thumbnail-box span {
    right: 12px;
    bottom: -2px;
    left: auto;
    top: auto;
    box-shadow: -2px -2px 5px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .list-left .post-thumbnail-box span {
        right: 12px;
        top: -2px;
        left: auto;
        bottom: auto;
        box-shadow: 2px -2px 5px 1px rgba(0, 0, 0, 0.2);
    }

    .list-right .post-thumbnail-box span {
        left: 12px;
        bottom: -2px;
        right: auto;
        top: auto;
        box-shadow: -2px -2px 5px 1px rgba(0, 0, 0, 0.2);
    }
}

.post-thumbnail-box span a {
    color: #555;
    transition: 0.4s;
}

.post-thumbnail-box span a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.post-thumbnail-box img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.hentry:hover .post-thumbnail-box img.lazy {
    -webkit-filter: saturate(1.5) hue-rotate(5deg);
    filter: saturate(1.5) hue-rotate(5deg);
}

.hentry:hover .post-thumbnail-box {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    transform: scale(1.01);
}

.author-img {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
}

.post-thumbnail-box .author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    left: -5px;
    background: #fff;
    border: 3px solid #fff;
    margin-bottom: 0;
}

.list-left .post-thumbnail-box .author-img {
    top: -5px;
    right: 10px;
    bottom: auto;
    left: auto;
}

.list-right .post-thumbnail-box .author-img {
    top: -5px;
    left: 10px;
    bottom: auto;
    right: auto;
}

@media (max-width: 767px) {
    .list-left .post-thumbnail-box .author-img {
        top: auto;
        right: auto;
        bottom: -5px;
        left: 10px;
    }

    .list-right .post-thumbnail-box .author-img {
        top: -5px;
        right: 10px;
        bottom: auto;
        left: auto;
    }
}

.author-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.hentry .author {
    color: #707070;
    margin-bottom: 10px;
}

.hentry .author a {
    color: #555;
    text-transform: uppercase;
}

.hentry .author a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.hentry h2 {
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 32px;
}

.hentry h2:first-letter {
    text-transform: capitalize;
}

.hentry h2 a {
    color: #3f3f3f;
}

.hentry h2 a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.hentry .post-meta {
    margin-bottom: 10px;
}

.post-meta-icons a, .post-meta-icons {
    font-size: 14px;
    color: #888;
}

.post-meta-icons a .la-heart {
    color: #d78ab7;
    color: var(--primary-color);
}

.post-meta-icons a i {
    font-size: 15px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.post-meta-icons a i.fa {
    font-size: 12px;
}

.post-meta-icons a:hover i {
    color: #d78ab7;
    color: var(--primary-color);
}

.post-meta-icons .pull-right a {
    margin-left: 5px;
}

.post-meta-icons .pull-left a {
    margin-right: 5px;
}

.chess .col-md-12:nth-child(even) article > div > div:first-child {
    text-align: right;
}

.chess .col-md-12:nth-child(even) .author-img {
    float: right;
}

.chess .col-md-12:nth-child(even) .author > div:nth-child(2) {
    clear: right;
}

/* Single page post */

.single-post-img {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.single-post-img .curve {
    display: block;
    position: absolute;
    width: 105%;
    height: 80px;
    margin-top: -38px;
    margin-left: -3%;
    background: #f9f9f9;
    border-radius: 50%;
}

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

.single-post-video, .single-post-audio, .single-post-gallery {
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.single-post-audio iframe, .single-post-audio object, .single-post-audio embed, .single-post-audio audio {
    width: 100%;
    height: 350px;
}

.single-post-gallery .owl-nav > div {
    position: absolute;
    top: 50%;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    color: #333;
    font-size: 20px;
    left: 30px;
}

.single-post-gallery .owl-nav > div:hover {
    background: #eee;
}

.single-post-gallery .owl-nav .owl-prev {
    transform: translate(-100px, -50%);
    transition: 0.4s;
}

.single-post-gallery .owl-nav .owl-next {
    left: auto;
    right: 30px;
    transform: translate(100px, -50%);
    transition: 0.4s;
}

.single-post-gallery:hover .owl-nav .owl-prev {
    transform: translate(0, -50%);
}

.single-post-gallery:hover .owl-nav .owl-next {
    transform: translate(0, -50%);
}

.hentry.single {
    padding: 30px 15px;
}

.hentry.single h2 a {
    font-size: 32px;
}

.hentry.single .post-content h2 {
    font-size: 30px;
}

.single .post-date {
    font-style: italic;
}

.single .post-cat a {
    color: #d78ab7;
    color: var(--primary-color);
}

.single .post-cat a:hover {
    color: #b86c99;
    color: var(--secondary-color);
}

.post-share-box {
    width: 100%;
    display: table;
}

.post-share-box a {
    display: table-cell;
    width: 20%;
    text-align: center;
    line-height: 30px;
    color: #fff;
}

.post-share-box a:hover {
    filter: grayscale(0.5);
}

.post-share-box a.facebook {
    background: #3b5998;
}

.post-share-box a.twitter {
    background: #1da1f2;
}

.post-share-box a.g-puls {
    background: #dd4b39;
}

.post-share-box a.linkedin {
    background: #0077b5;
}

.post-share-box a.pinterest {
    background: #bd081c;
}

.post-footer {
    border-top: 3px double #efefef;
    border-bottom: 3px double #efefef;
    margin-bottom: 15px;
}

.post-footer .tagcloud {
    padding: 8px 0 0;
}

.post-footer .tagcloud a {
    margin-bottom: 8px;
    margin-right: 8px;
}

.post-footer .post-meta-icons {
    padding: 15px 0;
}

/* ----------- ABOUT AUTHOR ----------- */

.about-author {
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 30px 15px;
    margin-bottom: 30px;
}

.about-author-img-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.about-author-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.about-author-content {
    padding-left: 30px;
    vertical-align: top;
    color: #707070;
}

@media (max-width: 767px) {
    .about-author {
        text-align: center;
    }

    .about-author-img-box {
        margin: 0 auto 15px;
    }

    .about-author-content {
        padding-left: 15px;
    }
}

.about-author-name {
    margin-bottom: 15px;
}

.about-author-name span {
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    font-size: 16px;
    color: #555;
    text-transform: uppercase;
}

.about-author-text {
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
}

.about-author-link a {
    text-decoration: underline;
}

/* --------- CONTACT FORM 7 ------ */
.wpcf7 label {
    font-weight: normal;
    display: block;
}

/* ----------- RELATED POSTS ---------- */

.related-posts .col-md-6:nth-child(odd) {
    clear: left;
}

.related-post {
    margin-bottom: 30px;
    border: 3px double #efefef;
    background: #fff;
}

.related-post-img-box {
    overflow: hidden;
}

.related-post-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.related-post h2 a {
    font-size: 24px;
    color: #3f3f3f;
}

.related-post h2 a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.related-post .post-meta {
    margin-bottom: 0;
}

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

#comments {
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 30px;
}

.comments {
    padding: 0;
    margin: 0;
}

.comments .comment,
.pingback {
    margin: 0;
    list-style: none;
    margin-top: 15px;
}

.bypostauthor {
    color: inherit;
}

.comment-body {
    overflow: hidden;
    padding-bottom: 15px;
    border-bottom: 1px solid #efefef;
}

.comment-body:last-child {
    border-bottom: 0;
}

.comment-body .author-avatar {
    width: 90px;
    float: left;
}

@media (max-width: 479px) {
    #comments {
        padding: 15px;
        margin: 0 0 30px;
    }

    .comment-body .author-avatar {
        width: 60px;
    }
}

.comment-body .comment-content {
    padding-left: 20px;
    overflow: hidden;
}

.comment-body .pingback {
    padding-left: 0;
}

.comment-body .comment-content .head {
    margin-bottom: 10px;
}

.comment-body .comment-content .head .author {
    color: #3f3f3f;
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
}

.comment-body .comment-content .head .author a {
    color: #3f3f3f;
}

.comment-body .comment-content .head .author a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.comment-body .comment-content .head .comment-meta {
    display: inline-block;
    font-size: 12px;
    margin-right: 10px;
}

.comment-body .comment-content .head .comment-meta a {
    color: #888;
}

.comment-body .comment-content .head .comment-meta a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.comment-awaiting-moderation {
    color: #888;
}

.comment-text {
    color: #777;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 10px;
}

.comment-reply-link {
    color: #595959;
}

.comments .children {
    padding-left: 20px;
}

#comments .num-navigation {
    margin-bottom: 0;
}

/* Comment box */

.comment-respond {
    margin-bottom: 45px;
}

li .comment-respond {
    margin-top: 15px;
}

.comment-notes {
    color: #888;
    font-weight: 400;
}

span.required {
    color: #d78ab7;
    color: var(--primary-color);
    font-weight: bold;
}

.comment-respond p {
    margin-bottom: 15px;
}

.comment-respond label {
    color: #595959;
    font-weight: 500;
    font-weight: var(--secondary-font-weight);
    cursor: pointer;
}

.form-submit input {
    padding: 10px 15px;
    text-transform: uppercase;
}

/* Post pagination */

.navigation .alignleft,
.navigation .alignright {
    margin: 0;
}

.navigation a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #d78ab7;
    border-color: var(--primary-color);
    border-radius: 20px;
    background: none;
    margin-bottom: 45px;
}

.navigation a:hover {
    background: #d78ab7;
    background: var(--primary-color);
    color: #fff;
}

.navigation i {
    -webkit-transition: padding 0.4s;
    transition: padding 0.4s;
}

.navigation .alignleft a:hover i {
    padding-right: 5px;
    -webkit-transition: padding 0.4s;
    transition: padding 0.4s;
}

.navigation .alignright a:hover i {
    padding-left: 5px;
    -webkit-transition: padding 0.4s;
    transition: padding 0.4s;
}

/* Post navigation 2 */

.num-navigation {
    margin-bottom: 40px;
    text-align: center;
}

.num-navigation a,
.num-navigation span {
    border: 1px solid #eee;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #555;
    background: #f5f5f5;
}

.num-navigation .page-numbers {
    line-height: 35px;
    display: inline-block;
    padding: 0;
    margin-right: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.num-navigation a:hover,
.num-navigation .current {
    background: #d78ab7;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid #d78ab7;
    border-color: var(--primary-color);
}

/* ---------- MOST VIEWS ------------ */

.most-viewed {
    padding-top: 30px;
    padding-bottom: 10px;
    background: #f5f5f5;
}

.most-viewed .box-title {
    margin-left: 15px;
}

.mvPost {
    display: table;
    margin-bottom: 20px;
}

.mvPost-img {
    width: 120px;
    overflow: hidden;
}

.mvPost-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.most-viewed img {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mvPostFirst:hover img,
.mvPost:hover img {
    -webkit-filter: saturate(1.5) hue-rotate(5deg);
    filter: saturate(1.5) hue-rotate(5deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mvPost h2 a {
    color: #3f3f3f;
    font-size: 16px;
    display: block;
    line-height: 1.2;
}

.mvPost .mvPost-content {
    display: table-cell;
    vertical-align: top;
    padding-left: 15px;
}

.most-viewed .post-meta {
    margin-bottom: 0;
}

.mvPost .post-meta span {
    color: #595959;
    font-weight: 400;
}

.mvPost .post-meta span a {
    color: #3f3f3f;
}

.mvPostFirst {
    position: relative;
    margin-bottom: 20px;
}

.mvPostFirst .mvPost-img {
    width: 100%;
    background: #888;
}

.mvPostFirst .mvPost-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.1))) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, transparent 0%, transparent 0%, rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.1) 100%) repeat scroll 0 0;
}

.mvPostFirst h2 a {
    color: #fff;
}

.most-viewed h2 a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.mvPostFirst h2 a:hover {
    color: #ddd;
}

.mvPostFirst .mvPost-content span {
    color: #ddd;
    font-weight: 400;
}

.mvPostFirst .mvPost-content span a {
    color: #eee;
}

.most-viewed .mvPost-content span a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.mvPostFirst .mvPost-content span a:hover {
    color: #ddd;
}

/* ----------- WIDGETS ---------- */

.widget {
    margin-bottom: 45px;
}

.box-title {
    color: #595959;
    font-size: 16px;
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    padding-bottom: 15px;
    border-bottom: 3px double #d78ab7;
    border-color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    display: table;
}

.box-title:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9f9f9;
    display: inline;
    padding: 4px 10px;
}

footer .box-title:before {
    background: #fafafa;
}

.most-viewed .box-title:before, #comments .box-title:before {
    background: #f5f5f5;
}

.box-title:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 3px double #d78ab7;
    border-color: var(--primary-color);
    display: inline-block;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 2;
    transition: 0.4s;
}

.widget:hover .box-title:after {
    background: #d78ab7;
    background: var(--primary-color);
}

/* Search widget */

.search-widget {
    background-color: #f5f5f5;
    padding: 30px;
    border: 1px solid #eee;
}

.search-widget input {
    height: 40px;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 20px;
}

/* About me widget */

.about-me-container {
    background: #333;
}

.about-me-img-box {
    height: 255px;
    position: relative;
}

.about-me-img-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 150px;
    right: 0;
    background: -moz-linear-gradient(top, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.04) 3%, rgba(51, 51, 51, 1) 70%);
    background: -webkit-linear-gradient(top, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.04) 3%, rgba(51, 51, 51, 1) 70%);
    background: -o-linear-gradient(top, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.04) 3%, rgba(51, 51, 51, 1) 70%);
    background: -ms-linear-gradient(top, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.04) 3%, rgba(51, 51, 51, 1) 70%);
    background: linear-gradient(to bottom, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.04) 3%, rgba(51, 51, 51, 1) 70%);
}

.about-me-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.about-me-name {
    display: block;
    text-transform: uppercase;
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    color: #fafafa;
    font-size: 22px;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.about-me-content {
    text-align: center;
    padding: 5px 30px 30px;
}

.about-me-text {
    display: block;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #eee;
}

.about-me-socials a {
    color: #eee;
    margin-right: 10px;
}

.about-me-socials a:last-child {
    margin-right: 0;
}

.about-me-socials a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

/* Recent posts widget */

.rpost {
    margin-bottom: 15px;
    display: table;
    position: relative;
}

.rpost span {
    position: absolute;
    left: 70px;
    top: 6px;
    background: #d78ab7;
    background: var(--primary-color);
    color: #fff;
    width: 14px;
    font-size: 12px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
}

.rpost-img-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.rpost-img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.rpost:hover .rpost-img {
    -webkit-filter: saturate(1.5) hue-rotate(5deg);
    filter: saturate(1.5) hue-rotate(5deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.rpost-content {
    display: table-cell;
    vertical-align: top;
}

.rpost-img-box + .rpost-content {
    padding-left: 20px;
    padding-top: 15px;
}

.rpost-title a {
    color: #3f3f3f;
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 7.5px;
    display: block;
}

.rpost-title a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

/* Tag cloud widget */

.tagcloud a {
    display: inline-block;
    background: #f5f5f5;
    border: 1px solid #eee;
    color: #707070;
    text-transform: lowercase;
    padding: 5px 7px 5px 15px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 14px !important;
    position: relative;
}

.tagcloud a:after {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid #707070;
    position: absolute;
    transform: translateY(-50%) rotate(45deg);
    left: 5px;
    top: 55%;
    transition: 0.4s;
}

.tagcloud a:hover {
    color: #d78ab7;
    color: var(--primary-color);
    border: 1px solid #d78ab7;
    border-color: var(--primary-color);
    background: #fff;
}

.tagcloud a:hover:after {
    border: none;
    background: #d78ab7;
    background: var(--primary-color);
}

/* Categories widget */

.widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.widget ul li {
    margin-bottom: 10px;
    color: #898989;
    font-weight: 400;
}

.widget ul li * {
    line-height: 1.5;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget ul li a {
    color: #707070;
    text-transform: capitalize;
    position: relative;
    padding-left: 10px;
}

.widget ul li a:after {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid #707070;
    position: absolute;
    transform: translateY(-50%) rotate(45deg);
    left: 0;
    top: 50%;
    transition: 0.4s;
}

.widget ul li a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.widget ul li a:hover:after {
    border: none;
    background: #d78ab7;
    background: var(--primary-color);
}

/* Instagram widget */

.insta-widget.row {
    margin: 0 -5px -10px;
}

.insta-widget .col-md-3 {
    padding: 0 5px;
    margin-bottom: 10px;
}

/* Newsletter widget */

.mail-box {
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mail-box:after {
    content: "\f003";
    font-family: FontAwesome;
    color: #d78ab7;
    color: var(--primary-color);
    font-size: 77px;
    position: absolute;
    top: 5px;
    right: -16px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
    z-index: -1;
}

.mail-text {
    color: #595959;
    margin-bottom: 10px;
    line-height: normal;
    z-index: 2;
}

.mail-field input {
    height: 35px;
    border-radius: 17.5px;
    font-size: 12px;
    padding: 12px 20px;
    margin-bottom: 10px;
}

.mail-field input::-webkit-input-placeholder {
    color: #999;
}

.mail-field input:-ms-input-placeholder {
    color: #999;
}

.mail-field input::placeholder {
    color: #999;
}

.mail-button input[type=submit] {
    border-radius: 17px;
}

/* Ads widget */

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

/* Thought of the day widget */

.tod-widget {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 15px 30px 30px;
    text-align: center;
}

.tod-icon {
    color: #d78ab7;
    color: var(--primary-color);
    font-size: 25px;
    margin-bottom: 15px;
}

.tod-text {
    color: #555;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

/* ------------ INSTAGRAM FEED ----------- */

.insta-feed {
    position: relative;
}

.insta-title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.insta-title a {
    display: block;
    border: 3px solid #fff;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 4px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, .2);
    width: 70px;
}

.insta-title a i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 30px;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.insta-title a img {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.insta-title a:hover img {
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.insta-title a:hover i {
    opacity: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.insta-imgs > div {
    padding: 0;
}

.insta-imgs > div img:hover {
    box-shadow: 0 40px 55px -40px rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    transform: translateY(-5px);
}

/* Tooltip */

.tooltip > .tooltip-inner {
    background-color: rgba(0, 0, 0, 0.75);
    color: #f4f4f4;
    border: 1px solid #333;
    padding: 8px 15px;
    font-size: 13px;
}

/* Tooltip on top */

.tooltip.top > .tooltip-arrow {
    border-top: 5px solid transparent;
}

/* Tooltip on bottom */

.tooltip.bottom > .tooltip-arrow {
    border-bottom: 5px solid transparent;
}

/* Tooltip on left */

.tooltip.left > .tooltip-arrow {
    border-left: 5px solid transparent;
}

/* Tooltip on right */

.tooltip.right > .tooltip-arrow {
    border-right: 5px solid transparent;
}

/* ------- 404 AND CONTENT NONE ---------- */

.error-404 {
    text-align: center;
    margin-bottom: 45px;
    padding: 30px;
}

.error-404 h2 {
    font-size: 200px;
    line-height: 1;
}

.error-404 h2 span {
    color: #666;
}

/* Scroll to top */

#scrollUp {
    background: #3f3f3f;
    border-radius: 2px;
    color: #fff;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    bottom: 15px;
    z-index: 99 !important;
    right: 15px;
    text-align: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0px 0px 10px 1px #fafafa;
    box-shadow: 0px 0px 10px 1px #fafafa;
}

@media (max-width: 468px) {
    #scrollUp {
        display: none !important;
    }
}

#scrollUp i {
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
}

#scrollUp:hover i {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* ---------- FOOTER ----------- */

footer {
    background: #fafafa;
}

footer .container {
    padding-top: 80px;
}

footer p {
    font-weight: 400;
}

.mini-footer {
    text-align: center;
    padding: 20px;
    line-height: 1.5;
    border-top: 1px solid #efefef;
    font-weight: 400;
}

/*---------------
# WooCommerce
----------------*/

.woocommerce .page-title {
    margin-bottom: 30px;
    margin-top: 10px;
}

.woocommerce .woocommerce-result-count {
    margin-top: 7px;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    border: 3px double #efefef;
    margin-bottom: 30px;
    position: relative;
    background: #fff;
}

.woocommerce span.onsale {
    top: -2px !important;
    right: -2px !important;
    border-radius: 0;
    line-height: 1;
    min-height: auto;
    min-width: auto;
    font-size: 14px;
    font-weight: inherit;
    color: #fff;
    margin: 0 !important;
    background: #ef5350;
    border: 2px solid #ef5350;
    padding: 3px 5px;
    box-shadow: -2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}

.woocommerce ul.products li.product a img {
    transition: 0.4s;
}

.woocommerce ul.products li.product a img:hover {
    transition: 0.4s;
    transform: scale(1.02);
    filter: none;
}

.woocommerce-loop-product__title {
    padding: 0 15px 15px 15px !important;
    font-size: 18px !important;
    transition: 0.5s;
}

.woocommerce-loop-category__title {
    padding: 0 15px 12px !important;
}

.woocommerce-loop-product__title:hover {
    color: #d78ab7 !important;
    color: var(--primary-color) !important;
}

.woocommerce .woocommerce-ordering select,
.woocommerce div.product form.cart .variations select {
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.4s;
}

.woocommerce ul.products li.product a {
    color: #3f3f3f;
    transition: 0.3s;
}

.woocommerce ul.products li.product a:hover {
    color: #d78ab7;
    color: var(--primary-color);
    transition: 0.4s
}

.woocommerce ul.products li.product .button {
    margin: 10px 15px 15px;
    color: #fff;
    background-color: #d78ab7;
    background-color: var(--primary-color);
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    border-radius: 0;
    transition: 0.4s;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #b86c99;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

.woocommerce ul.products li.product .price {
    margin-top: 10px;
    font-size: 13px;
    color: #d78ab7;
    color: var(--primary-color);
    margin-left: 15px;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce-pagination {
    margin-bottom: 50px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    margin-right: 8px;
    border-right: 0;
}

.woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #d78ab7;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid #d78ab7;
    border-color: var(--primary-color);
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
    border: 1px solid #eee;
    width: 35px;
    line-height: 35px;
    padding: 0;
    height: 35px;
    border-radius: 50%;
    font-weight: normal;
    color: #555;
    background: #f5f5f5;
}

.woocommerce-form__label-for-checkbox span {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.woocommerce .belowheader-single {
    margin-top: 20px;
}

.woocommerce div.product div.images img {
    margin-bottom: 30px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    margin-right: 30px;
}

.woocommerce-review-link {
    color: rgba(0, 0, 0, 0.41);
}

.woocommerce div.product p.price {
    color: #d78ab7;
    color: var(--primary-color);
}

.woocommerce-product-details__short-description p {
    margin-bottom: 15px;
    color: #707070;
    font-size: 14px;
    line-height: 21px;
}

.woocommerce-variation-price {
    margin-bottom: 15px;
}

.woocommerce div.product form.cart .reset_variations {
    margin-bottom: 15px;
    color: #262626;
    font-size: 11px;
    text-transform: uppercase;
}

.woocommerce .quantity .qty {
    font-size: 12px;
    padding: 12px 0 10px 8px;
    border-radius: 0;
    height: 38px;
    margin-top: -3px;
}

.woocommerce .sku_wrapper,
.woocommerce .posted_in {
    display: block;
    font-size: 13px;
    color: #707070;
}

.woocommerce .posted_in a {
    color: #d78ab7;
    color: var(--primary-color);
}

.woocommerce .posted_in a:hover {
    color: #b86c99;
    color: var(--secondary-color);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    margin-right: 15px;
    padding: 7px 20px 14px;
    background: none !important;
    border: none;
    border-bottom: 2px solid #d78ab7;
    border-bottom-color: var(--primary-color);
    border-radius: 0;
    transition: 0.4s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #d78ab7;
    color: var(--primary-color);
}

.woocommerce-Tabs-panel--description {
    box-shadow: none;
    padding: 30px !important;
    border: 3px double rgb(239, 239, 239);
    border-radius: 0;
}

.woocommerce-Tabs-panel--reviews {
    border-radius: 0;
    box-shadow: none;
    border: 3px double rgb(239, 239, 239);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    border-radius: 0;
    transition: 0.2s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #bfbfbf;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.4s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #d78ab7;
    color: var(--primary-color);
    transition: 0.4s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    border: none;
    box-shadow: none;
}

.woocommerce .woocommerce-Tabs-panel--description h2 {
    font-size: 22px;
    padding-left: 0;
    padding-bottom: 0;
}

.woocommerce .woocommerce-Tabs-panel--description p {
    font-size: 14px;
}

.woocommerce .related h2 {
    margin-bottom: 25px;
    font-size: 22px;
}

.woocommerce .comment p {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    overflow: hidden;
}

.woocommerce div.product #reviews .comment img,
.woocommerce-page div.product #reviews .comment img {
    border-radius: 50%;
    border: 0 !important;
    padding: 0 !important;
}

.woocommerce .star-rating {
    color: #afafaf;
}

.woocommerce ul.products li.product .star-rating {
    margin-left: 15px !important;
}

.woocommerce #reviews #comments h2 {
    color: #595959;
    font-size: 16px !important;
    font-family: 'Droid sans', sans-serif;
    font-family: var(--primary-font);
    font-weight: 400;
    font-weight: var(--primary-font-weight);
    padding-bottom: 15px;
    border-bottom: 3px double #d78ab7;
    border-color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: table;
}

.woocommerce #reviews #comments h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9f9f9;
    display: inline;
    padding: 4px 10px;
}

.woocommerce #reviews #comments h2:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 3px double #d78ab7;
    border-color: var(--primary-color);
    display: inline-block;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 2;
    transition: 0.4s;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border-radius: 0;
}

.woocommerce .woocommerce-review__author {
    color: #3f3f3f;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    margin-bottom: 0;
    padding: 10px 20px 0 20px;
}

.woocommerce .comment-form-rating .stars {
    padding: 0;
    margin: 0;
}

.woocommerce p.stars a {
    color: #d78ab7;
    color: var(--primary-color);
    text-shadow: none;
}

.woocommerce .review_form {
    padding-left: 10px;
}

.woocommerce .comment-form-comment,
.woocommerce .comment-form-author,
.woocommerce .comment-form-email {
    padding: 0;
    font-size: 14px;
    margin: 0 0 20px 0 !important;
}

.woocommerce span.comment-reply-title {
    font-size: 22px;
    color: #3f3f3f;
    margin-bottom: 14px;
    display: block;
}

.woocommerce .comment-form-comment label,
.woocommerce .comment-form-author label,
.woocommerce .comment-form-email label {
    font-size: 14px;
}

.woocommerce .comment-respond {
    padding: 0 30px !important;
}

.woocommerce .form-submit {
    font-size: 14px;
    padding: 0 0 10px 0;
}

.woocommerce #respond input#submit {
    transition: 0.2s;
}

.woocommerce #respond input#submit:hover {
    transition: 0.2s;
}

.woocommerce .woocommerce-review__dash {
    display: none;
}

.woocommerce-review__published-date {
    display: block;
    font-size: 13px;
    color: #999;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    top: 1.3em;
}

.woocommerce-message::before {
    color: #4CAF50;
}

.woocommerce-message {
    padding: 1.3em 2em 1em 3.5em;
    border-top-color: #4CAF50;
}

.woocommerce-message a {
    font-size: 14px;
    color: #d78ab7;
    color: var(--primary-color);
    text-shadow: none;
}

.woocommerce a.button {
    color: #fff;
    background-color: #d78ab7;
    background-color: var(--primary-color);
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    border-radius: 0;
    transition: 0.4s;
}

.woocommerce a.button:hover {
    background-color: #b86c99;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

.woocommerce table {
    border-radius: 0 !important;
    border-collapse: collapse !important;
    font-weight: 500;
}

.woocommerce table.shop_table th {
    font-weight: 500;
}

.woocommerce table a {
    color: #3f3f3f;
    font-size: 14px;
}

.woocommerce table a:hover {
    color: #d78ab7;
    color: var(--primary-color);
}

.woocommerce table input#coupon_code {
    font-size: 11px;
    border-radius: 0;
    height: auto;
    padding: 6px !important;
}

.woocommerce table input.button {
    color: #fff;
    background-color: #d78ab7;
    background-color: var(--primary-color);
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    border-radius: 0;
    transition: 0.4s;
}

.woocommerce table input.button:hover {
    background-color: #b86c99;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    padding: 0;
    margin: 0;
}

.woocommerce h2 {
    font-size: 22px !important;
    font-weight: 500;
}

.woocommerce-order {
    font-weight: 500;
}

.woocommerce a.remove:hover {
    background: #ef5350;
}

.woocommerce a.remove {
    color: #ef5350 !important;
    font-weight: 500;
    border: 1px solid #ef587b;
    font-size: 20px;
    line-height: 0.8em;
}

.woocommerce .woocommerce-customer-details address {
    border-width: 1px !important;
    border-radius: 0 !important;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
    transition: 0.4s;
}

.woocommerce .cart .button:hover,
.woocommerce .cart input.button:hover {
    transition: 0.4s;
}

.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
    color: #fff;
}

.woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover {
    color: #fff;
    background-color: #d78ab7;
    background-color: var(--primary-color);
}

.woocommerce-cart .cart-collaterals .cart_totals table td {
    vertical-align: middle;
}

.woocommerce .wc-proceed-to-checkout a.button.alt, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background-color: #d78ab7 !important;
    background-color: var(--primary-color) !important;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
}

.woocommerce .wc-proceed-to-checkout a.button.alt:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    background-color: #b86c99 !important;
    background-color: var(--secondary-color) !important;
    color: #fff;
}

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells {
    display: none;
}

.woocommerce-info {
    border-top-color: #3498db;
    margin-bottom: 15px;
}

.woocommerce-info:before {
    color: #3498db;
}

.woocommerce-info a {
    color: #d78ab7;
    color: var(--primary-color);
    font-size: 14px !important;
    font-weight: 500;
}

.woocommerce-info a:hover {
    color: #b86c99;
    color: var(--secondary-color);
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border-radius: 0 !important;
    font-weight: 500;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    font-weight: 500;
    border-radius: 0;
}

.woocommerce .checkout h3 {
    margin-bottom: 0;
    padding: 10px 0 10px 0;
    font-weight: 500;
}

.woocommerce .checkout p label {
    padding-top: 20px;
    font-weight: 500;
    font-size: 14px;
}

.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: #ef5350;
    transition: 0.2s;
}

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

.woocommerce form .form-row .required {
    color: #ef5350;
}

.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: #7CB342;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    line-height: 34px;
    font-weight: 500;
    color: #707070;
}

.select2-dropdown {
    border: 1px solid #eee;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eee;
    border-radius: 0;
    transition: 0.4s;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #cecece;
    transition: 0.4s;
}

.select2-container--default .select2-selection--single {
    border-radius: 0;
    border: 1px solid #eee;
    height: 34px;
    transition: 0.4s;
}

.select2-container--default .select2-selection--single:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #cecece;
    transition: 0.4s;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px;
}

.woocommerce-checkout-payment ul li,
.woocommerce-checkout-payment p {
    font-size: 14px;
    font-weight: 500;
    border-radius: 0 !important;
    line-height: 34px;
    color: #707070;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background-color: #f5f5f5;
    border-radius: 0;
    border: 3px double #eee;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background-color: #ffffff;
    border-radius: 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 #ffffff;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -.75em;
    left: 0;
    margin: -1em 0 0 2em;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    padding: 12px 20px 13px 20px;
    margin-top: -3px;
    font-size: 13px;
    text-transform: uppercase;
}

.woocommerce-NoticeGroup ul {
    font-size: 14px;
}

.woocommerce .cart-empty, .woocommerce .cart-empty strong {
    font-weight: 500;
}

.woocommerce .wc-backward,
.woocommerce .return-to-shop {
    font-size: 13px !important;
}

.woocommerce-checkout-payment ul li,
.woocommerce-checkout-payment p {
    font-size: 14px !important;
}

.woocommerce .woocommerce-Reviews .description {
    padding-left: 20px;
}

/*my edit */

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

.wp-subscribe-wrap {background-color:#333333 !important;}
.wp-subscribe-wrap input.email-field, .wp-subscribe-wrap input.name-field {background: none !important; border: solid 1px #666 !important; color:#999 !important}
.wp-subscribe-wrap input {height:35px !important; padding:7px 0 !important}
.wp-subscribe-wrap input.submit {color:#ff0099 !important;}
.dhswp-html-sitemap-wrapper ul, .dhswp-html-sitemap-post-list ul {padding:0; margin:0}
.dhswp-html-sitemap-post-list  li {margin-bottom:20px; width:50%; display:inline-block;}
.dhswp-html-sitemap-post-list  li a {color:#333}
.time {font-size:14px;}
.dhswp-html-sitemap-wrapper .dhswp-html-sitemap-post-title.dhswp-post-title {display:none;}
.hentry h2 {margin-bottom:30px !important;}
.dhswp-html-sitemap-post-list li a:hover{color: #d78ab7;}
@media screen and (max-width:767px) {
	.dhswp-html-sitemap-post-list  li {width:100%;}
}