:root {
	--primary-c: #1f0d3f;
	--primary-c-faded: #1f0d3f4d;
	--secondary-c-alt: #03A696;
	--wave-c: #1f0d3f0f;
}

.top-header {
	background-color: #32d9c3;
	color: white;
	border: 0;
}

.main-header {
	background-color: #FFF;
}

.header-menu {
	background-color: #FFF;
    border-top: 2px dashed var(--primary-c);
}

.header-menu-item {
	color: var(--primary-c);
	transition: all .2s ease-in-out;
}

.header-menu-item:hover {
    color: var(--secondary-c-alt);
    text-decoration: none;
	transition: all .2s ease-in-out;
}

.header-menu-fixed {
    transform: translateY(167%);
}

.header-link {
	color: var(--primary-c);
	transition: all .2s ease-in-out;
}

.header-link:hover {
	color: var(--secondary-c-alt);
	text-decoration: none;
	transition: all .2s ease-in-out;
}

.svg-icon-fill path {
	fill: var(--primary-c);
	transition: all .2s ease-in-out;
}

.svg-icon path {
	stroke: var(--primary-c);
	transition: all .2s ease-in-out;
}

.header-link:hover .svg-icon-fill path,
.cart-wrapper:hover .svg-icon-fill path {
	fill: var(--secondary-c-alt);
	stroke: var(--secondary-c-alt);
	transition: all .2s ease-in-out;
}

.header-link:hover .svg-icon path {
	stroke: var(--secondary-c-alt);
	transition: all .2s ease-in-out;
}

.cart-wrapper:hover .cart-count {
	color: var(--secondary-c-alt);
	box-shadow: 0 0 0 0.1rem var(--secondary-c-alt);
	transition: all .2s ease-in-out;
}

.header-menu-wrapper {
	justify-content: space-between;
}

.slider-bg {
	background-color:  #f7f7f7;
	background-image: unset;
}

footer {
	color: white;
	background-color: var(--primary-c);
}

.add-to-cart-btn {
	background-color: white;
	border-color: var(--secondary-c-alt);
	color: var(--secondary-c-alt);
	transition: all .2s ease-in-out;
}

.add-to-cart-btn:hover {
	background-color: var(--secondary-c-alt);
	border-color: var(--secondary-c-alt);
	color: white;
	transition: all .2s ease-in-out;
}

.product-price-original {
	text-decoration-color: var(--secondary-c-alt);
	-webkit-text-decoration-color: var(--secondary-c-alt);
}

.summary-product-old-price,
.summary-checkout-item-old-price {
	text-decoration-color: var(--secondary-c-alt);
	-webkit-text-decoration-color: var(--secondary-c-alt);
}

.price-original-product {
  	text-decoration-color: var(--secondary-c-alt);
  	-webkit-text-decoration-color: var(--secondary-c-alt);
}

.shopping-cart-item-price-old,
.product-price-old {
  	text-decoration-color: var(--secondary-c-alt);
  	-webkit-text-decoration-color: var(--secondary-c-alt);
}

.product-price-old {
  	text-decoration-color: var(--secondary-c-alt);
  	-webkit-text-decoration-color: var(--secondary-c-alt);
}

.product-promo-tag-text {
	color: var(--secondary-c-alt);
}

footer .logo {
	width: 60%;
}

.top-header-info {
	width: 100%;
}

.top-header-info .top-header-text {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 3rem;
}

.top-header-info .top-header-text .top-header-socials {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .5rem;
}

.top-header-info .top-header-text .top-header-links {
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.top-header-socials a {
    background-color: var(--primary-c);
    color: white;
    border-radius: 2rem;
    width: 25px;
    height: 25px;
    font-size: 1rem;
}

.top-header-socials a:hover {
    text-decoration: none;
}

.top-header-links a {
    color: var(--secondary-c-alt);
	font-weight: 600;
}

.top-header-socials span{
	color: var(--secondary-c-alt);
}

/* .newsletter {
	width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-color: var(--secondary-c-alt);
    -webkit-clip-path: polygon(0 25%, 100% 60%, 100% 100%, 0% 100%);
    clip-path: polygon(0 25%, 100% 60%, 100% 100%, 0% 100%);
    z-index: -1;
}

.newsletter-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 1rem;
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.newsletter-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-c);
}

.newsletter-heading-light {
    font-size: 3rem;
    font-weight: 100;
    color: white;
} */

.news-text {
    width: 70%;
    font-size: 1.8rem;
    font-weight: 300;
    position: absolute;
    top: 0;
}

.news-text b {
	color: var(--secondary-c-alt);
	font-weight: 500;
}

footer h5 {
    color: var(--secondary-c-alt);
    font-size: .8rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
	text-transform: uppercase;
}

.footer-menu li, 
.footer-menu li a {
    color: white;
}

.footer-socials {
	display: flex;
	flex-direction: row;
	gap: .5rem;
}

.footer-socials a {
    background-color: white;
    color: var(--primary-c);
    border-radius: 2rem;
    width: 25px;
    height: 25px;
    font-size: 1rem;
	justify-content: center;
}

.footer-socials a:hover {
    text-decoration: none;
}

/* .footer-newsletter button {
	color: white;
    background-color: var(--primary-c);
    border-color: var(--primary-c);
}

.footer-newsletter button:hover,
.footer-newsletter button:focus,
.footer-newsletter button:active {
	color: var(--primary-c) !important;
    background-color: transparent !important;
    border-color: var(--primary-c) !important;
} */

.checkout footer {
	background-color: var(--backdrop-c);
}

h2.title {
	color: white;
	margin: 0;
}

.title-wrapper {
	padding: 0;
}

.service-item {
	position: relative;
	width: 300px;
	height: 500px;
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
}

.service-title-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0 35%);
	        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 35%);
}

.service-item.odd .service-title-bg {
	background-color: var(--secondary-c-alt);
}

.service-item.even .service-title-bg {
	background-color: var(--primary-c);
}

.service-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
	width: 100%;
	padding: .5rem 1rem;
	line-height: 2rem;
}

.coolsis-rights {
	background-color: var(--backdrop-c);
}

.header-checkout-step {
	color: rgb(129, 129, 129);
}

.header-checkout-step.active {
	color: white;
}

.splide__brands .splide-banner-img {
	filter: grayscale();
}

footer .footer-logo-info a {
    display: block;
    font-size: .8rem;
	color: #FFF;
}

footer .footer-logo-info a:hover{
	color: #465957;
}

.protocolo-empresas-img > div > img{
    width: 40%;
    max-width: 100%;
}

.protocolo-empresas-img > div{
    justify-items: center;
    gap: 1rem;
}

.section-divisor{
	background-color: var(--secondary-c-alt);
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.bn_home_box-img {
    height: 400px;
}

.banner-label {
    position: absolute;
    display: flex;
    left: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1.25rem;
    background-color: #fff;
    border-radius: 0.25rem;
    flex-direction: column;
    align-items: center;
}

.prescrisption-menu > a {
	color: var(--secondary-c-alt);
}

.prescrisption-menu > a:hover {
	color: white;
}

.footer-socials{
	gap:1.5rem
}
.footer-socials a{
	width:2rem;
	font-size: 2rem;
	height: auto;
}
.footer-payment-methods img{
	max-width: 70px;
}

#footer-ul-check {
	list-style: none;
	line-height: 1.8rem;
	padding: 0;
}
#footer-ul-check .fas {
	color:var(--secondary-c-alt);
	margin-right: 4px;
}
.infarmed-text {
	font-size: 0.75em;
}

.summary-continue-to-buy-btn
{
	background-color: var(--secondary-c-alt);
    border: 1px solid var(--secondary-c-alt);
    color: #fff;
    font-size: .8rem;
}

.summary-continue-to-buy-btn:hover
{
	border: 1px solid var(--secondary-c-alt);
	color: var(--secondary-c-alt);
}

.summary-finish-btn
{
	font-size: 1rem;
}

.top-header-wrapper{
	justify-content: center;
	font-weight: 600;
}
.form-floating > .form-control.search-input {
    width: 33vw;
}
.header-prescription-btn{
	border-radius: 0;
}
.form-floating i {
    position: absolute;
    top: 50%;
    right: 1rem;
    left: auto;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #646464;
}
.search-input{
	border-radius: 0!important;
}
.splide-category-img{
	border-radius: 50%;
}
.splide-arrow-right-noshadow {
    box-shadow: unset;
    transform: unset;
    top: 35%;
}
.splide-arrow-left-noshadow {
    box-shadow: unset;
    top: 35%;
}
.card-body h2{
	text-align: left;
}
.newsletter-container-fluid {
    background: #f7f7f7;
	border-top: 2px dashed var(--primary-c);
}
.newsletter {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.radius-newsletter-input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 400px !important;
    border: solid 1px var(--primary-c);
}
.radius-newsletter-button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.newsletter-terms-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}
.newsletter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #99c221;
    border-radius: 4px;
    background-color: white;
}
.newsletter-terms-label {
    width: 400px;
    font-size: 12px;
}
.newsletter-body-wrapper .btn-theme-primary{
	color: black;
    background-color: transparent;
	position: absolute!important;
	right: 0;	
	height: 100%;
	border-left: transparent;
}
.newsletter-title h2{
	font-size: 30px;
}
.news-label-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.card-pos-1-wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}
.card-container {
    position: relative;
    display: inline-block;
    width: 100%;
}
.img-pos-1-card {
    width: 100%;
    height: 490px;
}
.link-overlay {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-c);
    color: #FFF;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border: unset;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}
.promotion-slider {
    width: 61%;
}
.warnings-order {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
}
.countdown-order {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #FFF;
    font-size: 1.2rem;
    background: var(--primary-c);
    padding: 7px 15px;
    margin-bottom: 7px;
}
div#countdown-timer {
    font-weight: bold;
    background: var(--secondary-c-alt);
    padding: 0 5px;
}
.footer-wrapper .arrow{
	border-color: #FFF transparent transparent transparent;
}
.footer-wrapper .arrow-up{
    border-color: transparent transparent #FFF transparent!important;
}
.space-first-slide .splide__arrow--next {
    right: -1.5rem;
}
.space-first-slide .splide__arrow--prev {
    left: -1.5rem;
}
.search-popup object {
    max-width: unset;
}
.top-header-text a{
	color: #FFF;
    font-weight: 500;
    font-size: 15px;
}
.banner-top .splide__track{
    padding-top: 0;
}



























@media (max-width: 576px) { 
	.newsletter-title h2{
		font-size: 20px;
	}
    .infarmed-imgs{
        flex-direction: row;
        justify-content: center;
    }
    .footer-payment-methods img {
        max-width: 60px;
    }
    .footer-socials a {
        width: 1rem;
        font-size: 1.5rem;
    }
    #footer-ul-check{
        margin-bottom: 0.5rem !important;
    }
    .img-pos-1-card {
        width: 100%;
        height: auto;
    }
    .splide-category-label {
        font-size: 0.7rem;
    }
    .top-header-text a{
        font-size: 11px;
        text-align: center;
    }
    .countdown-order span{
        font-size: 11px;
    }
    div#countdown-timer {
        font-size: 11px;
    }
    .countdown-order{
        padding: 0 10px;
    }
 }
@media (max-width: 767.98px) { 
	.footer-payment-methods {
		text-align: center;
	}
	.card-pos-1-wrapper {
        flex-direction: column;
    }
	.promotion-slider {
        width: 100%;
    }
	.footer-logo-info {
        align-items: start;
    }
 }
@media (max-width: 1199.98px) { 
	.news-text {
		width: 100%;
		font-size: 1.5rem;
		position: unset;
		top: unset;
		padding-bottom: 2rem;
	}

	.countdown-order {
        align-items: center;
        display: flex;
        flex-direction: row;
        font-size: .9rem;
        gap: .2rem;
        justify-content: center;
        padding-bottom: .5rem;
        padding-top: .5rem;
    }

	/* .newsletter-wrapper {
		display: flex;
		flex-direction: column-reverse;
		gap: 1rem;
		align-items: center;
	}

	.newsletter-heading {
		font-size: 1.5rem;
	}

	.newsletter-heading-light {
		font-size: 2rem;
	}

	.newsletter {
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0;
		background-color: var(--secondary-c-alt);
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
		clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
		z-index: -1;
	} */

	.bn_home_box-img {
		height: 200px;
	}

	.header-logo-wrapper a img {
        height: 3rem;
    }
}


/*# sourceMappingURL=theme.css.map*/