html {
    font-family: "Ubuntu Thin" !important;
    overflow: hidden;
}

textarea {
    font-family: "Ubuntu Thin";
    font-size: medium;
}

select{
    font-family: "ubuntu";
    font-size: 16px;
    border: 1px solid #1075d5;
    border-radius: 5px 5px 5px 5px;
}

.doMinAndHide {
    animation: minimizeHide 0.3s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

@keyframes minimizeHide {
    0% {     -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);}
    100% {     -webkit-transform: scale3d(0, 0, 1);
        transform: scale3d(0, 0, 1);}
}

input{
    font-family: "ubuntu";
    font-size: 16px;
    border: 1px solid #1075d5;
    border-radius: 5px 5px 5px 5px;
}

.boxcontainer-fullscreen {
    display: flex;
    width: 100%;
    height: 100% !important;
    position: fixed !important;
    left: 0;
    top: 0;
    z-index: 99;
}

.force-link {
    border: solid 1px !important;
    padding: 5px !important;
}

.boxcontainer {
    display: flex;
}

.center-vertical {
    align-items: center;
}

.center-horizontal {
    justify-content: space-evenly;
}

.center-fill-borders {
    justify-content: space-between;
}

.center-together {
    justify-content: center;
}

.distribution-top-bottom {
    flex-direction: column;
}

.distribution-right-left {
    flex-direction: row-reverse;
}

.distribution-bottom-top {
    flex-direction: column-reverse;
}


.height-full {
    height: 100%;
}

.force-height-full {
    height: 100% !important;
}

.width-left {
    width:200px;
}

.width-full {
    width: 100%;
}

.icon-size-medium {
    width: 30px;
    height: 30px;
}

.icon-size-small {
    width: 15px;
    height: 15px;
}

.icon-size-small-medium {
    width: 20px;
    height: 20px;
}

.icon-size-large {
    width: 60px;
    height: 60px;
}

.image-center {
    text-align: center;
}

.margin-work-panel {
    margin-top: 20px;
    margin-right: 30px;
}

.icon-align-text {
    margin:auto;
    width: auto;
    margin-left: 10px;
    margin-right:10px;
}

.shape-square-button-large {
    width:80px;
    height: 80px;
    min-width: 80px;
}

.shape-square-button-medium-label-sided {
    height: 40px;
    min-width: 100px;
}

.hidden {
    display:none;
}

.force-padding-no {
    padding: 0px !important;
}

.force-padding-5px {
    padding: 5px !important;
}

.cursor-progress {
    cursor: progress;
}

.scrollbar-y {
    overflow-y: auto;
    overflow-x: hidden;
}

.scrollbar-x {
    overflow-y: hidden;
    overflow-x: auto;
}

.input-spacing-left {
    margin-left: 10px;
}

.is-clickable {
    cursor: pointer;
}

.table-padding {
    padding: 10px;
}

.row {
    margin: 10px;
    word-break: break-word;
}

.cell {
    margin-left: 10px;
    margin-right: 10px;
}

.icon-size-small-spacing {
    margin-left: 7px;
}

.fadeIn {
    animation: fade_in 0.2s;
}

@keyframes fade_in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.button-disabled {
    pointer-events : none;
}

.options-label {
    margin:auto;margin-right: 10px;margin-left: 0px;
}

.options-input-number {
    font-size: large;width: 50px
}


.grid-cell-transparent-border {
    border: 1px solid transparent !important;
}

.margin-center {
    margin:auto;
}

.margin-center-vertical {
    margin-top:auto;
    margin-bottom: auto;
}

.margin-justify-right {
    margin-left:auto;
    padding-right: 5px;
}

.margin-center-horizontal {
    margin-left:auto;
    margin-right: auto;
}



.grid-column {
    padding:2px;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.options-vertical {
    width: 5%;
    min-width: fit-content;
    margin:5px;
}

.options-horizontal {
    height: 5%;
    min-height: fit-content;
    margin:5px;
}

.force-no-shadow {
    box-shadow: none !important;
}

.force-no-shadow:hover {
    box-shadow:none !important;
}



