/*Header */
.header {
  width: 100%;
  height: 5rem;
  background-color: #eee;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 0rem;
  z-index: 10;
  transition: 0.4s;
}

.header-title {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: center;
  font-family: var(--main-fontfamily);
  margin-top: 1rem;
  color: var(--card-bg);
}

.menu-icon {
  margin-top: 1.5rem;
  cursor: pointer;
}

.line {
  height: 0.2rem;
  width: 2.5rem;
  background-color: var(--card-bg);
  margin-bottom: 0.6rem;
}

.line-1,
.line-3 {
  width: 1.8rem;
  transition: all 0.4s;
}

.menu-icon:hover .line {
  width: 2.5rem;
}
/*End of Header */

/*shopping cart icons*/
.header-cart {
  font-size: 2rem;
  transition: color 0.3s;
  margin-right: 1.5rem;
  margin-top: 1.1rem;
  color: var(--card-bg);
  cursor: pointer;
}

.header-cart:hover {
  /*color: #deaa86;*/
}

.badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}

.label-warning[href],
.badge-warning[href] {
  background-color: var(--button-bg);
}
#lblCartCount {
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  padding: 0 5px;
  vertical-align: top;
  margin-left: -10px;
  display: none;
  background: var(--button-bg);
  color: var(--button-color);
}
/*end of shopping cart icons*/

.main-header-right {
  display: flex;
}

.navigation {
  position: fixed;
  top: -32rem;
  width: 100%;
  top: 5rem;
  height: 2rem;
  background: #eee;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 5;
  transition: top 0.8s cubic-bezier(1, 0, 0, 1);
  font-size: 18px;
  color: var(--card-bg);
  padding-top: 0.6rem;
  padding-bottom: 1.1rem;
}

.navigation-left {
  margin-left: 5rem;
  font-size: 14px;
}
.navigation-right {
  display: flex;
  justify-content: space-around;
  font-size: 14px;
  margin-right: 5rem;
}

.checkbox:checked ~ .navigation {
  top: 5rem;
}

.checkbox:checked ~ .header .line-1 {
  transform: rotate(-405deg) translate(-5px, 6px);
  width: 2.5rem;
}

.checkbox:checked ~ .header .line-2 {
  opacity: 0;
}

.checkbox:checked ~ .header .line-3 {
  transform: rotate(405deg) translate(-5px, -6px);
  width: 2.5rem;
}

.social-icons-list {
  list-style: none;
  padding: 0;
  height: 2rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.social-link {
  font-size: 12px;
  color: #777;
  transition: color 0.3s;
  padding-left: 10px;
  padding-right: 10px;
}

.social-link:hover {
  color: #deaa86;
}

.login {
}
.main-header-account {
  display: none;
}

.login-panel {
  font-size: 1.3rem;
  position: fixed;
  width: 90%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 999999;
  transition: left 0.8s cubic-bezier(1, 0, 0, 1);
  top: 7rem;
  pointer-events: all;
  left: -1000px;
  height: 86%;
  box-shadow: 5rem 1.5rem 6rem rgba(0, 0, 0, 0.2);
  background: var(--customerfolder-bg);
  border: thin solid var(--button-bg);
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url(../../img/login-bg6.jpg) center no-repeat;*/
  background-size: cover;
  /*display: none;*/
}

.login-panel-header {
  display: flex;
  justify-content: flex-end;
  font-size: 2rem;
  color: var(--maintitle-color);
}

#login-panel-header-x {
  color: var(--maintitle-color);
  cursor: pointer;
}
.login-panel-wrapper {
  margin-top: 5rem;
  width: 90%;
  height: 400px;
  top: 30%;
  left: 50%;
  padding: 20px 30px;
  box-shadow: 18px 8px 50px rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
}

.login-panel-wrapper h1 {
  margin: 0;
  padding: 0;
  font-family: var(--main-fontfamily);
  font-weight: 300;
  font-size: 22px;
  color: var(--maintitle-color);
  text-align: center;
  margin-bottom: 8%;
  letter-spacing: 5px;
}
.login-panel-wrapper input {
  width: 100%;
  margin-bottom: 20px;
}

.bottom-text {
  color: #fff;
  padding-top: 5px;
  display: flex;
  justify-content: flex-end;
}

.bottom-text a {
  text-decoration: none;
  color: var(--light);
  font-size: 1rem;
  cursor: pointer;
}
.register-here {
  margin-top: 3rem;
}

.register-here p {
  color: var(--light);
}
.login-button {
  width: 12rem;
  margin: 1rem;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  animation: anim 1s 1s backwards;
  background: var(--button-bg);
  color: var(--button-color);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.register-here {
  color: var(--paragraph-color);
  font-size: 1rem;
}
.register-here button {
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  border: solid thin;
  outline: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  color: var(--paragraph-color);
  margin-top: 5px;
}

#not-authenticated-message {
  visibility: hidden;
  padding-top: 10px;
  text-align: center;
  color: red;
  font-weight: bold;
}

.language-panel {
  position: fixed;
  /*top: -32rem;*/
  top: 7rem;
  width: 100%;
  height: 3rem;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  z-index: 5;
  transition: right 0.8s cubic-bezier(1, 0, 0, 1);
  font-size: 14px;
  color: var(--card-bg);
  padding-top: 0.6rem;
  padding-bottom: 1.1rem;
  background: #eee;
}

.language-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  list-style: none;
}

.language-list li {
  padding-left: 10px;
  cursor: pointer;
}

.navigation-right {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

/*footer */
#main-footer {
  position: fixed;
  font-size: 2rem;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ddd;
  color: #555;
  text-align: center;
  height: 4rem;
  display: flex;
  justify-content: space-around;
  padding-top: 0rem;
  color: var(--card-bg);
  z-index: 10000;
}

#main-footer ul {
  list-style: none;
  cursor: pointer;
}
#main-footer ul li:nth-child(2) {
  font-size: 1rem;
}
.fas:hover {
  color: #deaa86;
}

.footer-item.active {
  color: var(--cardtoolbar-bg);
  background: rgba(0, 0, 0, 0.1);
}
/*end of footer */

:root {
  --main-fontfamily: "Montserrat", sans-serif;
  --second-fontfamily: "Josefin Sans", sans-serif;

  --card-boxshadow: 1rem 3rem 3rem rgba(0, 0, 0, 0.7);

  --white: #ffffff;
  --light: #f0eff3;
  --black: #000000;
  --dark-blue: #1f2029;
  --dark-light: #353746;
  --red: #da2c4d;
  --yellow: #f8ab37;
  --grey: #ecedf3;
  --container-bg: #eee;
  --card-bg: #182442;

  --button-bg: rgb(156, 138, 100);
  --button-bg: linear-gradient(to left, #585245, #9c8a64);
  --button-color: #faefc2;
  --cardtoolbar-bg: rgb(156, 138, 100);
  --cardtoolbar-bg-cmyk: #9c8a64;
  --paragraph-color: #a29b8a;
  --availabilitypanel-bg: #2e374e;
  --customerfolder-bg: #1c3d59;
  --maintitle-color: #dbc38d;
  --maintitle-rgbcolor: rgb(219, 195, 141);
  --calendar-notcurmonth: #594e4e;
  --calendar--selectedday: rgba(156, 138, 100, 0.75);
  --input-bg: rgba(0, 0, 0, 0.1);
  --toTop-bg: rgba(219, 195, 141, 0.6);
}

::selection {
  color: var(--white);
  background-color: var(--black);
}
::-moz-selection {
  color: var(--white);
  background-color: var(--black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--main-fontfamily);
}

.container {
  background-color: var(--container-bg);
}

/* Scroll top button */
#toTop {
  position: fixed;
  right: 25px;
  bottom: -50px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
  border-radius: 50%;
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  cursor: pointer;
  transition: all 1s;
  background-color: var(--toTop-bg);
  color: var(--card-bg);
}

#toTop:hover {
  /*background-color: #fc5b62;
  color: var(--maintitle-color);
  background-color: var(--card-bg);*/
}
/* end toTop */

/* loader */
#loader {
  /*position: absolute;
  left: 50%;
  top: 50%;*/
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;

  z-index: 5;
  width: 150px;
  height: 150px;
  /*margin: -25px 0 0 -25px;*/
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #054068;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*end of loader */

/* Overlay */
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: pointer;
}

/*end of Overlay */
/* Underline */
.small-underline {
  width: 9rem;
  height: 0.1rem;
  margin: 0 auto 1rem auto;
  background-color: #b85d1c;
  display: none;
}
.big-underline {
  width: 20rem;
  height: 0.1rem;
  margin: auto;
  background-color: #b85d1c;
}
.fullwidth-underline {
  width: 100%;
  height: 0.02rem;
  margin: auto;
  /*background-color: #b85d1c;*/
  background-color: #4b3e35;
  background-color: var(--button-bg);
}
/* End of Underline */

.error-message {
  color: var(--red);
  font-size: 1.7rem;
  padding-top: 2rem;
}
.error-input {
  border-color: var(--red);
}

::-webkit-scrollbar {
  width: 5px;
}

/* treatments */
.rooms {
  padding-top: 5rem;
  margin: auto;
}

.rooms-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.room-card {
  width: 95%;
  max-width: 60rem;
  max-height: 85rem;
  height: 80rem;
  margin: 2rem 2rem;
  box-shadow: var(--card-boxshadow);
  position: relative;
  border-radius: 1rem;
  transition: transform 0.5s;
  background: var(--card-bg);
  background: linear-gradient(to bottom, var(--customerfolder-bg), var(--card-bg));
  background: linear-gradient(to bottom, rgb(0, 85, 135), var(--card-bg));
}

/* .room-card:hover {
  transform: scale(1.005);
} */

.room-card:last-child {
  margin-bottom: 5rem;
}
.room-card-header {
  height: 10%;
  max-height: 70px;
  padding: 0;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.room-card-title {
  margin: 0;
  font-size: 25px;
  font-weight: 300;
  color: var(--maintitle-color);
  text-align: center;
  padding: 5px 0;
  overflow: hidden;
  height: 100%;
}

.room-card-content {
  height: 82%;
}

.room-card-content-page1 {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.room-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: opacity(0.7);
  clip-path: polygon(0% 0, 100% 0, 100% 76%, 0% 100%);
}

.room-card-content-page1-description {
  display: block;
  margin-bottom: 5rem;
  flex-grow: 3;
  overflow-y: auto;
}

.room-card-paragraph {
  height: 100%;
  padding: 0 1rem;
  display: block;
  text-align: center;
  font-family: var(--second-fontfamily);
  font-size: 2.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paragraph-color);
}

.room-card-content-page1-info {
  display: flex;
  justify-content: space-between;
  color: var(--maintitle-color);
}

.treatment-duration {
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  margin: 0 1rem;
}

.room-price {
  font-size: 2rem;
  font-weight: 300;
  text-align: right;
  margin: 0 1rem;
}

.room-card-toolbar {
  height: 8%;
  max-height: 5.5rem;
  width: 100%;
  font-size: 13px;
  text-align: center;
  height: 4rem;
  padding-top: 0rem;
  background: var(--cardtoolbar-bg);
  color: var(--card-bg);
}

.room-card-toolbar-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  width: 100%;
}
.room-card-toolbar-wrapper ul {
  list-style: none;
}

.room-card-toolbar-item {
  cursor: pointer;
}
.room-card-toolbar-item.active {
  border-bottom: thin solid;
}

.trt-actions {
  position: absolute;
  left: 45%;
  top: 90%;
  z-index: 0;
  width: 46px;
  height: 46px;
  opacity: 1;
  border-radius: 50%;
  text-align: center;
  font-size: 4rem;
  color: var(--maintitle-color);
  cursor: pointer;
  padding-top: 0.5rem;
  transform: rotate(-20deg);
  transition: opacity 1s ease-in-out 1s;
  animation: hand 3s infinite;
}

.trt-actions.invisible {
  /*visibility: hidden;*/
  opacity: 0;
}
.trt-actions.visible {
  /*visibility: visible;*/
  /* top: 90%;*/
  opacity: 1;
}

@keyframes hand {
  50% {
    transform: rotate(+20deg);
  }
}

/*.room-card-btn {
  padding: 1.5rem 1rem;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #b85d1c;
  background-color: transparent;
  border: 0.1rem solid #b85d1c;
  border-radius: 10rem;
  outline: none;
  cursor: pointer;
}*/

.room-card-content-page2 {
  height: 100%;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
}
/* end of rooms*/
/* room-card page 3*/
.room-card-content-page3-wrapper {
  width: 90%;
  margin: auto;
}
.appointment-info {
  display: flex;
  font-size: 1.3rem;
  font-weight: 300;
  justify-content: space-between;
  /*  width: 300px;*/
  align-items: center;
  margin: auto;
  margin-top: 15px;
  padding: 1rem;
  background-color: var(--availabilitypanel-bg);
  font-family: var(--second-fontfamily);
  color: var(--paragraph-color);
  outline: none;
  border: 0.1rem solid var(--paragraph-color);
  border-radius: 10rem;
  transition: background-color 0.3s;
  flex-direction: row;
}

.appointment-info ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.appointment-info ul li:first-child {
  color: var(--maintitle-color);
  padding-bottom: 0.3rem;
}

.room-card-content-page3 {
  height: 100%;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  width: 90%;
  margin: auto;
}

.room-card-content-page3-wrapper form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.addtocart-input {
  /* width: 300px;*/
  width: 100%;
  margin: 1.3px 0;
  padding: 12px 20px;
  font-size: 20px;
  letter-spacing: 0.1rem;
  outline: none;
  border: 0.1rem solid var(--paragraph-color);
  border-radius: 10rem;
  transition: background-color 0.3s;
  color: var(--maintitle-color);
  background: var(--input-bg);
  font-family: var(--second-fontfamily);
}

.addtocart-input:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

.page3-available-slots {
  font-size: 1.3rem;
  padding: 0 0 0.5rem 1.5rem;
  color: var(--paragraph-color);
}
.addtocart-input-qty {
  /* width: 300px;*/
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  outline: none;
  border-radius: 10rem;
  transition: background-color 0.3s;
  position: relative;
  text-align: center;
  pointer-events: none;
  border: 0.1rem solid var(--paragraph-color);
  background: var(--input-bg);
  font-family: var(--second-fontfamily);
  color: var(--maintitle-color);
}

.addtocart-input-qty-minus {
  position: relative;
}
.addtocart-input-qty-minus .fa-minus {
  position: absolute;
  width: 2.5rem;
  padding: 1.7rem 2.5rem;
  padding-right: 2.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  outline: none;
  border-radius: 10rem;
  text-align: center;
  z-index: 3;
  background-color: var(--input-bg);
  border: 0.1rem solid var(--paragraph-color);
  color: var(--maintitle-color);
}
.addtocart-input-qty-plus {
  position: relative;
}
.addtocart-input-qty-plus .fa-plus,
.addtocart-input-qty-plus .fa-chevron-down {
  position: absolute;
  right: 0;
  width: 2.5rem;
  padding: 1.7rem 2.5rem;
  padding-right: 2.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  outline: none;
  border-left: 0.1rem solid #555;
  border-radius: 10rem;
  color: var(--maintitle-color);
  background-color: var(--input-bg);
  border: 0.1rem solid var(--paragraph-color);
  color: var(--maintitle-color);
}

.quickRegistrationSignIn {
  color: var(--paragraph-color);
  padding-top: 10px;
  padding-bottom: 0px;
  font-size: 14px;
  cursor: pointer;
  padding-left: 10px;
}
.quickRegistrationSignIn span {
  color: var(--light);
  cursor: pointer;
  border-bottom: solid thin;
}
.form-control {
  padding-top: 5px;
  width: 100%;
}

.btn-actions {
  display: flex;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: 3rem;
  width: 100%;
}
.addtocart-btn {
  /* width: 12rem; */
  width: 100%;

  margin: 1rem;

  padding: 2rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border: none;
  border-radius: 10rem;
  outline: none;
  cursor: pointer;
  animation: anim 1s 1s backwards;
  background: var(--button-bg);
  color: var(--white);
}

.addtocart-btn:hover {
  background: linear-gradient(to left, rgb(99, 90, 41), rgb(84, 72, 43));
}

.addtocart-btn:active {
  transform: translateY(0.2rem);
}

@keyframes anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.quickRegistrationBookForAnother-container {
  display: block;
  position: relative;
  padding-left: 10px;
  margin-bottom: 7px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--paragraph-color);
  width: 210px;
  margin-top: 10px;
}

.quickRegistrationBookForAnother {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  background-color: var(--input-bg);
  border: 0.1rem solid var(--paragraph-color);
  margin-top: 10px;
}

.quickRegistrationBookForAnother-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.quickRegistrationBookForAnother-container input:checked ~ .checkmark {
  background-color: var(--input-bg);
  border: 0.1rem solid var(--paragraph-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.quickRegistrationBookForAnother-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.quickRegistrationBookForAnother-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-control-dropdown {
  position: relative;
  display: inline-block;
}

.existing-customer-dropdown-content {
  display: block;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 10px;
  width: 80%;
  background-color: #7e838d;
}
.existing-customer-dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 12px;
}

.existing-customer-dropdown-content a:hover {
  background-color: #ddd;
}

/* end of room-card page3 */

@media (max-width: 1110px) {
  .room-card {
    height: 123rem;
  }
}

@media (max-width: 1080px) {
  .room-card {
    height: 120rem;
  }
}

@media (max-width: 980px) {
  .room-card {
    height: 118rem;
  }
}

@media (max-width: 950px) {
  .room-card {
    height: 115rem;
  }
}

@media (max-width: 920px) {
  .room-card {
    height: 113rem;
  }
}

@media (max-width: 900px) {
  .room-card {
    height: 110rem;
  }
}

@media (max-width: 800px) {
  .room-card {
    height: 105rem;
  }
}

@media (max-width: 700px) {
  .room-card {
    height: 98rem;
  }
}

@media (max-width: 639px) {
  .day-cell * {
    font-size: 12px;
  }

  .week-days > div {
    font-size: 12px;
  }

  .day-cell {
    padding: 16px 0;
  }
  .room-card {
    height: 93rem;
  }
}

@media (max-width: 600px) {
  .room-card {
    height: 91rem;
  }
}

@media (max-width: 510px) {
  .room-card {
    height: 87rem;
  }
}

@media (max-width: 490px) {
  .room-card {
    height: 85rem;
  }
}

@media (max-width: 439px) {
  .day-cell * {
    font-size: 8px;
  }

  .day-cell .day-date {
    font-size: 12px;
  }

  .day-cell {
    padding: 15px 0;
  }
  .room-card {
    height: 83rem;
  }
}

@media (max-width: 420) {
  .room-card {
    height: 85rem;
  }
}

@media (max-width: 415) {
  .room-card {
    height: 100rem;
  }
}

@media (max-width: 410px) {
  .room-card {
    height: 83rem;
  }
}

@media (max-width: 405px) {
  .room-card {
    height: 70rem;
  }
  .day-cell .day-date {
    font-size: 1.1rem;
  }
  .day-cell {
    padding: 1.2rem;
  }
  .monthname {
    font-size: 2rem;
  }
  .room-card-paragraph {
    height: 100%;
  }
}

@media (max-width: 360px) {
  .room-card {
    height: 70rem;
  }
}

/*calendar */
.calendar {
  margin-top: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.monthname {
  display: inline-block;
  max-width: 100%;
  padding: 0 2rem 0.5rem 2rem;
  font-weight: 300;
  font-size: 2.3rem;
  margin: 0;
  color: var(--maintitle-color);
}
.calendar-month-plus,
.calendar-month-minus {
  cursor: pointer;
}
.calendar-header {
  margin-bottom: 0px;
  /*height: 20%;*/
}

.calendar-navigation {
  font-size: 2rem;
  font-weight: 200;
  text-align: center;
  font-family: var(--main-fontfamily);
  padding-left: 2rem;
  padding-right: 2rem;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  color: var(--maintitle-color);
}

.month-box {
  flex-grow: 1;
  height: 30%;
  overflow-y: auto;
  margin-bottom: 2rem;
}

.week-days,
.week-row,
.month-box {
  font-size: 0px;
}

.week-days {
  /*background-image: url("../images/appointment-header-bg.jpg");*/
  /* border-radius: 5px 6px 0 0;*/
  overflow: hidden;
  /*background-color:black;*/
  border-top: 0.1rem solid var(--paragraph-color);
}

.week-days > div {
  position: relative;
  display: inline-block;
  width: 14.285714%;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 4px 0;
  color: var(--maintitle-color);
}

.day-cell {
  position: relative;
  padding: 16px 0;
  display: inline-block;
  width: 14.285714286%;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.day-cell + .day-cell {
  border-left: 1px solid #e5e5e5;
  border-left: 0.1rem solid var(--paragraph-color);
}

.day-cell.not-cur-month {
  cursor: default;
}

.appointment-calendar .day-cell.selected-day,
.day-cell.today {
  /*background-color: rgba(88, 59, 76, 0.75);*/
  background-color: var(--calendar--selectedday);
}

.day-cell.selected-day > *,
.day-cell.today > * {
  color: var(--white);
}

.week-row {
  border: 0.01rem solid var(--paragraph-color);
}

.week-row + .week-row {
  border-top: none;
}

.week-row:last-child {
  border-radius: 0 0 5px 5px;
}

.day-cell * {
  font-size: 1.3rem;
}

.day-date {
  color: var(--maintitle-color);
}

.not-cur-month .day-date {
  color: var(--calendar-notcurmonth);
}

/*end of calendar */

.availability-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--maintitle-color);
}

.availability-list ul {
  list-style: none;
}

.availability-list ul li:last-child {
  width: 100%;
}
.availability-panel {
  padding-top: 1rem;
  font-size: 1rem;
  background: var(--avvailabilitypanel-bg);
}
.availability-panel h6 {
  text-align: center;
  font-weight: 300;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  color: var(--paragraph-color);
}
.availability-panel p {
  text-align: center;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 10px;
}

.availability-panel p span {
  border-bottom: var(--maintitle-color) solid thin;
  border-top: var(--maintitle-color) solid thin;
  border: var(--maintitle-color) solid thin;
  padding: 0.5rem 0.5rem;
  color: var(--light);
  width: 6rem;
  text-align: center;
  margin: 0.5rem;
  cursor: pointer;
}

.availabilitylist-item {
  border: var(--maintitle-color) solid thin;
  color: var(--light);
  width: 6rem;
  text-align: center;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--second-fontfamily);
  cursor: pointer;
}

.availabilitylist-item:hover {
  /*transform: scale(1.1);*/
  background-color: var(--paragraph-color);
  color: var(--light);
  font-weight: 400;
}

.availabilitylist-item-slots {
  /*color: #ddd;*/
  font-weight: 300;
}
.availabilitylist-item-starttime {
  font-size: 1.5rem;
  font-weight: 300;
  padding-top: 0.3rem;
}

.registration-panel {
  font-size: 1.3rem;
  position: fixed;
  width: 90%;
  max-width: 40rem;
  z-index: 999999;
  transition: left 0.8s cubic-bezier(1, 0, 0, 1);
  top: 7rem;
  pointer-events: all;
  left: -1000px;
  height: 86%;
  box-shadow: 5rem 1.5rem 6rem rgba(0, 0, 0, 0.2);
  background: var(--availabilitypanel-bg);
  border: thin solid var(--button-bg);
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url(../../img/login-bg6.jpg) center no-repeat;*/
  background-size: cover;
  background: var(--customerfolder-bg);

  /*display: none;*/
}
.registration-panel-header {
  display: flex;
  justify-content: space-around;
  height: 50px;
  padding-top: 10px;
}
#registration-panel-header-x {
  color: var(--maintitle-color);
  cursor: pointer;
  font-size: 18px;
}

.registration-panel h1 {
  margin: 0;
  padding: 0;
  font-family: var(--main-fontfamily);
  font-weight: 300;
  font-size: 22px;
  color: var(--maintitle-color);
  text-align: center;
  letter-spacing: 2px;
}

.registration-panel-wrapper-content {
  width: 100%;
  display: block;
  flex-direction: column;
  justify-content: center;
  padding: 0px 30px;
  overflow-y: auto;
  /*adding-top: 20px;*/
  height: 70%;
}

.registration-button {
  width: 12rem;
  margin: 1rem;
  margin-top: 2.5rem;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  animation: anim 1s 1s backwards;
  background: var(--button-bg);
  color: var(--button-color);
  position: relative;
  left: 50%;
  transform: translateX(-70%);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /*-webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;*/
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
}

.room-card-content-page4 {
  /*position: absolute;*/
  /*text-align: justify;*/
  height: 100%;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: flex-start;

  padding-top: 1rem;
  height: 100%;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.treatment-card-product-img {
  /* width: 50%;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10%;
  -webkit-box-shadow: 5px 5px 15px 5px #000000;
  box-shadow: 2px 2px 15px 5px #585757;*/
}

.treatment-product-img {
  /*width: 100%;
  height: auto;*/
  height: 20rem;
  box-shadow: 5px 5px 5px;
  width: auto;
  margin-left: 50%;
  transform: translate(-50%, 0);
  object-fit: cover;
  filter: brightness(0.8);
  clip-path: polygon(11% 0, 89% 0, 100% 100%, 0% 100%);
}

.treatment-product-title {
  height: 5rem;
  padding-top: 0rem;
  padding-bottom: 0.2rem;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  color: rgb(216, 190, 160);
  display: block;
  font-size: 2rem;
  font-weight: 300;
}

.room-card-content-page4-description {
  height: 33%;
  padding-top: 0.3rem;
  margin: 0 1rem;
}
.treatment-product-description {
  color: #555;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 1rem;
  color: rgb(216, 190, 160);
  display: block;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.3rem;
  font-weight: 300;
  font-style: italic;
  color: #a29b8a;
}

.room-card-content-page4-info {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.treatment-product-size {
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  margin: 0 1rem;
}

.treatment-product-price {
  font-size: 2rem;
  font-weight: 800;
  text-align: right;
  margin: 0 1rem;
  color: #555;
  padding-top: 1rem;
  color: rgb(239 255 228);
  display: block;
  font-size: 2.3rem;
  font-weight: 400;
  color: #dbc38d;
}

.treatment-product-btn-actions {
  position: absolute;
  bottom: 0.5rem;
  width: 100%;
  display: flex;
  margin: auto;
  justify-content: space-around;
}
.treatment-product-addtocart-btn {
  width: 12rem;
  margin: 1rem;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  border: none;
  border-radius: 10rem;
  outline: none;
  cursor: pointer;
  animation: anim 1s 1s backwards;
  background: var(--button-bg);
  color: var(--button-color);
}

.room-card-content-page5 {
  height: 100%;
  /*background-image: url("../../img/treatment-gift-bg.png");*/
  /*background-size: cover;*/
  background-repeat: no-repeat;
  display: none;
  width: 90%;
  margin: auto;
}

.room-card-content-page5 h3 {
  font-family: "Dancing Script", cursive;
  font-size: 3.5rem;
  text-align: right;
  color: #d79c11;
  padding-top: 3rem;
  letter-spacing: 0.5rem;
}
.room-card-content-page5 form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room-card-content-page5 p {
  text-align: center;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 2rem;
}

.treatment-gift-btn-actions {
  position: absolute;
  bottom: 0.5rem;
  width: 100%;
  display: flex;
  margin: auto;
  justify-content: space-around;
}
.treatment-gift-addtocart-btn {
  width: 12rem;
  margin: 1rem;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  color: #333;
  letter-spacing: 0.1rem;
  border: none;
  border-radius: 10rem;
  outline: none;
  cursor: pointer;
  animation: anim 1s 1s backwards;
  background: var(--button-bg);
  color: var(--button-color);
}

.room-card-content-page5 p {
  color: var(--paragraph-color);
  font-family: var(--second-fontfamily);
  font-size: 1.6rem;
}

.addtocart-input:-webkit-autofill,
.addtocart-input:-webkit-autofill:hover,
.addtocart-input:-webkit-autofill:focus,
.addtocart-input:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
}

/* shopping cart panel */
.shoppingcart-panel {
  font-size: 1.3rem;
  color: rgb(58, 56, 56);
  position: fixed;
  width: 90%;
  /* max-width: 40rem; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  transition: right 0.8s cubic-bezier(1, 0, 0, 1);
  top: 5rem;
  display: block;
  border: rgb(163, 163, 163) solid thin;
  pointer-events: all;
  right: -10000rem;
  /* right: 0; */
  height: 91%;
  box-shadow: 5rem 1.5rem 6rem rgba(0, 0, 0, 0.2);
  border: 0.1rem solid #b85d1c;
  border-top: none;
  border-right: none;
  background: rgb(46, 55, 78);
  border: thin solid var(--button-bg);
  width: 100%;
  height: 100vh;
  top: 0;
  /* background: linear-gradient(to left, #2c3e50, #314958); */
  /* background: var(--customerfolder-bg); */
  /* background: linear-gradient(to bottom, var(--customerfolder-bg), var(--card-bg)); */
  background-color: var(--container-bg);
}

.basket-list {
  margin: 0.5rem 1rem 0.5rem 2rem;
  /* height: 70%; */
  /* overflow-y: auto;
  overflow-x: hidden; */
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  width: 60%;
  margin: auto;
  min-width: 300px;
  font-size: 1.4rem;
  line-height: 36px;
  /* max-width: 600px; */
}

.shoppingcart-panel-wrapper {
  position: relative;
  height: 100%;
  display: block;
  overflow: auto;
  height: 80%;
}

.shoppingcart-panel-wrapper-header {
  display: flex;
  height: 4rem;
  justify-content: space-around;
  align-items: center;
  font-size: 2rem;
  background: var(--card-bg);
  color: var(--maintitle-color);
  border-bottom: solid thin;
  background: linear-gradient(to left, #243b55, #141e30);
}

.shoppingcart-panel-wrapper-header .fa-chevron-left {
  visibility: hidden;
}
.shoppingcart-panel-wrapper-header h1 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  width: 100%;
  font-weight: 300;
  /*font-size: 2.5rem;*/
}

.shoppingcart-panel-wrapper-header .fa-times,
.shoppingcart-panel-wrapper-header p {
  padding: 0 1rem 0 0;
  font-weight: 600;
  /*font-size: 2.5rem;*/
  cursor: pointer;
}

.cart-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  padding-top: 1rem;
  color: var(--maintitle-color);
}
.cart-item ul li:last-child {
  color: var(--paragraph-color);
}
.cart-item ul:last-child li:last-child {
  padding: 0.6rem;
  padding-left: 0.7rem;
  /* border: thin solid;*/
  width: 3rem;
  height: 3rem;
  color: var(--button-bg);
}
.cart-item ul:last-child li:last-child:hover {
  cursor: pointer;
  background-color: #ddd;
}

.cart-item-field {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding-top: 0.5rem;
  /* border-bottom: solid thin lightgrey;*/
}

.cart-item-field li:last-child {
  border-bottom: solid thin gray;
}

.cart-item-field:last-child li:last-child {
  border-bottom: none;
}
.cart-item-field li:first-child {
  font-weight: 500;
  width: 30%;
}
.cart-item-field li:last-child {
  width: 60%;
  /* font-size: 1.4rem; */
}

.cart-item-product {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 1rem;
  color: var(--paragraph-color);
}
.cart-item-product-img {
  /*flex-grow: 1;*/
  margin: auto;
  width: 6rem;
}
.cart-item-product-img-img {
  width: 100%;
  filter: brightness(0.9);
}
.cart-item-product-fields {
  flex-grow: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: 1rem;
}
.cart-item-product-fields ul {
  width: 100%;
  margin-left: 1rem;
}
.cart-item-product-fields ul li {
  list-style: none;
  padding-bottom: 1rem;
}
.cart-item-product-fields ul li:first-child {
  font-size: 1.3rem;
  font-weight: 900;
}
.cart-item-product-fields ul li:last-child {
  padding: 0.6rem;
  padding-left: 0.7rem;
  margin-bottom: 1rem;
  /*border: thin solid;*/

  width: 3rem;
  height: 3rem;
  color: var(--button-bg);
}

.shopping-cart-panel-wrapper-footer {
  position: absolute;
  bottom: 0;
  height: 5rem;
  width: 100%;
}

.cart-item-product-qty {
  border: thin solid;
  width: 40%;
  display: flex;
  justify-content: space-between;
}

.cart-item-product-qty span {
  padding-top: 2px;
}

.shopping-cart-checkout-btn {
  width: 100%;
  height: 100%;
  bottom: 0;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1.5rem 6rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  background: var(--button-bg);
  color: var(--card-bg);
  color: var(--white);
}

.shopping-cart-checkout-btn:hover {
  background: var(--card-bg);
  color: var(--button-bg);
}

.shoppingcart-panel-wrapper-summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  height: 5rem;
  font-size: 3rem;
  flex-wrap: wrap;
  color: var(--maintitle-color);
  width: 60%;
  margin: auto;
  min-width: 300px;
  max-width: 600px;
}

.cart-item-product-fields .fa-plus {
  font-size: 1rem;
  /*border: solid thin gray;*/
  margin-left: 1rem;
  padding: 0.5rem;
}
.cart-item-product-fields .fa-minus {
  font-size: 1rem;
  /*border: solid thin gray;
  border-radius: 50%;*/
  margin-right: 1rem;
  padding: 0.5rem;
}

.cart-item-giftcard {
  display: flex;
  color: var(--paragraph-color);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cart-item-giftcard {
  /* border: solid thin gray;*/
}
.cart-item-giftcard-left {
  width: 8rem;
  height: 115px;
  display: flex;
  align-items: center;
}
.cart-item-giftcard-left img {
  width: 100%;
}
/* end of shopping cart panel */

.cart-item-giftcard-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* margin-left: 1rem;*/
}

.cart-item-giftcard-right ul li {
  list-style: none;
  padding-bottom: 0.5rem;
}

.cart-item-giftcard-right ul li:last-child {
  padding: 0.6rem;
  padding-left: 0.8rem;
  /*border: thin solid;*/
  width: 3rem;
  height: 3rem;
  color: var(--button-bg);
}

.cart-item-giftcard-right h3 {
  margin-bottom: 0.7rem;
  font-family: "Josefin Sans", sans-serif;
}

.checkout-panel {
  font-size: 1.3rem;
  position: fixed;
  width: 90%;
  /* max-width: 40rem; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 999999;
  transition: right 0.8s cubic-bezier(1, 0, 0, 1);
  top: 5rem;
  display: block;
  pointer-events: all;
  right: -10000rem;
  height: 84%;
  box-shadow: 5rem 1.5rem 6rem rgba(0, 0, 0, 0.2);
  background: var(--availabilitypanel-bg);
  border: thin solid var(--button-bg);
  width: 100%;
  height: 100vh;
  top: 0;
  background: linear-gradient(to left, #2c3e50, #314958);
  background: var(--customerfolder-bg);
}

.checkout-panel-wrapper-header {
  display: flex;
  height: 4rem;
  justify-content: space-around;
  align-items: center;
  font-size: 2rem;
  transition: height 0.5s ease;
  background: var(--card-bg);
  color: var(--maintitle-color);
  border-bottom: solid thin;
  background: linear-gradient(to left, #243b55, #141e30);
}

.checkout-panel-wrapper {
  position: relative;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 1s;
}
.checkout-panel-wrapper-content {
  margin: 0.5rem 1rem 0.5rem 2rem;
  height: 70%;
  /* overflow-y: auto; */
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  width: 60%;
  margin: auto;
  min-width: 300px;
}

.checkout-panel-wrapper-header h1 {
  font-family: var(--main-fontfamily);
  font-weight: 300;
  text-align: center;
  width: 100%;
  font-weight: 300;
}
.checkout-panel-wrapper-header p {
  padding: 0 1rem 0 0;
  font-weight: 600;
  cursor: pointer;
}
.checkout-panel-wrapper-footer {
  position: absolute;
  bottom: 0;
  height: 5rem;
  width: 100%;
}

.checkout-panel-wrapper-btn {
  width: 100%;
  height: 100%;
  bottom: 0;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1.5rem 6rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  background: var(--button-bg);
  color: var(--card-bg);
  color: var(--white);
}
.checkout-panel-wrapper-btn:hover {
  background: var(--card-bg);
  color: var(--button-bg);
}

.checkout-panel-wrapper-summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  height: 5rem;
  font-size: 3rem;
  flex-wrap: wrap;
  color: var(--maintitle-color);
}

.checkoutpanel-errormessage {
  color: var(--red);
  font-size: 1.7rem;
  padding-left: 10px;
}

.checkoutpanel-errorinput {
  border-bottom: 1px solid var(--red) !important;
}

.payment-panel {
  font-size: 1.3rem;
  position: fixed;
  width: 90%;
  /* max-width: 40rem; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 999999;
  transition: right 0.8s cubic-bezier(1, 0, 0, 1);
  top: 5rem;
  display: block;
  pointer-events: all;
  right: -10000rem;
  height: 84%;
  box-shadow: 5rem 1.5rem 6rem rgba(0, 0, 0, 0.2);
  background: var(--availabilitypanel-bg);
  border: thin solid var(--button-bg);
  width: 100%;
  height: 100vh;
  top: 0;
  background: linear-gradient(to left, #2c3e50, #314958);
  background: var(--customerfolder-bg);
}
.payment-panel-wrapper-header {
  display: flex;
  height: 4rem;
  justify-content: space-around;
  align-items: center;
  font-size: 2rem;
  transition: height 0.5s ease;
  background: var(--card-bg);
  color: var(--maintitle-color);
  border-bottom: solid thin;
  background: linear-gradient(to left, #243b55, #141e30);
}

.payment-panel-wrapper {
  position: relative;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 1s;
  background: linear-gradient(to bottom, var(--customerfolder-bg), var(--card-bg));
  max-width: 600px;
  /* margin: auto; */
  border: thin solid wheat;

  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  height: 95%;
  box-shadow: 18px 8px 50px rgb(0 0 0);
  border: none;
}
.payment-panel-wrapper-content {
  margin: 0rem 1rem 0.5rem 2rem;
  /* height: 70%; */
  /* overflow-y: auto; */
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  width: 60%;
  margin: auto;
  min-width: 300px;
}

.payment-panel-wrapper-header h1 {
  font-family: var(--main-fontfamily);
  font-weight: 300;
  text-align: center;
  width: 100%;
  font-weight: 300;
}
.payment-panel-wrapper-header p {
  padding: 0 1rem 0 0;
  font-weight: 600;
  cursor: pointer;
}

.payment-panel-wrapper-footer {
  position: absolute;
  bottom: 0;
  height: 5rem;
  width: 100%;
}

.payment-panel-wrapper-btn {
  width: 100%;
  height: 100%;
  bottom: 0;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1.5rem 6rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  background: var(--button-bg);
  color: var(--white);
}

.payment-panel-wrapper-summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  height: 5rem;
  font-size: 3rem;
  flex-wrap: wrap;
  color: var(--maintitle-color);
  /* position: absolute;
  bottom: 6rem; */
  width: 60%;
  margin: auto;
  min-width: 300px;
}

.formanimation-container p {
  font-family: var(--second-fontfamily);
  color: var(--paragraph-color);
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}
input {
  line-height: 30px;
  background-color: transparent;
  color: var(--paragraph-color);
  border: none;
  border-bottom: solid thin gray;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.paymenttype-select {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 1rem;
}
.paymenttype-select-container {
  display: flex;
  justify-content: center;
}
.z-bigger {
  z-index: 100 !important;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  visibility: hidden;
}

.checkbox-tools:checked + label,
.checkbox-tools:not(:checked) + label {
  position: relative;
  display: inline-block;
  padding: 20px 5px;
  width: 110px;
  font-size: 1.2rem;
  line-height: 20px;
  letter-spacing: 1px;
  margin: 0 auto;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--white);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.checkbox-tools:not(:checked) + label {
  background-color: var(--dark-light);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}
.checkbox-tools:checked + label {
  background-color: transparent;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}
.checkbox-tools:not(:checked) + label:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}
.checkbox-tools:checked + label::before,
.checkbox-tools:not(:checked) + label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-image: linear-gradient(298deg, var(--red), var(--yellow));
  background: var(--cardtoolbar-bg);
  background-image: linear-gradient(
    298deg,
    var(--maintitle-color),
    var(--paragraph-color)
  );
  z-index: -1;
}
.checkbox-tools:checked + label .uil,
.checkbox-tools:not(:checked) + label .uil {
  font-size: 24px;
  line-height: 2px;
  display: block;
  padding-bottom: 10px;
}

.ordercompleted-panel {
  font-size: 1.3rem;
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 999999;
  transition: top 2s ease-in-out;
  pointer-events: all;
  right: 0;
  top: -5000px;
  border: thin solid var(--button-bg);
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
    url(../img/bg-texture.jpg) center no-repeat;*/
  background-size: cover;
  background: var(--customerfolder-bg);
}

.ordercompleted-panel h1 {
  color: var(--maintitle-color);
  font-size: 40px;
}

.ordercompleted-panel-wrapper {
  /* margin-top: 5rem; */
  width: 90%;
  max-width: 600px;
  /* height: 80%; */
  /* top: 30%; */
  /* left: 20%; */
  padding: 20px 30px;
  box-shadow: 18px 8px 50px rgb(0, 0, 0);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(219, 195, 141, 0.1), rgba(156, 138, 100, 1));
  opacity: 0;
  transition: opacity 1s;
  /* margin: auto; */
  /* margin-top: 30px; */
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  height: 95%;
  min-height: 90vh;
  position: relative;

  background: linear-gradient(to bottom, var(--customerfolder-bg), var(--card-bg));
}

.ordercompleted-panel-wrapper h1 {
  margin: 0;
  padding: 0;
  font-family: var(--main-fontfamily);
  font-weight: 300;
  font-size: 28px;
  color: var(--maintitle-color);
  text-align: center;
  margin-bottom: 8%;
  letter-spacing: 5px;
}
.ordercompleted-panel-wrapper p {
  margin: 0;
  padding: 0;
  font-family: var(--main-fontfamily);
  font-weight: 300;
  font-size: 16px;
  color: var(--light);
  text-align: center;
  margin-bottom: 8%;
  letter-spacing: 5px;
}

.ordercompleted-panel-btn {
  width: 200px;
  margin: 1rem;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  animation: anim 1s 1s backwards;
  background: var(--button-bg);
  color: var(--button-color);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 300;
}

/*# sourceMappingURL=index.7636285a.css.map */
