.smartbanner {
  position: fixed;
  z-index: 401;
}

.fg-content {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.fg-generic-error-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20000;

  display: flex;
  justify-content: center;
  align-items: center;

  height: 60px;

  margin: 0;

  color: #8a6d3b;
  background-color: #fcf8e3;
  border-bottom: 1px solid #DDDDDD;

  font-size: 15px;

  transition: height .4s ease;
}

.fg-generic-error-message.ng-hide {
  height: 0;
}

.fg-ui-view-header {
  position: relative;
  
  height: 60px;
}

.fg-content-body-container {
  display: flex;
  justify-content: space-between;

  max-width: 1440px;

  margin: auto;
  padding: 0 25px;
}

.fg-content-body-container--offset-generic-error {
  padding-top: 60px;
}

.fg-grid-main-container {
  flex: 0 1 calc(100% - 200px);
}

.fg-grid-main-container--full-width {
  flex: 0 1 100%;
}

.fg-grid-main-container--category-detail {
  flex: 0 1 calc(100% - 425px);
  height: 100%;
}

.fg-grid-main-container--place-on-top {
  z-index: 403;
}

.fg-place-view-main-container {
  width: 100%;
  flex: 1 1 auto;
}

.fg-content-footer-message {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;

  width: 100vw;
  height: 60px;

  background-color: #08B58E;
  color: #FFFFFF;
  border-top: 1px solid #DDDDDD;

  font-family: 'AzoSans-Medium';
  font-size: 15px;
  line-height: 19px;

  transition: opacity .4s ease;
}

.fg-content-footer-message.ng-hide {
  opacity: 0;
}

.fg-content-footer-message-text {
  margin: 0;
}

.fg-content-footer-message-action-button {
  width: 120px;
  height: 35px;

  margin-left: 18.5px;

  background-color: transparent;
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 5px;

  font-size: 12.5px;
  line-height: 16px;

  transition: all .4s ease;
}

.fg-content-footer-message-action-button:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #08B58E;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .fg-ui-view-header {
    padding: 0 15px;
  }
  .fg-content-body-container {
    max-width: 1024px;

    padding: 0 15px;
  }

  .fg-content-body-container--offset-generic-error {
    padding-top: 60px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fg-content-body-container {
    max-width: 768px;

    padding: 0 10px;
  }

  .fg-content-body-container--offset-generic-error {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .fg-content-body-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 5vw;
  }

  .fg-profile-main-container--category-hierarchy-view {
    padding: 0;
  }

  .fg-content-body-container--offset-generic-error {
    padding-top: 60px;
  }

  .fg-grid-main-container {
    flex: 0 1 calc(100% - 50px);
    width: 100%;
  }

  .fg-content-footer-message-text {
    font-size: 11px;
  }

  .fg-profile-main-container-on-stream {
    display: none;
  }
}
