﻿/* Hide number input arrow buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield; /* Rest of the browsers */
}

.select2 {
    width: 100% !important;
}
#map{
    width:100%;
    height:500px;
    border-radius:10px;
    border:1px solid black;
}
.two-line-wrap {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main-card {
    display: flex;
    justify-content: space-between;
}

.sub-card {
    width: 48%; /* Adjust width as needed */
    padding: 10px;
    color: white;
    text-align: center;
    background-color: #f7f7f7;
    color:black;
    font-weight:bold
}
.spacer {
    width: 10px; /* Adjust width as needed */
    height: auto;
    display: inline-block;
}
.sub-card-container-flex {
    display: flex;
    align-items: center;
}
.sub-card-flex-vcenter {
    display: flex;
    align-items: center; /* Vertically center content */
    font-weight: bold;
    background-color: #f7f7f7;
    padding: 10px;
    width: 48%; /* Adjust width as needed */
}
.header-nav:not(.slideInDown.animated) {
    background-color: black !important;
}