
.voice-input-container[data-v-3fc7c45a] {
  position: relative;
  display: inline-block;
}
.voice-button[data-v-3fc7c45a] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-button[data-v-3fc7c45a]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}
.voice-button[data-v-3fc7c45a]:active {
  transform: translateY(0);
}
.voice-button.recording[data-v-3fc7c45a] {
  background: linear-gradient(135deg, #dc3545, #c82333);
  animation: pulse-3fc7c45a 1.5s infinite;
}
.voice-button.processing[data-v-3fc7c45a] {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  cursor: not-allowed;
}
.voice-button[data-v-3fc7c45a]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@keyframes pulse-3fc7c45a {
0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
}
70% {
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
}
100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
}
}
.recording-indicator[data-v-3fc7c45a] {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse[data-v-3fc7c45a] {
  width: 8px;
  height: 8px;
  background: #dc3545;
  border-radius: 50%;
  animation: pulse-dot-3fc7c45a 1s infinite;
}
@keyframes pulse-dot-3fc7c45a {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.3;
}
}
.transcript-display[data-v-3fc7c45a] {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 300px;
  font-size: 14px;
  z-index: 1000;
}
.transcript-display p[data-v-3fc7c45a] {
  margin: 0;
  color: #495057;
}
.transcript-display strong[data-v-3fc7c45a] {
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.voice-button[data-v-3fc7c45a] {
    width: 45px;
    height: 45px;
    font-size: 16px;
}
.recording-indicator[data-v-3fc7c45a] {
    font-size: 11px;
    padding: 6px 10px;
}
.transcript-display[data-v-3fc7c45a] {
    max-width: 250px;
    font-size: 13px;
    padding: 10px;
}
}


.chatbot[data-v-25e824c8] {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}
.hide[data-v-25e824c8] {
  bottom: -30px;
  right: -30px;
}
.hide .chatbot-button[data-v-25e824c8] {
  background-color: #f27314;
}
.hide .chatbot-button img[data-v-25e824c8] {
  opacity: 0;
}
.chatbot-container[data-v-25e824c8] {
  position: relative;
  min-height: 80px;
  min-width: 80px;
}
.chatbot-icon[data-v-25e824c8] {
  pointer-events: none;
  position: absolute;
  padding: 14px 20px;
  top: 0;
  left: 0;
  color: white;
  font-size: 20px;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.hide .chatbot-icon[data-v-25e824c8] {
  opacity: 1;
}
.chatbot-button[data-v-25e824c8] {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: solid 2px #f27314;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.chatbot-button img[data-v-25e824c8] {
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
  z-index: 4;
}
.close-button[data-v-25e824c8] {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background-color: #f27314;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.body[data-v-25e824c8] {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: solid 2px #f27314;
  border-radius: 40px;
  overflow: hidden;
  width: 400px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.header[data-v-25e824c8] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f27314;
  color: white;
  padding: 20px;
}
.header-actions[data-v-25e824c8] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header h3[data-v-25e824c8] {
  margin: 0;
  text-align: left;
  color: white;
  font-size: 24px;
  font-weight: bold;
}
.header i[data-v-25e824c8] {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.header i[data-v-25e824c8]:hover {
  transform: rotate(180deg);
}
.chat[data-v-25e824c8] {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  padding-top: 30px;
  max-height: 400px;
  overflow-y: auto;
}
.chat div[data-v-25e824c8] {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}
.bot[data-v-25e824c8] {
  background-color: #E1EFF9;
  align-self: flex-start;
}
.user[data-v-25e824c8] {
  align-self: flex-end;
}
.text-input-container[data-v-25e824c8] {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.text-input-container input[data-v-25e824c8] {
  flex: 1;
  padding: 10px 20px;
  border: solid 2px #f27314;
  border-radius: 100vh;
}
.text-input-container button[data-v-25e824c8] {
  background-color: #f27314;
  color: white;
  border: none;
  border-radius: 100vh;
  padding: 10px 20px;
  cursor: pointer;
}
.redirect-input-container[data-v-25e824c8] {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.redirect-input-container a[data-v-25e824c8] {
  padding: 10px 20px;
  background-color: rgba(242, 115, 20, 1);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 100vh;
  transition: all 0.2s ease-in-out;
}
.redirect-input-container a[data-v-25e824c8]:hover {
  background-color: rgba(242, 115, 20, 0.8);
}
.option-input-container[data-v-25e824c8] {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}
.option-input-container a[data-v-25e824c8] {
  padding: 10px 20px;
  background-color: rgba(242, 115, 20, 0.8);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 100vh;
  transition: all 0.2s ease-in-out;
}
.option-input-container a[data-v-25e824c8]:hover {
  background-color: rgba(242, 115, 20, 1);
  color: white;
}
@media (max-width:720px) {
.chatbot[data-v-25e824c8] {
    bottom: 1rem;
    right: 1rem;
}
.hide[data-v-25e824c8] {
    bottom: -30px;
    right: -30px;
}
.body[data-v-25e824c8] {
    width: calc(100vw - 2rem);
    right: 0;
    bottom: 0;
}
.chat[data-v-25e824c8] {
    max-height: calc(100vh - 12rem);
}
}



.modal {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  overflow-y: auto;
  padding: 50px 0;
}
.modal-dialog {
  position: relative;
  margin: 0 auto;
  pointer-events: none;
  max-width: 500px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0.3rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.5);
  pointer-events: auto;
  background-clip: padding-box;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  cursor: pointer;
}
.close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


label[data-v-cdd55c90] {
  margin: 0;
}
input[type=file][data-v-cdd55c90] {
  display: none;
}


/*
label {
  display: block;
}

.text-muted {
  margin: 0;
  font-size: 12px;
}
*/


.card[data-v-38b6bfdc] {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 2px solid #c6c6c6c5 !important;
  border-radius: 0.5rem !important;
}
.box-shadow[data-v-38b6bfdc] {
  box-shadow: 0px 50px 80px 0px rgba(15, 19, 25, 0.1);
}
.popular-label[data-v-38b6bfdc] {
  text-align: left;
}
.btn-melda-orange[data-v-38b6bfdc] {
  background-color: #fff; 
  color: #f17e2b;
  border:  2px solid #c6c6c6c5;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: lighter;
  width: 80%;
  margin: 0 auto;
}
.card[data-v-38b6bfdc] {
  border-radius: 0.5rem;
}
.card-body[data-v-38b6bfdc] {
  flex: 1 1 auto;
  padding-top: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.top-card-section[data-v-38b6bfdc] {

  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
}
.badge[data-v-38b6bfdc] {
  color: #011627fe;

  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #fff;
  border: 2px solid #c6c6c6c5;
  margin-left: 3.5rem;
  margin: 0.5rem;
  text-align: right;
}
.card-spacing[data-v-38b6bfdc] {
  margin: 1.5rem;
}
.button-container[data-v-38b6bfdc] {
  position: relative;
  margin-top: auto;
  text-align: center;
}
.popular-card-background[data-v-38b6bfdc] {
  background-color: #011627fe;
  color: #fff;
}
.btn-professional[data-v-38b6bfdc] {
  background-color: #011627fe;
  color:#f17e2b;
  border:  2px solid #c6c6c6c5;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: lighter;
  width: 80%;
  margin: 0 auto;
}



#sign-up-form-wrapper[data-v-b615d506] {
  background-color: rgba(255, 255, 255, 0.402);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#sign-up-btn[data-v-b615d506] {
  background-color: #f17e2b;
  border-color: #ff6624ee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.23);
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
}
#sign-up-btn[data-v-b615d506]:hover {
  background-color: #ff6524;
  border-color: #ff6524;
}
.btn-melda-orange[data-v-b615d506]:hover {
  background-color: #833210;
  border-color: #952d00;
}
#sign-up-form-wrapper h4[data-v-b615d506] {
  font-size: 1rem;
}
#sign-up-form-wrapper .form-group[data-v-b615d506] {
  padding: 5px !important;
}
.modal[data-v-b615d506] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content[data-v-b615d506] {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
}
.modal-header[data-v-b615d506] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header .close[data-v-b615d506] {
  background: none;
  border: none;
}
.blurred[data-v-b615d506] {
  filter: blur(5px);
  transition: filter 0.2s;
  background-color: #0116277b;
}
#data-science-card[data-v-b615d506] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
#pricing-card[data-v-b615d506] {
   min-height: 60vh;
}
#styling-wrapper[data-v-b615d506] {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#data-science-card .lower-half-circle[data-v-b615d506] {
  background: linear-gradient(
    to bottom,
    #011627 0%,
    #011627 20%,
    #011627 40%,
    #204a6d9e 60%,
    #1d315222 100%
  );
  height: 100%;
  width: 120%;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
  position: absolute;
  bottom: 40%;
}
.project-mockup[data-v-b615d506] {
  z-index: 4;
  width: 35%;
  position: relative;
  padding: 2rem;
}
.metrics-container[data-v-b615d506] {
  z-index: 3;
  position: absolute;
  bottom: 10%;
  width: 50%;
}
.wrapper[data-v-b615d506] {
  box-shadow: 0px 10px 15px rgba(34, 35, 37, 0.308);
  border: 2px solid rgba(73, 69, 69, 0.262);
  border-radius: 15px;
  padding: 0.5rem;
  max-height: 150px;
}
.metric-item[data-v-b615d506] {
  position: relative;
}
.metric-item[data-v-b615d506]:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(73, 69, 69, 0.262);
}
.text-melda-orange[data-v-b615d506] {
  color: #f17e2b;
}
.custom-shadow[data-v-b615d506] {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.1);
}
#feature-icon[data-v-b615d506] {
  font-size: 2rem;
  color: rgb(255, 255, 255);
}
.icon-container[data-v-b615d506] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8vh;
  height: 8vh;
  border-radius: 50%;
  background-color: #011627;
}

/* For 4k screen */
@media (min-width: 2560px) {
.metrics-container[data-v-b615d506] {
    width: 80%;
    bottom: 20%;
}
.information-container h2[data-v-b615d506] {
    font-size: 9rem !important;
}
.information-container h4[data-v-b615d506] {
    font-size: 5rem !important;
}
#sign-up-btn[data-v-b615d506] {
    font-size: 3rem !important;
    margin-top: 2rem !important;
}
.metric-item h2[data-v-b615d506] {
    font-size: 4rem !important;
}
.lower-half-circle[data-v-b615d506] {
    width: 100%;
    bottom: 20%;
}
.metric-item p[data-v-b615d506] {
    font-size: 1.5rem;
}
.project-mockup[data-v-b615d506] {
    width: 40%;
    padding: 1rem;
}
.information-container[data-v-b615d506] {
    margin-bottom: 20%;
}
.information-container h2[data-v-b615d506] {
    font-size: 4rem;
}
}
@media (max-width: 1280px) {
#sign-up-btn[data-v-b615d506] {
    font-size: 1.25rem;
}
.w-25[data-v-b615d506] {
    display: none;
}
.metric-item h2[data-v-b615d506] {
    font-size: 2.5rem;
}
.lower-half-circle[data-v-b615d506] {
    width: 100%;
    bottom: 15%;
}
.project-mockup[data-v-b615d506] {
    
    width: 30%;
    padding: 1rem;
}
.metrics-container[data-v-b615d506] {
    width: 85%;
    bottom: 14%;
    font-size: 0.75rem;
}
}
@media (max-width: 1024px) {
.metrics-container[data-v-b615d506] {
    width: 70%;
    bottom: 15%;
}
#sign-up-btn[data-v-b615d506] {
    font-size: 0.5rem;
}
.metric-item h2[data-v-b615d506] {
    font-size: 0.75rem;
}
.lower-half-circle[data-v-b615d506] {
    border-radius: 0 0 0% 0% / 0 0 100% 100% !important;
    width: 100%;
    bottom: 5%;
}
.project-mockup[data-v-b615d506] {
    width: 10% !important;
    max-width: 100%;
    height: auto;
    bottom: 10% !important;
    padding: 1rem;
}
}
@media (max-width: 992px) {
.metrics-container[data-v-b615d506] {
    width: 85% !important;
    bottom: 15%;
}
#sign-up-btn[data-v-b615d506] {
    font-size: 1rem;
}
.metric-item h2[data-v-b615d506] {
    font-size: 2rem !important;
}
.lower-half-circle[data-v-b615d506] {
    border-radius: 0 0 0% 0% / 0 0 100% 100% !important;
    width: 100%;
    bottom: 5%;
}
.project-mockup[data-v-b615d506] {
    width: 90% !important;
    bottom: 10% !important;
    position: relative;
    padding: 1rem;
}
}


/* for mac  */
@media (max-width: 840px) {
.metrics-container[data-v-b615d506] {
    width: 85% !important;
    bottom: 15%;
}
#sign-up-btn[data-v-b615d506] {
    font-size: 1rem;
}
.metric-item h2[data-v-b615d506] {
    font-size: 1.5rem !important;
}
.lower-half-circle[data-v-b615d506] {
    width: 100%;
    bottom: 10%;
}
.project-mockup[data-v-b615d506] {
    width: 50% !important;
    bottom: 10% !important;
    position: relative;
    padding: 1rem;
}
}
@media (max-width: 768px) {
.metrics-container[data-v-b615d506] {
    width: 70%;
    bottom: 15%;
}
#sign-up-btn[data-v-b615d506] {
    font-size: 1rem;
}
.metric-item h2[data-v-b615d506] {
    font-size: 2rem;
}
.lower-half-circle[data-v-b615d506] {
    width: 100%;
    bottom: 10%;
}
.project-mockup[data-v-b615d506] {
    width: 50% !important;
    bottom: 10% !important;
    position: relative;
    padding: 1rem;
}
}
@media (max-width: 576px) {
.metrics-container[data-v-b615d506] {
    width: 100% !important;
}
.metric-item[data-v-b615d506] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#sign-up-btn[data-v-b615d506] {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}
.metric-item h2[data-v-b615d506] {
    font-size: 1.45rem !important;
}
.wrapper[data-v-b615d506] {
    height: 80%;
    box-shadow: 0px 10px 15px rgba(34, 35, 37, 0) !important;
    border: 2px solid rgba(73, 69, 69, 0) !important;
}
.lower-half-circle[data-v-b615d506] {
    border-radius: 0 0 0% 0% / 0 0 100% 100% !important;
    width: 100%;
    bottom: 5%;
}
.project-mockup[data-v-b615d506] {
    width: 65% !important;
    margin-top: 2% !important;
}
.information-container[data-v-b615d506] {
  
    margin-top: 10% !important;
}
}




#lms-container[data-v-3def3279] {
  background-image: url("/api/images/endless-constellation-blue-second.svg");
  background-position: center;
  border-radius: 6px;
}
#lms-card[data-v-3def3279]::before {
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container[data-v-3def3279] {
  /* max-width: 1600px; */
  /* min-width: 1400px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sign-up-btn[data-v-3def3279] {
  background-color: #ff6624ee;
  border-color: #ff6624ee;
}
#sign-up-btn[data-v-3def3279]:hover {
  background-color: #ff6524;
  border-color: #ff6524;
}
.btn-melda-orange[data-v-3def3279]:hover {
  background-color: #833210;
  border-color: #952d00;
}
#lms-card[data-v-3def3279] {
  
  width: 100%;

  background-position: center;
  border-radius: 6px;


  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#sign-up-form-wrapper[data-v-3def3279] {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
.container[data-v-3def3279] {
    max-width: 100%;
    padding: 0 30px;
}
#sign-up-form-wrapper[data-v-3def3279] {
    width: 100%;
    padding: 20px;
}
}
@media (max-width: 992px) {
.container[data-v-3def3279] {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.row[data-v-3def3279] {
    flex-direction: column;
}
.col-md-5[data-v-3def3279], .col-md-6[data-v-3def3279] {
    width: 100%;
}
#sign-up-form-wrapper[data-v-3def3279] {
    max-width: 90%;
}
}
@media (max-width: 768px) {
#lms-card[data-v-3def3279] {
    min-height: 10vh;
}
#lms-container[data-v-3def3279] {
    background-size: cover;
}
.container[data-v-3def3279] {
    max-width: 100vw;
}
#sign-up-form-wrapper[data-v-3def3279] {
    margin-top: 10px;
    max-width: 80vw;
}
#sign-up-form-wrapper h4[data-v-3def3279] {
    font-size: 1.2rem;
}
#sign-up-form-wrapper .form-group[data-v-3def3279] {
    margin-bottom: 10px;
    padding: 10px !important;
}
}
@media (max-width: 576px) {
.container[data-v-3def3279] {
    padding: 0 15px;
}
#sign-up-form-wrapper[data-v-3def3279] {
    max-width: 95%;
}
#sign-up-form-wrapper h4[data-v-3def3279] {
    font-size: 1rem;
}
#sign-up-form-wrapper .form-group[data-v-3def3279] {
    padding: 5px !important;
}
#lms-card-title[data-v-3def3279] {
    font-size: 2rem;
}
}
@media (min-width: 1600px) {
.screenshot-image[data-v-3def3279]:hover {
      transform: scale(2.2);
}
}
@media (min-width: 1600px) {
.screenshot-image[data-v-3def3279]:hover {
      transform: scale(2.2);
}
}



#create-account-btn[data-v-79ed5f1b] {
  background-color: #ff6524;
  border-color: #ff6524;
}
#create-account-btn[data-v-79ed5f1b]:hover {
  background-color: #ff6624ee;
  border-color: #ff6624ee;
}
#sign-up[data-v-79ed5f1b] {
  margin-top: 10px;
}
#sign-up .container #sign-up-row #sign-up-column #sign-up-box[data-v-79ed5f1b] {
  max-width: 600px;
  height: 320px;
}
#sign-up .container #sign-up-row #sign-up-column #sign-up-box #sign-up-form[data-v-79ed5f1b] {
  padding: 20px;
}
#sign-up
  .container
  #sign-up-row
  #sign-up-column
  #sign-up-box
  #sign-up-form
  #register-link[data-v-79ed5f1b] {
  margin-top: -85px;
}
.recaptcha[data-v-79ed5f1b] {
  display: flex;
  justify-content: center;
  margin-left: 20px;
}
.form-group[data-v-79ed5f1b] {
  position: relative;
  margin-bottom: 20px;
}
.form-control[data-v-79ed5f1b] {
  padding-right: 40px; /* Space for icon */
}
.form-control-feedback[data-v-79ed5f1b] {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
.form-control-feedback i[data-v-79ed5f1b] {
  font-size: 20px;
}
.invalid-feedback[data-v-79ed5f1b] {
  color: #dc3545;
}
.valid-feedback[data-v-79ed5f1b] {
  color: #28a745;
}
.button-hover[data-v-79ed5f1b] {
  background-color: rgba(242, 115, 20, 1);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.button-hover[data-v-79ed5f1b]:hover {
  background-color: rgba(242, 115, 20, 0.8);
}


.loaded:before {
  content: "\A0";
}


.dropdown-content {
  position: absolute;
  z-index: 8;
}
.fix-to-right {
  right: 0;
}
.fix-to-bottom {
  bottom: 0;
}


:target {
  -webkit-animation: target-fade 3s;
  -moz-animation: target-fade 3s;
  -o-animation: target-fade 3s;
  animation: target-fade 3s;
}
@-webkit-keyframes target-fade {
from {
    background-color: yellow;
}

  /* [1] */
to {
    background-color: #f27315;
}
}
@-moz-keyframes target-fade {
from {
    background-color: yellow;
}

  /* [1] */
to {
    background-color: #f27315;
}
}
@-o-keyframes target-fade {
from {
    background-color: yellow;
}

  /* [1] */
to {
    background-color: #f27315;
}
}
@keyframes target-fade {
from {
    background-color: yellow;
}

  /* [1] */
to {
    background-color: #f27315;
}
}


#nav[data-v-5c31b6aa] {
  min-height: 60px;
  position: sticky;
  top: 0;
  background-color: #011627;
  z-index: 50;
}
h5[data-v-5c31b6aa] {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
#modal-header[data-v-5c31b6aa] {
  display: flex;
  color: #007bff;

  justify-content: center;
  align-items: center;
}
.card-deck a[data-v-5c31b6aa] {
  text-decoration: none;
}
.card-deck a[data-v-5c31b6aa]:hover {
  text-decoration: none;
}
.card[data-v-5c31b6aa] {
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
  background-color: #f4f3f3a0;
  border: 1.2px solid #8a8a8a;
  height: calc(100% - 20px);
  width: 100%;
  padding: 1px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* shake  */
@keyframes tiny-swirl-5c31b6aa {
0% {
    transform: rotate(0deg);
}
25% {
    transform: rotate(2deg);
}
50% {
    transform: rotate(-3deg);
}
75% {
    transform: rotate(2deg);
}
100% {
    transform: rotate(0deg);
}
}
.card[data-v-5c31b6aa]:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: tiny-swirl-5c31b6aa 0.5s ease-in-out;
  animation-iteration-count: 1;
  transform-origin: center;
}
.card-img-top[data-v-5c31b6aa] {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 200px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #8a8a8a;
}
.card-body[data-v-5c31b6aa] {
  padding: 10px;
}
.card-title[data-v-5c31b6aa] {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.card-text[data-v-5c31b6aa] {
  font-size: 1rem;
  color: #555;
}
.stage-edit[data-v-5c31b6aa] {
  margin-right: 20px;
}
.view.overlay[data-v-5c31b6aa] {
  position: relative;
}
.view.overlay:hover .mask[data-v-5c31b6aa] {
  opacity: 1;
}
.view.overlay:hover .card-img-top[data-v-5c31b6aa] {
  filter: brightness(90%);
}
.view-overlay .card-title[data-v-5c31b6aa] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.trial-counter p[data-v-5c31b6aa] {
  margin-bottom: 5px !important;
}
.trial-counter[data-v-5c31b6aa] {
  background-color: white;
  color: black;
  height: auto;
  border-radius: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 1px;
  padding-bottom: 1px;
  align-items: center;
}

/* For larger screens, the cards are displayed in a row. For smaller screens, the cards are displayed in a column. */
@media only screen and (max-width: 768px) {
.card-deck[data-v-5c31b6aa] {
    display: flex;
    flex-direction: column;
}
}
#nav .navbar-item[data-v-5c31b6aa] {
  margin: 0 15px;
}

/* For mobile phones: no margins for navbar items */
@media only screen and (max-width: 768px) {
#nav .navbar-item[data-v-5c31b6aa] {
    margin: 0;
}
}
.navbar-dark .navbar-nav .nav-link[data-v-5c31b6aa] {
  color: #ffffffcc !important;
}
#melda-logo[data-v-5c31b6aa] {
  width: 48px !important;
  height: 36px !important;
}
#version[data-v-5c31b6aa] {
  font-size: 8px;
  position: absolute;
}
.text-box[data-v-5c31b6aa] {
  width: 100%;
  height: 300px;
  line-height: 3em;
  overflow: auto;
  padding: 5px 5px;
  float: right;
  align-items: center;
  justify-content: center;
}
*[data-v-5c31b6aa] {
  box-sizing: border-box;
}

/* Style the tab */
.tab[data-v-5c31b6aa] {
  float: left;
  width: 15%;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button[data-v-5c31b6aa] {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button[data-v-5c31b6aa]:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active[data-v-5c31b6aa] {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent[data-v-5c31b6aa] {
  float: left;
  padding: 0px 0px;
  border: 1px solid #ccc;
  width: 85%;
  height: 100%;
}
.multiline[data-v-5c31b6aa] {
  word-wrap: break-word;
  max-width: 200px;
}
.language[data-v-5c31b6aa] {
  z-index: 1;
  margin-top: 50px;
}
.notification[data-v-5c31b6aa] {
  overflow-y: auto !important;
  max-height: 250px;
}
.white-color[data-v-5c31b6aa] {
  color: #fff;
}
.workspace-modal[data-v-5c31b6aa] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  z-index: 100;
}
@media (max-width: 1200px) {
.workspace-container[data-v-5c31b6aa] {
    width: 80% !important;
}
.workspace-body[data-v-5c31b6aa] {
    flex-direction: column !important;
}
.workspace-card[data-v-5c31b6aa] {
    min-width: 100% !important;
}
}
.workspace-container[data-v-5c31b6aa] {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 30px 30px;
  gap: 20px;
  background-color: white;
  border-radius: 20px;
}
.workspace-header h1[data-v-5c31b6aa] {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}
.workspace-body[data-v-5c31b6aa] {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.workspace-card[data-v-5c31b6aa] {
  position: relative;
  cursor: pointer;
  width: 100%;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
  background: linear-gradient(
    315deg,
    rgba(163, 216, 255, 1) 0%,
    rgba(228, 240, 248, 1) 100%
  );
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border: rgba(163, 216, 255, 1) solid 2px;
  transition: all ease-in-out 200ms;
}
.workspace-card[data-v-5c31b6aa]:hover {
  background: linear-gradient(
    315deg,
    rgba(163, 216, 255, 1) -50%,
    rgba(228, 240, 248, 1) 100%
  );
  border-color: #f27314;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.workspace-card-icon[data-v-5c31b6aa] {
  font-size: 2.5rem;
  color: white;
  background-color: #011627;
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.workspace-card h2[data-v-5c31b6aa] {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #f27314;
  font-weight: bold;
  margin: 0;
}
.workspace-card ul[data-v-5c31b6aa] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.workspace-card ul li[data-v-5c31b6aa] {
  font-size: 1rem;
  color: #011627;
  margin-bottom: 10px;
}
.workspace-card span[data-v-5c31b6aa] {
  text-transform: lowercase;
  color: #011627;
}
.workspace-select[data-v-5c31b6aa] {
  position: absolute;
  padding: 5px 20px;
  font-size: 1.2rem;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: #f27314;
  background-color: #f27314;
  color: white;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 200ms;
}
.workspace-select[data-v-5c31b6aa]:hover {
  background-color: #011627;
}
.button-hover[data-v-5c31b6aa] {
  background-color: rgba(242, 115, 20, 1);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.button-hover[data-v-5c31b6aa]:hover {
  background-color: rgba(242, 115, 20, 0.8);
}
.tour-start-button a[data-v-5c31b6aa] {
  color: rgba(0, 128, 0, 0.8) !important;
}
.tour-start-button a[data-v-5c31b6aa]:hover {
  color: rgba(0, 128, 0, 1) !important;
}
.custom-radio[data-v-5c31b6aa] {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
}
.custom-radio input[data-v-5c31b6aa] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark[data-v-5c31b6aa] {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
  border: 1px solid #717171;
}
.custom-radio:hover input ~ .checkmark[data-v-5c31b6aa] {
  background-color: #ccc;
}
.custom-radio input:checked ~ .checkmark[data-v-5c31b6aa] {
  background-color: #c9e4fa;
}
.checkmark[data-v-5c31b6aa]:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-radio input:checked ~ .checkmark[data-v-5c31b6aa]:after {
  display: block;
}
.custom-radio .checkmark[data-v-5c31b6aa]:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.language-picker-icon[data-v-5c31b6aa] {
  background-color: #011627;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #5abaaa;
}
.text-selected[data-v-5c31b6aa] {
  color: #5abaaa;
  font-weight: bold;
  border-radius: 5px;
}
.language-picker-box[data-v-5c31b6aa] {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 5px 10px;
  border: 1.2px solid #f7f7f7;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all ease-in-out 200ms;
}
.language-picker-dropdown[data-v-5c31b6aa] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 10px;
  padding: 5px 10px;
  border: 1.2px solid #f7f7f7;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.language-picker-item[data-v-5c31b6aa] {
  padding: 4px !important;
  border-radius: 5px;
  cursor: pointer;
  transition: all ease-in-out 200ms;
}
.language-picker-text[data-v-5c31b6aa] {
  font-size: 15px;
  color: #011627;
}
.icon-container[data-v-5c31b6aa] {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
}
.icon-container[data-v-5c31b6aa]:hover {
  text-decoration: none;
}
.icon-container i[data-v-5c31b6aa] {
  font-size: 100px;
  color: #011627;
}
.nav-link[data-v-5c31b6aa] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1080px) {
#version[data-v-5c31b6aa] {
    display: none !important;
}
}
.navbar[data-v-5c31b6aa] {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1024px) {
.container-fluid[data-v-5c31b6aa] {
    display: none !important;
}
.navbar-mobile[data-v-5c31b6aa] {
    display: block !important;
    width: 100%;
}
}
.navbar-mobile[data-v-5c31b6aa] {
  display: none;
}
.navbar-mobile-main[data-v-5c31b6aa] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.navbar-mobile-main .navbar-mobile-brand[data-v-5c31b6aa] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-mobile-right[data-v-5c31b6aa] {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}
.navbar-mobile-button[data-v-5c31b6aa] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  background-color: transparent;
  border: none;
  color: white;
  padding: 0;
}
.navbar-mobile-avatar[data-v-5c31b6aa] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-mobile-notification-counter span[data-v-5c31b6aa] {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f27314;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 0.75rem;
  height: 0.75rem;
  transform: translate(50%, -50%);
}
.navbar-mobile-brand[data-v-5c31b6aa] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.navbar-mobile-hamburger[data-v-5c31b6aa] {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  padding-bottom: 0.5rem;
  background-color: #011627;
  color: white;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.navbar-mobile-item[data-v-5c31b6aa] {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.navbar-mobile-item *[data-v-5c31b6aa] {
  color: white;
  text-decoration: none;
  margin: 0;
  margin-right: 1rem;
}
.navbar-mobile-dropdown[data-v-5c31b6aa] {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}
.navbar-mobile-dropdown *[data-v-5c31b6aa] {
  font-size: 1.25rem !important;
  font-weight: 200 !important;
  margin-bottom: 0.75rem !important;
}
.navbar-mobile-divider[data-v-5c31b6aa] {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}
.navbar-mobile-selected[data-v-5c31b6aa] {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 0;
}
.navbar-mobile-selected p[data-v-5c31b6aa] {
  color: #f27314;
  font-weight: 200;
  margin: 0;
}
.navbar-mobile-notifications[data-v-5c31b6aa] {
  display: flex;
  flex-direction: column;
}
.navbar-mobile-notification[data-v-5c31b6aa] {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  background-color: #e1eff9;
  color: #011627;
  padding: 1rem;
  border-radius: 0.5rem;
}
.navbar-mobile-notification-info[data-v-5c31b6aa] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.navbar-mobile-notification-info i[data-v-5c31b6aa] {
  font-size: 1.5rem;
  margin: 0;
}
.navbar-mobile-notification-info p[data-v-5c31b6aa] {
  margin: 0;
  color: rgb(1, 22, 39, 0.5);
  font-size: 1rem;
}
.navbar-mobile-notification-message[data-v-5c31b6aa] {
  margin-bottom: 0.75rem;
}
.navbar-mobile-notification-message p[data-v-5c31b6aa] {
  margin: 0;
  font-size: 1.25rem;
}
.navbar-mobile-notification-actions[data-v-5c31b6aa] {
  display: flex;
}
.navbar-mobile-notification-actions button[data-v-5c31b6aa] {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
}
.trial-counter[data-v-5c31b6aa] {
  background-color: #fff;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.trial-counter p[data-v-5c31b6aa] {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.trial-counter span[data-v-5c31b6aa] {
  font-weight: bold;
  color: #f27314;
  font-size: 16px;
}
.trial-counter .expiring[data-v-5c31b6aa] {
  color: #dc3545;
  animation: pulse-5c31b6aa 1s infinite;
}
@keyframes pulse-5c31b6aa {
0% {
    opacity: 1;
}
50% {
    opacity: 0.5;
}
100% {
    opacity: 1;
}
}
@media (max-width: 768px) {
.trial-counter[data-v-5c31b6aa] {
    padding: 3px 10px;
}
.trial-counter p[data-v-5c31b6aa] {
    font-size: 12px;
}
.trial-counter span[data-v-5c31b6aa] {
    font-size: 14px;
}
}


.v-step {
  background-color: white !important;
  color: black !important;
  border-radius: 10px !important;
  padding: 20px !important;
  box-shadow: 0 0 10px 5px rgba(0,0,0,.2) !important;
  z-index: 10050 !important;
}
.v-tour {
  z-index: 10050 !important;
}
.v-step__buttons button {
  background-color: white !important;
  color: #008000  !important;
  border: solid #008000 2px !important;
  font-weight: 800 !important;
  border-radius: 5px !important;
  padding: 5px 10px !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
}
.v-step__buttons button:hover {
  background-color: #008000 !important;
  color: white !important;
}
.v-tour__target--highlighted {
  box-shadow: 0 0 10px 5px #008000, 0 0 0 99999px rgba(0,0,0,.2) !important;
  z-index: 9999 !important;
}


