body{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.text-shadow{
    text-shadow: 2px 2px 5px black;
}

#game-container{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#loader-container{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white;
    background-image: url("../Assets/Images/personalizacion/Fondo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}

.body-modal-container{
    width: 95%;
    height: 60vh;
    overflow: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

#modal-documentos-body{
    display: flex;
    justify-content: center;
    align-items: center;
}

#UI-container{
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*justify-content: flex-end;*/
}

.button-pabellon{
    height: 8rem;
    width: 8rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 1rem;
}


/*Estilos del navbar carrito y opciones*/
.o-button-cart{
    width: 6em; 
    height: 2.5em; 
    background-color: #f58634;
    border-radius: 2rem; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.o-button-navbar{
    border: none;
    display: flex !important;
}

.o-button{
    /* width: 100px;
    height: 50px; */
    pointer-events: auto;
    touch-action: auto;
}

.o-button-transp{
  border: none;
   background-color: transparent;
}
/*Estilos del navbar carrito y opciones*/


/*Estilos collapse carrito de compra/búsqueda ************************************/
.o-container-shopping-cart {
    width: 75%;
    max-width: 400px;
    max-height: 65vh;
    align-self: flex-end;
    margin-top: 5px;
    margin-right: 10px;
    overflow: hidden;
    pointer-events: auto;
}
  
.o-container-search{
    width: 100%;
    max-width: 500px;
    max-height: 65vh;
    align-self: flex-end;
    margin-top: 5px;
    overflow: hidden;
    pointer-events: auto;
}
  
.o-card-body{
    border-top: 4px solid #f58634;
    width: 100%;
    height: 100%;
}
  
.o-container-products-cart{
    width: 100%;
    min-height: 50px;
    border-bottom: 1px solid gray;
    /* padding-bottom: 1rem; */
    margin-bottom: 1rem;
    overflow: auto;
}
  
.o-container-products-search{
    width: 100%;
    /* min-height: 50px; 
    border-bottom: 1px solid gray; 
    padding-bottom: 1rem;
    margin-bottom: 1rem; */
    overflow: auto;
}
  
.o-product-shopping{
    width: 100%;
    height: 3rem;
    /* background-color: aqua; */
    display: flex;
    margin-bottom: 1rem;
}
  
#o-cart-button{
    width: 50%;
    height: 2rem;
    font-size: .7rem;
    background-color: #f58634;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}
  
.o-div-image{
    height: 100%; 
    width: 20%;
    /* background-color: gray; */
    display: flex;
    align-items: center;
}
  
.o-resume-product{
    height: 100%; 
    width: 70%; 
    padding-left: 6px;
}
  
.o-resume-title{
    font-size: .6rem; 
    margin-bottom: .2rem;
}
  
.o-resume-price{
    font-size: .7rem;
}
  
.o-div-close{
    height: 100%; 
    width: 10%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
  
.o-image-cart{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
  
.label-search{
    font-size: .8rem;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: lightgrey;
    padding: .3rem;
    text-align: left;
}
  
@media only screen and (orientation: landscape) and (max-width: 800px) and (max-height: 320px) {
    .o-container-shopping-cart{
        max-height: 50vh;
    }
    .o-container-search{
        max-height: 50vh;
    }
}
  /*Estilos collapse carrito de compra/búsqueda ************************************/



/*ESTILOS DEL CHAT*/
.form-mensajes {
    background: rgba(0, 0, 0, 0.15);
    padding: 0.25rem;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 3rem;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}

.input-mensajes {
    border: none;
    padding: 0 1rem;
    flex-grow: 1;
    border-radius: 2rem;
    margin: 0.25rem;
}
.input-mensajes:focus {
    outline: none;
}
.form-mensajes > button {
    background: #333;
    border: none;
    padding: 0 1rem;
    margin: 0.25rem;
    border-radius: 3px;
    outline: none;
    color: #fff;
}

.notification-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: red;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}

#container-form-messages{
    width: 365px; 
    height: 60vh; 
    position: relative;
    overflow: hidden;
}

.imessage {
    display: flex;
    flex-direction: column;
    /*font-family: "SanFrancisco";*/
    overflow: auto;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    padding: 0.5rem 1.5rem;
    width: 98%;
    height: 90% !important;
}

  
.imessage p {
    border-radius: 1.15rem;
    line-height: 1.25;
    max-width: 75%;
    padding: 0.5rem .875rem;
    position: relative;
    word-wrap: break-word;
}
  
.imessage p::before,
.imessage p::after {
    bottom: -0.1rem;
    content: "";
    height: 1rem;
    position: absolute;
}
  
p.from-me {
    align-self: flex-end;
    background-color: #248bf5;
    color: #fff; 
}
  
p.from-me::before {
    border-bottom-left-radius: 0.8rem 0.7rem;
    border-right: 1rem solid #248bf5;
    right: -0.35rem;
    transform: translate(0, -0.1rem);
}
  
p.from-me::after {
    background-color: #fff;
    border-bottom-left-radius: 0.5rem;
    right: -40px;
    transform:translate(-30px, -2px);
    width: 10px;
}
  
p[class^="from-"] {
    margin: 0.5rem 0;
    width: fit-content;
}
  
p.from-me ~ p.from-me {
    margin: 0.25rem 0 0;
}
  
p.from-me ~ p.from-me:not(:last-child) {
    margin: 0.25rem 0 0;
}
  
p.from-me ~ p.from-me:last-child {
    margin-bottom: 0.5rem;
}
  
p.from-them {
    align-items: flex-start;
    background-color: #e5e5ea;
    color: #000;
}
  
p.from-them:before {
    border-bottom-right-radius: 0.8rem 0.7rem;
    border-left: 1rem solid #e5e5ea;
    left: -0.35rem;
    transform: translate(0, -0.1rem);
}
  
p.from-them::after {
    background-color: #fff;
    border-bottom-right-radius: 0.5rem;
    left: 20px;
    transform: translate(-30px, -2px);
    width: 10px;
}
  
p[class^="from-"].emoji {
    background: none;
    font-size: 2.5rem;
}
  
p[class^="from-"].emoji::before {
    content: none;
}
  
.no-tail::before {
    display: none;
}
  
.margin-b_none {
    margin-bottom: 0 !important;
}
  
.margin-b_one {
    margin-bottom: 1rem !important;
}
  
.margin-t_one {
    margin-top: 1rem !important;
}


.userNameMessage{
    font-size: 0.8rem !important;
}




::-webkit-scrollbar {
    width: 10px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 

}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(56, 56, 56); 
    border-radius: 10px;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background:rgb(90, 90, 90); 
}

/*ESTILOS DEL CHAT*/




/*ESTILOS PARA EL JUGADOR*/
.name-tag-player{
    background-color: rgba(0,0,0,0.1);
}

.name-button-player{
    border-radius: 8px; 
    width: 10rem;
    height: 2.5rem;
    background-color: cornsilk !important;
    color: black !important;
    border: none;
    font-size: 1.2rem;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis !important;
    font-weight: bolder !important;
}


/*ESTILOS DE LAS ALERTAS***********/
#alerts-container{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
}


/*ESTILOS DEL VIDEO TUTORIAL***********/
.video-2D{
    max-height: 75vh;
    height: 70vh;
    max-width: 100%;
    margin-bottom: .5rem;
}




