/*#region ----------------- General */
@import url(../css/fontface.css);
*,
::before,
::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: Montserrat !important;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  background: #242834;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
span,
p {
  font-family: Montserrat !important;
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

h4 {
  font-size: 1.5rem;
  font-weight: 800;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
}

b,
strong {
  font-weight: 900;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: rgba(255, 255, 255, 0.2) solid;
  opacity: 0.25;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

nav {
  display: block;
}

a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  color: #36ffe4;
}

img {
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg,
img {
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: #00377a;
  color: white;
}

::selection {
  background-color: #00377a;
  color: white;
}

[hidden],
.hidden {
  display: none !important;
}

.fixed-position {
  overflow: hidden !important;
}

/*#endregion -------------- General */
/*#region ----------------- Buttons */
.btn {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem 1.2rem;
  border-radius: 50rem;
  border: 1px solid transparent;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .fi {
  font-size: 20px;
  line-height: 0;
}
.btn:disabled {
  background-color: #1a1b27 !important;
  border: 1px solid #9e9e9e !important;
  color: #c5c5cb;
}

.icon-right {
  padding-right: 3rem !important;
}
.icon-right .fi {
  position: absolute;
  right: 14px;
  top: 10px;
}

.icon-left {
  padding-left: 3rem !important;
}
.icon-left .fi {
  position: absolute;
  left: 14px;
  top: 10px;
}

.btn-primary {
  background: #36ffe4;
  color: black;
  border-color: #36ffe4;
}
.btn-primary:hover, .btn-primary:focus {
  color: black;
  background: #00d9bc;
  border-color: #00d9bc;
}

.btn-secondary {
  background: #00377a;
  color: white;
  border-color: #00377a;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: white;
  background: #0060d6;
  border-color: #0060d6;
}

.btn-primary-outline {
  background: transparent;
  color: #36ffe4;
  border-color: #36ffe4;
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background: rgba(54, 255, 228, 0.15);
  color: #36ffe4;
  border-color: #36ffe4;
}

.btn-secondary-outline {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: white;
}

/*#region ----------------- Page Title */
.page-title {
  margin: 0.5rem 0 1.5rem 0;
}
.page-title.align-center .title-inner {
  text-align: center;
}
.page-title.align-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-title h2 {
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 10px;
}
.page-title p {
  color: #c5c5cb;
  margin-bottom: 0;
}
.page-title .btn-link {
  color: #36ffe4;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.page-title .btn-link .fi {
  margin-right: 5px;
  display: flex;
  font-size: 20px;
}
.page-title .btn-link:hover {
  color: #00377a;
}

@media (max-width: 1024px) {
  .page-title h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 768px) {
  .page-title h2 {
    font-size: 1.35rem;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- Dashboard */
.wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #242834, #0e0724);
}

.action-header-buttons {
  padding: 0 10px;
}
.action-header-buttons .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 700px;
  margin: 0 auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.action-header-buttons .btn-action {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: 22px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-header-buttons .btn-action .fi {
  display: flex;
}
.action-header-buttons .btn-action:hover, .action-header-buttons .btn-action:focus {
  color: #36ffe4;
}
.action-header-buttons .btn-action.color-accent {
  background-color: rgba(228, 156, 34, 0.1);
  color: #e49c22;
  border-color: #e49c22;
}
.action-header-buttons .btn-action.color-primary {
  background-color: rgba(54, 255, 228, 0.1);
  color: #36ffe4;
  border-color: #36ffe4;
}

.main-body {
  width: 700px;
  margin: 1rem auto 0 auto;
  padding-bottom: 80px;
}

.select-area {
  display: grid;
  grid-template-columns: 48px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background-color: #1a1b27;
}
.select-area .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.select-area .icon .fi {
  display: flex;
  font-size: 22px;
}
.select-area .select-group {
  margin: 0;
}
.select-area .select-group .form-select {
  border-radius: 15px;
  border: none;
}

.status-list {
  padding: 0 10px;
  margin-top: 10px;
}
.status-list ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.status-list ul li {
  flex: 0 0 50%;
  width: 50%;
  margin: 3px 0;
  padding-right: 10px;
}
.status-list ul li .text {
  color: white;
  font-size: 0.875rem;
}
.status-list ul li .icon {
  margin-left: 5px;
  color: white;
}
.status-list ul li .icon.active {
  color: #36ffe4;
}
.status-list ul li .icon.error {
  color: #ef4444;
}
.status-list ul li .icon.disabled {
  color: rgba(255, 255, 255, 0.4);
}

.devices-list ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.devices-list ul li {
  flex: 0 0 33.33%;
  width: 33.33%;
  padding: 8px;
  position: relative;
}
.devices-list ul li::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  background-image: radial-gradient(circle farthest-side at center bottom, rgba(54, 255, 228, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
}
.devices-list ul li .link {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px 10px;
  transition: all 0.2s ease-in-out;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: relative;
}
.devices-list ul li .link .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px auto;
}
.devices-list ul li .link .icon img {
  width: 100%;
}
.devices-list ul li .link .icon .fi {
  font-size: 38px;
  display: flex;
}
.devices-list ul li .link .text {
  text-align: center;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.devices-list ul li:hover::before {
  opacity: 1;
}
.devices-list ul li.disabled::before {
  display: none;
}
.devices-list ul li.disabled .link {
  background-color: rgba(0, 0, 0, 0.1);
}
.devices-list ul li.disabled .link .icon,
.devices-list ul li.disabled .link .text {
  opacity: 0.5;
}

.select-elevator {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.card-elevator {
  width: 50%;
  flex: 0 0 50%;
  padding: 10px;
}
.card-elevator .card-inner {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px 15px;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.card-elevator .card-inner .big-text {
  text-align: center;
  font-size: 2.813rem;
  color: #36ffe4;
  font-weight: 800;
  text-shadow: 0 3px 25px rgba(54, 255, 228, 0.4);
}
.card-elevator .card-inner .normal-text {
  color: white;
  text-align: center;
}
.card-elevator .card-inner .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
  font-size: 28px;
  color: #36ffe4;
  text-shadow: 0 3px 25px rgba(54, 255, 228, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-elevator:hover .card-inner {
  border-color: white;
}

.choose-apps-slider {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0 10px;
  position: relative;
}

.swiper-choose-apps {
  position: unset !important;
}
.swiper-choose-apps .swiper-slide {
  padding: 15px 5px;
}
.swiper-choose-apps .swiper-slide:first-child .link {
  border-left: none;
}
.swiper-choose-apps .swiper-slide .link {
  display: block;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.swiper-choose-apps .swiper-slide .link.active .thumb svg {
  fill: #36ffe4;
}
.swiper-choose-apps .swiper-slide .link.active h6 {
  color: #36ffe4;
  text-shadow: 0 3px 20px rgba(54, 255, 228, 0.5);
}
.swiper-choose-apps .swiper-slide .thumb {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-choose-apps .swiper-slide .thumb img,
.swiper-choose-apps .swiper-slide .thumb svg {
  width: 100%;
}
.swiper-choose-apps .swiper-slide h6 {
  margin-bottom: 0;
  font-size: 0.813rem;
}
.swiper-choose-apps .swiper-button-next,
.swiper-choose-apps .swiper-button-prev {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.swiper-choose-apps .swiper-button-next::after,
.swiper-choose-apps .swiper-button-prev::after {
  font-size: 20px;
  color: white;
}
.swiper-choose-apps .swiper-button-next {
  right: -15px;
}
.swiper-choose-apps .swiper-button-prev {
  left: -15px;
}

.page-content {
  margin-top: 30px;
}
.page-content .content-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.page-content .content-inner {
  margin-bottom: 25px;
}
.page-content .content-inner.grid-4 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.page-content .content-inner .box-switch {
  padding: 8px;
}
.page-content .content-inner .box-switch .box-inner {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  padding: 15px;
}
.page-content .content-inner .box-switch h4 {
  font-size: 0.875rem;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-content .content-inner .box-switch .switch {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content .content-inner .box-switch .switch .form-switch {
  padding: 0;
}
.page-content .content-inner .box-switch .switch .form-switch .form-check-input {
  margin: 0;
}

.row-box-content {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 12px;
}
.row-box-content .title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 15px;
}
.row-box-content .btns-action {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.row-box-content .btn-box {
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.7);
}
.row-box-content .btn-box:hover, .row-box-content .btn-box:focus {
  color: #36ffe4;
}
.row-box-content .btn-box:hover .fi, .row-box-content .btn-box:focus .fi {
  color: #36ffe4;
}
.row-box-content .btn-box .fi {
  font-size: 20px;
  color: white;
}
.row-box-content.type-2 {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: unset;
  cursor: pointer;
}
.row-box-content.type-2 .title {
  text-align: center;
}
.row-box-content.active {
  border-color: #36ffe4;
}
.row-box-content.active .title {
  color: #36ffe4;
}
.row-box-content.error {
  border-color: #ef4444;
}
.row-box-content.error .title {
  color: #ef4444;
}
.row-box-content.diactive {
  border-color: #fbbf24;
}
.row-box-content.diactive .title {
  color: #fbbf24;
}
.row-box-content.disabled {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: #1a1b27;
}
.row-box-content.disabled .title {
  color: #9e9e9e;
}

@media (max-width: 992px) {
  .action-header-buttons .inner {
    width: 100%;
  }
  .main-body {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .devices-list ul li {
    padding: 5px;
  }
  .devices-list ul li .link {
    padding: 25px 10px;
  }
}
@media (max-width: 575px) {
  .devices-list ul li {
    padding: 3px;
  }
  .devices-list ul li .link {
    padding: 22px 8px;
  }
  .devices-list ul li .link .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .devices-list ul li .link .text {
    font-size: 0.875rem;
  }
  .swiper-choose-apps .swiper-button-next {
    right: -5px;
  }
  .swiper-choose-apps .swiper-button-prev {
    left: -5px;
  }
  .swiper-choose-apps .swiper-button-next,
  .swiper-choose-apps .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .swiper-choose-apps .swiper-button-next::after,
  .swiper-choose-apps .swiper-button-prev::after {
    font-size: 18px;
  }
  .swiper-choose-apps .swiper-slide {
    padding: 12px 5px;
  }
  .swiper-choose-apps .swiper-slide .thumb {
    width: 38px;
    height: 38px;
    margin: 0 auto 8px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .swiper-choose-apps .swiper-slide .thumb img,
  .swiper-choose-apps .swiper-slide .thumb svg {
    width: 100%;
  }
  .swiper-choose-apps .swiper-slide h6 {
    margin-bottom: 0;
    font-size: 0.75rem;
  }
}
@media (max-width: 450px) {
  .status-list ul li {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 0;
    margin: 5px 0;
  }
  .status-list ul li .text {
    font-size: 0.75rem;
  }
  .status-list ul li .icon {
    font-size: 0.8rem;
  }
  .page-content .content-inner.grid-4 {
    grid-template-columns: 50% 50%;
  }
  .page-content .content-inner .box-switch {
    padding: 5px;
  }
  .page-content .content-inner .box-switch .box-inner {
    padding: 12px;
  }
  .page-content .content-inner .box-switch h4 {
    font-size: 0.813rem;
    min-height: 34px;
  }
  .devices-list ul li .link {
    padding: 16px 6px;
  }
  .devices-list ul li .link .icon {
    width: 38px;
    height: 38px;
  }
  .devices-list ul li .link .text {
    font-size: 0.813rem;
  }
}
/*#endregion -------------- Dashboard */
/*#region ----------------- Navbar */
.navbar {
  padding: 20px 10px;
  width: 100%;
}
.navbar .nav-inner {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  width: 700px;
  margin: 0 auto;
}
.navbar .btn-action {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: 22px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .btn-action .fi {
  display: flex;
}
.navbar .btn-action:hover, .navbar .btn-action:focus {
  color: #36ffe4;
}
.navbar .btn-action.color-accent {
  background-color: rgba(228, 156, 34, 0.1);
  color: #e49c22;
  border-color: #e49c22;
}
.navbar .btn-action.color-primary {
  background-color: rgba(54, 255, 228, 0.1);
  color: #36ffe4;
  border-color: #36ffe4;
}
.navbar .nav-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navbar .nav-action .btn-action {
  margin-left: 10px;
}
.navbar .nav-logo {
  width: 140px;
}
.navbar .nav-logo img {
  width: 100%;
}
.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.navbar .nav-menu .btn-action {
  margin-right: 10px;
}

#sidebar {
  position: fixed;
  left: -280px;
  top: 0;
  width: 280px;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 999;
  transition: all 0.2s ease-in-out;
}
#sidebar.active {
  left: 0;
}
#sidebar .btn-close-menu {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 22px;
  cursor: pointer;
}
#sidebar .btn-close-menu:hover {
  color: white;
}
#sidebar .side-header {
  padding: 40px 20px 10px;
  flex-shrink: 0;
}
#sidebar .side-header .logo {
  width: 160px;
  margin: 0 auto 0 0;
}
#sidebar .side-header .logo img {
  width: 100%;
}
#sidebar .side-body {
  height: 100%;
  overflow-y: auto;
  flex: 1 1 auto;
  padding: 10px 20px 40px 20px;
}
#sidebar .side-body .menu-links li {
  margin: 5px 0;
}
#sidebar .side-body .menu-links li a {
  display: flex;
  align-items: center;
  color: white;
  padding: 8px 0;
}
#sidebar .side-body .menu-links li a .fi {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  margin-right: 10px;
  font-size: 1.375rem;
}
#sidebar .side-body .menu-links li a:hover {
  color: #36ffe4;
}
#sidebar .side-body .menu-links li a:hover .fi {
  color: #36ffe4;
}
#sidebar .social-icons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#sidebar .social-icons li {
  margin: 5px;
}
#sidebar .social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #36ffe4;
  color: #36ffe4;
  transition: all 0.2s ease-in-out;
}
#sidebar .social-icons li a .fi {
  display: flex;
}
#sidebar .social-icons li a:hover {
  background-color: #36ffe4;
  color: #242834;
}

.sidebar-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 998;
  display: none;
}
.sidebar-overlay.active {
  display: block;
}

@media (max-width: 575px) {
  .navbar .container {
    padding: 0;
  }
  .navbar .nav-inner {
    grid-template-columns: 1fr 100px 1fr;
  }
  .navbar .nav-logo {
    width: 100px;
  }
  .navbar .btn-action {
    font-size: 20px;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Forms */
.input-group {
  margin-bottom: 1.3rem;
}
.input-group label {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  color: #c5c5cb;
}
.input-group .input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px !important;
  height: 48px;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.input-group .input:hover, .input-group .input:focus {
  border-color: white;
}

.select-group {
  margin-bottom: 1.2rem;
}
.select-group label {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  color: #c5c5cb;
}
.select-group .form-select {
  background-color: #1a1b27;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 48px;
  color: white;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23aaa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.select-group .form-select:hover, .select-group .form-select:focus {
  border-color: #36ffe4;
  box-shadow: none !important;
}
.select-group.noBorder .form-select {
  border: none;
}

.form-switch .form-check-input {
  cursor: pointer;
  width: 3.2em;
  height: 1.8em;
  background-color: rgba(255, 255, 255, 0.4);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:hover, .form-switch .form-check-input:focus {
  box-shadow: none;
}
.form-switch .form-check-input:checked {
  background-color: #36ffe4;
  border-color: #36ffe4;
  box-shadow: 0 3px 20px rgba(54, 255, 228, 0.4);
}

/*#endregion -------------- Forms */
/*#region ----------------- Modal Styles */
.modal-header {
  border: none;
}
.modal-header .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
.modal-header .btn-close:hover, .modal-header .btn-close:focus {
  box-shadow: none;
}

.modal-footer {
  border: none;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-content {
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.4) !important;
  -webkit-backdrop-filter: blur(8px) !important;
          backdrop-filter: blur(8px) !important;
  opacity: 1 !important;
}

/*#endregion -------------- Modal Styles */
/*#region ----------------- Control Panel */
.card-control-panel {
  margin-bottom: 25px;
}
.card-control-panel .card-inner {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
.card-control-panel .c-header {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-control-panel .c-header h4 {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.card-control-panel .c-header .btn-edit {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-control-panel .c-header .btn-edit .fi {
  display: flex;
}
.card-control-panel .c-header .btn-edit:hover {
  border-color: #36ffe4;
  color: #36ffe4;
}
.card-control-panel .c-body {
  margin-top: 20px;
  padding: 0 15px 15px 15px;
}
.card-control-panel .temperature-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.card-control-panel .temperature-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125%;
  height: 125%;
  transform: translate(-50%, -50%);
  background-image: url(../images/ellipse-outline.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.card-control-panel .temperature-circle .temperature-number,
.card-control-panel .temperature-circle .temperature-minimun {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-control-panel .temperature-circle .temperature-number h5,
.card-control-panel .temperature-circle .temperature-minimun h5 {
  font-size: 1.875rem;
  margin-bottom: 0;
  color: #fff;
}
.card-control-panel .temperature-circle .temperature-number span,
.card-control-panel .temperature-circle .temperature-minimun span {
  margin-left: 5px;
}
.card-control-panel .temperature-circle .temperature-minimun {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.card-control-panel .temperature-circle .temperature-minimun h5 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #c5c5cb;
}
.card-control-panel .temperature-circle .temperature-minimun span {
  margin-left: 5px;
}
.card-control-panel .btns-control-temp {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
}
.card-control-panel .btns-control-temp .btn-temp {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-control-panel .btns-control-temp .btn-temp .fi {
  display: flex;
}
.card-control-panel .btns-control-temp .btn-temp:hover {
  border-color: #36ffe4;
  color: #36ffe4;
}
.card-control-panel .control-heat-cool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.card-control-panel .control-heat-cool .btn-heat-cool {
  width: 40px;
  height: 40px;
  color: #c5c5cb;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  cursor: pointer;
}
.card-control-panel .control-heat-cool .btn-check:checked + .btn-heat-cool.sun {
  color: #fbbf24;
  text-shadow: 0 3px 15px rgba(251, 191, 36, 0.9);
}
.card-control-panel .control-heat-cool .btn-check:checked + .btn-heat-cool.snow {
  color: #36ffe4;
  text-shadow: 0 3px 15px rgba(54, 255, 228, 0.9);
}
.card-control-panel .c-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-control-panel .c-footer .btn-check:checked + .btn-temp-auto {
  color: #36ffe4;
  border-color: #36ffe4;
}
.card-control-panel .c-footer .btn-check:checked + .btn-temp-auto::before {
  display: block;
}
.card-control-panel .c-footer .btn-temp-auto {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 6px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.card-control-panel .c-footer .btn-temp-auto .fi {
  display: flex;
}
.card-control-panel .c-footer .btn-temp-auto::before {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-image: radial-gradient(circle farthest-side at center bottom, rgba(54, 255, 228, 0.4) 0%, rgba(54, 255, 228, 0) 70%);
}

/*#endregion -------------- Control Panel */
/*#region ----------------- Modal Styles */
.login-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  position: relative;
}
.login-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/login-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.login-wrapper .login-inner {
  width: 600px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  padding: 0 20px;
}
.login-wrapper .logo {
  width: 150px;
  margin: 0 auto 2rem auto;
}
.login-wrapper .logo img {
  width: 100%;
}
.login-wrapper .title {
  text-align: center;
}
.login-wrapper .title h2 {
  font-size: 1.25rem;
}

#messageBox {
  font-size: 14px;
  font-weight: 600;
}
#messageBox.success {
  color: green;
}
#messageBox.error {
  color: red;
}

@media (max-width: 768px) {
  .login-wrapper .login-inner {
    width: 90%;
  }
}
/*#endregion -------------- Modal Styles */
/*#region ----------------- Mobile Navbar */
.mobile-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.mobile-navbar ul {
  width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-navbar .item {
  flex: 0 0 33.33%;
  width: 33.33%;
}
.mobile-navbar .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 0 10px 0;
}
.mobile-navbar .item .active {
  color: #e49c22;
}
.mobile-navbar .item .icon {
  width: 24px;
  height: 24px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e49c22;
  text-shadow: 0 3px 25px rgba(228, 156, 34, 0.4);
}
.mobile-navbar .item .icon .fi {
  display: flex;
}
.mobile-navbar .item .text {
  line-height: 1;
  margin-top: 8px;
  font-size: 13px;
}
.mobile-navbar .item:hover .text {
  color: #e49c22;
}

@media (max-width: 992px) {
  .mobile-navbar ul {
    width: 100%;
  }
}
/*#endregion -------------- Mobile Navbar */