* {
    direction: rtl;
    text-align: center;
    box-sizing: border-box;
    margin: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    background-color: rgba(255, 255, 255, 0.5);
    height: 10vh;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    top: 0;
}
.chat {
    border-radius: 100px;
    position: fixed;
    right: 12px;
    bottom: 12px;
    margin-right: 0px;
    width: 5em;
    padding: 0;
}
.chat:hover {
    transform: scale(1.2);
}

.chat img {
    width: 100%;
}

#formD h2{
    margin-bottom: 2rem;
}
.Content1 {
    font-size: larger;
    align-items: center;
    text-align: center;
    margin-right: 35%;
}
.Content1 form {
    padding: 2rem;
    width: 65vh;
    height: 80;
    background-color: #e3e4bd;
    border-radius: 4rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 9rem;
}

.Content1 input {
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.Content1 button {
    margin-top: 2rem;
    padding: 1rem;
}

.Content1 input:focus {
    background-color: rgb(247, 240, 231);
}

main {
    display: none;
}

#items {
    margin-top: 12vh;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-right: 5vw;
}


.card img {
    width: 45%;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
}

.card {
    width: 40vw;
    height: 32vw;
    border: solid black 1px;
    border-radius: 0.8rem;
    padding: 2rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif, Times, serif;
    font-size: 1rem;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 3px 5px black;
}

.card button {
    padding: 1rem;
    width: 5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif, Times, serif;
    font-size: 1rem;
    background-color: #44a396;
    color: #ddd;
    margin-bottom: 0;
    border-radius: 5rem;
    width: 100%;
}
main #btn2{
    z-index: 8;
    padding: 1rem;
    position: fixed;
    top: 11vw;
    right: 0;
    background-color: #e3e4bd;
}
main #btn {
    z-index: 8;
    padding: 1rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
    position: fixed;
    top: 5vw;
    right: 0;
    background-color: #e3e4bd;
}
#DonationDiv h2,
#cart h2, #p {
   padding-left: 18vw;
    padding-bottom: 2rem;
}

#desc {
    display: flex;
    flex-direction: column;
}

#amount {
    display: flex;
    flex-direction: row;
}

#cart,#DonationDiv {
    border-radius: 2rem;
    padding: 1rem;
    margin-top: 15vh;
    margin-right: 25vw;
    flex-wrap: wrap;
    gap: 1rem;
}

.cartItem {
    width: 50vw;
    height: 10vw;
    border: solid black 1px;
    border-radius: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    margin: 2rem;
}

.cartItem img {
    width: 15%;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
}

.order {
    display: flex;
    flex-direction: column;
}

.video {
    overflow-x: hidden;
}

.video video {
    z-index: -1;
    width: 100vw;
    /* margin-top: 10vh; */
    box-shadow: 0px 0px 5px;
}

.bg-img {
    /* The image used */
    background-image: url("images/school.png");
    /* Control the height of the image */
    min-height: 100vh;
    opacity: 80%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Add styles to the form container */
#login_form {
    position: absolute;
    right: 0px;
    top: 8.5rem;
    margin: 1vw;
    max-width: 300px;
    padding: 16px;
    background-color: rgb(214, 215, 215);
    border-radius: 2rem;
}

/* Full-width input fields */
#login_form input[type=text],
#login_form input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

#login_form input[type=text]:focus,
#login_form input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit button */
#login_form .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btn:hover {
    opacity: 1;
}

/* ---------- register form ------------*/


/* Add padding to containers */
#regiter_form {
    position: absolute;
    right: 29vw;
    margin: 20px;
    max-width: 600px;
    padding: 16px;
    border-radius: 2rem;
    background-color: rgb(214, 215, 215);
    margin-top: 5rem;
}

#regiter_form .container {
    padding: 16px;
}

/* Full-width input fields */
#regiter_form input[type=text],
#regiter_form input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 10px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

#regiter_form input[type=text]:focus,
#regiter_form input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Overwrite default styles of hr */
#regiter_form hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Set a style for the submit/register button */
#regiter_form .registerbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

#regiter_form .registerbtn:hover {
    opacity: 1;
}

/* Add a blue text color to links */
#regiter_form a {
    color: dodgerblue;
}

/* Set a grey background color and center the text of the "sign in" section */
#regiter_form .signin {
    background-color: #f1f1f1;
    text-align: center;
}



/* פרופיל משתמש */
#user_profile_page {
    position: fixed;
    top: 0px;
    text-align: center;
    width: 100vw;
    margin: auto;
    margin-top: 10vh;
    background-color: rgba(255, 255, 255, 0.5);
}

#amount{
    display: flex;
    flex-direction: column;
}
#amount2{
    display: flex;
    flex-direction: row;
}
#pAmount{
    padding-left: 1rem;
    padding-right: 1rem;
}
#Bgarbage{
    background-color:white;
    border: none;
}
.show {
    display: block;
}

.hide {
    display: none;
}
/* מפה זה קשור למכתב תודה */
#imgTY img{
    position: fixed;
    display: flex;
    text-align: center;
    justify-content: center;
    right: 33vw;
    z-index: -1;
    width: 34%;
}
#thankYouLetter h1{
    margin-top: 8vw;
}
#ContentL{
padding-top: 15vw;
font-size: large;
}
#ContentL p{
padding: 0.2rem;
}

#res .cartItem{
    margin-right: 25vw;
}