#CeremonyModal, #ReceptionModal {
    display: none;
}

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

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

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

#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;
}

#btnCeremony{
    top: 0px;
    left: 0px;
    /* background-color: pink; */
}

#btnReception{
    top: 100px;
    left: 0px;
    /* background-color: orange; */
}

#btnConfirm {
    top: 0px;
    right: 0px;
    /* background-color: yellow; */
}

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

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