/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

:root {
  --color-black: 0, 0, 0;
  --color-red-100: 178, 42, 46;
  --color-red-80: 180, 91, 91;
  --color-red-60: 198, 131, 132;
  --color-red-40: 207, 152, 152;
  --color-red-20: 236, 213, 213;
  --color-red-10: 243, 232, 232;
  --color-lightRed: 242, 46, 52;
  --color-gray-100: 29, 29, 29;
  --color-gray-80: 97, 97, 97;
  --color-gray-60: 142, 142, 142;
  --color-gray-40: 187, 187, 187;
  --color-gray-20: 239, 239, 239;
  --color-gray-10: 224, 224, 224;
  --color-gray: 181, 181, 181;
  --color-orange: 242, 144, 27;
  --color-darkOrange: 228, 159, 94;
  --color-lightOrange: 255, 232, 210;
  --color-blue: 12, 81, 220;
  --color-tiffany: 1, 172, 215;
  --color-lightBlue: 99, 158, 246;
  --color-tosca: 29, 195, 186;
  --color-darkTosca: 106, 171, 151;
  --color-lightTosca: 224, 245, 239;
  --color-green: 44, 150, 33;
  --color-yellow: 255, 172, 51;
  --color-white: 255, 255, 255;
}

html {
  color: rgb(var(--color-gray-100));
  font-size: 16px;
  line-height: 1.4;
}

::-moz-selection {
  background: #babeff;
  text-shadow: none;
}

::selection {
  background: #babeff;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #a8a8a8;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-red-100));
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: rgb(var(--color-red-80));
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #FAFAFA;
  color: rgb(var(--color-gray-100));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */
h1 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 800;
}

h2 {
  font-size: 32px;
  line-height: 40px;
  font-family: 'Caveat';
}

h3 {
  font-size: 32px;
  line-height: 32px;
}

h6 {
  font-size: 24px;
  line-height: 36px;
}

.text-base {
  font-size: 16px;
  line-height: 28px;
}

.text-md {
  font-size: 18px;
  line-height: 24px;
}

.text-sm {
  font-size: 14px;
  line-height: 24px;
}

.text-xs {
  font-size: 12px;
  line-height: 18px;
}

.text-xxs {
  font-size: 10px;
  line-height: 14px;
}

.text-lg {
  font-size: 20px;
  line-height: 30px;
}

.text-xl {
  font-size: 22px;
  line-height: 30px;
}

/* ========== Colors ========== */

.color-black {
  color: rgb(var(--color-black));
}

.color-gray-100 {
  color: rgb(var(--color-gray-100));
}

.color-gray-80 {
  color: rgb(var(--color-gray-80));
}

.color-gray-60 {
  color: rgb(var(--color-gray-60));
}

.color-gray-40 {
  color: rgb(var(--color-gray-40));
}

.color-gray-20 {
  color: rgb(var(--color-gray-20));
}

.color-gray-10 {
  color: rgb(var(--color-gray-10));
}

.color-red-100 {
  color: rgb(var(--color-red-100));
}

.color-red-80 {
  color: rgb(var(--color-red-80));
}

.color-red-60 {
  color: rgb(var(--color-red-60));
}

.color-red-40 {
  color: rgb(var(--color-red-40));
}

.color-red-20 {
  color: rgb(var(--color-red-20));
}

.color-lightRed {
  color: rgb(var(--color-lightRed));
}

.color-orange {
  color: rgb(var(--color-orange));
}

.color-darkOrange {
  color: rgb(var(--color-darkOrange));
}

.color-tosca {
  color: rgb(var(--color-tosca));
}

.color-darkTosca {
  color: rgb(var(--color-darkTosca));
}

.color-white {
  color: rgb(var(--color-white));
}

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

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

.color-tiffany {
  color: rgb(var(--color-tiffany));
}

.color-lightBlue {
  color: rgb(var(--color-lightBlue));
}

.color-yellow {
  color: rgb(var(--color-yellow));
}

.bg-red-10 {
  background-color: rgb(var(--color-red-10));
}

.bg-red-100 {
  background-color: rgb(var(--color-red-100));
}

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

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

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

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

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

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

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

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

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

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

.dashed {
  border-style: dashed;
}


/* ========== Forms & Input ========== */

.form-control,
.form-select {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-gray-100));
  background-color: rgb(var(--color-white));
  background-clip: padding-box;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
}

.auth .form-control {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-gray-100));
  background-color: rgb(var(--color-white));
  background-clip: padding-box;
  border: 1px solid rgb(var(--color-gray-10));
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-gray-100));
  background-color: rgb(var(--color-white));
  border-color: rgb(var(--color-red-100));
  outline: 0;
  box-shadow: none;
}

.form-select {
  background-image: none;
}

.form-control::-moz-placeholder {
  color: rgb(var(--color-gray-40));
}

.form-control::placeholder {
  color: rgb(var(--color-gray-40));
}

.form-check-input:checked {
  background-color: rgb(var(--color-red-100));
  border-color: rgb(var(--color-red-100));
}

.form-check-input:focus {
  border-color: rgb(var(--color-red-100));
  outline: 0;
  box-shadow: none;
}

.form-search .form-control {
  padding-left: 45px;
}

.form-search::before {
  content: "\e91d";
  font-family: 'icomoon';
  position: absolute;
  left: 15px;
  top: 10px;
  color: rgb(var(--color-gray-60));
  font-size: 16px;
}

.form-control:read-only {
  background-color: rgb(var(--color-gray-20));
  border-color: rgb(var(--color-gray-20));
  color: rgb(var(--color-gray-80));
}

.form-control.input-number {
  padding: 0;
  width: 35px;
  border: 0;
  font-weight: 600;
  text-align: center;
  font-size: 12px;
}

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

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

.icn-right::after{
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  color: rgb(var(--color-red-100));
}

.icn-right.chevron::after {
  font-family: 'icomoon';
  content: "\e901";
  font-size: 16px;
}

.icn-right.calendar::after {
  content: "\e900";
  font-family: 'icomoon';
}

.icn-right.clock::after {
  content: "\e905";
  font-family: 'icomoon';
}

/* ========== Button ========== */

.btn {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  border: 0;
}

.btn:focus,
.btn:hover {
  outline: 0;
  box-shadow: none;
  border: transparent;
}

.btn-check:active+.btn:focus,
.btn-check:checked+.btn:focus,
.btn.active:focus,
.btn.show:focus,
.btn:active:focus {
  box-shadow: none;
}

.btn-eye {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
  color: rgb(var(--color-red-100));
}

.btn-eye::before {
  content: "\e90f";
  font-family: 'icomoon';
}

.btn-eye.switch::before {
  content: "\e910";
  font-family: 'icomoon';
}

.btn-primary {
  color: #fff;
  background-color: rgb(var(--color-red-100));
  border: 1px solid rgb(var(--color-red-100));
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background-color: rgb(var(--color-red-80));
  border: 1px solid rgb(var(--color-red-80));
}

.btn-border-primary {
  color: rgb(var(--color-red-100));
  background-color: transparent;
  border: 1px solid rgb(var(--color-red-100));
}

.btn-border-primary:hover,
.btn-border-primary:focus {
  color: #fff;
  background-color: rgb(var(--color-red-100));
  border: 1px solid rgb(var(--color-red-100));
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: rgb(var(--color-gray-80));
  border-color: rgb(var(--color-gray-80));
}

.btn-secondary {
  color: rgb(var(--color-gray-60));
  background-color: rgb(var(--color-gray-20));
  border: 1px solid rgb(var(--color-gray-20));
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-gray-40));
  border: 1px solid rgb(var(--color-gray-40));
}

.btn-secondary-40 {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-gray-40));
  border: 1px solid rgb(var(--color-gray-40));
}

.btn-secondary-40:hover,
.btn-secondary-40:focus {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-gray-60));
  border: 1px solid rgb(var(--color-gray-60));
}

.btn-border {
  color: rgb(var(--color-red-100));
  background-color: transparent;
  border: 1px dashed rgb(var(--color-red-100));
}

.btn-border:hover,
.btn-border:focus {
  color: #fff;
  background-color: rgb(var(--color-red-100));
  border: 1px solid rgb(var(--color-red-100));
}

.btn-border-secondary {
  color: rgb(var(--color-gray-60));
  background-color: transparent;
  border: 1px solid rgb(var(--color-gray-60));
}

.btn-border-secondary:hover,
.btn-border-secondary:focus {
  color: #fff;
  background-color: rgb(var(--color-gray-60));
  border: 1px solid rgb(var(--color-gray-60));
}

.btn-toggle {
  background: transparent;
  border-radius: 4px;
  padding: 0;
  font-size: 22px;
  color: rgb(var(--color-white));
}

.btn-toggle:hover {
  color: rgb(var(--color-red-100));
}


/* ========== Booking Content ========== */
.hero {
  height: 580px;
  width: 100%;
  background-image: url(../img/bg-booking.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

.header-booking {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.shadow-header {
  box-shadow: 0px 4px 10px rgba(66, 66, 66, 0.04);
}

.logo-booking img {
  max-height: 56px;
}

.main-menu {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.main-menu li {
  margin-left: 30px;
}

.main-menu li a {
  color: rgb(var(--color-white));
  position: relative;
}

.main-menu.invert li a {
  color: rgb(var(--color-gray-80));
  position: relative;
}

.main-menu li a::after {
  content: "";
  display: block;
  margin-top: 5px;
  width: 0;
  height: 2px;
  background: rgb(var(--color-white));
  transition: width 0.3s;
}

.main-menu.invert li a::after {
  background: rgb(var(--color-red-100));
}

.main-menu li a:hover::after {
  width: 100%;
}

.menu-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-toggle {
  display: none;
}

.cap-hero {
  padding: 80px 0;
  text-align: center;
}

.box-white {
  background: rgb(var(--color-white)) !important;
}

.bg-pay {
  background-image: url(../img/bg-payment.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  background-color: #fff;
}

.shadow {
  box-shadow: 0px 4px 16px 4px rgba(224, 224, 224, 0.24) !important;
}

.main-content {
  position: relative;
  margin-top: -230px;
  z-index: 1;
  margin-bottom: 80px;
}

.p-60 {
  padding: 60px;
}

.step {
  width: 120px;
  height: 3px;
  background-color: rgb(var(--color-gray-60));
}

.step.current {
  background-color: rgb(var(--color-red-100));
}

.treatment {
  width: 48px;
  height: 48px;
  overflow: hidden;
  object-fit: cover;
  border-radius: 10px;
}

.treatment-choice label {
  background-color: #FFFFFF;
  border: 1px solid #F7F7F7;
  border-radius: 12px;
  display: block;
  padding: 20px 15px;
  position: relative;
}

.treatment-choice label::after {
  content: "\e90d";
  font-family: 'icomoon';
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  color: rgb(var(--color-red-100));
  font-size: 25px;
  z-index: 1;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}

.treatment-choice input:checked+label {
  border: 1px solid rgb(var(--color-red-100));
}

.treatment-choice input:checked+label::after {
  content: "\e90a";
  color: rgb(var(--color-gray-60));
}

.info {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.info li {
  font-size: 14px;
  color: rgb(var(--color-gray-80));
  font-weight: 500;
  margin-right: 10px;
}

.info li::after {
  content: '|';
  display: inline-block;
  margin-left: 10px;
  color: #E9E9E9;
}

.info li:last-child::after {
  display: none;
}

.deco {
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

.deco-1 {
  background-image: url(../img/deco-1.png);
}

.deco-2 {
  background-image: url(../img/deco-2.png);
}

.deco-3 {
  background-image: url(../img/deco-3.png);
}

.deco-4 {
  background-image: url(../img/deco-4.png);
}

.box-border {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  padding: 40px;
}

.footer {
  background: #F5F5F5;
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

.social {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.social li {
  margin-right: 5px;
}

.social li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(var(--color-red-100));
}

.social li a:hover {
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-red-100));
  background-color: rgb(var(--color-red-100));
}

.link-bottom {
  list-style: none;
  padding-left: 0;
}

.link-bottom li {
  margin-bottom: 5px;
}

.link-bottom li a {
  font-size: 14px;
  color: rgb(var(--color-gray-80));
}

.link-bottom li a:hover {
  color: rgb(var(--color-red-100));
}

.responsive-map-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.responsive-map-container iframe,
.responsive-map-container object,
.responsive-map-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-bottom {
  border-top: 1px solid #CF9898;
  padding: 24px 0;
}

.bank-choose {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgb(var(--color-gray-20));
  position: relative;
}

.bank-choose::after {
  content: "\e903";
  font-family: 'icomoon';
  color: rgb(var(--color-gray-40));
}

/* ========== Scroll ========== */
.scroll-notif {
  height: calc(100vh - 30vh);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
}

.table-responsive {
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
}

.scroll-notif::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.scroll-notif::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.scroll-notif::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* ========== Popup ========== */
.overlay,
.overlay-popup {
  background-color: rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 321;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: all 100ms ease-in-out;
}

.overlay {
  z-index: 121;
}

.overlay.show,
.overlay-popup.show {
  visibility: visible;
  opacity: 1;
}

.box-xs {
  max-width: 360px;
  width: 100%;
}

.box-sm {
  max-width: 430px;
  width: 100%;
}

.box-md {
  max-width: 530px;
  width: 100%;
}

.box-lg {
  max-width: 720px;
  width: 100%;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

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

.text-hidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cursor-pointer {
  cursor: pointer;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-italic {
  font-style: italic;
}

.ls-1 {
  letter-spacing: 1px;
}

.transition-all {
  transition: all 100ms ease-in-out;
}

.no-border {
  border: 0;
}

.mw-0 {
  min-width: 0;
}

.mh-1 {
  min-height: 180px;
}

.rounded-2 {
  border-radius: 2px;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-10 {
  border-radius: 10px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-20 {
  border-radius: 20px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-50 {
  border-radius: 50px;
}

.p-16 {
  padding: 16px;
}

.p-24 {
  padding: 24px;
}

.border-left {
  border-left: 1px solid rgb(var(--color-gray-60)) !important;
}

.border-right {
  border-right: 1px solid rgb(var(--color-gray-20)) !important;
}

.border-grey-60 {
  border: 1px solid rgb(var(--color-gray-60));
}

.border-color-gray-60 {
  border-color: rgb(var(--color-gray-60));
}

.border-color-gray-40 {
  border-color: rgb(var(--color-gray-40));
}

.border-color-gray-20 {
  border-color: rgb(var(--color-gray-20));
}

.hover-gray:hover {
  background-color: #F6F6F6 !important;
}

.border-color-gray {
  border-color: #F6F6F6;
}

.border-1 {
  border-width: 1px !important;
}

.border-solid {
  border-style: solid;
}

.border-red {
  border: 1px solid rgb(var(--color-red-100));
}

.border-dash {
  border-style: dashed;
}

.mh-0 {
  min-height: 0;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */
@media (min-width: 1501px) {}

@media (max-width: 1500px) {}

@media (min-width: 1280px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px;
  }
}

@media (max-width: 1024px) {

  #hide-t,
  #hide-top {
    display: none;
  }

}

@media (max-width: 991px) {
  #hide-tm {
    display: none;
  }

  .step {
    width: 50px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .p-60 {
    padding: 24px;
  }

  .main-content {
    position: relative;
    margin-top: -180px;
    z-index: 1;
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-right: 15px;
    padding-left: 15px;
  }

  #hide-tm {
    display: block;
  }

  .btn-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border: 1px solid rgb(var(--color-white));
  }

  .invert .btn-toggle {
    border: 1px solid rgb(var(--color-red-100));
    color: rgb(var(--color-red-100));
  }

  .btn-toggle:hover {
    border: 1px solid rgb(var(--color-white));
    background-color: rgb(var(--color-white));
  }

  .menu {
    position: fixed;
    width: 250px;
    top: 0;
    bottom: 0;
    z-index: 99;
    right: -100%;
    background-color: rgb(var(--color-white));
    height: 100%;
    transition: all 150ms ease-in-out;
  }

  .menu.show {
    right: 0;
    box-shadow: -4px 2px 11px -2px rgba(0, 0, 0, 0.28);
    -webkit-box-shadow: -4px 2px 11px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -4px 2px 11px -2px rgba(0, 0, 0, 0.28);
  }

  .main-menu {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .main-menu li {
    width: 100%;
    margin-bottom: 10px;
  }

  .main-menu li a {
    color: rgb(var(--color-gray-80));
    display: inline-block;
  }

  .main-menu li a::after {
    background: rgb(var(--color-red-100));
  }

  .p-60,
  .box-border {
    padding: 20px;
  }

  .treatment-choice label {
    padding: 15px 15px;
  }

  .info li {
    font-size: 12px;
  }

  h1 {
    font-size: 27px;
    line-height: 32px;
    font-weight: 700;
  }

  h2 {
    font-size: 24px;
    line-height: 16px;
    font-family: 'Caveat';
  }

  .text-center-m {
    text-align: center;
  }

  #step.justify-content-end {
    justify-content: center !important;
  }

  .treatment-choice {
    padding-right: 5px;
  }

  .cap-hero {
    padding: 40px 0;
    text-align: center;
  }

  .main-content {
    margin-top: -280px;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .responsive-map-container {
    height: 250px;
  }

  .copy {
    width: 100%;
    text-align: center;
  }

  .info.bottom {
    justify-content: center;
    margin-top: 15px;
    width: 100%;
  }
}


@media (min-width: 1025px) {
  #hide-d {
    display: none;
  }
}

@media (min-width: 768px) {
  #menu-header {
    display: none !important;
  }

}

@media (max-width: 992px) and (orientation: landscape) {


  @media (min-width: 576px) {

    .container,
    .container-sm {
      max-width: 720px;
    }
  }
}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}