div#control_panel {
    z-index: 3;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, 0%);
    background: rgba(0, 0, 0, 0%);
}

div.closed {
    margin-top: -160%;
    transition: margin 0.5s ease-out 0.5s;
}

div.hide {
    background: red;
}

div.show {
    background: green;
}

div.opened {
    margin-top: 0;
    transition: margin 0.5s ease-out 0.5s;
}

#dialogAddDrug {
    background: whitesmoke;
    position: relative;
    border: 2px solid rgb(97, 218, 157);
    border-radius: 0 0 15px 15px;
    height: auto;
    margin-left: 5px;
    margin-right: 5px;
    padding: 1px;
}

@keyframes timing {
    100% {
        margin-top: 200px;
    }
}

div#addDrugControlPanel {
    border: 1px solid red;
    align-content: center;
}

/*----------------------------*/

body {
    font-family: sans-serif;
}

.carousel {
    background: #EEE;
    height: auto;
    border: 0px solid black;
}

.carousel-cell {
    width: 66%;
    margin-right: 10px;
    border-radius: 5px;
    counter-increment: gallery-cell;

    height: 50px;
    position: relative;
    background: rgb(97, 218, 157);
    border: 0px solid black;
}

.carousel-cell:before {
    display: block;
    text-align: center;
    line-height: 100px;
    font-size: 80px;
    color: white;
}

.carousel-title {
    font-size: 24px;
    position: absolute;
    top: 20%;
    width: 100%;
    text-align: center;
    color: white;
}

.panel {
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
    border: 0px solid black;
}

.drug_name_panel {
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
    border: 0px solid black;
    height: 50px;
}

#medicine_name {
    height: 100%;
    font-size: 20px;
    border-radius: 5px;
    border: 2px solid rgb(97, 218, 157);
}

.input-group {
    height: 100px;
}

.control_panel {
    margin-top: 50px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#btnAdd {
    border: 3px solid rgb(97, 218, 157);
    border-radius: 5px;
    height: 40px;
    width: 70px;
    font-size: 18px;
}

#iconAdd {
    margin: 8px;
    border: 1px solid black;
}

/* drug candidates popup menu */

.ui-menu {

}

.ui-menu-item {
    font-size: 20px;
}

.ui-menu-item em {
    font-style: normal;
    font-weight: 700
}

.ui-menu .ui-menu-item a {
    font-size: 12px
}

.ui-menu .aut.ui-menu-item {
    border-bottom: 1px dotted #ccc
}

.ui-menu .aut.ui-menu-item:last-child {
    border-bottom: none
}

.ui-menu .aut.ui-menu-item a {
    line-height: 1.2;
    color: #2e3f51;
    word-break: break-word
}

.ui-menu .aut.ui-menu-item i {
    margin-right: 8px;
    font-size: 12px;
    color: #999
}

.error {
    position: relative;
    animation: shake .1s linear;
    animation-iteration-count: 3;
}

@keyframes shake {
    0% { left: -5px; }
    100% { right: -5px; }
}