/* ****************************************************** */
/* ****************************************************** */
/* 


    NOVO MODULO DE PADRÕES DE CSS DO SISTEMA 
    

*/

/* INNPUT TEXT */
.global-sys-style-input-1{
    border: 1px solid var(--sys-color-7);
    padding: 12px 7px;
    font-size: 0.8rem;
    background: transparent;
    color: var(--sys-color-1);
    border-radius: 4px;
    outline: 0;
    transition: 0.2s;
}
.global-sys-style-input-1:focus{
    border: 1px solid var(--sys-color-2);
    transition: 0.2s;
}
.global-sys-style-input-1::placeholder{
    color: var(--sys-color-5);
}
.global-sys-style-input-1:disabled{
  cursor: not-allowed;
}

/* INNPUT SELECT */
.global-sys-style-select-1{
  border: 1px solid var(--sys-color-7);
  padding: 12px 7px;
  font-size: 0.8rem;
  background: transparent;
  color: var(--sys-color-1);
  border-radius: 4px;
  outline: 0;
  transition: 0.2s;
  cursor: pointer;
}
.global-sys-style-select-1:focus{
  border: 1px solid var(--sys-color-2);
  transition: 0.2s;
}
.global-sys-style-select-1::placeholder{
  color: var(--sys-color-5);
}
.global-sys-style-select-1:disabled{
cursor: not-allowed;
}

/*  */
/*  */
/*  */
/* INPUT CHECKBOX */
.global-sys-style-input-2{
    width: 17px;
    height: 17px;
    cursor: pointer;
    margin: 0 12px;
    transition: 0.5s;
}

/*  */
/*  */
/*  */
/* BUTTON 1 */
/* CSS */
.global-sys-style-1{
  align-items: center;
  background: var(--sys-color-2);
  border-radius: 4px;
  border-width: 0;
  color: var(--sys-color-10);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-size: 0.8rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: 0.5s;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.global-sys-style-1:hover {
  box-shadow: var(--sys-color-4);
  opacity: .85;
  transition: 0.5s;
}

.global-sys-style-1:active {
  outline: 0;
  transition: 0.5s;
}

.global-sys-style-1:focus {
  box-shadow: var(--sys-color-6) 0 0 0 3px;
  transition: 0.5s;
}
.global-sys-style-1:disabled{
  background: var(--sys-color-5);
  cursor: not-allowed;
}

/* BUTTON 2 */
/* CSS */
.global-sys-style-2{
  align-items: center;
  background: var(--sys-rgb-1);
  border-radius: 4px;
  border-width: 0;
  color: var(--sys-color-10);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-size: 0.8rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: 0.5s;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.global-sys-style-2:hover {
  box-shadow: var(--sys-color-7);
  opacity: .85;
  transition: 0.5s;
}

.global-sys-style-2:active {
  outline: 0;
  transition: 0.5s;
}

.global-sys-style-2:focus {
  box-shadow: var(--sys-color-6) 0 0 0 3px;
  transition: 0.5s;
}
.global-sys-style-2:disabled{
  background: var(--sys-color-5);
  cursor: not-allowed;
}

/* BUTTON 2 */
/* CSS */
.global-sys-style-3{
  align-items: center;
  background: var(--sys-rgb-3);
  border-radius: 4px;
  border-width: 0;
  color: var(--sys-color-10);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-size: 0.8rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: 0.5s;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.global-sys-style-3:hover {
  box-shadow: var(--sys-color-7);
  opacity: .85;
  transition: 0.5s;
}

.global-sys-style-3:active {
  outline: 0;
  transition: 0.5s;
}

.global-sys-style-3:focus {
  box-shadow: var(--sys-color-6) 0 0 0 3px;
  transition: 0.5s;
}
.global-sys-style-3:disabled{
  background: var(--sys-color-5);
  cursor: not-allowed;
}

/* ********************* */
/* ********************* */
/* ********************* */
/* ********************* */
/* SWITCH */
.global_switch__container {
  /* margin: 30px auto; */
  width: fit-content;
}

.global_switch {
  visibility: hidden;
  position: absolute;
  margin-left: -9999px;
}

.global_switch + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
}

.global_switch--shadow + label {
  padding: 2px;
  width: 60px;
  height: 30px;
  background-color: #dddddd;
  border-radius: 60px;
}
.global_switch--shadow + label:before,
.global_switch--shadow + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
.global_switch--shadow + label:before {
  right: 1px;
  background-color: #f1f1f1;
  border-radius: 60px;
  transition: background 0.4s;
}
.global_switch--shadow + label:after {
  width: 30px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}
.global_switch--shadow:checked + label:before {
  background-color: var(--sys-color-4);
}
.global_switch--shadow:checked + label:after {
  transform: translateX(30px);
}

/* ****************** */
/* ****************** */
/* ****************** */
.global-status-1{
  font-size: 0.8rem;
  color: var(--sys-rgb-1) !important;
  font-weight: 600;
  padding: 5px 17px;
  border: 2px solid var(--sys-rgb-1);
  border-radius: 5px;
}
.global-status-2{
  font-size: 0.8rem;
  color: var(--sys-rgb-2) !important;
  font-weight: 600;
  padding: 5px 17px;
  border: 2px solid var(--sys-rgb-2);
  border-radius: 5px;
}
.global-status-3{
  font-size: 0.8rem;
  color: var(--sys-rgb-3) !important;
  font-weight: 600;
  padding: 5px 17px;
  border: 2px solid var(--sys-rgb-3);
  border-radius: 5px;
}

