@font-face {
  font-family: "Coves"; 
  src: url('./fonts/Coves\ Light.otf'); 
}
@font-face {
  font-family: "Coves-Bold"; 
  src: url('./fonts/Coves\ Bold.otf'); 
}

* {
  font-family: Coves;
}
h4 {
  font-family: Coves-Bold;
  font-size: 18pt;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center; 
  font-size: 14px;
  margin: 0px;
  margin-bottom: 100px;
  padding-left: 0%;
  background-color: #fbfafd;
}

#main-div {
    display: flex;
    flex-direction: row;
}

#main-div > div {
    padding: 30px;   
}
#main-licencia-div {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}
#main-trackers-div {
  color: #343434;
  font-size: 12pt;
}
label {
  color: #343434;
  font-size: 12pt;
}
.data-input {
  border-style: solid;
  border-radius: 13px;
  height: 31px;
  width: 250px;
  padding-left: 12px;
  margin-top: 13px;
  text-align: left;
  font-size: 11pt;
  border-width: thin;
  border-color: #e4e4e4;
  color: #343434;
}
.input-tracker {
  border-style: solid;
  border-radius: 13px;
  height: 31px;
  width: 250px;
  padding-left: 12px;
  margin-top: 13px;
  text-align: left;
  font-size: 11pt;
  border-width: thin;
  border-color: #e4e4e4;
  color: #343434;
}
::placeholder {
  color: #767676;
  opacity: 0.6;
  font-size: 10; 
}
.data-input:focus {
  outline-width: 0;
}

#button-add {
  color:  #343434;
  width: 250px;
  box-sizing: content-box;
  padding-right: 2px;
}
#button-add:hover {
  background-color:#009bdb;
  color: white;
}
#button-activate {
  color: white;
  background-color:#009bdb;
  width: 250px;
  box-sizing: content-box;
  padding-right: 2px;
  text-align: center;
}
#button-activate:hover {
  background-color:white;
  color: #343434;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    color: #343434;/* Fallback color */
    background-color: rgba(0,0,0,0); /* Black w/ opacity */
  }
/* Modal Content */
#modal-content {
    background-color: #e4e4e4;
    opacity: 0.96;
    border-radius: 5px;
    margin: auto;
    padding: 20px;
    width: 50%;
    text-align: center;
  }

  #modal-body> input {
    background-color: #e4e4e4;
    border-width: 1.4px;
    width: 48px;
    height: 26px;
    font-size: 14pt;
  }
  #modal-body> p {
    font-family: Coves-Bold;
    font-size: 18px;
  }
.modal-li {
  list-style-type: none;
  font-size: 18pt;
}

  /* The Close Button */
/* .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
} */
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}