﻿/* Campo de data padronizado FEMOTAG: digitação manual + calendário único. */
.femotag-date-control{
  display:flex;
  align-items:stretch;
  gap:8px;
  width:100%;
  min-width:0;
}
.femotag-date-control .femotag-date-text{
  flex:1 1 auto;
  min-width:0;
  width:100%;
  margin:0!important;
}
.femotag-date-control .femotag-date-button{
  flex:0 0 46px;
  width:46px;
  min-width:46px;
  height:46px;
  min-height:46px;
  margin:0!important;
  padding:0!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:#171a22;
  color:#fff;
  cursor:pointer;
  line-height:1;
}
.femotag-date-control .femotag-date-button:hover,
.femotag-date-control .femotag-date-button:focus-visible{
  border-color:#e30910;
  background:#1d212b;
  outline:none;
}
.femotag-date-control .femotag-date-button svg{
  display:block;
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.femotag-date-native{
  position:fixed!important;
  left:-10000px!important;
  top:0!important;
  width:1px!important;
  height:1px!important;
  min-width:1px!important;
  min-height:1px!important;
  opacity:0!important;
  pointer-events:none!important;
  overflow:hidden!important;
  border:0!important;
  padding:0!important;
  margin:0!important;
}
.femotag-date-text.femotag-date-invalid{
  border-color:#e30910!important;
  box-shadow:0 0 0 2px rgba(227,9,16,.15);
}
@media(max-width:560px){
  .femotag-date-control .femotag-date-button{
    flex-basis:44px;
    width:44px;
    min-width:44px;
  }
}
