* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  }
body {
  background-image: url('../img/ico.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* Customizando a Barra de Rolagem */
/* Para navegadores baseados em Webkit (Chrome, Safari, etc.) */
::-webkit-scrollbar {
  width: 5px; /* Largura da barra de rolagem vertical */
  height: 5px; /* Altura da barra de rolagem horizontal */
}
::-webkit-scrollbar-thumb {
  background-color: #ff6612; /* Cor da barra de rolagem */
  border-radius: 4px; /* Pontas arredondadas */
}
::-webkit-scrollbar-track {
  background-color: transparent; /* Cor da trilha da barra de rolagem */
}
/* Para navegadores baseados em Firefox */
::-moz-scrollbar {
  width: 5px;
  height: 5px;
}
::-moz-scrollbar-thumb {
  background-color: #ff6612; 
  border-radius: 4px; 
}
::-moz-scrollbar-track {
  background-color: #f1f1f1; 
}

/* Keyframes */
@keyframes slideInLeft {
  from {transform: translateX(-100%);}
  to {transform: translateX(0);}
}
@keyframes piscar {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}


/* Classes Customizadas  */
.simplemde-editor, .CodeMirror-scroll {
  max-height: 100px;
  min-height: 100px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.w-18r {width: 18rem;}
.bg-transparent-0 {background-color: rgba(255, 255, 255, 0) !important;}
.bg-transparent-035 {background-color: #ffffff58 !important;}
.bg-transparent-04 {background-color: rgba(255, 255, 255, 0.4) !important;}
.bg-menu {
  background-color: #ffedc2 !important;
  border-bottom: 3px solid #F6D397;
  border-left: 1px solid #F6D397;
  border-right: 1px solid #F6D397;
  border-radius: 1px;
}
.dropdown-item {color: #555555 !important;}
.text-black {color: #000000 !important;}
.fw-regular {font-weight:400!important}
.fw-bold {font-weight:700!important}
.fw-bolder{font-weight:bolder!important}
.fs-14 {font-size: 14px !important;}
.fs-15 {font-size: 15px !important;}
.shadow-gray-1 {box-shadow: 4px 4px 0px -1px rgb(189, 189, 189);}
.h-85 {height: 85vh;}
.form-check.form-switch {margin-left: 20% !important;}
.pointer {cursor: pointer;}
.cursor-help {cursor: help;}
/* .form-check-input {box-shadow: 0px 3px 0px -1px #106a8d;} */
.piscar {animation: piscar 1.5s infinite;} /* Duração da animação: 2 segundos, efeito piscando infinito */

/* Elementos Customizadas  */
/* table thead th:first-child {border-radius: 10px 0 0 0 !important;}
table thead th:last-child {border-radius: 0 10px 0 0 !important;} */

/* Estilos para formulário de parceiro */
/* Estilização para campos desabilitados durante carregamento */
.form-control:disabled {
  background-color: #f8f9fa;
  opacity: 0.7;
  cursor: not-allowed;
}

/* Bordas coloridas personalizadas */
.border-success {
  border-color: #198754 !important;
  border-width: 2px !important;
}

.border-danger {
  border-color: #dc3545 !important;
  border-width: 2px !important;
}

/* Animação suave para transições */
.form-control {
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

