/* Global */

.btn{
	background-color: #E76C20;
	color: #FFF;
}

.btn:hover{
	background-color: #b75217;
	color: #FFF;
}

.background{
	background: #E76C20;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #F09819, #E76C20);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #F09819, #E76C20); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.a-label{
	color: #000;
	text-decoration: none;
}

.a-category{
  color: #000;
  text-decoration: none;
}

.image-profile{
  object-fit: cover;
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 950px) {
  .image-profile{
    width: 60px;
    height: 60px;
  }
}

.card-text{
  font-size: 14px;
}


/****************************************************************
SIDEBAR
*****************************************************************/

.dropdown-item.active {
  background-color: #E76C20;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #007083;
}

.nav-pills .nav-link, .nav-pills .show>.nav-link {
  color: rgb(70, 70, 70);
}

.nav-flush .nav-link {
  border-radius: 0;
}

.App-logo-sidebar {
  width: 12vmin;
  pointer-events: none;
  margin: 0 auto;
}

.description-text-menu{
  font-size: 10px;
}

.sidebar{
  z-index: 1;
  width: 100px;
  transition: width 0.5s !important;
  
}

#sidepanel{
	width: 100px;
	height: 100vh;
}


.sidebar #ul-nav {
  display: block;
  transition: 0.3s;

}

.sidebar .dropdown {
  transition: 0.3s;
}

.App-logo-sidebar{
  transition: 0.3s;
}

.nav-item-active{
	background-color: #E76C20;

}

.nav-item:hover{
	background-color: #e5a580;
}

.dropdown-item:hover{
	background-color: #e5a580;
}

.a-label:hover{
  color: black;
}

/* index.html */

#section-signin{
	background: #E76C20;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #F09819, #E76C20);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #F09819, #E76C20); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

#password-modal:hover{
	cursor: pointer;
}

/* signup.php */

#info-password:hover{
	cursor: pointer;
}

/*SPINNER*/

.lds-ripple {
    display: inline-block;
    position: relative;

    width: 60px;
    height: 60px;
}
.lds-ripple div {
    position: absolute;
    border: 4px solid #E76C20;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/* Dashboard */

#card-latest-nc{
  height: calc(100vh - 2em);
}

#card-pend-nc{
  height: calc(40vh - 1.5em);
}

#card-info{
  height: calc(60vh - 1.5em);
}

@media only screen and (max-width: 1000px) {
  #right-col{
    visibility: hidden;
  }
  #card-pend-nc, #card-info{
    height: 0;
  }
}

.card-last-nc:hover{
  background-color: #FFF3CD;
}

/* new-nc */

#card-new-nc{
  border-radius: 0rem; 
  height:calc(100vh - 3rem);
} 


/* Edit nc */

.btn-delete{
  background-color: red;
}

#myImage {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImage:hover {opacity: 0.7;}

/* The Modal (background) */
.modal-2 {
  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 */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content-2 {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content-2, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content-2 {
    width: 100%;
  }
}

/* nc-dashboard */

.card-year:hover{
  background-color: #FFF3CD;
}



/* list-nc-year */

#card-nc{
  height: calc(100vh - 2em);
}

/* registers */

.card-option-reg{
  height: calc(100vh - 2em);
}

/* Tickets */
.card-last-tickets:hover{
  background-color: #FFF3CD;
}

/* Documents */

.card-folder{
  background-color: #FFF3CD;
}

.card-folder:hover{
  cursor: pointer;
  background-color: #fcde83;
}

.card-file:hover{
  cursor: pointer;
  background-color: #f9f9f9;
}

.btn-obsolete{
  background-color: #f7e967;
  color: black;
}

.btn-obsolete:hover{
  background-color: #d1c457;
  color: black;
}
