@charset "utf-8";

:root {
    --light-blue: #3587c7;
    --sky-blue: #005bb2;
    --dark-blue: #303f5b;
    --dark-gray: #888888;
    --gray: #666666;
    --light-gray: #efefef;
    --black: #000000;
    --white: #ffffff;
    --red: #ff0000;
    --inner-page-bg: #dfdfdf;
    --notice-bg: #535353;
    --blue: #033e68;
    --green: #006147;
    --yellow: #fbfbc5;
    --purple: #353167;
    --beige: #ffecce;
    --dark-beige: #F0D180;
    --border-color: #cccccc;
    --login-btn: #3587C7;
    --tan: #c4b7b1;
    --slate-gray: #6F7C96;
    --indigo: #173c6b;
    --btn-hover: #c3bfbf;
    --input-bg: #f6f6f6;
    --login-bg: #a09eac;
    --body-blue: #D4E2FE;
    --index-funnel: #365487;
    --index-border: #A88B57;
    --terms-bg: #FFFFC4;
    --error-bg: #f8d7da;
}

/* Base css starts */
html {
    min-height: 100%;
}

body {
    font-family: "Arial", sans-serif;
    overflow-x: hidden;
    margin: 0;
}

a,
div,
h1,
h2,
h3,
h4,
h5,
h6,
img,
input,
li,
p,
select,
ul,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    padding: 0;
    outline: 0;
    box-shadow: none;
    border: 0;
    list-style: none;
    font-weight: normal;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
}

img {
    max-width: 100%;
}

a,
button {
    text-decoration: none;
}

small,
.small {
    font-size: 14px;
}

.ff-open-sans {
    font-family: "Open Sans", sans-serif;
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-15 {
    font-size: 15px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

.fs-32 {
    font-size: 32px;
}

.text-blue {
    color: var(--blue);
}

.text-sky-blue {
    color: var(--sky-blue);
}

.text-dark-gray {
    color: var(--dark-gray);
}

.text-gray,
.text-gray:hover {
    color: var(--gray);
}

.text-inherit,
.text-inherit:hover {
    color: inherit;
}

.text-green {
    color: var(--green);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-slate-gray {
  background: var(--slate-gray);
}

.bg-dark-blue {
    background: var(--dark-blue);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-pruple {
    background-color: var(--purple);
}

.bg-inner-page {
    background-color: var(--inner-page-bg);
}

.bg-notice {
    background-color: var(--notice-bg);
}

.bg-biege {
    background: var(--beige);
}

.bg-dark-beige {
    background: var(--dark-beige);
}

.bg-tan {
    background: var(--tan);
}

.bg-body-blue {
    background: var(--body-blue);
}

.bg-img-none {
    background-image: none;
}

.list-style-disc, .list-style-disc > li {
    list-style: disc;
}

.list-style-decimal, .list-style-decimal > li {
    list-style: decimal;
}

.list-style-none {
    list-style: none;
}

.form-control:focus {
    box-shadow: none;
}

.hide {
    display: none;
}

.top-auto {
    top: auto;
}

.my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mb-10 {
    margin-bottom: 10px;
}

.ms-10 {
    margin-left: 10px;
}
/* Base css ends */

/* Common css */
@keyframes dot-flashing {
    0% {
        background-color: var(--black);
    }

    50%,
    100% {
        background-color: rgb(0, 0, 0, 0.1);
    }
}

@keyframes dot-loader {
    0% {
        background-color: var(--black);
    }

    50%,
    100% {
        background-color: rgba(0, 0, 0, 0.1);
    }
}

.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--black);
    color: var(--black);
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
    display: inline-block;
    margin-top: 54px;
    margin-bottom: 63px;
}

.dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--black);
    color: var(--black);
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::before,
.dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--black);
    color: var(--black);
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

.dot-loader {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.1);
    animation: dot-loader 2s infinite linear alternate;
    animation-delay: 0.5s;
    display: inline-block;
}

.btn-style {
    font-size: 15px;
    color: var(--black);
    text-align: center;
    background: var(--light-gray);
    padding: 2px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    display: inline-block;
    min-width: 110px;
}

.card-pill .btn-style {
    min-width: inherit;
}

.btn-style:hover {
    color: var(--black);
    background: var(--light-gray);
}

.btn-style:focus {
    outline: 1px solid var(--black);
}

.link-old {
    display: inline-block;
    color: var(--black);
    text-decoration: underline;
}

.link-old:hover {
    color: var(--black);
    text-decoration: none;
}

.login-btn {
    background-color: var(--light-blue);
}

.login-btn:hover {
    background-color: var(--blue);
}

.login-btn-header {
    line-height: 36px;
    padding: 0 10px;
}

.error-style {
    font-size: 14px;
    color: var(--red);
}

.form-error {
    border: 1px solid var(--red);
}

.search-form-wrapper .search-form-inner {
    border: 2px solid var(--gray);
    padding: 7px 10px;
}

.search-form-inner input,
.search-form-inner select {
    height: 100%;
    font-size: 14px;
    color: var(--gray);
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    border: none;
    box-shadow: none;
}

.search-form-inner select {
    background: url(/common/media/select_icn.jpg) right 0 no-repeat var(--white);
    background-size: 24px;
}

.search-form-wrapper .record-search-btn {
    border: 2px solid var(--black);
    background-color: var(--light-gray);
    min-height: 39px;
    min-width: 220px;
}

.search-form-wrapper .record-search-btn:focus {
    outline: 1px solid var(--black);
}

.custom-loader {
    background-color: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.7;
    z-index: 9;
}

.custom-loader:not(.hide) {
    display: flex;
}

.modal-backdrop {
    background: var(--black);
}

.filter-grayscale {
    filter: grayscale(1);
}

.login-form {
    max-width: 400px;
}

.login-form input {
    border: 1px solid var(--dark-gray);
}

.name-search-modal .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.billing-popup {
    border: 15px solid var(--black);
    width: 420px;
}

.terms-pages .terms-container {
    max-width: 800px;
}

.terms-pages .wrapper {
    border: 1px solid var(--gray);
}

.terms-pages p:not(.mb-0) {
    margin-bottom: 25px;
}

.terms-pages ol li {
    list-style: inherit;
}

.privacy-page ul {
    list-style-type: disc;
}

.table-style.table> :not(:first-child) {
    border-top: 0;
}

.records-item-list ul li {
    padding-left: 30px;
}

.records-item-list ul li:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 7px;
    border-left: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(-45deg);
    left: 0;
    top: 9px;
}

.form-column {
    flex: 100%;
    max-width: 650px;
    margin-bottom: 20px;
}

.sidebar-column {
    flex: 100%;
    max-width: 400px;
}

.notice {
    min-height: 80px;
}

.card-info-wrapper select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 16px 10px;
    background: url(/common/media/select_icn.jpg) 117% center no-repeat var(--white);
}

.card-info-wrapper select#expMonth,
.card-info-wrapper input#cardCvvNo {
    width: 74px;
}

.card-info-wrapper select#expYear {
    width: 94px;
}

.sidebar-box {
    border-style: solid;
    border-width: 1px;
    border-color: var(--border-color);
    border-radius: 3px;
    margin-bottom: 32px;
}

.guarantee-box p {
    line-height: 17px;
    word-spacing: 0.5px;
    margin-bottom: 20px;
}

.order-summary-text ul {
    padding-left: 20px;
}

.order-summary-text ul li:not(:last-child) {
    margin-bottom: 12px;
}

.order-summary-text li {
    list-style: disc;
}

.non-clickable a {
    color: var(--black);
    pointer-events: none;
}

/* New Billing Page */
.new-billing-design .input-style-new {
    border: 2px solid var(--black);
}

.new-billing-design .billing-select-box {
    width: 80px;
    padding-inline: 10px;
}

.new-billing-design form.billing-form,
.billing-info-box {
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -2px rgb(0 0 0 / 10%);
}

.new-billing-design .billing-terms {
    padding: 12px;
    border: 1px solid var(--black);
}

.new-billing-design .order-summary ul li::before {
    content: ".";
    position: absolute;
    font-size: 40px;
    line-height: 20px;
    top: -12px;
    left: -10px;
    bottom: 0;
}

.new-billing-design .form-check-input {
    min-width: 16px;
    height: 16px;
    box-shadow: none;
}

.new-billing-design .form-check-input:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.input-style-new:focus {
    box-shadow: 0 0 0 1px var(--black);
}

.input-style-new::placeholder,
.input-style-new#address::placeholder {
    color: var(--dark-gray);
}

.bg-biege-land .address-error {
    top: auto;
    bottom: 0;
    margin-left: 10px;
}

.lookfor-input select {
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid var(--dark-gray);
}

.bw-input {
    border: 1px solid var(--black);
    max-width: 400px;
}

.city-page input {
    max-width: 250px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
}

.city-page input:focus {
    border: 1px solid var(--border-color);
}

.city-page .find-city {
    max-width: 250px;
}

.progress-bar-wrapper {
    max-width: 650px;
    border: 1px solid var(--gray);
}

.owner-list {
    max-width: 720px;
    margin-top: 70px;
    margin-bottom: 40px;
}

.owner-list-inner {
    display: grid;
    padding-left: 0;
}

.owner-list-inner li {
    font-size: 16px;
    font-weight: bold;
}

.owner-list-inner li:not(:last-child) {
    padding-bottom: 11px;
    margin-bottom: 11px;
}

div[data-lastpass-root] {
    display: none;
}

/* Auto Search Css */
.auto-suggest-list {
    height: auto;
    max-height: 300px;
    padding: 3px 0 3px 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background: var(--white);
    position: absolute;
    z-index: 9999;
    width: 100%;
    top: 100%;
    overflow: scroll;
    overflow-x: hidden;
    left: 0;
}

.auto-suggest-list p {
    font-size: 15px;
    color: var(--black);
    position: relative;
    margin: 0;
    padding: 8px 30px 8px 25px;
    line-height: inherit;
    text-align: left;
}

.auto-suggest-list p:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 0;
    bottom: 0;
    background: url(/common/media/right-arrow_new.png) no-repeat;
    background-position: right center;
    background-size: 20px;
    margin: auto;
    opacity: 0.75;
}

.auto-suggest-list p::after {
    width: 10px;
    height: 16px;
    background: url(/common/media/fld_src_pin.png) top left no-repeat;
    position: absolute;
    content: "";
    top: 12px;
    left: 7px;
}

.auto-suggest-list p.green_pin::after {
    background: url(/common/media/fld_src_green_pin.png) top left no-repeat;
}

.auto-suggest-list p.green_pin {
    background: var(--light-gray);
}

.auto-suggest-list p:hover::after {
    background: url(/common/media/fld_src_green_pin.png) top left no-repeat;
}

.auto-suggest-list p:hover {
    background: var(--light-gray);
    cursor: pointer;
}

.auto-suggest-list hr {
    opacity: inherit;
    background: none;
    margin: 0;
    border-bottom: 1px solid var(--light-gray);
}

.header-center-text {
    max-width: 350px;
}

.header-internal .header-center-text p {
    font-size: 12px;
    line-height: 1.3;
}

.header-bg-image {
    background: center / cover no-repeat url(/common/media/header-desktop.png);
}

.server-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.server-status span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(131deg, #14bf12 30%, #002600);
}

.border-input-style {
    padding: 10px;
    height: 40px;
    width: 100%;
    border: 2px solid var(--black);
    background: var(--white);
    outline: none;
}

.border-input-style::placeholder {
    color: var(--black);
}

.billing-body {
    color: var(--black);
}

.required-field {
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    float: left;
    padding: 4px 10px;
    border-radius: 3px;
    margin-top: -6px;
    position: absolute;
    width: auto;
}
.required-field::after {
    width: 15px;
    height: 8px;
    background: url(/common/media/req-chevrone.png) top left no-repeat;
    position: absolute;
    top: -8px;
    left: 15px;
    content: "";
}

.live-chat-btn {
    border: 1px solid var(--login-bg);
    padding-top: 10px;
    padding-bottom: 10px;
    width: max-content;
    cursor: pointer;
}

.live-chat-btn.login-btn-style {
    background: var(--login-bg);
    border-color: var(--login-bg);
}

.contact-form {
    max-width: 360px;
}

.contact-form input.form-control:not([type="checkbox"]):not([type="radio"]):not(.defaultInput) {
    padding: 10px 12px;
}

.contact-form-new .input-style-new:focus {
    border-color: var(--black);
    box-shadow: none;
}

.live-chat-float-btn {
    gap: 10px;
    bottom: 15px;
    cursor: pointer;
    padding: 0 12px;
    width: fit-content;
}

.error {
    color: var(--red);
    font-size: 14px;
    margin-top: 5px;
}

.contact-form-iframe {
    width: 640px;
    min-height: 680px;
    max-width: 100%;
}

.reference-number-desktop {
    display: none;
}

.credit-card-popup .modal-dialog {
  max-width: 600px;
}

.credit-card-popup .modal-content {
  box-shadow: inset 0 2px 30px rgba(33, 181, 239, 0.4);
}

.credit-card-popup .modal-content .modal-topBar h4 {
  font-size: 18px;
}

.credit-card-popup .modal-content .modal-topBar p {
  color: var(--red);
  font-size: 14px;
  border: 1px var(--red) solid;
  padding: 10px 30px 10px 10px;
}

.credit-card-popup .modal-content label {
  font-size: 13px;
}

.credit-card-popup .modal-content input {
  font-size: 13px;
  color: var(--black);
  border: 1px solid var(--dark-gray);
  height: 23px;
}

.credit-card-popup .modal-content select {
  width: 73px;
  font-size: 13px;
  color: var(--black);
  border: 1px solid var(--dark-gray);
  height: 23px;
}

.credit-card-popup .modal-content .cvvCredit {
    max-width: 68px;
    width: 100%;
}

.credit-card-popup .modal-content .modal-body-form img {
    width: 68px;
}

.credit-card-popup .modal-content button {
  width: 175px;
  font-size: 16px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(
    to bottom,
    #7f7f7f,
    #6b6b6b,
    #585858,
    #454545,
    #333333
  );
}

.credit-card-popup .modal-content button:hover {
  background-image: linear-gradient(
    to top,
    #7f7f7f,
    #6b6b6b,
    #585858,
    #454545,
    #333333
  );
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.auto-link a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}

#email-warning-container {
    font-size: 14px;
    display: flex;
    align-items: center;
    height: 0;
    opacity: 0;
    width: 100%;
    background-color: var(--beige);
    transition: height, opacity 1.5s, padding, margin-bottom, 0.15s;
    overflow: hidden;
}

#email-warning-container.view {
    font-size: 14px;
    height: auto;
    opacity: 100%;
    margin-bottom: 10px;
    padding: 6px 16px;
}

#warning {
    color: var(--black);
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 2px;
}

#warning-text {
    white-space: nowrap;
}

#warning-email {
    text-decoration: underline;
    word-break: break-all;
}

.error-icon {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
}

.billing-terms-bg {
    background: var(--terms-bg);
}

.billing-terms.terms-error {
    border-color: var(--red);
}

.terms-error .form-check-input:not(:checked) {
    background: var(--red);
    border-color: var(--red);
    filter: none;
}

.new-billing-design .input-style-new.field-error {
    border-color: var(--bs-danger);
    background-color: var(--error-bg);
}

.new-billing-design .input-style-new.field-error::placeholder, 
.new-billing-design select.input-style-new.field-error {
    color: var(--bs-danger);
}

.input-style-new.field-error:focus {
    box-shadow: 0 0 0 1px var(--bs-danger);
}


@media (min-width: 360px) {
    .container {
        max-width: 1124px;
    }
}

@media (min-width: 768px) {
    .search-form-inner {
        width: 75%;
    }

    .search-form-inner select, .search-form-inner select:focus {
        border-left: 1px solid var(--border-color);
    }

    .auto-suggest-list {
        box-shadow: 0 1px 5px rgba(4, 4, 4, 0.3);
    }

    .name-search-modal .modal-dialog {
        max-width: 590px;
    }

    footer p,
    footer a {
        line-height: 25px;
    }

    .mb-md-10 {
        margin-bottom: 10px;
    }

    .customers-align-left .customer-type-col:first-child {
        border-right: 1px solid var(--border-color);
        margin-right: 60px;
    }

    .customers-align-left::after {
        display: none;
    }

    .records-item-list ul li {
        width: 50%;
    }

    .lookfor-input {
        max-width: 650px;
    }
    .fs-md-14 {
        font-size: 14px;
    }
    .fs-md-24 {
        font-size: 24px;
    }
    .fs-md-28 {
        font-size: 28px;
    }
    .fs-md-32 {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    .records-item-list ul li {
        width: 33.3%;
    }

    .search-form-wrapper form {
        max-width: 975px;
    }

    .search-form-wrapper .search-btn-wrapper {
        min-width: 250px;
    }
    .container-small {
        max-width: calc(900px + 1.5em);
    }

    .billing-form-wrapper {
        min-width: 536px;
        max-width: 536px;
    }
    .fs-lg-18 {
        font-size: 18px;
    }
}

@media (min-width: 1500px) {
  .reference-number-desktop {
    display: block;
  }
  .reference-number {
    display: none;
  }
}

@media (max-width: 767px) {
    .header-internal .header-icon {
        max-width: 50px;
    }

    .table-style th {
        min-width: 250px;
    }

    .customer-type-wrapper:after {
        display: none;
    }

    .customer-type-col:first-child {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
    }

    .search-form-inner input,
    .search-form-inner select {
        padding-top: 17px;
        padding-bottom: 17px;
    }

    .search-form-wrapper .search-form-inner {
        padding: 0 15px;
    }

    .search-form-wrapper .search-form-inner select {
        border-top: 1px solid var(--border-color);
    }

    .owner-list {
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .server-status {
        font-size: 14px;
        font-weight: normal;
    }

    .server-status span {
        width: 15px;
        height: 15px;
    }

    .server-status-content .user-date-time {
        font-size: 12px;
    }
    .fs-sm-12 {
        font-size: 12px;
    }
    .fs-sm-14 {
        font-size: 14px;
    }
    .fs-sm-20 {
        font-size: 20px;
    }
    .fs-sm-24 {
        font-size: 24px;
    }
    .fs-sm-26 {
        font-size: 26px;
    }
    .fs-sm-28 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .order-summary-text ul li:not(:last-child) {
        margin-bottom: 7px;
    }
}

@media (max-width: 480px) {
    .header-internal .header-icon {
        max-width: 40px;
    }

    header .logo p {
        font-size: 19px;
    }

    header .logo p span {
        font-size: 14px;
    }

    .header-internal .header-center-text {
        max-width: 176px;
        gap: 10px;
    }

    .header-internal .header-center-text p {
        font-size: 12px;
    }

    .header-bg-image {
        background: center / cover no-repeat url(/common/media/header-mobile.png);
    }
    .reference-number p {
        font-size: 12px;
    }
    .server-status-content .user-date-time {
        font-size: 11px;
    }
}