* {
    padding: 0;
    margin: 0;
}

body {
    /*background-color: rgba(247, 247, 247, 0.4);*/
    background-image: url(../../img/mytransactionsimg/doctor.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: left;
}

.header-information-flex{
    display: flex;
    justify-content: center;
}

.header-information{
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    padding: 10px;
    border-bottom: solid 1px #000;
    width: 230px;
}

.container{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    width: 250px;
    text-align: center;
    position: relative;
    background-color: #fff;
    margin: 10px;
}

.title {
    color: grey;
    font-size: 18px;
}

.text {
    font-size: 18px;
    padding: 5px;
}

@media screen and (max-width: 600px) {
    .card {
        width: 300px;
    }
    body{
        background-image: url(../../img/mytransactionsimg/wood.jpg);
        background-position: left;
    }
    .header-information{
        width: 280px;
    }
}

/***************************************************************************************************/
.card-back {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.text-information {
    font-size: 18px;
    color: #6C7A89;
    padding: 10px;
}

span {
    color: #000;
}

/****************************************************/

.accordion {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;

    transition: 0.1s;
}

.active:hover {
    opacity: 0.7;
    color: #fff;
}

.accordion:hover {
    opacity: 0.7;
}

.accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    float: left;
}

.active:after {
    content: "\2212";
    color: #fff;
}

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    direction: rtl;
    background-color: #fff;
    color: #fff;
}