#bg-img {
    /*background-image: url('../images/background3.png');*/
    background-color: #212529;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    background-position: center;
    background-size: cover;
    /*height: calc(100vh - 78px - 132px);*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

#about {
    background-color: #212529;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    color: white;
}

body  {
    display: flex;
    flex-direction: column;
    min-height:100vh;
    margin:0;
    padding-top: 78px;
}

#footer{
    margin-top:auto; 
}

.form-label {
    padding-top: 25px;
}

#current-p {
    font-weight: bold;
}

#title-prices {
    font-size: 2vh;
    font-weight: bold;
}

#a1 {
    border-right:1px solid #ffffff; 

}

@media only screen 
and (max-device-width : 768px) {
    #a1 {
        border-right:0px; 
    
    }
}

#gmap {
    padding-top: 15px;
}

.alert.alert-warning.warning {
    /*position: fixed;  
    bottom: 0px;  */
    color: red;
    animation: pulse 2s infinite;
    font-size: 3.5vh;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}