#app {
    min-width: 400px !important;
}

/* User styles */

#usersDatatable {
    width: 100%;
}

.selectsUser {
    max-width: 99% !important;
    padding-left: 18px;
}

.selectsUser select {
    margin-left: 15px;
}

#saveUserButton {
    float: right;
}

#passwordRestriction {
    font-size: 12px;
    color: #888;
    padding-top: 3px;
}


/* Multiple pages */

#paperFab {
    background-color: #3490dc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

#paperFab:hover {
    box-shadow: 2px 2px 2px rgba(150,150,150, 0.5), -2px 0px 2px rgba(150,150,150, 0.5);
}

#paperFab span {
    font-size: 30px;
    position: relative;
    left: 16px;
    color: #fff;
}

.svgIcon {
    cursor: pointer;
    margin-right: 5px;
    z-index: 10 !important;
}



.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    float: right !important;
}



/* Progress bar */

#progressBar {
    width: 0;
    height: 3px;
    background-color: #0288D1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000;
}


.progressBarAnimation {
    animation: progress 6s 1 backwards;
    animation-timing-function: ease-in;
}


@keyframes progress {
    0%   {width: 0;}
    50%  {width: 50%;}
    75%  {width: 90%;}
    100% {width: 100%;}
}


#noWbtsUploaded {
    width: 100%;
    text-align: center;
    color: #555;
}


/* Upload WBT page */
#uploadContainer {
    margin-top: 10px;
    height: 150px;
    background-color: rgba(0,0,0,.03);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
    border: 4px dashed #858585;
}

#uploadWBT .form-group {
    margin-bottom: 0 !important;
}

#uploadWBTFileButton {
    display: none;
    /*position: absolute;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*margin: 0;*/
    /*padding: 0;*/
    /*z-index: 20000;*/
    /*opacity: 0;*/
}

#uploadinfo > div {
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
}

#uploadSubmit {
    float: right;
}

#uploadMessage {
    position: relative;
    z-index: 1;
    /* outline: 1px solid green; */
    width: 100%;
    height: 100%;
    padding: 60px;
    text-align: center;
    color: #555;
}

#uploadResponse {
    width: 100%;
    text-align: center;
}

.uploadedWbtItem {
    display: flex;
    justify-content: space-between;
}

#progressWrapper {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
    display: none;
}

#progressWrapper, #progress {
    height: 25px;
    padding: 0;
    margin: 0;
}

#progress {
    width: 0;
    background-color: #3490dc;
    border-radius: 4px;
    position: relative;
    bottom: 1px;
}

/* WBTs listing page */
button.btn-link {
    font-size: 16px;
}

.wbtDataAndOptions img {
    /*float: right;*/
}

.wbtDataAndOptions > div {
    /*width: calc(100% - 70px);*/
    display: inline-block !important;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}

.wbtDataAndOptions img, .wbtDataAndOptions select {
    float: right;
}

.wbtDataAndOptions select {
    margin-right: 30px;
    width: 200px;
}

.wbtDataAndOptions img {
    position: relative;
    top: 3px;
}

.wbtDataAndOptions .form-group {
    display: inline-block !important;
    width: 180px;
    float: right;
    height: 30px;
    padding: 0;
    margin: 0;
}

.hiddenSubmitButton {
    display: none;
}

.select2-selection__rendered {
    padding-bottom: 5px !important;
}

.wbtItem {
    cursor: pointer;
    padding: 0;
    margin: 0;
    position: relative;
    bottom: 8px;
}

/* Toast */
#toast{
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    background-color: #fa5e5b;
    color:#fff;
    padding:16px;
    border-radius:4px;
    text-align:center;
    z-index:100000;
    box-shadow: 2px 2px 1px rgba(0,0,0,0.3);
    visibility:hidden;
    opacity:0;
}

#toast.show{
    visibility:visible;
    animation:fadeInOut 3s;
}

@keyframes fadeInOut{
    5%,95%{opacity:1;bottom: 50px;}
    15%,85%{opacity:1;bottom: 40px}
}

/* Update WBT settings modal */

#ownersForm .form-group {
    margin-bottom: 0;
}

#ownersForm .select2-selection {
    height: 25px;
}

#ownersForm input {
    outline: none;
}

#wbtOwnersModal p {
    font-weight: 600;
    text-decoration: underline;

}

input.ie11Checkbox {
    height: auto !important;
    width: auto !important;
}

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