.logo{
  width: 60px;
  height: 60px;
}
/* barista */
:root {
  --white-color:                  #ffffff;
  
  --secondary-color:              #DDA15E;
  
  --custom-btn-bg-color:          #BC6C25;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;

  --body-font-family:             'Plus Jakarta Sans', sans-serif;

  --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}



/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

.navbar {
  background: transparent;
  z-index: 999999;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar .container {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}
.heading_container{
  margin-top: 10dvh;
}

label{
    margin-left: 4px;
}
.file-input{
  width: 300px;
  height:120px;
  color: #000000;
  background-color: antiquewhite;
  display: grid;
  grid-template-areas: stack;
  border-radius: 8px;

}
.file-input >*{
  grid-area: stack;

}

.file-input >input{
  opacity: 0;
}

.file-input >.drop-zone{
  margin: 12px;
  border:dashed 2px #aaa;
  border-radius: 4px;
}

.file-input.active >.drop-zone{
  margin: 14px;
  background-color: #19335a;
}

.drop-zone{
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop-zone p{
  z-index: 99;
  text-shadow: #121212 1px 0 10px;

}
.avatar{
 
    width: 30px;
    height: 30px;
    border-radius: 50px;

}
.adicionar{
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: aqua; 
}
.editar{
  padding-left: 10px;
  padding-right: 10px;
}
.acoes{
  padding-left: 10px;
  padding-right: 10px;
}

.transferido{
  opacity: .30;
}