/* ShoppingFeeder 2019 */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* COLORS */
.color-primary {
  color: #378080 !important;
}
.color-secondary {
  color: #35b7e6 !important;
}
.color-tertiary {
  color: #f9b336 !important;
}
.color-quaternary {
  color: #ec4b43 !important;
}

.color-white {
  color: #fff !important;
}
.color-black {
  color: #000 !important;
}

.color-success {
  color: #2b982b !important;
}
.color-warning {
  color: #ffc107 !important;
}
.color-danger {
  color: #dc3545 !important;
}

.color-text {
  color: #333333 !important;
}
.color-grey1 {
  /* placeholder 1 */
  color: #727272 !important;
}
.color-grey2 {
  /* placeholder 2 */
  color: #b6b6b6 !important;
}
.color-grey3 {
  color: #d9d9d9 !important;
}
.color-grey4 {
  color: #e9e9e9 !important;
}

.bgcolor-primary {
  background-color: #378080 !important;
}
.bgcolor-secondary {
  background-color: #35b7e6 !important;
}
.bgcolor-tertiary {
  background-color: #f9b336 !important;
}

.bgcolor-grey1 {
  background-color: #727272 !important;
}
.bgcolor-grey2 {
  background-color: #b6b6b6 !important;
}
.bgcolor-grey3 {
  background-color: #d9d9d9 !important;
}
.bgcolor-grey4 {
  background-color: #e9e9e9 !important;
}
.bgcolor-grey5 {
  background-color: #f4f4f4 !important;
}

.bgcolor-success {
  background-color: #2b982b !important;
}
.bgcolor-warning {
  background-color: #ffc107 !important;
}
.bgcolor-danger {
  background-color: #dc3545 !important;
}

.bgcolor-overlay {
  background-color: #f9b336 !important;
}
.bgcolor-white {
  background-color: #fff !important;
}

.bgcolor-link {
  background-color: #2f61e6 !important;
}

/* CONDITIONAL STYLING */

/* Mobile */
@media (min-width: 200px) and (max-width: 767px) {
  .visible-xs {
    display: block;
  }
  .hide-xs {
    display: none;
  }

  .text-center-xs {
    text-align: center;
  }
  .py-4-xs {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-6-xs {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .mx-3-xs {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .mx-5-xs {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .mt-5-xs {
    margin-top: 1.5rem !important;
  }
  .mt-7-xs {
    margin-top: 3rem !important;
  }
  .justify-content-center-xs {
    justify-content: center;
  }
}
/* Desktop */
@media (min-width: 768px) {
  .visible-xs {
    display: none;
  }
  .hide-xs {
    display: block;
  }
  .ml-7-md {
    margin-left: 3rem !important;
  }
  .pl-7-md {
    padding-left: 3rem !important;
  }
}

/* BUTTONS */
.btn-primary {
  background-color: #46a0a6 !important;
  border-color: #46a0a6 !important;
}
.btn-primary:hover {
  background-color: #007177 !important;
  border-color: #007177 !important;
  box-shadow: 0px 3px 6px #00000029;
}
.btn-primary-outline {
  color: #46a0a6;
  background-color: transparent;
  background-image: none;
  border-color: #46a0a6;
}
.btn-primary-outline:hover {
  color: #fff;
  background-color: #46a0a6;
  border-color: #46a0a6;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.233);
}

.btn-secondary {
  color: #fff;
  background-color: #35b7e6;
  border-color: #35b7e6;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(43, 151, 190);
  border-color: rgb(43, 151, 190);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.233);
}
.btn-secondary-outline {
  color: #35b7e6;
  background-color: transparent;
  background-image: none;
  border-color: #35b7e6;
}
.btn-secondary-outline:hover {
  color: #fff;
  background-color: #35b7e6;
  border-color: #35b7e6;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.233);
}
.btn-tertiary {
  color: #ffffff !important;
  background-color: #fbbc32 !important;
  border-color: #fbbc32 !important;
}
.btn-tertiary:hover {
  background-color: #eba80e !important;
  border-color: #eba80e !important;
  box-shadow: 0px 3px 6px #0000001f;
}

.btn-home-cta {
  color: #378080;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.233);
}
.btn-home-cta:hover {
  color: #fff;
  background-color: #35b7e6;
  border-color: #35b7e6;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.233);
}

/* NAVBAR */
@media (min-width: 200px) {
  .navbar-brand img,
  .footer-logo img {
    max-width: 120px;
    max-height: 100%;
  }
  #btn-register {
    color: #fff !important;
    width: 130px !important;
    line-height: 38px !important;
    /*margin-top: 1rem;*/
    align-self: center;
  }
  #btn-login {
    color: #378080 !important;
    width: 200px;
    margin-top: 1rem;
    align-self: center;
  }
  .register-button-mobile {
    display: flex;
    margin-top: 1rem !important;
  }
}
@media (min-width: 769px) {
  .navbar-brand img,
  .footer-logo img {
    max-width: 148px;
  }
  #btn-register {
    color: #fff !important;
    height: 40px !important;
    /*line-height: 38px !important;*/
    /*margin-top: 6px;*/
    margin-left: 20px;
    /*width: 130px !important;*/
  }
  #btn-login {
    color: #378080 !important;
    height: 40px !important;
    line-height: 40px !important;
    margin-top: 6px;
    margin-left: 16px;
    width: 140px !important;
  }
  .register-button-mobile {
    display: none;
  }
}

@media (min-width: 200px) and (max-width: 767px) {
  .navbar-left {
    width: 100%;
    justify-content: space-between;
  }
  /*.navbar-brand {
    margin-left: 1rem;
    margin-right: 0;
  }*/
}

.nav-navbar .nav {
  min-width: 15rem;
  box-shadow: 0px 0px 12px #0000001f;
  border: 1px solid #cecfd4;
  border-radius: 8px;
  display: block;
  padding: 30px 20px;
  margin: -20px;
  width: auto;
  top: 80px;
}
.nav-navbar .nav:before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 35px;
  width: 20px;
  height: 20px;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 12px #0000001f;
  border: 1px solid #cecfd4;
  border-radius: 2px;
}
.nav-navbar .nav:after {
  content: "";
  display: block;
  width: 60px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 10px;
  background: #ffffff;
}

#btn-login:hover {
  color: #fff !important;
}

/* HOME */
header#home {
  padding-bottom: 20px;
}
.phone-mockup-container img {
  height: 450px;
}
.store-logo-container {
  position: relative;
  width: 140px;
}
@media (min-width: 200px) {
  .store-logo-container {
    margin: 40px 32px;
  }
}
@media (min-width: 768px) {
  .card.home {
    min-height: 218px;
  }
  .card.reviews {
    min-height: 288px;
  }
  #home-card-services {
    min-height: 363px;
  }
  .store-logo-container {
    margin: 24px 32px;
  }
}
.store-logo-container img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#section-CTA {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* ABOUT PAGE */
.about-logos-container {
  max-width: 260px;
}
.about-logos-container img {
  margin-bottom: 32px;
}

/* FEATURES PAGE */
@media (min-width: 768px) {
  .card.data-feed-management,
  .card.campaign-management {
    min-height: 540px;
  }
  .card.account-setup-service {
    min-height: 370px;
  }
}

/* LOGIN PAGE */
.login-logo-container img {
  max-height: 72px;
  margin-bottom: 32px;
}

/* PRICING PAGE */
@media (min-width: 200px) {
  .pricing-1 .popular-tag {
    position: absolute;
    top: 16px;
    left: 56px;
    background-color: #35b7e6;
    color: #fff;
    padding: 1px 0.75rem;
    padding-right: 1.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    border-top-right-radius: 5rem;
    border-bottom-right-radius: 5rem;
    transform: rotate(90deg);
    transform-origin: top left;
  }
}
@media (min-width: 768px) {
  .pricing-1 {
    min-height: 500px;
    position: relative;
  }
  .campaign-management {
    min-height: 550px;
  }
  .btn-get-started-container {
    position: absolute;
    right: 20%;
    left: 20%;
    bottom: 0;
  }
  .pricing-1 .popular-tag {
    position: absolute;
    top: 0px;
    left: 46px;
    background-color: #35b7e6;
    color: #fff;
    padding: 1px 0.75rem;
    padding-right: 1.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    border-top-right-radius: 5rem;
    border-bottom-right-radius: 5rem;
    transform: rotate(90deg);
    transform-origin: top left;
  }
}

.price.account-setup {
  font-size: 60px;
  font-weight: 600;
}

/* REGISTER PAGE */
.form-control.register {
  height: 36px;
}
@media (min-width: 200px) and (max-width: 767px) {
  .register-logo-container {
    margin-top: 16px;
    align-self: center;
  }
  .register-logo-container img {
    max-height: 72px;
  }
  .card.register-review {
    margin-top: 0.5rem;
  }
  div#register-form {
    order: 1;
  }
  div#register-info {
    order: 2;
  }
  #register-form {
    text-align: center;
  }
  /*#register-form > div:first-of-type {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }*/
}
@media (min-width: 768px) {
  .register-logo-container img {
    position: absolute;
    max-height: 72px;
    margin-bottom: 32px;
    left: 70px;
    top: 16px;
  }
  .row.register-review {
    justify-content: flex-end;
  }
  .card.register-review {
    /* min-height: 206px; */
    margin-top: 0.5rem;
  }
  /*#register-form > div:first-of-type {
    margin-right: 3rem !important;
  }*/
}
.card-body.register-review {
  padding: 0.6rem 1.25rem;
}

.form-group.register {
  margin-bottom: 0.8rem;
}
.form-group input {
  font-size: 14px;
}

input.invalid,
input.error,
textarea.error {
  border: 1px solid #dc3545 !important;
  background-color: #fee !important;
}
label.invalid,
label.error {
  color: #dc3545;
  border: none !important;
  background-color: #fff;
  font-size: 12px;
}

.register_error {
  border: 1px solid #b94a48 !important;
  background-color: #fee !important;
  font-size: 14px;
  text-align: center;
  padding: 8px;
}

/* Checkbox invalid */
input.custom-control-input.invalid ~ label.custom-control-label::before {
  border-color: #b94a48;
  background-color: #fee !important;
}

/* Checkbox border */
input.custom-control-input ~ label.custom-control-label::before {
  border-color: #929292;
}

/* HOME */
@media (min-width: 200px) and (max-width: 767px) {
  .home-heading {
    text-align: center;
  }
  .home-subheading {
    text-align: center;
  }
}
#home-services-section {
  padding-bottom: 1.5rem !important;
}

/* SERVICES */
.card.main-platform {
  position: relative;
  min-width: 240px;
  min-height: 140px;
}
.card.other-platform {
  position: relative;
  min-width: 220px;
  min-height: 120px;
}
.card.main-platform img,
.card.other-platform img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.platform-name {
  padding-top: 42px;
}
.services-item .services-description p {
  font-size: 13px;
}
@media (min-width: 200px) and (max-width: 767px) {
  .services-icon {
    margin: 1.5rem 0;
  }
  .services-item .services-description {
    text-align: center;
  }
}

/* MODALS */
.modal-ebook-heading {
  font-size: 20px;
  color: #378080;
}
.modal-ebook-heading2 {
  font-size: 32px;
  color: #378080;
  font-weight: 900;
}

/* FOOTER */
.footer {
  border-top: none;
  background: #f8f9fa;
  border-radius: 32px 32px 0px 0px;
}

/*  */
.responsive-table {
  overflow: auto;
  min-width: 100%;
}

.header-sm {
  padding-top: 100px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
.header-padding {
  padding-top: 70px;
  padding-bottom: 40px;
}
.card.reviews.platform {
  min-height: 210px;
}
.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* TERMS & CONDITIONS */
.terms-and-conditions ol {
  counter-reset: item;
}
.terms-and-conditions ol li:before {
  content: counters(item, ".", decimal) " ";
  counter-increment: item;
  font-weight: bold;
  margin-left: -10px;
}
li.t_c_header_item,
li.t_c_sub_item {
  line-height: 25px;
}
li.t_c_sub_item {
  margin: 0px 0px 20px;
}
.heading-normal {
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
}

.nopadding {
  padding: 0 !important;
}

.nopad-y {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.nopad-x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* CAMPAIGNS */

/* EBOOK PAGE */
.ebook-img-container {
  height: 90%;
  width: 90%;
}
.ebook-text-download {
  font-size: 20px;
  font-weight: 500;
}

.form-control {
  border-radius: 0;
  border: 1px solid #cecfd4;
  height: 53px;
  color: #333333;
  font-size: 18px;
}

/* Reviews */
.card.review {
  height: 300px;
}

.survey-popup-left-col {
  margin-right: 96px;
}

/* Survey popup */
#survey-popup {
  border-radius: 1.25rem;
  border: 2px solid #46A4EC;
}

.btn-survey-popup-submit {
  color: white !important;
  text-transform: none;
  font-size: 14px;
  cursor: pointer;
}

/* New checker-circle marker styles. */
.new-website-check-circle-marker {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-website-check-circle-marker li {
  display: flex;
}

.new-website-check-circle-marker li:last-child {
  margin: 0;
}

.new-website-check-circle-marker li:before {
  content: "";
  display: block;
  width: 2rem;
  min-width: 1rem;
  height: 2rem;
  background: url(/marketing/assets/img/ic-tick-black.svg) no-repeat center;
}

.new-website-check-circle-marker.new-website-check-circle-marker--yellow li:before {
  background: url(/marketing/assets/img/ic-tick-yellow.svg) no-repeat center;
}

.no-available-check-marker::before {
  background: url(/marketing/assets/img/ic-cross-black.svg) no-repeat center !important;
}
.no-available-check-marker-yellow::before {
  background: url(/marketing/assets/img/ic-cross-yellow.svg) no-repeat center !important;
}

