/*
* Template Name: Styles Modules
* Template Description: Styles Personalized for modules DCPANEL
* Version: 1.0.0
* Author: IsmaelDC
*/

/* karma regular */
@font-face {
    font-family: 'karma';
    src: url('/templates/tattoos/fonts/karma/karma-regular-webfont.woff2') format('woff2'),
         url('/templates/tattoos/fonts/karma/karma-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* karma regular oblique (equivalente a italic) */
@font-face {
    font-family: 'karma';
    src: url('/templates/tattoos/fonts/karma/karma-regularoblique-webfont.woff2') format('woff2'),
         url('/templates/tattoos/fonts/karma/karma-regularoblique-webfont.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

/* karma bold */
@font-face {
    font-family: 'karma';
    src: url('/templates/tattoos/fonts/karma/karma-bold-webfont.woff2') format('woff2'),
         url('/templates/tattoos/fonts/karma/karma-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* karma bold oblique (italic bold) */
@font-face {
    font-family: 'karma';
    src: url('/templates/tattoos/fonts/karma/karma-boldoblique-webfont.woff2') format('woff2'),
         url('/templates/tattoos/fonts/karma/karma-boldoblique-webfont.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

/* karma light */
@font-face {
    font-family: 'karma';
    src: url('/templates/tattoos/fonts/karma/karma-light-webfont.woff2') format('woff2'),
         url('/templates/tattoos/fonts/karma/karma-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

/* karma light oblique */
@font-face {
    font-family: 'karma';
    src: url('/templates/tattoos/fonts/karma/karma-lightoblique-webfont.woff2') format('woff2'),
         url('/templates/tattoos/fonts/karma/karma-lightoblique-webfont.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

/* josefin slab - thin */
.josefin-slab-thin {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

/* josefin slab - light */
.josefin-slab-light {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* josefin slab - regular */
.josefin-slab-regular {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* josefin slab - medium */
.josefin-slab-medium {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* josefin slab - semibold */
.josefin-slab-semibold {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* josefin slab - bold */
.josefin-slab-bold {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* josefin slab - extrabold */
.josefin-slab-extrabold {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

/* josefin slab - black */
.josefin-slab-black {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

/*--------------------------------------------------------------
    Custom CSS
----------------------------------------------------------------*/

.text-center {
    text-align: center;
}
.empty10 {
    height: 10px;
}
.empty20 {
    height: 20px;
}
.empty30 {
    height: 30px;
}
.empty40 {
    height: 40px;
}
.clear {
    clear: both;
}
/*--------------------------------------------------------------
    LIST OF CATEGORIES
--------------------------------------------------------------*/

.product {
    padding: 10px;
    cursor: pointer;
}
.product:hover {
    background-color: #e2e2e2;
}
.product p {
    font-size: 11px;
    text-align: center;
}
.product img {
    width: 100%;
}
.product img {
    display: block;
}
.product-thumb {
    position: relative;
    overflow: hidden;
}
.product-thumb:hover {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.product-thumb:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    content: '';
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}
.product-thumb:hover:before {
    opacity: 0.2;
}
.thumb-links {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -20px;
    height: 40px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s, visibility 0s linear 0.4s;
    -moz-transition: opacity 0.4s, visibility 0s linear 0.4s;
    -ms-transition: opacity 0.4s, visibility 0s linear 0.4s;
    -o-transition: opacity 0.4s, visibility 0s linear 0.4s;
    transition: opacity 0.4s, visibility 0s linear 0.4s;
}
.product-thumb a {
    display: inline-block;
    margin-left: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    background-color: #161616;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
}
.product-thumb a:first-child {
    margin: 0;
}
.product-thumb a:hover {
    background-color: #000000;
}
.product-thumb:hover .thumb-links {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}
.product-thumb a:before {
    font-family: 'Fontawesome';
}
.zoom {
    margin-left: -60px;
}
.zoom:before {
    content: '\f06e';
}
.info-link {
    margin-left: 20px;
}
.info-link:before {
    content: '\f141';
}
.opened .info-link:before {
    content: '\f00d';
}
.info-work {
    position: relative;
    display: none;
    opacity: 0;
    padding: 40px;
    border: 1px solid #eeeeee;
    font-size: 13px;
    overflow: hidden;
    transition: opacity 0.4s linear 0.4s;
}
.opened .info-work {
    opacity: 1;
}
.info-work .name {
    color: #161616;
    font-size: 13px;
    font-weight: bold;
}
.info-work .name small {
    font-weight: normal;
}
.info-work.testimonial:before {
    display: block;
    margin-bottom: 10px;
    color: #BDC3C7;
    font-family: 'FontAwesome';
    content: '\f10d';
}
.products-name {
    text-align: center;
    margin-bottom: 5px;
    margin-top: 10px;
    min-height: 20px;
    font-size: 15px;
    font-weight: bold;
}
.products-price {
    text-align: center;
    font-weight: bold;
}
.pro-list-h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.line-title-new:before {
    content: "------------------------------------------";
    letter-spacing: -3px;
    font-size: 0.5em;
    padding-right: 20px;
    color: #b6b6b6;
    vertical-align: middle;
}
.line-title-new:after {
    content: "------------------------------------------";
    letter-spacing: -3px;
    font-size: 0.5em;
    padding-left: 20px;
    color: #b6b6b6;
    vertical-align: middle;
}
/*--------------------------------------------------------------
    PRODUCT LIST
--------------------------------------------------------------*/

.pro-list-title {
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid #e2e2e2;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}
.pro-list-discount {
    position: absolute;
    top: 30px;
    padding: 3px;
    padding-left: 8px;
    padding-right: 8px;
    background: #da4a2c;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}
.pro-list-items {
    list-style: none;
    margin-left: -40px;
}
.pro-list-item {
    border: 1px solid #FFF;
    padding: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}
.pro-list-item:hover {
    border: 1px solid #e6e6e7;
}
.pro-list-item img {
    width: 100%;
}
.pro-list-name {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    min-height: 20px;
}
.pro-list-prize {
    text-align: center;
    color: #da4a2c;
    font-size: 1.8rem !important;
    font-weight: bold;
}
.pro-list-prize-before {
    text-align: center;
    color: #555;
    font-size: 1.4rem !important;
    font-weight: bold;
}
.pro-list-prizes {
    text-align: center;
}
.pro-list-button {
    border: 1px solid #e6e6e7;
    padding: 6px;
    margin-left: auto;
    margin-right: auto;
    margin: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #8e7f7a;
}
.pro-list-info {
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 10px;
    background-color: #F9F9F9;
    margin-top: 30px;
    margin-bottom: 30px;
}
.pro-list-info-right {
    text-align: right;
}
.pro-list-selector {
    max-width: 220px;
}
.pro-list-selector {
    margin-bottom: 0px;
}
.pro-list-selector .form-control {
    height: 25px;
}
/*--------------------------------------------------------------
    PRODUCT DETAIL
--------------------------------------------------------------*/

.pro-preview {} .pro-preview img {
    width: 100%;
}
.pro-price {
    font-size: 32px;
    color: #404040;
    font-weight: bold;
}
.pro-discount {
    margin-left: 0px;
    font-size: 20px;
    background: #ee3c33;
    color: #fff;
    margin-bottom: 6px;
    max-width: 80px;
    padding: 6px;
    text-align: right;
    vertical-align: middle;
}
.pro-btn {
    border-radius: 0px;
    border: 1px solid #e6e6e7;
    padding: 15px;
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold;
    cursor: pointer;
}
.pro-subdetails {
    color: #757676;
    font-size: 11px !important;
    font-size: 1.1rem !important;
    font-weight: normal;
    margin-top: 20px;
}
.card {
    background: #FFF;
    padding: 3em;
    line-height: 1.5em;
}
.pro-title,
.pro-price,
.pro-sizes,
pro-colors {
    text-transform: UPPERCASE;
    font-weight: bold;
    margin-top: 20px;
}
.checked,
.price span {
    color: #ff9f1a;
}
.pro-title,
.rating,
.product-description,
.price,
.vote,
.sizes {
    margin-bottom: 15px;
}
.pro-title {
    margin-top: 20px;
    font-size: 25px;
}
.pro-previews {
    list-style: none;
    margin-left: -40px;
}
.pro-previews li {
    float: left;
    margin: 5px;
    padding: 5px;
    border: 1px solid #e2e2e2;
    padding-bottom: 0px;
}
.pro-subtitle {
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
    font-size: 16px;
    font-weight: bold;
}
.pro-content h3 {
    font-size: 14px;
}
.pro-content img {
    max-width: 100%;
}
.pro-img-responsive {
    max-width: 100%;
}

.pro-thumb img{
    max-width: 100px;
}
.pro-breadcump{
    margin-top: -30px;
    margin-bottom: 20px;
}
.pro-breadcump a{
    text-decoration: none;
}
.pro-breadcump a:hover{
    text-decoration: underline;
}

/*--------------------------------------------------------------
    PAGINATION
--------------------------------------------------------------*/

.pagination-list {
    list-style: none !important;
    margin-left: -40px;
}
.pagination-list ul {
    list-style: none !important;
}
.pagination-list li {
    float: left;
    margin-right: 1px;
}
.pagination-list li a {
    display: inline-block;
    color: #757676;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    padding: 5px 12px;
    text-decoration: none;
    background: #fff;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
    border-radius: 0px;
    background-color: #FFF;
    margin-bottom: 30px;
    margin-top: 20px;
}
.pagination-list li a:hover {
    background: #666;
    color: #fff !important;
}
.page-active a {
    background: #000 !important;
    color: #fff !important;
}

/*--------------------------------------------------------------
    PAGE404
--------------------------------------------------------------*/

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

.error-text .btn{
    padding:10px;
}

.error-404 {
    font-size: 200px !important;
    font-weight: 700;
    line-height: 200px;
}

.call-action{
    background-color: #000;
    color: #FFF;
    padding: 10px;
    text-align: center;
}

/*--------------------------------------------------------------
    INDICE POST
--------------------------------------------------------------*/

#toc_container {
    background: #f9f9f9;
    border: 1px solid #aaa;
    padding: 10px;
    margin-bottom: 1em;
    width: 100%;
    display: table;
    font-size: 95%;
    margin-bottom: 40px;
}

.toc_title{
    text-align: center;
    color: #000;
    font-weight: bold;
}

.post-content .header-info .btn{
    border: 2px solid #fff;
    color: #fff;
    margin-top: 10px;
}
.post-content .header-info img{
    max-width: 100%;
}
.post-content .header-info .btn:hover{
    color: #000;
}