#helpCenterOverlay {
    position: fixed;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

#helpCenterWidget {
    background-color: white;
    width: 35%;
    box-shadow: 0px 0px 40px #bbbbbb;
    border-radius: 15px;
    padding: 10px 0;
    font-family: "museo-sans", sans-serif;
    font-weight: 300;
    font-style: normal;

}

#titleRow {
    display: flex;
    justify-content: space-between;
    font-size: 25px;
    padding: 20px 25px 0px 25px;
    font-weight: 900;
}

#subTitleRow {
    padding: 0px 25px 20px 25px;
    color: #eb5957;
    font-size: 15px;
}

#closePopup {
    cursor: pointer;
}

#questionRow {
    display: flex;
    justify-content: space-between;
    padding: 10px 25px;
    background-color: #eb5957;
}

#questionInput {
    background-color: #eb5957;
    border: 1px solid white;
    offset: none;
    color: white;
    outline: none;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    width: 100%;
}

#questionInput::placeholder {
    color:white;
}

#questionInput:focus {
    outline: none;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#helpCenterSearchButton {
    display: flex;
    color: white;
    align-items: center;
    width: 10%;
    justify-content: center;
    border: 1px solid white;
    border-radius: 10px;
    margin-left: 10px;
    cursor: pointer;
}

#blockRow {
    padding: 10px 15px;
    display: flex;
    justify-content: space-evenly;
}

.helpBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0f3d49;
    color: white;
    width: 100%;
    margin: 10px;
    height: 140px;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 900;
}

.helpBlock i {
    font-size: xxx-large;
    margin-bottom: 10px;
}

.helpBlock:hover {
    color: white;
}

.helpBlock:visited {
    color: white;
}