/*General Styles*/
.width30 {
    width: 30%;
}
.width100 {
    width: 100%;
}
.floatLeft {
    float: left;
}

/* Table with 4 columns and no headers */
        table.four-columns {
            width: 100%;
            float: left;
            font-size: 14px;
        }

            /* Fixed width for the "label" columns */
            table.four-columns .label-column {
                width: 160px;
            }

            table.four-columns .text-column {
                width: 220px;
            }

            table.four-columns tr {
                vertical-align: text-top;
                cursor: default;
            }


    /* Modal styles */

    .modal.modal60 {
        width: 60%;
        margin-left: -30%;
    }

.buttonAsLink {
    background: none;
    border: none;
    color: #0088cc;
    float: left;
    padding-top: 0px;
    padding-bottom: 0;
}

    /*Form controls*/
    textarea.fullWidth {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        min-height: 160px;
    }
    .files-input-container {
        padding: 10px;
        border: 1px solid #ccc;
        width: 100%;
        -ms-border-radius: 4px;
        border-radius: 4px;
        box-sizing:border-box;
    }

input[type=file].largeFileInput {
        font-size: 17px;
        margin: 0;
        vertical-align: baseline;
        line-height: 20px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


/*Correspondence*/
#correspondOverlay .progress {
    height: 30px;
    width: 60%;
    margin: 0;
    margin-left: 5%;
}

#correspondOverlay .largeFileInput{
    width: 35%;
}

.x-large-text {
    display: block;
    font-weight: 600;
    font-size: 24.5px;
    line-height: 40px;
}

.xx-large-text {
    font-size: 31.5px;
    margin: 10px 0;
    line-height: 40px;
    display: block;
}
    #sidebarPlaceholder {
        width: 52px;
        height: 100vh;
        float: left;
        background-color: transparent;
        transition: width 220ms cubic-bezier(0.4, 0, 0.6, 1);
    }

        #sidebarPlaceholder.expanded {
            width: 240px;
        }

    #sidebar, #sidebarWrapper {
        height: 100vh;
        width: 52px;
        border: none;
        pointer-events: auto;
        position: absolute;
        background-color: #F5F6F8;
        top: 0;
        left: 0;
        transition: width 220ms cubic-bezier(0.4, 0, 0.6, 1);
        z-index: 1010;
    }
        #sidebar.expanded, #sidebarWrapper.expanded,  #sidebarWrapper.pinned, #sidebarWrapper.pinned #sidebar{
            width: 240px;
        }

        #sidebarWrapper:hover {
            box-shadow: 3px 0 8px 0 rgba(0, 0, 0, 0.05);
        }

    .pinned {
        box-shadow: none !important;
    }

    .staticSidebar {
        display: block;
        width: 240px;
        background: #F5F6F8;
        box-shadow: -3px 0 8px 0 rgba(0, 0, 0, 0.05) inset;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0px;
        padding: 0px;
    }
        .staticSidebar li {
            list-style: none;
        }
        .staticSidebar li a {
            display: flex;
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 16px;
            align-items: center;
            gap: 10px;
            align-self: stretch;
            width: 240px;
            text-decoration: none;
        }

        .staticSidebar li a:hover {
            background: rgba(0, 0, 0, 0.04);
            text-decoration: none;
        }

        .staticSidebar li a img{
            height: 20px;
            width: 20px;
            margin-right: 8px;
        }

        .staticSidebar .link-icon {
            filter: brightness(0) saturate(100%) invert(29%) sepia(89%) saturate(1066%) hue-rotate(191deg) brightness(98%) contrast(92%);
        }

        .staticSidebar a {
            color: #282828;
            font-size: 15px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            letter-spacing: -0.3px;
        }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        height: 56px;
    }
    .pin-icon {
        height: 16px;
        margin-right: 20px;
        margin-top: 20px;
        cursor: pointer;
        display: none;
    }
    .big-logo {
        height: 33px;
        padding-top: 16px;
        padding-left: 23px;
        display: none;
    }
    .small-logo {
        display: block;
        height: 23px;
        margin-top: 16px;
        margin-left: 23px;
    }
    .pinned .small-logo, .expanded .small-logo{
        display: none;
    }
    .pinned .big-logo, .expanded .big-logo, .pinned .pin-icon, .expanded .pin-icon{
        display: block;
    }
    .break-line {
        height: 1px;
        background: rgba(0, 0, 0, 0.12);
    }