/*
Theme Name: CooperAcción 20232
Theme URI: https://cooperaccion.org.pe/
Author: Cocoa Perú
Author URI: http://cocoa.pe/
Description: Plantilla desarrollada para uso de CooperAcción
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root{
	--font-book: 'Avant Bk', sans-serif;
	--font-demi: 'Avant Demi', sans-serif;
	--font-bold: 'Avant Bold', sans-serif;
	
	--verde: #336633;
	--verde-hover: #2D5525;
	--amarillo: #DA9500;
	--amarillo-hover: #C97B04;
	--black: #0A0A0A;
	--light: #F3F3F3;
	--gris: #888888;
	--white: #ffffff;
	
	--facebook: #1877f2;
	--twitter: #1da1f2;
	--instagram: #e1306c;
	--youtube: #ff0000;
	--twitch: #9146ff;
	--discord: #7289da;
	--whatsapp: #25d366;
	--linkedin: #0077b5;
	--flickr: #ff0084;
}

html{
	font-size: 18px;
}

body, table, td{
	font-family: var(--font-book);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--black);
	font-weight: 400;
}
a, button{
	color: var(--verde);
	text-decoration: none;
}
a:hover{
	color: var(--verde-hover);
	text-decoration: underline;
}

button:hover{
	color: inherit;
	text-decoration: none;
}
.font-book{font-family: var(--font-book) !important;}
.font-demi{font-family: var(--font-demi) !important;}
.font-bold{font-family: var(--font-bold) !important;}

small, .small{ font-size: 90%; }

b, strong{ font-family: var(--font-demi); font-weight: normal;}

h1, .h1{ font-size: 2.5rem; }
h2, .h2{ font-size: 1.95rem; }
h3, .h3{ font-size: 1.6rem; }
h4, .h4{ font-size: 1.38889rem; }
h5, .h5{ font-size: 1rem; line-height: 1.35; }
h6, .h6{ font-size: 0.8333rem; line-height: 1.35; }

h1,h2,h3,h4,h5,h6{ font-family: var(--font-demi); font-weight: normal; margin-bottom: 1rem; line-height: 1.125;}
h1 strong,h2 strong,h3 strong,h4 strong,h5 strong,h6 strong{ font-family: var(--font-bold); font-weight: normal;}

ul,ol{
	margin-bottom: 1.5rem;
	padding-left: 1em;
}

ol:last-child,
ul:last-child,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child{
	margin-bottom: 0 !important;
}

p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child{
	margin-top: 0 !important;
}

p{
	margin-bottom: 1rem;
}

.overflow-hidden{
	overflow: hidden;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

*::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 1; /* Firefox */
}

*:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: inherit;
}

*::-ms-input-placeholder { /* Microsoft Edge */
  color: inherit;
}

.border-top{
	border-top: 1px solid var(--light);
}

/*------------------------------ btn-trigger -------------------------*/

.btn-trigger{
	position: relative;
	display: block;
	min-width: 3rem;
	height: 3rem;
	border: 0 none;
	z-index: 100;
	background-color: var(--verde-hover);
	border-radius: 6px;
}

.btn-trigger span{
	display: block;
	position: absolute;
	width: 1.5rem;
	height: 2.4px;
	background-color: var(--white);
	left: calc(50% - 0.75rem);
	border-radius: 50em;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
	z-index: 9;
}
.btn-trigger span:nth-child(1){
	top: calc(50% - 8px);
}
.btn-trigger span:nth-child(2){
	bottom: calc(50% - 8px);
}

.btn-trigger span:nth-child(3){
	bottom: calc(50% - 1.2px);
}

.btn-trigger.show{
	background-color: var(--verde-hover);
}

.btn-trigger.show span{
	background-color: var(--white);
}

.btn-trigger.show span:nth-child(1){
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: calc(50% - 1.2px);
}
.btn-trigger.show span:nth-child(2){
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: calc(50% - 1.2px);
}
.btn-trigger.show span:nth-child(3){
	width: 0;
	opacity: 0;
}

/*------------------------------ Base -----------------------------*/

.swiper-button-prev,
.swiper-button-next{
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid var(--black);
	color: var(--black);
	background-color: transparent;
	opacity: 0.6;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	margin-top: 0;
	transform: translateY(-50%);
}

.swiper-button-prev::after,
.swiper-button-next::after{
	display: none;
}

.swiper-button-prev svg,
.swiper-button-next svg{
	width: 90%;
	height: auto;
}

.swiper-button-next{
	margin-left: auto;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
	opacity: 1;
	color: var(--white);
	border-color: var(--verde);
	background-color: var(--verde);
}

.swiper-button-prev:active,
.swiper-button-next:active{
	background-color: var(--amarillo);
	border-color: var(--amarillo);
	color: var(--black);
}

.swiper-button-lock{
	opacity: 0.1;
	pointer-events: none;
}
.swiper-pagination{
	transform: none !important;
	position: static;
	margin-left: auto;
	margin-right: auto;
}
.swiper-pagination .swiper-pagination-bullet{
	background-color: var(--gris);	
}

*[class*=card]{
	position: relative;
}

.card_content{
	position: static;
}

.rounded,
.card_rounded{
	border-radius: 0.6rem;
	overflow: hidden;
}

.shadow{
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
}

.img-fluid{
	max-width: 100%;
	height: auto;	
}

.img-fit{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.text-uppercase{text-transform: uppercase !important;}
.w-100{width: 100%;}
.h-100{height: 100%;}
.position-relative{	position: relative;}
.position-static{	position: static;}

.text-start {text-align: left !important;}
.text-end {text-align: right !important;}
.text-center { text-align: center !important;}
@media (min-width: 576px) {
  .text-sm-start {text-align: left !important;}
  .text-sm-end {text-align: right !important; }
  .text-sm-center {text-align: center !important;}
}
@media (min-width: 768px) {
  .text-md-start {text-align: left !important;}
  .text-md-end {text-align: right !important;}
  .text-md-center {text-align: center !important;}
}
@media (min-width: 992px) {
  .text-lg-start {text-align: left !important;}
  .text-lg-end {text-align: right !important;}
  .text-lg-center {text-align: center !important;}
}
@media (min-width: 1200px) {
  .text-xl-start {text-align: left !important;}
  .text-xl-end {text-align: right !important;}
  .text-xl-center {text-align: center !important;}
}
@media (min-width: 1400px) {
	.text-xxl-start {text-align: left !important;}
	.text-xxl-end {text-align: right !important;}
	.text-xxl-center {text-align: center !important;}
}

.py,.pt{ padding-top: 90px; }
.py,.pb{ padding-bottom: 90px; }
.my,.mt{ margin-top: 90px; }
.my,.mb{ margin-bottom: 90px; }

.text-verde{color: var(--verde) !important;}
.text-amarillo{color: var(--amarillo) !important;}
.text-verde-hover{color: var(--verde-hover) !important;}
.text-amarillo-hover{color: var(--amarillo-hover) !important;}
.text-black{color: var(--black) !important;}
.text-light{color: var(--light) !important;}
.text-gris{color: var(--gris) !important;}
.text-white{color: var(--white) !important;}

.bg-verde{background-color: var(--verde) !important;}
.bg-amarillo{background-color: var(--amarillo) !important;}
.bg-verde-hover{background-color: var(--verde-hover) !important;}
.bg-amarillo-hover{background-color: var(--amarillo-hover) !important;}
.bg-black{background-color: var(--black) !important;}
.bg-light{background-color: var(--light) !important;}
.bg-gris{background-color: var(--gris) !important;}
.bg-white{background-color: var(--white) !important;}

.text-truncate{overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.is-style-stretched > a::after,
.stretched-link::after{ position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;content: "";}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
	padding-right: 15px;
    padding-left: 15px;
}
.row:not([class*=gx]){
	--bs-gutter-x: 30px;
}

@media (min-width: 1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    	max-width: 1380px;
	}
}
@media (min-width: 1680px) {
	.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: 1600px;
	}
}

.fade{transition: opacity 0.15s linear;}

@media (prefers-reduced-motion: reduce) {
  .fade{ transition: none;}
}
.fade:not(.show){opacity: 0;}
.collapse:not(.show){display: none;}
.collapsing {
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}


.alert{
	font-size: .8889rem;
	border-radius: .3rem;
	padding: .5rem 1rem;
}

.alert-success{
	background-color: var(--bs-green);
	color: var(--white);
}
.alert-danger{
	background-color: vaR(--bs-danger);
	color: var(--white);
}

.btn-close{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 1;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: var(--white);
	border: 0 none;
	color: var(--black);
}
.btn-close:hover{
	background-color: var(--verde);
	color: var(--white);
}
.btn-close svg{
	width: 80%;
	height: auto;
}
.modal .btn-close{
	position: fixed;
	top: 2;
	right: 1rem;
	top: 1rem;
}
.wp-block-button__link,
.btn{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	line-height: 1;
	text-decoration: none !important;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: 0.4em 2em;
	font-size: 0.8333rem;
	border-radius: 50em;
	transition: all 0.25s ease;
	min-height: 2.6667rem;
	font-weight: normal;
	z-index: 1;
	gap: 0 0.35em;
	font-family: var(--font-demi);
}

.btn:hover{
	text-decoration: none;
}
.btn:active{
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}

.btn:disabled, .btn.disabled {
	pointer-events: none;
	opacity: 0.4;
}

.btn-white:hover,
.btn-outline-verde:hover,
.wp-block-button__link,
.btn-amarillo{
	background-color: var(--amarillo);
	border-color: var(--amarillo);
	color: var(--white);
}


.wp-block-button__link:hover,
.btn-amarillo:hover{
	background-color: var(--amarillo-hover);
	border-color: var(--amarillo-hover);
	color: var(--white) !important;
}

.wp-block-button__link.has-white-background-color,
.btn-white{
	background-color: var(--white) !important;
	border-color: var(--white) !important;
	color: var(--black) !important;
}

.wp-block-button__link.has-white-background-color:hover{
	background-color: var(--amarillo) !important;
	border-color: var(--amarillo) !important;
	color: var(--white) !important
}

.wp-block-button__link.has-verde-background-color,
.btn-verde{
	background-color: var(--verde) !important;
	border-color: var(--verde) !important;
	color: var(--white) !important;
}
.wp-block-button__link.has-verde-background-color:hover,
.btn-verde:hover{
	background-color: var(--verde-hover) !important;
	border-color: var(--verde-hover) !important;
	color: var(--white) !important;
}

.btn-outline-verde{
	border-color: var(--verde);
	color: var(--verde);
	background-color: transparent;
}

.btn-link{
	padding: 0;
	min-height: 0;
	gap: 0 .7rem;
	color: var(--verde);
	background-color: transparent !important;
	border-color: transparent !important;
}
.btn-link:hover{
	color: var(--amarillo);
	background-color: transparent;
	border-color: transparent;
}
.btn-link::before{
	content: '';
	display: block;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23336633' %3e%3cpath d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3e%3c/svg%3e");
	width: 1.2em;
	height: 1.2em;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.25s ease;
}
.btn-link.btn-white{
	color: var(--white) !important;
}
.btn-link.btn-white:hover{
	color: var(--amarillo) !important;
}
.btn-link.btn-white:hover::before,
.btn-link:hover::before{
	transform: translateX(0.3rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DA9500' %3e%3cpath d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3e%3c/svg%3e");
}

.btn-link.btn-white::before{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF' %3e%3cpath d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3e%3c/svg%3e");
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.9;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .modal-lg,
	.modal-xl {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1100px;
  }
}

@media (min-width: 1400px) {
  .modal-xl {
    max-width: 1200px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 180px;
  padding: 16px;
  margin: 0;
  font-size: 0.8rem;
  color: var(--black);
  text-align: left;
  list-style: none;
  background-color: var(--white);
  background-clip: padding-box;
  border: 0 none;
  border-radius: 8px;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}
.form-select,
.form-control {
  display: block;
  width: 100%;
	height: 2.6667rem;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  background-color: transparent;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	border-radius: 50em;
	border: 1px solid var(--gris);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-select{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-control:focus {
  color: var(--black);
  background-color: transparent;
  border-color: var(--black);
  outline: 0;
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  line-height: 1.25;
	border-radius: 50em;
}
.form-floating > label {
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 100%;
  height: auto;
   padding: 0 1.25rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
	font-size: 0.9rem;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
   padding: 0 1.25rem;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 0.7rem;
  padding-bottom: 0;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 0.7rem;
  padding-bottom: 0;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 0.7rem;
  padding-bottom: 0;
}
.form-floating > .form-select {
  padding-top: 0.7rem;
  padding-bottom: 0;
}

.form-floating > textarea.form-control:focus{
	padding-top: 1.1rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.7) translateY(-0.7rem) translateX(0.45rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
   transform: scale(0.7) translateY(-0.7rem) translateX(0.45rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
   transform: scale(0.7) translateY(-0.7rem) translateX(0.45rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

label{
	font-size: 0.9rem;
	font-weight: 400;
	margin-bottom: 0.2rem;
}

/*------------------------------ Responsive -----------------------------*/

@media only screen and (max-width: 1679px){

	.py,.pt{ padding-top: 80px; }
	.py,.pb{ padding-bottom: 80px; }
	.my,.mt{ margin-top: 80px; }
	.my,.mb{ margin-bottom: 80px; }

}
@media only screen and (max-width: 1399px){
	
	.py,.pt{ padding-top: 70px; }
	.py,.pb{ padding-bottom: 70px; }
	.my,.mt{ margin-top: 70px; }
	.my,.mb{ margin-bottom: 70px; }

}

@media only screen and (max-width: 1199px){

	.py,.pt{ padding-top: 90px; }
	.py,.pb{ padding-bottom: 90px; }
	.my,.mt{ margin-top: 90px; }
	.my,.mb{ margin-bottom: 90px; }
	
}

@media only screen and (max-width: 991px){

	.py,.pt{ padding-top: 80px; }
	.py,.pb{ padding-bottom: 80px; }
	.my,.mt{ margin-top: 80px; }
	.my,.mb{ margin-bottom: 80px; }
	
	small, .small{
		font-size: 100%;
	}

}

@media only screen and (max-width: 767px){
	
	.py,.pt{ padding-top: 60px; }
	.py,.pb{ padding-bottom: 60px; }
	.my,.mt{ margin-top: 60px; }
	.my,.mb{ margin-bottom: 60px; }

}

@media only screen and (max-width: 575px){

	.py,.pt{ padding-top: 48px; }
	.py,.pb{ padding-bottom: 48px; }
	.my,.mt{ margin-top: 48px; }
	.my,.mb{ margin-bottom: 48px; }
}