body {
  /* display: flex; */
  /*align-items: center; */
  /* padding-top: 40px; */
  /* padding-bottom: 40px; */
  background-color: #f5f5f5;
  /* font-family: Amiri, Georgia, "Times New Roman", serif; */
  font-family: 'Exo', sans-serif;
        
}

.backgroundmain{
  position: relative;
  min-height: 100vh;
  margin: 0px;
}

.backgroundmain::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/img/Background-Maldives-recto.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.3;
  z-index: -1;
  /* To fix the background so the text scrolls without moving it*/
  background-attachment: fixed;
}

.containerbase2{
  padding: 0px
}
.nav-bar-header {
  /* position: relative */
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color:darkslategray ;
  padding: 10px;
  padding-left: 40px;
  padding-right: 40px;
  /* To fix the navigation bar although you scroll down*/
  position: sticky;
  top: 0;
  /* Max visualization priority for the navigation bar */
  z-index: 3000;
  height: 16vh;
  max-height: 150px
}

.logocontainer{
  /* width: 30% */
  height: 90%;
}

.logo-nav{
  /* width: 200px; */
  /* width: 100%; */
  /* height: 20%; */
  height:100%
}

.textlogo-cont{
  display:flex;
  /* flex-direction: row; */
  height: 90%;
  margin-left: 30px;
  align-items: center;
}

.textlogo-cont2{
  text-align: center;
  line-height: 1.2;
}

.LogoCapitalLetter{
  font-size: 40px;
  color: #01f8ef;
  display: inline;
  letter-spacing: -5px;
}

.LogoSmallLetter{
  font-size: 18px;
  color: gainsboro;
  display: inline;
  letter-spacing: normal;
}

.navcontainer{
  /* width: 70%; */
  display: flex;
  flex-direction: row;
  justify-content: right;
  margin-left: auto;
}

.mobilemenu{
  display: none;
}

.IGLogo{
  height:100%;
}

.IGMobile{
  height: 35px;
  margin-right: 20px;
}

.menu-toggle{
  color: gainsboro;
  font-size: 35px;
  margin-left: auto;
}

.mobilemenucontainer{
  background-color: darkslategray;
  padding: 10px;
  border-style: solid;
  border-color: gainsboro;
  border-width: 2px;
  border-radius: 10px;
}

.nav-bar-item {
  padding-right: 20px;
  color: gainsboro;
  font-weight: bold;
  text-decoration: none;
}

.nav-bar-item:hover{
  color: #01f8ef;
}

.Main-Header{
  position: relative;
  z-index: 1;
  text-align: center;
  color: darkslategray;
  font-weight: bold;
  font-size: 2.5rem;
  padding: 15px;
}

.MainContainer{
  margin: 30px;
}

.AdminMenu1{
  display: flex;
  justify-content: center;
}

.AdminMenu2{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 300px;
}

.AdminMenuOption{
  width: 300px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid gainsboro;
  border-radius: 10px;
  color: gainsboro;
  text-decoration: none; /* Elimina el subrayado */
  background-color: blue;
  margin: 2px;
  font-weight: bold;
}

.AdminMenuOption:hover{
  background-color:darkblue;
}

.OptionNewPost{
  background-color:darkslategray;
}

.OptionNewPost:hover{
  background-color:#01f8ef;
  color: black
}

.ImagePost{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.PostDetailContainer{
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.PostPlaceCountry{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.5rem;
}

.PostPlaceDate{
  margin-top: 10px;
  text-align: center;
  /* font-weight: bold; */
}

.FotoListPost{
  height: 160px;
  object-fit: contain;
}

.PostContent{
  margin-top: 40px;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  /* border-top: 1px darkslategray solid; */
  padding-bottom: 20px;
  border-bottom: 1px darkslategray solid;
  text-align: justify;
}

.CommentsBox{
  margin-top: 15px;
}

.NumComments{
  padding-left: 10px;
}

.Comment{
  margin-left: 30px;
  margin-top: 15px;
  padding-bottom: 20px;
  border-bottom: 0.5px darkslategray solid;
}

.CommentHeader{
  font-weight: bold;
  font-size: 0.7rem;
}

.CommentText{
  margin-left: 15px;
  font-size: 0.8rem;
}

.FormNewComment{
  margin-top: 20px;
}

.NewCommentName{
  margin-top: 5px;
  max-width: 250px;
}

.NewCommentText{
  margin-top: 5px;
}

.NewCommentSend{
  margin-top: 5px;
}

.Postschema{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.Postbox{

  width: 300px;
  padding: 10px;
  margin: 10px;
}

.Listbox:hover {
  transform: translateZ(-20px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
}

.Listbox{
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid rgb(20, 143, 131);
  border-radius: 10px;
  text-decoration: none; /* Elimina el subrayado */
  color: inherit; /* Hereda el color del texto del elemento padre */
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3),
              -5px -5px 10px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease-in-out;
}

.PostTitle{
  font-size: 1.3rem;
  font-weight: bold;
}

.form-label{
  font-weight: bold;
}

.PostStatusDet{
  text-align: center;
  border-radius: 15px;
  background-color: blue;
  color: white;
  padding: 10px;
}

.btnupdown{
  border: none;
  background-color: transparent;
}

.ParamContainer{
  margin: 30px;
  display: flex;
  flex-direction: column;
  /* text-align: center; */
  align-items: center;
}

.ParamTable{
  max-width: 1000px;
}

.CodActTable{
  margin-top: 30px;
}

.TipoDatoCombo{
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}

.Destschema{
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
}

.DestContainer{
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.Destintitle{
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
}

.Countryboxgroup{
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.Countrybox{
  margin: 10px;
  padding: 10px;
  width: 200px;
  text-align: center;
}

.FotoListCtry{
  height: 100px;
}

.DestCountryName{
  font-size: 1.3em;
  /* font-weight: bold; */
}

.Ribbon{
  position: absolute;
  top: 0%;
  right: 0%;
  height: 40%
}

.CalUpdated{
  text-align:center;
}
.CalContainerL1{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.CalContainerL2{
  display: flex;
  justify-content: left;
  max-width: 95%;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  overflow-x: scroll; /* agrega este estilo para crear un scroll horizontal dentro del contenedor */
  padding-bottom: 20px; /* agrega este estilo para evitar que el contenido sea cortado en el borde inferior del contenedor */
}

.CalendarImg{
  height: 500px;
}

.display-4 {
  font-size: 2.5rem;
}

.loginReg{
  margin-top: 5px;
  font-size: 12px;
}

.AboutContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin-top: 50px;
  margin-left: 30px;
  margin-right: 30px;
}

.AboutImg{
  width: 800px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.AboutText{
  font-size: 1rem;
  max-width: 90%;
  width: 1000px;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  margin-bottom: 100px;
}

.CurrMainPriority1FieldPC{
  font-size: 1rem;
}

.CurrMainPriority1FieldMobile{
  font-size: 1rem;
  display:none;
}

.CurrMainPriority2Field{
  font-size: 1rem;
}

.CurrMainPriority3Field{
  font-size: 1rem;
}

.SumBalanceCurr{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
  text-align: center;
}

.SumBalanceCurrTitle{
  font-size: 2rem;
  color: darkslategray;
  font-weight: bold;
  
  /* text-align: center; */
}
.AllCurrBalances{
  width: 100%;
}

.MainCurrBalance{
  font-size: 2rem;
  font-weight: bold;
  color:green;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.EURBalance{
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.BalanceCurrAmt{
  text-align: right;
  width: 50%;
}

.BalanceCurrCode{
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: center;
  width: 50%;
}

.MainBalanceCurrFlag{
  height: 2rem;
  margin-left: 10px;
}

.CurrencyMovmt{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;

}

.CurrencyMovmtFlg{
  height: 2rem;
  margin-right: 10px;
}

.AmountColHeader{
  text-align: center;
}

.AmountColRow{
  text-align: right;
  margin-right: 20px;
}

.CurrMissmatched{
  background-color: rgba(205,92,92,0.5)
}
.CurrMovement:hover{
  background-color: rgba(33, 113, 94, 0.5)
}

.HeaderMovement{
  font-size: 1.2rem;
}

.CashMain{
  float: left;
}

.CurMainTotalLine{
  font-weight: bold;
}

.ExpensesFilterButtonsContainer{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.ExpensesFilterButton{
  border: none;
  background-color: transparent;
  color: darkslategray;
  text-decoration: underline;
  margin: 0 10px;
}
.ExpensesFilterButton:hover{
  font-weight: bold;
}

.ExpensesTotalRow{
  font-weight: bold;
}

@media (max-width: 1150px) {
  .menu-classic{
    display: none;
  }
  .mobilemenu{
    display: flex;
    align-items: center;
  }
  .mobilemenuline{
    margin: 10px;
  }
}

@media (max-width: 800px) {
  .CurrMainPriority3Field{
    display:none
  }
  .CurrMainPriority1FieldPC{
    display:none
  }
  .CurrMainPriority1FieldMobile{
    display:block;
  }
}
@media (max-width: 550px) {

  .textlogo-cont{
    display: none;
  }
  .nav-bar-header{
    height: 9vh;
  }
  .MovTabPriority2{
    display: none;
  }
  .CurrMovement{
    font-size: 0.8rem;
  }
  .HeaderMovement{
    font-size: 1rem;
  }
}

@media (max-height: 600px) {
  /* .textlogo-cont{
    display: none;
  } */
  .LogoCapitalLetter{
    font-size: 30px;
  }
  
  .LogoSmallLetter{
    font-size: 13px;
  }
}

@media (max-height: 400px) {
  .textlogo-cont{
    display: none;
  }
}

@media (min-width: 768px) {
    .display-4 {
        font-size: 3rem;
    }
}

.flex-auto {
    flex: 0 0 auto;
}

.h-250 {
    height: 250px;
}

@media (min-width: 768px) {
    .h-md-250 {
        height: 250px;
    }
}

/*
   * Blog posts
   */
.blog-post {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-post-title {
    font-size: 2.5rem;
}

.blog-post-meta {
    margin-bottom: 1.25rem;
    color: #727272;
}

/* Copied from login.css */
.form-signin {
    max-width: 330px;
    padding: 15px;
  }
  
  .form-signin .form-floating:focus-within {
    z-index: 2;
  }
  
  .form-signin-first {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .form-signin-middle {
    margin-bottom: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .form-signin-last {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .form-signin-single {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .bd-placeholder-img {
      font-size: 1.125rem;
      text-anchor: middle;
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
    }
  
    @media (min-width: 768px) {
      .bd-placeholder-img-lg {
        font-size: 3.5rem;
      }
    }
  
    .b-example-divider {
      height: 3rem;
      background-color: rgba(0, 0, 0, .1);
      border: solid rgba(0, 0, 0, .15);
      border-width: 1px 0;
      box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
    }
  
    .b-example-vr {
      flex-shrink: 0;
      width: 1.5rem;
      height: 100vh;
    }
  
    .bi {
      vertical-align: -.125em;
      fill: currentColor;
    }
  
    .nav-scroller {
      position: relative;
      z-index: 2;
      height: 2.75rem;
      overflow-y: hidden;
    }
  
    .nav-scroller .nav {
      display: flex;
      flex-wrap: nowrap;
      padding-bottom: 1rem;
      margin-top: -1px;
      overflow-x: auto;
      text-align: center;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }