
/* css de la app */

.alert-form-danger {
    margin-bottom: 1px;
    height: 28px;
    line-height:28px;
    padding:0px 15px;
}

.container{
    font-size: 12px;
    /*line-height: 1px;*/

}

.table{
    font-size: 12px;
    line-height: 10px;
}


.btn{
    font-size: 12px;
}

.form-control{
    font-size: 12px;
}

/* .drawline1::before {
    width: 250px;
    height: 250px;
    content: '';
    border-top: 1px solid black;
    transform: rotate(-25deg);
    position: absolute;
    top: 50%;
    right: 0;
}
.drawline1::after {
    width: 250px;
    height: 250px;
    content: '';
    border-bottom: 1px solid black;
    position: absolute;
    transform: rotate(25deg);
    bottom: 50%;
    right: 0;
} */

.drawline1::before,
.drawline1::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 250px;
  width: 0.02px;
  background-color: #00000020;
}
.drawline1::before {
  transform: translate(-50%, -50%) rotate(25deg);
}
.drawline1::after {
  transform: translate(-50%, -50%) rotate(-25deg);
}

.drawline2::before,
.drawline2::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 250px;
  width: 0.01px;
  background-color: #00000020;
}
.drawline2::before {
  transform: translate(-50%, -50%) rotate(67.5deg);
}
.drawline2::after {
  transform: translate(-50%, -50%) rotate(-67.5deg);
}

.grid-buttons {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 5px;
  width: 50px;
  height: 50px;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
}

.button {
  width: 50px;
  height: 50px;
  font-size: 27px;
  background-color: transparent;
  background-image: none;
  border: 1px solid gray;
  padding: 0.25rem;
  border-radius: .25rem;
  cursor: pointer;
  
}

.button:hover {
  color: #fff;
  background-color: #343a40;
}

:focus {
  outline:none !important;
}
::-moz-focus-inner {
  border:0 !important;
}

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
    border: none;
}

/*
*
* ==========================================
* CUSTOM UTIL CLASSES FOR HORIZONTAL LINES
* ==========================================
*
*/

hr.dashed {
    border-top: 2px dashed #999;
}

hr.dotted {
    border-top: 2px dotted #999;
}

hr.solid {
    border-top: 2px solid #999;
}


hr.hr-text {
  position: relative;
    border: none;
    height: 1px;
    background: #999;
}

hr.hr-text::before {
    content: attr(data-content);
    display: inline-block;
    background: #fff;
    font-weight: bold;
    font-size: 0.85rem;
    color: #999;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.availability-panel {
  display: grid;
  overflow-x: scroll;
  width: auto;
}

.dates-container {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.397);
  height: 2rem;
  display: flex;
}

.hour-container {
  position: relative;
  width: 48px;
  height: 100%;
  display: flex;
  justify-content: center; 
  align-items: center;
  font-size: small;
  outline: 1px solid rgba(0, 0, 0, 0.322);
}

.green {
  background-color: rgb(0, 128, 0);
  color: white;
}

.yellow {
  background-color: rgb(235, 231, 11);
  color: rgb(0, 0, 0);
}

.red {
  background-color: rgb(128, 0, 0);
  color: white;
}

/*
*
* ==========================================
* CUSTOM UTIL CLASSES FOR TABS
* ==========================================
*
*/


.project-tab {
    padding: 10%;
    margin-top: -8%;
}
.project-tab #tabs{
    background: #007b5e;
    color: #eee;
}
.project-tab #tabs h6.section-title{
    color: #eee;
}
.project-tab #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #0062cc;
    background-color: transparent;
    border-color: transparent transparent #f3f3f3;
    border-bottom: 3px solid !important;
    font-size: 16px;
    font-weight: bold;
}
.project-tab .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #0062cc;
    font-size: 16px;
    font-weight: 600;
}
.project-tab .nav-link:hover {
    border: none;
}
.project-tab thead{
    background: #f3f3f3;
    color: #333;
}
.project-tab a{
    text-decoration: none;
    color: #333;
    font-weight: 600;
}