
:root {
	--cor-padrao: #700000;
	--cor-especial: #a64500;
	--cor-fitness: #008c36;
}


nav {
  text-align: left px;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 10px;
  height: 50px;

  background-image: linear-gradient(#d97904,transparent,transparent);
  font-family: 'Poppins', sans-serif;
  right: 0;
  z-index: 9999;
  color: #000;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  cursor:pointer;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}


.erro-popup {
  
  font-family: 'Poppins';
  font-size: 1rem;
  display:table-column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 20rem;
  left: 50%;
  top: 12rem;
  transform: translate(-50%, -50%);
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
  z-index: 9999;

  transition-duration: 1.2s;
}


@media (max-width: 480px) {

  .erro-popup{

    width: 70%;

  }

}


.erro-popup.alert{
    height: 0;
    width: 0;
    background: rgb(255, 252, 176);
}
.erro-popup.confirm{
    top:12rem;
    height: 0;
    width: 0;

    background: rgb(255, 252, 176);
    margin: 0 auto;
}


.erro-popup button {

    margin: 0 auto;
    display: flex;
    background-color: rgb(112, 0, 0);
    color: #fff;
    border-radius: .5rem;

    border-style: none;
    font-size: .7rem;
    padding: .3rem;

}

.gap-2 {
  gap: 1rem !important;
}

.erro-popup p {
  font-family: 'Poppins';
  width: 100%;
  color: #000000;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;

}
.fundo-borrado{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;

}

.divbuttonsconfirm{
    /* margin-top: 2rem; */
    margin: 0 auto;
    /* width: 21rem; */
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.buttonconfirmmsg.ok{
    cursor:pointer;
    width: 3rem;
    justify-content: center;
    background-color: darkgreen;
}

.buttonconfirmmsg.not{
    cursor:pointer; 
    background-color: rgb(112, 0, 0);
    width: 3rem;
    justify-content: center;
}

.buttonconfirmmsg.close{
  cursor:pointer; 
  background-color: rgb(112, 0, 0);
  width: 4rem;
  justify-content: center;
}

.buttonconfirmmsg.cancel{
    cursor:pointer;
    background-color: rgb(255 156 26);
    width: 4.5rem;
    color: black;
    justify-content: center;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.627);

    display: block;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition-duration: 2.2s;
  }
  
  .loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db; /* Cor do indicador de carregamento */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    z-index: 99999;
    margin: 0 auto;
    top: 10rem;
    position: relative;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  #footer1 {
    
    margin: 0 auto;
    width: 19rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 4rem;
    font-size: 12px;
    min-height: 20px;
    margin-bottom: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #000000;
    box-shadow: 0px 2px 5px 0px #1c1b18;
   
  
  }
  
  #footer1 p {
  
    text-align: center;
    margin: 0;
    padding: 10px;
  }

  #footer1 p a {
    text-decoration: none;
    color: #2e2e2e;
    font-weight: bold;
    font-size: .9rem;
  }

  .flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-evenly {
    justify-content:space-evenly;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.align-start {
    align-items: flex-start !important;
}

.align-center {
    align-items: center !important;
}

.align-end {
    align-items: flex-end !important;
}

.align-middle {
    vertical-align: middle !important;
}



/* Width classes */
.w-100 {
    width: 100% !important
}

.w-95 {
    width: 95% !important
}

.w-75 {
    width: 75% !important
}

.w-70 {
    width: 70% !important
}

.w-60 {
    width: 60% !important
}


.w-50 {
    width: 50% !important
}

.w-40 {
    width: 40% !important
}

.w-30 {
    width: 30% !important
}

.w-25 {
    width: 25% !important
}

.w-10 {
    width: 10% !important
}

.w-15 {
    width: 15% !important
}

.wf-1 {
    width: 1rem !important;
}
.wf-2 {
    width: 2rem !important;
}
.wf-3 {
    width: 3rem !important;
}
.wf-4 {
    width: 4rem !important;
}
.wf-5 {
    width: 5rem !important;
}

.wf-6 {
    width: 6rem !important;
}
.wf-7 {
    width: 7rem !important;
}
.wf-8 {
    width: 8rem !important;
}
.wf-9 {
    width: 9rem !important;
}
.wf-10 {
    width: 10rem !important;
}

.wf-11 {
    width: 11rem !important;
}

.wf-12 {
    width: 12rem !important;
}
.wf-15 {
    width: 15rem !important;
}

.wf-25 {
    width: 25rem !important;
}
.wf-35 {
    width: 35rem !important;
}

.h-1 {
    height: 1rem !important
}

.h-1-05 {
    height: 1.5rem !important
}
.h-2 {
    height: 2rem !important
}

.h-3 {
    height: 3rem !important
}

.h-4 {
    height: 4rem !important
}
.h-5 {
    height: 8rem !important
}
.h-6 {
    height: 6rem !important
}

.h-7 {
    height: 7rem !important
}

.h-100 {
    height: 100% !important
}

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

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

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

.m-0 {
  margin: 0 !important;
  
}

.m-05 {
  margin: .1rem !important
}

.m-1 {
  margin: .5rem !important
}

.m-2 {
  margin: .8rem !important
}

.mt-1 {
  margin-top: 5px !important;
}

.mt-2 {
  margin-top: 10px !important
}

.mt-3 {
  margin-top: 15px !important
}

.mt-4 {
  margin-top: 20px !important
}

.mt-8 {
  margin-top: 40px !important
}

.mt-10 {
  margin-top: 6rem !important
}



.mb-1 {
  margin-bottom: 5px !important;
}

.mb-2 {
  margin-bottom: 10px !important
}

.mb-3 {
  margin-bottom: 15px !important
}

.mb-6 {
  margin-bottom: 40px !important
}


.mb-200 {
  margin-bottom: 200px !important
}



.ml-1 {
  margin-left: 5px !important
}

.ml-2 {
  margin-left: 10px !important
}

.ml-3 {
  margin-left: 15px !important
}

.mr-1 {
  margin-right: 5px !important
}

.mr-2 {
  margin-right: 10px !important
}

.mr-3 {
  margin-right: 15px !important
}

.pr-1 {
  padding-right: 5px !important
}

.pr-2 {
  padding-right: 10px !important
}

.pr-3 {
  padding-right: 15px !important
}

.pl-1 {
  padding-left: 5px !important
}

.pl-2 {
  padding-left: 10px !important
}

.pl-3 {
  padding-left: 15px !important
}

.plr-05 {

  padding: 0 .2rem 0 .2rem !important

}


.me-0 {
  margin-inline-end: 0;
}

.me-1 {
  margin-inline-end: 0.25rem; /* 4px */
}

.me-2 {
  margin-inline-end: 0.5rem; /* 8px */
}

.me-3 {
  margin-inline-end: 1rem; /* 16px */
}

.me-4 {
  margin-inline-end: 1.5rem; /* 24px */
}

.me-5 {
  margin-inline-end: 3rem; /* 48px */
}

.p-0 {
  padding: 0 !important
}

.p-05 {
  padding: 0.2rem !important
}

.p-1 {
  padding: 5px !important
}

.p-2 {
  padding: 10px !important
}

.p-3 {
  padding: 15px !important
}

.p-5 {
  padding: 25px !important
}

.bold-0 {
  font-weight: lighter !important;
  
}

.bold-1 {
  font-weight: normal !important;
  
}

.bold-2 {
  font-weight: bold !important;
}



a {
  text-decoration: none;
}

.wrap {
  flex-wrap: wrap;
}

.t-05 {
  font-size: .5rem !important;
}

.t-06 {
  font-size: .6rem !important;
}

.t-0 {
  font-size: .7rem !important;
}

.t-1 {
  font-size: 1rem !important;
}

.t-2 {
  font-size: 1.5rem !important;
}

.t-3 {
  font-size: 2.2rem !important;
}


.bg-ok {
  background-color: #d7fcdc !important;
}

.bg-warning {
  background-color: #ffb682 !important;
}

.bg-alert {
  background-color: #ffe187 !important;
}

.bg-no {
  background-color: #f7cccc !important;
}

.bg-focus {
  background-color: #e8e8e8 !important;
}

.bg-tr {
  background-color: transparent !important;
}

.border {
  border:solid 1px #b2b2b2
}

.border-none {
  border-style: none !important;
}

.rounded {
  border-radius: .3rem;
}

.shadow {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); 
}

.font-poppins {
  font-family: 'Poppins';
}

.btn {
  font-family: 'Poppins';
  display: inline-block;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: 0.3s
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-none {

  background-color: transparent !important;
  border-style: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.btn-success {
  background-color: #28a745;
  color: white;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-danger {
  background-color: #dc3545;
  color: white !important;
}

.btn-danger:hover {
  background-color: #c82333;

}

.btn-scl {
  cursor: pointer;
  transition: .8s;
  
}

.btn-scl:hover {
  filter: drop-shadow(rgba(0, 0, 0, 0.2));
  /* box-shadow: 0 2px 5px ;  */
  
  transform: scale(1.05);
}

.btn-small {
  padding: 5px 10px !important;
  font-size: 12px !important;
}

.btn-smaller {
  padding: 2px 6px !important;
  font-size: 8px !important;
}

.btn-medium {
  padding: 10px 20px;
  font-size: 16px;
}

.btn-large {
  padding: 15px 30px;
  font-size: 20px;
}

.btn-xlarge {
  padding: 20px 40px;
  font-size: 24px;
}

/* Full-width button */
.btn-block {
  width: 100%;
  display: block;
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}




 /* BOTAOSWITCH */
 .onoffswitch {
  position: relative; width: 3rem;
  -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.onoffswitch-label {
  display: block; overflow: hidden; cursor: pointer;
  height: 1.4rem; padding: 0; line-height: 1.4rem;
  border: 2px solid #bc2929; border-radius: 1.4rem;
  background-color: #bc2929;
  transition: background-color 0.3s ease-in;
}
.onoffswitch-label:before {
  content: "";
  display: block; width: 1.4rem; margin: 0px;
  background: #FFFFFF;
  position: absolute; top: 0; bottom: 0;
  right: 22px;
  border: 2px solid #bc2929; border-radius: 1.4rem;
  transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
  background-color: #49E845;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
 border-color: #49E845;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  right: 0px; 
}




 /* BOTAOSWITCH */