html, body {
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    margin:0;
    padding:0;
    display: flex;
    flex-direction:row;
    background: #eee;
    color:#454545;
  }

#maincontainer {
    padding-top:60px;
    width:100%;
    height:100%;
    display:flex!important;
    flex-direction: column;
    overflow: auto;
    position: relative!important;
}
#toastcontainer{
    right:0;
    width: 300px;
    position: fixed!important;
    padding: 1rem!important;
    z-index: 999;
 
 }
.flex-row-start{
    display:flex!important;
    flex-direction: row;
    margin:0;
    padding :0;
    justify-content: start;
    align-items: start;

}
.flex-col-centered{
    display:flex!important;
    flex-direction: column;
    margin:0;
    padding :0;
    justify-content: center;
    align-items: center;

}
.toast-header {
    background-color: #127DA7;
    color: #fff;
    border-bottom: 1px solid #FCB715;
}
.toast {
    border: 1px solid #FCB715;
    background-color: #035276;
    color: #fff;

}

/**************************************************/
.files-navs {
    width: 200px;
    margin:0;
    padding :0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    align-items: stretch;
}

.file-nav {
    width: 200px;
    line-height: 1em;
    text-align: right;
    padding:0.5em;
}
.file-nav .file-name {
    font-size: 0.7em;
    font-style: italic;
}
.file-nav .close{
    float: left;
}



.workbooks{
    position: relative!important;
    display:flex!important;
    height: calc(100vh - 60px);
    width: 100%;
    overflow: auto;
    color: initial !important;
}

.workbook .tab-content {
    height: calc(100% - 42px);
    width: 100%;
}
.workbook {
    height: 100%;
    width: 100%;
}

.sheet {
    height: 100%;
    width: 100%;
    flex-direction: column;
}


/*******************************************/


.modalPopup_bg{
	position:fixed;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	z-index:990;
	background: rgba(3, 82, 118, .5);
}

.modalPopup{
    /*width: 400px;*/
    border-color: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(245, 245, 245);
    padding: 1em;
    box-shadow: 5px 0px 40px rgba(0,0,0, .2);
	border-radius: 8px;
	z-index:999;
}

.modalPopup:hover{
    box-shadow: 5px 0px 40px rgba(3, 79, 101, 1);
}

.modalPopupBody{
    padding:0 2em;
    display:flex;
    flex-direction:column;
    justify-content:space-around;
}
.modalPopupFooter{
    padding:0 2em;
}

.modalPopup h2{
    color : rgba(3, 79, 101, 1);
}

.modalPopup .files{
    position: relative;
    text-align: center !important;
}



.modalPopup .files input {
    outline: 2px dashed #92b0b3;
    width: 100%;
    height: 100%;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    text-align: center !important;
    margin: 0;
    padding: 8em 1em 1em 1em;
    max-height: 100%;
    max-width: 100%;
}
.modalPopup .files input:hover {
    outline-offset: -10px;
}

.modalPopup  .files input:after {
    pointer-events: none;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 100px;
    background: url(/public/img/upload.svg) center;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    color: #17a2b8;
    content: " Drag it here. ";
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
}

