.form-control{
    color: #555;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 200px; /* adjust this value as needed */
}
.parent-menu-element {
    position: relative;
}
/* The container */
.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

/* Hide the default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* The custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

/* On hover, change the background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, change the background color and add a checkmark */
.checkbox-container input:checked ~ .checkmark {
    background-color: #f5ab36;
}

/* The checkmark */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when the checkbox is checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
.input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 50%;
}

.locationList {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.locationList li {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.locationList li:hover {
    background-color: #f0f0f0;
}

.styled-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.styled-button-2 {
    background-color: rgb(224, 91, 104);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.mask-overlay:before {
    background-color: #00000075;
}
.theme-menu > li {
    padding: 0 0 0 20px!important;
}
.form-group [type="checkbox"] + span::before {
    content: ""!important;
}
.form-group [type="checkbox"]:checked + span:before {
    content: ""!important;
}
.checkmark:after {
    content: ""!important;
}
.alert-success{
    color: #fff;
    background-color: #4CAF50;
    border-color: #4CAF50;
}
.alert-danger{
    color: #fff;
    background-color: #f44336;
    border-color: #f44336;
}
.alert-primary{
    color: #fff;
    background-color: #2196F3;
    border-color: #2196F3;
}
.alert-warning{
    color: #fff;
    background-color: #ff9800;
    border-color: #ff9800;
}
body{
    color: #393939;
}
.contact-detail p{
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .logo {
        width: 200px;
    }
}
.h-54{
    height: 54px;
}
.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: #f5ab36 !important;
    border-color: #f5ab36;
    border-radius: unset;
    color: white;
}
.text-primary{
    color: #f5ab36 !important;
}
.bg-blur{
    background-color: #00000073;
    padding: 10px;
    width: 100%;
}
.ml-3{
    margin-left: 3rem;
}
.mt-3{
    margin-top: 3rem;
}