/* Box sizing default */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Reset browser margins */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ol, ul, fieldset {
  margin: 0;
}

/* Accessible line height */
body {
  line-height: 1.5;
}

/* Form elements inherit default type styles */
input, button, select, textarea {
  font: inherit;
}

/* Make media elements responsive */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Ensure button styling on mobile */
button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

[type=search] {
  -webkit-appearance: none;
}

/* --- LAYOUT --- */
body {
  background: #fff;
  color: #222;
  font-family: "Nunito Sans", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

a {
  color: #096FB2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: normal;
}

.center {
  text-align: center;
}

@media (min-width: 1280px) {
  body {
    font-size: 18px;
  }
}
.red {
  color: #b12625;
}

.smallFont {
  font-size: 0.75em;
}

.pageWidth {
  max-width: 1550px;
  margin: 0 auto;
}

.contentWrapper {
  padding: 20px;
}

.marginTop {
  margin-top: 20px;
}

.marginLargeTop {
  margin-top: 40px;
}

.fullWidth {
  width: 100%;
}

.clearBoth {
  clear: both;
}

.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hidden {
  display: none !important;
}

html.sr .reveal, html.sr .reveal-down, html.sr .reveal-up, html.sr .reveal-left, html.sr .reveal-right {
  visibility: hidden;
}

.icon {
  background: url(/wp-content/uploads/2015/05/sprite.png) no-repeat top left;
  width: 16px;
  height: 16px;
}

@media only screen and (-o-min-device-pixel-ratio: 5/4), only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min--moz-device-pixel-ratio: 1.25), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 1.25dppx) {
  .icon {
    background: url(/wp-content/uploads/2015/05/sprite-2x.png) no-repeat;
    background-size: 64px 48px;
    width: 16px;
    height: 16px;
  }
}
.iconLeft {
  float: left;
  margin-right: 15px;
}

.iconLeft {
  margin-bottom: 5px;
} /*check this - needed for home track goals*/
.iconLeftSm {
  float: left;
}

.iconLock {
  background-position: -16px -16px;
}

.iconPencil {
  background-position: -16px -32px;
}

.iconTarget {
  background-position: -32px -32px;
}

.iconSort {
  background-position: -48px -16px;
}

.iconTrophy {
  background-position: -48px -32px;
}

.buttonIconLeft {
  display: inline-block;
  margin-top: -4px;
  margin-right: 8px;
  vertical-align: middle;
}

.buttonIconRight {
  display: inline-block;
  margin-top: -4px;
  margin-left: 8px;
  vertical-align: middle;
}

header {
  background: #000;
  padding: 15px 0 15px 0;
  position: relative;
}

header #headerContent {
  font-size: 15px;
  padding: 0 20px 0 20px;
}

#menu-top-nav {
  list-style-type: none;
}
#menu-top-nav li {
  display: inline-block;
  margin-top: 16px;
  padding: 0 10px;
}
#menu-top-nav li a {
  color: #fff;
  padding: 0 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
#menu-top-nav li a:hover {
  color: #aaa;
}

#search-2 input[type=search] {
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 5px 8px 5px 8px;
  width: calc(100% - 34px);
  -webkit-appearance: none;
  border-radius: 0;
}

#search-2 .search-submit {
  vertical-align: top;
  width: 30px;
  height: 30px;
  -webkit-appearance: none;
  border-radius: 0;
}

#headerAccount, .menu-top-nav-container {
  display: none;
}

#mobileMenuIcon {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  padding: 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 201;
}
#mobileMenuIcon .hamburger-line {
  background: #fff;
  display: block;
  height: 3px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  width: 24px;
}
#mobileMenuIcon.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#mobileMenuIcon.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
#mobileMenuIcon.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#mobileMenu {
  background: rgba(0, 0, 0, 0.95);
  display: none;
  min-height: 350px;
  padding: 10px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
}

#mobileMenu ul {
  list-style-type: none;
  margin: 0 50px 30px 50px;
  padding-left: 0;
}

#mobileMenuAccount {
  border-bottom: 1px solid #666;
}

#mobileMenu li {
  margin-bottom: 30px;
}

#mobileMenu a {
  color: #fff;
  font-size: 16px;
  padding: 10px 10px 10px 0;
  text-decoration: none;
}

#mobileLogin a {
  border: 1px solid #666;
  display: block;
  margin-bottom: 30px;
  padding: 10px;
  text-align: center;
}

@media (min-width: 800px) {
  header {
    padding: 10px 0 20px 0;
  }
  header #headerContent {
    padding: 0 20px;
  }
  header #logo {
    float: left;
    margin: 10px 30px 0 0;
  }
  #headerAccount, .menu-top-nav-container {
    display: block;
  }
  #headerAccount {
    float: right;
    margin-top: 16px;
  }
  #headerAccount a {
    color: #fff;
    border-radius: 5px;
    line-height: 18px;
    padding: 8px 14px;
    text-decoration: none;
  }
  #headerAccount a:first-child {
    margin-right: 15px;
  }
  #headerAccount a:hover {
    background: #333;
    transition: all 0.3s ease-in-out;
  }
  #headerAccount .signup {
    background: #b12625;
    border-radius: 5px;
    margin-right: 0 !important;
  }
  #headerAccount .signup .buttonIconRight {
    margin-top: -2px;
    margin-left: 0;
    filter: brightness(0) invert(1);
  }
  #headerAccount .signup:hover {
    background: #c42d2b;
    color: #fff;
  }
  #headerAccount .dropdown {
    position: relative;
    display: inline-block;
  }
  #headerAccount .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    list-style-type: none;
    padding: 8px 0;
    margin-left: 0;
  }
  #headerAccount .dropdown .dropdown-menu li {
    margin: 0;
    padding: 0;
  }
  #headerAccount .dropdown .dropdown-menu li a {
    display: block;
    color: #222;
    padding: 10px 16px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  #headerAccount .dropdown .dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #b12625;
  }
  #mobileMenu, #mobileMenuIcon {
    display: none;
  }
}
@media (min-width: 1280px) {
  header #headerContent {
    padding: 0 40px;
  }
}
#mainContent, #fullContent {
  background: #fff;
  min-height: 350px;
}

#fullContent {
  overflow: hidden;
}

#sidebar {
  color: #666;
  padding: 20px;
}

#sidebar .widget {
  list-style-type: none;
  margin-bottom: 30px;
}
#sidebar .widget ul {
  padding-left: 15px;
}

#sidebar h2 {
  border-bottom: 1px solid #666;
  color: #333;
  font-size: 18px;
  padding: 4px 0;
  margin-bottom: 10px;
}

#sidebar p, #sidebar li {
  font-size: 14px;
  line-height: 1.3;
}

#sidebar .af-form input[type=text] {
  border: 0;
  font-size: 14px;
  margin: 4px 0 10px 0;
  padding: 6px 8px;
  width: 90%;
}

#sidebar .af-form input[type=submit] {
  background: #b12625;
  border: 0;
  color: #fff;
  padding: 5px 10px;
}

#sidebar #recent-posts-2 li {
  margin-bottom: 10px;
}

#sidebar #recent-posts-2 li a {
  text-decoration: none;
}

#sidebar .sidebar-promo {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 15px 5px;
}

#sidebar .sidebar-promo h2 {
  border-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}

#sidebar .sidebar-promo p {
  font-size: 18px;
  margin-bottom: 15px;
}

.goalchamp-side {
  width: 300px;
  height: 250px;
}

footer {
  color: #999;
  font-size: 12px;
}

footer #footerContent {
  padding: 20px;
  text-align: center;
}

/* --- HOME --- */
.homepage .redButton, .homepage .whiteButton {
  display: inline-block;
  font-size: 1.125em;
  margin-bottom: 20px;
  padding: 10px 30px;
}

#homeBanner {
  display: flex;
  flex-wrap: wrap;
}

#homeTop {
  margin-top: 10px;
  overflow: hidden;
  padding: 15px 0 0 0;
  text-align: center;
}

#homeTop .pageWidth {
  padding: 0 20px;
}

#homeTopImage {
  width: 100%;
}

#homeTopImage img {
  margin-right: auto;
  max-width: 90%;
  width: 100%;
}

#homeTopContent {
  margin-top: 15px;
  width: 100%;
}

#homeTop h1, #homeEnd h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

#homeTop h1 {
  font-size: 45px;
  line-height: 0.85em;
}

#homeTop p {
  font-size: 1.125em;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 430px;
}

#homeTop .homeLogin {
  font-size: 16px;
}

#homeTop .homeLogin a {
  color: #000;
}

.homeAppButtons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

#homeEnd {
  background: #b12625;
  color: #fff;
  padding: 60px 20px 40px 20px;
  text-align: center;
}

#homeEnd h2 {
  line-height: 1em;
}

#homeEnd p {
  font-size: 20px;
  margin-bottom: 20px;
}

@media (min-width: 500px) {
  #homeTop h1, #homeEnd h2 {
    font-size: 45px;
  }
}
@media (min-width: 800px) {
  #homeTop {
    margin-top: 0;
  }
  #homeTopImage {
    width: 50%;
  }
  #homeTopContent {
    align-self: center;
    margin-top: 0;
    width: 50%;
  }
  #homeEnd {
    padding: 60px 0;
  }
  #homeEnd {
    padding: 50px 0;
  }
  #homeEnd p {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
@media (min-width: 960px) {
  #homeTopImage {
    width: 55%;
  }
  #homeTopContent {
    width: 45%;
  }
  #homeTop h1 {
    font-size: 58px;
  }
  #homeEnd {
    padding: 80px 0;
  }
  .homepage .whiteButton {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  #homeTop .pageWidth {
    padding: 0 40px;
  }
  #homeTopImage {
    width: 62%;
  }
  #homeTopImage img {
    margin-left: auto;
    margin-right: 0;
    max-width: 900px;
    width: 100%;
  }
  #homeTopContent {
    width: 38%;
  }
  #homeTop h1 {
    font-size: 70px;
  }
}
/* --- HOME GC WINS --- */
#homeGcWins {
  background: #f6f6f6;
  padding: 40px 0;
  text-align: center;
}
#homeGcWins .pageWidth {
  padding: 0 20px;
}

#homeGcWins h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 20px;
}

.homeGcWinsList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.homeGcWinsItem {
  border: 1px dashed #000;
  border-radius: 10px;
  margin-top: 40px;
  padding: 52px 20px 20px 20px;
  position: relative;
  width: 100%;
}

.homeGcWinsItemIcon {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: -34px;
  padding: 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.homeGcWinsItemIcon img {
  width: 50px;
  height: 50px;
}

.homeGcWinsItemContent h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1em;
  max-width: 286px;
  margin: 0 auto;
  text-align: center;
}

#homeGcFeatureSlider {
  margin-top: 60px;
  padding: 40px 4px 4px 4px;
  text-align: left;
  position: relative;
}

#homeGcFeatureSlider .swiper-button-next,
#homeGcFeatureSlider .swiper-button-prev {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 8px;
  color: #b12625;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

#homeGcFeatureSlider .swiper-pagination {
  position: relative;
  margin-top: 15px;
  text-align: center;
}

.homeGcFeatureSliderItem {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 20px 20px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.homeGcFeatureSliderItemImage {
  width: 100%;
}

.homeGcFeatureSliderItemImage img {
  margin: 0 auto;
  margin-top: -50px;
}

.homeGcFeatureSliderItemContent {
  align-self: center;
  padding: 20px;
  width: 100%;
}

.homeGcFeatureSliderItemContent p {
  color: #666;
  font-weight: bold;
}

.homeGcFeatureSliderItemContent h3 {
  color: #b12625;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.homeGcFeatureSliderItemContent ul {
  padding-left: 0;
}

.homeGcFeatureSliderItemContent li {
  line-height: 1.5;
  margin-bottom: 10px;
  margin-left: 20px;
}

.swiper-pagination-bullet-active {
  background: #b12625;
}

@media (min-width: 768px) {
  .homeGcWinsItem {
    flex: 1;
    width: auto;
  }
  .homGcFeatureSliderItem {
    padding-bottom: 0;
  }
  .homeGcFeatureSliderItemImage {
    width: 33.3333%;
  }
  .homeGcFeatureSliderItemContent {
    flex: 1;
    padding: 20px;
    width: 66.6666%;
  }
}
@media (min-width: 1024px) {
  .homeGcWinsItemContent h3 {
    font-size: 26px;
  }
}
@media (min-width: 1280px) {
  #homeGcWins {
    padding: 80px 0 60px;
  }
  #homeGcWins .pageWidth {
    padding: 0 40px;
  }
  #homeGcWins h2 {
    font-size: 55px;
    margin-bottom: 40px;
  }
  .homeGcWinsList {
    gap: 40px;
  }
  .homeGcWinsItem {
    padding: 60px 30px 30px 30px;
  }
  .homeGcWinsItemIcon {
    margin-top: -45px;
  }
  .homeGcWinsItemIcon img {
    border-radius: 50%;
    height: 62px;
    width: 62px;
  }
  .homeGcFeatureSliderItemContent h3 {
    color: #b12625;
    font-size: 46px;
  }
}
/* --- HOME VIDEO --- */
#homeVideo {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 20px;
  text-align: center;
}

#homeVideoContent {
  margin-bottom: 20px;
}

#homeVideoContent h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 20px;
}

#homeVideoContent p {
  font-size: 16px;
  margin-bottom: 20px;
}

#homeVideoMediaInner {
  background: url("/wp-content/uploads/2026/01/video-phone.png") no-repeat center center;
  background-size: contain;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

#homeVideoMedia {
  width: 100%;
}

#homeVideoMedia video {
  border-radius: 40px;
  padding: 6px;
  width: 100%;
}

@media (min-width: 768px) {
  #homeVideo {
    flex-direction: row;
  }
  #homeVideoContent h2 {
    font-size: 40px;
    text-align: right;
  }
  #homeVideoContent {
    flex: 1;
    align-self: center;
    width: 50%;
  }
  #homeVideoMedia {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #homeVideo {
    gap: 60px;
  }
  #homeVideoContent h2 {
    font-size: 55px;
  }
  #homeVideoMediaInner {
    margin: 0 0 0 60px;
  }
}
/* --- ARTICLE --- */
#content {
  position: relative;
}

#breadcrumbs {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

#blogList-header {
  font-weight: 700;
  margin-bottom: 20px;
}

#blogList {
  list-style-type: none;
  padding-left: 0;
}
#blogList article h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
}

#blogList article .postThumb {
  margin-bottom: 15px;
  width: 100%;
}

#blogList .blogListLink {
  border: 1px solid #096FB2;
  border-radius: 6px;
  padding: 5px 10px;
  text-decoration: none;
}

#blogList .blogListLink:hover {
  background: #096FB2;
  color: #fff;
}

article {
  margin-bottom: 40px;
  max-width: 1000px;
}
article img.size-full {
  height: auto;
  width: 100%;
}
article p + figure {
  margin-top: 20px;
}
article figure {
  margin-bottom: 20px;
}
article p a:visited {
  color: #096FB2;
}
article h1 {
  color: #b12625;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 20px;
}
article h2 {
  font-size: 1.875em;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 30px;
}
article h2 a {
  color: #b12625;
  text-decoration: none;
}
article h3 {
  font-size: 1.375em;
  font-weight: 600;
  margin-bottom: 10px;
}
article p + h3 {
  margin-top: 40px;
}
article .pubDate {
  color: #999;
  font-size: 0.75em;
  margin-bottom: 20px;
}
article p {
  line-height: 1.5;
  margin-bottom: 20px;
}
article ul, article ol {
  margin-bottom: 40px;
  padding-left: 1.5em;
}
article ul li {
  list-style-type: disc;
}
article ol li {
  list-style-type: decimal;
}
article li {
  line-height: 1.5;
  margin-bottom: 10px;
  margin-left: 20px;
}
article .commentLink {
  font-size: 13px;
}
article .commentLink img {
  margin-right: 5px;
}
article .quote {
  background: #b12625;
  color: #fff;
  font-size: 0.9375em;
  line-height: 1.5;
  margin: 0 0 20px 0;
  padding: 20px;
}
article .wp-block-pullquote {
  background: #b12625;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  margin: 30px 0;
  padding: 30px;
  text-align: left;
}

/* Video Embed */
.wp-block-embed {
  margin-bottom: 1.4em;
}
.wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.wp-block-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.wp-block-embed .wp-block-embed__wrapper div:first-child {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

#gcArticlePromo {
  border: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 100px;
  padding: 10px 10px 0 10px;
  align-items: center;
}
#gcArticlePromo h3 {
  font-weight: 700;
}
#gcArticlePromo img {
  margin: 0 auto;
  margin-top: -50px;
  max-width: 260px;
  width: 100%;
}

#gcArticlePromoImage {
  width: 100%;
}

article #gcArticlePromo p {
  margin-bottom: 20px;
}

@media (min-width: 500px) {
  article .quote {
    float: right;
    margin: 0 0 20px 20px;
    width: 200px;
  }
}
@media (min-width: 650px) {
  #blogList {
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
  }
  #blogList li {
    width: 45%;
    margin-right: 5%;
  }
  #blogList li:nth-of-type(2n+2) {
    margin-right: 0;
  }
  #blogList article h2 {
    font-size: 26px;
  }
  #blogList article .pubDate {
    margin-bottom: 10px;
  }
  #blogList article p {
    font-size: 14px;
    line-height: 1.4;
  }
  #gcArticlePromoImage {
    width: 30%;
  }
  #gcArticlePromoContent {
    width: calc(70% - 20px);
  }
  article #gcArticlePromo p {
    margin-bottom: 0;
  }
}
@media (min-width: 800px) {
  #gcArticlePromoImage, #gcArticlePromoContent {
    width: 100%;
  }
}
@media (min-width: 960px) {
  #gcArticlePromoImage {
    width: 30%;
  }
  #gcArticlePromoContent {
    width: calc(70% - 20px);
  }
}
@media (min-width: 1280px) {
  article p, article li {
    font-size: 20px;
  }
  article .quote {
    width: 25%;
  }
}
/* --- COMMENTS --- */
#comments {
  margin-top: 60px;
}
#comments ol {
  margin: 0;
  padding: 0;
}
#comments ol li {
  list-style-type: none;
  margin-bottom: 40px;
}
#comments ol img {
  border-radius: 35px;
  float: left;
  margin-right: 15px;
  max-width: 50px;
}
#comments ol h4, #comments ol time, #comments ol p, #comments ol .reply {
  margin-left: 65px;
}
#comments ol h4 {
  margin-bottom: 0;
}
#comments ol time {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
#comments ol time a {
  color: #666;
  text-decoration: none;
}
#comments ol time a:hover {
  text-decoration: underline;
}
#comments ol .url, #comments ol .comment-reply-link {
  text-decoration: none;
}
#comments ol .url:hover, #comments ol .comment-reply-link:hover {
  text-decoration: underline;
}
#comments ol .reply {
  font-size: 12px;
}
#comments ol .children {
  margin-top: 20px;
  margin-left: 40px;
}
#comments ol #respond {
  border: 1px solid #ccc;
  margin-top: 10px;
  padding: 30px 20px 0 0;
}
#comments ol #respond #reply-title {
  font-size: 24px;
  margin-left: 65px;
}
#comments ol #respond #reply-title a {
  float: right;
  font-size: 14px;
}
@media (min-width: 768px) {
  #comments ol img {
    max-width: 70px;
  }
  #comments ol h4, #comments ol time, #comments ol p, #comments ol .reply, #comments ol #respond #reply-title {
    margin-left: 110px;
  }
}
#comments #respond {
  border: 1px solid #ccc;
  margin-bottom: 40px;
  padding: 30px 20px 30px 20px;
}
#comments #respond h2 {
  margin-top: 0;
}
#comments form p {
  margin-bottom: 10px;
}
#comments form input[type=text], #comments form input[type=email], #comments form input[type=password], #comments form input[type=date], #comments form input[type=tel], #comments form input[type=number], #comments form input[type=search], #comments form textarea, #comments form select {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px 12px;
  width: 100%;
}
#comments form .comment-notes {
  font-size: 14px;
}
#comments form label {
  font-size: 14px;
}
#comments form textarea {
  height: 80px;
  margin-bottom: 0;
}
#comments form input {
  margin-bottom: 0;
}
#comments form input[type=submit] {
  background: #b12625;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 0.875em;
  margin-top: 10px;
  padding: 10px 30px;
  text-decoration: none;
}
#comments form .comment-form-cookies-consent {
  display: none;
}

/* --- GOALS --- */
/* TIMELINE */
#timelineWrapper {
  margin: 0 auto;
  margin-bottom: 10px;
  text-align: center;
  width: 280px;
}

#timeline {
  background: url(/wp-content/uploads/2015/03/timeline.gif) repeat-x center;
}

#timeline a {
  background: #fff;
  color: #666;
  cursor: pointer;
  line-height: 30px;
  margin-left: 23px;
  padding: 4px 4px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#timeline a:hover {
  color: #b12625;
}

#timeline a:first-child {
  margin-left: 0;
}

#timeline a.timelineOn {
  border: 1px solid #ccc;
  border-radius: 15px;
  color: #b12625;
  padding: 4px 10px;
}

#timelineSelected {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 15px;
  color: #b12625;
  padding: 3px 12px;
  position: absolute;
  margin-top: -31px;
}

a#newGoal {
  background: #fff;
  border: 1px solid #b12625;
  border-radius: 3px;
  color: #b12625;
  float: right;
  font-size: 0.875em;
  margin-left: 20px;
  padding: 4px 12px;
  text-decoration: none;
}

#newGoal span {
  display: none;
}

@media (min-width: 500px) {
  #timelineWrapper {
    width: 315px;
  }
  #newGoal span {
    display: inline;
  }
}
@media (min-width: 1280px) {
  #timelineWrapper {
    width: 340px;
  }
  #timeline a {
    margin-left: 20px;
  }
  #timelineSelected {
    margin-top: -32px;
  }
}
#list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  margin-top: 20px;
  overflow: hidden;
  padding-left: 0;
}

.goalList2, .goalList5, .goalList10 {
  display: none;
}

.goalList li {
  border: 1px solid #fff;
  position: relative;
  width: 100%;
}

.goalList li .listItemWrapper {
  background: #fff;
  border: 1px solid #ccc;
  border-top: 2px solid #b12625;
  border-radius: 5px;
  box-shadow: 0 1px 2px #eee;
  box-sizing: border-box;
  min-height: 150px;
  padding: 15px;
}

.goalList .goalTitle {
  color: #b12625;
  font-size: 1.125em;
  margin-bottom: 10px;
  margin-right: 20px;
}

.goalList .goalProgressTrack div {
  border-radius: 6px;
  height: 6px;
}

.goalList .goalProgressBar {
  background: #ccc;
  margin-bottom: 4px;
  width: 100%;
}

.goalList .goalStatus {
  background: #b12625;
  width: 0%;
  display: none;
}

.goalList .goalExceeded .goalProgressBar {
  background: #f23635;
}

.goalList .goalExceeded .goalStatus {
  background: #b12625;
}

.goalList .progressValues {
  color: #999;
  font-size: 0.75em;
  margin-bottom: 15px;
}

.goalList .goalDate {
  color: #999;
  float: right;
  font-size: 0.75em;
  margin-bottom: 15px;
}

.goalList h3 {
  color: #0E517E;
  font-size: 0.75em;
  font-weight: normal;
  margin-bottom: 5px;
}

.goalList .stepInput {
  display: none;
  border: 1px solid #ccc;
  margin-top: 2px;
  opacity: 0;
  width: 90%;
}

.goalList input[type=checkbox] {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.goalList input[type=checkbox] + .stepLabel {
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  font-size: 0.875em;
  height: 18px;
  line-height: 18px;
  margin-bottom: 6px;
  margin-top: 3px;
  overflow: hidden;
  padding-left: 26px;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.goalList input[type=checkbox]:checked + .stepLabel {
  background-position: 0 -18px;
}

.goalList input[type=checkbox] + .stepLabel {
  background-image: url(/wp-content/uploads/2015/04/checkbox-2x.png);
  background-size: 18px 36px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.goalList li.goalDone .listItemWrapper {
  border-top: 2px solid #999;
}

.goalList .goalDone .goalTitle {
  color: #ccc;
  text-decoration: line-through;
}

.goalList .goalDone .goalStatus {
  background: #aaa;
}

.goalList .goalDone .goalDate, .goalList .goalDone .goalNextStep {
  display: none;
}

.goalList .sortPlaceholder {
  border: 1px dashed #ccc;
  min-height: 100px;
}

.goalList .stepDone {
  text-decoration: line-through;
}

.editButton {
  background: url(/wp-content/uploads/2015/04/gear-2x.png) no-repeat;
  background-size: 18px 18px;
  cursor: pointer;
  opacity: 0.4;
  position: absolute;
  right: 12px;
  width: 18px;
  height: 18px;
  z-index: 100;
  -moz-transition: 0.2s all;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.sortWrapper {
  cursor: -webkit-grab;
  cursor: grab;
  opacity: 0.4;
  padding: 5px;
  position: absolute;
  right: 7px;
  bottom: 20px;
  z-index: 100;
}

.editButton:hover, .sortWrapper:hover {
  opacity: 1;
}

.rotate90 {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.goalEditMode .goalView {
  display: none;
}

.goalList .editView {
  display: none;
}

.goalList .editView label {
  color: #999;
  display: block;
  font-size: 0.75em;
  margin-bottom: 2px;
}

.goalList .editView label.goalDoneLabel {
  color: #b12625;
}

.goalList .editView input, .goalList .editView select {
  font-size: 1em;
}

.goalList .editView input[type=text], .goalList .editView input[type=number] {
  border: 1px solid #ccc;
  margin-bottom: 15px;
  width: 85%;
  -webkit-appearance: none;
}

.goalList .editView input[type=text].shortInput, .goalList .editView input[type=number].shortInput {
  width: 38%;
}

.goalList .editView input[type=text].goalFormCountdown {
  background: url(/wp-content/uploads/2015/04/calendar-2x.png) center left no-repeat;
  background-size: 20px 20px;
  padding-left: 25px;
  width: 140px;
}

.goalList select {
  appearance: none;
  background: url("/wp-content/uploads/2025/01/down-chevron.svg") no-repeat center right 2px;
  background-size: 16px 16px;
  border: 1px solid #ccc;
  color: #222;
  margin-bottom: 15px;
  padding: 2px 30px 2px 2px;
}

.goalList .editView input[type=checkbox] {
  float: none;
  margin-bottom: 15px;
}

.goalList .editView .goalEditButtons {
  margin-top: 20px;
}

.goalList .editView .updateGoal {
  border: 0;
}

.goalList input[type=text]:focus {
  border: 1px solid #28A8FD;
  outline: none;
}

#noGoals, #noGoalsYet, #goalNotLoggedIn {
  color: #888;
  font-size: 1.125em;
  line-height: 1.6em;
  margin-top: 20px;
  text-align: center;
}
#noGoals p, #noGoalsYet p, #goalNotLoggedIn p {
  margin-bottom: 20px;
}

#noGoals, #noGoalsYet {
  display: none;
}
#noGoals h2, #noGoalsYet h2 {
  color: #444;
  font-size: 1.5em;
  margin-bottom: 5px;
}

#noGoals img, #goalNotLoggedIn {
  margin-bottom: 20px;
}

#noGoalsYet img {
  border: 1px solid #ddd;
  border-radius: 53px;
  margin: 0 auto;
  padding: 12px;
  margin-bottom: 10px;
}

@media (min-width: 650px) {
  #list {
    gap: 20px;
  }
  .goalList li {
    width: calc(50% - 10px);
  }
  .goalProgressTrack {
    min-height: 40px;
  }
  .goalList .goalDate, .goalList .progressValues {
    margin-bottom: 0;
  }
}
@media (min-width: 800px) {
  .goalList input[type=checkbox] + .stepLabel {
    height: 15px;
    line-height: 15px;
    padding-left: 22px;
  }
  .goalList input[type=checkbox]:checked + .stepLabel {
    background-position: 0 -15px;
  }
  .goalList input[type=checkbox] + .stepLabel {
    background-size: 15px 30px;
  }
  #noGoals {
    margin: 0 auto;
    padding: 50px 0;
    text-align: left;
    width: 650px;
  }
  #noGoals img {
    float: left;
    margin-bottom: 0;
    margin-right: 30px;
  }
}
@media (min-width: 960px) {
  .goalList li {
    width: calc(33.33% - 14px);
  }
}
@media (min-width: 1280px) {
  .goalProgressTrack {
    min-height: 45px;
  }
  #list {
    gap: 30px;
    margin-top: 40px;
  }
  .goalList li {
    width: calc(33.33% - 20px);
  }
  #noGoals {
    width: 710px;
  }
  #noGoals img {
    margin-right: 50px;
    width: 330px;
  }
}
#goalQuote {
  color: #999;
  margin-top: 100px;
  text-align: center;
}

.accountPage p {
  margin-bottom: 20px;
}
.accountPage li {
  margin-bottom: 20px;
}
.accountPage li a {
  cursor: pointer;
}

#accountEmail, #accountPassword, #accountDelete {
  display: none;
  margin-top: 20px;
}
#accountEmail h2, #accountPassword h2, #accountDelete h2 {
  margin-bottom: 10px;
}

/* BUTTONS */
.redButton {
  background: #b12625;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  padding: 4px 12px;
  text-decoration: none;
}

.whiteButton {
  background: #fff;
  border-radius: 3px;
  color: #b12625;
  cursor: pointer;
  padding: 4px 12px;
  text-decoration: none;
}

.greyButton {
  background: #888;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 4px 12px;
}

.lightBlueButton {
  background: #28A8FD;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 4px 12px;
}

.disabledButton {
  background: #ccc;
  border-radius: 3px;
  color: #fff;
  padding: 4px 12px;
}

.buttonLarge {
  font-size: 1.125em;
  padding: 6px 18px;
}

.buttonRaise {
  transition: all 0.3s ease-in-out;
}
.buttonRaise:hover {
  box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.25);
  transform: translateY(-0.25em);
}

.goalList .editView .deleteButton {
  background: url(/wp-content/uploads/2025/01/trash.png) right no-repeat;
  background-size: 62px 22px;
  cursor: pointer;
  float: right;
  margin-top: 4px;
  width: 20px;
  height: 22px;
}

/* --- FORMS --- */
#formLogo {
  margin: 0 auto;
  margin-top: 20px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

#formWrapper {
  background: #fff;
  border: 1px solid #ccc;
  border-top: 2px solid #b12625;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 30px 20px 40px 20px;
  width: 330px;
}

#formWrapper h1, #formWrapper h2 {
  margin-bottom: 15px;
}

#formWrapper h1 {
  font-size: 1.25em;
}

#formWrapper h2 {
  font-size: 1em;
}

#formWrapper p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.accountForm label {
  color: #666;
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}

.accountForm input, #goalForm input {
  box-sizing: border-box;
}

.accountForm input[type=text], .accountForm input[type=email], .accountForm input[type=number], .accountForm input[type=password], #goalForm input[type=text], #goalForm input[type=number] {
  border: 1px solid #767676;
  margin-bottom: 25px;
  padding: 6px;
  width: 100%;
}

.accountForm input[type=checkbox] {
  margin-bottom: 25px;
}

.accountForm .emailSignup {
  color: #666;
  font-size: 0.75em;
}

.accountForm input[type=submit] {
  border: 0;
  margin-bottom: 5px;
  padding: 8px 12px;
}

.accountForm #forgotPass {
  font-size: 0.875em;
  text-decoration: none;
}

#createAccount {
  color: #fff;
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 40px;
}

#createAccount a {
  color: #b12625;
  text-decoration: none;
}

.accountPageForm input[type=submit] {
  margin-bottom: 40px;
}

.accountPageForm form {
  margin-bottom: 40px;
}

.accountPageForm #delete-account-form {
  border-bottom: 0;
  margin-bottom: 0;
}

.accountPageForm #delete-account-form input[type=submit] {
  margin-bottom: 10px;
}

.message {
  margin-bottom: 20px;
  text-align: center;
}

.good {
  color: #0e9100;
}

.bad {
  color: #b12625;
}

@media (min-width: 500px) {
  #formWrapper {
    width: 345px;
  }
}
#goalForm {
  padding-top: 25px;
}
#goalForm label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
#goalForm select {
  color: #222;
  font-size: 1.125em;
  margin-bottom: 25px;
  padding: 6px;
  width: 100%;
}
#goalForm input[type=text].inputExample, #goalForm input[type=number].inputExample {
  margin-bottom: 2px;
}
#goalForm .goalFormExample {
  color: #999;
  display: block;
  font-size: 0.75em;
  margin-bottom: 25px;
}
#goalForm input[type=text].smallInput, #goalForm input[type=number].smallInput {
  width: 100px;
}
#goalForm #goalFormCountdown {
  background: url(/wp-content/uploads/2015/04/calendar-2x.png) left center no-repeat;
  background-size: 20px 20px;
  border: 1px solid #767676;
  padding-left: 25px;
  width: 140px;
}
#goalForm .radioList {
  list-style-type: none;
  margin-bottom: 20px;
}
#goalForm .radioList li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  list-style-type: none;
  margin: 0;
}
#goalForm input[type=radio] {
  margin-top: 5px;
}
#goalForm input[type=radio] + label {
  font-weight: normal;
}
#goalForm input[type=checkbox] {
  margin-bottom: 6px;
  margin-right: 10px;
}
#goalForm .redButton, #goalForm .greyButton {
  display: inline-block;
  margin-top: 20px;
}
#goalForm .goalFormSecondary {
  margin-top: -10px;
  margin-left: 32px;
}
#goalForm input[type=submit] {
  border: 0;
}

.formError {
  display: none;
  margin-top: 5px;
}

#build {
  overflow: hidden;
}

#build h2 {
  font-size: 1.125em;
  margin-bottom: 10px;
}

#build p {
  margin-bottom: 20px;
}

#build ul {
  padding-left: 0;
}
#build ul li {
  list-style-type: disc;
  margin: 0 0 20px 20px;
}

#build .buildExample {
  color: #777;
  margin-top: 5px;
  margin-bottom: 10px;
}

#buildHeader {
  border-bottom: 1px solid #999;
  margin-bottom: 30px;
  padding-bottom: 10px;
  text-align: center;
}

#buildHeader h1 {
  font-size: 1.25em;
}

#buildProgress {
  margin-bottom: 10px;
  padding-left: 0;
}

#buildProgress li {
  border-top: 2px solid #fff;
  display: inline;
  margin: 0 7px;
  padding-top: 5px;
}

#buildProgress li.buildActive {
  border-top: 2px solid #b12625;
}

.buildLeft {
  border-bottom: 1px solid #999;
  overflow: hidden;
}

.buildRight {
  padding-bottom: 10px;
}

.build2, .build3 {
  display: none;
}

#build ul#goalList.buildGoalSample li {
  list-style-type: none;
  margin-left: 0;
  max-width: 400px;
  width: 100%;
}

#buildMultiple {
  display: none;
}

#buildDate {
  display: none;
  margin-top: -10px;
  margin-left: 32px;
}
#buildDate label {
  font-weight: normal;
}

/* --- DATEPICKER --- */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-icon-circle-triangle-w {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #fff;
}

.ui-icon-circle-triangle-e {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.ui-state-hover .ui-icon-circle-triangle-w {
  border-right: 12px solid #000;
}
.ui-state-hover .ui-icon-circle-triangle-e {
  border-left: 12px solid #000;
}

.ui-widget {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #fff;
  color: #222;
}
.ui-widget-content a {
  color: #222;
}

.ui-widget-header {
  border: 1px solid #aaaaaa;
  background: #888;
  color: #fff;
  font-weight: bold;
}
.ui-widget-header a {
  color: #fff;
}

.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #fff;
  color: #222;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0; /* support: IE7 */
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6;
  font-weight: normal;
  color: #555;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #999;
  background: #dadada;
  font-weight: normal;
  color: #212121;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #aaa;
  background: #ffffff;
  font-weight: normal;
  color: #212121;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee;
  color: #363636;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec;
  color: #cd0a0a;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker .ui-datepicker-title select.ui-datepicker-month, .ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
  width: 45%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* 500 and up */
@media (min-width: 500px) {
  #sidebar {
    padding: 20px 40px;
  }
  #sidebar .af-form input[type=text] {
    width: 324px;
  }
  footer #footerContent {
    padding: 20px;
  }
}
/* 800 and up */
@media (min-width: 800px) {
  .contentWrapper {
    padding: 40px 20px;
  }
  #mainContent {
    padding-right: 380px;
  }
  #sidebar {
    position: absolute;
    right: 0;
    top: 0px;
    padding: 40px 20px;
    width: 300px;
  }
  #sidebar .af-form input[type=text] {
    width: 284px;
  }
  #build.columnDivider {
    background: url(/wp-content/uploads/2015/04/1px-grey.gif) repeat-y center;
  }
  #buildHeader {
    text-align: left;
  }
  #buildProgress {
    float: right;
    margin-bottom: 0;
  }
  .buildLeft {
    border-bottom: 0;
    float: left;
    width: 46%;
  }
  .buildRight {
    float: right;
    padding-bottom: 10px;
    width: 46%;
  }
  #accountEmail, #accountPassword, #accountDelete {
    margin-top: 0;
  }
}
/* 960 and up */
@media (min-width: 960px) {
  #mainContent {
    padding-right: 420px;
  }
  #sidebar {
    position: absolute;
    right: 0;
    top: 0px;
    width: 340px;
  }
  #sidebar .af-form input[type=text] {
    width: 324px;
  }
}
@media (min-width: 1280px) {
  .contentWrapper {
    padding: 40px;
  }
  #sidebar {
    right: 25px;
  }
}

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