

/*CONTENEDOR*/

.container-fluid {
  width: 96%;
  margin: 0px auto;
  display: block;
}


/*TEXTOS*/

h1,
h2,
h3,
h4,
h5,
p,
a,
label,
input,
.k-textbox{
  font-family: 'Fira Sans', sans-serif !important;
}


/*IMAGENES*/

.img-fluid {
  max-width: 100%;
  height: auto;
  margin: 0px auto;
  display: block;
}


/*NAV BAR*/

.navbar-default {
  background: white;
  border: none;
  margin-top: 0px;
}

.navbar .navbar-brand {
  padding: 0px;
}


/*LOGO PRINCIPAL*/

.logo-apc {
  width: 300px !important;
  margin: 0px auto;
  display: block;
}


/*BOTONES*/


.btn-primary {
  border: 1px solid #aaaaaa;
  background: #c41720;
  color: #e2e2e2;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -moz-transition: 0.2s all;
}

.btn-primary:focus,
.btn-primary:active {
  border: 1px solid #f51f2a !important;
  background: #f51f2a;
  color: white;
}

.btn-primary:hover {
  background: #f51f2a;
  border: 1px solid #f51f2a;
  color: white;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
  -moz-box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
}

.btn-success {
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  color: #9a9a9a;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -moz-transition: 0.2s all;
}

.btn-success:focus,
.btn-success:active {
  border: 1px solid #f2f2f2;
  color: #1c75b7;
}

.btn-success:hover {
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  color: black;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
  -moz-box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
}

/*INPUTS*/

input, .k-textbox{
    width: 100% !important;
}

input:focus,
.k-textbox:focus{
  border: 2px solid #096acc!important;
  box-shadow: none !important;
}

.k-state-focused{
    box-shadow: none !important;
    border: 2px solid #c41720 !important;
}

/*INPUT DATE*/

.form-horizontal .form-group{
    width: 100%;
    margin: 0px auto;
}

.k-header{
    background: transparent !important;
}

/*DROPDOWN*/
.k-dropdown{
    width: 100% !important;
    padding: 0px !important;
}

/*NUMERIC TEXT*/
.k-numerictextbox{
    width: 100% !important;
    padding: 0px !important;
}

.breadcrumb{
    background-color: transparent;
    border-radius: 0px;
    border-bottom: 1px solid #d3d3d3;
}

/*PANELES

.panel {
    margin-top: 10px;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
  -moz-box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(115, 115, 115, 0.3);
}

.panel .panel-heading {
  background: #c41720;
  color: white;
  font-weight: bold;
}*/

/*MODAL*/

.modal .modal-dialog .modal-header{
  background: #c41720;
  color: white;
  font-weight: bold;
}

.modal .modal-dialog .modal-header .close{
    color: white;
}

/*TARJETAS HOME*/

.card.tarjeta-home {
  margin: 10px auto;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  box-shadow: 3px 3px 20px #d2d2d2;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -moz-transition: 0.2s all;
}

.card.tarjeta-home:hover {
  box-shadow: 0px 0px 5px #d2d2d2;
  background: #f5f5f5;
  border: 1px solid #c1c1c1;
  cursor: pointer
}

.card.tarjeta-home:hover>img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.card.tarjeta-home .card-body {
  padding: 20px;
}

.card.tarjeta-home .card-body .card-title {
  text-align: center;
  font-weight: bold;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.card.tarjeta-home .card-body .card-text {
  text-align: center;
}


/*TARJETAS CURSOS*/

.card.tarjeta-curso,
.card.tarjeta-convocatoria {
  box-shadow: 0px 2px 2px #d2d2d2;
  margin: 10px auto;
  cursor: none;
}

.card.tarjeta-curso:hover,
.card.tarjeta-convocatoria:hover {
  cursor: pointer;
}

.card.tarjeta-curso .card-header {
  background: #c41720;
  padding: 5px;
  color: #ffffff;
}

.card.tarjeta-convocatoria .card-header {
  background: #1c75b7;
  padding: 5px;
  color: white;
}

.card.tarjeta-curso .card-header strong,
.card.tarjeta-convocatoria .card-header strong {
  font-weight: bold;
}

.card.tarjeta-curso .card-body,
.card.tarjeta-convocatoria .card-body {
  background: #ffffff;
  padding: 5px;
  color: black;
}

.card.tarjeta-curso .card-body .card-title,
.card.tarjeta-convocatoria .card-body .card-title {
  display: none;
}

.card.tarjeta-curso .card-body .card-text,
.card.tarjeta-convocatoria .card-body .card-text,
{
  text-align: left;
}

.card.tarjeta-curso .card-footer,
.card.tarjeta-convocatoria .card-footer {
  background: #f2f2f2;
  padding: 5px;
  color: #a2a2a2;
  height: 50px;
}

.card.tarjeta-curso .card-footer .btn,
.card.tarjeta-convocatoria .card-footer .btn {
  width: 50%;
  margin: 5px auto;
  display: block;
  float: right;
}

.card.tarjeta-curso .card-footer .btn-primary,
.card.tarjeta-convocatoria .card-footer .btn-primary {
  background: #aaaaaa !important;
  color: white;
  border: none !important;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -moz-transition: 0.2s all;
}

.card.tarjeta-curso .card-footer .btn-primary:hover,
.card.tarjeta-convocatoria .card-footer .btn-primary:hover {
  color: black;
}

/*PAGINADOR*/

.pagination li a {
  color: #c41720;
}

@media only screen and (max-width: 1900px) {
  /*TITULO PRINCIPAL*/
  div.titulo-apc h2 {
    text-align: center;
    width: 100%;
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 1600px) {}

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 800px) {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 720px) {}

@media only screen and (max-width: 600px) {
  /*TITULO PRINCIPAL*/
  div.titulo-apc h2 {
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 22px;
  }
}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 375px) {}

@media only screen and (max-width: 360px) {}

@media only screen and (max-width: 320px) {}


/*---------------------------------------------------------------*/

