#quick-shipping-button {
    background-color: #0B57A7;
    color: white;
    border: none;
    padding: 17px 29px;
    border-radius: 3px;
    cursor: pointer;
	margin-top: 0px;
}

.loader {
    display: contents; 
    position: fixed;
    top: 50%;
    left: 50%;
    text-align: center; 
    transform: translate(-50%, -50%); 
    z-index: 10;
}

/* Modal Styles */

#farefreight-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.6); 
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.response {
	margin-top: 10px;
}

.button-container {
    display: flex;
    justify-content: center; 
    margin-top: 10px;
}

.get-quote-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
	background-color: #0B57A7;
	color: white;
	margin-top: 10px;
	font-weight: 400;
}

.heading-container {
    display: flex;
    justify-content: center;
    background-color: #0B57A7; 
    padding: 10px 0;
	margin-bottom: 10px;
	margin-top: 15px;
}

.heading-container h3 {
    color: white; 
    margin: 0;
    font-size: 24px; 
	font-weight: 400;
}

.radio-group {
    display: flex;
    align-items: center; 
	margin-top: 10px;
}

.radio-group label {
	margin-left: 5px; 
    margin-right: 15px;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%; 
    max-width: 700px; 
    position: relative;
	font-size: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black; 
    text-decoration: none;
    cursor: pointer; 
}

.location-row {
    display: flex;
    margin-top: 10px;
	width: 100%;
	flex-wrap: wrap;
}

.location-row input,
.location-row select {
    flex: 1;
    padding: 8px;
    margin-right: 10px;
	border: 1px solid black;
}

.location-row input:last-child {
    margin-right: 0;
}

.error-message {
	color: red;
}