@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

h1, h2, h3, h4, h5, h6, span, p, strong, label{
     font-family: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
label{
  font-size: 14px;
}
:root{
    --cor-primary : "#6449DD";
    --somba: 0px 0px 5px #c6c6c6;
    --myrounded: 8px;
    --sizeOne: 18px;
    --sizeTwo:20px;
    --spaceInternal:20px;
}

.box{
    display: flex;
    flex-direction: row;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

.internBox{
     box-shadow:  var(--somba);
    padding: var(--spaceInternal);  
}


input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="file"] {
  outline: none;

}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="select"]:focus, 
input[type="date"]:focus {
  outline: none;
  border: 1px solid #6449DD;
  box-shadow: var(--sombra);
}


textarea:hover, textarea:focus{
  background-color: #fff !important;
  color: #000 !important;
  border-color: #6449DD !important;
  box-shadow: 0 0 0 0.2rem #6449DD !important;
}

input[type="checkbox"] {
  border-color: #6449DD;
}
input[type="checkbox"]:checked {
  background-color: #6449DD;
  border-color: #6449DD;
}

/* Para selects padrão */
select:focus {
  outline: none;
  border: 2px solid #6449DD;
  box-shadow: var(--sombra);
}

/* Para selects do Bootstrap */
.form-select:focus {
  outline: none;
  border: 2px solid #6449DD;
  box-shadow: var(--sombra);
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

/* Para Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.thumb{
    width:100%;
    height: 100%;
    object-fit: cover;
   
}

.arrow{
    width: 25px;
    height: 25px;
    position: absolute;
    background-color: #fff;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-left: -2px;
    z-index: 0;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(100, 73, 221, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(100, 73, 221, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(100, 73, 221, 0);
  }
}
.mybtn{
    width: 250px;
    height: 45px;
    border-radius: var(--myrounded);
    background-color: #6449DD;
    color: #ffffff;
    border: none;
    animation: pulseShadow 2s infinite;
    font-size: 16px;
}
.mybtn-sm{
    width: auto;
    height: 30px;
    border-radius: var(--myrounded);
    background-color: #6449DD;
    color: #ffffff;
    border: none;
     font-size: 16px;
}
  .boxInternal{
    width: 100% ;
    height: 100% ;
  }

  .mybtn-outline {
  color: #6449DD !important;
  border-color: #6449DD !important;
   transition: 1s;
}

  .mybtn-outline:active {
      background-color: #6449DD;
      color: #fff !important;

  }
  .nav-tabs .nav-link[aria-selected="true"] {
    background-color: #6449dd !important;
    color: white !important;
    border-color: #6449dd #6449dd white !important;
  }

  .nav-tabs .nav-link[aria-selected="false"] {
    background-color: white !important;
    color: black !important;
    border-color: transparent !important;
  }
.mybtn-outline:hover,
.mybtn-outline:focus{
  background-color: #6449DD !important;
  color: #fff !important;
  border-color: #6449DD;
  transition: 1s;
}
.btnIcon{
  color: #6449DD !important;
  background-color: transparent !important;
  cursor: pointer;
  font-weight: 600;
};

#boxItens{
    animation: sobeParaCima 1s 1;  
}
#btnIconMinimize{
  border-radius: 50%;
   animation: pulseShadow 2s infinite;
}
#btnSearch{
    position: absolute; bottom:15px;
}




@media only screen and (max-width: 998px) {

  .layoutMobile{
    flex-direction: row;
    flex-wrap: wrap;
  }

  #btnSearch{
    position: static;
}
  .box{
    display: flex;
    flex-direction: column;
    overflow: auto;
  }
  .boxInternal:nth-child(1){
    height: 400px;
    max-height: 400px;
  }
  .boxInternal:nth-child(2){
    height: auto;
  }
  .arrow{
    display: none;
  }
}


      

.tooltip-inner {
    background-color: #6449DD !important; /* Altere a cor conforme necessário */
    color: #fff; /* Cor do texto opcional */
  }

    @keyframes descer {
      0% {
        opacity: 0;
        transform: translateY(-50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

     #info {
    position: absolute;
    right: 1%;
    top:25%;
 
    width: 30px;
    height: 30px;
    border: 2px solid rgba(100, 73, 221, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

@keyframes rotatee{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
 #settings{
  display: inline-block;
   animation: rotatee linear 10s infinite;
   font-size: 32px;

   color: #6449DD;
   padding: 5px 10px;
   border-radius: 8px;
  }
  
   .btn-dia {
    background-color: #fff;
    color: #000;
    border: 1px solid #6449DD !important;
    transition: all 0.2s ease;
  }

  .btn-check:checked + .btn-dia {
    background-color: #6449dd !important;
    color: #fff !important;
    border-color: #6449dd;
  }

  .btn-dia:hover {
    border: 1px solid #6449DD !important;
    background-color: #6449dd !important;
    color: #fff !important;
  }

  .btn-outline-secondary{
    background-color: #6449DD !important;
    color: #fff !important;
    border: 1px solid #6449DD !important;
    padding: 3px 6px;
    font-size: 10px !important;
    cursor: default !important;
  }

  .btn-outline-secondary:hover{
    background-color: #6449DD;
        color: #fff;
  }
  .btn-outline-secondary:active{
    background-color: #6449DD !important;
        color: #fff;
  }
  @keyframes piscarOnline {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.9);
  }
}
.bolinha-online {
  width: 10px;
  height: 10px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
    animation: piscarOnline linear 1.5s infinite;
}

.myactive{
  background-color: #6449DD !important;
  color: #fff !important;
}

 .btn-purple {
    background-color: #6449dd;
    color: white;
    border: none;
  }

  .btn-purple:hover {
    background-color: #5239c9;
  }

  .dropdown-menu-custom {
    min-width: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .form-check-input:checked {
    background-color: #6449dd;
    border-color: #6449dd;
  }

  .btn-purple-sm {
    background-color: #6449dd !important;
    color: #fff !important  ;
    border: none;
    font-size: 14px;
  }

  .btn-purple-sm:hover {
    background-color: #5239c9;
  }









  .card-layout {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow: hidden;
  }

  .card-left {
    width: 250px;
    height: 170px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
  }

  @media (max-width: 1100px) {
    .card-layout {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .card-left {
      width: 100%;
      height: 200px;
      margin-bottom: 10px;
      box-shadow: 0px 0px 1px  #0e0e0e;
      background-size: cover;
    }

    .card-right {
      width: 100%;
    }
  }

  .custom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    background-color: #fff;
  }



  .dias-disponiveis button {
    font-size: 0.8rem;
  }