/*---------------------------------
-----  dimension variables --------
----------------------------------*/
/*------  standard elements padding & margin  -------*/
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
/**
**  Official Font sizes
------------------------------- */
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
.ux-tile-body__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.ux-tile-body__overlay.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.ux-tile-body__overlay-close {
  position: absolute;
  line-height: 0;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
@media screen and (max-width: 567px) {
  .ux-tile-body__overlay-close {
    top: 10px;
    right: 10px;
  }
}
.ux-tile-body__overlay-content {
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 250px;
  justify-content: center;
  height: 100%;
}
.ux-tile-body__overlay-content > div {
  margin-bottom: 10px;
}
.ux-tile-body__overlay-content a {
  background: white;
  margin-bottom: 10px;
}
.ux-tile-body__overlay a .ux-icon {
  font-size: 24px;
  margin: -5px 0 -5px 10px;
}

.ux-tile-head__text {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 691px) and (max-width: 769px) {
  .ux-tile-head__text {
    flex-direction: row;
  }
  .ux-tile-head__text > *:last-child {
    margin-left: 20px;
  }
}
.ux-tile-head__description {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ux-tile-head__description > *:not(:first-child) {
  margin-left: 30px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .ux-tile-head__description > *:not(:first-child) {
    margin-left: 15px;
  }
}
@media screen and (max-width: 390px) {
  .ux-tile-head__description > *:not(:first-child) {
    margin-left: 15px;
  }
}