.corner {
    background-color: clear;
    text-align: center;
    position: fixed;
    right: 0;
    top: 0px;
    width: 160;
    z-index: 10001;
    cursor: default;
}

#top {
    padding: 3.3em 0 1.7em 0 !important;
}

@media screen and (min-width: 981px) {
    .face-large {
        display: inline;
    }

    .face-small {
        display: none;
    }
}

@media screen and (max-width: 980px) {
    .face-large {
        display: none;
    }

    .face-small {
        display: inline;
    }
}

.image.featured {
    padding: 1.9em;
    padding-bottom: 0em;
}

.wrapper_with_rows h3 {
    margin-bottom: 0px;
}

.wrapper_with_rows .row {
    align-items: center;
    background-color: white;
    margin-bottom: 50px;
    padding-right: 25px;
}

.wrapper_with_rows .row>div {
    padding-bottom: 25px;
}

@media screen and (min-width: 981px) {
    .wrapper_with_rows .row {
        margin-left: 0px;
    }
}

@media screen and (max-width: 980px) {
    .wrapper_with_rows .container {
        margin-left: 35px;
    }
}

@media screen and (max-width: 736px) {
    .wrapper_with_rows .row {
        margin-left: auto;
        margin-right: auto;
        padding-right: 15px;
        max-width: 32em;
    }

    .wrapper_with_rows .container {
        margin-left: 15px;
    }
}




  .tooltip-container {
    position: relative;
    display: inline-block;
  }

  /* Make the image focusable so phones & keyboard users can trigger tooltip */
  .tooltip-container img {
    display: block;
    cursor: pointer;
    outline: none;
  }

  /* Tooltip box */
  .tooltip {
    position: absolute;
    bottom: 100%;             /* place above the image */
    left: 50%;
    transform: translateX(-85%) translateY(2px);
    background: #353535;
    color: #fff;
    text-shadow: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    z-index: 10;
  }

  /* Small arrow */
  .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 85%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #222;
  }

  /* Show tooltip on hover OR keyboard/touch focus */
  .tooltip-container:hover .tooltip,
  .tooltip-container:focus-within .tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-85%) translateY(-4px);
  }
