@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', 'century gothic', sans-serif;
    font-size: medium;
}

.container {
    padding: 10px;
    background-color: rgb(218, 231, 255);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    overflow: scroll;
}

.box {
    max-width: 90%;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(18, 101, 255, .1);
    box-shadow: 2px 2px 1px 3px rgba(0, 0, 0, .1);
}

.form-control {
    padding: 10px 3px;
    align-items: center;
    align-content: center;
    justify-content: center;
    max-width: 100%;
    line-break: normal;
    word-break: normal;
}

.btnprimary {
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    margin: 20px 5px;
}

.title {
    display: block;
    margin: 5px 10px;
    width: 100%;
    font-size: 60px;
    color: rgba(0, 0, 0, .1);
    text-align: center;
}

hr {
    color: rgba(0, 0, 0, .09);
    margin: 10px;
}

.borderred {
    border-style: solid !important;
    border-width: 2px !important;
    border-color: red !important;
}

.error {
    color: red !important;
    max-width: 100%;
    word-wrap: normal;
    line-break: normal;
}

.textcenter {
    text-align: center !important;
}

.bold {
    font-weight: bold;
    font-size: 25px;
}

input[type='checkbox'] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    outline: none;
}

.modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-height: 100%;
}

.dialog {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    border-radius: 15px;
    background-color: #C6D9FF;
    box-shadow: 2px 2px 1px 3px rgba(0, 0, 0, .1);
}

.dialogheader {
    width: 100%;
    background-color: #DAE7FF;
    border-radius: 15px 15px 0px 0px;
    padding: 20px;
    font-weight: bolder;
    font-size: larger;
}

.dialogbody {
    padding: 20px;
}

.dialogbuttons {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.hidden {
    display: none;
}

.dimmed {
    background-color: grey !important;
    cursor: not-allowed !important;
}

.flexrow {
    display: flex;
    flex-direction: row;
    align-items: center;
}

table {
    width: 100%;
    max-width: 100%;
    height: min-content;
    overflow-y: scroll;
}

.scroll {
    margin: 10px;
    max-width: 100%;
    max-height: 35%;
    overflow-y: scroll;
}

td {
    word-wrap: break-word;
    word-break: break-all;
}

.flex-col {
    display: flex;
    flex-direction: column !important;
}

.success {
    color: green;
}

.justify-even-space {
    justify-content: space-evenly;
}

.partrow>form {
    width: 100%;
}

.plane {
    background-color: transparent;
    border: none;
    outline: none;
}

.combound-button {
    padding: 5px 10px;
    margin: 3px;
    background-color: #B2C3E5;
    border-radius: 3px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: fit-content;
    color: white;
    cursor: pointer;
}

.combound-button>i {
    font-weight: bolder;
    margin: 5px;
}

.left-curve {
    border-radius: 200px 3px 3px 200px;
}

.right-curve {
    border-radius: 3px 200px 200px 3px;
}

.btn50 {
    display: flex;
    height: 100%;
    align-items: center;
}

.btn50>i {
    padding: 5px;
    font-size: 30px;
    font-weight: bolder;
    cursor: pointer;
}

.btn30 {
    height: 100%;
    cursor: pointer;
    padding: 5px;
    font-weight: bolder;
    align-self: center;
    justify-self: center;
}

.btn30>i {
    font-size: 25px;
}

.center-content {
    justify-content: center !important;
}