﻿.tile-content-row {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: row; }
  @media (max-width: 767px) {
    .tile-content-row {
      flex-direction: column; } }
  .tile-content-row .tile-content-col {
    display: flex;
    flex-direction: column; }
    .tile-content-row .tile-content-col .tile-subtext-wrapper {
      flex-grow: 1; }
  .tile-content-row .col {
    position: relative;
    min-height: 20rem;
    margin-bottom: 3rem;
    overflow: hidden;
    /*width: 100%;*/ }
    .tile-content-row .col .tile-wrapper {
      /*position: absolute;*/
      width: 100%;
      /*height: 100%;*/
      /*max-height:30rem;*/
      border-radius: 0.5rem;
      /*padding: 0 1rem;*/
      /*height: 100%;*/ }
      .tile-content-row .col .tile-wrapper.tile-no-img {
        height: 100%; }
    .tile-content-row .col .col-tile-img {
      background-size: cover;
      background-position: center;
      width: 100%;
      margin-bottom: 0rem;
      max-height: 30rem;
      border-radius: 0.5rem; }
    .tile-content-row .col .col-tile-heading {
      position: absolute;
      margin: 0;
      bottom: 0rem;
      left: 1.5rem;
      width: calc(100% - 3.0rem);
      text-align: center;
      padding: 1rem 0rem;
      color: #fff;
      border-bottom-left-radius: 0.5rem;
      border-bottom-right-radius: 0.5rem; }
      .tile-content-row .col .col-tile-heading p {
        margin: 0; }
    .tile-content-row .col .col-tile-content {
      position: absolute;
      margin: auto;
      bottom: 0rem;
      left: 0rem;
      right: 0;
      top: 0;
      width: 70%;
      height: 70%;
      text-align: center;
      padding: 1rem 0rem;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center; }
      .tile-content-row .col .col-tile-content p {
        margin: 0; }

.tooltip-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .tooltip-wrapper .tooltip-content {
    width: 35%;
    padding: 1.5rem;
    background-color: white; }
    .tooltip-wrapper .tooltip-content h2 {
      background-color: white; }
    .tooltip-wrapper .tooltip-content p {
      background-color: white; }
    @media (max-width: 768px) {
      .tooltip-wrapper .tooltip-content {
        width: 100%; } }
  .tooltip-wrapper .tooltip-control {
    width: 35%;
    display: flex;
    position: relative;
    height: 3rem;
    background-color: white; }
    @media (max-width: 768px) {
      .tooltip-wrapper .tooltip-control {
        width: 100%; } }
    .tooltip-wrapper .tooltip-control .tooltip-close {
      font-size: 3rem;
      float: right;
      right: 0;
      position: absolute;
      margin-top: 1rem;
      margin-right: 1rem; }
