@charset "UTF-8";

/*------------------------------------------------------------------
Proyecto:	LOGIN LSP2
Versión:	1.0
Inicio:		10/10/2024
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
 1.  Variables genéricas ROOT
 2.  Fondo pop-up 
 3.  Popup Container
 4.  PopupCloseInside: Popup Botón cerrar ventana
 5.  PopupBanner: Cuerpo del popup
 6.  Flex box / grid
 7.  Rows
 8.  Cols
 9.  Botones
 10. Formularios
 11. Imagen de background para Columna derecha
 12. Márgenes
 13. Paddings
 14. Alineando textos
 15. Anchos y Largos
 16. Text-color
 17. Backgrounds
 18. Border radius
 -------------------------------------------------------------------*/


 /*-------------------------------------------------------
 1. Variables genéricas ROOT
--------------------------------------------------------*/

:root {
  --bs-btn-hover-rgb:32, 32, 32;
  --bs-fondo-ventana-rgb:33, 41, 52;
  --bs-bg-btn-close-rgb:17, 17, 17;
  --bs-color-btn-close-rgb:255, 199, 0;
  --bs-color-btn-close-rgb-tulotero:193, 220, 255

}

 /*-------------------------------------------------------
 2. Fondo pop-up 
--------------------------------------------------------*/

.Popup-tc {
    --bs-bg-opacity:0.65;
    background-color: rgba(var(--bs-fondo-ventana-rgb), var(--bs-bg-opacity)) !important;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    display: flex;
    position: fixed;
    z-index: 999;
}

 /*-------------------------------------------------------
 3. Popup Container
--------------------------------------------------------*/

.PopupContainer {
  position: fixed;
  inset: 0px;
  z-index: 2000000000;
}

.PopupScrollableWrapper {
  overflow: hidden auto;
  height: 100%;
}

.PopupInner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  box-sizing: border-box;
}

.PopupContent {
  flex: 0 1 0%;
  position: relative;
  z-index: 1;
  max-width: 100%;
  pointer-events: all;
}

 /*-------------------------------------------------------
 4. PopupCloseInside: Popup Botón cerrar ventana
--------------------------------------------------------*/

.PopupCloseInside {
  position: sticky;
  z-index: 10;
  top: 0px;
  height: 0px;
}

.PopupCloseInsideInner {
  position: absolute;
  top: 12px;
  right: 12px;
}

.PopupClose {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  padding: 0px;
  border: medium;
  border-radius: 50%;
  cursor: pointer;
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-bg-btn-close-rgb), var(--bs-bg-opacity));
  color: rgba(var(--bs-color-btn-close-rgb), var(--bs-bg-opacity));
  
}
.PopupClose.closeTuLotero {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-bg-btn-close-rgb), var(--bs-bg-opacity));
  color: rgba(var(--bs-color-btn-close-rgb-tulotero), var(--bs-bg-opacity));
}


.PopupClose:hover{
  --bs-bg-opacity:0.8;
  background-color: rgba(var(--bs-btn-hover-rgb), var(--bs-bg-opacity)) !important;
}

.CloseIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.IconContainer {
  width: 16px;
  height: 16px;
}

.IconContainer > div {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  width: inherit;
  height: inherit;
}

.IconContainer img, .IconContainer svg {
  display: block;
  object-fit: contain;
  width: 16px;
  height: 16px;
}

.CloseIcon svg {
  fill: currentcolor;
}

 /*-------------------------------------------------------
 5. PopupBanner: Cuerpo del popup
--------------------------------------------------------*/

.PopupBanner {
  position: relative;
  -moz-box-flex: 1;
  flex-grow: 1;
  height: 100%;
  overflow: auto;
}

.PopupBlock {
  display: flex;
  position: relative;
  width: 100%;
}

.PopupBannerContainer{
  min-width: 200px; 
  min-height: 100%; 
  max-width: 100%; 
  text-align: start; 
  justify-content: start; 
  flex-shrink: 0; 
  height: auto;
}

.PopupBannerContainer_bg {
  scrollbar-width: thin;
  scrollbar-color: rgba(183, 183, 183, 0.7) transparent;
}

.Background_Container {
  position: absolute;
  inset: 0px;
  border-radius: inherit;
  overflow: hidden;
}

.Popup_bgcolor {
  position: absolute;
  inset: 0px;
  display: block;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 1rem; 
  background-color: rgb(255, 199, 0);
}

.Popup_bgcolor.bg_TuLotero{
  background-color: rgb(193, 220, 255);
}

.Popup_bgcolor.bg_1500{
  background-color: rgb(104, 23, 103);
}

.Popup_bgcolor.bgChequeRPS{
  background-color: rgb(193, 220, 255);
}

.PopupBanner div:empty {
  display: block;
}

.Background_overlay {
  position: absolute;
  inset: 0px;
  display: block;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0);
}

.PopupBanner div:empty {
  display: block;
}

.Background_ContentContainer {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.PopupBannerContainer_bg {
  scrollbar-color: rgba(183, 183, 183, 0.7) transparent;
  border-width: 0px; 
  border-color: transparent; 
  border-radius: 0px; 
  padding: 40px; 
  width: 320px; 
  overflow: hidden auto;
}

.PopupBannerContainer_bg.width_420{
  width: 420px; 
}

.Background_Content {
  width: 100%;
  transition: transform 0.3s linear;
}

.PopupContent {
  pointer-events: all;
}

.PopupBlock {
  display: flex;
  position: relative;
  width: 100%;
}


.Popup_img {
  width: 100%;
  height: 100%;
  display: flex;
  -moz-box-flex: 1;
  flex-grow: 1;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  position: relative;
}

.PopupBlock {
  display: flex;
  position: relative;
  width: 100%;
}


.PopupBlock {
  display: flex;
  position: relative;
  width: 100%;
}

.Popup_contenedor_codigo {
  cursor: pointer;
  position: relative;
  border-style: dashed;
  border-width: 1px;
  overflow: hidden;
  outline: none;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  padding: 12px 8px; 
  border-color: rgba(17, 17, 17, 0.5); 
  border-radius: 0.4rem; 
  width: 100%; 
  font-size: 18px; 
  color: rgb(17, 17, 17); 
  background-color: rgba(17, 17, 17, 0.05);
}

.Popup_inner_codigo {
  position: relative;
  text-align: center;
  flex: 1 1 0%;
  min-width: 0px;
}

.Cupon_click_paracopiar {
  line-height: 1;
  font-size: 11px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 4px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Cupon_code {
  line-height: 1.32;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal; font-style: normal; transform: translateY(6px);
}

.Popup_inner_codigo {
  text-align: center;
}

.PopupBlock {
  display: flex;
  position: relative;
  width: 100%;
}

.PopupBlock > .Block_0 {
  margin: 20px 0px 0px;
}

.Popup-btn {
  position: relative;
  height: fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0.6rem 0px;
  line-height: 1.32;
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
  border-style: solid;
  border-radius: 0.4rem; 
  border-color: rgba(0, 0, 0, 0); 
  line-height: 1.32; 
  color: rgb(255, 255, 255); 
  font-family: inherit; 
  font-weight: normal; 
  font-size: 18px; 
  background-color: rgb(17, 17, 17); 
  border-width: 1px; 
  min-width: 100%;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.Popup-btn.Popup-btn-hover-orange:hover, .Popup-btn.Popup-btn-hover-orange:focus:hover {
    color: #ffffff !important;
    --bs-bg-opacity:1;
    background-color: rgba(var(--bs-btn-hover-rgb), var(--bs-bg-opacity)) !important;
    border-color: rgba(var(--bs-btn-hover-rgb), var(--bs-bg-opacity)) !important
}
  
.Popup-btn.Popup-btn-hover-dark:hover {
    color: #ffffff ;
    background-color: #202020 ;
    border-color: #202020;
}


/* ROLLER EFFECT*/

.Popup-btn-text-roller, .Popup-btn-text-roller a {
  transition: all 0.3s;
}

.Popup-btn-text-roller {
  overflow: hidden;
}

.Popup-btn-text-roller:hover span {
  transform: rotateX(90deg) translateY(-12px);
}

.Popup-btn-text-roller span {
  position: relative;
  display: inline-block;
  padding: 0;
  transition: transform 0.3s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}

.Popup-btn-text-roller span::before{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  transition: color 0.3s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
}


.Block_Maincontent{
  display: block; align-content: flex-start;
} 

.Block_Maincontent_wrapper{
  min-width: auto; min-height: auto; max-width: fit-content; text-align: center; justify-content: center; height: auto; align-items: center; max-height: fit-content;
}

.ImgContainer{
  padding-top: 0px; height: auto;
}

.Popup_MainMensaje{
  min-width: auto; 
  min-height: auto; 
  max-width: 100%; 
  text-align: center; 
  justify-content: center; 
  font-size: 32px; 
  line-height: 1.32; 
  color: rgb(17, 17, 17);
}

.Popup_espacio{
  flex-basis: 4px; align-self: normal; height: 4px;
}

.Popup_Codigo_descuento{
  min-width: auto; 
  min-height: auto; 
  max-width: 100%; 
  text-align: center; 
  justify-content: center; 
  font-size: 20px; 
  line-height: 1.32; 
  color: rgb(17, 17, 17);
  font-weight:500
}

.Popup_Codigo_legal{
  min-width: auto; 
  min-height: auto; 
  max-width: 100%; 
  text-align: center; 
  justify-content: center; 
  font-size: 13px; 
  line-height: 1.32; 
  color: rgb(17, 17, 17);
}

.Popup_Codigo_descuento_peq{
  min-width: auto; 
  min-height: auto; 
  max-width: 100%; 
  text-align: center; 
  justify-content: center; 
  font-size: 16px; 
  line-height: 1.32; 
  color: rgb(17, 17, 17);
}

.Popup_Id_codigo{
  min-width: auto; min-height: auto; max-width: 100%; text-align: center; justify-content: center;
}

.Popup_Wrapper_button{
  min-width: auto; min-height: auto; max-width: 100%; text-align: center; justify-content: center;
}