/* HEADER ESTYLES START***************************************************************************/
@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Header Content
	3.3 Logo
	3.4 Main Nav
	3.5 Hamburger
4. Menu
5. Home
******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,600,700,800,900');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");


/*********************************
2. Body and some general stuff
*********************************/
:root{
    /*--colorPrimary: #727376;*/
	--colorPrimary: #CC2D44;
	--colorSecondary: #1D3C47;
    --colorBlanco: #ffffff;
    --colorGris: #CECBC5;
    /* --colorNegro: #202020; */
    --colorNegro: #7b1f00;
    --colorGrisClaro: #eae9e7;
	--colorRojoClaro: #ff3f5c;
	

	--primary-color: #0D1936;
    --secondary-color: #535354;
    --background-color: #EFEFEF;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --white-color: #FFF;
    --black-color: #000;
    --input-border-color: #E3E4E6;
    --transition-3s: 0.3s;

	--yellow-color: 52;
	--green-color: 116;
	--pink-color: 300;
	--white-color: hsl(203, 35%, 78%);
	--black-color: hsl(0, 0%, 0%);
	--gray-color: hsl(235, 48%, 16%); 
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box; /* esta sí es buena práctica */
  }
body
{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	background: #FFFFFF;
	/* color: #6c6a74; */
	/*! color: #343437; */

}

ul
{
	list-style: none;
	margin-bottom: 0px;
}

dl, ol {
	margin-top: 0;
	margin-bottom: 1rem;
  }
p
{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	color: #6c6a74;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}

p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}
p::selection
{
	background: #ff8a00;
	color: #FFFFFF;
}
h1{font-size: 28px;
	font-weight: 700;}
h2{font-size: 20px;			/*revisados*/
	font-weight: 700;}
h3{font-size: 18px;}
h4{font-size: 16px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Montserrat', sans-serif;
	color: #c80000;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

.form-control
{
	color: #000000;
}

.form-control {
	display: block;
	width: 100%;
	padding:
  .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: rgb(255, 252, 235);
	background-clip: padding-box;
	border:
  1px solid #ff6f6f;
	-webkit-appearance:
  none;
	-moz-appearance:
  none;
	appearance: none;
	border-radius:
  .25rem;
	transition:
  border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }

section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
/* .super_container
{
	width: 100%;
	overflow: hidden;
} */
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.parallax_background
{
	position: absolute;
	top: 200px;
	left: 0;
	width: 100%;
	height: 100%;
}
.nopadding
{
	padding: 0px !important;
}
.button
{
	display: inline-block;
	width: auto;
	height: 47px;
	background: #ff8a00;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.button a
{
	display: block;
	position: relative;
	padding-left: 33px;
	padding-right: 77px;
	line-height: 47px;
	font-size: 12px;
	font-weight: 600;
	color: #FFFFFF;
	text-transform: uppercase;
	white-space: nowrap;
}
.button_arrow
{
	position: absolute;
	top: 0;
	right: 0;
	width: 44px;
	height: 100%;
	background: #ff6600;
	text-align: center;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.button_arrow i
{
	font-size: 20px;
	line-height: 47px;
	color: #ffae00;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.button:hover
{
	background: #ffae00;
}
.button:hover .button_arrow
{
	background: #ff8a00;
}
.button:hover .button_arrow i
{
	color: #ffae00;
}
.section_title h2
{
	font-weight: 600;
}
.section_subtitle
{
	font-size: 14px;
	color: #6c6a74;
	text-align: center;
	margin-top: 30px;
	line-height: 2.14;
}

/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.header.scrolled
{
	/* top: -165px; */
	top: -240px;
}

/*********************************
3.2 Header Content
*********************************/


.header_content
{
	height: 50px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.header.scrolled .header_content
{
	height: 120px;
}

/*********************************
3.3 Logo
*********************************/



/*********************************
3.4 Main Nav
*********************************/


.main_nav2 li a
{
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 30px;
	background: var(--colorPrimary);
	border-radius: 50px;
	color: var(--colorBlanco);
	padding-left: 19px;
	padding-right: 19px;
	border: solid var(--colorRojoClaro) 1px;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main_nav2 li a:hover,
.main_nav2 li.active a
{
	color: #FFFFFF;
	background: var(--colorRojoClaro);
}
.main_nav2 li a:hover
{
	background: var(--colorRojoClaro);
}


.sub_main_nav li
{
	display: inline-block;
	position: relative;
	height: 30px;
}
.sub_main_nav li:not(:last-child)
{
	margin-right: 25px;
}
.sub_main_nav_contaner .sub_main_nav
{
	margin-bottom: 0rem !important;
}


/* STAR HEADER STYLES ---------------------------------------------------------------*/

.header_container
{
	width: 100%;
	background: var(--colorNegro);

}

.header_search_container
{	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	position: absolute;
	border-top: solid #cb2845 4px;
	/* bottom: 0px; */
	left: 0px;
	width: 100%;
	background: #1D3C47;
	/* height: 50px; */
	/* z-index: -1; */
	opacity: 1;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;

}

.logo_content{
	padding: 10px;
	width: 100%;
	background-color: var(--colorBlanco);
}
.login-info {
    font-size: 18px;
	color: var(--colorPrimary);
}

.nav-home-icon{
  font-size: 16px;
  font-weight: 500;
  padding: 2px 0;
  margin-right: 8px;
  background: var(--colorPrimary);
  color: #fff;
  min-width: 28px;
  height: 27px;
  text-align: center;
  display: inline-block;
  border-radius: 3px;
}



.icon-info{
    font-size: 20px;
	color: var(--colorSecondary);
}



a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	color: var(--colorBlanco);
}
.create-text{
	color: var(--colorTerciario);
}

.btn2
{
	display: block;
	font-size: 13px;
	font-weight: 600;
	/*! line-height: 25px; */
	width: 100%;
	background: #242234;
	/*! color: var(--colorBlanco); */
	/*! border: solid var(--colorRojoClaro) 1px; */
	padding-left: 8px;
	padding-right: 8px;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	/*! border-radius: 3px; */
}

.btn3
{
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 25px;
	width:max-content;	
	height: 30px;
	margin: 1px;
	background: rgb(179, 0, 0);
	color: var(--colorBlanco);
	border: solid var(--colorRojoClaro) 1px;
	padding-left: 8px !important;
	padding-right: 8px !important;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease !important;
	-moz-transition: all 200ms ease !important;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 3px;
}
.btn2:hover {
	/* box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--colorPrimary); */
	background-color: #36393f;
  }

.btn3:hover {
	/* box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--colorPrimary); */
	background-color: #4e875e;
  }

.btn4
{
	display: block;
	font-size: 12px;
	font-weight: 600;
	background: #ffffff;
	color: var(--colorPrimary);
	padding-left: 8px;
	padding-right: 8px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 25px !important;
}  
  .btn_circle
  {
	  display: flex;
	  font-size: 22px;
	  font-weight: 300;
	  /* line-height: 25px; */
	  width: 35px;	
	  height: 35px;
	  /*! margin: 2px; */
	  background: var(--colorPrimary);
	  color: var(--colorBlanco);
	  border: solid var(--colorRojoClaro) 1px;
	  padding-left: 9px !important;
	  padding-right: 8px !important;
	  text-transform: uppercase;
	  -webkit-transition: all 200ms ease !important;
	  -moz-transition: all 200ms ease !important;
	  -ms-transition: all 200ms ease;
	  -o-transition: all 200ms ease;
	  transition: all 200ms ease;
	  border-radius: 50%;
	  /*! font-size: 1rem; */
	  place-items: center;
  }
  .btn_circle:hover {
	  /* box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--colorPrimary); */
	  background: #8a1313;
	}
.login_btn{
	display: block;
  font-size: 10px;
  font-weight: 600;
  line-height: 25px;
  width: max-content;
  background: var(--colorPrimary);
  color: var(--colorBlanco);
  border: solid var(--colorRojoClaro) 1px;
  padding-left: 8px;
  padding-right: 8px;
  text-transform: uppercase;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  border-radius: 3px;
}
.login_btn:hover
{
	background: #9a1515 !;
}
.create-text2
{
	display: block;
	font-size: 10px;
	font-weight: 600;
	/*! line-height: 25px; */
	width: max-content;
	background: rgb(88, 114, 129);
	color: var(--colorBlanco);
	/* border: solid var(--colorRojoClaro) 1px; */
	padding-left: 8px;
	padding-right: 8px;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.create-text2:hover
{
	background: var(--colorSecondary);
	color: #ffffff;
}
.create-text3
{
	display: block;
	font-size: 10px;
	font-weight: 600;
	line-height: 25px;
	width: max-content;
	background: rgb(60, 135, 122);
	color: var(--colorBlanco);
	/* border: solid var(--colorRojoClaro) 1px; */
	padding-left: 8px;
	padding-right: 8px;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.create-text3:hover
{
	background: #002415;
}
.create-text:hover{
	color: var(--colorPrimary);
}
.logo_container{
    background: var(--colorBlanco);
    /* width: 400px; */
    padding: 5px;
}
.main_nav_contaner
{
	background: var(--colorSecondary);
    width: 400px;
    padding: 5px;
}
.sub_main_nav li a
{
	display: block;
	font-size: 12px !important;;
	font-weight: 500;
	line-height: 29px;
	width:max-content;	
	height: 30px;
	margin: 1px !important;
	background: var(--colorPrimary);
	color: var(--colorBlanco);
	border: solid var(--colorRojoClaro) 1px;
	padding-left: 8px !important;
	padding-right: 8px !important;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease !important;
	-moz-transition: all 200ms ease !important;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 3px;
}

.nav-icon {
  display: inline-block;
  /* line-height: 1; */
  vertical-align: middle;
  font-size: 18px; /* igual que el resto del texto */
}

.sub_main_nav li a:hover,
.sub_main_nav li.active a
{
	color: #d8d8d8;
	background: #8a1313;

}
.sub_main_nav li a:hover
{
	background: #b01c1c;
}


/* END STAR HEADER STYLES ----------------------------------------------------------------- */

.header_search_container.scrolled{
	opacity: 1;
	/* bottom: -53px; */
}

.header_search_container.active
{
	/* bottom: -53px; */
	opacity: 1;
}

.header_search_content2
{
	position: relative;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: space-around;

}

/* Botón de scroll hacia arriba */
#btnScrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  transform: translateX(-50%);
  z-index: 1000;

  background-color: #dc35469d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;

  cursor: pointer;
  display: none;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s, transform 0.3s;
}

#btnScrollTop:hover {
  background-color: #bd213196;
  transform: translateX(-50%) scale(1.1); /* mantener centrado y escalar */
}

#btnScrollTop svg {
  display: block;
  margin: auto;
  width: 24px;
  height: 24px;
}

/* Botón de scroll hacia arriba */

#perfil_tipo .page-heading {
  background: #587089;
  position: relative;
  z-index: 1;
}
#perfil_tipo h4 {
  color: #ffffff;
  font-size: 14px;
  padding: 5px 0;
  position: relative;
  z-index: 1;
}
/*********************************
section filters styles in home/index.php
*********************************/

body.home-index {
  background-color: #ffffff;
  background-image: url('../assets/img/background.png'); /* Ajusta la ruta si cambia */
  background-repeat: repeat;
  background-size: auto; /* o por ejemplo: 150px 150px si quieres definir el tamaño */
  background-attachment: fixed;
  background-position: top left;
  background-size: 300px 300px;
}

#search-box .page-heading-filter {
  position: relative;
  z-index: 1;
  text-transform: fullwidth;
  font-size: 20px;
  color: var(--colorPrimary);
  font-weight: 600;
  background-color: var(--colorBlanco);
}

#search-box .page-heading {
  background: #2d6bae;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

#search-box h4 {
  color: #ffffff;
  font-size: 14px;
  padding: 5px 0;
  position: relative;
  z-index: 1;
}

#cities-section .page-heading {
  background: #587089;
  position: relative;
  z-index: 1;
}

#cities-section h4 {
  color: #ffffff;
  font-size: 14px;
  padding: 5px 0;
  position: relative;
  z-index: 1;
}

#cities-section .num {
  font-family: 'Montserrat';
  font-size: 13px;
  font-weight: 500;
  padding: 3px 0;
  margin-right: 8px;
  background: var(--colorSecondary);
  color: #fff;
  min-width: 28px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
}

#cities-section .num2 {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 500;
  color: #313131;
}

#cities-section .num2:hover {
  color: #2182ff;
}
/* body {
  background-color: #f3f7f6;
  padding: 20px;
} */
#filtersSection .filter-container {
  background: #f5f5f5;
  border-radius: 10px;
  /*! padding: 30px; */
  /* max-width: 960px; */
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: 80px;
}
#filtersSection .filter-title {
  color: #700d2f;
  font-weight: bold;
  /*! margin-bottom: 25px; */
}
#filtersSection .btn-orange {
  background-color: #ff5b00;
  color: white;
}
#filtersSection .arrow {
  display: block;
  margin: 10px auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #700d2f;
  transition: transform 0.3s;
}
#filtersSection .arrow.up {
  transform: rotate(180deg);
}
#filtersSection .toggle-text {
  cursor: pointer;
  color: #007bff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

#filtersSection .form-control {
	font-size: .8rem !important;
	/* line-height: 1.5; */
	color: #212529;
	background-color: rgb(255, 255, 255) !important;
	border: 1px solid #d9d9d9;
	border-radius: 1rem;
	height: 28px !important;
  }

#filtersSection .form-check-input:checked {
	background-color: #fd0d0d;
  }


#filtersSection .form-check-input {
	margin-top: .25em;
	background-color: #e7e7e7;

  }

#filtersSection .form-select {
	font-size: 13px;
	line-height: 1.5;
	color: #f00;
	background-size: 16px 12px;
	border-radius: 1.25rem;
	height: 28px;
  }

@media (max-width: 768px) {
	#filtersSection .form-check {
	width: 100%;
  }
}

/*********************************
carrusel.php styles
*********************************/
 #carrusel {
	padding: 3rem;
	margin-top: 150px;
}
/*
#carrusel h1{
	font-size: 3rem;
	padding: 2rem;
	text-align: center;
}

#carrusel .image{
	display: block;
	width: 100%;
}

#carrusel .overlay{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition:  .5s ease;
	background-color: rgba(255,255,255,0.9);
}
#carrusel .img-container{
	width: 100%;
	height: 550px;
}
#carrusel .caption{
	font-size: 2rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
/* #carrusel .thumbnail{
	width: 150px;
	height: 150px;
}		   	 */
/* #carrusel .thumbnail:hover{
	transform: translateY(-4x);
}

#carrusel .img-container:hover .overlay{
	opacity: 1;
}  */

#carrusel .image-container{
            /* height: 360px !important;
            object-fit: cover !important;
            object-position: center !important;
            background-color: #ffecec !important;
            padding: none !important;
            border: none !important; */
			border: 8px solid #eaeaea;
			/* width: 220px;
			height:350px; */
			width: 200px;
			height:350px;
			/* border-radius: 15px; */
}

#carrusel .image-container img{
	width: 100%;
    height: 100%;
}

#carrusel .btn{
	padding: 0.55rem;
	display: block;
	width: 100%;
	max-width: 150px;
	text-decoration: none;
	background-color: var(--colorPrimary);
	color: #f3f3f3;
	text-align: center;
	margin: 3px;
	border-radius: 0.25rem;
	cursor: pointer;
	transition: 0.3s;
}

#carrusel .image img{
	object-fit: cover;
}

#carrusel #slider img{
    position: absolute;
    opacity: 0;
    transition: .4s;
}
#carrusel .card-b{
	background-color: #b00f4b;
	background-clip: border-box;
	border:
  1px solid rgba(0, 0, 0, 0.16);
	border-radius:
  1.25rem;
} 
#carrusel .card {

	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap:
  break-word;
	background-color: #d0bdbd;
	background-clip: border-box;
	border:
  1px solid rgba(0, 0, 0, 0.16);
	border-radius:
  1.25rem;
  }

  #carrusel  .bg-light {
	background-color: #f6f6f6 !important;
  }  
/*********************************
3.5 Hamburger
*********************************/

.hamburger
{
	display: none;
	cursor: pointer;
}
.hamburger i
{
	font-size: 20px;
	color: var(--colorPrimary);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.hamburger:hover i
{
	color: var(--colorPrimary);
}

/*********************************
4. Menu
*********************************/

.menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background-color: #FFFFFF; /* color de respaldo si la imagen no carga */
	background-image: url('../assets/img/background.png');
	background-repeat: repeat; /* mosaico */
	background-size: auto; /* mantiene el tamaño original */
	z-index: 101;
	padding-right: 60px;
	padding-left: 50px;
	box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}     

.menu.active
{
	right: 0;
}
.menu_close_container
{
	position: absolute;
	top: 30px;
	right: 260px;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	cursor: pointer;
}
.menu_close
{
	width: 100%;
	height: 100%;
	transform-style: preserve-3D;
}
.menu_close div
{
	width: 100%;
	height: 2px;
	background: #232323;
	top: 8px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close div:last-of-type
{
	-webkit-transform: rotate(90deg) translateX(-2px);
	-moz-transform: rotate(90deg) translateX(-2px);
	-ms-transform: rotate(90deg) translateX(-2px);
	-o-transform: rotate(90deg) translateX(-2px);
	transform: rotate(90deg) translateX(-2px);
	transform-origin: center;
}
.menu_close:hover div
{
	background: #937c6f;
}
.menu .logo
{
	margin-bottom: 60px;
}

.menu_nav ul li {
    list-style: none;
    margin-bottom: 1px; /* menos espacio entre botones */
    width: 150%; /* todos con el mismo ancho */
}

.menu_nav ul li a {
    display: block;
    width: 100%;
	padding: 12px 15px;
    background-color: #314a3c; 
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.menu_nav ul li a:hover {
    background-color: #ce6b3d !important;
    color: #ffffff !important;
    transform: scale(1.03);
}

.menu_nav ul {
    padding-left: 0 !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* centra todos los botones */
}




/* HEADER ESTYLES END*****************************************************************************/

/*  header2.php template   */

.view{
    height: 100%;
}

/*  header2.php template   */
.logo_content{
    background: white;
    height: 100%;
}



/*  top sale template   */
#top-sale .owl-carousel .item .product a {
    overflow: hidden;
}
#top-sale .owl-carousel .item .product img {
    transition: transform 0.5s ease;
}
#top-sale .owl-carousel .item .product img:hover {
    transform: scale(1.1);
}
#top-sale .owl-carousel .owl-nav button {
    position: absolute;
    top: 30%;
    outline: none;
}
#top-sale .owl-carousel .owl-nav button.owl-prev {
    left: 0;
}
#top-sale .owl-carousel .owl-nav button.owl-prev span,
#top-sale .owl-carousel .owl-nav button.owl-next span {
    font-size: 35px;
    color: #003859;
    padding: 0 1rem;
}
#top-sale .owl-carousel .owl-nav button.owl-prev span {
    margin-left: -4rem;
}
#top-sale .owl-carousel .owl-nav button.owl-next {
    right: 0;
}
#top-sale .owl-carousel .owl-nav button.owl-next span {
    margin-right: -4rem;
}

/*   Special Price Section Template */
#special-price .grid .grid-item {
    margin-right: 0.2rem;
    margin-top: 1rem;
    border-radius: 10px;
}

/* sourceMappingURL=style.css.map */

/*  Signup Styles   */

.type_escort {
    background: url(../assets/img/escort.jpg) no-repeat scroll 110px 30px transparent;
    background-color: brown;
}

/*********************************
MODAL.PHP FORM STYLES
*********************************/
.inner {
	font-size: 12px;
	padding: 20px 320px 30px 40px;
	border: 1px solid #ddd;
	border-top: 0;
	min-height: 440px;
	/* width: 100%; */
}

.inner img {
	position: absolute;
	right: -10px;
	bottom: 0;
}

.contenido_inner{
	width: 100%;
}
.btn {
	padding: 6px 10px 5px 10px;
	font-weight: 700;
	color: #fff !important;
	border: 1px solid #ea667d;
	text-transform: uppercase;
	background: #a81c33b9;
	background: -webkit-gradient(linear, left top, left bottom, from(#ed3857), to(#a81c34));
	background: -o-linear-gradient(top,#ed3857 0,#a81c34 100%);
	background: linear-gradient(180deg, #07d500 0, #024b00 100%);
	text-decoration: none;
	text-align: center;
}
.btnPanelRed {
	padding: 6px 10px 5px 10px;
	font-weight: 700;
	color: #fff !important;
	border: 1px solid #ea667d;
	text-transform: uppercase;
	background: #a81c33b9;
	background: -webkit-gradient(linear, left top, left bottom, from(#ed3857), to(#a81c34));
	background: -o-linear-gradient(top,#ff5b77 0, #2e0008 100%);
	background: linear-gradient(180deg, #ed3857  0, #a81c34 100%);
	text-decoration: none;
	text-align: center;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s;
	z-index: 1000;
}

/* Contenedor del popup */
.popup {
	background: white;
	padding: 20px;
	width: 100%;
	max-width: 70%;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	opacity: 0;
	
}

.card-video-wrapper {
    position: relative;
}

.video-icon-overlay {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 0, 0, 0.6);
  color: #fff;
  padding: 14px;
  border-radius: 24%;
  z-index: 20;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-icon-overlay:hover {
  background-color: rgba(86, 25, 25, 0.769);
  /* transform: translate(-50%, -50%) scale(1.1); */
}

.video-icon-overlay i {
  font-size: 1.8rem;
  line-height: 1;
}

.modal-md {
    max-width: 640px;
}

/* .escort-video {
    max-height: 860px;
    object-fit: contain;
    background: #000;
} */
.escort-video {
    max-height: 90vh; /* Altura máxima adaptativa a pantalla */
    object-fit: contain;
    background: #000000;
}


/* Imagen dentro del popup */
/* .popup img {
	width: 100%;
	height: auto;
	border-radius: 10px;
} */

/* Botón de cerrar */
.close-btn {
	background: red;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	margin-top: 10px;
	width: 100%;
	border-radius: 5px;
	font-size: 16px;
}

/* Clase para mostrar el popup con animación */
.overlay.show {
	opacity: 1;
	visibility: visible;
}

.popup.show {
	transform: scale(1);
	opacity: 1;
}

/*********************************
LOGIN-VIEW.PHP FORM STYLES
*********************************/
#formlogin_sign{
	/* width: 500px; */
	width: 100%;
  height: fit-content;
}
#formlogin_sign .container_register{
	margin-top: 90px !important;
}
#formlogin_sign .register-form{
opacity: 1;
left: -50%;
}
#formlogin_sign .wrapper{
    position: relative;
    width: 370px;
    height: 380px;
    background-color: #F3ECEC;
    border-radius: 15px;
    padding: 80px 17px 64px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 15px var(--shadow-color);
    transition: var(--transition-3s);
    overflow: hidden;
	margin-top: 122px;  
	/* margin-top: 120px; ??   */
}
#formlogin_sign .wrapper_info{
	width: 100%;
    position: relative;
    background-color: var(--colorBlanco);
    border-radius: 15px;
    padding: 20px 20px 16px;
    /* border: 1px solid var(--colorPrimary); */
    box-shadow: 0 8px 15px var(--shadow-color);
    transition: var(--transition-3s);
    overflow: hidden;
}
#formlogin_sign .wrapper_reg{
    position: relative;
    width: 400px;
    height: 560px;
    background-color: #F3ECEC;
    border-radius: 15px;
    padding: 80px 30px 64px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 15px var(--shadow-color);
    transition: var(--transition-3s);
    overflow: hidden;
	margin-top: 30px;
}
/* FORM HEADER */
#formlogin_sign .form-header{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 195px;
    height: 34px;
    background-color: var(--primary-color);
    border-radius: 0 0 20px 20px;
}
#formlogin_sign .form-header::before, .form-header::after{
    content: "";
    position: absolute;
    top: 0;
    width: 31px;
    height: 20px;
}
#formlogin_sign .form-header::before{
    left: -29px;
    border-top-right-radius: 63%;
    box-shadow: 15px 0 0 var(--primary-color);
}
#formlogin_sign .form-header::after{
    right: -30px;
    border-top-left-radius: 63%;
    box-shadow: -15px 0 0 var(--primary-color);
}
/* TITLES */
#formlogin_sign .titles{
    position: relative;
    width: 50px;
    background-color: cyan;
}
#formlogin_sign .title-login, .title-register2{
    position: absolute;

    transform: translate(-50%,-50%);
    color: #000000;
    font-size: 24px;
    transition: var(--transition-3s);
}
#formlogin_sign .title-login, .title-register1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #F1EBEB;
    font-size: 16px;
    width: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* FORMS */
#formlogin_sign .login-form, .register-form{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    transition: var(--transition-3s);
}
#formlogin_sign .register-form{
    left: 150%;
}

/* INPUT FIELDS */
#formlogin_sign .input-box{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 26px 0;
	margin-right: 10px;
}
#formlogin_sign .input-box2{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
#formlogin_sign .input-field{
    width: 100%;
    height: 37px;
    font-size: 16px;
    background: #fff;
    color: var(--black-color);
    padding: 0 20px;
    border: 1px solid #979797;
    border-radius: 30px;
    outline: none;
    transition: var(--transition-3s);
}
#formlogin_sign .input-field-textarea{
    width: 100%;
    height: 117px;
    font-size: 16px;
    background: #fff;
    color: var(--black-color);
    padding: 0 20px;
    border: 1px solid #979797;
    border-radius: 30px;
    outline: none;
    transition: var(--transition-3s);
}
#formlogin_sign .input-field:focus{
    border: 1px solid var(--primary-color);
}
#formlogin_sign .label{
    position: absolute;
    top: -60%;
    left: 20px;
    /* transform: translateY(-50%); */
    color: #686868;
    transition: 0.2s;
    cursor: text;
}
#formlogin_sign .input-field:focus ~ .label,
#formlogin_sign .input-field:valid ~ .label{
    top: -20px;
    font-size: 14px;
    /* background-color: var(--white-color);
    color: var(--primary-color); */
    /* padding: 0 10px; */
}
#formlogin_sign .input-field:valid ~ .label{
    color: var(--colorNegro);
}
#formlogin_sign .label-message{
    position: absolute;
    top: -20%;
    left: 20px;
    /* transform: translateY(-50%); */
    color: #686868;
    transition: 0.2s;
    cursor: text;
}
#formlogin_sign .input-field-textarea:focus ~ .label-message,
#formlogin_sign .input-field-textarea:valid ~ .label-message{
    top: -20px;
    font-size: 14px;
    /* background-color: var(--white-color);
    color: var(--primary-color); */
    /* padding: 0 10px; */
}
#formlogin_sign .input-field-textarea:valid ~ .label-message{
    color: var(--colorNegro);
}
#formlogin_sign .icon{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--border-color);
}
#formlogin_sign .icon-eye{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--border-color);
	cursor: pointer
}
  
/* FORGOT PASSWORD & TERMS AND CONDITIONS */
#formlogin_sign .form-cols{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
#formlogin_sign .col-1{
    /* display: flex; */
    /* align-items: center; */
    gap: 6px;
}
/* SUBMIT BUTTON */
#formlogin_sign .btn-submit{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 40%;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-3s);
}

#formlogin_sign .btn-submit:hover{
    gap: 15px;
}
#formlogin_sign .btn-submit i{
    font-size: 20px;
}
/* SWITCH FORM */
#formlogin_sign .switch-form{
    text-align: center;
}
#formlogin_sign a{
    font-weight: 600;
	color: var(--colorNegro);
}
#formlogin_sign a:hover{
    font-weight: 572;
	color: #64000F;
}
#formlogin_sign .col-2{
    font-weight: 600;
	width: 47.667%;
}
#formlogin_sign .col-1a{
	display: flex;
	align-self: center;

  	/* gap: 3px; */
	width: 100%;
}
#formlogin_sign input {
	display: block;
	width: 6%;
	padding: 0.40rem;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	margin-right: 10px;
  }
#inputPhotos input{
	display: block;
	width: 100%;
	padding: 0.40rem;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	margin-right: 10px;
  }
#inputPhotos .label{
    position: absolute;
    top: -60%;
    left: 20px;
    /* transform: translateY(-50%); */
    color: #686868;
    transition: 0.2s;
    cursor: text;
}
/* RESPONSIVE STYLES */
@media only screen and (max-width: 564px){
	
}

div:where(.swal2-container) div:where(.swal2-popup) {
	width: 20em !important;
  }
div:where(.swal2-icon) {
	width: 2em !important;
	height: 2em !important;
	margin: 1.5em auto .6em !important;
  }
  div:where(.swal2-icon) .swal2-icon-content {
	font-size: 1.75em !important;
  }

  


/*********************************
FORMULARIO DE INSCRIPICION STILOS
*********************************/
.headline h1, .headline h2 {
    font-size: 18px;
    color: var(--colorPrimary);
    margin: 5px 30px 30px 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 700;
}
/* form{
	border: 1px solid wheat;
} */
/* label{
	color: red;
} */
.custom-form{
	/* background-color: #f7eae1; */
	background-color: #eaeaea;

	padding: 20px;
	/* border-radius: 20px; */
	width: 100%;
	max-width: 400px;
}

.custom-form input{
	/* background-color: #ffe4e4; */
	border-radius: 5px;
}

.custom-form-profile{
	width: 300px;
	height: 400px;
	background-color: #7b1f00;
}

/*********************************
FORM PROFILE STYLES
*********************************/

/* :root {
	--primary-color: rgb(11, 78, 179);
  } */

  *,
  *::before,
  *::after {
	box-sizing: border-box;
  }

  body {
	font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	display: grid;
	/* place-items: center; */
	min-height: 100vh;
  }
  /* Global Stylings */
  label {
	display: block;
	margin-bottom: 0.5rem;
  }

  input {
	display: block;
	width: 100%;
	padding: 0.40rem;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
  }

  .width-50 {
	width: 50%;
  }

  .ml-auto {
	margin-left: auto;
  }

  .text-center {
	text-align: center;
  }

  /* Progressbar */
  .progressbar {
	position: relative;
	display: flex;
	justify-content: space-between;
	counter-reset: step;
	margin: 2rem 25px 4rem;
	z-index: 1;
  }

  .progressbar::before,
  .progress {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 6px;
	width: 100%;
	background-color: #bacecd;
	z-index: -1;
  }

  .progress {
	background-color: var(--colorPrimary)!important;;
	width: 0px;
	transition: 3s!important;;
	height: 0.3rem !important;
  }

  .progress-step {
	/* width: 2.1875rem; */
	width: 2.7875rem;
	height: 2.7875rem;
	background-color: #bacecd;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .progress-step::before {
	counter-increment: step;
	content: counter(step);
  }

  .progress-step::after {
	content: attr(data-title);
	position: absolute;
	top: calc(100% + 0.5rem);
	font-size: 1rem;
	color: #666;
  }

  /* .progress-step-active {
	background-color: var(--colorPrimary);
	color: #f3f3f3;
  } */

  .progress-step-active {
	font-size: 13px;
    color: #fff;
    background: #3c020c;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff778b), to(#8f0019));
    background: -o-linear-gradient(top, #ed3857 0, #a81c34 100%);
    background: linear-gradient(308deg, #780014 0, #ff6969 100%);
}


  /* Form */
  .form_suscription {
	width: clamp(100%, 30%, 430px);
	width: 100%;
	margin: 0 auto;
	/* border: 1px solid #ccc; */
	border-radius: 0.35rem;
	padding: .5rem;
	background-color:#F3ECEC;
	border-radius: 20px ;
	/* box-shadow: 0 0 10px #737373; */
	box-shadow: 0 8px 15px var(--shadow-color);
	border: 1px solid rgb(0, 0, 0)
  }

  
  .form-step {
	display: none;
	transform-origin: top;
	animation: animate 0.5s;
  }

  .form-step-active {
	display: block;
  }

  .input-group {
	margin: 10px;
	width: 100%;
	max-width: 320px;
  }

  @keyframes animate {
	from {
	  transform: scale(1, 0);
	  opacity: 0;
	}
	to {
	  transform: scale(1, 1);
	  opacity: 1;
	}
  }

/* Button */
#suscription .btns-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 20px;
 }
#suscription .btns-group {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
 }
#suscription .btn {
	padding: 0.55rem;
	width: 120px !important;
 }
 #suscription .btn-gallery {
		padding: 0.55rem;
		width: 30px !important;
 }
#suscription .btn {
	padding: 0.55rem;
	display: block;
	width: 100%;
	max-width: 150px;
	text-decoration: none;
	background-color: var(--colorPrimary);
	color: #f3f3f3;
	text-align: center;
	/* margin: 30px; */
	margin-left: 1px;

	border-radius: 1.25rem;
	cursor: pointer;
	transition: 0.3s;
 }
#suscription .btn:hover {
	box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--colorPrimary);
 }
#suscription #stepfour{
	max-width: 500px;
	padding: 15px;
	margin-top: 10px;
	border-radius: 15px;
	border: 1px solid rgb(0, 0, 0);
 }
#suscription .whatsapp-logo {
    font-size: 25px;
	color: #006d19;
}
#suscription .form-control {
	display: block;
	width: 100%;
	padding:
  .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #979797;
	-webkit-appearance:
  none;
	-moz-appearance:
  none;
	appearance: none;
	border-radius: 1.25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
#suscription .form-select {
	border: 1px solid #979797 !important;
	background-color: #fff !important;
	border-radius: 1.25rem !important;
  }
#suscription .select2-container--default .select2-selection--multiple {
	border-radius: 15px !important;
  }

#suscription .select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 1px solid #979797 !important;
	border-radius: 15px !important;
  }

#suscription .select2-container--default .select2-selection--single {
	border-radius: 20px !important;
  }

#suscription .button {
    width: 20px !important;
    height: 20px !important;
    padding: 1px!important;
  }

#suscription .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	border-right: none !important;
	left: -40px !important;
	top: -3px !important;
  }

#suscription .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
	background-color: #f1f1f100 !important; 
}

#suscription .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 34px !important;
	color: #212529 !important;
}

.icon-search{
	position: absolute;
	top: 52%;
	left: 10px;
	transform: translateY(-50%);
	font-size: 25px;
	color: var(--colorSecondary);
	cursor: pointer
   }
/* PROFILE UPLOAD PICTURE STYLES */


 /* h1, h2{
    text-align: center;
} */
.image-preview{
    background-image: url('images/img/avatar.png');
    width: 14%;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.photo{
    width: 18%;
    height: 27px;
    border-radius: 50%;
}
.modal-content{
    width: 700px;
}
/* .modal-body img{
    width: 100%;
    height: 600px;
} */
 .modal-body img{
    width: 100%;
    height: 100%;
}
/* button{
    width: 62px;
    height: 33px;
    padding: 1px!important;
} */

/* button{
    width: 20px;
    height: 20px;
    padding: 1px!important;
} */
button {
	width: 105px;
	height: 24px;
	padding: 1px !important;
  }
 .button2{
    width: 62px;
    height: 33px;
    padding: 1px!important;
} 


.select2-container .select2-selection--single {
	box-sizing: none;
	
	height: 37px !important;
	
 
  }
/* END PROFILE UPLOAD PICTURE STYLES */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
	box-shadow: 0 0 4px 0 #000;
  	border-radius: 10px;
	height: max-content;

  }

.about .content h2 {
	font-weight: 500;
	font-size: 24px;
  }

  .about .content ul {
	list-style: none;
	padding: 0;
  }

  .about .content ul li {
	margin-bottom: 14px;
	display: flex;
	align-items: center;
  }

  .about .content ul strong {
	margin-right: 10px;
	color: #2a7c95;
  }

  .about .content ul i {
	font-size: 16px;
	font-weight: 700;
	margin-right: 5px;
	color: #a5001ea6;
	line-height: 2px;
  }
#about .vprof_head.info {
  background-position: -36px -312px;
}
#about .vprof_head.contact {
  background-position: 0 -350px;
}
#about .vprof_head.about-me {
  background-position: -290px -70px;
}

#about .vprof_head{
	color: #614545;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 20px;
	padding: 2px 5px 5px 45px;
	margin-top: 5px;
	background: url(../assets/img/profile_icons.png) no-repeat;
	background-color: #ffeded;
	border-radius: 13px;
}
#about .label {
  color: #000000c2;
  display: block;
  float: left;
  width: 170px;
  width: 160px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
}

#about .content2 {
  display: block;
  overflow: auto;
  font-weight: 600;
  color: #8c3838;
  max-width: 213px;
} 

#about li {
  border-bottom: 2px double #d6d6d6;
  padding: 5px 5px 6px 0;
  font-size: 14px;
  overflow: auto;
  background-color: #f1f1f2;
  border-radius: 20px;
}

#about .whatsapp {
  background: url(../assets/img/profile_menu_icons.png?v=2);
  background-position-x: 0%;
  background-position-y: 0%;
  height: 20px;
  /* display: inline-block; */
  background-position: -2556px 0;
  width: 20px;
  float: left;
}

/***************************************
CUSTOM SELECT COMPONENTS (PANEL ESCORT)
****************************************/


  :root {
	--rounded: 0.45rem;
	/*! --border-color: #bab8b8c0; */
	/*! --background: #fefefe; */
	/*! --text-clr: #0a0a0a; */
	--option-hover-clr: #e9e9e9;
  }

  * {
	/* box-sizing: border-box;
	user-select: none; */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }

  body {
	font-family: var(--bs-font-sans-serif);
	min-height:   100vh;
	display: grid;
	/* place-items: center; */
	/* background: linear-gradient(to right, #457fca, #5691c8); */
	/* background: linear-gradient(to right, #457fca, #031770); */

  }

  ul{
	list-style: none;
  }

  .accordion-menu{
	width: 350px;
	min-width: 350px;
	margin: 40px auto 20px;
	padding-left: 0;
	background: #01273d;
	border-radius: 8px;
	/* overflow: hidden; */
	box-shadow: 0 0 10px #000;
  }

  .accordion-menu li:last-child .dropdown{
	border-bottom: 0;
  }

  .accordion-menu li.active .dropdown{
	color: #fff;
  }

  .accordion-menu li.active .dropdown .fa-chevron-down{
	transform: rotate(180deg);
  }

  .dropdown{
	/*! cursor: pointer; */
	display: block;
	padding: 15px 15px 15px 45px;
	font-size: 18px;
	border-bottom: 2px solid #2d374d;
	color: #a6b1b9;
	position: relative;
	transition: all 0.4s ease-out;
  }

  .dropdown i{
	position: absolute;
	top: 20px;
	left: 16px;
  }

  .dropdown .fa-chevron-down{
	right: 12px;
	left: auto;
	transition: transform 0.2s ease-in-out;
  }

  .submenuItems{
	/*! display: none; */
	background: #587281;
	transition: transform 0.2s ease-in-out;
	padding-left: 0;
  }

  .accordion-menu li.active .submenuItems{
	display: block;

  }

  .submenuItems a{
	display: block;
	color:rgb(189, 200, 209);
	/* font-weight: 600; */
	padding: 12px 12px 12px 45px;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
  }

  .submenuItems a:hover{
	background: #ff8b8b;
	color: #fff;
  }


/***************************************
 (wiew_escort.php) STYLES
****************************************/

.view-escorts .card-body a{
	/*! margin: 12px; */
	/*! text-decoration: none; */
	/*! font-size: 10px; */
	/*! background: #396a8d; */
	padding: 5px;
	/*! color: white; */
	border-color: none;
	margin-top: 2px;

}
.view-escorts .card-body-a a {
	text-decoration: none;
	font-size: 12px;
	color: #ffffffb0;
	width: 100%;
	height: 90px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 6px;
	background: linear-gradient(180deg, #1388c1 0%, #000000f0 100%);
	transition: background 0.3s ease, transform 0.2s ease;
}

.view-escorts .card-body-a a:hover {
	background: linear-gradient(180deg, #0074ad 0%, #121a1f 100%);

}
.view-escorts .card-body-b a {
	text-decoration: none;
	font-size: 12px;
	color: #fff;
	width: 100%;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 6px;
	background: linear-gradient(180deg, #821414 0%, #c97575 100%);
	transition: background 0.3s ease, transform 0.2s ease;
}

.view-escorts .card-body-b a:hover {
	background: linear-gradient(180deg, #c66565 0%, #ae2525 100%);

}

#view-escorts .card{
		position: relative;
		display: flex;
		flex-direction: column;
		min-width: 0;
		word-wrap: break-word;
		background-clip: border-box;
		/*! border-radius: .25rem; */	
		max-width: 800px;
		box-shadow: 0 0 10px #000;
}
/* .ql-toolbar.ql-snow {
	border: 1px solid #ccc;
	box-sizing: border-box;
	font-family: 'Helvetica Neue','Helvetica','Arial',sans-serif;
	padding: 8px;
	background: #ffcaca;

 }

.ql-editor {
    box-sizing: border-box;
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
    line-height: 1.42;
    height: 100%;
    outline: none;
    overflow-y: auto;
    padding: 12px 15px;
    tab-size: 4;
    -moz-tab-size: 4;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #ffffff;
} */

.ql-toolbar.ql-snow + .ql-container.ql-snow {
     width: 100%;
	 background: white;
}
.ql-toolbar.ql-snow {
    background: rgb(255, 248, 214);
}
/***************************************
 (suscription_form.php) STYLES
****************************************/

.ck-editor__editable[role="textbox"] {
	/* Editing area */
	min-height: 150px;
}

.col-12 {
    flex: 0 0 auto;
    width: 99%;
}

.row{
	width: 100%;
}
/* editing QUILL editor */
.ql-snow .ql-editor h4 {
    font-size: 1.2em !important;
}

.stars-holder .star {
    display: inline-block;
    background: url(../assets/img/forms_sprite.png) -179px -180px;
    width: 16px;
    height: 16px;
}

/***************************************
 (Gallery_escort.php) STYLES
****************************************/


.badge-photo-status {
    position: absolute;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    padding: 4px 6px;
    z-index: 10;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    cursor: default;
}

/* Posición: esquina superior izquierda */
.badge-photo-status.top-left {
    top: 8px;
    left: 8px;
}

/* Borde del estado aplicado al card */
.badge-approved {
    border: 2px solid #28a745; /* Verde */
}
.badge-pending {
    border: 2px dashed #ffc107; /* Amarillo */
}



.gallery {
	display: inline-block;
	margin-top: 20px;

}
.message_div {
	width: 100%;
	height: 55px;
	margin-top: 20px;
	margin-bottom: 10px;

}
.close-icon {
	border-radius: 50%;
	position: absolute;
	right: 0px;
	top: -5px;
	padding: 5px 8px;
}

.form-image-upload {
	background: #f7eae1 none repeat scroll 0 0;
	padding: 15px;
	/* border-radius: 20px; */
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	width: 230px !important;
	height: 360px !important;
	object-fit: cover !important;
	object-position: center !important;
	background-color: #ffecec !important;
	padding: none !important;
	border: none !important;
}

.thumbnail2>img {
	width: 140px !important;
	height: 190px !important;
	object-fit: cover !important;
	object-position: center !important;
	background-color: #b58c3d !important;
	padding: 5px !important;
	margin: 5px;
	border: none !important;
}

/***************************************
 (filters.php) STYLES
****************************************/
#filter_container .card {

	border: none !important;

  }


#filter_container{
	max-width: 600px;
	/* background-color: #ededed; */
	padding: 25px;
	display: flex;
	align-items: start;

}

#filter{
	margin-top: 250pxs;
	/* display: none; */
}

#filter a{
	color: var(--colorPrimary);
	font-size: 14px;
	/* display: none; */
}

.img-fluid_card {
	width: 100%;
	height: 311px;
	object-fit: cover;
  }
/***************************************
 (Gallery.php) STYLES
****************************************/

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
	:root {
	  --biggest-font-size: 3rem;
	  --big-font-size: 2.5rem;
	  --normal-font-size: 1rem;
	  --small-font-size: .875rem;
	}
  }
  
  /*=============== BASE ===============*/
  /* * {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
  }
  
  body {
	font-family: var(--body-font);
  }
  
  a {
	text-decoration: none;
  } */
  
  #cards-gallery img {
	display: block;
	max-width: 100%;
	height: auto;
  }
  
  /*=============== REUSABLE CSS CLASSES ===============*/
  #cards-gallery .container {
	max-width: 100%;
	/*! margin-inline: 1.5rem; */
  }
  
  #cards-gallery .card-yellow {
	--hue: var(--yellow-color);
  }
  
  #cards-gallery .card-green {
	--hue: var(--green-color) ;
  }
  
  #cards-gallery .card-pink {
	--hue: var(--pink-color);
  }
  #cards-gallery .card-gray {
	--hue: var(--gray-color);
  }

  
  /*=============== CARD ===============*/
  #cards-gallery .card {
	position: relative;
	padding-block: 5rem;
  }
  
  #cards-gallery .card__bg, 
  .card__blur {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
  
  #cards-gallery .card__bg {
	object-fit: cover;
	object-position: center;
  }
  
  #cards-gallery .card__blur {
	backdrop-filter: blur(24px);
  }
  
  #cards-gallery .card__container {
	position: relative;
	display: grid;
	grid-template-columns: 260px;
	justify-content: center;
	gap: 2rem;
	width: 100%;
  }
  .card-header2{
	background-color: #01273d;
	border-top-right-radius: 50px;
	padding: 2px;
	font-size: 18px;
  }
  #cards-gallery .card__article {
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
  }
  
  #cards-gallery .card__img {
	border-radius: 0rem;
	transition: transform .4s;
	width: 340px;
	height: 520px;
	object-fit: cover;
  }
  
  #cards-gallery .card__data {
	color: var(--white-color);
	position: absolute;
	left: 1.5rem;
	bottom: 2rem;
  }
  
  
  #cards-gallery .card__clip {
	position: absolute;
	top: 1rem;
	right: 1rem;
	/*! background-color: hsl(var(--hue), 90%, 50%); */
	/*! box-shadow: 0 0 16px 4px hsl(var(--hue), 90%, 50%); */
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.5rem;
	color: var(--black-color);
	z-index: 5;
	cursor: pointer;
	transition: transform .4s;
  }
  
  #cards-gallery .card__article:hover .card__img {
	transform: scale(1.1);
  }
  
  /*=============== CARD INFO ===============*/
  
  
  #cards-gallery .info__social {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
	display: flex;
	column-gap: .5rem;
  }
  
  #cards-gallery .info__link {
	background-color: white;
	/* box-shadow: 0 0 12px hsl(var(--hue), 90%, 50%); */
	width: 2rem;
	height: 2rem;
	border-radius: .75rem;
	display: grid;
	place-items: center;
	font-size: 1.5rem;
	color: var(--black-color);
	transition: transform .4s;
	margin-bottom: 10px;
  }
 .card.selected-main {
    border: 2px solid #28a745 !important;
    position: relative;
}

.card.selected-main::after {
    content: '✔';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    font-weight: bold;
    color: #28a745;
    background-color: white;
    border-radius: 50%;
    padding: 2px 6px;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
}
 
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 320px) {
	#cards-gallery .container {
	  margin-inline: 1rem;
	}
  
	#cards-gallery .card__container {
	  grid-template-columns: 1fr;
	}
  
	#cards-gallery .info {
	  padding: 1.5rem 1rem;
	}
  }
  
  /* For medium devices */
  @media screen and (min-width: 768px) {
	#cards-gallery .card__container {
	  grid-template-columns: repeat(2, 260px);
	}
  }
  
  /* For large devices */
  @media screen and (min-width: 1150px) {
	#cards-gallery .card {
	  height: 100vh;
	  display: grid;
	  place-content: center;
	}
	#cards-gallery .card__container {
	  grid-template-columns: repeat(4, 340px);
	  align-items: center;
	}
	#cards-gallery .card__article, 
	.card__img {
	  border-radius: 1rem;
	}
	#cards-gallery .card__data {
	  left: 2rem;
	  bottom: 3rem;
	  
	}
	#cards-gallery .card__profession {
	  font-size: var(--normal-font-size);
	}
	#cards-gallery .card__clip {
	  top: 1.5rem;
	  right: 1.5rem;
	}
  
	#cards-gallery .info {
	  padding: 4rem 2rem 2.5rem;
	}
	.info__description, 
	.info__button {
	  font-size: var(--normal-font-size);
	}
	/* .info__description {
	  margin-bottom: 1.5rem;
	} */
	#cards-gallery .info__social {
	  left: 2rem;
	  bottom: 0.5rem;
	  column-gap: .75rem;
	}
	#cards-gallery .form-check-input[type="radio"] {
		border-radius: 10%;
	}

	#cards-gallery .form-check-input {
		width: 1.5em;
		height: 1.5em;
		margin-top: .25em;
		vertical-align: top;
		background-color: red;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		border: 1px solid rgb(0, 0, 0);
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
	  }
  }

/***************************************
 (Gallery en home/index.php) STYLES
****************************************/
.object-cover {
	object-fit: cover;
  }
 
 
  /* .swiper {
	visibility: visible !important;
	opacity: 1 !important;
  }   */
  /* .escort-swiper {
	height: 250px;
	overflow: hidden;
	visibility: visible !important;
	opacity: 1 !important;
  } */

  
  .escort-swiper {
	height: 500px !important;
	overflow: hidden !important;
	position: relative !important;
  }
  
  .escort-swiper .swiper-wrapper {
	height: 100% !important;
	display: flex !important;
  }
  
  .escort-swiper .swiper-slide {
	flex-shrink: 0 !important;
	width: 100% !important;
	height: 100% !important;
	position: relative !important;
  }
  
  .escort-swiper .swiper-slide img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
  }

/* .swiper {
  height: 250px;
  overflow: hidden;
}

.escort-swiper .card {
  border-radius: 1rem;
  overflow: hidden; */
  /* transition: transform 0.3s ease; */
  /* width: 311px;
  height: 533px;
} */
/* .card:hover {
  transform: scale(1.02);
} */
/* 
.object-fit-cover {
	object-fit: cover;
  } */



.verified {
    background: url(../assets/img/verified.png) no-repeat scroll 0 0 transparent;
	opacity: rgba(34, 34, 34, 0.055);
    top: 24px;
    left: 0px;
    height: 88px;
    width: 90px;
    position: absolute;
    z-index: 10;
    background-size: contain;
    pointer-events: none;
}

.verified_preview {
    background: url(../assets/img/verified.png) no-repeat scroll 0 0 transparent;
	opacity: rgba(34, 34, 34, 0.055);
    top: 0px;
    left: 0px;
    height: 48px;
    width: 50px;
    position: absolute;
    z-index: 10;
    background-size: contain;
    pointer-events: none;
}
.badge-plan {
  position: absolute;
  z-index: 10;
  bottom: 3px;
  right: -3px;
}
.badge-plan img {
    width: 80px;
    height: auto;
    border-radius: 0.4rem;
	z-index: 10;
}

.escort-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.escort-card {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .escort-card {
    flex: 1 1 calc(50% - 1rem);
	
  }
}

@media (min-width: 992px) {
  .escort-card {
    flex: 1 1 calc(33.333% - 1rem);

  }
}

/***************************************
 (escorts/profile.php - escorts/views) STYLES
****************************************/
.emoji-content {
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
    font-size: 1rem;
}

.cleared-element:after {
  clear:both;
  display:table;
  content:''
}

.breadcrumbs {
  margin: 0 0 13px -13px;
  float: left;
}

.breadcrumbs .element::after {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 100%;
  top: 0;
  left: 100%;
  background: url(../assets/img/profile_icons.png) -1px -234px;
}

.breadcrumbs .element:first-child::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 100%;
  left: 0;
  background: url(../assets/img/profile_icons.png) 0 -197px;
}

.breadcrumbs .element::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 21px;
  top: 0;
  left: -10px;
  background: url(../assets/img/profile_icons.png) 0 -197px;
}

.breadcrumbs .element:first-child {
  padding-left: 20px;
}

.breadcrumbs .element {
  display: inline-block;
  padding: 3px 18px 3px 16px;
    padding-left: 16px;
  background: #01524b;
  font-size: 13px;
  font-family: "Trebuchet MS";
  color: #fff;
  position: relative;
  margin-right: 11px;
  height: 21px;
}

.breadcrumbs .element.active {
  background: #600;
  padding-right: 8px;
}

.breadcrumbs .element.active::after {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 100%;
  top: 0;
  left: 100%;
  background: url(../assets/img/profile_icons.png) -1px -309px;
}

.breadcrumbs .element.active::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 21px;
  top: 0;
  left: -10px;
  background: url(../assets/img/profile_icons.png) 0 -272px;
}

@keyframes ring {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.vibrate-icon {
  display: inline-block;
  animation: ring 0.5s infinite;
  transform-origin: center;
}

/* Mostrar siempre las flechas SOLO si están habilitadas */
.lb-prev, .lb-next {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ocultar flechas si están deshabilitadas por Lightbox */
.lb-disable {
  display: none !important;
}

.card-body {
  padding: 0 .3rem !important;
  border-radius: 12px 12px 0px 0px;
  background: linear-gradient(45deg, #cdcdcd, #E0E0E0, #F8F8F8, #c7c7c7);
  /* background: linear-gradient(45deg, #C0C0C0, #E0E0E0, #F8F8F8, #C0C0C0); */
  /*! background-color: #ececea; */
  /* background: linear-gradient(45deg, #BC4343, #E0E0E0, #F8F8F8, #711616); */

  /*! box-shadow: 0 0 10px #000; */
}

.card-footer:last-child {
  border-radius: 0px 0px 17px 17px;
  /* background: linear-gradient(45deg, #C0C0C0, #E0E0E0, #F8F8F8, #C0C0C0); */
  background: linear-gradient(45deg, #cecdcd, #E0E0E0, #F8F8F8, #c0bfbf);
  color: #2F4F4F; /* Gris oscuro para contraste */
  border: 1px solid #A9A9A9;
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}

h5{
  margin-top: 0 !important;
  margin-bottom: .5rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: black !important;
}

#card .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #f2f2f2;
  background-clip: border-box;
  border: 1px solid rgba(255, 88, 88, 0.13)!important;
  border-radius: 1.25rem !important;
  box-shadow: 0 .125rem .25rem rgb(66, 25, 25) !important;
}

#card .text-muted {
  color: #313131 !important;
  font-size: 14px;
  font-weight: 600;
}

#card .card-footer:last-child {
	border-radius: 0px 0px 15px 15px !important;
}


#filtros{
border-color: #e5e5e5;
    border-style: solid;
    border-width: 2px;
    border-radius: 0px !important;;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    background-color: #F3ECEC;
    /*! margin: 3px 0px 4px 11px; */
	scroll-behavior: auto !important;
    /* padding: 14px 0 28px 18px; */
}

#filtrosExpandibles .toggle-link2{
  text-decoration: none;
  font-weight: 600;
  color: #7e3131;
  transition: color 0.3s ease;
}

.filtros_box{
	background-color: #d8d8d8;
	border-color: #eaeaea;
	border-style: solid;
	border-width: 2px;
	border-radius: 0px !important;;
	-moz-border-radius: 13px;
	-webkit-border-radius: 13px;
	padding: 30px;
}
#search-box
{
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}


#filtros .main{
	font-size: 14px;
	font-weight: 600;
	color: #663333;
}
#filtros .toggle-link {
  text-decoration: none;
  font-weight: 700;
  color: #7e3131;
  transition: color 0.3s ease;
}

#filtros .toggle-link:hover {
  color: #4e0000; /* dorado */
}

#filtros.toggle-link .icon {
  display: inline-block;
  transition: transform 1.3s ease;
}

#filtros.toggle-link .expanded .icon {
  transform: rotate(180deg);
}

.icon-rotate {
  transition: transform 0.3s ease;
}
.icon-rotate.rotated {
  transform: rotate(180deg);
}

#filtros .collapse:not(.show) {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
#filtros .collapse.show {
  height: auto;
  transition: height 0.4s ease;
}

#filtros .highlight {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
  transition: box-shadow 0.8s ease;
}

/***************************************
 CHOOSE_PLAN.PHP STYLES
****************************************/

#payment-container .features {
    list-style: none;
    line-height: 1.3;
    /* margin: 20px 0 0 36px; */
    min-height: 238px;
}

#payment-container .ribbon {
  width: 160px;
  height: 40px;
  background: #999;
  color: white;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  top: 19px;
  left: -40px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

#payment-container .ribbon.bronze {
  background-color: #cd7f32;
}

#payment-container .ribbon.silver {
  background-color: #c0c0c0;
}

#payment-container .ribbon.gold {
  background-color: #ffd700;
}

#payment-container .card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
	box-shadow: 0 0 18px 0 #000;

}

/* #payment-container .ribbon {
  position: absolute;
  top: -10px;
  left: -10px;
  padding: 5px 15px;
  font-weight: bold;
  color: white;
  transform: rotate(-45deg);
  z-index: 1;
} */

#payment-container .ribbon.bronze {
  background-color: #cd7f32;
}

#payment-container .ribbon.argent {
  background-color: #c0c0c0;
}

#payment-container .ribbon.gold {
  background-color: #ffd700;
}

#payment-container .bg-bronze-custom {
  background-color: #cd7f32; /* color bronce real */
  color: white; /* texto blanco si lo necesitas */
}

#payment-container .bg-argent-custom {
  background-color: #5f5f5f;
  color: black;
}

#payment-container .bg-gold-custom {
  background-color: #ffcc00;
  color: black;
}

/***************************************
 MODAL TERMINOS Y CONDICIONES SIGNUP.PHP STYLES
****************************************/
.custom-height-modal {
  height: 100vh;
  max-width: 400px;
}
.custom-height-modal .modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.custom-height-modal .modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
}

/***************************************
 moderarFotos.PHP STYLES
****************************************/
.photo-item {
    position: relative;
}

.approved-badge,
.disapproved-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 2px 8px;
    font-weight: bold;
    z-index: 10;
    color: green;
}

.disapproved-badge {
    color: red;
}

/* Color del switch cuando está inactivo */
.switch-inactivo {
    background-color: #adb5bd !important;
    border-color: #adb5bd !important;
}

/* Color del switch cuando está activo */
.switch-activo {
    background-color: #198754 !important; /* verde Bootstrap */
    border-color: #198754 !important;
}

/* Para mejorar transición */
.form-check-input {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.escort-vista {
    color: rgb(16, 0, 247) !important;
    font-style: italic;
    text-decoration: none;
}

/* Estilos para Lieux de travail en Edit.php */
/* Menú propio para no pelear con .dropdown-menu de Bootstrap */
.typeahead-menu{
  position: absolute;
  left: 0; right: 0; top: calc(100% + 4px);
  max-height: 260px; overflow: auto;
  display: none;            /* oculto por defecto */
  z-index: 5000;            /* por encima de los chips */
  background: #fff;
  border: 1px solid #dee2e6; border-radius: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.typeahead-menu.show{ display:block; }

.typeahead-menu .item{
  display:block; width:100%; padding:.5rem .75rem;
  cursor:pointer; border:0; background:transparent; text-align:left;
}
.typeahead-menu .item:hover{ background:#f5f5f7; }

.remove-btn{
  display:inline-block;
  width:20px;
  height:20px;
  margin-left:5px;
  background:url(../assets/img/forms_sprite.png) -269px -88px no-repeat;
  color: #2e0008;
  text-decoration:none;      /* sin subrayado */
  cursor:pointer;
  vertical-align:middle;
  z-index: 50;
}

.remove-btn:hover{ background-position:-239px -118px; 
}

.form-check-item {
  display: block;
  min-height: 1.5rem;
  /* padding-left: 1.5em; */
  margin-bottom: .125rem;
}

/* estilo general del chip */
.chip-li {
  border: 1px solid #dee2e6;
  transition: background-color .15s ease, border-color .15s ease;
}
/* cuando es la villa de base */
.chip-li.is-base {
  background: #ffe6e6;      /* fondo rojito */
  border-color: #dc3545;    /* borde rojo */
}

  /* en admin/index.php Ajustes finos del badge (del numero de escorts) sobre el enlace */
  a.create-text2 .badge {
    font-size: 1rem;
    padding: .35em .45em;
  }
  /* Si quieres que no se salga tanto hacia la derecha, acércalo: */
  a.create-text2 .badge {
    transform: translate(-100%, -10%) !important; /* prueba -60%,-40% */
  }

footer {
  margin-top: 20px;	
  background: #fff;
  text-align: center;
  color: #000000;
  padding: 15px;
  
  height: max-content;
}	

footer .logo {
  padding: 5px 0;
  display: inline-block;
  }

footer .logo img {
  max-width: 234px;
  display: block;
  height: auto;
}

footer ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-justify-content: space-around; */
  -ms-flex-pack: distribute;
  justify-content: center;
  font-size: 9px;
  text-transform: uppercase;
  padding-left: initial !important;
  margin-bottom: 5px;
  background-color: #4b4c4c;
}

footer ul a {
  margin: 5px;
}

footer ul a:hover {
  color: #c20000 !important;

}

footer p {
  margin-bottom: inherit;
}

footer p a {
  color: #707070 !important;
  font-size: 10px;
}

#legal-page {
  
  margin: 10px, 10px, 10px, 10px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 2px solid #740000;
  box-shadow: 0 0 10px rgba(128, 0, 0, 0.1);
}

#legal-page .modal-header {
  border-bottom: 2px solid #740000;
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
}

#legal-page h2 {
  color: #8d0000;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 0px;
}

#legal-page p {
  font-family: var(--bs-font-sans-serif);		
  line-height: normal;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
  font-size: 14px;
}

#legal-page ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #000000;
  font-size: 14px;
  line-height: normal;
}