*{
    padding: 0;
    margin: 0;
}

body {
    background-color: rgba(247,247,247,0.4);
}

.select-container {
    background-image: url(../../img/indeximg/blood.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100px;
    display: flex;
    color: white; 
    direction: rtl;
}
.select-padding {
    padding: 3px;
    padding-top: 10px;
}
.select-grow {
    flex-grow: 1;
}
.select-design {
    width: 100%;
    padding: 12px;
    border: 2px solid rgb(102, 13, 13);
    border-radius: 4px;
    resize: vertical;
    font-weight: 700;
    font-size:large;
}
label {
    font-weight: 700;
    font-size:large;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
    direction: rtl;
}

.card {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 270px;
    /*cursor: pointer;*/
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    background-color: white;
    font-family: DINNextLTArabic,Cairo,sans-serif!important;
    display: flex;
    flex-direction: column;
}

  
.card:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.img-blood {
    width: 100px;
    height: 90px;
    padding-top: 10px;
}
.text-blood-information {
    padding-top: 10px;
    padding-right: 20px;
    font-weight: 700;
    font-size:large;
}

@media screen and (max-width: 400px) {
    .card{width: 100%;}
}

.icon-heart {
    font-size: 65px;
    color: #E41655;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: 0.5s;
    cursor: pointer;
}
.icon-heart:hover{
    color: #280F34;
}
.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #ff9d00da;/*ff9e00*/
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: large;
    padding: 5px;
    width: 130px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
  
.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
.button:hover span {
    padding-right: 25px;
}
  
.button:hover span:after {
    opacity: 1;
    right: 0;
}
.margin-button {
    margin-bottom: 50px;
}