.dropdown-container {
    background-color: #f1f1f1;
    margin-bottom: 22px;
}
.dropdown-title-container {
    display: inline-block;
    display: -webkit-flex;
    display: flex;
    position: relative;
    height: 65px;
}

.dropdown-title {
    margin: 20px 0 0 15px !important;
    text-decoration: none;
    font-size: 20px;
    font-weight: normal;
    color: #000000;
}

.dropdown-button {
    background-color: #3b2568;
    position: absolute;
    right: 0;
    width: 65px;
    height: 65px;
    display: inline-block;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
}

.dropdown-button-image {
    max-width: 100%;
    height: auto;
    width: 23px;
}

.dropdown-content {
    padding-left : 15px;
    max-height: 0;
    transition: max-height 1s ease-out; /* It has to close quicker because it starts at a hidden 1500px height */
    overflow: hidden;
}

.show-dropdown {
    max-height: 1500px;
    transition: max-height 5s ease-out;
}
