﻿.card-form-wrapper {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    width: 100%;
    /*padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;*/
}
.cardbox {
    flex: 1;
    display:flex;
    flex-direction:column;
    background-color: white;
    border-style: solid;
    border: 1px solid rgba(34, 36, 38, 0.05);
    padding:4px;
    border-radius:4px;
    height:100%;
}
.card-header {
    font-weight: lighter;
    font-size: 20px;
    background-color: transparent !important;
    border-bottom: none;
}

.card-body {
    flex-direction: row;
    padding:0.5rem;
    flex-wrap:wrap;
}

.no-wrap{
    flex-wrap:nowrap;
}

.card-footer {
    font-weight: lighter;
    font-size: 17px;
    border-top: none;
}

.inputbox {
    flex:1;
    width: fit-content;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    display: flex;
    flex-direction: column;
}
    .inputbox button{
        max-width:300px;
    }
.inputbox-header {
    font-weight: lighter;
    font-size: 20px;
    border-bottom: none;
}

.row{
    margin:0px;
    width:100%;
}
    .row > * {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }
.mt-cardSpace{
    margin-top:1.25rem !important;
}