.post-card{
    width: 960px;
    background-color: var(--light-grey);
    display: flex;
    margin-bottom: 40px;
}

.side-bar{
    width: 45px;
    background-color: var(--dark-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0 15px 0;
    height: inherit;
}

.counter{
    color: var(--light-red);
}

.arrow{
    cursor: pointer;
    color: var(--light-red);
    font-size: 2rem;
}

.arrow:hover{
    color: var(--red);
}

.card-inner{
    padding: 15px;
    width: 100%;
}

.user-img{
    height: 25px;
    width: 25px;
    border-radius: 40px;
    padding: 0;
}

.user-div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.created-at{
    margin-left: 10px;
    color: var(--light-blue);
    font-size: .75rem;
    line-height: 0;
}

.created-at:hover{
    color: var(--dark-red);
}

.card-title{
    margin-top: 10px;
}

.img-or-text{
    margin-top: 10px;
    height: 350px;
    /* height: auto; */
    background-position: center;
    background-size: contain;
    background-color: var(--light-red);
    background-repeat: no-repeat;
    width: 100%;
    padding: 10px;
}

.img-or-text-without-img{
    margin-top: 10px;
    height: auto;
    background-position: center;
    background-size: contain;
    background-color: var(--light-red);
    background-repeat: no-repeat;
    width: 100%;
    padding: 10px;
}



.nothing{
    height: 0;
}

.login, .signup{
    z-index: 10;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--dark-red-trans);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-holder, .signup-holder{
    /* height: 350px; */
    width: 500px;
    background-color: var(--light-grey);
}

.login-header, .signup-header{
    height: 50px;
    background-color: var(--dark-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.login-header-text, .signup-header-text{
    color: var(--light-red);
    font-size: 1.35rem;
}

.close-popup{
    /* background-image: url('../assets/cutlery-light-red.png'); */
    object-fit: contain;
    height: 35px;
    cursor: pointer;
}

.close-popup:hover{
    transform: rotate(15deg);
}

.login-form, .signup-form{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    height: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.submit-div{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.new-user{
    font-size: .65rem;
}

.new-user-span{
    color: var(--red);
    cursor: pointer;
}

.new-user-span:hover{
    text-decoration: underline;
}

#sign-in-password, #sign-in-email, #sign-up-password, #sign-up-email, #user-name-input{
    width: 400px;
}

.sign-up-in{
    margin-bottom: 10px;
}

#add-recipe{
    margin-right: 10px;
}