/**
 * Geral
 */
:root {
	--link-text-color: purple;
	--main-color: purple;
	--secondary-color: #43454b;
	--nav-menu-color: #000;
	--main-text-color: #171717;
	--message-bg-color: red;
	--font-family-featured: 'Raleway';
	--font-family-text: 'Open Sans';
}

/**
 * Default
 */

/**
 * Messages
 */

.woocommerce-info, .woocommerce-noreviews, p.no-comments {
	background-color: var(--message-bg-color);
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-noreviews::before,
p.no-comments::before {
	content: '';
}
.woocommerce-message::after,
.woocommerce-info::after,
.woocommerce-error::after,
.woocommerce-noreviews::after,
p.no-comments::after {
	content: '';
}
.woocommerce-Button {
}
.woocommerce-Button:hover {
}
.woocommerce-error {
}
.woocommerce-info {
}
.woocommerce-message {
}
.woocommerce-error::before {
	content: '';
}
.woocommerce-info::before {
	content: '';
}
.woocommerce-message::before {
	content: '';
}
.woocommerce-error::after {
	content: '';
}
.woocommerce-info::after {
	content: '';
}
.woocommerce-message::after {
	content: '';
}

/**
 * Minha Conta
 */

.woocommerce-MyAccount-navigation {
	padding: 50px 0 100px;
}
.woocommerce-MyAccount-navigation ul {
	border-top: 1px solid #000;
}
.woocommerce-MyAccount-navigation ul li {
	list-style: none;
	border-bottom: 1px solid #000;
	position: relative;
}
.woocommerce-MyAccount-navigation ul li a {
	text-decoration: none;
	display: block;
	padding: 10px 0 10px 10px;
	color: var(--nav-menu-color);
}
.woocommerce-MyAccount-navigation ul li a::before {
    opacity: 0.25;
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    width: 30px;
    text-align: center;
    color: var(--link-text-color);
}
.woocommerce-MyAccount-navigation ul li:hover a::before {
	opacity: 1;
}
.woocommerce-MyAccount-navigation ul li.is-active a::before {
	opacity: 1;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
	content: '\f0e4';
	font-family: 'FontAwesome';
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
	content: '\f290';
	font-family: 'FontAwesome';
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before {
	content: '\f019';
	font-family: 'FontAwesome';
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
	content: '\f041';
	font-family: 'FontAwesome';
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
	content: '\f007';
	font-family: 'FontAwesome';
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
	content: '\f08b';
	font-family: 'FontAwesome';
}
.woocommerce-MyAccount-navigation ul li a:hover {
}
.woocommerce-MyAccount-navigation ul li.is-active {
}
.woocommerce-MyAccount-navigation ul li.is-active a {
}
.woocommerce-MyAccount-navigation ul li.is-active a:hover {
}
.woocommerce-MyAccount-content {
	padding: 50px 0;
}
.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
}
.woocommerce-MyAccount-content p {
}
.woocommerce-MyAccount-content p a {
	color: var(--link-text-color);
}
.woocommerce-MyAccount-content p a:hover {
}
.woocommerce-MyAccount-content p:first-child {
}
.woocommerce-MyAccount-content p:first-child a {
}
.woocommerce-MyAccount-content p:first-child a:hover {
}
.woocommerce-MyAccount-content p:last-child {
}
.woocommerce-MyAccount-content p:last-child a {
}
.woocommerce-MyAccount-content p:last-child a:hover {
}

@media screen and (max-width: 768px){
	.woocommerce-MyAccount-navigation {
		padding: 50px 0 0;
	}
}

/**
 * Login
 */

.wrapper-form-login>div#customer_login {
	display: flex;
	flex-wrap: wrap;
	font-family: var(--font-family);
}
.wrapper-form-login>div#customer_login::before {
	display: none !important;
}
.wrapper-form-login>div#customer_login::after {
	display: none !important;
}
.wrapper-form-login>div>div {
	flex-basis: 350px;
	min-width: 50% !important;
	float: initial !important;
	max-width: initial;
}
.wrapper-form-login>div>div h2 {
	text-align: center;
	font-family: var(--font-family-featured);
	font-weight: bold;
	font-size: 40px;
	line-height: 45px;
	color: var(--main-text-color);
	margin-bottom: 0px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--main-text-color);
}
.wrapper-form-login>div>div form {
	padding: 20px !important;
	border: none !important;
	margin-top: 0 !important;
}
.wrapper-form-login>div>div form p {
	font-family: var(--font-family-text);
	font-weight: 300;
	font-size: 1rem;
	text-align: left;
	color: #171717;
}
.wrapper-form-login>div>div a {
	color: var(--link-text-color);
}
.wrapper-form-login>div>div form label {
	display: block !important;
	width: 100%;
}
.wrapper-form-login>div>div form span {
	width: 100%;
}
.wrapper-form-login>div>div form span.show-password-input {
	width: auto;
}
.wrapper-form-login>div>div form input {
	width: 100%;
	padding: 10px;
	border: 1px solid #462778;
}
.wrapper-form-login>div>div form label.woocommerce-form__label-for-checkbox {
}
.wrapper-form-login>div>div form input[type=checkbox] {
	width: auto;
}
.wrapper-form-login>div>div form button[type=submit] {
	border-radius: 0;
	background-size: 100% auto;
	color: #fff;
	background-color: var(--main-color);
	margin: 10px 0;
}
.wrapper-form-login>div>div form button[type=submit]::after {
	content: '';
}
.wrapper-form-login>div>div form button[type=submit]:hover {
	background-color: var(--secondary-color);
	color: #fff;
}

/**
 * Perdeu a Senha
 */
.wrapper-form-perdeu-senha {
	font-family: var(--font-family-text);
	font-weight: 300;
	font-size: 1rem;
	text-align: left;
	color: #171717;
}
.wrapper-form-perdeu-senha>div {
}
.wrapper-form-perdeu-senha>div h2 {
	text-align: center;
	font-family: var(--font-family-featured);
	font-weight: bold;
	font-size: 40px;
	line-height: 45px;
	color: var(--main-text-color);
	margin-bottom: 0px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--main-text-color);
}
.wrapper-form-perdeu-senha>div>p {
	font-family: var(--font-family-text);
	font-weight: 300;
	font-size: 1rem;
	text-align: left;
	color: #171717;
	margin-top: 30px;
}
.wrapper-form-perdeu-senha>div form {margin-top: 30px;}
.wrapper-form-perdeu-senha>div form p {
	font-family: var(--font-family-text);
	font-weight: 300;
	font-size: 1rem;
	text-align: left;
	color: #171717;
	margin-bottom: 30px;
}
.wrapper-form-perdeu-senha>div form p.woocommerce-form-row {
	width: 100%;
	margin: 0px 0 0;
}
.wrapper-form-perdeu-senha>div form p.woocommerce-form-row>span {
	width: 100%;
	display: block;
}
.wrapper-form-perdeu-senha>div form p.woocommerce-form-row label {
	display: block !important;
	width: 100%;
}
.wrapper-form-perdeu-senha>div form p.woocommerce-form-row input {
	width: 100%;
	padding: 10px;
	border: 1px solid #462778;
}
.wrapper-form-perdeu-senha>div form p.woocommerce-form-row button[type=submit] {
	border-radius: 0;
	background-size: 100% auto;
	color: #fff;
	background-color: var(--main-color);
	margin: 10px 0;
}
.wrapper-form-perdeu-senha>div form p.woocommerce-form-row button[type=submit]::after {
	content: '';
}
.wrapper-form-perdeu-senha>div form p.woocommerce-form-row button[type=submit]:hover {
	background-color: var(--secondary-color);
	color: #fff;
}

/**
 * Carrinho
 */
.wrapper-carrinho {
    margin-top: 40px;
}
.wrapper-carrinho>div {
}
.wrapper-carrinho>div .woocommerce-cart-form {
}
.wrapper-carrinho>div .woocommerce-cart-form table {
    border: none;
    margin: 0;
}
.wrapper-carrinho>div .woocommerce-cart-form table thead {
}
.wrapper-carrinho>div .woocommerce-cart-form table thead tr {
}
.wrapper-carrinho>div .woocommerce-cart-form table thead tr th {
	background-color: #f8f8f8;
	padding: 20px;
	color: #999;
	font-weight: 600;
	font-family: var(--font-family-featured);
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody {
	font-family: var(--font-family-featured);
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions {
	padding: 20px 00;
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions .coupon {
	display: flex;
	width: 50%;
	flex-basis: 300px;
	align-items: center;
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions .coupon label {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions .coupon input {
	width: 75%;
	border-radius: 0;
	margin-right: 10px;
	padding: 10px;
	background: #f8f8f8;
	border: none;
	outline: none;
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions .coupon button[type="submit"] {
	border-radius: 0;
	background-size: 100% auto;
	color: #fff;
	background-color: var(--secondary-color);
	margin: 10px 0;
	font-size: 1rem;
	width: 35%;
	text-align: center;
	padding: 15px;
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions .coupon button[type="submit"]:hover {
	background-color: var(--main-color);
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions>button[type="submit"] {
	border-radius: 0;
	background-size: 100% auto;
	color: #fff;
	background-color: var(--secondary-color);
	margin: 10px 0;
	font-size: 1rem;
	width: auto;
	text-align: center;
	padding: 15px 40px;
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr td.actions>button[type="submit"]:hover {
	background-color: var(--main-color);
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td {
	color: var(--main-text-color);
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-remove a {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-remove a:hover {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-thumbnail {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-thumbnail a {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-thumbnail a img {
	max-width: 100px;
	height: auto;
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-thumbnail a:hover {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-thumbnail a:hover img {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-name {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-name a {
	font-family: var(--font-family-featured);
	font-weight: 600;
	color: var(--main-text-color);
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-name a:hover {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-price {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-price span {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-price span bdi {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-price span bdi .woocommerce-Price-currencySymbol {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-quantity {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-quantity .quantity {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-quantity .quantity input {
    background: #f8f8f8;
    border: none;
    padding: 10px;
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-subtotal {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-subtotal span {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-subtotal span bdi {
}
.wrapper-carrinho>div .woocommerce-cart-form table tbody tr.cart_item td.product-subtotal span bdi .woocommerce-Price-currencySymbol {
}
.wrapper-carrinho>div .cart-collaterals {
    font-family: var(--font-family-text);
    margin-top: 50px;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals h2 {
	font-weight: normal;
	font-size: 25px;
	color: #171717;
	font-weight: 300;
	margin-bottom: 30px;
	color: var(--main-text-color);
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table {
    border: none;
    width: 100%;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody {}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.cart-subtotal {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.cart-subtotal th {
	background-color: #f8f8f8;
	padding: 25px 15px;
	color: #9f9f9f;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.cart-subtotal td {
	background-color: #fdfdfd;
	padding: 25px 15px;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.cart-subtotal td span {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.cart-subtotal td span bdi {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.cart-subtotal td span bdi .woocommerce-Price-currencySymbol {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals {}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals th {
	background-color: #f8f8f8;
	padding: 25px 15px;
	color: #9f9f9f;
	border: none;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td {
	background-color: #fdfdfd;
	padding: 25px 15px;
	border: none;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td ul {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td ul li {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td ul li input {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td ul li label {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td ul li label span {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td ul li label span bdi {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td ul li label span bdi .woocommerce-Price-currencySymbol {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-destination {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator>a {
	color: var(--main-color);
	display: block;
	margin: 20px 0;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator>a:hover {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field {
	padding: 0;
	margin-bottom: 20px;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field>select {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field>span.select2 {
	padding: 10px;
	background: #f8f8f8;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field>span.select2>span.selection {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field>span.select2>span.selection>span.select2-selection {
	border: none;
	background: #f8f8f8;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field>span.select2>span.selection>span.select2-selection>span.select2-selection__rendered {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field>span.select2>span.selection>span.select2-selection>span.select2-selection__arrow {
	top: 50%;
	transform: translateY(-50%);
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_country_field>span.select2>span.selection>span.select2-selection>span.select2-selection__arrow b {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field {
	padding: 0;
	margin-bottom: 20px;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field>span {
	width: 100%;
	display: block;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field>span span.select2 {
    padding: 10px;
    background: #f8f8f8;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field>span span.select2>span.selection {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field>span span.select2>span.selection>span.select2-selection {
	border: none;
	background: #f8f8f8;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field>span span.select2>span.selection>span.select2-selection>span.select2-selection__rendered {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field>span span.select2>span.selection>span.select2-selection>span.select2-selection__arrow {
	top: 50%;
	transform: translateY(-50%);
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_state_field>span span.select2>span.selection>span.select2-selection>span.select2-selection__arrow b {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_city_field {
	padding: 0;
	margin-bottom: 20px;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_city_field input {
	padding: 10px;
	background: #f8f8f8;
	border: none;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_postcode_field {
	padding: 0;
	margin-bottom: 20px;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_postcode_field input {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form #calc_shipping_postcode_field input {
	padding: 10px;
	background: #f8f8f8;
	border: none;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form p {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form p button[type=submit] {
	border-radius: 0;
	background-size: 100% auto;
	color: #fff;
	background-color: var(--main-color);
	margin: 10px 0;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.woocommerce-shipping-totals td .woocommerce-shipping-calculator .shipping-calculator-form p button[type=submit]:hover {
	background-color: var(--secondary-color);
	color: #fff;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.order-total {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.order-total th {
	background-color: #f8f8f8;
	padding: 25px 15px;
	color: #9f9f9f;
	border: none;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.order-total td {
    background-color: #fdfdfd;
    padding: 25px 15px;
    border: none;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.order-total td span {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.order-total td span bdi {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals table tbody tr.order-total td span bdi .woocommerce-Price-currencySymbol {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals .wc-proceed-to-checkout {
}
.wrapper-carrinho>div .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
	border-radius: 0;
	background-size: 100% auto;
	color: #fff;
	background-color: var(--secondary-color);
	margin: 10px 0;
	font-size: 22px;
	width: 100%;
	text-align: center;
}
.wrapper-carrinho>div .cart-collaterals .cart_totals .wc-proceed-to-checkout a:hover {
	background-color: var(--main-color);
}

/**
 * Checkout
 */
.woocommerce-form-login {background: #f8f8f8;border: none !important;border-radius: 0 !important;}
.woocommerce-form-login p {padding: 0 !important;margin-bottom: 16px !important;}
.woocommerce-form-login p label {min-width: 200px;float: none !important;}
.woocommerce-form-login p label span {
}
.woocommerce-form-login p input {padding: 10px;background: #fff;border: none;}
.woocommerce-form-login p button[type=submit] {margin: 0 !important;border-radius: 0;background-size: 100% auto;color: #fff;background-color: var(--secondary-color);font-size: 1.2rem;width: auto;text-align: center;float: none !important;display: block;}
.woocommerce-form-login p button[type=submit]:hover {background-color: var(--main-color);color: #fff;}
.woocommerce-form-login p.lost-password {
}
.woocommerce-form-login p.lost-password a {
}
.woocommerce-form-login p.lost-password a:hover {
}
.woocommerce-form-coupon {background: #f8f8f8;border: none !important;border-radius: 0 !important;}
.woocommerce-form-coupon p {width: 50% !important;padding: 0 !important;}
.woocommerce-form-coupon p input {padding: 10px;background: #fff;border: none;width: 100% !important;}
.woocommerce-form-coupon p button[type=submit] {border-radius: 0;background-size: 100% auto;color: #fff;background-color: var(--secondary-color);font-size: 1.2rem;width: auto;text-align: center;float: none !important;}
.woocommerce-form-coupon p button[type=submit]:hover {background-color: var(--main-color);color: #fff;}
.woocommerce-checkout {
}
.woocommerce-checkout>div {
	width: 52.9411764706% !important;
	float: left;
	margin-right: 5.8823529412%;
}
.woocommerce-checkout>div>div {
	width: 100% !important;
	flex-basis: 100%;
	max-width: initial;
	padding: 0;
}
.woocommerce-checkout>div>div .woocommerce-billing-fields {
}
.woocommerce-checkout>div>div .woocommerce-billing-fields h3 {
	font-size: 25px;
	font-weight: 300;
	margin-bottom: 30px;
	color: var(--main-text-color);
	font-family: var(--font-family-featured);
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p {}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p label {
	display: block !important;
	width: 100%;
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p label abbr {
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper {display: block;width: 100%;}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper input {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper select {padding: 10px;background: #f8f8f8;border: none;}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper select option {
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper .select2 {padding: 10px;background: #f8f8f8;}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection {
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection {border: none;background: #f8f8f8;}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__rendered {
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__arrow {top: 50%;transform: translateY(-50%);}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__arrow b {
}
.woocommerce-checkout>div>div .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p .woocommerce-input-wrapper strong {padding: 10px;background: #f8f8f8;border: none;width: 100%;display: block;}
.woocommerce-checkout>div>div .woocommerce-shipping-fields {
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields h3 {margin: 20px 0;}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address {
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p {
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p label {display: block !important;width: 100%;}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper {display: block;width: 100%;}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper strong {
	padding: 10px;background: #f8f8f8;border: none;width: 100%;display: block;
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper input {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper select {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper select option {
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper .select2 {
	padding: 10px;background: #f8f8f8;
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper .select2 .selection {
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper .select2 .selection .select2-selection {
	border: none;background: #f8f8f8;
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__rendered {
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__arrow {
	top: 50%;transform: translateY(-50%);
}
.woocommerce-checkout>div>div .woocommerce-shipping-fields .shipping_address p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__arrow b {
}
.woocommerce-checkout>div>div .woocommerce-additional-fields {
}
.woocommerce-checkout>div>div .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper {
}
.woocommerce-checkout>div>div .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper {
}
.woocommerce-checkout>div>div .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper p {
}
.woocommerce-checkout>div>div .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper p label {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);display: block;width: 100%;font-family: var(--font-family-featured);}
.woocommerce-checkout>div>div .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper p .woocommerce-input-wrapper {width: 100%;}
.woocommerce-checkout>div>div .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper p .woocommerce-input-wrapper textarea {padding: 10px;background: #f8f8f8;border: none;width: 100%;height: 200px;}
.woocommerce-checkout #order_review_heading {width: 41.1764705882%;float: right;margin-right: 0;clear: right;font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);}
.woocommerce-checkout .woocommerce-checkout-review-order {width: 41.1764705882% !important;float: right;margin-right: 0;clear: right;}
.woocommerce-checkout .woocommerce-checkout-review-order table {border: none !important;margin-bottom: 60px !important;}
.woocommerce-checkout .woocommerce-checkout-review-order table thead {
}
.woocommerce-checkout .woocommerce-checkout-review-order table thead tr {
}
.woocommerce-checkout .woocommerce-checkout-review-order table thead tr th {background-color: #f8f8f8;padding: 20px;color: #999;font-weight: 600;font-family: var(--font-family-featured);}
.woocommerce-checkout .woocommerce-checkout-review-order table thead tr th.product-name {width: 50%;overflow-wrap: anywhere;word-break: break-word;-ms-word-break: break-all;}
.woocommerce-checkout .woocommerce-checkout-review-order table thead tr th.product-total {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tbody {border: none;}
.woocommerce-checkout .woocommerce-checkout-review-order table tbody tr {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tbody tr td {border: none;padding: 20px;}
.woocommerce-checkout .woocommerce-checkout-review-order table tbody tr td strong {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tbody tr td.product-name {}
.woocommerce-checkout .woocommerce-checkout-review-order table tbody tr td.product-total {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr th {background-color: #f8f8f8;border: none;padding: 20px;}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td {
    border: none;
    padding: 20px;
    font-weight: 400;
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td .woocommerce-Price-amount {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td .woocommerce-Price-amount bdi {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td .woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td ul {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td ul li {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td ul li label {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td ul li label .woocommerce-Price-amount {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td ul li label .woocommerce-Price-amount bdi {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td ul li label .woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td ul li input {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td strong {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td strong>.woocommerce-Price-amount {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td strong>.woocommerce-Price-amount bdi {
}
.woocommerce-checkout .woocommerce-checkout-review-order table tfoot tr td strong>.woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment {}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods {margin: 0 !important;padding: 0 !important;background: #fff;border: none;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li {padding-bottom: 0;border-bottom: 0;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li input {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li label {display: flex;padding: 20px;cursor: pointer;font-size: 25px;font-weight: 300;color: var(--main-text-color);font-family: var(--font-family-featured);align-items: center;justify-content: space-between;background: #f8f8f8;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li label img {float: right;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box {background: #f8f8f8;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box::before {
	display: none;
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset ul {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset ul li {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset ul li label {font-size: 1rem !important;font-weight: 500 !important;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset ul li input {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset ul li.active {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset ul li.active label {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset ul li.active input {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form p {float: none;width: 100%;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form p label {width: auto;margin-left: 0;display: block;line-height: 19px;padding: 0;font-size: 1rem;margin-bottom: 15px;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form p label small {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form p label span {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form p input {padding: 10px;background: #fff;border: none;width: 100%;font-size: 1rem !important;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form p select {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods .payment_box fieldset .pagseguro-method-form p select option {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order {border: none;background: #f8f8f8;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order .woocommerce-terms-and-conditions-wrapper {margin-bottom: 20px;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order .woocommerce-terms-and-conditions-wrapper p {line-height: 25px;font-size: 0.9rem;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order .woocommerce-terms-and-conditions-wrapper p a {color: var(--main-color);font-size: .9rem;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order .woocommerce-terms-and-conditions-wrapper p a:hover {
}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order button[type=submit] {border-radius: 0;background-size: 100% auto;color: #fff;background-color: var(--secondary-color);margin: 10px 0;font-size: 22px;width: 100%;text-align: center;float: none !important;}
.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order button[type=submit]:hover {background-color: var(--main-color);}

/**
 * Order Received
 */
.woocommerce-order {
}
.woocommerce-order .woocommerce-notice {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);}
.woocommerce-order .woocommerce-order-overview {margin: 0 !important;justify-content: space-between;padding: 20px;border: 1px dashed;margin-bottom: 50px !important;display: flex;flex-wrap: wrap;}
.woocommerce-order .woocommerce-order-overview::before {
	display: none !important;
}
.woocommerce-order .woocommerce-order-overview li {float: none !important;margin-bottom: 15px;padding-bottom: 16px;border-bottom: 1px dashed;border-right: none !important;width: 49%;margin-right: 0 !important;}
.woocommerce-order .woocommerce-order-overview li strong {
}
.woocommerce-order .woocommerce-order-details {
}
.woocommerce-order .woocommerce-order-details h2 {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);}
.woocommerce-order .woocommerce-order-details table {border: none !important;margin-bottom: 60px !important;}
.woocommerce-order .woocommerce-order-details table thead {
}
.woocommerce-order .woocommerce-order-details table thead tr {
}
.woocommerce-order .woocommerce-order-details table thead tr th {width: 50%;overflow-wrap: anywhere;word-break: break-word;-ms-word-break: break-all;background-color: #f8f8f8;padding: 20px;color: #999;font-weight: 600;font-family: var(--font-family-featured);}
.woocommerce-order .woocommerce-order-details table thead tr th.woocommerce-table__product-name {
}
.woocommerce-order .woocommerce-order-details table thead tr th.woocommerce-table__product-table {
}
.woocommerce-order .woocommerce-order-details table tbody {
}
.woocommerce-order .woocommerce-order-details table tbody tr {
}
.woocommerce-order .woocommerce-order-details table tbody tr td {border: none;padding: 20px;}
.woocommerce-order .woocommerce-order-details table tbody tr td a {color: var(--link-text-color);}
.woocommerce-order .woocommerce-order-details table tbody tr td a:hover {
}
.woocommerce-order .woocommerce-order-details table tbody tr td strong {
}
.woocommerce-order .woocommerce-order-details table tfoot {
}
.woocommerce-order .woocommerce-order-details table tfoot tr {
}
.woocommerce-order .woocommerce-order-details table tfoot tr th {
    background-color: #f8f8f8;
    border: none;
    padding: 20px;
}
.woocommerce-order .woocommerce-order-details table tfoot tr td {border: none;}
.woocommerce-order .woocommerce-order-details table tfoot tr td .woocommerce-Price-amount {
}
.woocommerce-order .woocommerce-order-details table tfoot tr td .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
}
.woocommerce-order .woocommerce-order-details table tfoot tr td .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
}
.woocommerce-order .woocommerce-order-details table tfoot tr td .shipped_via {
}
.woocommerce-order .woocommerce-customer-details {
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns {}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column {max-width: initial;}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column h2 {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column address {background-color: #f8f8f8;border: 1px dashed;padding: 40px;border-radius: 0;line-height: 28px;cursor: not-allowed;}
/*.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--1 {
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--1 h2 {
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--1 address {
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--1 address {
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--2 {
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--2 h2 {
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--2 address {
}*/

/**
 * Orders
 */
.woocommerce-orders-table {border: none !important;border-radius: 0 !important;}
.woocommerce-orders-table thead {
}
.woocommerce-orders-table thead tr {
}
.woocommerce-orders-table thead tr th:first-child {width: 10%;}
.woocommerce-orders-table thead tr th {
	width: auto !important;
	overflow-wrap: anywhere;
	word-break: break-word;
	-ms-word-break: break-all;
	background-color: #f8f8f8;
	padding: 10px !important;
	color: #999;
	font-weight: 600 !important;
	font-family: var(--font-family-featured);
}
.woocommerce-orders-table thead tr th span {
}
.woocommerce-orders-table tbody {
}
.woocommerce-orders-table tbody tr {
}
.woocommerce-orders-table tbody tr td {border: none;width: auto;overflow-wrap: anywhere;word-break: break-word;-ms-word-break: break-all;padding: 10px !important;color: #999;font-weight: 300 !important;font-family: var(--font-family-featured);}
.woocommerce-orders-table tbody tr td a {
	color: var(--link-text-color);
}
.woocommerce-orders-table tbody tr td a.button {border-radius: 0;background-size: 100% auto;color: #fff;background-color: var(--secondary-color);margin: 10px 0;font-size: 1rem;width: 100%;text-align: center;float: none !important;}
.woocommerce-orders-table tbody tr td a.button:hover {background-color: var(--main-color);color: #fff;}

/**
 * Single Order
 */
.woocommerce-order-details {margin-top: 30px;margin-bottom: 0 !important;}
.woocommerce-order-details h2 {
	font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);
}
.woocommerce-order-details table {
	border: none !important;
	margin-bottom: 30px !important;
}
.woocommerce-order-details table thead {
}
.woocommerce-order-details table thead tr {
}
.woocommerce-order-details table thead tr th {
	width: 50%;overflow-wrap: anywhere;word-break: break-word;-ms-word-break: break-all;background-color: #f8f8f8;padding: 20px;color: #999;font-weight: 600;font-family: var(--font-family-featured);
}
.woocommerce-order-details table thead tr th.product-name {
}
.woocommerce-order-details table thead tr th.product-total {
}
.woocommerce-order-details table tbody {
}
.woocommerce-order-details table tbody tr {
}
.woocommerce-order-details table tbody tr td {
	border: none;padding: 20px;
}
.woocommerce-order-details table tbody tr td a {
	color: var(--link-text-color);
}
.woocommerce-order-details table tbody tr td strong {
}
.woocommerce-order-details table tbody tr td .woocommerce-Price-amount {
}
.woocommerce-order-details table tbody tr td .woocommerce-Price-amount bdi {
}
.woocommerce-order-details table tbody tr td .woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
}
.woocommerce-order-details table tfoot {
}
.woocommerce-order-details table tfoot tr {
}
.woocommerce-order-details table tfoot tr th {
	background-color: #f8f8f8;
	border: none !important;
	padding: 20px;
}
.woocommerce-order-details table tfoot tr td {
	border: none !important;
}
.woocommerce-order-details table tfoot tr td .woocommerce-Price-amount {
}
.woocommerce-order-details table tfoot tr td .woocommerce-Price-amount bdi {
}
.woocommerce-order-details table tfoot tr td .woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
}
.woocommerce-order-details table tfoot tr td .shipped_via {
}
.woocommerce-MyAccount-content .woocommerce-customer-details {
}
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {}
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns .woocommerce-column {max-width: initial;width: 100%;margin-bottom: 30px;}
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns .woocommerce-column h2 {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);}
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns .woocommerce-column address {background-color: #f8f8f8;border: 1px dashed;padding: 40px;border-radius: 0;line-height: 28px;cursor: not-allowed;}

/**
 * Addresses
 */
.woocommerce-Addresses {margin-top: 20px;}
.woocommerce-Addresses .woocommerce-Address {max-width: initial;width: 100% !important;margin-bottom: 50px;padding: 0 !important;}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {display: flex;justify-content: space-between;align-items: center;}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h3 {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);text-align: center;}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a {color: var(--link-text-color);display: block;text-align: center;margin-bottom: 10px;position: relative;text-indent: -999999px;width: 20px;height: 20px;}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a::before {
    font-family: 'FontAwesome';
    content: "\f044";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    text-indent: 0;
    transform: translate(-50%, -50%);
}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a:hover {
}
.woocommerce-Addresses .woocommerce-Address address {background-color: #f8f8f8;border: 1px dashed;padding: 40px;border-radius: 0;line-height: 28px;}

/**
 * Edit Address
 */
.woocommerce-MyAccount-content form {
}
.woocommerce-MyAccount-content form h3 {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);text-align: center;}
.woocommerce-MyAccount-content form .woocommerce-address-fields {
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p {
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p label {display: block !important;width: 100%;}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper {display: block;width: 100%;}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper strong {
	padding: 10px;background: #f8f8f8;border: none;width: 100%;display: block;
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper input {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper select {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper select {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper select option {
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper .select2 {
	padding: 10px;background: #f8f8f8;
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection {
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection {
	border: none;background: #f8f8f8;
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__rendered {
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__arrow {
	top: 50%;transform: translateY(-50%);
}
.woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p .woocommerce-input-wrapper .select2 .selection .select2-selection .select2-selection__arrow b {
}
.woocommerce-MyAccount-content form .woocommerce-address-fields p button[type=submit] {border-radius: 0;background-size: 100% auto;color: #fff;background-color: var(--secondary-color);margin: 10px 0;font-size: 22px;width: 100%;text-align: center;float: none !important;}
.woocommerce-MyAccount-content form .woocommerce-address-fields p button[type=submit]:hover {background-color: var(--main-color);}

/**
 * Edit Account
 */
.woocommerce-MyAccount-content .edit-account {
}
.woocommerce-MyAccount-content .edit-account p {
}
.woocommerce-MyAccount-content .edit-account p label {
}
.woocommerce-MyAccount-content .edit-account p label span {
}
.woocommerce-MyAccount-content .edit-account p label strong {
}
.woocommerce-MyAccount-content .edit-account p input {
}

.woocommerce-MyAccount-content .edit-account p strong {
	padding: 10px;background: #f8f8f8;border: none;width: 100%;display: block;
}
.woocommerce-MyAccount-content .edit-account p input {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-MyAccount-content .edit-account p select {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-MyAccount-content .edit-account p select {padding: 10px;background: #f8f8f8;border: none;width: 100%;}
.woocommerce-MyAccount-content .edit-account p select option {
}
.woocommerce-MyAccount-content .edit-account p .select2 {
	padding: 10px;background: #f8f8f8;
}
.woocommerce-MyAccount-content .edit-account p .select2 .selection {
}
.woocommerce-MyAccount-content .edit-account p .select2 .selection .select2-selection {
	border: none;background: #f8f8f8;
}
.woocommerce-MyAccount-content .edit-account p .select2 .selection .select2-selection .select2-selection__rendered {
}
.woocommerce-MyAccount-content .edit-account p .select2 .selection .select2-selection .select2-selection__arrow {
	top: 50%;transform: translateY(-50%);
}
.woocommerce-MyAccount-content .edit-account p .select2 .selection .select2-selection .select2-selection__arrow b {
}
.woocommerce-MyAccount-content .edit-account fieldset {margin-top: 40px;}
.woocommerce-MyAccount-content .edit-account fieldset legend {font-size: 25px;font-weight: 300;margin-bottom: 30px;color: var(--main-text-color);font-family: var(--font-family-featured);text-align: center;}
.woocommerce-MyAccount-content .edit-account fieldset p {
}
.woocommerce-MyAccount-content .edit-account fieldset p label {display: block;width: 100%;}
.woocommerce-MyAccount-content .edit-account fieldset p .password-input {display: block;width: 100%;}
.woocommerce-MyAccount-content .edit-account fieldset p .password-input input {
}
.woocommerce-MyAccount-content .edit-account fieldset p .password-input span {
}
.woocommerce-MyAccount-content .edit-account p button[type=submit] {border-radius: 0;background-size: 100% auto;color: #fff;background-color: var(--secondary-color);margin: 10px 0;font-size: 22px;width: 100%;text-align: center;float: none !important;}
.woocommerce-MyAccount-content .edit-account p button[type=submit]:hover {background-color: var(--main-color);}

/**
 * Custom Theme
 */
.woocommerce-title {
}
.woocommerce-title h1 {
	font-size: 40px;
}
.woocommerce-breadcrumbs {margin: 10px 0;}
.woocommerce-breadcrumbs>div {
}
.woocommerce-breadcrumbs>div>div {
}
.woocommerce-breadcrumbs>div>div>ol {
	display: flex;
	justify-content: flex-end;
}
.woocommerce-breadcrumbs>div>div>ol li {
	font-size: 0.8rem;
}
.woocommerce-breadcrumbs>div>div>ol li.active {
	color: var(--link-text-color);
}
.woocommerce-breadcrumbs>div>div>ol li a {
	font-size: 0.8rem;
	color: var(--nav-menu-color);
}
.woocommerce-breadcrumbs>div>div>ol li a {
}
.wc-backward {
	display: none !important;
}