/* ************************************************** !!
/* CSS CONTENTS ----------------------------------------
--------------------------------------------------------
--| GENERAL STYLES
------| BUTTONS
------| INPUTS
--| HEADER
------| NAVBAR
------| SEARCH AREA
--| FOOTER
--------------------------------------------------------
----------------------------------------------------- */

/* ************************************************************
***************************************************************
--- GENERAL STYLES ---
***************************************************************
************************************************************ */

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

html,
body {
  -webkit-overflow-scrolling : touch !important;
  overflow: auto !important;
  height: 100% !important;
}

body {
  font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
figure,
figcaption,
address,
ul,
label {
  margin: 0;
  padding: 0;
}

a {
  transition: 0.2s;
  color: #0F2D8F;
}

a:hover {
  text-decoration: none;
  color: #3b49e5;
}

input:focus,
input:visited,
select:visited,
select:focus {
  outline: none;
  background-color: white;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: white !important;
  box-shadow: 0 0 0 1000px white inset;
}

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

input:-webkit-autofill:focus,
input:-webkit-autofill:visited,
select:-webkit-autofill:visited {
  background-color: white !important;
  box-shadow: 0 0 0 1000px white inset;
}

.d-flex {
  display: flex;
}

.bv-gradient-grey {
  background-image: linear-gradient(0deg, #EFEFEF 0%, #FFF 50%);
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .mobile-margin {
    margin: 0 0 30px 0;
  }
}

/* -----------------------------------------------------------
--- BUTTONS ---
------------------------------------------------------------ */

.btn-outline {
  border: 3px solid #81B44C;
  border-radius: 6px;
  color: #4A4A4A;
  background: #FFF;
  text-align: center;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:focus-within {
  cursor: pointer;
  -webkit-text-fill-color:rgb(255, 255, 255);
  -webkit-appearance: none;
  appearance: none;
  opacity: 1;
  appearance: none;
  color: #FFF;
  background: rgb(129, 180, 76);
  border: 3px solid rgb(129, 180, 76);
  box-shadow: -2px -2px 4px -4px rgba(0, 0, 0, 0.02), 0 3px 9px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.14);
}

/* ======== BV BUTTON STYLES ======== */
[class^="bv-btn"] {
  background: #81B44C;
  color: #FFF;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 26px;
  padding: 15px 30px;
  text-align: center;
  transition: all 0.25s ease-out;
}

[class^="bv-btn"][disabled]:hover {
  box-shadow: none;
}

[class^="bv-btn"]:hover {
  background: #638A3A;
  text-decoration: none;
  color: #FFF;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

[class^="bv-btn"]:focus {
  box-shadow: none;
}

.bv-btn--small {
  padding: 10px 20px;
  font-size: 18px;
}

/* Turn to full width on mobile devices. Not always needed */
@media (max-width: 500px) {
  [class^="bv-btn"] {
    display: block;
  }
}

/* -----------------------------------
--- secondary button styles ---
----------------------------------- */
.bv-btn--secondary {
  background: #4A3B8F;
}

.bv-btn--secondary:hover {
  background: #443683;
}

.bv-btn--secondary:focus {
  background: #353167;
  box-shadow: none;
}

/* -----------------------------------
--- tertiary button styles ---
----------------------------------- */
.bv-btn--tertiary {
  background: none;
  border: 3px solid #81B44C;
  color: #4A4A4A;
  font-size: 22px;
  padding: 10px 25px;
}

.bv-btn--tertiary.bv-btn--small {
  font-size: 16px;
  padding: 8px 15px;
}

.bv-btn--tertiary:hover {
  background: #81B44C;
}

.bv-btn--tertiary.bv-btn--inverse,
.bv-btn--tertiary.bv-btn--white {
  color: #fff;
}

.bv-btn--tertiary.bv-btn--inverse:focus,
.bv-btn--tertiary.bv-btn--white:focus {
  opacity: 0.75;
}

.bv-btn--tertiary.bv-btn--white {
  border-color: #fff;
}

.bv-btn--tertiary.bv-btn--white:hover {
  background-color: #fff;
  color: #4A4A4A;
}

/* -----------------------------------
--- disabled button styles ---
----------------------------------- */
[class^="bv-btn"][disabled] {
  background: #D3D2D7;
  color: #9b9b9b;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}

[class^="bv-btn"][disabled]:hover {
  cursor: not-allowed;
}

/* -----------------------------------------------------------
--- INPUTS ---
------------------------------------------------------------ */

.bv-input {
  font-family: "Lato", sans-serif;
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 3px;
  box-shadow: inset 0 -1px 4px 0 rgba(0, 0, 0, 0.10);
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 70px;
  line-height: 70px;
}

.bv-input.error {
  margin-bottom: 28px;
}

.bv-input input,
.bv-input textarea,
.bv-input select {
  color: #4A4A4A;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 30px 40px 8px 12px;
  line-height: 30px;
  font-size: 18px;
  background: transparent;
}

.bv-input input:focus,
.bv-input textarea:focus,
.bv-input select:focus {
  outline: none;
}

.bv-input select {
  width: 100%;
  background: white;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}

.bv-input select::-ms-expand,
.bv-input input::-ms-reveal,
.bv-input input::-ms-clear {
  display: none;
}

/* -- placeholder -- */
.bv-input label {
  color: #9B9B9B;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.92px;
  padding-left: 12px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
  pointer-events: none;
}

/* -- placeholder transition into label -- */
.bv-input input:focus~label:not(.error),
.bv-input input:valid:not(.optional)~label:not(.error),
.bv-input input[filled="true"]~label:not(.error),
.bv-input select~label {
  font-size: 13px;
  letter-spacing: 1.56px;
  color: #4A3B8F;
  top: -16px;
  z-index: 2;
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}

/* -- input state styles -- */
.bv-input.active {
  border: 1px solid #4A3B8F;
}

.bv-input.error {
  border-color: #DC0015;
}

.bv-input label.error {
  font-size: 15px;
  text-transform: none;
  letter-spacing: normal;
  color: #DC0015;
  top: 75px;
  left: -3px;
  line-height: 13px;
}

.bv-input-people.error {
  border-color: #FFDBDF;
  box-shadow: inset 0 -1px 4px 0 #FFDBDF;
}

.bv-input .icon--check,
.bv-input .icon--error {
  display: none;
}

.bv-input.success .icon--check,
.bv-input.error:not(.bv-input--multi) .icon--error,
.bv-input input.success~.icon--check,
.bv-input input.error~.icon--error,
.bv-input .chevron-down {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media (max-width: 991px) {
  .bv-input label.error {
    left: -13px;
  }
}

@media (max-width: 767px) {
  .bv-input {
    height: 55px;
    margin-bottom: 15px;
  }
  .bv-input.error {
    margin-bottom: 30px;
  }
  .bv-input input {
    padding-top: 0;
    height: 34px;
  }
  .bv-input label {
    padding: 18px 12px;
    line-height: 18px;
  }
  .bv-input input:focus~label:not(.error),
  .bv-input input:valid:not(.optional)~label:not(.error),
  .bv-input input[filled="true"]~label:not(.error),
  .bv-input select~label {
    top: -13px;
  }
  .bv-input--multi>div.error label.error,
  .bv-input label.error {
    padding-top: 0;
    top: 56px;
  }
}

@media (max-width: 480px) {
  .bv-input label {
    font-size: 10px;
    letter-spacing: 0;
  }
  .bv-input input:focus~label:not(.error),
  .bv-input input:valid:not(.optional)~label:not(.error),
  .bv-input input[filled="true"]~label:not(.error),
  .bv-input select~label {
    font-size: 10px;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .bv-input {
    height: 60px;
    margin-bottom: 15px;
  }
  .bv-input label {
    padding: 0 12px;
    line-height: 60px;
  }
  .bv-input input:focus~label:not(.error),
  .bv-input input:valid:not(.optional)~label:not(.error),
  .bv-input input[filled="true"]~label:not(.error),
  .bv-input select~label {
    top: -15px;
  }
}

@media (min-width: 991px) {
  .bv-input {
    height: 70px;
  }
}

/* ************************************************************
***************************************************************
--- HEADER ---
***************************************************************
************************************************************ */

header.full-height {
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

header.full-height .search-area {
  flex: 1 0 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: center;
}

/* -----------------------------------------------------------
--- NAVBAR ---
------------------------------------------------------------ */

nav.top-nav {
  padding-top: 17px;
}

nav.top-nav .logo {
  position: relative;
  margin-top: 7px;
}

nav.top-nav .logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-badge {
  margin-top: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  color: #FFF;
  background: #EF2742;
  white-space: nowrap;
}

.mtv-catfish-logo {
  margin-left: 27px;
}

@media (max-width: 767px) {
  nav.top-nav .logo-area img {
    width: 108px;
  }
  .header-badge {
    padding: 3px 4px;
    font-size: 10px;
  }
  .mtv-catfish-logo {
    width: 67px;
    margin-left: 10px;
  }
}

@media (max-width: 450px) {
  .search-area h1 {
    margin-top: 45px !important;
  }
}

@media (min-width: 768px) {
  nav.top-nav .logo-area img {
    width: 162px;
    height: 24px;
  }
}

@media (min-width: 992px) {
  nav.top-nav .logo-area img {
    width: 180px;
    height: 27px;
  }
}

/* -----------------------------------------------------------
--- SEARCH AREA ---
------------------------------------------------------------ */

.search-area {
  padding-bottom: 140px;
}

.search-area h1 {
  color: #4A3B8F;
  font-weight: 300;
  font-size: 50px;
  margin: 80px 0 15px 0;
}

.search-area h2 {
  font-size: 24px;
  color: #4A4A4A;
  margin-bottom: 30px;
  line-height: 32px;
}

.search-area h4 {
  color: white;
  margin-top: 40px;
  font-size: 24px;
}

.search-area .type-of-search {
  background-color: #292852;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 18px;
  border-radius: 4px;
  position: relative;
}

.hint-text-area {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hint-text-area__heading {
  margin-right: 15px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #81B44C;
  opacity: 0;
  transition: all 0.5s;
}

.hint-text-area__heading a {
  font-weight: 900;
  color: #4A4A4A;
  font-size: 20px;
  letter-spacing: -0.1px;
  line-height: 26px;
  text-decoration: underline;
  text-decoration-color: #9A9A9A;
  cursor: pointer;
}

.privacy-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.privacy-area .yellow-bg {
  background-image: linear-gradient(-180deg, #F6BC25 0%, #FDD367 100%);
  border-radius: 19px;
  padding: 5px 12px;
  text-transform: uppercase;
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 0.87px;
}

.privacy-area .yellow-bg img {
  margin-right: 5px;
}

.top-search-form {
  margin-top: 20px;
}

.top-search-form .bv-btn {
  width: 100%;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
}

.digicert-norton-badge img {
  margin-left: 10px !important;
  width: 72px !important;
}

@media (max-width: 1199px) {
  .search-area h1 {
    margin: 50px 0 10px 0;
    font-size: 52px;
  }
  .search-area h4 {
    max-width: 60%;
  }
}

@media (max-width: 991px) {
  .search-area {
    padding-bottom: 110px;
  }
}

@media (max-width: 767px) {
  .search-area {
    padding-bottom: 110px;
  }
  .search-area h1 {
    margin: 25px 0 10px 0;
    font-size: 34px;
  }
  .search-area h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .privacy-area .yellow-bg {
    background-image: none;
    border-radius: 19px;
    padding: 5px 6px;
    text-transform: uppercase;
    color: #4A4A4A;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: 0.75px;
  }
  .privacy-area {
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }
  .hint-text-area {
    justify-content: flex-start;
    flex-direction: column;
  }
  .hint-text-area__heading {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: -0.1px;
    line-height: 16px;
  }
  .hint-text-area__heading a {
    font-size: 14px;
    letter-spacing: -0.1px;
    line-height: 16px;
  }
  .search-area h2 {
    margin-bottom: 25px;
  }
  .top-search-form .bv-btn {
    width: 100%;
    font-size: 22px;
    line-height: 22px;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .search-area {
    padding-bottom: 160px;
  }
  .search-area h4 {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: -0.09px;
    line-height: 28px;
    max-width: 100%;
  }
  .privacy-area .yellow-bg {
    font-size: 12px;
    letter-spacing: 0.75px;
  }
}

@media (max-width: 480px) {
  .search-area .type-of-search {
    font-size: 15px;
    letter-spacing: 0.18px;
  }
  .digicert-norton-badge img {
    width: 58px !important;
  }
}

@media (min-width: 768px) {
  .top-search-form .submit {
    padding-left: 5px;
  }
}

@media (min-width: 991px) {
  .top-search-form [class^="bv-btn"] {
    height: 70px;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .top-search-form.error {
    margin-bottom: 30px;
  }
  .top-search-form [class^="bv-btn"] {
    height: 60px;
    padding: 0 16px;
    font-size: 20px;
    letter-spacing: 0.85px;
    width: auto;
  }
  .top-search-form .submit {
    padding-left: 0;
    margin-left: -5px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hint-text-area__heading {
    font-size: 18px;
  }
  .privacy-area {
    min-width: 320px;
  }
}

/* CSS hack to target chrome only and NOT safari */
/* image-rendering Used to prevent .png image from appearing blurry when scaled down */
@media (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  .digicert-norton-badge img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ************************************************************
***************************************************************
--- FOOTER ---
***************************************************************
************************************************************ */

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #353167;
}

.footer p {
  font-size: 14px;
  font-weight: 400;
  color: #9B9B9B;
}

.footer .quote p {
  padding-right: 20px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 4px;
  color: #949595;
}

.footer a {
  color: #0f2d8f;
}

.footer a:hover,
.footer a:focus {
  text-decoration: none;
  color: #3b49e5;
}

.footer .email-address a {
  color: #0f2d8f;
}

.footer .email-address a:hover {
  color: #3b49e5;
}

.website {
  margin-bottom: 10px;
}

.website img {
  padding-right: 10px;
}

.footer .hours span,
.footer .email-address span {
  padding: 0;
  padding-bottom: 5px;
}

.hours span.col-xs-11,
.email-address span.col-xs-11 {
  margin-left: 0;
}

.social-links {
  margin-top: 25px;
}

.social-links img {
  height: 16px;
  vertical-align: text-bottom;
}

.social-links div {
  padding-right: 10px;
  padding-left: 10px;
}

.footer a.btn-login {
  margin: 0 0 20px;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #494A46;
  transition: all 0.3s;
}

.footer .no-pad-left {
  padding-left: 0;
}

.quote {
  margin-top: 0;
}

.quote__divider {
  width: 100%;
  height: 0;
  max-width: 293px;
  margin: 10px 0;
  border: 0;
  border-top: 1px solid #D3D2D7;
}

.disclaimer {
  margin-top: 20px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .customer-service-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 0;
  }
  .footer .text-right {
    text-align: left;
  }
  .footer h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .footer a.btn-login {
    margin: 0;
  }
  .customer-service-wrapper {
    margin-bottom: 15px;
  }
  .social-links img {
    max-width: 25px;
    height: 100%;
  }
  .quote {
    margin-top: 0;
  }
  .copyright-text {
    margin-bottom: 15px;
  }
}
