#infoDialog {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    border: none;
}
#infoDialog[open] {
    display: flex;
    justify-content: center;
    align-items: center;
}
#closeInfoBtn {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}
#closeInfoBtn img {
    width: 48px;
    height: 48px;
}
.infoDiv {
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
}
.infoSection {
    padding: 10px;
}
.infoSection button {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #008CBA;
    border: none;
    border-radius: 50px;
    transition: 0.2s;
}
.infoSection button:hover {
    background-color: #4CAF50;
}
.infoSection button.open {
    border-radius: 25px 25px 0 0;
}
.infoSection div {
    border-radius: 0 0 25px 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #07C2FF;
}
.infoSection p {
    padding: 24px;
}
.infoSection img {
    position: relative;
    top: 4px;
    width: 20px;
    height: 20px;
}