/*
Theme Name: Bornomala
Theme URI: https://themesvila.com/themes-wp/bornomala
Author: theme_ocean
Author URI: https://themeforest.net/user/theme_ocean
Description: Kindergarten & School WordPress Theme
Version: 1.9
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bornomala
Tags: two-columns, right-sidebar

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.

Bornomala is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
dl {
  margin: 0 20px;
}
dd {
	margin-bottom: 12px;
}
table {
    border-bottom: 1px solid #ededed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 2;
    margin: 0 0 20px;
    width: 100%;
 	 text-align: center;
}
caption, th, td {
    font-weight: normal;
    text-align: center;
}
caption {
	font-size: 16px;
	margin: 0;
	padding-top: 0;
}
th {
    font-weight: bold;
    text-transform: uppercase;
}
td {
    border-top: 1px solid #ededed;
    padding: 6px 10px 6px 0;
}
tr{
	 padding: 6px 10px 6px 0;
}
del {
    color: #333;
}
select{
	border: 1px solid #ddd;
  padding: 10px;
}

body{
	overflow-x:hidden;
}

/*--------------------------------------------------------------
# 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-size: 0.875rem;
	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 40px;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

.footer-top select{
	color: #777;
	max-width: 100%;
}
.footer-top img{
	max-width: 100%;
	height: auto;
}
.single_footer{
	margin-bottom: 40px;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 30px;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
	line-height: 26px;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.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%;
}

/*--------------------------------------------------------------
## 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.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-caption {
	display: block;
}
.content-area{
	margin: 40px 0;
}
.content-area p{
	margin-bottom: 15px;
}
.post_img,
.post_audio_video{
	margin-bottom: 20px;
}
.post_img{
	text-align: center;
}
.post_img img{
	display: inline-block;
}
.entry_meta{
	
}
.entry_meta,
.entry_meta a{
	color: #777;
	font-family: "Open Sans",sans-serif;

}
.entry_meta i{
	padding-right: 6px;
}
.entry-title{
	margin-top: 15px;
	margin-bottom: 0px;
	font-size: 20px;
}
.entry-title a{
	display: inline-block;
	color: #333;
	transition: .5s;
}
.entry-title a:hover{
	color: #ef476f;;	
}
.single_post_blog{
	margin-bottom: 35px;
}

iframe{
	border: none;
}
.widget-title {
	margin-top: 0;
	margin-bottom: 22px;
}

.widget-title ,
#reply-title,
.comments-title
{
	font-size: 18px;
}
.widget-area li{
	border-bottom: 1px dashed #ddd;
	padding-bottom: 13px;
	margin-bottom: 13px;
	list-style-type: none;
}
.widget-area li li{
	margin-left: 15px;
}
.widget-area li:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.widget-area a{
	color: #777;
	transition: .5s;
}
.widget-area a:hover{
	color: #ef476f;;	
}

.tagcloud a {
	background: #e9e9e9;
	color: #777;
	padding: 10px 20px;
	margin: 0 4px 15px;
	display: inline-block;
	font-size: 16px !important;
	transition: .5s;
	line-height: normal;
}
.widget .tagcloud a:hover{
	background: #ef476f;;
	color: #fff;
}
.navigation.pagination{
	margin: 15px 0 15px;
	text-align: center;
	width: 100%;
}
.navigation.pagination a{
	color: #777;	
	transition: .5s;
}

.navigation.pagination a,
.navigation.pagination span{
	padding: 12px 16px;
	background: #e9e9e9;
	margin-right: 10px;
}
.navigation.pagination a:hover,
.navigation.pagination span{
	background: #ef476f;;
	color: #fff;
}
#comment{
	height: 120px;
}

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 {
	border: 1px solid #ddd;
	padding: 6px 10px;
}

.form-submit #submit,
button,
html input[type="button"],
input[type="reset"],
input[type="submit"]
{
	background: #e9e9e9;
	border: 1px solid #e9e9e9;
	color: #777;
	padding: 13px 20px;
	display: inline-block;
	transition: .5s;
	line-height: normal;	
}
.form-submit #submit:hover,
.form-submit #submit:focus,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
	background: #ef476f;
	color: #fff;
}
.post-password-form input[type="submit"]{
	margin-left: 10px;
}
.nav-links .nav-previous,
.nav-links .nav-next{
	text-align: center;
}
.nav-links .nav-previous a,
.nav-links .nav-next a{
	display: inline-block;
	text-align: center;
	padding: 8px 16px;
	border: 1px solid #ef476f;;
	margin-bottom: 14px;
}
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover{
	background: #ef476f;
	color: #fff;
}

article.sticky{
  border-top: 4px solid #ef476f;
  padding-top: 20px;
  margin-bottom: 30px;
}
.single_post_blog  .btn-light-bg,
.form-submit #submit{
	background-color: #ef476f;
	color: #fff;
}
.wp-block-button,
.wp-block-cover{
	margin-bottom: 15px;
}
.wp-block-cover-text{
	color: #fff!important;
}

blockquote {
	padding: 23px 20px!important;
	margin: 0 0 20px;
	font-size: 17.5px;
	border-left: 5px solid #ef476f;
	background-color: #fafafa;
}


/* Comment Style */

.comments-area ol, .comments-area ul {
	padding-left: 25px;
}
.comments-area .comment-list{
	padding-left: 0;
}
.comments-area li.comment,
.comments-area li.pingback
{
	border: 1px dashed #ddd;
	list-style-type: none;
	padding: 15px 15px 25px;
	margin-bottom: 20px;
}
.comments-area ol .children{
	padding-left: 25px;
}
.comment_avatar{
	float: left;
	margin-right: 22px;
}

.creply_link {
	display: inline-block;
	text-align: right;
	float: right;
	text-transform: none;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0;
}
.center-block{
	float: inherit;
}
.entry-content img{
	max-width: 100%;
  height: auto;
}

.entry-content ol,
.entry-content ul{
	padding-left: 25px;
}
.widget select {
	width: 100%;
}
.widget img{
	max-width: 100%;
	height: auto;
}
.page_content{
	margin-top: 0;
}
.admin-bar .navbar-fixed-top.menu-top {
	margin-top: 20px;
}
#reply-title{
	margin-bottom: 10px;
}
.logged-in-as{
	margin-bottom: 10px;
}
.comments-title{
	margin-top: 0px;
	margin-bottom: 15px;
}
.post_btn a{
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 300;
	font-family:"Open Sans",sans-serif;
	text-transform: none;
}
.posted-on{
	display: inline-block;
	margin-top: 15px;
}
#searchform .search_field{
	height: 45px;
	line-height: 45px;
}
.comment_avatar img{
	border-radius: 50%;
}
.customize-support .header_top ,
.admin-bar .header_top {
    margin-top: 0px;
}

.customize-support .header_area ,
.admin-bar .header_area {
    margin-top: 0;
}
	
/* Reseponsiv Style */
@media only screen and (max-width:1170px) { 

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

}

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

}

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

  #secondary{
    margin-top: 30px;
  }  
}
@media only screen and (max-width:600px) { 
.customize-support .navbar-fixed-top.menu-top.menu-shrink ,
.admin-bar .navbar-fixed-top.menu-top.menu-shrink {
    margin-top: 0px;
  }
}
#kc_page_template{
	margin-left: -15px ;
	margin-right: -15px ;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	background: transparent;
}
.about_content p{
	margin-bottom: 15px;
}

/* Heading */

h5{
	font-size: 16px
}
h6{
	font-size: 14px
}


/*Woocommerce CSS*/
.woocommerce.woocommerce-page h1.page-title {
	display: inline;
	text-align: left;
	float: left;
	clear: both;
	font-size: 28px;
}
.woocommerce .woocommerce-result-count {
	margin: 0 0 15px;
	display: inline-block;
	float: left;
	text-align: left;
	clear: both;
}
.woocommerce .woocommerce-ordering {
	margin: 0 0 25px;
}
.woocommerce ul.products li.product .button ,
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button,
button#place_order {
	background: #00bff3 none repeat scroll 0 0;
	border: 2px solid #00bff3;
	border-radius: 100px;
	color: #fff;
	font-size: 13px;
	padding: 15px 31px;
	text-transform: capitalize;
	transition: all 0.3s ease 0s;
	margin-top: 15px;
	font-family: "Open Sans",sans-serif;	
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
	background-color: #222!important;
	border-color: #222!important;
	text-decoration: none;
	background-image: none;
	color: #fff;
}
.woocommerce span.onsale {
	height: 50px;
	width: 50px;
	padding: 0;
	line-height: 50px;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {	
	border: inherit;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
	line-height: 30px;
	display: inline-block;
	padding: 0px 18px;
	margin-right: 8px;
	margin-bottom: 10px;
	transition: .5s;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 30px;
	font-family: "Open Sans",sans-serif;	

}

.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: #00bff3;
	color: #fff;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus{
	background: #fff;
	color: #333;
}
.woocommerce-Reviews #reply-title{
	display: block;
}
.woocommerce-variation-price{
	margin-bottom: 20px;
}
.woocommerce-variation-add-to-cart{
	margin-top: 40px;
}
.summary.entry-summary .single_add_to_cart_button{
	margin-top: 0!important;
	margin-left: 10px;
}
.woocommerce-message a.button,
.checkout_coupon button.button{
	margin-top: 0;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img, 
.woocommerce-checkout table.cart img {
	width: 83px;
}
.woocommerce .quantity .qty {
	width: 60px;
	height: 43px;
}
.woocommerce a.remove {
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 100%;
	display:inline-block;
}
#coupon_code{
	width: auto;
	padding: 15px;
	margin-right: 20px;	
}
.woocommerce #respond input#submit.disabled, 
.woocommerce #respond input#submit:disabled, 
.woocommerce #respond input#submit[disabled]:disabled, 
.woocommerce a.button.disabled, 
.woocommerce a.button:disabled, 
.woocommerce a.button[disabled]:disabled, 
.woocommerce button.button.disabled, 
.woocommerce button.button:disabled, 
.woocommerce button.button[disabled]:disabled, 
.woocommerce input.button.disabled, 
.woocommerce input.button:disabled, 
.woocommerce input.button[disabled]:disabled {
	color: #fff;
	font-size: 13px;
	padding: 15px 31px;

}
.woocommerce-cart-form__contents button.button{
	margin-top: 0;
}
.woocommerce-billing-fields input{
	padding: 15px 25px!important;
}
#customer_details{
	margin-bottom: 20px;
}
.woocommerce-product-details__short-description{
	margin: 15px 0 29px;
}

.star-rating{
	color: #fec42d;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="reset"],
input[type="search"],
#woocommerce-product-search-field,
#billing_phone{
	padding: 10px 15px;
	border: 1px solid #ddd;
}
#woocommerce-product-search-field{
	width: 100%;
}
.woocommerce-product-search input[type="submit"]{
	display: none;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #ef476f
 
}
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
  width: 70px;
}
.product_list_widget li{
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px !important;
	padding-bottom: 20px !important;
}
.product_list_widget li:last-child{
	border-bottom: none;
}
.col2-set.addresses a.edit{
	border: 1px solid;
	float: right;
	padding: 5px 13px;	
}
#single-product-related .single-product{
	margin-bottom: 0;
	padding-bottom: 0;
}
.related-product-area .products-head-title h2,
.single-product-content-view h2,
.simpleLens-thumbnails-container h2
{
	font-size: 20px;
	color: #555;
}
.related-product-area .products-head-title h2{
	margin-bottom: 30px;
}
.product-description-tab ul.nav.nav-tabs{
	margin-bottom: 15px;
}
.single-product-content-view .price-box:nth-of-type(2) {
  display: none;
}
.woocommerce-review-link .count{
	background: #fff;
}
.woocommerce .woocommerce-product-rating .star-rating,
.woocommerce-review-link  {
  font-size: 14px;
}

#single-product-related .woocommerce-product-rating{
	margin-top: 10px;
	margin-bottom: 0;
}
#single-product-related .product-title{
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-top: 15px;	
}
#order_comments {
  border: 1px solid #ddd;
  padding: 10px;
}
.shop_top_section{
	margin-bottom: 20px;
	overflow: hidden;
}
.related_product_title,
.woocommerce-Reviews-title{
	font-size: 20px;
	margin-bottom: 20px!important;
}
.product_deatils_page{
	margin-top: 40px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    left: -10px;
    padding: 1px;
    width: 60px;
    height: auto;
    background: #ebe9eb;
    border-radius: 50%;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
	border: inherit;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid #ccc;
    background-color: inherit;

}
.woocommerce div.product .product_title {
    margin-bottom: 10px;
}
.woocommerce-product-gallery__image{
	margin-bottom: 20px;
	padding-right: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs{

}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
	border-color: #ef476f;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: #ef476f;
}
.woocommerce form .form-row .input-checkbox{
	margin: -8px 10px 0 0;
	
}
#tab-description h2,
.up-sells.upsells.products h2{
	font-size: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
	padding: 5px 15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
	color: #ef476f;
}
.woocommerce .quantity .qty{
	width: 60px;
}

.product_list_widget .star-rating{
	margin: 10px 0;
}
.woocommerce-product-search .search-field{
	width: 100%;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {

	padding: 12px 15px;

}
.single-product-content-view form.cart{
	margin-top: 20px;
}
.woocommerce a.remove{
	line-height: 35px;
}
#coupon_code {
	width: 100%;
	padding: 14px 15px;
}
#cancel-comment-reply-link{
	margin-left: 10px;
}
.menu-main{
	float: right;
}