@charset "UTF-8";

:root {
	--accent-color: #ff5023;
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 100;
	src: url(Barlow-Thin.woff2) format("woff2"), url(Barlow-Thin.woff) format("woff"), url(Barlow-Thin.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 200;
	src: url(Barlow-ExtraLight.woff2) format("woff2"), url(Barlow-ExtraLight.woff) format("woff"), url(Barlow-ExtraLight.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 300;
	src: url(Barlow-Light.woff2) format("woff2"), url(Barlow-Light.woff) format("woff"), url(Barlow-Light.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 400;
	src: url(Barlow-Regular.woff2) format("woff2"), url(Barlow-Regular.woff) format("woff"), url(Barlow-Regular.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 500;
	src: url(Barlow-Medium.woff2) format("woff2"), url(Barlow-Medium.woff) format("woff"), url(Barlow-Medium.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 600;
	src: url(Barlow-SemiBold.woff2) format("woff2"), url(Barlow-SemiBold.woff) format("woff"), url(Barlow-SemiBold.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 700;
	src: url(Barlow-Bold.woff2) format("woff2"), url(Barlow-Bold.woff) format("woff"), url(Barlow-Bold.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 800;
	src: url(Barlow-ExtraBold.woff2) format("woff2"), url(Barlow-ExtraBold.woff) format("woff"), url(Barlow-ExtraBold.ttf) format("truetype")
}

@font-face {
	font-family: Barlow;
	font-style: normal;
	font-display: swap;
	font-weight: 900;
	src: url(Barlow-Black.woff2) format("woff2"), url(Barlow-Black.woff) format("woff"), url(Barlow-Black.ttf) format("truetype")
}

.text--primary {
	color: var(--accent-color)
}

.text--secondary {
	color: #37394f
}

.text--tertiary {
	color: #4747b5
}

.text--danger {
	color: #ef464d
}

.text--green {
	color: #38ae93
}

.text--muted {
	color: #a7b8c9
}

.fw-1 {
	font-weight: 100
}

.fw-2 {
	font-weight: 200
}

.fw-3 {
	font-weight: 300
}

.fw-4 {
	font-weight: 400
}

.fw-5 {
	font-weight: 500
}

.fw-6 {
	font-weight: 600
}

.fw-7 {
	font-weight: 700
}

.fw-8 {
	font-weight: 800
}

.fw-9 {
	font-weight: 900
}

.uppercase {
	text-transform: uppercase
}

.text-center {
	text-align: center
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: Barlow, sans-serif;
	font-size: 16px;
	color: #37394f;
	background-color: #e8e8e8;
    background-image: url(bg.png);
	background-attachment: fixed;
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
	body {
		background-color: #e8e8e8;
	}
}

.alert {
	padding: 12px;
	margin: 12px 0;
	border-radius: 3px;
	color: #a7b8c9;
	border: 1px solid #c7d2dc;
	background: #e6ebf0
}

.alert--success {
	color: #38ae93;
	border: 1px solid #78d4bf;
	background: #d9f3ed
}

.alert--danger {
	color: #ef464d;
	border: 1px solid #f7a4a7;
	background: #fdeaeb
}

.badge {
	font-size: .7rem;
	font-weight: 600;
	color: #fff;
	background: #37394f;
	padding: 5px 6px;
	border-radius: .3rem;
	white-space: nowrap
}

.badge:hover {
	text-decoration: none
}

.btn {
	color: #fff;
	background-color: var(--accent-color);
	font-weight: 400;
	font-family: inherit;
	font-size: 14px;
	padding: 10px;
	border: 2px solid var(--accent-color);
	border-radius: 5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .3s ease
}

.btn.loading {
	position: relative;
	color: transparent;
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
	opacity: .5;
	transition: all .2s ease
}

@keyframes spinner {
	to {
		transform: rotate(1turn)
	}
}

.btn.loading:hover {
	background-image: none
}

.btn.loading:after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	margin-left: -12px;
	border-radius: 50%;
	border: 3px solid #fff;
	border-top-color: transparent;
	animation: spinner 1s linear infinite
}

.btn--close {
	background-color: initial;
	border: none;
	min-height: 32px;
	min-width: 32px;
	background-image: url(x.7a0fd885a8bc294de9c8.svg);
	background-size: 32px;
	background-position: top
}

.btn--close,
.btn--icon {
	background-repeat: no-repeat
}

.btn--icon {
	color: #37394f;
	border: 1px solid #37394f;
	background-color: #fff;
	text-transform: none;
	background-position: 12px;
	padding: 10px 15px 10px 15px
}

.btn--icon--delivery {
	background-size: 32px;
	background-image: url(delivery.svg)
}

.btn--icon--delivery.selected {
	color: var(--accent-color);
	background-color: #37394f;
	background-image: url(delivery.svg)
}

.btn--icon--pickup {
	background-size: 32px;
	background-image: url(pickup.svg)
}

.btn--icon--pickup.selected {
	color: #fff;
	background-color: #37394f;
	background-image: url(pickup.svg)
}

.btn--secondary {
	border-color: #37394f;
	background-color: #37394f
}

.btn--outline {
	color: var(--accent-color);
	background: none;
	border-color: var(--accent-color)
}

.btn--cards {
	height: 33px;
	width: 33px;
	border: none;
	background-image: url(cards-white.65129c203323dbbca612.svg);
	box-shadow: 0 0 5px 2px rgba(55, 57, 79, .2)
}

.btn--cards,
.btn--cards.selected {
	background-color: initial;
	background-size: 33px
}

.btn--cards.selected {
	background-image: url(cards.c58338a36d710c3ab78b.svg)
}

.btn--list {
	height: 33px;
	width: 33px;
	border: none;
	background-image: url(list-white.b45baaa843dcf85f62c0.svg);
	box-shadow: 0 0 5px 2px rgba(55, 57, 79, .2)
}

.btn--list,
.btn--list.selected {
	background-color: initial;
	background-size: 33px
}

.btn--list.selected {
	background-image: url(list.2dfe812f70a993b997a7.svg)
}

.btn--minus {
	height: 25px;
	width: 25px;
	border: none;
	background-color: initial;
	background-image: url(svgexport-3.svg);
	background-size: 25px
}

.btn--minus--sm {
	height: 20px;
	width: 20px;
	background-size: 20px
}

.btn--minus:disabled {
	opacity: .3;
	background: none!important;
	background-size: 20px!important;
	background-image: url(svgexport-3.svg);
}

.btn--plus {
	height: 25px;
	width: 25px;
	border: none;
	background-color: initial;
	background-image: url(svgexport-2.svg);
	background-size: 25px;
}

.btn--plus--sm {
	height: 20px;
	width: 20px;
	background-size: 20px
}

.btn--plus--sm:disabled {
	opacity: .3;
	background: none!important;
	background-size: 20px!important;
	background-image: url(svgexport-2.svg);
}

.btn:disabled {
	background: #dee2e6;
	border-color: #dee2e6;
	cursor: not-allowed
}

.btn:focus {
	outline: 0
}

@media screen and (max-width:768px) {
	.btn--icon {
		padding: 63px 25px 17px;
		width: 100%
	}
	.btn--icon--delivery,
	.btn--icon--pickup {
		background-position: center 20px
	}
	.btn--icon--cards,
	.btn--icon--list {
		width: 35px;
		padding: 10px
	}
	.btn--minus--sm,
	.btn--plus--sm {
		height: 24px;
		width: 24px;
		background-size: 24px
	}
	.btn--minus:disabled,
	.btn--plus:disabled {
		background-size: 24px!important
	}
}

.card {
	padding: 20px 10px;
	margin: 20px 0;
	background: #fff;
	box-shadow: 0 0 18px 2px rgba(46, 46, 46, .2)
}

.card--sm {
	padding: 10px;
	margin: 10px 0
}

.floating-button {
	position: fixed;
	display: none;
	bottom: 20px;
	width: 50%;
	margin: 0 auto;
	left: 0;
	right: 0;
	text-transform: none;
	font-weight: 500;
	box-shadow: 0 4px 8px 0 #869099
}

@media screen and (max-width:768px) {
	.floating-button {
		display: block
	}
}

form {
	margin: 30px 0
}

form h2 {
	margin-bottom: 0
}

form .form-group {
	padding-top: 20px
}

form .form-group>* {
	display: block;
	width: 100%
}

form .form-group label {
	font-size: 13px;
	padding-bottom: 8px
}

form .form-group input {
	padding-bottom: 8px
}

form .form-group .ng-invalid:not(form).ng-touched.ng-dirty {
	border-bottom: 1px solid #ef464d
}

input {
	font-size: 14px;
	background: none;
	padding-bottom: 3px;
	border: none;
	border-bottom: 1.2px solid #e8e8e8
}

input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 15px;
	height: 15px;
	padding: 3px;
	background-clip: content-box;
	border: 1px solid #37394f;
	border-radius: 50%
}

input[type=radio]:checked {
	background-color: #37394f
}

input::placeholder {
	color: rgba(55, 57, 79, .8);
	font-style: italic
}

input:focus {
	outline: 0
}

input.search {
	padding-left: 23px;
	background-image: url(svgexport-1.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	color: #000;
	width: 100%;
}

select {
	font-size: 14px;
	color: #000;
	border-radius: 6px;
	padding: 10px;
	cursor: pointer;
	background: #f7f9fa
}

select:focus {
	outline: 0
}

select .separator {
	font-size: 1px
}

textarea {
	border: none;
	border-bottom: 1.2px solid #37394f;
	padding: 1px 2px 8px;
	max-width: 100%;
	resize: none;
	overflow-y: hidden
}

textarea:focus {
	outline: 0
}

textarea::-webkit-resizer {
	display: none
}

@media screen and (max-width:768px) {
	form {
		margin: 30px 0
	}
	form .form-group input {
		font-size: 14px
	}
}

hr {
	border: .1px solid #37394f;
	margin: 14px 0
}

a {
	text-decoration: none;
	color: var(--accent-color);
	font-weight: 500;
	align-self: center;
	cursor: pointer
}

a[disabled] {
	opacity: .4;
	pointer-events: none
}

a:hover {
	text-decoration: underline
}

ul {
	list-style: none;
	padding-left: 10px
}

ul li {
	position: relative;
	font-size: 16px;
	font-weight: 300;
	padding-left: 20px;
	margin-bottom: 10px
}

ul li:before {
	position: absolute;
	left: 0;
	top: -5px;
	color: var(--accent-color);
	font-size: 22px
}

ul li.check:before {
	content: "✓"
}

ul li.disc:before {
	content: "•"
}

::-webkit-scrollbar {
	width: 16px
}

::-webkit-scrollbar,
::-webkit-scrollbar-track {
	background-color: #fff
}

::-webkit-scrollbar-thumb {
	background-color: #a7b8c9;
	border-radius: 16px;
	border: 4px solid #fff
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-color)
}

::-webkit-scrollbar-button {
	display: none
}

.navigation {
	display: flex;
	justify-content: flex-end;
	margin: 15px 0
}

.navigation .btn {
	margin-left: 15px
}

@media screen and (max-width:768px) {
	.navigation {
		flex-direction: column;
		justify-content: center;
		margin: 5px 0
	}
	.navigation .btn {
		margin: 5px 0;
		width: 100%
	}
}

.modal {
	background: rgba(55, 57, 79, .4);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: 8px
}

.modal__content-wrapper {
	background: #fff;
	width: 600px;
	padding: 20px;
	border-radius: 15px
}

.modal__content-wrapper .modal__header {
	display: grid;
	grid-template-columns: 1fr auto
}

.modal__content-wrapper .modal__header h2 {
	color: var(--accent-color);
	font-weight: 800
}

.modal__content-wrapper .modal__body {
	max-height: 70vh;
	overflow-y: auto;
	padding: 0 10px 0 0
}

.modal__content-wrapper .modal__body h3 {
	margin: 0
}

.modal__content-wrapper .modal__body h4 {
	font-size: 17px;
	margin-bottom: 5px;
	color: var(--accent-color)
}

.modal__content-wrapper .modal__body form {
	margin-top: 0
}

.modal__content-wrapper .modal__body .productGroups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 40px
}

.modal__content-wrapper .modal__body .productGroups .quantitySelection {
	display: grid;
	grid-template-columns: 10px 1fr auto;
	grid-column-gap: 10px;
	margin: 4px 0
}

.modal__content-wrapper .modal__body .productGroups .quantitySelection .buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 10px;
	align-content: flex-start
}

.modal__content-wrapper .modal__body .productGroups .quantitySelection .details {
	font-size: 18px
}

.modal__content-wrapper .modal__body .productGroups .quantitySelection .details>* {
	display: block
}

.modal__content-wrapper .modal__body .productGroups .quantitySelection .details .description {
	font-size: .8em;
	font-style: italic;
	margin: 3px 0 0
}

.modal__content-wrapper .modal__body .productGroups .quantitySelection .quantity {
	font-size: 17px;
	color: var(--accent-color);
	font-weight: 700
}

.modal__content-wrapper .modal__body .productGroups .quantitySelection.disabled .detail,
.modal__content-wrapper .modal__body .productGroups .quantitySelection.disabled .quantity {
	color: #a7b8c9
}

.modal__content-wrapper .modal__body .quantityMessage p {
	font-style: italic;
	font-size: 14px;
	margin: 8px 0
}

.modal__content-wrapper .modal__footer {
	display: flex;
	justify-content: center;
	margin-top: 10px
}

@media screen and (max-width:768px) {
	.modal {
		padding: 6px
	}
	.modal__content-wrapper {
		padding: 14px;
		width: 100%
	}
	.modal__content-wrapper .modal__body .productGroups {
		grid-template-columns: 1fr
	}
}

@media screen and (max-width:768px) and (orientation:landscape) {
	.modal__content-wrapper .modal__body {
		max-height: 50vh
	}
}

app-validate-form-elem p {
	font-size: 13px;
	margin: 8px 0 0
}

.app {
	max-width: 1100px;
	margin: 30px auto
}

.app .header {
	display: grid;
	grid-template-columns: 2fr 1fr;	
	grid-column-gap: 20px;
	align-items: center;
	text-align: left;
	margin-bottom: 10px;
}

.app .header h2 {
	font-size: 32px;
	font-weight: 900;
	margin: 0
}

.app .header .toggle-contact {
	display: none;
	margin: 5px 0;
	cursor: pointer
}

.app .header .toggle-contact span {
	display: block
}

.app .header .header-logo{
	padding: 10px;
}

.app .header .contact {
	display: grid;
	grid-gap: 10px 20px;
	grid-template-columns: auto auto auto;
	align-items: center;
    background: var(--accent-color);
    padding: 10px 20px;
    border-radius: 13px;
    color: #fff;
}

.app .header .contact img {
	height: 15px;
	min-width: 20px;
	vertical-align: middle
}

.app .header .contact span {
	margin-left: 7px;
	vertical-align: middle
}

.app .content {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-row-gap: 20px
}

.app .carousel {
	height: 150px;
}

.app .carousel .carousel-inner {
	height: 150px;
	border-radius: 15px;
	background-color: #fff;
}

.app .carousel .carousel-inner .carousel-item{
	height: 150px;
	width: 100%;
}

.app .content>* {
	border-radius: 20px;
	box-shadow: 0 3px 6px 0 rgba(55, 57, 79, .16);
	background-color: #fff;
	padding: 5px 20px;
	overflow: hidden
}

@media screen and (max-width:768px) {
	.app .header {
		grid-template-columns: 1fr
	}
	.app .header h2 {
		font-size: 25px
	}
	.app .header .toggle-contact {
		display: grid;
		grid-template-columns: 1fr auto
	}
	.app .header .toggle-contact img {
		transition: transform .3s ease
	}
	.app .header .contact {
		grid-template-columns: 1fr;
		max-height: 150px;
		overflow: hidden;
		transition: all .3s ease;
		margin-top: 10px;
	}
	.app .header .contact div {
		padding: 3px 0;
		display: flex
	}
	.app .header.showContactMobile .toggle-contact img {
		transform: rotate(-90deg)
	}
	.app .header.showContactMobile .contact {
		padding-top: 10px;
		max-height: 50vh
	}
	.app .content {
		grid-template-columns: 1fr
	}
	.app .content>* {
		padding: 5px 10px
	}
}

.menu .products__header {
	display: grid;
	grid-template-columns: 1fr 1fr ;
	grid-column-gap: 20px;
	margin-top: 10px
}

.menu .products__header .search-box {
	position: relative;
	align-self: end
}

.menu .products__header .search-box .clear {
	position: absolute;
	margin-left: -12px;
	bottom: 2px;
	font-style: normal;
	font-size: 2em;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer
}

.menu .products__header select {
	margin-right: 10px;
	padding-right: 20px
}

.menu .products__header select.expand {
	margin-right: 0;
	grid-column: 2/4
}

.menu .products__header .view {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 5px;
	justify-content: center
}

.menu .products__body {
	max-height: 60vh;
	overflow-y: auto;
	margin: 10px 0 30px
}

.order__products{
	max-height: 60vh;
	overflow-y: auto;
	overflow-x: hidden;
}

.menu .products__body a.category {
	display: inline-block;
	margin: 20px 0 10px;
	font-weight: 700;
	text-transform: uppercase
}

.menu .products__body a.category.subcategory {
	text-transform: none;
	font-weight: 600;
	font-style: italic
}

.menu .products__body ul {
	padding-left: 3px;
	margin: 0
}

.menu .products__body ul.list-view li {
	padding: 0 15px 0 0
}

.productos-list-qty{
	padding: 5px 20px 8px 20px;
	background: azure;
}

@media screen and (max-width:768px) {
	.productos-list-qty {
		display: none
	}
}

.myimg {
	padding: 10px;
}

@media screen and (max-width:768px) {
	.myimg {
		display: none
	}
}

.menu .products__body ul.list-view li .item {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	font-weight: 400;
	padding-bottom: 5px
}

@media screen and (max-width:768px) {
	.menu .products__body ul.list-view li .item {		
		grid-template-columns: 1fr auto auto !important;
	}
}


.menu .products__body ul.list-view li .item>* {
	align-self: center
}

.menu .products__body ul.list-view li .item .name .description {
	font-size: .8em;
	font-style: italic;
	margin: 5px 0
}

.menu .products__body ul.list-view li .item .pricing {
	padding: 0 20px
}

.menu .products__body ul.list-view li:not(:last-child) {
	border-bottom: 1px solid #dee2e6
}

.menu .products__body ul.cards-view {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr))
}

.menu .products__body ul.cards-view .bradcrumb {
	grid-column: 1/4
}

.menu .products__body ul.cards-view ul {
	grid-column: 1/4;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-left: 3px
}

.menu .products__body ul.cards-view li {
	padding: 0 15px 0 0
}

.menu .products__body ul.cards-view li .item {
	display: grid;
	align-content: space-between;
	height: 100%;
	padding: 12px 8px;
	font-weight: 400;
	border-radius: 9px;
	box-shadow: 0 3px 6px 0 rgba(55, 57, 79, .16)
}

.menu .products__body ul.cards-view li .item>* {
	align-self: center
}

.menu .products__body ul.cards-view li .item .card__body .image-wrapper {
	height: 120px
}

.menu .products__body ul.cards-view li .item .card__body .image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center
}

.menu .products__body ul.cards-view li .item .card__body .name {
	margin-top: 15px
}

.menu .products__body ul.cards-view li .item .card__body .name .description {
	font-size: .8em;
	font-style: italic;
	margin: 5px 0
}

.menu .products__body ul.cards-view li .item .card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: baseline;
	margin-top: 10px
}

@media screen and (max-width:992px) {
	.menu .products__header {
		grid-template-columns: 1fr auto;
		grid-row-gap: 12px;
		grid-column-gap: 10px
	}
	.menu .products__header .search-box {
		grid-column: 1/3;
		margin: 4px 0
	}
	.menu .products__header .search-box input {
		width: 100%
	}
	.menu .products__header .search-box .clear {
		bottom: -4px;
		margin-left: -15px
	}
	.menu .products__header select {
		width: 100%;
		margin: 0
	}
	.menu .products__header select.expand {
		grid-column: 1/3
	}
	.menu .products__body ul.cards-view {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
	.menu .products__body ul.cards-view .bradcrumb {
		grid-column: 1/3
	}
	.menu .products__body ul.cards-view ul {
		grid-column: 1/3;
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
}

@media screen and (max-width:768px) {
	.menu .products__header {
		grid-template-columns: 1fr auto;
		grid-row-gap: 12px;
		grid-column-gap: 10px
	}
	.menu .products__header .search-box {
		grid-column: 1/3;
		margin: 4px 0
	}
	.menu .products__header .search-box input {
		width: 100%
	}
	.menu .products__header .search-box .clear {
		bottom: -4px;
		margin-left: -15px
	}
	.menu .products__header select {
		width: 100%;
		margin: 0
	}
	.menu .products__header select.expand {
		grid-column: 1/3
	}
	.menu .products__body {
		max-height: 50vh;
		padding: 5px
	}
	.menu .products__body ul.cards-view {
		grid-template-columns: 1fr
	}
	.menu .products__body ul.cards-view .bradcrumb {
		grid-column: 1/2
	}
	.menu .products__body ul.cards-view ul {
		grid-column: 1/2;
		grid-template-columns: 1fr;
		padding-left: 0
	}
	.menu .products__body ul.cards-view li {
		padding: 0
	}
	.menu .products__body ul.cards-view li .item .card__body .image-wrapper {
		height: 150px
	}
}

.not-found {
	padding: 15px;
	text-align: center
}

.not-found p {
	margin: 30px 0
}

.order-detail h2 {
	color: var(--accent-color)
}

.order-detail section {
	margin-bottom: 30px
}

.order-detail form {
	margin: 0
}

.order-detail form :first-child {
	padding-top: 0
}

.order-detail form .form-group input[type=radio] {
	padding: 3px
}

.order-detail .btn-group>:nth-child(2n) {
	margin-left: 20px
}

@media screen and (max-width:768px) {
	.order-detail .btn-group {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 10px
	}
	.order-detail .btn-group>:nth-child(2n) {
		margin-left: 0
	}
}

.order-summary h2 {
	color: var(--accent-color)
}

.order-summary section {
	margin-bottom: 30px
}

.order-summary li,
.order-summary ul {
	font-weight: 400;
	padding-left: 0
}

.order-summary li .comment,
.order-summary ul .comment {
	font-size: .9em;
	color: #869099;
	font-style: italic
}

app-review {
	width: 350px;
	margin-left: 20px
}

app-review .review {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

app-review .review h4 {
	font-size: 25px;
	color: var(--accent-color);
	margin: 15px 0
}

app-review .review .webpay-form {
	display: none
}

app-review .review .order__products p {
	font-weight: 300
}

app-review .review .order__products hr {
	margin-left: 10px
}

app-review .review .order__products .addition {
	display: grid;
	grid-template-columns: 10px 1fr auto 60px;
	grid-column-gap: 15px;
	margin: 20px 0;
}


app-review .review .order__products .addition textarea {
	grid-column: 2/5;
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	letter-spacing: normal;
	margin-top: 8px
}

app-review .review .order__products .addition .buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 10px;
	align-content: flex-start
}

app-review .review .order__products .addition .details {
	font-size: 16px
}

app-review .review .order__products .addition .details>* {
	display: block
}

app-review .review .order__products .addition .details .description {
	font-size: .8em;
	font-style: italic;
	margin: 3px 0 0
}

app-review .review .order__products .addition .pricing {
	font-size: 15px;
	font-weight: 700;
	text-align: right
}

app-review .review .order__products .addition .quantity {
	font-size: 17px;
	font-weight: 700
}

app-review .review .order__products .addition .subitems {
	grid-column: 2/5
}

app-review .review .order__products .addition .subitems p {
	font-size: 15px;
	color: #37394f;
	margin: 8px 0 0
}

app-review .review .order__products .addition .subitems a {
	display: block;
	font-size: 15px;
	font-weight: 700;
	font-style: italic;
	margin-top: 7px
}

app-review .review .order__products .addition--show {
	grid-template-columns: 10px 1fr 60px
}

app-review .review .order__products .addition--show .buttons {
	visibility: hidden
}

app-review .review .order__products .addition--show .comment {
	grid-column: 2/4
}

app-review .review .order__products .addition--show .comment p {
	font-size: 14px;
	width: 100%;
	color: #869099;
	grid-column: 2/5;
	margin: 5px 0
}

app-review .review .order__products .addition--show .subitems {
	grid-column: 2/4
}

app-review .review .order__products .addition--show .subitems p {
	font-size: 15px;
	color: #37394f;
	margin: 8px 0 0
}

app-review .review .order__products .shippingCost {
	font-weight: 400;
	margin-left: 25px;
	margin-bottom: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
    margin-top: 20px;
}

app-review .review .order__products .shippingCost .value {
	text-align: right
}

app-review .review .total {
	font-size: 20px;
	font-weight: 700;
	margin-left: 25px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 10px;
}

app-review .review .total .value {
	text-align: right
}

app-review .review .order__detail {
	margin-top: 30px
}

app-review .review .order__detail li,
app-review .review .order__detail ul {
	padding-left: 0
}

app-review .review .order__detail li.comment,
app-review .review .order__detail ul.comment {
	font-size: .9em;
	color: #869099;
	font-style: italic
}

@media screen and (max-width:700px) {
	app-review {
		width: 100%;
		margin-left: 0
	}
}

.successful-order {
	text-align: center;
	margin-bottom: 50px
}

.successful-order h2 {
	margin-top: 80px;
	color: var(--accent-color)
}

.successful-order .ref {
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-color);
	padding: 10px;
	border: 2px solid var(--accent-color);
	margin: 0 auto 20px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

@media screen and (max-width:700px) {
	.successful-order {
		margin-bottom: 30px
	}
	.successful-order h2 {
		font-size: 20px;
		margin-top: 30px
	}
}

.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
	color: white;
	border: none !important;
    background-color: #4dc247;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    border-radius: 50%;
    cursor: pointer;
 }

 .btn-whatsapp svg {
  width: 40px;
  height: 40px;
  padding: 5px;
  fill: white;
  vertical-align: middle;
}

footer {
	padding: 5px;
	margin: 0px;
	text-align: center;
	border-top: 1px solid lightgray;
	background-color: white;
}