@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.material-symbols-sharp {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #CCC #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(40, 40, 40, 0.15);
  border-radius: 2px;
  border: 3px solid #ffffff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  min-width: 1000px;
  min-height: 500px;
  scroll-behavior: smooth;
  background-color: #282828;
  font-family: "Open Sans", sans-serif;
}
html .checkbox-container, body .checkbox-container {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}
html .checkbox-container input, body .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
html .checkbox-container .label, body .checkbox-container .label {
  font-size: 0.75em;
  color: #CCC;
}
html .checkbox-container .checkmark, body .checkbox-container .checkmark {
  width: 15px;
  height: 15px;
  border: 2px solid #555;
  border-radius: 4px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
html .checkbox-container:hover .checkmark, body .checkbox-container:hover .checkmark {
  border-color: #FFD54F;
}
html .checkbox-container input:checked + .checkmark, body .checkbox-container input:checked + .checkmark {
  background-color: #FFD54F;
  border-color: #FFD54F;
}
html .checkbox-container input:checked + .checkmark::after, body .checkbox-container input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid #282828;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: checkmark 0.3s ease forwards;
}
@keyframes checkmark {
  from {
    transform: scale(0) rotate(45deg);
  }
  to {
    transform: scale(1) rotate(45deg);
  }
}
html .brand-logo, body .brand-logo {
  width: auto;
  height: auto;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 0.8em;
  color: #ffd54f;
}
html .floating-icon, body .floating-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  background-color: #FFD54F;
  font-size: 1.5em;
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html .minmax-icon, body .minmax-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
html .loader, body .loader {
  width: 100%;
  height: 100%;
  position: fixed !important;
  display: none;
  z-index: 10;
}
html .loader .loader-content, body .loader .loader-content {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(40, 40, 40, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html .loader .loader-content .alert-modal, body .loader .loader-content .alert-modal {
  width: 450px;
  height: 150px;
  position: absolute;
  background-color: white;
  display: grid;
  grid-template-rows: auto 35px;
}
html .loader .loader-content .alert-modal .alert-modal-top, body .loader .loader-content .alert-modal .alert-modal-top {
  width: 100%;
  height: 100%;
  position: relative;
}
html .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content, body .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content {
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  overflow-y: auto;
}
html .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container, body .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container {
  width: auto;
  height: auto;
  position: relative;
  margin-top: 10px;
  margin-bottom: 5px;
}
html .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container .icon, body .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container .icon {
  font-size: 2.5em;
}
html .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container .green, body .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container .green {
  color: #FFD54F;
}
html .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container .red, body .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .icon-container .red {
  color: red;
}
html .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .content-message, body .loader .loader-content .alert-modal .alert-modal-top .alert-modal-content .content-message {
  font-size: 0.9em;
  font-weight: 500;
}
html .loader .loader-content .alert-modal .alert-modal-bottom, body .loader .loader-content .alert-modal .alert-modal-bottom {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid rgba(40, 40, 40, 0.1);
  background-color: white;
}
html .loader .loader-content .alert-modal .alert-modal-bottom button, body .loader .loader-content .alert-modal .alert-modal-bottom button {
  height: 25px;
  width: auto;
  padding: 0 3px;
  margin-right: 5px;
  color: white;
  font-size: 0.75em;
  text-transform: capitalize;
  background-color: #282828;
  border: 1px solid #282828;
  border-radius: 3px;
}
html .loader .loader-content .loader-icon, body .loader .loader-content .loader-icon {
  width: 250px;
  height: 100px;
  position: absolute;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html .loader .loader-content .loader-icon .icon, body .loader .loader-content .loader-icon .icon {
  color: #282828;
  font-size: 2.5em;
  display: inline-block;
  animation: spin 0.5s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html .loader .loader-content .loader-icon .text, body .loader .loader-content .loader-icon .text {
  width: auto;
  height: auto;
  position: relative;
  margin-top: 10px;
  font-size: 0.8em;
}
html .loader .loader-content .brand-logo, body .loader .loader-content .brand-logo {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: white;
}
html .form-loader, body .form-loader {
  width: 100%;
  height: 100%;
  position: fixed !important;
  background-color: rgba(40, 40, 40, 0.95);
  display: none;
  z-index: 9;
}
html .form-loader .form-loader-content, body .form-loader .form-loader-content {
  width: 100%;
  height: 100%;
  position: absolute;
}
html .floating-button, body .floating-button {
  width: 35px;
  height: 35px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFD54F;
  border-radius: 50%;
  transition: 0.1s linear;
  cursor: pointer;
}
html .floating-button .icon, body .floating-button .icon {
  color: white;
}
html .floating-button:hover, body .floating-button:hover {
  box-shadow: 0 0 12px 0px #ffd54f;
}
html .primaryblue, body .primaryblue {
  background-color: #282828;
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.2);
}
html form, body form {
  width: 100%;
  height: auto;
  position: relative;
}
html form .section, body form .section {
  width: 100%;
  height: auto;
  position: relative;
}
html form .section .section-inner .top, body form .section .section-inner .top {
  width: 100%;
  height: auto;
}
html form .section .section-inner .top label, body form .section .section-inner .top label {
  font-size: 0.7em;
  font-weight: 550;
  color: #CCC;
}
html form .section .section-inner .top .required, html form .section .section-inner .top .reset, body form .section .section-inner .top .required, body form .section .section-inner .top .reset {
  width: auto;
  height: auto;
  position: relative;
  float: right;
  font-size: 0.7em;
  font-style: italic;
  color: rgba(0, 0, 0, 0.4);
}
html form .section .section-inner .top .required, body form .section .section-inner .top .required {
  color: #666;
  margin-top: 5px;
}
html form .section .section-inner .top .reset, body form .section .section-inner .top .reset {
  margin-bottom: 5px;
  font-weight: 600;
  font-style: normal;
  color: #FFD54F;
  cursor: pointer;
}
html form .section .section-inner .bottom, body form .section .section-inner .bottom {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
html form .section .section-inner .bottom .show-password-icon, body form .section .section-inner .bottom .show-password-icon {
  width: auto;
  height: auto;
  position: absolute;
  font-size: 1.3em;
  color: #FFD54F;
  right: 3px;
  bottom: 3px;
  cursor: pointer;
}
html form .section .section-inner .bottom .text-button, body form .section .section-inner .bottom .text-button {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
html form .section .section-inner .bottom .text-button .text, body form .section .section-inner .bottom .text-button .text {
  font-size: 0.7em;
  font-weight: 600;
  color: #FFD54F;
  padding: 3px;
  border-radius: 3px;
  background-color: rgba(255, 213, 79, 0.1);
  cursor: pointer;
  transition: 0.1s linear;
}
html form .section .section-inner .bottom .text-button .text:hover, body form .section .section-inner .bottom .text-button .text:hover {
  background-color: rgba(255, 213, 79, 0.2);
}
html form .section .section-inner .bottom input, html form .section .section-inner .bottom select, body form .section .section-inner .bottom input, body form .section .section-inner .bottom select {
  width: 100%;
  padding: 5px 5px;
  font-size: 0.75em;
  background-color: #282828;
  border: 1px solid #282828;
  border-bottom: 1px solid black;
  border-radius: 3px;
  color: #CCC;
  outline: none;
  transition: 0.1s linear;
}
html form .section .section-inner .bottom .date, body form .section .section-inner .bottom .date {
  padding: 2.5px 0;
  font-size: 1em;
}
html form .section .section-inner .bottom input:focus, body form .section .section-inner .bottom input:focus {
  border-bottom: 1px solid #FFD54F;
}
html form .section .section-inner .bottom select:focus, body form .section .section-inner .bottom select:focus {
  border-bottom: 1px solid #FFD54F;
}
html form .section .section-inner .bottom button, body form .section .section-inner .bottom button {
  width: 100%;
  height: 30px;
  position: relative;
  color: #282828;
  font-size: 0.75em;
  background-color: #FFD54F;
  border: 1px solid #282828;
  border-radius: 3px;
}
html form .section .section-inner .bottom .hidden, body form .section .section-inner .bottom .hidden {
  display: none;
}
html form .section .section-inner .bottom .list-search, html form .section .section-inner .bottom .switch-mode, body form .section .section-inner .bottom .list-search, body form .section .section-inner .bottom .switch-mode {
  width: 120px;
}
html form .section .section-inner .bottom .list-search .icon, html form .section .section-inner .bottom .switch-mode .icon, body form .section .section-inner .bottom .list-search .icon, body form .section .section-inner .bottom .switch-mode .icon {
  position: relative;
  margin-right: 5px;
  font-size: 1.6em;
}
html form .section .section-inner .bottom .switch-mode, body form .section .section-inner .bottom .switch-mode {
  display: flex;
  align-items: center;
  justify-content: center;
}
html form .section .section-inner .bottom .blueButton, body form .section .section-inner .bottom .blueButton {
  background-color: #FFD54F;
  border: 1px solid #FFD54F;
}
html form .section .section-inner .bottom .small-btn, body form .section .section-inner .bottom .small-btn {
  width: 150px;
}
html form .section .section-inner .bottom .tradein-btn, body form .section .section-inner .bottom .tradein-btn {
  width: auto;
  padding: 0 5px;
  background-color: #FFD54F;
  border: 1px solid #FFD54F;
  position: absolute;
  bottom: 5px;
}
html form .section .section-inner .bottom .icon, body form .section .section-inner .bottom .icon {
  background-color: #FFD54F;
  color: white;
  border-radius: 50%;
  cursor: pointer;
}
html form .section .section-inner .center, body form .section .section-inner .center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
html form .list-search, body form .list-search {
  display: flex;
  justify-content: center;
  align-items: center;
}
html form .name-prefix, body form .name-prefix {
  display: grid;
  grid-template-columns: 50px auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .customer-type, body form .customer-type {
  display: grid;
  grid-template-columns: 150px auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .two-grid, body form .two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .three-grid, body form .three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .four-grid, body form .four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .five-grid, body form .five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .six-grid, body form .six-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .seven-grid, body form .seven-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html form .eight-grid, body form .eight-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
html table, body table {
  width: 100%;
  height: auto;
  border-collapse: separate;
  border-spacing: 0;
}
html table thead, body table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
html table thead tr th, body table thead tr th {
  font-size: 0.75em;
  padding: 10px 0;
  font-weight: 500;
  color: #FFD54F;
  background-color: #3c3c3c;
  border-bottom: 1px solid #282828;
}
html table tbody, body table tbody {
  z-index: 0;
}
html table tbody tr, body table tbody tr {
  transition: 0.1s linear;
  text-align: center;
  background-color: #3c3c3c;
}
html table tbody tr td, body table tbody tr td {
  font-size: 0.7em;
  padding: 5px 5px;
  border: 1px solid #282828;
  position: relative;
  color: #CCC;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html table tbody tr .underfollowup, body table tbody tr .underfollowup {
  color: #00E5FF;
}
html table tbody tr .quote, body table tbody tr .quote {
  color: #EF5350;
}
html table tbody tr .booked, body table tbody tr .booked {
  color: #39FF14;
}
html table tbody tr td .customer-moreinfo-container, html table tbody tr td .enquiry-moreinfo-container, html table tbody tr td .car-moreinfo-container, body table tbody tr td .customer-moreinfo-container, body table tbody tr td .enquiry-moreinfo-container, body table tbody tr td .car-moreinfo-container {
  width: 100px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 5px;
  background-color: #282828;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 5;
}
html table tbody tr td .customer-moreinfo-container ul, html table tbody tr td .enquiry-moreinfo-container ul, html table tbody tr td .car-moreinfo-container ul, body table tbody tr td .customer-moreinfo-container ul, body table tbody tr td .enquiry-moreinfo-container ul, body table tbody tr td .car-moreinfo-container ul {
  width: 100%;
  height: auto;
  position: relative;
  list-style: none;
}
html table tbody tr td .customer-moreinfo-container ul li, html table tbody tr td .enquiry-moreinfo-container ul li, html table tbody tr td .car-moreinfo-container ul li, body table tbody tr td .customer-moreinfo-container ul li, body table tbody tr td .enquiry-moreinfo-container ul li, body table tbody tr td .car-moreinfo-container ul li {
  width: 100%;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  margin: 8px 0;
  padding: 3px 3px;
  cursor: pointer;
  transition: 0.1s linear;
}
html table tbody tr td .customer-moreinfo-container ul li:hover, html table tbody tr td .enquiry-moreinfo-container ul li:hover, html table tbody tr td .car-moreinfo-container ul li:hover, body table tbody tr td .customer-moreinfo-container ul li:hover, body table tbody tr td .enquiry-moreinfo-container ul li:hover, body table tbody tr td .car-moreinfo-container ul li:hover {
  color: #FFD54F;
}
html table tbody tr td .rupee, body table tbody tr td .rupee {
  font-size: 1.5em;
}
html table tbody tr td .edit-icons, body table tbody tr td .edit-icons {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
html table tbody tr td .edit-icons .icon, body table tbody tr td .edit-icons .icon {
  width: 25px;
  height: 25px;
  margin: 0 5px;
  font-size: 1.5em;
  border: 1px solid rgba(40, 40, 40, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: 0.1s linear;
  cursor: pointer;
}
html table tbody tr td .edit-icons .icon:hover, body table tbody tr td .edit-icons .icon:hover {
  background-color: #282828;
  color: white;
}
html table tbody tr td .link, body table tbody tr td .link {
  padding: 2px 2px;
  border-bottom: dotted 2px #FFD54F;
  background-color: rgba(255, 213, 79, 0.2);
  cursor: pointer;
}
html table tbody tr td .status, body table tbody tr td .status {
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
}
html table tbody tr td .price, body table tbody tr td .price {
  font-size: 1em;
  font-weight: 600;
  color: black;
}
html table tbody tr td .green, body table tbody tr td .green {
  color: green;
}
html table tbody tr td .na, body table tbody tr td .na {
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(255, 0, 0, 0.7);
}
html table tbody tr td .bookbtn, html table tbody tr td .linkbtn, body table tbody tr td .bookbtn, body table tbody tr td .linkbtn {
  width: auto;
  height: auto;
  position: relative;
  background-color: #282828;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  font-weight: 500;
  padding: 3px;
  border: 1px solid #282828;
  border-radius: 3px;
  cursor: pointer;
}
html table tbody tr .number, body table tbody tr .number {
  text-align: right;
  padding-right: 5px;
  font-weight: 500;
}
html table tbody .select-list, body table tbody .select-list {
  cursor: default;
}
html table tbody .select-list td .icon, body table tbody .select-list td .icon {
  font-size: 1.7em;
  color: rgba(40, 40, 40, 0.2);
}
html table tbody .highlight, body table tbody .highlight {
  border: 1px solid #282828;
}
html table tbody tr:hover, body table tbody tr:hover {
  background-color: rgba(60, 60, 60, 0.7);
}

body .container {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: auto 200px 350px;
}
body .container .left {
  width: 100%;
  height: 100%;
  position: relative;
}
body .container .left .left-container {
  width: 100%;
  height: 100%;
  position: absolute;
}
body .container .left .left-container .left-container-top {
  width: 100%;
  height: 100%;
  position: relative;
  background: url("../../assets/media/backgrounds/background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body .container .left .left-container .left-container-top .section-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(40, 40, 40, 0.9);
}
body .container .left .left-container .left-container-top .section-container .logo {
  font-size: 1.5em;
  font-weight: 500;
  color: #FFD54F;
  font-family: "Montserrat Alternates", sans-serif;
  position: absolute;
  top: 15px;
  left: 15px;
}
body .container .left .left-container .left-container-top .section-container .title {
  font-size: 1.6em;
  color: white;
  position: relative;
  margin-top: 10px;
  padding-top: 5px;
  display: none;
  border-top: 2px solid #FFD54F;
}
body .container .left .left-container .left-container-top .section-container .brandlogo {
  width: 180px;
}
body .container .left .left-container .left-container-bottom {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #282828;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .container .left .left-container .left-container-bottom .section-container {
  width: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 25px;
}
body .container .left .left-container .left-container-bottom .section-container .section {
  width: 150px;
  height: 80%;
  position: relative;
  background-color: white;
  border-radius: 3px;
}
body .container .left .left-container .app-logo {
  width: auto;
  height: auto;
  position: absolute;
  top: 10px;
  left: 10px;
}
body .container .left .left-container .app-logo .text {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1em;
  color: #FFD54F;
}
body .container .left .left-container .app-title {
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
body .container .left .left-container .app-title .icon {
  font-size: 2.5em;
  color: #FFD54F;
}
body .container .left .left-container .app-title .text {
  color: white;
  font-size: 3em;
  font-weight: 600;
  margin-left: 5px;
}
body .container .left .left-container .app-breif {
  width: auto;
  height: auto;
  position: relative;
  border-top: 1px solid #FFD54F;
  margin-top: 10px;
  padding-top: 10px;
}
body .container .left .left-container .app-breif .text ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}
body .container .left .left-container .app-breif .text ul li {
  margin: 0 5px;
  color: white;
  font-size: 0.8em;
}
body .container .features {
  width: 100%;
  height: 100%;
  position: relative;
}
body .container .features .features-container {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
body .container .features .features-container .section-container {
  width: 70%;
  height: 90px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body .container .features .features-container .section-container .title-text {
  font-size: 0.95em;
  color: #FFD54F;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
  margin-bottom: 5px;
}
body .container .features .features-container .section-container .subtitle-text {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.7);
}
body .container .right {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #3c3c3c;
}
body .container .right .right-container {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body .container .right .right-container .loginform-container {
  width: 100%;
  height: auto;
  position: relative;
  padding: 15px;
}
body .container .right .right-container .loginform-container .brandlogo-container {
  width: auto;
  height: auto;
  position: relative;
  margin-bottom: 10px;
  padding: 5px;
}
body .container .right .right-container .loginform-container .brandlogo-container .text {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 2.5em;
  color: #FFD54F;
}
body .container .right .right-container .loginform-container .form-title {
  width: auto;
  height: auto;
  position: relative;
  color: #FFD54F;
}
body .container .right .right-container .copyrights-container {
  width: auto;
  height: auto;
  position: absolute;
  bottom: 10px;
}
body .container .right .right-container .copyrights-container .text {
  font-size: 0.75em;
}
body .form-loader {
  display: none;
}
body .form-loader .form-loader-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
body .form-loader .form-loader-content .registration-container {
  width: 350px;
  height: 90%;
  position: relative;
  padding: 15px;
  background-color: #3c3c3c;
}
body .form-loader .form-loader-content .registration-container .brandlogo-container {
  width: auto;
  height: auto;
  position: relative;
  margin-bottom: 10px;
  padding: 5px;
}
body .form-loader .form-loader-content .registration-container .brandlogo-container .text {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 2.5em;
  color: #FFD54F;
}
body .form-loader .form-loader-content .registration-container .form-title {
  width: auto;
  height: auto;
  position: relative;
  color: #FFD54F;
}/*# sourceMappingURL=login.css.map */