/**
* - General
* - Cards
* - Button
* - Single
* - admin
**/


/* General */
.utick_container {
  display: grid;
  gap: 2rem;
  box-sizing: border-box;
  justify-items: center;
  padding: 1rem;
  color: #141827;
}
.utick-color {
  color: #00a0e0;
}
@media (min-width: 900px) {
  .utick_container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards */
.card-event {
  box-shadow: 0 1px 5px rgba(0,0,0,.5);
  position: relative;
}
.card-event:hover .card-event__image .btn-utick__secondary {
  opacity: 0.7;
  transform: translate(-50%, -50%);
}
.card-event:after {
  position: absolute;
  top: 100%;
  height: 30px;
  width: 100%;
  content: "";
  display: block;
  background: url('../panel-shadow.png') no-repeat top center;
    background-size: auto;
  background-size: contain;
}
.card-event > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit !important;
}
.card-event > a:hover {
  color: inherit !important;
}
.card-event__image {
  position: relative;
}
.card-event__image .btn-utick__secondary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 0.5rem));
  opacity: 0;
  transition: 0.2s all ease-in;
}
.card-event__category {
  color: #00a0e0;
}
.card-event__image img {
  width: 100%;
}
.card-event__body {
  padding: 1rem;
  background-color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
}
.card-event__body h2 {
  font-size: 17px;
  margin-bottom: 0.2em;
}
.card-event__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0 0;
  padding: 1rem 0 0 0;
}
.card-event__footer img {
  height: 14px;
  opacity: 0.5;
}

/* Button */
.btn-utick {
  display: inline-block;
  background-color: #00a0e0;
  border: 1px solid #e42c84;
  outline: none;
  padding: 0.5rem 1rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
  color: #fff !important;
  transition: 0.2s background-color ease-in;
}
.btn-utick:hover {
  background-color: #e42c84;
}
.btn-utick__secondary {
  display: inline-block;
  background-color: #00a0e0;
  border: 1px solid #ffffff;
  outline: none;
  padding: 0.5rem 1rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
  color: #fff;
  transition: 0.2s background-color ease-in;
}

/* Single */
.utick-single-event {
  box-sizing: border-box;
  color: #141827;
  padding: 5rem 1rem;
}
.utick-single-event h1 {
  font-size: 30px;
}
.utick-single-event table {
  font-size: 14px;
  width: 100%;
}
.utick-single-event th,
.utick-single-event tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.utick-single-event td,
.utick-single-event th {
  padding: 1rem;
  text-align: left;
}
.utick-single-event__header {
  margin-bottom: 2rem;
} 
.utick-single-event__category {
  color: #00a0e0;
}
.utick-single-event__col {
  display: grid;
  justify-content: space-between;
  align-items: stretch;
}
.utick-single-event p {
  margin-bottom: 0.7em;
}
.utick-single-event__table-note {
  display: none;
}
@media (min-width: 900px) {
  .utick-single-event__table-note {
    display: table-cell;
  }
  .utick-single-event__table-date__note {
    display: none;
  }
  .utick-single-event__col {
    grid-template-columns: 35% 60%;
  }
}

/* admin */
.utick-alert {
  border-left: 5px solid firebrick;
  background-color: #fff;
}
.form-utick {
  margin: 3rem 0;
}
