:root {
  --s-white: #fff;
  --s-dark: #000;
  --s-primary: #ff9d94;
  --s-secondary: #00d7b9;
  --s-primary-light: rgba(255, 157, 148, 0.2);
  --s-primary-10: rgba(255, 157, 148, 0.1);
  --s-secondary-dark: #294638;
}

/***** Fonts *****/

/***** Fonts - Inter-Regular *****/
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter/Inter-Regular.woff") format("woff");
  font-display: fallback;
}
/***** Fonts - Inter-Light *****/
@font-face {
  font-family: "Inter-Light";
  src: url("../fonts/Inter/Inter-Light.woff2") format("woff2"),
    url("../fonts/Inter/Inter-Light.woff") format("woff");
  font-display: fallback;
}
/***** Fonts - Inter-SemiBold *****/
@font-face {
  font-family: "Inter-SemiBold";
  src: url("../fonts/Inter/Inter-SemiBold.woff2") format("woff2"),
    url("../fonts/Inter/Inter-SemiBold.woff") format("woff");
  font-display: fallback;
}
/***** Fonts - Inter-Bold *****/
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter/Inter-Bold.woff2") format("woff2"),
    url("../fonts/Inter/Inter-Bold.woff") format("woff");
  font-display: fallback;
}
/***** Fonts - Inter-ExtraBold *****/
@font-face {
  font-family: "Inter-ExtraBold";
  src: url("../fonts/Inter/Inter-ExtraBold.woff2") format("woff2"),
    url("../fonts/Inter/Inter-ExtraBold.woff") format("woff");
  font-display: fallback;
}

body {
  font-family: "Inter-Regular";
  color: var(--s-dark);
  background: var(--s-white);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Inter-ExtraBold";
}

h4,
h5,
h6 {
  font-family: "Inter-Bold";
}
h1 {
  font-size: 40px;
  line-height: 53px;
}
h2 {
  font-size: 32px;
  line-height: 43px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
}
h4 {
  font-size: 20px;
  line-height: 26px;
}
h5 {
  font-size: 16px;
  line-height: 24px;
}
p {
  font-size: 18px;
  line-height: 22px;
}
a {
  text-decoration: none;
}

.body-1 {
  font-size: 16px;
  line-height: 24px;
}
.body-2 {
  font-size: 14px;
  line-height: 20px;
}

.caption {
  font-size: 12px;
  line-height: 16px;
}
.caption .d-block {
  margin-left: 7px;
}

/***** Font Familes *****/
.inter-bold {
  font-family: "Inter-Bold";
}

/***** Timestamp *****/
.timestamp {
  width: 60px;
  height: 60px;
  border: 1px solid var(--s-white);
}
.timestamp p {
  font-family: "Inter-ExtraBold";
  font-size: 14px;
  line-height: 20px;
}

/***** Blockquotes *****/
blockquote {
  display: flex;
}
blockquote:before {
  font-size: 42px;
  font-family: sans-serif;
  content: "\“";
}
blockquote:after {
  font-size: 42px;
  font-family: sans-serif;
  content: "\”";
}
blockquote p {
  display: inline;
  font-size: 20px;
}

/***** Password Status *****/
.password-confirm-message .error {
  color: red;
}
.password-confirm-message .ok {
  color: green;
}

/***** Breadcrumbs *****/
.breadcrumb {
  align-items: center;
  /* margin-top: 50px;
  margin-bottom: 30px; */
}
.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item.active {
  font-size: 14px;
  color: #a4a8a8;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\203A";
  color: #a4a8a8;
}

/***** Pagination *****/
.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 0;
}
.page-item .page-link {
  color: #a4a8a8;
  border-color: #a4a8a8;
  text-align: center;
  padding: 0;
}
.pagination-primary .page-item.active .page-link {
  background-color: var(--s-primary);
  border-color: var(--s-primary);
  color: var(--s-dark);
}
.pagination-secondary .page-item.active .page-link {
  background-color: var(--s-secondary);
  border-color: var(--s-secondary);
  color: var(--s-dark);
}

/***** Helpers *****/
.overflow-lock {
  overflow: hidden;
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
}
hr.divider {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 20px 0;
  background-color: currentColor;
}
.cursor-pointer {
  cursor: pointer;
}

/***** Scroll Bars *****/
/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(60, 60, 60, 0.2);
  width: 4px;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
  border-radius: 4px;
}

/***** Containers *****/
.container-sm {
  max-width: 565px;
}
.container-md {
  max-width: 620px;
}
.container-faq {
  max-width: 780px;
  margin: 0 auto;
}

/***** Background Colors *****/
.bg-site-primary {
  background-color: var(--s-primary);
}
.bg-site-primary-10 {
  background-color: var(--s-primary-10);
}
.bg-site-primary-light {
  background-color: var(--s-primary-light);
}
.bg-site-secondary {
  background-color: var(--s-secondary);
}
.bg-site-secondary-dark {
  background-color: var(--s-secondary-dark);
}

/***** Text Colors *****/
.text-site-primary {
  color: var(--s-primary);
}

/***** Buttons *****/
.btn {
  width: 150px;
  height: 50px;
  padding: 0;
  font-family: "Inter-SemiBold";
  font-size: 14px;
  border-radius: 0;
  line-height: 50px;
}
.btn:focus {
  box-shadow: none;
}
.btn.round {
  border-radius: 5px;
}
.btn-md {
  width: 250px;
}
.btn-lg {
  width: 400px;
  height: 80px;
  font-size: 24px;
}

.btn-site-primary {
  background-color: var(--s-primary);
  color: var(--s-dark);
}
.btn-site-secondary {
  background-color: var(--s-secondary);
  color: var(--s-dark);
}
.btn-site-white {
  background-color: var(--s-white);
  color: var(--s-dark);
}

.btn-close {
  background: url(../images/icons/icon-close.png) no-repeat center;
  background-size: 10px;
  opacity: 1;
}

/***** Form Elements *****/
.form-input-hldr {
  margin-bottom: 24px;
  position: relative;
}
.form-input-hldr label.error {
  color: red;
  font-size: 14px;
  display: block !important;
}
.form-input-hldr .form-radio.error {
  display: inline !important;
}
.form-label {
  font-family: "Inter-Bold";
  font-size: 14px;
  color: #000000;
  margin-bottom: 13px;
}
.form-control,
.form-select {
  height: 48px;
  font-size: 14px;
  color: #000;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
  border-radius: 0;
  padding: 0 20px;
  margin-top: 0;
}
textarea.form-control {
  padding: 20px;
  resize: none;
  height: 100px;
}
.form-control:focus {
  box-shadow: none;
  border-color: #f6f6f6;
  background-color: #f6f6f6;
}
.site-form-lg .form-control,
.site-form-lg .form-select {
  height: 60px;
  border-radius: 10px;
}
.site-form-lg textarea.form-control {
  height: 150px;
}
.form-check {
  margin-bottom: 8px;
}
.form-check-inline {
  margin-right: 40px;
  margin-bottom: 17px;
}

/* .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.15em;
  border: 2px solid rgba(0, 0, 0, 0.6);
} */
.form-check-input + label {
  padding-left: 5px;
}

.form-input-hldr .btn-check + .btn {
  width: auto;
  height: 44px;
  font-size: 16px;
  line-height: 44px;
  padding: 0 12px;
}

.form-input-hldr .secondary .btn-check + .btn {
  height: 25px;
  font-size: 14px;
  line-height: 22px;
  padding: 0 12px;
}

.view-filters + .view-empty,
.view-empty {
  font-family: "Inter-Bold";
  font-size: 26px;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
fieldset legend {
  font-family: "Inter-Bold";
  font-size: 14px;
}
.user-form .js-form-type-date {
  margin-top: 8px;
}

/***** Login Profile *****/
.login-profile-info {
  padding: 4px 8px 4px 4px;
  cursor: pointer;
}
.login-profile-info:after {
  display: none;
}
.login-profile-picture {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}
.login-profile-picture figure {
  max-width: 36px;
  max-height: 36px;
}

.login-profile-dropdown {
  width: 280px;
  background-color: #fff;
  padding: 16px 24px;
  box-shadow: 0px 6px 10px rgba(60, 60, 60, 0.1),
    0px 1px 18px rgba(60, 60, 60, 0.1), 0px 3px 5px rgba(60, 60, 60, 0.1);
  border-radius: 2px;
}
.login-profile-dropdown .btn-text {
  display: block;
}
.login-profile-dropdown .btn-text:not(:last-child) {
  margin-bottom: 16px;
}
/***** Tabs *****/
.tab-content p.body-2 {
  margin-bottom: 8px;
}
.tab-content .search-container {
  margin-bottom: 16px;
}
.tab-pane .chart-title {
  margin-top: 16px;
}

/***** Blocks *****/
.section-block h2 {
  margin-bottom: 20px;
  line-height: 40px;
}
.section-block .lessons-progress {
  margin: 10px 0 50px;
}
.section-block .pagination {
  margin-top: 50px;
}

/***** Resources *****/
.resources-block h2 {
  line-height: 40px;
  margin-bottom: 20px;
}
.resources-block .btn-site-group .btn {
  margin: 10px;
}
.resources-block .btn-site-group .btn.btn-lg {
  width: 200px;
  height: 47px;
  font-size: 14px;
}

/***** Tables *****/
th {
  font-family: "Inter-Bold";
  font-size: 18px;
}
td {
  font-size: 16px;
  border-color: #000;
}
.site-table {
  min-width: 300px;
}
.table > :not(caption) > * > * {
  padding: 15px;
  white-space: nowrap;
}
.table > tbody > tr > td:last-child {
  text-align: right;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: rgba(255, 157, 148, 0.1);
}
.table a.active {
  color: #0019ff;
}
.table a.disabled {
  color: #5c5c60;
}
.view-find-pet .site-table td {
  white-space: normal;
}
.view-find-pet .site-table td div:not(:first-child) {
  margin-top: 15px;
}

.view-reporting-pet-data .table > :not(caption) > * > * {
  white-space: normal;
}
.view-reporting-pet-data .table th {
  line-height: normal;
}
.view-reporting-pet-data .table > tbody > tr > td:last-child {
  text-align: center;
}
.text-formatted table {
  border: 1px solid #333;
  min-width: 200px;
  margin-top: 30px;
}
.text-formatted th,
.text-formatted td {
  white-space: normal;
  border: 1px solid #333;
  padding: 10px;
}
/***** Navbar *****/
.navbar-toggler {
  background-color: #f5f0e6;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler.collapsed .navbar-toggler-icon {
  background: url(../images//icons/icon-hamburger.png) no-repeat center;
  background-size: 30px;
}
.navbar-toggler .navbar-toggler-icon {
  background: url(../images//icons/icon-close.png) no-repeat center;
  background-size: 25px;
}
.nav-link {
  font-family: "Inter-Bold";
  color: var(--s-dark);
}

/***** Pet Card *****/

.pet-info {
  width: 421px;
}
.pet-info figure {
  max-width: 200px;
  max-height: 200px;
}
.pet-info h3 {
  font-family: "Inter-SemiBold";
  font-size: 30px;
  margin-left: 35px;
  margin-bottom: 18px;
}
.pet-info .pet-info-top {
  padding: 30px 35px 40px 35px;
}
.pet-info .pet-info-bottom {
  padding: 19px 35px 43px 35px;
}
.pet-info .pet-info-bottom ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.pet-info .form-label {
  font-family: "Inter-Regular";
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}
.pet-info .btn {
  margin-top: 10px;
}

.pet-card-horizontal figure img {
  object-fit: cover;
}
.pet-card-horizontal h3 {
  font-size: 30px;
  line-height: 36px;
}
.pet-card-horizontal p {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 0;
}
.pet-card-horizontal .btn-outline-dark {
  margin-top: 10px;
}

/***** Progress Bars *****/
.circular-progress {
  width: 96px;
  height: 96px;
  position: relative;
  margin-right: 24px;
}
.circular-progress .outer {
  width: 98px;
  height: 98px;
  border: 3px solid #ebeef0;
  border-radius: 50%;
  padding: 6px;
}
.circular-progress .inner {
  width: 80px;
  height: 80px;
  background-color: #294638;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circular-progress .inner p {
  font-family: "Inter-SemiBold";
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
}
.circular-progress svg {
  position: absolute;
  top: -1px;
  left: -1px;
  pointer-events: none;
}
.circular-progress circle {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 4px;
  transform: rotate(-90deg);
  transform-origin: center;
}
.line-progress {
  width: 616px;
}
.line-progress p span {
  font-size: 48px;
}
.line-progress .progress {
  border-radius: 8px;
  box-shadow: inset -1px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f0f4f6;
}
.line-progress .progress-bar {
  border-radius: 8px;
  box-shadow: inset -1px 4px 10px rgba(255, 255, 255, 0.3);
  background-color: #294638;
}
.lessons-progress.color-secondary .circular-progress .inner {
  background-color: #00d7b9;
}
.lessons-progress.color-secondary .circular-progress .inner p {
  color: #000;
}
.lessons-progress.color-secondary .line-progress .progress-bar {
  background-color: #00d7b9;
}

/***** Accordions *****/
.accordion-button {
  /* padding: 15px; */
  transition: all 0.5s;
}
.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  border: 0;
  box-shadow: none;
}
.accordion-button::after {
  background-image: none;
  content: "+";
  width: auto;
  height: auto;
  font-family: "Inter-Light";
  font-size: 22px;
  align-self: flex-start;
  margin-left: 20px;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(45deg);
}
.accordion-body p {
  font-size: 14px;
  line-height: 22px;
}
.accordion-body p:last-child {
  margin-bottom: 0;
}

/***** Modals *****/
.modal-content {
  border-radius: 0;
  border: 0;
}
.modal-header {
  border-bottom: 0;
}
.modal-body .form-inline {
  margin: 20px;
}

.modal-body .form-inline .link {
  color: #4d41df;
}
.modal-footer {
  border-top: 0;
  padding-bottom: 60px;
}
.modal-body .table-responsive {
  margin-bottom: 20px;
}
.modal-body .table-pet-details > :not(caption) > * > * {
  padding: 15px;
  border-bottom: 0;
  white-space: nowrap;
}
.modal-body .table-pet-details > :not(:first-child) {
  border-top: 0;
}
.modal-body .table-pet-details th {
  font-family: "Inter-Regular";
  font-weight: normal;
  font-size: 20px;
  color: #ff9d94;
}
.modal-body .table-pet-details > tbody > tr > td:last-child {
  text-align: left;
}

/***** Alerts *****/
.alert {
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  color: #3c3c3c;
  padding: 12px 8px 12px 16px;
  max-width: 434px;
}
.alert.alert-shadow {
  box-shadow: 0px 6px 10px rgba(60, 60, 60, 0.1),
    0px 1px 18px rgba(60, 60, 60, 0.1), 0px 3px 5px rgba(60, 60, 60, 0.1);
  border-radius: 1px;
}
.alert-success {
  background-color: #ccf7f1;
}
.alert-danger {
  background-color: #ffdcdc;
}
.alert.icon {
  padding-left: 48px;
}
.alert.icon.icon-info {
  background-image: url(../images/icons/icon-info.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left 18px center;
}
.alert.icon.icon-success {
  background-image: url(../images/icons/icon-success-blue.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left 18px center;
}
.alert.icon.icon-failed {
  background-image: url(../images/icons/icon-failed.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left 18px center;
}
.alert-fade-in {
  animation: snackbar-fade-in 0.7s;
}
.container.obesity-status-message {
  padding: 0;
}
.obesity-status-message .alert {
  padding-right: 40px;
}
.alert-dismissible .btn-close {
  padding: 15px 15px;
  background-size: 10px;
}

.growth-chart.alert {
  padding-right: 40px;
}
.growth-chart.alert button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.growth-chart-snackbar-btn {
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/icon-paw-blue.png);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.growth-chart-snackbar-btn.warning {
  background-image: url(../images/icons/icon-paw-warning.png);
}
.growth-chart-snackbar-btn.attention {
  background-image: url(../images/icons/icon-paw-attention.png);
}
.growth-chart-snackbar-btn.neutral {
  background-image: url(../images/icons/icon-paw-neutral.png);
}
.growth-chart-snackbar-btn.growth-guidance {
  background-image: url(../images/icons/icon-info.png);
  top: inherit;
  bottom: 110px;
}

@keyframes snackbar-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/***** Tabs *****/
.nav {
  justify-content: center;
}
