.post-type-buttons-container
{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-bottom: 1px solid #04AA52;
    margin-bottom: 40px;
}
.post-type-button, .post-type-button-selected
{
    width: 202px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 28px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-shadow: 1px 1px 1px #00000059;
    border-radius: 0;
    transition: ease-out .2s;
}
.post-type-button
{
    background-color: #959598;
}
.post-type-button:focus, .post-type-button:hover
{
    background-color: #737376;
}
.post-type-button-selected
{
    background-color: #04AA52;
}
.post-type-button-selected:hover, .post-type-button-selected:focus
{
    background-color: #007236;
}