#test_add_dialog{
    display: none;
    opacity: 0;
    position: fixed;
    border: 1px solid black;
    width: 400px;
    height: 500px;
    top: 10px;
    box-shadow: 0px 0px 0px 1000px rgba(0, 0, 0, 0.8);
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 0px;
    
    -webkit-transition: opacity .10s ease-in-out;
    -moz-transition: opacity .10s ease-in-out;
    -ms-transition: opacity .10s ease-in-out;
    -o-transition: opacity .10s ease-in-out;
    transition: opacity .10s ease-in-out;
}

#test_add_dialog span{
    display: block;
    border: 0px solid black;
    padding: 5px;
    margin: 0px;
    text-align: center;
    background-color: rgba(53, 44, 34, 0.9);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    color: thistle;
    font-size: 20px;
    text-transform: uppercase;
}

@-webkit-keyframes charge {
    from {
        background-color: cadetblue;
    }
    to {
        background-color: thistle;
    }
}

@-moz-keyframes charge {
    from {
        background-color: cadetblue;
    }
    to {
        background-color: thistle;
    }
}

@-ms-keyframes charge {
    from {
        background-color: cadetblue;
    }
    to {
        background-color: thistle;
    }
}

.anim_title_bar{
    -webkit-animation: charge 1s linear 0s infinite;
    -moz-animation: charge 1s linear 0s infinite;
    -ms-animation: charge 1s linear 0s infinite;
}

#test_add_dialog span img{
    float: right;
}

#test_dialog_body{
    display: block;
    width: 95%;
    height: 430px;
    margin: auto;
    overflow: auto;
    border: 0px solid black;
}

#test_dialog_body input[type="text"]{
    padding: 5px;
}

#test_dialog_body input[type="number"]{
    padding: 5px;
}



#test_dialog_body textarea{
    width: 90%;
    height: 100px;
    margin: auto;
}

#test_dialog_body select{
    padding: 5px;
    font-size: 16px;
    background-color: rgba(53, 44, 34, 0.9);
    color: thistle;
}

#test_dialog_body input[type="submit"]{
    background-color: rgba(53, 44, 34, 0.9);
    font-size: 16px;
    color: thistle;
    margin-top: 20px;
    padding: 5px;
    float: right;
}

#test_dialog_body input[type="button"]{
    background-color: rgba(53, 44, 34, 0.9);
    font-size: 16px;
    color: thistle;
    margin-top: 20px;
    padding: 5px;
}