*{
    box-sizing: border-box;
}

.navbar {
    min-height: 100px;
}

.confirmation-alert{
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.category-box {
    margin-top: 10px;
    height: 150px;
    overflow: scroll;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    padding: 10px;
}

.category-box ul {
    margin: 0;
    padding: 0;
}

.category-box ul li {
    display: block;
    margin-bottom: 5px;
}

.category-box ul li label {
    margin: 0;
    cursor: pointer;
}

.btn-upload{
    position: relative;
}
.btn-upload input[type="file"]{    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.top-title{
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 15px;
    font-weight: bold;
}

.top-title i{
    font-weight: normal;
}

.block{
    border: 1px solid #eeeeee;
    border-radius: 5px;
    width: 100%;
    min-height: 100px;
    padding: 20px;
}

.title-content{
    font-size: 20px;
    font-weight: bold;
}

.info-block{
    display: flex;
    padding: 10px 0px;
}

.text-block{
    padding:15px 0px;
}

@media screen and (max-width: 576px){
    .title-content{
        font-size: 16px;
    }
    
    .info-block{
        font-size: 12px;
    }
    
    .text-block{
        font-size: 12px;
    }   

    .responsive-button{
        font-size: 15px !important;
        padding-top: 3px !important;
        height: 30px;
    }
}