@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;700&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,800&family=Public+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Source Sans Pro",Arial,sans-serif;
  color: #333333; }

.body-padding {
  padding-top: 88px; }
  @media (max-width: 767.9px) {
    .body-padding {
      padding-top: 58px; } }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a.btn {
  height: 58px;
  border: 0;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 58px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  padding: 0 30px;
  display: inline-block;
  transition: all .3s ease-in-out;
  border-radius: 0;
  white-space: nowrap;
  min-width: 228px;
  background: #F8A500;
  border-radius: 36px; }
  @media (max-width: 767.9px) {
    a.btn {
      width: 100%; } }
  a.btn:hover {
    color: #FFFFFF;
    background-color: #DD9300; }

b {
  font-weight: bold; }

.shake {
  animation: shake 10s ease infinite; }

@keyframes shake {
  0%, 100% {
    transform: translateY(0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translateY(-10px); }
  20%, 40%, 60%, 80% {
    transform: translateY(10px); } }
nav {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  transition: all .3s ease-in-out;
  z-index: 100;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  top: 0;
  opacity: 1; }
  @media (max-width: 767.9px) {
    nav {
      box-shadow: none;
      background: transparent; } }
  nav.nav-fixed {
    position: fixed;
    opacity: 0;
    transition: all .3s ease-in-out; }
    @media (max-width: 767.9px) {
      nav.nav-fixed {
        background: #fff; } }
  nav .inner-nav {
    padding: 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
    @media (max-width: 1200px) {
      nav .inner-nav {
        max-width: 100%;
        padding: 13px 19px; } }
    @media (max-width: 991.9px) {
      nav .inner-nav {
        padding: 2px 19px; } }
    @media (max-width: 991.9px) {
      nav .inner-nav {
        padding: 0 19px;
        height: 79px;
        max-width: 100%;
        justify-content: end; } }
    nav .inner-nav .logo {
      display: flex;
      align-self: center; }
      nav .inner-nav .logo a {
        display: block; }
        nav .inner-nav .logo a img {
          max-width: 177px; }
          @media (max-width: 767.9px) {
            nav .inner-nav .logo a img {
              max-width: 148px; } }
    nav .inner-nav .nav-btn {
      margin-right: 36px; }
      @media (max-width: 767.9px) {
        nav .inner-nav .nav-btn {
          display: none; } }
    nav .inner-nav .nav-links {
      flex-grow: 1; }
    nav .inner-nav .menu-toggle {
      font-size: 30px;
      font-weight: 300;
      letter-spacing: 0.65px;
      line-height: 79px;
      color: #333;
      cursor: pointer; }
      nav .inner-nav .menu-toggle .fa-bars:before {
        font-weight: bold; }
      @media (max-width: 767.9px) {
        nav .inner-nav .menu-toggle {
          display: block; } }

.dropdownmenu-wrapper {
  width: 410px;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 26px;
  right: 0;
  z-index: 100;
  transition: all .3s ease-in-out;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08); }
  @media (max-width: 575.9px) {
    .dropdownmenu-wrapper {
      width: 380px; } }
  .dropdownmenu-wrapper.open {
    max-height: 529px; }
  .dropdownmenu-wrapper .dropdownmenu {
    padding: 72px 45px 45px;
    background: #FFFFFF;
    position: relative;
    border-bottom: 2px solid #F8A500; }
    @media (max-width: 767.9px) {
      .dropdownmenu-wrapper .dropdownmenu {
        padding: 25px 45px 45px; } }
    .dropdownmenu-wrapper .dropdownmenu .close-btn {
      cursor: pointer;
      position: absolute;
      top: 13px;
      right: 18px; }
      .dropdownmenu-wrapper .dropdownmenu .close-btn i {
        color: #333333;
        font-size: 30px;
        transition: all .3s ease-in-out; }
        .dropdownmenu-wrapper .dropdownmenu .close-btn i:hover {
          color: #DD9300; }
    .dropdownmenu-wrapper .dropdownmenu .logo {
      margin-bottom: 41px;
      display: none; }
      @media (max-width: 767.9px) {
        .dropdownmenu-wrapper .dropdownmenu .logo {
          display: block; } }
      .dropdownmenu-wrapper .dropdownmenu .logo img {
        width: 148px; }
    .dropdownmenu-wrapper .dropdownmenu ul.links-list li {
      margin-bottom: 16px; }
      .dropdownmenu-wrapper .dropdownmenu ul.links-list li a {
        font-size: 19px;
        line-height: 31px;
        text-decoration: none;
        color: #333333;
        transition: all .3s ease-in-out; }
        .dropdownmenu-wrapper .dropdownmenu ul.links-list li a:hover {
          color: #DD9300; }
    .dropdownmenu-wrapper .dropdownmenu ul.social-links {
      border-top: 1px solid #EBEBEB;
      display: flex;
      justify-content: start;
      padding-top: 33px;
      margin-bottom: 36px;
      flex-wrap: wrap; }
      .dropdownmenu-wrapper .dropdownmenu ul.social-links li {
        width: 50%;
        margin-bottom: 10px; }
        .dropdownmenu-wrapper .dropdownmenu ul.social-links li a {
          font-weight: 600;
          font-size: 15px;
          line-height: 29px;
          text-decoration: none;
          color: #333333;
          transition: all .3s ease-in-out; }
          .dropdownmenu-wrapper .dropdownmenu ul.social-links li a:hover {
            color: #DD9300; }
          .dropdownmenu-wrapper .dropdownmenu ul.social-links li a i {
            font-size: 24px;
            margin-right: 22px;
            line-height: 29px;
            vertical-align: middle; }
            .dropdownmenu-wrapper .dropdownmenu ul.social-links li a i:hover {
              color: #DD9300; }
    .dropdownmenu-wrapper .dropdownmenu .btn {
      font-size: 16px;
      min-width: 270px; }

.content-wrapper {
  position: relative; }
  .content-wrapper section#title {
    background: linear-gradient(204.06deg, #005F88 3.38%, #014263 54.65%, #003451 98.95%);
    padding: 150px 0 111px; }
    @media (max-width: 767.9px) {
      .content-wrapper section#title {
        padding: 120px 10px 50px 10px; } }
    .content-wrapper section#title h1 {
      font-family: 'Raleway';
      font-style: normal;
      font-weight: 400;
      font-size: 50px;
      line-height: 56px;
      text-align: center;
      color: #EAF6FC; }
      @media (max-width: 767.9px) {
        .content-wrapper section#title h1 {
          font-size: 35px;
          line-height: 41px;
          text-align: left; } }
      .content-wrapper section#title h1 b {
        font-weight: 700; }
  .content-wrapper section#filter {
    margin-top: -85px; }
    @media (max-width: 767.9px) {
      .content-wrapper section#filter {
        margin-top: -35px; } }
    .content-wrapper section#filter .filter-wrapper {
      background: #FFFFFF;
      border: 1px solid #D6D8DD;
      border-radius: 10px;
      background: #FFFFFF; }
      .content-wrapper section#filter .filter-wrapper .top-row {
        padding: 30px 40px 30px 50px;
        border-bottom: 1px solid #D6D8DD; }
        @media (max-width: 991.9px) {
          .content-wrapper section#filter .filter-wrapper .top-row {
            padding: 20px; } }
        .content-wrapper section#filter .filter-wrapper .top-row .title {
          font-family: 'Lato';
          font-style: normal;
          font-weight: 700;
          font-size: 20px;
          line-height: 33px;
          color: #2A363D;
          margin-bottom: 5px; }
        .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper {
          display: flex;
          justify-content: space-between; }
          @media (max-width: 991.9px) {
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper {
              flex-wrap: wrap; } }
          .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .subtitle {
            font-family: 'Lato';
            font-style: normal;
            font-weight: 700;
            font-size: 14px;
            line-height: 15px;
            color: #2A363D;
            margin-bottom: 9px; }
          .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .flex-col {
            padding: 0 20px 0 0;
            height: 100%; }
            @media (max-width: 767.9px) {
              .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .flex-col {
                padding: 0 0 20px; } }
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .flex-col.channels {
              flex-grow: 1;
              max-width: 440px; }
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .flex-col.additional {
              padding: 0;
              padding-left: 21px;
              border-left: 1px solid #D6D8DD; }
              @media (max-width: 991.9px) {
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .flex-col.additional {
                  border-left: 0;
                  padding-left: 0;
                  border-top: 1px solid #D6D8DD;
                  width: 100%;
                  padding-top: 29px; } }
          .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes {
            display: flex;
            flex-wrap: wrap; }
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box {
              background: #FFFFFF;
              border: 1px solid #D6D8DD;
              border-radius: 10px;
              padding: 18px 23px;
              margin-bottom: 10px;
              margin-right: 10px;
              display: inline-block;
              cursor: pointer;
              transition: all .3s ease-in-out;
              flex-grow: 1; }
              @media (max-width: 767.9px) {
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box {
                  flex-grow: 0;
                  padding: 18px 38px 18px 18px; } }
              .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box:hover {
                background: #EFF4F7; }
                @media (max-width: 767.9px) {
                  .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box:hover {
                    background: #FFFFFF; } }
              .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.active {
                background: #EFF4F7;
                position: relative; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.active:after {
                  content: '';
                  background-image: url("../../retailer-network/assets/images/desktop/close.png");
                  background-repeat: no-repeat;
                  background-size: contain;
                  width: 20px;
                  height: 20px;
                  position: absolute;
                  top: 10px;
                  right: 10px; }
              .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box p {
                font-family: 'Lato';
                font-style: normal;
                font-weight: 700;
                font-size: 13px;
                line-height: 15px;
                color: #2A363D;
                margin-bottom: 18px;
                white-space: nowrap; }
              .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box .retailers {
                font-family: 'Lato';
                font-style: normal;
                font-weight: 400;
                font-size: 11px;
                line-height: 11px;
                color: #717171; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.box-sf {
                    border-left: 7px solid #E8C37C; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.box-df {
                    border-left: 7px solid #F0B3A1; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.box-nf {
                    border-left: 7px solid #C1B0EA; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.box-def {
                    border-left: 7px solid #B1DCF2; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.box-cf {
                    border-left: 7px solid #D6D8DD; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes .box.box-uf {
                    border-left: 7px solid #D6D8DD; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes #Amazon {
                    border-left: 7px solid #FF9901; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes #Kroger {
                    border-left: 7px solid #0E51A1; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes #Ahold {
                    border-left: 7px solid #11C81E; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes #Albertsons {
                    border-left: 7px solid dodgerblue; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes #Buy-Online {
                    border-left: 7px solid dodgerblue; }
                .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .boxes #Canada {
                    border-left: 7px solid crimson; }
          .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .filter-toggle {
            background: #FFFFFF;
            border: 1px solid #D6D8DD;
            border-radius: 10px;
            font-family: 'Lato';
            font-style: normal;
            font-weight: 700;
            font-size: 13px;
            line-height: 53px;
            height: 53px;
            color: #2A363D;
            margin-bottom: 10px;
            width: 100%;
            padding: 0 21px;
            min-width: 244px;
            cursor: pointer; }
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .filter-toggle img {
              width: 18px;
              margin-right: 10px;
              vertical-align: sub; }
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .filter-toggle:hover {
              background: #EFF4F7; }
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .filter-toggle.active {
              background: #EFF4F7;
              position: relative; }
              .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .filter-toggle.active:after {
                content: '';
                background-image: url("../../retailer-network/assets/images/desktop/close.png");
                background-repeat: no-repeat;
                background-size: contain;
                width: 20px;
                height: 20px;
                position: absolute;
                top: 0;
                right: 10px;
                bottom: 0;
                margin: auto; }
            .content-wrapper section#filter .filter-wrapper .top-row .flex-wrapper .filter-toggle.fake {
              background-color: transparent;
              border: 0;
              color: #717171;
              cursor: default;
              font-weight: 400;
              margin-bottom: 0; }
      .content-wrapper section#filter .filter-wrapper .bot-row {
        padding: 13px 39px 18px 50px;
        display: flex;
        justify-content: space-between;
        line-height: 26px; }
        @media (max-width: 767.9px) {
          .content-wrapper section#filter .filter-wrapper .bot-row {
            padding: 19px 25px;
            flex-direction: column; } }
        .content-wrapper section#filter .filter-wrapper .bot-row .result-count {
          font-family: 'Lato';
          font-style: normal;
          font-weight: 400;
          font-size: 20px;
          color: #2A363D;
          padding-right: 40px;
          align-self: center; }
          .content-wrapper section#filter .filter-wrapper .bot-row .result-count span {
            font-weight: 700;
            display: inline-block;
            min-width: 36px;
            text-align: right; }
            @media (max-width: 767.9px) {
              .content-wrapper section#filter .filter-wrapper .bot-row .result-count span {
                min-width: 0; } }
          @media (max-width: 767.9px) {
            .content-wrapper section#filter .filter-wrapper .bot-row .result-count {
              margin-top: 15px;
              padding-right: 0px;
              width: 100%; } }
        .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper {
          flex-grow: 1;
          text-align: left;
          padding-right: 40px;
          position: relative;
          align-self: center; }
          @media (max-width: 767.9px) {
            .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper {
              margin-top: 20px;
              padding-right: 0px;
              width: 100%; } }
          .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper img.search {
            width: 14px;
            position: absolute;
            left: 0;
            top: 7px; }
          .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper img.reset-text {
            width: 20px;
            cursor: pointer;
            margin-left: -25px; }
          .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper input {
            padding: 0 25px;
            font-family: 'Lato';
            font-style: normal;
            font-weight: 700;
            font-size: 13px;
            color: #2A363D;
            width: 100%;
            max-width: 278px;
            border: 0;
            border-bottom: 1px solid #D6D8DD;
            outline: 0; }
            .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper input ::-webkit-input-placeholder {
              color: #717171;
              font-weight: 400; }
            .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper input :-moz-placeholder {
              color: #717171;
              font-weight: 400; }
            .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper input ::-moz-placeholder {
              color: #717171;
              font-weight: 400; }
            .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper input :-ms-input-placeholder {
              color: #717171;
              font-weight: 400; }
            @media (max-width: 767.9px) {
              .content-wrapper section#filter .filter-wrapper .bot-row .search-wrapper input {
                max-width: 100%;
                width: 100%; } }
        .content-wrapper section#filter .filter-wrapper .bot-row .filter-reset {
          font-family: 'Lato';
          font-style: normal;
          font-weight: 700;
          font-size: 13px;
          color: #799ABB;
          cursor: pointer;
          align-self: center;
          transition: all .3s ease-in-out; }
          @media (max-width: 767.9px) {
            .content-wrapper section#filter .filter-wrapper .bot-row .filter-reset {
              width: 100%; } }
          .content-wrapper section#filter .filter-wrapper .bot-row .filter-reset img {
            width: 15px;
            margin-right: 7px; }
          .content-wrapper section#filter .filter-wrapper .bot-row .filter-reset:hover {
            color: #407AB4; }
  .content-wrapper section#alphabet {
    margin: 15px 0 20px; }
    .content-wrapper section#alphabet .letters {
      background: #F8F9F9;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      padding: 0 25px; }
      @media (max-width: 991.9px) {
        .content-wrapper section#alphabet .letters {
          flex-wrap: wrap;
          padding: 5px;
          justify-content: center; } }
      .content-wrapper section#alphabet .letters .letter {
        font-family: 'Lato';
        font-style: normal;
        font-weight: 700;
        font-size: 13px;
        line-height: 40px;
        color: #799ABB;
        flex-grow: 1;
        text-align: center;
        cursor: pointer;
        transition: all .3s ease-in-out; }
        .content-wrapper section#alphabet .letters .letter:hover {
          color: #407AB4; }
        @media (max-width: 991.9px) {
          .content-wrapper section#alphabet .letters .letter {
            padding: 0 15px;
            flex-grow: 0; } }
  .content-wrapper section#retailers {
    padding-bottom: 50px; }
    .content-wrapper section#retailers .letter-wrapper {
      max-height: auto;
      transition: all .3s ease-in-out; }
      .content-wrapper section#retailers .letter-wrapper.hide {
        max-height: 0;
        overflow: hidden; }
      .content-wrapper section#retailers .letter-wrapper .heading {
        background: #F8F9F9;
        font-family: 'Lato';
        font-style: normal;
        font-weight: 700;
        font-size: 13px;
        line-height: 40px;
        color: #717171;
        height: 40px;
        padding: 0 17px; }
        @media (max-width: 767.9px) {
          .content-wrapper section#retailers .letter-wrapper .heading {
            padding: 10px 0px;
            font-family: 'IBM Plex Sans';
            font-style: normal;
            font-weight: 500;
            font-size: 39px;
            line-height: 51px;
            text-align: center;
            color: #D6D8DD;
            height: auto; } }
      .content-wrapper section#retailers .letter-wrapper .results .result {
        height: 87px;
        display: flex;
        justify-content: space-between;
        padding: 0 38px 0 20px;
        border-bottom: 1px solid #D6D8DD; }
        @media (max-width: 767.9px) {
          .content-wrapper section#retailers .letter-wrapper .results .result {
            height: auto;
            padding: 11px 20px 11px 20px; } }
        .content-wrapper section#retailers .letter-wrapper .results .result .logo {
          width: 115px;
          padding-right: 40px;
          align-self: center;
          min-width: 115px; }
          .content-wrapper section#retailers .letter-wrapper .results .result .logo img {
            max-height: 44px;
            max-width: 100%; }
        .content-wrapper section#retailers .letter-wrapper .results .result .mobile-wrapper {
          display: flex;
          justify-content: space-between;
          flex-grow: 1; }
          @media (max-width: 767.9px) {
            .content-wrapper section#retailers .letter-wrapper .results .result .mobile-wrapper {
              flex-direction: column;
              flex-grow: 1; } }
        .content-wrapper section#retailers .letter-wrapper .results .result .name {
          font-family: 'Lato';
          font-style: normal;
          font-weight: 400;
          font-size: 17px;
          line-height: 87px;
          color: #333333;
          flex-grow: 1;
          padding-right: 40px; }
          @media (max-width: 767.9px) {
            .content-wrapper section#retailers .letter-wrapper .results .result .name {
              padding-right: 0;
              line-height: 28px; } }
        .content-wrapper section#retailers .letter-wrapper .results .result .logos {
          align-self: center; }
          .content-wrapper section#retailers .letter-wrapper .results .result .logos img {
            margin-right: 20px;
            width: 18px; }
          @media (max-width: 767.9px) {
            .content-wrapper section#retailers .letter-wrapper .results .result .logos {
              margin-top: 10px;
              width: 100%; } }
        .content-wrapper section#retailers .letter-wrapper .results .result .channel {
          font-family: 'Lato';
          font-style: normal;
          font-weight: 400;
          font-size: 11px;
          line-height: 27px;
          color: #AF6363;
          align-self: center;
          display: flex; }
          @media (max-width: 767.9px) {
            .content-wrapper section#retailers .letter-wrapper .results .result .channel {
              margin-top: 10px;
              align-self: flex-start;
              flex-wrap: wrap; } }
          .content-wrapper section#retailers .letter-wrapper .results .result .channel span {
            height: 27px;
            border-radius: 10px;
            display: block;
            padding: 0 15px;
            margin-left: 20px; }
            @media (max-width: 767.9px) {
              .content-wrapper section#retailers .letter-wrapper .results .result .channel span {
                margin-bottom: 10px;
                margin-left: 0px;
                margin-right: 10px; } }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.SPINS {
              background-color: #E9C78666;
              color: #8C6B2C; display: none !important; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Datasembly {
              background-color: #F0B3A166;
              color: #94443E; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Nielsen {
              background-color: #C1B0EA66;
              color: #5B4889; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.eCommerce {
              background-color: #B1DCF266;
              color: #41718B; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Canada {
              background-color: #B6B6B666;
              color: #656565; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.UK {
              background-color: #B6B6B666;
              color: #656565; }
              .content-wrapper section#retailers .letter-wrapper .results .result .channel span.UK {
              background-color: #B6B6B666;
              color: #656565; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Amazon {
              background-color: #FF9901;
              color: #FFFFFF; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Ahold {
              background-color: #11C81E;
              color: #FFFFFF; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Kroger {
              background-color: #0E51A1;
              color: #FFFFFF; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Albertsons {
              background-color: dodgerblue;
              color: #FFFFFF; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Buy {
              background-color: dodgerblue;
              color: #FFFFFF; }
            .content-wrapper section#retailers .letter-wrapper .results .result .channel span.Canada {
              background-color: crimson;
              color: #FFFFFF; }
  .content-wrapper .scrollTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #E8B227;
    opacity: .7;
    transition: all .3s ease-in-out;
    z-index: 10;
    color: #fff;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    cursor: pointer; }
    .content-wrapper .scrollTop:hover {
      opacity: 1; }
    @media (max-width: 767.9px) {
      .content-wrapper .scrollTop {
        bottom: 20px;
        right: 20px; } }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
footer .footnav {
  background: #272B35;
  padding: 50px 0; }
  footer .footnav h2 {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9); }
    @media (max-width: 991.9px) {
      footer .footnav h2 {
        font-size: 20px;
        line-height: 31px;
        margin-bottom: 20px; } }
  footer .footnav .left-content ul {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3; }
    @media (max-width: 767.9px) {
      footer .footnav .left-content ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1; } }
    @media (max-width: 991.9px) {
      footer .footnav .left-content ul li {
        margin-top: 10px; }
        footer .footnav .left-content ul li.social1 {
          margin-top: 40px; } }
    footer .footnav .left-content ul li a {
      font-family: Source Sans Pro;
      font-style: normal;
      font-weight: 600;
      font-size: 15px;
      line-height: 29px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all .3s ease-in-out; }
      footer .footnav .left-content ul li a:hover {
        color: white; }
      footer .footnav .left-content ul li a i {
        font-size: 20px;
        margin-right: 23px;
        color: white; }
  @media (max-width: 991.9px) {
    footer .footnav .right-content {
      margin-top: 44px; } }
  footer .footnav .right-content .text-wrapper {
    display: flex;
    justify-content: start; }
    @media (max-width: 767.9px) {
      footer .footnav .right-content .text-wrapper {
        flex-direction: column;
        margin-top: 16px; } }
    footer .footnav .right-content .text-wrapper p {
      font-family: Source Sans Pro;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      line-height: 29px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 0;
      padding-right: 15px; }
      @media (max-width: 991.9px) {
        footer .footnav .right-content .text-wrapper p {
          margin-bottom: 24px; } }
    footer .footnav .right-content .text-wrapper a.btnblk {
      border: 2px solid rgba(255, 255, 255, 0.9);
      box-sizing: border-box;
      border-radius: 36px;
      height: 48px;
      line-height: 48px;
      font-family: Source Sans Pro;
      font-style: normal;
      font-weight: bold;
      font-size: 15px;
      text-align: center;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #FFFFFF;
      transition: all .3s ease-in-out;
      min-width: 217px;
      text-align: center;
      text-decoration: none; }
      @media (max-width: 767.9px) {
        footer .footnav .right-content .text-wrapper a.btnblk {
          width: 100%; } }
      footer .footnav .right-content .text-wrapper a.btnblk:hover {
        background: #FFFFFF;
        color: #272B35; }
footer .copyright {
  background: #343945;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 29px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 13px 0; }
  footer .copyright a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); }
    footer .copyright a:hover {
      color: white; }

/*# sourceMappingURL=style.css.map */
