.required {
    color: red;
}

.input-group {
    display: flex; /* Align items horizontally */
    align-items: center; /* Center items vertically */
    width: 100%; /* Ensure the container takes up full width */
}

.country-code-container {
    flex: 0 0 10px; /* Fixed width for the dropdown container */
    margin-right: 0.3rem; /* Spacing between dropdown and input field */
}

.form-select {
    width: 100%; /* Full width of the container */
    height: 38px; /* Height to match the input field */
    background-color: #fff; /* White background for the dropdown */
    border: 1px solid #ced4da; /* Border style for dropdown */
    border-radius: 0.25rem; /* Border radius */
    text-align: center; /* Center the text and flags */
    appearance: none; /* Remove default dropdown styling */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.form-select option {
    display: flex; /* Align flag and code horizontally */
    align-items: center; /* Center the items vertically */
}

.input-field-container {
    flex: 1; /* Take up remaining space */
}

.form-control {
    width: 100%; /* Full width of the container */
    height: 38px; /* Height to match the dropdown */
    padding: 0.375rem 0.75rem; /* Adjust padding for better text alignment */
    font-size: 1rem; /* Font size for the input text */
    border: 1px solid #ced4da; /* Border style */
    border-radius: 0.25rem; /* Border radius */
    margin: 0; /* Remove margin */
}

.form-control:focus {
    border: 1px solid #ced4da; /* Border on focus */
    box-shadow: none; /* Remove default box-shadow */
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}
.text-danger {
    color: #dc3545 !important;
    font-size: 13px;
}




/* Country code drop down button css */
.custom-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #ffffff;
    padding-left: 2px;
}

.custom-btn-light {
    color: #212529;
    border-color: #f8f9fa;
    border-right: 1px solid #cccccc;
    padding-right: 5px;
    width: 60px;
}

#dropdown-menu {
    max-height: 300px; /* Adjust this value as needed */
    overflow-y: auto;  /* Enables vertical scrolling if content exceeds max-height */
    width:220px;
}

.toggle-password-custom-arrow {
    position: absolute;
    right: 10px; /* Align it to the right */
    top: 46px; /* Center vertically */
    transform: translateY(-50%); /* Adjust for the vertical center */
    cursor: pointer; /* Make it a pointer cursor */
}

 /* Loader Styles */
 .loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 20px;
}


.loader-message {
    font-size: 18px;  /* Adjust font size */
    color: #000;  /* Text color */
    text-align: center;
    font-weight: bold;
}

.loader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid #3498db; /* Loader color */
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Career Page  */
.description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Add ellipsis (...) at the end */
    line-height: 1.5em;
    /* Adjust based on your line height */
    max-height: 4.5em;
    /* line-height * 3 to show 3 lines */
    width: 100%;
    /* Ensure it has a width */
  }

  .no-jobs {
    min-height: 350px;
    /* Adjust this to control vertical height */
    margin-top: 30px;
  }

  .no-jobs-image {
    max-width: 300px;
    /* Adjust the size of the image */
  }

  .product-slider-area .comments-area .thumb {
    margin-right: 10px;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}
.product-slider-area .comments-area .comment-list .single-comment:not(:last-child){
    border-bottom: 1px solid #B9CAD0;
}


.privacy-policy-area ul {
    list-style: none;
    padding-left: 15px;
}
@media (max-width: 767px){
    .terms-and-conditions {
        padding-bottom: 30px;
    }
    form#profile-form .error-message#terms-error {
        bottom: 8px;
    }
}



