html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

main {
    max-width: 90%;
}

body {
    margin-bottom: 60px;
    background: #F6F5F3;
    margin: 0;
    padding: 0;
    height: 100%;
    color: #3C3B39;
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 600;
    min-height: 100%;
}

.container {
    display: flex;
    justify-content: space-around;
}

h1 {
    text-align: center;
}

.button {
    display: inline-grid;
    padding: 8px 12px 9px 12px;
    color: #686765;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
    border-color: #8f8e8e;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    box-sizing: border-box;
    background: transparent;
}

.table-content, .content {
    font-weight: 400;
}

.table-header {
    font-weight: 600;
}

td {
    padding: 0 5px;
}

.multi-cell {
    display: flex;
    flex-direction: column;
}

input[type=text], textarea, input[type=date], input[type=number], input[type=password], input[type=submit] select {
    width: 100%;
    padding: 5px 10px 8px 12px;
    box-sizing: border-box;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    border: none;
    outline: none;
    color: #8F8E8E;
    -webkit-box-shadow: 0 0 0 5000px #e7e7e7 inset !important;
    -moz-box-shadow: 0 0 0 5000px #E7E7E7 inset !important;
    box-shadow: 0 0 0 5000px #e7e7e7 inset !important;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
}

.form-group {
    margin: 10px 0;
}

.action-block {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    justify-content: space-between;
}

.alert-danger {
    color: red;
}
