#price
{     
   height:100%;
       
}
#priceBox
{      
    display: flex;
    flex-direction: column;
    align-items: space-between;    
    height:100%; 
    background-color: black;
    opacity:0.75;
    
}
#priceTitle
{
    text-align:center; 
    margin-top:0;  
    flex:1;
}
#priceMiddle
{       
   flex:4; 
   flex-wrap: wrap;
    
}
#priceFooter
{
    flex:1;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#gallery
{
    text-align: center;
    background-color: red;
    width:100%;
    border:1px solid red;
    flex:1;
}
.box
{
    padding:.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#form-message-warning, #form-message-success {
  display: none;
}

#form-message-warning {
  color: #f64b3c;
}

#form-message-success {
  color: #8cba51;
  font-size: 18px;
  font-weight: bold;
}
/*************************************************/
/* Style the video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (change as needed) */
  overflow: hidden;
}

/* Style the video */
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}



