body {
  font-family: "Inter", sans-serif;
}
:root {
  --primary: rgba(35, 35, 35, 1);
  --secondary: rgba(156, 163, 175, 1);
  --link: rgba(24, 73, 214, 1);
  --required: rgba(255, 0, 0, 1);
  --open-btn-txt: rgba(241, 243, 244, 1);
  --online-btn: rgba(76, 229, 177, 1);
  --online-btn-text: rgba(43, 43, 43, 1);
  --primary-bg-btn: rgba(0, 0, 0, 1);
  --primary-bg-btn-hover: rgba(0, 0, 0, 0.85);
  --secondary-bg-btn: rgba(236, 236, 240, 1);
  --secondary-border-btn: rgba(126, 145, 154, 1);
  --history-item-bg: rgba(244, 244, 244, 1);
  --nav-item: rgba(126, 145, 154, 1);
  --active-nav-item: rgba(32, 14, 50, 1);
  --dark-bg-card: rgba(16, 16, 16, 1);
  --text-white: #fff;
  --offline-btn-border: rgba(216, 216, 216, 1);
  --offline-btn-bg: rgba(241, 241, 241, 1);
}
/* common Style */
.container {
    max-width: 800px;
}
a:active {
  color: var(--active-nav-item);
}
.txt-primary {
  color: var(--primary);
}
.txt-secondary {
  color: var(--secondary);
}
.fn-Inter {
  font-family: "Inter";
}
.fn-Cairo {
  font-family: "Cairo";
}
.page-header {
  text-align: center;
  font-family: "Cairo";
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0;
}
.main-btn {
  height: 56px;
  padding: 16px 0;
  border-radius: 16px;
  text-transform: capitalize;
  text-align: center;
  cursor: pointer;
}
.fn-14-400 {
  font-size: 14px;
  font-weight: 400;
}
.fw-200 {
  font-weight: 200;
}
.fn-reboto {
  font-family: "Reboto";
}
.submit-btn {
  margin-top: 16px;
  background: var(--primary-bg-btn);
  color: var(--text-white);
  margin: 0 auto;
  font-weight: 700;
}
.submit-btn:hover {
  background: var(--primary-bg-btn-hover);
  transition: 0.5s ease all;
}
.secondary-btn {
  background: var(--secondary-bg-btn);
  color: var(--primary-bg-btn);
  font-weight: 700;
}
.share-btn {
  background: #1849d6;
  width: 146px;
  height: 56px;
  text-transform: capitalize;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
}
.share-btn:hover {
  background: rgba(24, 73, 214, 0.85);
  transition: 0.5s ease all;
}
.border-bottom {
  border-bottom: 1px solid rgba(241, 243, 244, 1);
}
.add-photo-label {
  color: rgba(68, 68, 68, 1);
}
img {
  display: inline-block;
  margin: 0 auto;
}
.lang-btn {
  margin: 10px 27px;
}
.main-input {
  border: var(--secondary) 1px solid;
  border-radius: 16px;
  font-family: "Inter";
  height: 56px;
  font-style: italic;
  /*color: var(--secondary);*/
  color: black !important;
}
.main-input::placeholder {
  color: var(--secondary);
  text-transform: capitalize;
  opacity: 1; /* Firefox */
}
.main-input:active,
.main-input:focus {
  color: var(--primary);
}
.sub-input {
  font-size: 12px;
}
.custom-link {
  color: var(--link);
  text-decoration: none;
}
.profile-img-wrapper img.profile {
  border-radius: 50%;
  border: 3px solid var(--primary);
  object-fit: cover;
}
.profile-img-wrapper img.icon {
  bottom: 0;
  right: 3px;
}
.divider {
  width: 85%;
  height: 1px;
  background: var(--secondary-bg-btn);
  margin: 31px auto;
}
.custom-file-input {
  display: none;
}
.custom-file-label {
  border: var(--link) 1px dashed;
  border-radius: 16px;
  font-family: "Inter";
  height: 56px;
  font-size: 14px;
  color: var(--link);
  cursor: pointer;
  height: 64px;
  padding: 14px 22px;
}
.custom-file-label label {
  cursor: pointer;
}
.required {
  color: var(--required);
}
.aquaview-header {
  font-weight: 600;
}

.date-input[type="date"]::-webkit-datetime-edit,
.date-input[type="date"]::-webkit-inner-spin-button,
.date-input[type="date"]::-webkit-clear-button {
  color: var(--secondary);
}
.date-input[type="date"]::-webkit-datetime-edit::before {
  content: attr(placeholder);
  color: var(--secondary);
}
.date-input[type="date"]:focus::-webkit-datetime-edit::before {
  color: var(--secondary);
}
.text-area {
  height: 80px;
}
/* common Style */

/* navbar */
.nav {
    padding: 17px 37px 17px 8px;
    border-top: 1px solid rgba(241, 243, 244, 1);
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--text-white);
}
.nav-item-img {
  width: 32px;
  height: 32px;
}
.nav-item-text,
.nav-item-text:hover {
  color: var(--nav-item);
}
.nav-item-text span {
  text-transform: capitalize;
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  padding-top: 8px;
  margin-left: -4px;
  display: inline-block;
}
.active-nav-item,
.active-nav-item:hover {
  color: var(--active-nav-item);
}
/* /navbar */
/* Lang dropdown */
.dropdown-toggle::after {
  display: none;
}
ul.dropdown-menu li:hover a,
select.form-select option:hover {
  background-color: var(--secondary-bg-btn);
  color: var(--primary);
}

ul.dropdown-menu li:active a,
select.form-select option:active {
  background-color: var(--secondary-bg-btn);
  color: var(--primary);
}
.lang-dropdown {
  width: 103px;
  margin-left: auto;
  display: block;
  margin-top: 20px;
}
.lang-dropdown a span {
  display: inline-block;
  margin: 0 auto 5px;
  color: var(--primary-bg-btn);
  font-family: "Cairo";
}
.dropdown-toggle {
  margin: 0 -19px;
}
.dropdown-toggle:focus,
.dropdown-item:focus {
  outline: none;
  border: none;
}
.dropdown-menu {
  left: 0;
  right: auto;
}

/* /Lang dropdown */
/* Login Page */
section.page-wrapper {
  padding-bottom: 160px;
}
section.page-wrapper .logo {
  margin-top: -21px;
}
section.page-wrapper .text {
  font-size: 14px;
  font-weight: 500;
}

/* /Login Page */
/* OTP Page */
.otp-content .otp-text,
.otp-content .resend-link {
  font-size: 14px;
  line-height: 24px;
}
.otp-content .resend-link {
  font-weight: 600;
}
/* /OTP Page */
/* sign up */
.id-dropdown {
  object-fit: none;
}
.signUp-page .dropdown-toggle:focus {
  outline: 1px solid var(--secondary);
  border-radius: 16px;
  color: var(--secondary);
}
.file-inbut-label {
  font-size: 18px;
  font-weight: 700;
}
.browseFilesLink {
  font-weight: 700;
  color: var(--link);
}
.file-input-wrappper img {
  width: 32px;
  height: 40px;
}
/* /sign up */
/* home page */
.cloud-img {
  right: 50px;
}
.home-page .page-header {
  font-size: 20px;
  font-family: "Inter";
}
.home-page .sub-header {
  color: var(--nav-item);
}
.home-page .notification-card {
  background: var(--dark-bg-card);
  border-radius: 16px;
  color: var(--text-white);
  background-image: url(../imgs/home-page/bell.png);
  background-repeat: no-repeat;
  padding: 14px 12px 18px 18px;
  background-position: right 12px center;
}
p.noti-card-header {
  font-size: 20px;
  font-weight: 700;
}
.no-img-wrapper {
  width: 71px;
  height: 71px;
  line-height: 71px;
  border-radius: 16px;
  background-color: var(--text-white);
}
.notification-card p.content {
  font-size: 12px;
  max-width: 85%;
}
.notification-card p.content a {
  right: 2%;
  bottom: 0;
  font-size: 12px;
}
.home-feature {
  padding: 22px 13px;
  border-radius: 16px;
}
.home-feature .header {
  font-weight: 700;
}
.home-feature .sub-header {
  font-weight: 400;
  font-size: 12px;
  white-space: wrap;
}
/* /home page */
/* profile page */
.profile-page .page-header {
  color: var(--dark-bg-card);
  font-weight: 600;
  font: 20px;
  font-family: "Inter";
}
.profile-page .sub-header {
  font-weight: 500;
  color: var(--dark-bg-card);
}
.profile-features .feature {
  background: rgba(247, 247, 247, 1);
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 15px;
}
.feature .icon-wrapper,
.icon-wrapper {
  width: 40px;
  height: 40px;
  line-height: 37px;
  border-radius: 50%;
  background: var(--text-white);
}
.feature-text p {
  font-weight: 500;
  color: var(--dark-bg-card);
}
.profile-page .custom-link span {
  font-weight: 700;
}
/* /profile page */
/* qrCode-page */
.qrCode-page .page-header {
  font-weight: 700;
  margin-top: 49px;
}
.qrCode-page .sub-header {
  font-size: 10px;
  font-weight: 500;
  color: rgba(185, 185, 185, 1);
  margin-bottom: 45px;
}
.qrCode-page .qr-header {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-bg-btn);
}
.qrCode-page .qr-sub-header {
  font-weight: 400;
  color: var(--nav-item);
}
/* /qrCode-page */
/* visitorInvitationForm */
.visitorInvitationForm-page a {
  color: #3669c9;
  font-weight: 500;
}
/* /visitorInvitationForm */
/*  Visits History */
.visit-content {
  background: rgba(244, 244, 244, 1);
  border-radius: 16px;
  padding: 22px 23px;
}
.visit-code-wrapper {
  width: 43px;
  height: 43px;
  line-height: 43px;
  border-radius: 7px;
  background: var(--text-white);
}
.visit-content {
  font-size: 10px;
  font-weight: 400;
}
.visit-data .date {
  color: var(--primary-bg-btn);
}
.visit-data .info {
  color: var(--nav-item);
}
/*  /Visits History */
/* remoteOpenDoor */
.remoteOpenDoor-page,
.notification-page {
  max-width: 800px;
}
.remoteOpenDoor-page .page-header,
.notification-page .page-header,
.notification {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header {
  font-weight: 500;
}
.notification .info-text {
  color: rgba(52, 64, 84, 1);
}
.notification .sub-header {
  color: rgba(9, 28, 63, 0.45);
}
.notification .sub-header img {
  cursor: pointer;
}
.clear-btn a {
  color: rgba(54, 105, 201, 1);
  font-weight: 500;
  cursor: pointer;
}
.remoteOpenDoor-page .icon-wrapper {
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  background: var(--offline-btn-bg);
}
.remote-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.remote-info .info-header {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-bg-btn);
}
.remote-info .info-sub-header {
  color: rgba(126, 145, 154, 1);
  font-size: 17px;
}
.open-btn,
.online-btn,
.offline-btn {
  background: var(--required);
  width: 60px;
  height: 30px;
  cursor: pointer;
  border-radius: 5px;
  padding: 3px;
}
.btns-wrapper span {
  font-size: 14px;
  font-weight: 700;
  font-family: "Cairo";
  text-align: center;
  text-transform: capitalize;
}
.open-btn {
  color: var(--open-btn-txt);
}

.online-btn {
  background: var(--online-btn);
}
.offline-btn {
  background: var(--offline-btn-bg);
  border: 1px solid rgba(216, 216, 216, 1);
}
/* /remoteOpenDoor */
/* alerts */
.alert-txt {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
}
.custom-alert {
  border-radius: 11px;
}
.danger {
  background: rgba(252, 232, 219, 1);
  border: 1px solid rgba(252, 232, 219, 1);
  color: rgba(113, 25, 47, 1);
}
.danger-icon {
  color: rgba(239, 102, 91, 1);
}
.danger-btn-close {
  background: transparent url("../imgs/alerts/danger.png") center / 1em auto
    no-repeat;
}
.primary {
  background: rgba(215, 241, 253, 1);
  border: 1.5px solid rgba(80, 154, 248, 1);
}
.primary-icon {
  color: rgba(80, 154, 248, 1);
}
.primary-btn-close {
  background: transparent url("../imgs/alerts/primary.png") center / 1.7em auto
    no-repeat;
}
.warning {
  background: rgba(254, 247, 209, 1);
  border: 1px solid rgba(254, 247, 209, 1);
  color: rgba(117, 81, 24, 1);
}
.warning-icon {
  color: rgba(247, 199, 82, 1);
}
.warning-btn-close {
  background: transparent url("../imgs/alerts/primary.png") center / 1.7em auto
    no-repeat;
}
.warning span {
  font-weight: 400;
  font-size: 17px;
}

.success {
  background: rgba(132, 214, 90, 1);
  border: 1px solid rgba(132, 214, 90, 1);
}
.success-icon {
  color: rgba(57, 58, 55, 1);
}
.success-btn-close {
  background: transparent url("../imgs/alerts/1-close.png") center / 1.7em auto
    no-repeat;
}

/* alerts */
