/**
 * Set up a decent box model on the root element
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: #BC1F1F;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #A61818;
}

.wrapper {
  background-color: #F8FAFC;
}

body {
  background-color: #F8FAFC;
}

.login-header-logo{
  padding-left:20px;
}

.h4 {
  color: #111827;
  font-size: 32px;
  font-weight: bold;
  line-height: 42px;
}

.h5 {
  color: #111827;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}

.h6 {
  color: #111827;
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
}

p {
  font-size: 16px;
}

.pe-20 {
  padding-right: 20px;
}

.container-custom {
  max-width: 1700px;
  margin: 0 auto;
}

.container-modal {
  max-width: 90%;
  margin: 0 auto;
  width: 100%;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #ffe1e1;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #ffe1e1;
}

.form-select:focus {
  border-color: #ffe1e1;
  box-shadow: 0 0 0 0.25rem #ffe1e1;
}

.table {
  border-collapse: collapse;
}
.table th {
  padding: 0;
  border-bottom: none;
}
.table th div {
  padding: 8px 16px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #334155;
  border-right: none;
  border-bottom: none;
}
@media (max-width: 599px) {
  .table th div {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
}
@media (max-width: 356px) {
  .table th div {
    font-size: 11px;
  }
}
.table th:first-child div {
  border-top-left-radius: 4px;
}
.table th:last-child div {
  border-top-right-radius: 4px;
  border-right: 1px solid #E2E8F0;
}
.table td {
  background: #fff;
  border: 1px solid #E2E8F0;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #64748B;
  padding: 8px 16px 8px 17px;
  text-align: center;
}

.vertical-align-middle {
  vertical-align: middle;
}

.bg-gray-50 {
  background: #F8FAFC;
}

.text-primary {
  color: #BC1F1F !important;
}

/**
 * Basic typography style for copy text
 */
body {
  color: #111827;
  font: normal 125%/1.4 "Inter", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1180px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  padding-right: 20px;
  /* 3 */
  width: 100%;
  /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

header .red-header {
  background-color: #BC1F1F;
}
header .red-header .header-right-menu a {
  color: #fff;
  font-size: 14px;
}
header .red-header .header-right-menu a.saved-plans {
  padding-right: 28px;
  border-right: 1px solid #FEF6F6;
}
header .red-header .header-right-menu a.saved-plans img {
  padding-right: 12px;
}
header .red-header .header-right-menu a.logout img {
  padding-left: 30px;
}
header .red-header .header-right-menu a.logout span {
  padding-left: 11px;
}
@media (max-width: 991px) {
  header .red-header .header-right-menu a.logout span {
    padding-left: 0;
  }
}
header .red-header .header-right-menu .save-plan {
  margin-left: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #fff;
  font-size: 14px;
  color: #BC1F1F;
}
header .red-header .header-right-menu .save-plan img {
  padding-right: 11px;
}

main {
  background: #F8FAFC;
  height: calc(100vh - 70px);
  padding-top: 40px;
}
@media (max-width: 599px) {
  main {
    padding-top: 20px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar-brand img {
    width: 70%;
  }

  .navbar-toggler {
    border: none;
  }

  .nav-item {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d26464;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  .nav-item a, .nav-item button {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    background-color: unset !important;
    color: #fff !important;
  }
  .nav-item a img, .nav-item button img {
    display: none;
  }
  .nav-item a.saved-plans {
    border: none !important;
    padding: 0 !important;
  }
  .nav-item button {
    justify-content: center !important;
  }
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 255' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn {
  border-radius: 6px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}
@media (max-width: 599px) {
  .btn {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
  }
}

.btn-primary {
  background-color: #BC1F1F;
  border: 1px solid #BC1F1F;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #A61818;
  border-color: #A61818;
}
.btn-primary:focus {
  background-color: #A61818;
  border-color: #A61818;
  box-shadow: 0 0 0 0.25rem #ffe1e1 !important;
}
.btn-primary:focus-visible {
  border-color: #A61818;
}
.btn-primary .btn-check:active + .btn-primary:focus, .btn-primary .btn-check:checked + .btn-primary:focus, .btn-primary .btn-primary.active:focus, .btn-primary .btn-primary:active:focus, .btn-primary .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem #ffe1e1 !important;
}

.btn-secondary {
  background-color: #fff;
  color: #374151;
  border-color: #D1D5DB;
}

.custom-form-switch.form-check-input:checked {
  background-color: #BC1F1F;
  border-color: #BC1F1F;
  background-image: url("../images/switch-check.svg") !important;
}

.form-check-input:checked {
  background-color: #BC1F1F;
  border-color: #BC1F1F;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem #ffe1e1 !important;
}

.custom-form-switch.form-check-input:focus-visible {
  outline: #A61818;
  color: #FFE1E1;
}

.custom-form-switch.form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}

.mat-radio {
  z-index: 0;
  position: relative;
  display: inline-block;
  font-size: 14px;
}

/* Input */
.mat-radio > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -7px;
  top: -5px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.mat-radio > span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  white-space: nowrap;
  color: #64748B;
}

/* Circle */
.mat-radio > span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 2px 4px 2px 0;
  border: solid 1px;
  /* Safari */
  border-color: #CBD5E1;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  vertical-align: top;
  transition: border-color 0.2s;
}

/* Check */
.mat-radio > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: -1px;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #BC1F1F;
  transform: translate(5px, 5px) scale(0);
  transition: transform 0.2s;
}

/* Checked */
.mat-radio > input:checked {
  background-color: #BC1F1F;
}

.mat-radio > input:checked + span::before {
  border-color: #BC1F1F;
}

.mat-radio > input:checked + span::after {
  transform: translate(5px, 5px) scale(1);
}

/* Hover, Focus */
.mat-radio:hover > input {
  opacity: 0.04;
}

.mat-radio > input:focus {
  opacity: 0.12;
}

.mat-radio:hover > input:focus {
  opacity: 0.16;
}

/* Active */
.mat-radio > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}

.mat-radio > input:active + span::before {
  border-color: #BC1F1F;
}

/* Disabled */
.mat-radio > input:disabled {
  opacity: 0;
}

.mat-radio > input:disabled + span {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  cursor: initial;
}

.mat-radio > input:disabled + span::before {
  border-color: currentColor;
}

.mat-radio > input:disabled + span::after {
  background-color: currentColor;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #BC1F1F;
}

.nav-link {
  color: #64748B;
  border-radius: unset !important;
  text-align: left;
  padding-left: 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .nav-link {
    border-bottom: 1px solid #E2E8F0 !important;
  }
}
.nav-link:hover {
  color: #A61818;
}
.nav-link:first-child {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}
.nav-link:last-child {
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  border-bottom: 0 !important;
}
.nav-link img {
  padding-right: 10px;
}
@media (max-width: 599px) {
  .nav-link {
    width: 100%;
  }
}

.nav-pills {
  border: 1px solid #E2E8F0;
  border-radius: 4px !important;
  background: #fff;
}
@media (min-width: 768px) {
  .nav-pills {
    position: sticky;
    top: 40px;
  }
}

.menu-tabs .tab-content .bg-white-box {
  padding: 24px;
  margin-bottom: 130px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #E2E8F0;
}
@media (max-width: 599px) {
  .menu-tabs .tab-content .bg-white-box {
    padding: 15px;
    margin-bottom: 130px;
  }
  .menu-tabs .tab-content .bg-white-box .alert-custom {
    margin: -15px;
    padding: 11px;
    margin-top: 15px;
    font-size: 13px;
  }
  .menu-tabs .tab-content .bg-white-box .alert-custom img {
    padding-right: 10px;
  }
}
.menu-tabs .tab-content .tab-pane .h5, .menu-tabs .tab-content .tab-pane .h6 {
  color: #334155;
}
.menu-tabs .tab-content .tab-pane p {
  font-size: 16px;
  line-height: 24px;
  color: #64748B;
}
.menu-tabs .tab-content .tab-pane ul {
  padding-left: 23px;
}
.menu-tabs .tab-content .tab-pane ul li {
  color: #64748B;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 4px;
}

.box-circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin-right: 10px;
}
.box-circle.donut {
  border: 3px solid #fff;
}
.box-circle.filled {
  background: #F1F5F9;
}
.box-circle.checked {
  background: url("../images/radio-check.svg");
}

.tabs-column {
  position: relative;
}
@media (min-width: 768px) {
  .tabs-column {
    max-width: 345px;
  }
}

.tabs-content {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .tabs-content {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .tabs-content {
    max-width: calc(100% - 345px);
  }
}

.alert-primary {
  background-color: #EFF6FF;
  border: none;
  font-size: 16px;
  color: #1D4ED8;
}
.alert-primary img {
  padding-right: 19px;
}

.modal-header-custom {
  padding-left: 65px;
  padding-right: 25px;
  padding-bottom: 19px;
  padding-top: 19px;
}
.modal-header-custom button {
  border: none;
  background: none;
}

.c-1 {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: 0 5px;
  position: absolute;
  height: 100%;
  width: 4.333%;
}
@media (max-width: 991px) {
  .c-1 {
    width: 100%;
    position: unset;
    height: unset;
    padding: 0;
  }
}

.rotated-box-modal {
  padding: 3px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  font-size: 14px;
  border-radius: 4px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  display: inline-block;
  overflow: visible;
  text-align: center;
  color: #64748B;
  font-weight: 700;
}
@media (max-width: 991px) {
  .rotated-box-modal {
    width: 100%;
    margin-right: 15px;
    writing-mode: unset;
    padding: 0;
    transform: unset;
    background-color: #334155;
    color: #fff;
  }
}

.bg-modal {
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  margin-left: 10px;
  padding: 8px 14px;
  background-color: #F8FAFC;
}
@media (max-width: 991px) {
  .bg-modal {
    padding-left: 10px;
    padding-right: 0;
  }
  .bg-modal p {
    font-size: 13px;
  }
}
.bg-modal ul li {
  font-size: 14px;
  line-height: 21px;
  color: #64748B;
}

.bg-modal-dark {
  background-color: #334155;
  color: #fff;
  margin-top: -8px;
  margin-bottom: -8px;
  margin-left: -2px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 16px;
}
@media (max-width: 991px) {
  .bg-modal-dark {
    background-color: #F8FAFC;
    color: #334155;
  }
}
.bg-modal-dark p {
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 0;
}
.bg-modal-dark span {
  font-size: 14px;
  line-height: 21px;
}

.bg-modal-row-repeat {
  margin-left: 38px;
}
@media (max-width: 991px) {
  .bg-modal-row-repeat {
    margin-left: calc(var(--bs-gutter-x)/ -2);
  }
}

.modal-heading {
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #64748B;
}
.modal-heading div {
  padding-bottom: 8px;
}
.modal-heading .deals-heading {
  padding-left: 12px;
}
.modal-heading .advertise-heading {
  padding-left: 42px;
}
.modal-heading .ad-channel-heading {
  padding-left: 42px;
}

.modal-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  color: #334155;
}

#savedPlansModal .modal-dialog {
  max-width: 465px;
}

.saved-plan-rows {
  align-items: baseline;
  border-bottom: 1px solid;
}
.saved-plan-rows .plan-date ul {
  padding-left: 16px;
  margin-bottom: 0;
}
.saved-plan-rows .plan-date ul li::marker {
  color: #BC1F1F;
}
.saved-plan-rows .plan-date ul li span {
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #334155;
  margin-right: 8px;
}
@media (max-width: 599px) {
  .saved-plan-rows .plan-date ul li span {
    font-size: 12px;
  }
}
.saved-plan-rows .time-capsule {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  background: #F1F5F9;
  border-radius: 10px;
  margin-right: 49px;
  padding: 2px 10px;
}
@media (max-width: 430px) {
  .saved-plan-rows .time-capsule {
    margin-right: 0;
  }
}
.saved-plan-rows .submitted-capsule {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #047857;
  background: #D1FAE5;
  border-radius: 10px;
  padding: 2px 10px;
  margin-right: 8px;
}
.saved-plan-rows button {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  padding: 6px 8px;
}
@media (max-width: 599px) {
  .saved-plan-rows button {
    white-space: nowrap;
  }
}

@media (max-width: 599px) {
  .ad-channels-list {
    padding-left: 0;
  }
}

@media (max-width: 430px) {
  .modal-body {
    padding: 0;
  }
}

.estimated-marketing-cost {
  padding: 16px;
  width: 100%;
  max-width: unset;
  margin-left: -12px;
  background: #f8fafc;
  bottom: -400px;
  position: fixed;
  transition: bottom 0.3s linear;
}
@media (max-width: 599px) {
  .estimated-marketing-cost .h5 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 600px) {
  .estimated-marketing-cost .h5 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 600px) {
  .estimated-marketing-cost {
    padding: 24px;
  }
}
.estimated-marketing-cost .cost-list {
  max-height: 380px;
  overflow-y: auto;
}
.estimated-marketing-cost .cost-item-box {
  border: 1px solid #E2E8F0;
  padding: 6px 15px;
  border-radius: 5px;
  background: #F8FAFC;
  margin-bottom: 8px;
}
@media (min-width: 600px) {
  .estimated-marketing-cost .cost-item-box {
    padding: 18px 16px;
  }
}
.estimated-marketing-cost button {
  display: none;
}
@media (min-width: 768px) {
  .estimated-marketing-cost button {
    display: block;
  }
}
.estimated-marketing-cost.activated {
  bottom: 0px;
  transition: bottom 0.3s linear;
}
@media (min-width: 768px) {
  .estimated-marketing-cost {
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: fixed;
    right: 16px;
    border: 1px solid #E2E8F0;
    background: white;
    max-width: 500px;
    overflow: hidden;
    bottom: -5000px;
    transition: opacity 0.4s;
    padding: 24px;
  }
  .estimated-marketing-cost.activated {
    bottom: 146px !important;
    opacity: 1;
    transition: opacity 0.4s;
    -webkit-transition: opacity 0.4s;
  }
}
@media (min-width: 1366px) {
  .estimated-marketing-cost .cost-list {
    max-height: 380px;
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .estimated-marketing-cost .cost-list ::-webkit-scrollbar {
    width: 8px;
  }
}
@media (min-width: 1440px) {
  .estimated-marketing-cost .cost-list {
    max-height: 430px;
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .estimated-marketing-cost .cost-list ::-webkit-scrollbar {
    width: 8px;
  }
}

.cost-item-name {
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #64748B;
}

.cost-item-price {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #334155;
  padding-right: 24px;
}

.cost-percentage .progress-pie-chart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e5e5;
  position: relative;
}
.cost-percentage .progress-pie-chart.gt-50 {
  background-color: #BC1F1F;
}
.cost-percentage .ppc-progress {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  clip: rect(0, 40px, 40px, 20px);
}
.cost-percentage .ppc-progress .ppc-progress-fill {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  clip: rect(0, 20px, 40px, 0);
  background: #BC1F1F;
  transform: rotate(60deg);
}
.cost-percentage .gt-50 .ppc-progress {
  clip: rect(0, 20px, 40px, 0);
}
.cost-percentage .gt-50 .ppc-progress .ppc-progress-fill {
  clip: rect(0, 40px, 40px, 20px);
  background: #e5e5e5;
}
.cost-percentage .ppc-percents {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 34.7826086957px / 2);
  top: calc(50% - 34.7826086957px / 2);
  width: 34.7826086957px;
  height: 34.7826086957px;
  background: #fff;
  text-align: center;
  display: table;
}
.cost-percentage .ppc-percents span {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #334155;
}
.cost-percentage .pcc-percents-wrapper {
  display: table-cell;
  vertical-align: middle;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  padding:15px;
  text-align: center;
  height: calc(100vh);
}
@media (max-width: 599px) {
  .login {
    height: calc(100vh );
    padding-top: 150px;
  }
}
.login .mb-32 {
  margin-bottom: 32px;
}
@media (max-width: 599px) {
  .login .h4 {
    font-size: 26px;
  }
}

.f-14 {
  font-size: 14px;
}

.main-heading {
  color: #334155;
}
.main-heading span {
  color: #BC1F1F;
}
@media (max-width: 599px) {
  .main-heading {
    font-size: 20px;
  }
}

.store-identifier {
  padding: 8px;
  max-width: 467px;
  background-color: #fff;
  border: 1px solid #E2E8F0;
  box-sizing: border-box;
  border-radius: 4px;
}
.store-identifier .store-number-label, .store-identifier .store-name-label {
  font-size: 16px;
  color: #64748B;
}
@media (max-width: 599px) {
  .store-identifier .store-number-label, .store-identifier .store-name-label {
    font-size: 14px;
  }
}
.store-identifier .store-name, .store-identifier .store-number {
  font-size: 16px;
  color: #334155;
  font-weight: bold;
}
@media (max-width: 599px) {
  .store-identifier .store-name, .store-identifier .store-number {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .store-identifier {
    flex-wrap: wrap;
  }
}

.table-box {
  background-color: white;
  border: 1px solid #E2E8F0;
  height: 100%;
  border-right: 0;
  border-bottom: 0;
  padding: 8px;
}
.table-box .form-check {
  margin-bottom: 0;
  min-height: unset;
}
.table-box .form-check .form-check-input {
  width: 16px;
  height: 16px;
}
.table-box .form-check-input:checked[type=radio] {
  background-image: url("../images/radio-input.svg");
  background-size: 8px;
  background-color: #fff;
  border-color: #BC1F1F;
  background-position: center;
}

.digital-month-box {
  font-size: 14px;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
}

.d-table-header {
  background: #F1F5F9;
  padding: 8px;
  border-radius: 4px 4px 0px 0px;
  font-weight: 700;
  font-size: 16px;
}

.total-cost {
  background: #BC1F1F;
  position: fixed;
  z-index: 200;
  border-radius: 24px 24px 0px 0px;
  width: 100%;
  left: 0;
  bottom: -8px;
  padding: 16px;
  padding-bottom: 16px;
  text-align: left;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  transition: bottom 0.3s linear;
}
.total-cost.activated {
  bottom: 305px;
  transition: bottom 0.3s linear;
}
@media (max-width: 599px) {
  .total-cost.activated {
    bottom: 520px;
  }
}
@media screen and (min-width: 468px) {
  .total-cost.activated {
    bottom: 508px;
  }
}
@media (min-width: 600px) {
  .total-cost.activated {
    bottom: 530px;
  }
}
@media (min-width: 768px) {
  .total-cost {
    right: 16px;
    width: unset;
    border-radius: unset;
    text-align: center;
    padding: 16px 24px;
    left: unset;
    bottom: 16px;
  }
  .total-cost.activated {
    bottom: 16px;
    transition: bottom 0.3s linear;
  }
}
@media (min-width: 2560px) {
  .total-cost {
    right: 10%;
  }
}
.total-cost .cost {
  font-weight: bold;
  font-size: 32px;
  line-height: 42px;
}
.total-cost .cost .chev-up {
  background: #DC2626;
  border-radius: 100%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.total-cost .cost .chev-up.activate {
  transform: rotate(180deg);
  transition: all 300ms;
}
.total-cost .estimate {
  font-weight: normal;
}
.total-cost .click-details {
  font-weight: bold;
}

.signup-rewards-program {
  display: flex;
  padding: 16px;
  background: #fff;
  justify-content: space-between;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
}
.signup-rewards-program p {
  font-weight: 700;
  color: #334155 !important;
}

.month-checkbox {
  background: white;
  padding: 8px;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #334155;
}
.month-checkbox label {
  width: 100%;
}

.personal-info-heading {
  padding: 8px 16px;
  border: 1px solid #E2E8F0;
  box-sizing: border-box;
  border-radius: 5px;
  background: #F1F5F9;
  margin-bottom: 16px;
}
.personal-info-heading p {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
.personal-info-heading img {
  padding-right: 15px;
}

.personal-info-form input {
  background: #fff;
  border: 1px solid #CBD5E1;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}
.personal-info-form label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1E293B;
}
.personal-info-form select {
  color: #64748B;
}
.personal-info-form .phone-number {
  flex: 40 1 auto;
}
.personal-info-form .phone-number-select {
  padding: 9px 13px;
  width: 70px;
}

.ecommerce-table th div {
  white-space: nowrap;
}
.ecommerce-table td {
  text-align: left;
  white-space: nowrap;
}
.ecommerce-table .opt-out {
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: bold;
}
.ecommerce-table .e1 {
  font-weight: bold;
}
.ecommerce-table select {
  height: 32px;
  font-size: 14px;
  background-color: #F8FAFC;
}

.add-row {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}

.bg-gray-box {
  padding-bottom: 130px;
}
@media (max-width: 900px) {
  .bg-gray-box h2.h5 {
    font-size: 20px;
  }
}

.ship-to-store-table table {
  width: 50%;
}
@media (max-width: 991px) {
  .ship-to-store-table table {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
