@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
	

html {
  scroll-behavior: initial !important;
  -webkit-overflow-scrolling: auto !important;
}
:root {
    /* fonts  */
  /*   --font-h1: 4em;
    --font-h2: 2.1rem;
    --text-tall: 1.25rem;
    --text-medium: 1rem; */
    --font-size-title: 35px;
    --font-size-contnt: 16px;
    
    --font-family-title:   "Poppins", sans-serif;
    --font-family-text: "Poppins", sans-serif;
    --color-primary: #ec982e;
	--color-primary-dark: #242424;

	
	--color-secundary: #ea5209;

    --color-text-two:  #3A3B3A; 


    /*--background-button: ;
    --background-button-hover: ;*/

    --background-button-secundary: #000;

    /* transitions  */

    --transition-slow: 800ms;
    --transition-medium: 600ms;
    --transition-fast: 300ms;
}

@media screen and (max-width: 576px) {
    :root {
        --font-h1: 2.8em;
        --font-h2: 1.8em;
        --text-tall: 1.1rem;
        --text-medium: 1rem;
		
		--font-size-title: 30px;

    }
	
}



body, html {
	overflow-x: hidden;
}
.page-width {
	max-width: 200rem;
	margin: 0 auto;
	padding-left: 5rem;
	padding-right: 5rem;
}
@media (max-width: 600px) {
	.page-width {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
@media (max-width: 425px) {
	.page-width {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
.text-white {
    color: #fff;
}

.padding-section {
    padding: 45px 0;
    position: relative;
    overflow: hidden;
}
input {
	accent-color: var(--color-secundary);
}
.title-section {
	font-weight: 600;
    font-size: var(--font-size-title);
}
.subtitle-section {
	margin-bottom: 0;
}
.heading-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.heading-title::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 2.5px;
	background: var(--color-secundary);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.title-items {
    font-size: 20px;
}
.heading-title.line-decoration-left::before {
	left: 50%;
}
@media (min-width: 991px) {
    .heading-title.line-decoration-left::before {
        left: 0;
        transform: translateX(0);
    }
}
@media (max-width: 992px) {
	.heading-title.line-decoration-left {
		justify-content: center;
		text-align: center;
	}
}
@media (max-width: 768px) {
	.heading-title {

		text-align: center;
	}
}
/* ======================== RESET ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-text);
}
body {
    font-family: var(--font-family-text);
}
img {
    width: 100%;
}
video,
picture,
iframe,
figure {
    max-width: 100%;
    width: 100%;
    display: block;
}
input {
    outline: none;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    font-family: var(--font-family-text);
}
a:hover {
    color: inherit;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul::-webkit-scrollbar,
body::-webkit-scrollbar,
p::-webkit-scrollbar,
div::-webkit-scrollbar {
    width: 4px;
}
ul::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
p::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
}
body {
    font-size: 100%;
    font-weight: normal;
    font-family: var(--font-family-text);
}
input,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    outline-width: 0;
    outline-color: transparent;
    box-shadow: none;
    outline-style: none;
}
a::selection,
p::selection,
span::selection,
img::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
div::selection,
time::selection,
button::selection,
li::selection {
    background: rgba(68, 68, 68, 0.336);
}
a::-moz-selection,
p::-moz-selection,
span::-moz-selection,
img::-moz-selection,
h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
h6::-moz-selection,
div::selection,
time::selection,
button::selection,
li::selection {
    background: rgba(68, 68, 68, 0.336);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-title);
}
p {
    color: var(--color-text);
    font-size: 16px;
    font-family: var(--font-family-text);
}

/**/


/*BUTTONS*/
.als button,
.als-submit,
.btn-primary {
	display: flex;
	width: auto;
	/* height: 40px; */
	justify-content: center;
	align-items: center;
	margin: 0.5rem;
	line-height: 35px;
	border: 1px solid;
	border-radius: 0px!important;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.35s;
	box-sizing: border-box;
	position: relative;
	background-color: var(--color-primary)!important;
	color: #fff;
	overflow: hidden;
	min-width: 190px;
	padding: 6px 10px;
	max-width: 220px;
    border: none!important;
}
.als button:before,
.als-submit::before,
  .btn-primary::before {
    width: 35px;
    height: 48px;
    position: absolute;
    left: 0;
    top: 0;
    content: "\f061";

  /*  content: "★";*/
    font-family: "FontAwesome";
    font-weight: bold;
    font-size: 10px;
    color: #fff;
    text-indent: 5px;
    border-radius: 0 50% 50% 0;
    background-color: var(--color-primary-dark);
    transform: translate(-20%, 0) scale(0, 1);
    transform-origin: left center;
    transition: all 0.25s;
    z-index: 1;
    padding: 6px;
  }
  .als-submit:hover,.btn-primary:hover {
    text-indent: 20px;
  }
  .als button:hover::before,
  .als-submit:hover:before,.btn-primary:hover::before, .btn-primary:hover:focus {
    transform: translate(-20%, 0) scale(1, 1);
  }
  .als button:hover,
  .als-submit:hover,
.btn-primary:hover {
	background: var(--color-secundary);
    border: none!important;
} 

.btn-check:focus + .btn-primary, .btn-primary:focus {
	color: #fff;
	background: var(--color-secundary);
	border-color: none;
	box-shadow: none;
}

.btn-background-two {
    background: var(--background-button-secundary);

}

/**/
	
	.checkbox-content p {
		display: flex;
		align-items: center;
		flex-direction: row;
	}
	.checkbox-content a {
		color: #000;
		text-decoration: none;
		margin-left: 15px;
		transition: 400ms;
	}
	.checkbox-content a:hover {
		color: var(--color-primary);
		transition: 400ms;
	}	
	.checkbox-content label {
		margin-bottom: 0;
	}	
	.checkbox-content input {
		width: 20px!important;
		margin-left: 16px;
	}

.content-check-policies {
	position: absolute;
	bottom: 0px;
}
footer form  p:nth-child(2) {
	margin-bottom: 60px;
}
.content-check-policies  a{

	color: #fff !important;
}

/*WOOCOMMERCE*/
.woocommerce-info {
	border-top-color: var(--color-primary) !important;
}
.woocommerce-info::before {
	color: var(--color-primary) !important;
}
.woocommerce-button.button.view,
button#place_order,
.button.wc-backward,
.button.wc-forward  {
	display: flex!important;
	width: auto!important;
	/* height: 40px; */
	justify-content: center!important;
	align-items: center!important;
	margin: 0.5rem!important;
	line-height: 35px!important;
	border: 1px solid!important;
	border-radius: 0px!important;
	text-align: center!important;
	font-size: 16px!important;
	text-decoration: none!important;
	transition: all 0.35s!important;
	box-sizing: border-box!important;
	position: relative!important;
	background-color: var(--color-primary)!important;
	color: #fff!important;
	overflow: hidden!important;
	min-width: 190px!important;
	padding: 6px 10px!important;
	max-width: 220px!important;
    border: none!important;
    font-weight: 400!important;
}
.woocommerce-button.button.view:before,
button#place_order::before,
.button.wc-backward::before,
.button.wc-forward::before {
    width: 35px;
    height: 48px;
    position: absolute;
    left: 0;
    top: 0;
    content: "\f061";

  /*  content: "★";*/
    font-family: "FontAwesome";
    font-weight: bold;
    font-size: 10px;
    color: #fff;
    text-indent: 5px;
    border-radius: 0 50% 50% 0;
    background-color: var(--color-primary-dark);
    transform: translate(-20%, 0) scale(0, 1);
    transform-origin: left center;
    transition: all 0.25s;
    z-index: 1;
    padding: 6px;
  }
  .woocommerce-button.button.view:hover,
  button#place_order:hover,
  .button.wc-backward:hover,
  .button.wc-forward:hover {
    text-indent: 20px!important;
  }

  .woocommerce-button.button.view:hover:before,
  button#place_order:hover:before,
  .button.wc-backward:hover::before,
  .button.wc-forward:hover:before {
    transform: translate(-20%, 0) scale(1, 1)!important;
  }
  .woocommerce-button.button.view:hover,
  button#place_order:hover,
  .button.wc-backward:hover,
  .button.wc-forward:hover {
	background: var(--color-secundary);
    border: none!important;
} 



.woocommerce-button.button.view {
	min-width: 50px !important;
	width: 80px !important;
	margin: auto 0 auto auto !important;
}


.pulse {

    animation: btn-pulse 2s infinite ease-out;
  }

@keyframes btn-pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    70% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

/*/*/
