.btn-search {
    cursor: pointer;
}

.intro-title {
    color: yellow;
    font-size: 26px;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.toggle-intro-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10000;
    overflow-y: scroll;
    animation: fade ease 3s;
    -webkit-animation: fade ease 3s;
    -ms-animation: fade ease 3s;
    -moz-animation: fade ease 3s;
}

.toggle-intro {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.intro-content {
    position: relative;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 100%;
    padding: 0px;
    line-height: 1.3;
    background: rgb(51, 51, 51) none repeat scroll 0% 0%;
    color: rgb(255, 255, 255);
    opacity: 1;
    margin-top: 0px;
}

.intro-message {
    padding: 50px;
    font-size: 18px;
    background: #333;
}

.close-toggle-intro {
    position: absolute;
    top: 10px;
    right: 15px;
}

.close-intro {
    cursor: pointer;
    color: white !important;
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.catalog-menu-btn-search {
    cursor: pointer;
}

.catalog-btn-search {
    cursor: pointer;
}

.toggle-catalog {
    cursor: pointer;
}

.number-input {
    width: 60px;
}

.add-to-cart {
    min-width: 200px;
    padding: 15px 25px;
    margin: 15px 15px 0 0;
    line-height: 1;
    border: 1px solid #CCC;
    font-size: 18px;
    background: #F7F7F7;
    cursor: pointer;
}

.addon-number-input {
    width: 2rem;
    padding: 0.5rem;
    margin: 0.5rem;
    -moz-appearance: textfield;
}

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

.addon-number-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected {
    box-shadow: inset 0px 0px 5px #a7a7a7;
    -webkit-box-shadow: inset 0px 0px 5px #a7a7a7;
    -moz-box-shadow: inset 0px 0px 5px #a7a7a7;
}

.required-input {
    border-width: 3px !important;
    border-color: red !important;
}

.required-text {
    color: red !important;
}

@media (min-width: 480px) {
    .deposit-submit {
        margin-left: 1rem !important;
    }
}

.submit-btn-outer {
    border: 1px solid #cbd5e0;
    flex: 1 1 0%;
    flex-direction: row;
    padding: 0.5rem;
    cursor: pointer;
    background-color: #f7fafc;
    width: 100%;
    justify-content: center;
}

.change-btn-outer {
    border: 1px solid #cbd5e0;
    flex: 1 1 0%;
    flex-direction: row;
    padding: 0.5rem;
    cursor: pointer;
    background-color: #f7fafc;
    width: 100%;
    justify-content: center;
    color: #555;
}

.submit-btn-inner {
    border: 1px solid #e2e8f0;
    flex: 1 1 0%;
    flex-direction: row;
    font-size: 1rem;
    padding: 1rem;
    justify-content: center;
    text-align: center;
}

.change-btn-inner {
    border: 1px solid #e2e8f0;
    flex: 1 1 0%;
    flex-direction: row;
    font-size: 1rem;
    padding: 1rem;
    justify-content: center;
    text-align: center;
}

.checkout-btn-wrapper {
    padding: 0rem 2rem 0rem 2rem;
    display: flex;
    flex: 1 1 0%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.checkout-btn-helper-text {
    width: 100%;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.checkout-btn {
    width: 100%;
    margin-top: 2rem;
}

.checkout-btn-outer {
    border: 1px solid #cbd5e0;
    padding: 0.5rem;
    cursor: pointer;
    background-color: #f7fafc;
    width: 100%;
    justify-content: center;
}

.checkout-btn-inner {
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    padding: 1rem;
    justify-content: center;
    text-align: center;
}

@media (min-width: 480px) {
    .submit-btn-outer {
        width: 100%;
        font-size: 1.5rem;
    }
    .change-btn-outer {
        width: 100%;
        font-size: 1.5rem;
    }
    .checkout-btn {
        width: 100%;
    }
    .checkout-btn-outer {
        font-size: 1.5rem;
    }
}

@media (min-width: 1000px) {
    .submit-btn-outer {
        width: 33%;
        font-size: 1.5rem;
    }
    .change-btn-outer {
        width: 33%;
        font-size: 1.5rem;
    }
    .checkout-btn {
        width: 33%;
    }
    .checkout-btn-outer {
        font-size: 1.5rem;
    }
}

.checkout-card {
    position: relative;
    width: 90%;
    padding: 35px 5%;
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    margin-bottom: 1rem;
}

.checkout-card table tbody tr td { text-align: left !important; padding: 5px 5px; line-height: 1.2; }
.checkout-card table tbody tr td strong { line-height: 2; }
.checkout-card input { padding: 7px; line-height: 1; padding: 7px; margin: 10px 0px; }
.checkout-card p input { margin-top: 10px; }

@media (max-width: 1000px) {
    .checkout-card td { float: left !important; clear: left !important; padding: 0px !important; }
}

.request-or-deposit {
    text-align: center;
}

.rc-time-picker {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}
.rc-time-picker * {
  box-sizing: border-box;
}
.rc-time-picker-clear {
  position: absolute;
  right: 6px;
  cursor: pointer;
  overflow: hidden;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  top: 3px;
  margin: 0;
}
.rc-time-picker-input {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 4px 7px;
  height: 28px;
  cursor: text;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  -webkit-transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.rc-time-picker-input[disabled] {
  color: #ccc;
  background: #f7f7f7;
  cursor: not-allowed;
}
.rc-time-picker-panel {
  z-index: 1070;
  width: 170px;
  position: absolute;
  box-sizing: border-box;
}
.rc-time-picker-panel * {
  box-sizing: border-box;
}
.rc-time-picker-panel-inner {
  display: inline-block;
  position: relative;
  outline: none;
  list-style: none;
  font-size: 12px;
  text-align: left;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 5px #ccc;
  background-clip: padding-box;
  border: 1px solid #ccc;
  line-height: 1.5;
}
.rc-time-picker-panel-narrow {
  max-width: 113px;
}
.rc-time-picker-panel-input {
  margin: 0;
  padding: 0;
  width: 100%;
  cursor: auto;
  line-height: 1.5;
  outline: 0;
  border: 1px solid transparent;
}
.rc-time-picker-panel-input-wrap {
  box-sizing: border-box;
  position: relative;
  padding: 6px;
  border-bottom: 1px solid #e9e9e9;
}
.rc-time-picker-panel-input-invalid {
  border-color: red;
}
.rc-time-picker-panel-select {
  float: left;
  font-size: 12px;
  border: 1px solid #e9e9e9;
  border-width: 0 1px;
  margin-left: -1px;
  box-sizing: border-box;
  width: 56px;
  max-height: 144px;
  overflow-y: auto;
  position: relative;
}
.rc-time-picker-panel-select-active {
  overflow-y: auto;
}
.rc-time-picker-panel-select:first-child {
  border-left: 0;
  margin-left: 0;
}
.rc-time-picker-panel-select:last-child {
  border-right: 0;
}
.rc-time-picker-panel-select ul {
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}
.rc-time-picker-panel-select li {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  width: 100%;
  height: 24px;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.rc-time-picker-panel-select li:hover {
  background: #edfaff;
}
li.rc-time-picker-panel-select-option-selected {
  background: #f7f7f7;
  font-weight: bold;
}
li.rc-time-picker-panel-select-option-disabled {
  color: #ccc;
}
li.rc-time-picker-panel-select-option-disabled:hover {
  background: transparent;
  cursor: not-allowed;
}

.contract-number {
    font-size: 1.5rem;
    font-weight: 500;
}

.payment-modes {
    margin-top: 2rem;
}

.payment-table {
    border-collapse: collapse !important;
}

.payment-table-row {
    border-bottom: 1px solid gray !important;
}

#payment-table td {
    padding: 0.5rem;
}

#total-cell#total-cell {
    width: 40% !important;
}
#fee-cell#fee-cell {
    width: 40% !important;
}
#tax-cell#tax-cell {
    width: 40% !important;
}
#price-cell#price-cell {
    width: 40% !important;
}

.radio-label {
    cursor: pointer;
}

#radio-full {
    margin-top: 1rem;
}

.checkbox {
    margin-left: 0.25rem;
    width: auto !important;
    transform: scale(1.5);
    cursor: pointer;
}

.checkbox-label {
    margin-left: 1rem;
    cursor: pointer;
    user-select: none;
}


.payment-button {
    padding: 1rem;
    font-size: 1rem;
    background-color: #4299e1;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-style: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.payment-button:hover {
    background-color: #63b3ed;
}

.input-container {
    width: 100%;
}

.flex-container {
    width: 100%;
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.checkbox-container {
    width: 33%;
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.5rem;
}

.cc-label {
    width: 40%;
}

.cc-input {
    font-size: 1rem !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    appearance: none;
    border-radius: 0.25rem;
    max-width: 100%;
    width: 100%;
}


@media (min-width: 480px) {
    .cc-label {
        width: 30%;
    }

    .cc-input {
        font-size: 1rem !important;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        appearance: none;
        border-radius: 0.25rem;
        max-width: 60%;
        width: 60%;
    }

    .input-container {
        width: 100%;
    }

    .checkbox-container {
        width: 25%;
        display: flex;
        flex: 1 1 auto;
        justify-content: flex-start;
        align-items: center;
        margin-top: 1.5rem;
    }

    #total-cell#total-cell {
        width: 20% !important;
    }
    #fee-cell#fee-cell {
        width: 20% !important;
    }
    #tax-cell#tax-cell {
        width: 20% !important;
    }
    #price-cell#price-cell {
        width: 20% !important;
    }
}

@media (min-width: 768px) {
    .input-container {
        width: 70%;
    }

    .checkbox-container {
        width: 15%;
        display: flex;
        flex: 1 1 auto;
        justify-content: flex-start;
        align-items: center;
        margin-top: 2rem;
    }
}

@media (min-width: 1000px) {
    .input-container {
        width: 50%;
    }
}

.form-container {
    display: flex;
    justify-content: center;
}

.payment-total {
    margin-top: 1rem;
}

.cc-field {
    margin-top: 1rem;
}

#expiration-month {
    margin-right: 1rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: white;
}

#expiration-year {
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: white;
}

#payment-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 3;
}

.payment-message {
    color: white;
}

.payment-container {
    position: relative;
    top: 33%;
}

/*
 * CSS loading spinner from
 * https://github.com/loadingio/css-spinner/
 * under a CC0 / Public Domain license
 */

.lds-ring {
    display: inline-block;
    width: 100px;
    height: 100px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring.dark div {
    border-color: #555 transparent transparent transparent;
}

.lds-ring-btn {
    display: none;
    transform: scale(0.3);
}

.lds-ring-btn .lds-ring {
    top: -60px;
    position: absolute;
    right: -260px;
}


.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.payment-approved {
    color: #07de43;
    font-size: 2rem;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.approved-icon {
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
}

.payment-declined {
    margin-top: 1rem;
    color: #f72039;
    font-size: 2rem;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.declined-icon {
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
}

/* PaymentApp overrides */
.mat-divider {
    visibility: hidden !important;
}

.mat-input-element {
    border: none !important;
}

.payment-ui-button {
    border: 1px solid lightgray !important;
}

.mat-progress-spinner-circle {
    stroke: #4299e1 !important;
}

.mat-spinner-circle {
    stroke: #4299e1 !important;
}

.mat-progress-spinner circle, .mat-spinner circle {
  stroke: #4299e1 !important;
}

.mat-flat-button.mat-primary {
    background-color: #4299e1 !important;
    color: white !important;
}

/* CC merchant label */
.mat-form-field.mat-focused .mat-form-field-label {
    color: #4299e1 !important;
}

/* CC merchant outline */
.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
    color: #4299e1 !important;
}

.icon-container {
    width: 1.5rem;
    height: 1.5rem;
}

.back-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.back-nav-text {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    text-decoration: underline;
}

