main{
    width: calc(100vw - 2px);
    height: calc(100vh - 2px);
    max-height: -webkit-fill-available;
    max-width: 600px;
    border: 1px solid #000;
    margin: 0 auto;
    position: relative;
}

header{
    height: 60px;
    background: #333;
    width: 100%;
}

header .btn{
    margin: 5px;
    width: 50px;
    font-size: 20px;
}

main form{    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/*=======================================================
# MODAL FULL
=======================================================*/
.modal-full .modal-dialog {
    margin: 0px;
}

.modal-full .modal-content {
    min-height: 100vh;
    min-width: 100vw;
}

.modal-header,
.modal-body,
.modal-footer{
    padding: 10px;
}

/*=======================================================
# MOSTRA TASK
=======================================================*/
.task{
    display: flex;
    align-items: center;
    margin: 5px;
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;    
}

.task .task_content{
    width: 100%;
    margin-right: 5px;
}

.task .task_button{
    margin-left: auto;
}