#CeremonyModal, #ReceptionModal, #locationModal {
    display: none;
}

#locationModal .modal-content, #CeremonyModal .modal-content, #ReceptionModal .modal-content{
    width: 100%;
    height: 80vh;
}

#btnContainer {
    position: absolute;
    display: flex;
    width: 370px;
    height: 200px; 
    top: 535px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;  
    /* background-color: black; */
}

@supports (-webkit-touch-callout: none) {
    #btnContainer {
        top: 525px;
    }
}


#btnLocation, #btnCeremony, #btnReception, #btnConfirm {
    display: none; 
    position: absolute;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    outline: none;
    width: 185px; 
    height: 100px;
}

#btnLocation{
    top: 0px;
    left: 3%;
    width: 47%; 
    height: 100px;
    /* background-color: orange;  */
}

#btnCeremony{
    display: none; 
    top: 110px;
    left: 10px;
    width: 45%; 
    height: 50px;
    /* background-color: pink;  */
}

#btnReception{
    top: 0px;
    left: 3%;
    width: 47%; 
    height: 100px;
    /* background-color: orange;  */
}

#btnConfirm {
    top: 0px;
    right: 3%;
    width: 47%; 
    height: 100px;
     /* background-color: yellow;  */
}

#btnLocation:hover, #btnCeremony:hover, #btnReception:hover, #btnConfirm:hover,
#btnLocation:active, #btnCeremony:active, #btnReception:active, #btnConfirm:active{
    animation: shake 0.6s;
}

.LocationName {
    text-align: center;
    color:rgb(106, 107, 107);
}