/*!
Theme Name: Furfura
Theme URI: http://furfura.com/
Author: furfura
Author URI: http://rsit.com.bd/
Description: Web Development
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: furfura
Tags: custom-logo, custom-menu, featured-images, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Reset
# Typography
# Elements
# Forms
# Links
# Accessibility
# Alignments
# Clearings
# Widgets
# Navigation
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

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

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

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

[hidden], template {
    display: none;
}

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

b, strong {
    font-weight: bold;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

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

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

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

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

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

input {
    line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

td, th {
    padding: 2px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
    color: #3366CC;
    font: normal 14px Verdana, Arial, Helvetica, sans-serif;
    line-height: 22px;
}

p {
    margin-bottom: .8em;
}

button, input, select, optgroup, textarea {
    color: #404040;
    font-size: 14px;
    font-family: sans-serif;
    line-height: 23px;
}

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

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code, kbd, tt, var {
    font-size: 15px;
}

abbr, acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark, ins {
    background: #555907;
    text-decoration: none;
    color: #000;
}

small {
    font-size: 80%;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
*,
*:before, *:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

ul, ol {
    margin: 0 0 1em .5em;
}

ul {
    list-style: disc inside;
}

ol {
    list-style: decimal inside;
}

li > ul, li > ol {
    margin: 0 0 0 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

table {
    margin: 0 0 1.5em;
    border-collapse: collapse;
    border-spacing: 0;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button, input[type="button"], input[type="reset"], input[type="submit"] {
    background: #555907;
    border: none;
    border-radius: 3px;
    color: #fff;
    padding: 5px 6px;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active, button:focus, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:active, input[type="reset"]:focus,
input[type="submit"]:active, input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"],
input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"],
input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    background: #f4f4f4;
    border: 1px solid #dedede;
    font-weight: 400;
    max-width: 100%;
    padding: 6px 12px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus,
input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus,
input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus,
input[type="color"]:focus, textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: royalblue;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: royalblue;
}

a:hover, a:focus, a:active {
    color: midnightblue;
}

a:focus {
    outline: 0;
}

a:hover, a:active {
    outline: 0;
}

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

input[type=search] {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 5px;
}

.clear {
    clear: both;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}

/*----------------------------------------------*/
#page {
    background-image: url(assets/images/green-wood-texture-background.jpg);
    background-color: #555907;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-branding {
    margin-bottom: 5px;
    padding: 15px;
    background: #FFFDF1;
    -webkit-box-shadow: inset 0px 0px 10px 6px rgba(213, 207, 180, 1);
    -moz-box-shadow: inset 0px 0px 10px 6px rgba(213, 207, 180, 1);
    box-shadow: inset 0px 0px 10px 6px rgba(213, 207, 180, 1);
}

.site-branding-inner {
    background-color: #555907;
    overflow: hidden;
}

.main-header {
}

.site-branding {
}

.logo, .logo-muslim, .logo-en {
    background-color: #555907;
}

/*--------------------------------------------------------------
## Navigation
--------------------------------------------------------------*/
.main-nav {
    margin-top: 5px;
}
div.wpmm-orientation-vertical ul.wpmm-mega-wrapper > li {
    border-bottom: 1px solid #314359;;
}
div.wpmm-orientation-vertical ul.wpmm-mega-wrapper li > a.wp-mega-menu-link{
    padding: 5px 10px;
}
ul.wpmm-mega-wrapper li.wpmega-menu-flyout ul.wp-mega-sub-menu li a{
    padding: 5px;
    line-height: 20px;
}
.wp-megamenu-main-wrapper.wpmm-ctheme-wrapper.wpmega-default-theme-1 .wpmm-mega-wrapper > li.current-menu-item > a{
    background-color: #7E8408;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.content-area {
    padding: 10px;
    background-color: #FFFDF1;
    -webkit-box-shadow: inset 20px 0px 20px -7px rgba(213, 207, 180, 1),
    inset -20px 0px 20px -7px rgba(213, 207, 180, 1);
    box-shadow: inset 20px 0px 20px -7px rgba(213, 207, 180, 1),
    inset -20px 0px 20px -7px rgba(213, 207, 180, 1);
}
.site-content .kc-container {
    padding-left: 0px;
    padding-right: 0px;
}
.home .title-area {
    display: none;
}

.content-area-text {padding-top: 4px;}
.title-area, .page-title-area, .single-title-padding {
    padding:0 15px;
    background: #4a7f5b; /* Old browsers */
    background: -moz-linear-gradient(top,  #4a7f5b 0%, #e3ebe5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #4a7f5b 0%,#e3ebe5 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #4a7f5b 0%,#e3ebe5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a7f5b', endColorstr='#e3ebe5',GradientType=0 ); /* IE6-9 */
    margin-bottom: 20px;
}
.title-area h2, .page-title-area h2, .single-title-padding h2{
    margin: 7px 0;
    color: #003366;
    font-size: 18px;
    line-height: 26px;
}
.title-area-padding {}

.title-area, .title-area a {
    color: #003366;
}
.title-area .entry-meta {
    margin-top: 20px;
    font-size: 80%;
}
.content-area-text h3, .single-article-list h3, .article-list h3{
    color: #009900;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 10px 0 10px 0;
}
.content-area-text h4 {
    color: #ff0000;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    margin: 10px 0 10px 0;
    padding: 0 15%;
    font-style: italic;
    text-align: center;
}
.content-area p {
    font-weight: 400;
    font-size: 14px;
    color: #3366CC;
    line-height: 22px;
    text-align: justify;
}

ul li {
    list-style: inside;
}

ol li {
    list-style: inside;
}

/*=======================*/
.kc_image_gallery.kc-grid .item-grid.grid-4{
	padding:5px;
}
.about-txt-box {

}

.about-txt-box p {
    padding: 0;
}

/*==================================================*/
.magazine-news .widget-area .widget{
	overflow:hidden;
}
.widget-area h3 {
    font-size: 17px;
    color: #FF6666;
    line-height: 30px;
    margin: 5px 0;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
}

.widget_search{
    text-align: center;
}
#google_language_translator select.goog-te-combo{
    width: 90%;

}
#google_language_translator{
    text-align: center;
}
#archives-dropdown-2{
    color: #32373c;
    width: 90%;
    padding: 1px 3px;
    margin-left: 12px;
}
/*===========================================================*/

/*================news-event=====================*/
.content-area-text .kc_accordion_header > a{
    font-size: 20px;
    color: #353535;
}
.content-area-text .kc_accordion_content{
    color: #3366CC;
}
.content-area-text .kc_accordion_content table{
    width: 55%;
}
/*------------------------------------------------------------
 ##audio-box
 ------------------------------------------------------------*/
.audio-box{
	height:480px;
	overflow:auto;
}
/*--------------------------------------------------------------
    ## Contact Page
 --------------------------------------------------------------*/
.contact-form {
	padding-top:10px;
}

.contact-form label {
	width:135px;
	float:left;
}
.contact-form input, .contact-form textarea {
    padding: 5px;
	margin-bottom:5px;
	font-size: 14px;
    color: #555907;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.contact-form textarea{
	height:100px;
}
.contact-form .contact-submit-btn input[type="submit"] {
    background: #555907;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
	font-weight:bold;
    cursor: pointer;
	border-radius: 3px;
}
.contact-submit-btn{
	margin-left:16%;
}
.contact-form .contact-submit-btn input[type="submit"]:hover {
    background: #7E8408;
}

/*--------------------------------------------------------------
    ## Posts and pages
 --------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}
.entry-footer {
    clear: both;
}

.search .entry-meta > span, .search .entry-footer > span, .single .entry-meta > span, .single .entry-footer > span {
    padding: 0;
}

/*Boxed btn Css*/

p.read-more-wrap a.boxed-btn {
    background: #555907;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    padding: 9px 20px 6px;
}
p.read-more-wrap a.boxed-btn:hover {
    background: #7E8408;
    text-decoration: none;
}
.edit-link {
    display: block;
}
.sliderimage_hide_border .wpls-logo-cnt.slick-slide img{padding:2px; border:4px solid #045598;}

/*----------------------------------------------------------
##Error Page
------------------------------------------------------------*/
.error-area-padding {
    padding: 50px;
    text-align: center;
}

.error-area-padding p {
    text-align: center;
    font-size: 20px;
    color: #353535;
}

.error-area-padding p a {
    color: #2c2a79;
}

/*----------------------------------------------------------
##Search Page
------------------------------------------------------------*/

/*--------------------------------------------------------------
## Blog
--------------------------------------------------------------*/
.article-list, .single-article-list, .single-title-padding {
    padding: 10px;
    border: 1px solid #f1f1f1;
}
 .widget-area .widget {
    margin-bottom: 10px;
    padding: 3px;
    border: 1px solid #f1f1f1;
}
.article-list strong{
    color: #003366;
}
.article-list article{
    border-bottom: 1px solid #c8c8c8;
}
.article-list h2, .widget-area .widget h2 {
    font-size: 25px;
    margin-bottom: 10px;
	line-height:38px;
}

.entry-meta, .entry-footer {
    font-size: 100%;
}

.article-list a, .entry-footer a {
    color: #555907;
}
.entry-meta {
    margin-bottom: 20px;
}

.entry-footer {
    margin: 20px 0;
}

.entry-meta > span, .entry-footer > span {
    padding: 0 10px 0 0;
}

.featured-content {
    margin-bottom: 10px;
}

.widget-area .widget ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    line-height: 30px;
}

.calendar_wrap table {
    width: 100%;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.calendar_wrap table th, .calendar_wrap table td {
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 10px;
}

.calendar_wrap table th {
    background-color: #ddd;
}

.rssSummary {
    font-size: 90%;
}

.widget_rss li {
    margin-bottom: 18px;
}

.widget-area .widget.widget_rss a {
    font-weight: 700;
}

.rss-date {
    font-size: 90%;
}

.widget img {
    height: auto;
}

/*--------------------------------------------------------------
## Comment
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
    color: #0e4eef;
}

.comment-form input, .comment-form textarea {
    width: 100%;
}

.comment-form input[type=submit] {
    width: auto;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-title {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.comment-list li.comment {
    margin-bottom: 30px;
}

ol.children li {
    margin-top: 20px;
    list-style: none;
}

.comment-list a.comment-reply-link {
    background: #555907;
    color: #fff;
    display: inline-block;
    padding: 0 10px;
}

.comment-list a {
    color: #333;
}

.comment-metadata {
    font-size: 80%;
    margin: 2px 0 15px;
}

input[type="submit"]:hover {
    background-color: #7E8408;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

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

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

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

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

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

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

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

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

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

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
## site main
--------------------------------------------------------------*/

.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous, .posts-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next, .posts-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}


/*--------------------------------------------------------------
## News Pagination
--------------------------------------------------------------*/
.page-links {
    clear: both;
    margin: 0 0 1.5em;
    color: #009900;
    font-weight: bold;
}
.page-links a{
    font-weight: normal;
}
.nav-links {
    overflow: hidden;
}

.nav-previous, .nav-next {
    float: left;
    width: 50%;
}
.nav-next {
    text-align: right;
}
.nav-links a {
    display: inline-block;
    background-color: #555907;
    color: #fff;
    padding: 5px 10px;
    border-radius: 2px;
}

.nav-links a:hover{
    background-color: #7E8408;
}
.nav-links .current{
    display: inline-block;
    background-color: #7E8408;
    color: #fff;
    padding: 5px 10px;
    border-radius: 2px;
}
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer {
    margin-top: 5px;
}

.site-info {
    background: #FFFDF1;
    padding: 20px;
    -webkit-box-shadow: inset 0px -7px 10px 6px rgba(213, 207, 180, 1);
    -moz-box-shadow: inset 0px -7px 10px 6px rgba(213, 207, 180, 1);
    box-shadow: inset 0px -7px 10px 6px rgba(213, 207, 180, 1);
}

.copyright a {
    color: #0066CC;
}

.powered-by {
    float: left;
}

.copyright-txt {
    float: right;
}

.copyright p a {
    color: #ccc;
}

.copyright .widget {
    margin: 0;
}
/*alquranpart*/
.alquranpart p{
	font-size:20px;
	line-height:30px;
	text-align:right;
}

/*Magazine Part*/
.magazine-newlogo{
overflow:hidden;
}
.magazine-logo{
	float:left;
}
.mukhopotro-logo{
	float:right;
}
/*Magazine Part*/

/*
Product img animation css
*/
.woocommerce .products li {

}
.woocommerce .products li a.woocommerce-LoopProduct-link img {
    transform: translateZ(0px) !important;
    -webkit-transform: translateZ(0px) !important;
    transition-duration: 1s !important;
    -webkit-transition-duration: 1s !important;
    transition-property: transform !important;
    vertical-align: middle !important;
    display: inline-block !important;
}
.woocommerce ul.products li.product a:hover img {
    transform: scale(1.1) !important;
    -webkit-transform: scale(1.1) !important;
}

/*
=====================
sale and new button css for all
=====================
*/
.item-img {
    position: relative;
}
.item-img .new-label,
.woocommerce span.onsale {
    position: absolute;
    z-index: 999;
    font-weight: 600;
    color: #fff;
    top:0px;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.item-img .new-label.new-top-right,
.woocommerce span.onsale {
    background: #555907;
    padding: 9px 13px;
    font-size: 12px;
}
.woocommerce span.onsale {
    border-radius: 0;
    line-height: 1.2;
    min-height: 38px !important;
    padding: 10px;
    top: 16px !important;
}

/*
=======================
end of css
=======================
*/

#tab-description h2, h2.yikes-custom-woo-tab-title{
    display: none;
}
div.pdfemb-toolbar div.pdfemb-poweredby a{
    display: none;
}
/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) {

}

/* Tablet & Mobile Layout: 768px. */
@media only screen and (max-width: 991px) {

}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {

}

/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 481px) and (max-width: 767px) {

}

/* Mobile Layout: 480px. */
@media only screen and (max-width: 480px) {

    .logo {
        text-align: center;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 320px) {
    .logo {
        text-align: center;
    }
    .page #custom_html-3, .page .widget_sfp_page_plugin_widget{
        display: none;
    }
}


