@charset "UTF-8";
/*! wpo-style.css
*
* @package WP-Onaga
* @copyright Copyright (c) 2024 Onaga Studio <https://www.onagastudio.com/>
* @license GNU General Public License, version 2 (GPL-2.0)
*/

/*	Document
	---------------------------------------- */

.wp-onaga-container-inside:before,
.wp-onaga-container-inside:after,
.wp-onaga-container:before,
.wp-onaga-container:after {
	content: "";
	display: table;
}
.wp-onaga-container-inside:after,
.wp-onaga-container:after {
	clear: both;
}
.wp-onaga-container-inside,
.wp-onaga-container {
	text-align: left;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
body.rtl .wp-onaga-container-inside,
body.rtl .wp-onaga-container {
	text-align: right;
}

.wp-onaga-column-inside:before,
.wp-onaga-column-inside:after,
.wp-onaga-column:before,
.wp-onaga-column:after {
	content: "";
	display: table;
}
.wp-onaga-column-inside:after,
.wp-onaga-column:after {
	clear: both;
}
.wp-onaga-column-inside,
.wp-onaga-column {
	margin: 0 auto;
	padding: 0;
	position: relative;
}

.wp-onaga-wrapper-inside:before,
.wp-onaga-wrapper-inside:after,
.wp-onaga-wrapper:before,
.wp-onaga-wrapper:after {
	content: "";
	display: table;
}
.wp-onaga-wrapper-inside:after,
.wp-onaga-wrapper:after {
	clear: both;
}
.wp-onaga-wrapper-inside,
.wp-onaga-wrapper {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

/* Flexbox */
.wp-onaga-flexbox:before,
.wp-onaga-flexbox:after {
	content: "";
	display: table;
}
.wp-onaga-flexbox:after {
	clear: both;
}
.wp-onaga-flexbox {
	display: flex !important;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: stretch;
	align-items: stretch;
	justify-content: space-between;
}
body.rtl .wp-onaga-flexbox {
	flex-direction: row-reverse;
}

/* Metabox */
.wp-onaga-metabox {
	margin: 0;
	padding: 0;
}

/* Infobox */
.wp-onaga-infobox {
	max-width: 90%;
	margin: 0 auto;
	padding: 1rem;
}

/* Global Box */
.wp-onaga-box-inside:before,
.wp-onaga-box-inside:after,
.wp-onaga-box:before,
.wp-onaga-box:after {
	content: "";
	display: table;
}
.wp-onaga-box-inside:after,
.wp-onaga-box:after {
	clear: both;
}
.wp-onaga-box {
	background: var( --wpo-color-white );
	border: 1px solid var( --wpo-color-grey80 );
	margin: 0.5rem;
	padding: 0;
	color: var( --wpo-color-black );
	overflow: hidden;
	position: relative;
}
.wp-onaga-box-inside {
	padding: 1rem;
	word-break: normal;
	word-wrap: break-word;
	position: relative;
}
.wp-onaga-box + .wp-onaga-box {
	margin-top: 1rem;
}

.wp-onaga-box a {
	color: inherit;
}
.wp-onaga-box a:hover,
.wp-onaga-box a:focus,
.wp-onaga-box a:focus:active {
	color: inherit;
}

@media only screen and (max-width: 600px) {
	body.wp-onaga-is-mobile .wp-onaga-box {
		margin: 0.25rem;
	}
	body.wp-onaga-is-mobile .wp-onaga-box-inside {
		padding: 0.5rem;
	}
	body.wp-onaga-is-mobile .wp-onaga-box + .wp-onaga-box {
		margin-top: 0.5rem;
	}
}

/* Global Icon */
.wp-onaga-icon:before {
	padding: 0 0.5rem;
	color: inherit;
	font-family: "Font Awesome 5 Free";
	font-size: 1rem;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	text-transform: none;
	text-rendering: auto;
}
.wp-onaga-icon {
	width: auto;
	height: auto;
	background: transparent;
	border: none;
	box-shadow: none;
	margin: 0;
	padding: 0 0.5rem;
	color: inherit;
	line-height: 1;
	text-transform: none;
	cursor: pointer;
}
.wp-onaga-icon:hover,
.wp-onaga-icon:focus,
.wp-onaga-icon:focus:active {
	background: transparent;
	border: none;
	box-shadow: none;
}
