html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}


body {
    margin-bottom: 50px;
    font-family: cormorantgaramond-regular;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    padding-top: 5px;
}

.editor-header {
    background-color: #fd5d5d;
    color: white;
}


.editor-sub-header {
    background-color: #576e87;
    color: white;
}


.card-img-top {
    width: 100%;
    height: 12vw;
    object-fit: cover;
}

.card-img {
    border-width: 2px;
    border-color: black;
    background-color: #343a40;
    color: white;
}

.card-img-footer {
    background-color: #343a40;
    color: white;
}



.card-avatar {
    max-width: 120px;
    max-height: 120px;
    margin: 10px auto 0;
    border-radius: 5%;
    overflow: hidden;
    box-shadow: 0 16px 20px -12px rgb(0 0 0 / 56%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}


.card-LOD {
    aspect-ratio: 1/1;
    margin: 0 0 10px;
    border-radius: 1%;
    overflow: hidden;
    align-content: center;
    vertical-align: middle;
    box-shadow: 0 16px 20px -12px rgb(0 0 0 / 56%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}


.vertical-text {
    transform-origin: left top 0;
}

.form-check {
    padding-top: 1em;
}


/*User management skills*/
.skills {
    list-style-type: none;
    padding-left: 15px;
}


/*Tag List*/

.tagListWrapper {
    background: #19222c;
    width: 100%;
    height: 275px;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    padding: 5px;
    margin: 0px;
    overflow: auto;
}

    .tagListWrapper ul li {
        list-style: none;
        padding-bottom: 10px;
        background: #222e3c;
        border-radius: 4px;
        border: 1px solid #e3d1e1;
        max-height: 55px;
        width: 90%;
        padding: 5px 10px 20px 10px;
        margin-top: 5px;
        overflow: hidden;
    }

    .tagListWrapper:empty::after {
        content: attr(placeholder);
        color: hsl(23,20%,48%);
        font-size: smaller;
        font-style: italic;
    }

    .tagListWrapper ul li i {
        font-size: 10px;
        margin-left: 5px;
    }

.tagListWrapper-md {
    height: 150px;
}

.tagListWrapper-sm {
    height: 60px;
}


.modal-lg {
    height: 500px !important;
}

.selectTall {
    height: 400px !important;
}

.arcadis {
    color: #fd7e14;
}


.formGroup {
    margin-top: 20px;
    width: 100%;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    padding: 25px;
    overflow: auto;
}

.formGroupTitle {
    margin-top: -2.2em;
    font-weight: bold;
    font-size: larger;
    background-color: #222e3c;
    position: absolute;
}


.RowHeader {
    background-color: #e4610f;
    font-weight: bold;
    color: white;
    font-size: larger;
}


/*iframe for history*/
.historyFrame {
    background-color: silver;
    width: 100%;
    height: contain;
}

.historyDiv {
    overflow: scroll;
    overflow-x: hidden;
    height: 500px;
}

/*
    ======== datalist grid overrides =========
*/
.dx-datagrid-header-panel {
    background-color: #222e3c;
}
.dx-datagrid {
    color: #fff;
    background-color: #222e3c;
    line-height: inherit;
}
.dx-toolbar {
    width: 100%;
    background-color: #222e3c !important;

    color: #fff;
    padding: 0;
    overflow: visible;
}




dl {
    display: grid;
    grid-template-columns: max-content auto;
}

dt {
    grid-column-start: 1;
    color:gray;
    font-weight: normal;
}

dd {
    grid-column-start: 2;
    margin-left: 25px;
    font-weight: bold;
}