/*--------------------------------------------------
  Variables
--------------------------------------------------*/

:root {
  /* Main Colors */
  --primary: #1d4a87;
  --secondary: #00beeb;
  --orange: #fa9600;
  --white: #ffffff;
  --black: #000000;
  --gray: #cccccc;
  /* IPD Button Colors */
  --bakery: #fee11d;
  --beverage: #17e5b4;
  --dairy: #fcb022;
  --deli: #915737;
  --floral: #ad529f;
  --frozen: #62c8f3;
  --grab-n-go: #ed0a71;
  --meat: #8e0c0c;
  --produce: #49c92b;
  --seafood: #6c69ed;
}

/*--------------------------------------------------
  Global
--------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  /* transform: scale(1.1); */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-align: center;
  color: var(--primary);
}

section {
  padding: 0 20px;
}

.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin-right: 0 auto;
}

.col,
.w-100 {
  width: 100%;
}

.spacer {
  height: 40px;
}

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.subhead {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

/*--------------------------------------------------
  Content Block
--------------------------------------------------*/

.content-block {
  width: 100%;
  max-width: 732px;
  text-align: center;
  margin: 0 auto 32px;

  h2 {
    margin-bottom: 12px;

    span {
      font-weight: normal;
    }
  }

  .btn {
    margin: 12px auto 0;
  }
}

/*--------------------------------------------------
  Buttons
--------------------------------------------------*/

.btn {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 15px 30px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.btn.blue-teal {
  background: var(--primary);
  border-left: 7px solid var(--secondary);
}
.btn.blue-teal:hover {
  color: var(--white);
  background: var(--secondary);
  border-left: 7px solid var(--white);
}
