/*************************** DIVS *******************************/

div.full-size {
    height: 100%;
    width: 100%;
}

div.full-height {
    height: 100%;
}

div.full-width {
    width: 100%;
}

div.absolute {
    position: absolute;
}

div.overflow-hidden {
    overflow: hidden;
}

.vertical-margin-regular {
    margin-top: 20px !important;
}

.no-scrollbar {
    -ms-overflow-style: none !important;
    overflow: -moz-scrollbars-none !important;
}

/*************************** BORDER DIVS ***************************/

.wire-border {
    border: solid 1px hsl(0, 0%, 70%) !important;
}

/*************************** FLEX DIVS ***************************/

div {
    position: relative;
}

div.flex {
    display: flex;
}

.flex-weight {
    flex: 1 !important;
}

div.inline-flex {
    display: inline-flex;
}

div.flex-row {
    display: flex;
    flex-direction: row;
}

div.flex-column {
    display: flex !important;
    flex-direction: column;
}

div.flex-center {
    align-items: center;
}

div.space-between {
    justify-content: space-between;
}

div.flex-all-width {

}

div.flex-fixed-width {

}

/*************************** P ***************************/

p.normal-weight {
    font-weight: normal !important;
}

span.blue-text {
    color: rgb(0, 134, 179) !important;
}