.required::after {
  content: " *";
  color: red;
}

#more-about-yourself{
resize: none;
  }

.selectView {
  appearance: menulist;
  border-radius: 10;
  }



/* Adjust padding and margin for navbar content to fit within the specified width */
.navbar-brand,
.navbar-collapse {
padding-left: 15px;
padding-right: 15px;
}

/* Center the text vertically within the navbar */
.navbar-brand-img,
.navbar-nav li {
display: flex;
align-items: center;
height: 100%;
}

/* Adjust the height and line height for the text inside the navbar */
.navbar-brand-img img,
.navbar-nav li a {
height: 100%;
line-height: 1;
}

.loader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader div{
   border: 16px solid #f3f3f3; /* Light grey */
   border-top: 16px solid #3498db; /* Blue */
   border-radius: 50%;
   width: 120px;
   height: 120px;
   animation: spin 2s linear infinite;
}

@keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}

.swal2-container {
display: -webkit-box;
display: flex;
position: fixed;
z-index: 300000;
justify-content: center !important;
}

.mobile-cta{
display: none;
}

@media(max-width: 992px){

.desktop-cta{
    display: none;
}

.mobile-cta{
    display: inline-block;
}
}