.swal2-title
{
    font-family:'Montserrat',sans-serif;
    font-size: 1rem;
    font-weight: bold;
}
.swal2-content
{
    font-family:'Montserrat',sans-serif;
    font-size: 0.9rem;
    font-weight: normal;
}
.swal2-confirm,.swal2-cancel
{
    font-family:'Montserrat',sans-serif;
    font-weight: normal;
}
html
{
    width:100%;
    min-width:100%;
    max-width:100%;
    height:100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
    margin:0;
}
body
{
    width:100%;
    min-width:100%;
    max-width:100%;
    height:100%;
    min-height: 100%;
    max-height: 100%;
    background-color: var(--body-background);
    margin:0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #111111;
}
.wrapper
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width:100%;
    min-width:100%;
    max-width:100%;
    height:100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
}
.input-search
{
    width:calc(100% - 2rem);
    min-width:calc(100% - 2rem);
    max-width:calc(100% - 2rem);
    border-radius: 0.3rem;
    height: 3rem;
    min-height: 3rem;
    max-height: 3rem;
    color: white;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
    border: .1rem solid white;
    box-sizing: border-box;
    padding: .5rem;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: normal;
}
.outer-container
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width:100%;
    min-width:100%;
    max-width:100%;
    overflow-y: auto;
    flex: 1;
    border-top: .1rem solid gray;
    border-bottom: .1rem solid gray;
    gap: 1rem;
    box-sizing: border-box;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.form-outer-container
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    width:calc(100% - 2rem);
    min-width:calc(100% - 2rem);
    max-width:calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: .5rem;
    background-color: #333333;
}
.form-title-container
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    width:100%;
    min-width:100%;
    max-width:100%;
}
.form-title-row
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    width:100%;
    min-width:100%;
    max-width:100%;
}
.form-title-span
{
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    color: gray;
}
.spacer
{
    margin-left: auto;
}
.form-title-input
{
    width:100%;
    min-width:100%;
    max-width:100%;
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    background-color: transparent;
    margin-top: 0.5rem;
}
.form-inner-container
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width:100%;
    min-width:100%;
    max-width:100%;
}
.form-val-row
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    width:100%;
    min-width:100%;
    max-width:100%;
    border-radius: 0.5rem;
    background-color: #575757;
    box-sizing: border-box;
    padding: 0.5rem;
    margin-top: .5rem;
}
.form-val-inner-row
{
    width:100%;
    min-width:100%;
    max-width:100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.form-val-select
{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    color: #ddd;
    margin: 0;
    padding: 0;
    background-color: #575757;
    border: none;
}
.form-val-button
{
    border: none;
    margin: 0;
    padding: 0;
    height: 2rem;
    width: 2rem;
    border-radius: 0.3rem;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #404040;
    outline: none;
    font-size: 1rem;
}
.form-val-input
{
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ddd;
    background-color: transparent;
    width:100%;
    min-width:100%;
    max-width:100%;
    box-sizing: border-box;
    padding: .2rem;
}
.form-new-field-row
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    width:100%;
    min-width:100%;
    max-width:100%;
    border-radius: 0.5rem;
    background-color: transparent;
    box-sizing: border-box;
    margin-top: .5rem;
}
.form-footer-container
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    width:100%;
    min-width:100%;
    max-width:100%;
    gap: .5rem;
    margin-top: .5rem;;
}
.form-footer-button
{
    width: calc(50% - 0.25rem);
    min-width: calc(50% - 0.25rem);
    max-width: calc(50% - 0.25rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 0.3rem;
    height: 2rem;
    min-height: 2rem;
    max-height: 2rem;
}
.form-footer-button-span
{
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: white;
}
.new-form-button
{
    width:calc(100% - 2rem);
    min-width:calc(100% - 2rem);
    max-width:calc(100% - 2rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 0.3rem;
    height: 3rem;
    min-height: 3rem;
    max-height: 3rem;
    background-color: white;
    color: black;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
}
.new-form-button-span
{
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: .5rem;
}
.search-result
{
    border: .2rem solid rgb(75, 137, 255);
}