/*** STANDARD BUTTON ***/

.button {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    font-size: 18px;
    color: hsl(0, 100%, 100%);
    line-height: 18px;
    white-space: nowrap;
    padding: 15px;
    border-radius: 5px;
    /*background-color: hsl(0, 0%, 100%);*/
    /*background-color: transparent;*/
    border: solid 1px hsl(0, 0%, 100%);
    overflow: hidden;
    cursor: pointer;
    pointer-events: all;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button-cancel-form, .button-form-action {
    font-weight: bold;
    position: absolute;
    width: 80px;
    top: 0;
    left: 0;
    margin: 10px 0;
    background-color: hsl(0, 100%, 100%) !important;
    color: hsl(0, 0%, 0%) !important;
    border: 1px solid hsl(0, 0%, 50%) !important;
    font-size: 13pt;
}

.button-cancel-form:hover {
    background-color: hsl(0, 0%, 90%) !important;
}

.button-form-action {
    left: unset;
    right: 0;
    background-color: hsl(195, 100%, 35%) !important;
    border: solid 1px hsl(195, 100%, 35%) !important;
    color: hsl(0, 100%, 100%) !important;
}

.button-form-action:hover {
    background-color: hsla(195, 100%, 35%, 0.9) !important;
    border: solid 1px hsla(195, 100%, 35%, 0.9) !important;
}

/* delete actions get red button styling */
div.button-red {
    border: 2px solid hsl(0, 100%, 40%); !important;
    background-color: hsl(0, 100%, 40%); !important;
}

div.button-red:hover {
    border: 2px solid hsla(0, 100%, 40%, 0.9); !important;
    background-color: hsla(0, 100%, 40%, 0.9); !important;
}

.buttonMenuItem, .buttonMenuItemActive {
    color: hsl(0, 100%, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    width: 100%;
    cursor: pointer;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;
    border-bottom: solid 1px hsl(0, 0%, 28%);
    font-size: 11pt;
    font-family: "StandardFontBold", "Arial", sans-serif;
    line-height: 130%;
}

.buttonFixedSize {
    line-height: 15px;
    height: 15px;
    width: 60px;
}

.button-create-item {
    display: block;
    padding: 20px;
    box-sizing: content-box;
    position: absolute;
    z-index: 25;
    width: 35px;
    height: 35px;
    border-radius: 40px;
    border: 3px solid hsl(0, 100%, 100%);
    margin-right: 16px;
    color: hsl(0, 100%, 100%);
    bottom: 0;
    margin-bottom: 20px;
    right: 0;
    vertical-align: top;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    pointer-events: all;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*
sub buttons are generally found in forms and modals, their position can't be absolute because they depend
on specific form contents
*/

.button-create-sub-item {
    margin-top: 20px;
    position: absolute;
    width: 25px;
    height: 25px;
    padding: 15px;
    border-radius: 10px;
    border: solid 2px hsl(195, 100%, 35%);
    cursor: pointer;
    pointer-events: auto;
}

.button-create-sub-item > svg {
    position: relative;
    fill: hsl(195, 100%, 35%) !important;
}

.button-create-sub-item:hover {
    background-color: hsla(195, 100%, 35%, 0.4) !important;
}

.button-create-item:hover {
    background-color: hsla(195, 100%, 35%, 0.9) !important;
}

.button-create-item-active {
    background-color: hsl(0, 100%, 100%) !important;
    border: solid 3px hsl(0, 100%, 100%) !important;
}

.button-create-sub-item-active {
    background-color: hsl(195, 100%, 35%) !important;
    border: solid 2px hsl(195, 100%, 35%) !important;
}

.button-create-sub-item-active:hover {
    background-color: hsla(195, 100%, 35%, 0.9) !important;
    border: solid 2px hsla(195, 100%, 35%, 0.9) !important;
}

.button-create-sub-item-active > svg {
    fill:  hsl(0, 100%, 100%) !important;
}

.button-create-item-active > svg {
    fill: hsl(195, 100%, 35%) !important;
}

/*.buttonCreateItemActive > svg {*/
/*    background-color: hsl(0, 0%, 100%) !important;*/
/*    border: solid 1px  hsl(0, 0%, 100%) !important;*/
/*}*/

/*svg.buttonCreateItemActive {*/
/*    fill: hsl(195, 100%, 35%)*/
/*}*/

.buttonBlueText {
    color: hsl(195, 100%, 35%) !important;
}

.buttonRedText {
    color: hsl(0, 100%, 40%) !important;
}

div.buttonRed {
    color: hsl(0, 0%, 100%) !important;
    background-color: hsl(0, 100%, 40%) !important;
    border: solid 1px hsl(0, 100%, 40%) !important;
}

.buttonWhiteRedBorder {
    color: hsl(0, 100%, 40%) !important;
    background-color: hsl(0, 0%, 100%) !important;
    border: solid 2px hsl(0, 100%, 40%) !important;
}

.buttonBlue {
    color: hsl(0, 0%, 100%) !important;
    background-color: hsl(195, 100%, 35%) !important;
    border: solid 1px hsl(195, 100%, 35%) !important;
}

div.buttonBlue:hover {
    background-color: hsla(195, 100%, 35%, 0.9) !important
}

.buttonDarkBlue {
    color: hsl(0, 0%, 100%) !important;
    background-color: hsl(195, 100%, 35%) !important;
    border: solid 1px hsl(195, 100%, 35%) !important;
}

.buttonWireLight {
    color: hsl(0, 0%, 100%) !important;
    background-color: hsla(0, 0%, 100%, 0.10) !important;
    border: solid 1px hsla(0, 0%, 100%, 0.50) !important;
}

.buttonWireDark, .buttonActionPanel, .buttonLayerOption, .buttonActionPanelLarge {
    color: hsl(0, 0%, 0%) !important;
    background: none !important;
    border: solid 1px hsla(0, 0%, 0%, 0.25) !important;
}

.buttonActionPanel {
    margin: 5px;
    width: 70px;
}


.buttonActionPanelLarge {
    margin: 5px;
    width: 140px;
}

.buttonActionPanel:hover, .buttonActionPanelLarge:hover {
    background-color: hsl(0, 0%, 90%) !important;
    /*border: solid 1px hsl(0, 0%, 90%)!important;*/
}


.buttonLayerOption {
    font-size: 12pt;
    width: 60px;
    margin: 0 5px;
}

.buttonActive {
    pointer-events: none;
    cursor: default;
    color: hsl(0, 0%, 0%) !important;
    background-color: hsl(150, 100%, 55%) !important;
    border: solid 1px hsl(150, 100%, 55%)!important;
}

.buttonActive:hover {
    background-color: hsl(150, 100%, 55%) !important;
    border: solid 1px hsl(150, 100%, 55%)!important;
}

.buttonGreen {
    color: hsl(0, 0%, 0%) !important;
    background-color: hsl(140, 100%, 55%) !important;
    border: solid 1px hsl(140, 100%, 55%) !important;
}

.simpleTextBlue, .simpleTextRed {
    font-family: "StandardFontBold", "Arial", sans-serif;
    font-size: 16pt !important;
    line-height: initial !important;
    color: hsl(195, 100%, 55%) !important;
    background: none !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 0px !important;
}

.simpleTextRed {
    color: hsl(0, 100%, 65%) !important;
}

.buttonOversizeArea {
    line-height: 30px;
}

.buttonSmall {
    font-size: 15px;
    letter-spacing: 1pt;
    padding: 10px;
}

.buttonBig {
    font-size: 26px;
    letter-spacing: 1pt;
    padding: 20px;
}

/*** SPECIAL BUTTONS ***/


.buttonToggleProjects, .buttonToggleSubProjects {
    display: inline-block;
    position: absolute;
    color: hsl(0, 100%, 100%);
    margin-top: 10px;
    width: 120px;
    top: 0;
    left: 0;
    font-size: 18px;
    -moz-user-select: all;
}

.buttonToggleSubProjects {
    width: auto;
}

.buttonToggleSubProjects {
    left: 10%;
}

.buttonActiveProjects, .buttonActiveSubProjects {
    display: inline-block;
    position: absolute;
    color: hsl(0, 100%, 100%);
    top: 43px;
    right: 0;
    height: auto;
    width: 140px;
    font-size: 18px;
}

.buttonCalendar, .buttonChangeMonths, .buttonChangeView, .buttonAddEvent {
    display: inline-block;
    padding: 5px;
    color: hsl(0, 100%, 100%);
    text-align: center;
    font-size: 12px;
    height: auto;
}

.buttonPrevMonth, .buttonNextMonth  {
    position: absolute;
    /*margin: 16px;*/
    border: none;
    font-size: 14px;
    padding: 16px 30px;
    color: black;
}

.buttonPrevMonth {
    left: 40px;
}

.buttonNextMonth {
    right: 40px;
}


.buttonChangeView {
    background-color: hsla(0, 0%, 100%, 0.10);
}

.buttonAddEvent  {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 40px;
    line-height: 40px;
    background-color: hsla(0, 0%, 100%, 0.10);
}

.buttonAddItem, .buttonAddICSEvent, .buttonEditItems ,
.buttonEditSection. .buttonPushItem {
    border-radius: 28.5px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color: hsla(0, 0%, 100%, 0.10);
}

.invisible {
    display: none;
}

.buttonEditItems, .buttonPushItem .buttonEditItemsSelected,
.buttonPublicChecklists, .buttonDelete, .buttonShare, .buttonPrint, .buttonDeleteEquipItem{
    position: absolute;
    padding: 0;
    height: 50px;
    width: 50px;
    color: hsl(0, 100%, 100%);
    background-color: transparent;
    right: 0;
    margin-right: 10px;
    top: 0;
    margin-top: 8px;
    border-radius: 8px;
    border-width: 2px;
    align-content: center;
}



.buttonPrint {
    top: 0;
    left: 0;
    height: 50px;
    margin-top: 8px;
    margin-left: 10px;
    line-height: 50px;
}

.buttonDelete {
    top: 0;
    left: auto;
    right: 60px
}

.buttonDeleteEquipItem {
    position: relative;
    float: right;
    top: 27px;
    background-color: hsla(0, 0%, 100%, 0.10);
    margin-right: 30px;
    height: 48px;
}

.buttonShare {
    top: 0;
    left: auto;
    right: 120px;
    border: 2px solid hsl(0, 100%, 100%); !important;
}

.buttonEditItemsSelected {
    background-color: hsl(0, 100%, 100%); !important;
    border-color: transparent;
    box-sizing: content-box;
}

svg.sectionEditButtonSvg, .sectionEditButtonSvgSelected,
svg.headerIcon, svg.buttonRemoveFile, svg.buttonRemoveFileDisabled {
    margin: 10px;
    height: 30px;
    width: 30px;
    fill: hsl(0, 100%, 100%);
    color: hsl(0, 100%, 100%);
}

.questionnaire-asset-contents .sectionEditButtonSvg {
    fill:  hsl(0, 0%, 70%);
}

.questionnaire-asset-contents .buttonEditItems {
    border-color: hsl(0, 0%, 70%);
}

.questionnaire-asset-contents .buttonEditItems:hover {
    background-color: hsl(0, 0%, 95%);
}

svg.buttonRemoveFile, svg.buttonRemoveFileDisabled {
    margin: 0;
    height: 25px;
    width: 25px;
}

svg.buttonRemoveFileDisabled {
    fill: hsl(0, 0%, 80%);
}

svg.headerIcon {
    margin: 7.5px;
    height: 35px;
    width: 35px;
    fill: hsl(0, 100%, 100%);
    color: hsl(0, 100%, 100%);
}

svg.sectionEditButtonSvgSelected {
    fill: hsl(200, 75%, 30%) !important;
}

.buttonEditSection {
    right: 140px;
    line-height: 25px;
}

.buttonAddItemTemplate, .buttonGrey2, .buttonGrey,
.buttonRemoveItemTemplate, .buttonAddItemTemplateSelected,
.buttonRemoveSection, .buttonAddQuestion, .buttonAddQuestionEdit, .buttonAddAnswer, .buttonRemoveAnswer {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 25px;
    background-color: hsl(0, 0%, 35%);
    margin-right: 10px;
    pointer-events: all;
    cursor: pointer;
}

.buttonAddItemTemplate {
    background-color: hsl(0, 0%, 10%);
}

.buttonAddQuestion, .buttonAddQuestionEdit {
    /*margin-left: 10px;*/
    margin-right: 10px;
    border: 1px solid black;
    background-color: transparent;
    transition: opacity 0.3s linear;
}

.buttonAddQuestionEdit {
    border: 1px solid hsl(0, 100%, 100%);
    margin-right: 0;
    margin-top: 1px;
    margin-left: 10px;
}

.buttonAddAnswer, .buttonRemoveAnswer {
    width: 15px;
    height: 15px;
    padding: 10px;
    background-color: hsl(0, 100%, 100%);
    border: 1px solid black;
    margin: 7px 7px 7px 0;
}

.buttonPushItem, .buttonRemoveItem, .buttonPublicChecklists {
    /*text-align: center;*/
    line-height: 20px;
    height: 20px;
    width: 50px;
    padding: 15px;
    border-radius: 8px;
    border-width: 2px;
    position: absolute;
    left: 0;
    margin: 8px 12px;
    background-color: transparent; !important;
}

.buttonPushItem {
    top: 0;
    right: 173px;
    left: unset;
    width: 60px;
    text-align: center;
}

.buttonPublicChecklists {
    width: 50px;
    height: 50px;
    padding: 0px;
    margin: 8px 10px;
    /*left: 100px;*/
}

.buttonRemoveItem {
    top: 0;
    width: 70px;
    right: 60px;
    left: unset;
}

.buttonYesNo {
    color: black;
    border: 2px solid hsl(0, 100%, 40%);
    background-color: hsl(0, 100%, 100%);
}

#yes-btn {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#no-btn {
    color: hsl(0, 100%, 100%);
    background-color: hsl(0, 100%, 40%);
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.buttonAddItemTemplateSelected {
    display: none;
    background-color: hsl(0, 100%, 100%);
}

svg.Reversed {
    fill: hsl(0, 0%, 10%); !important;
}

.buttonRemoveItemTemplate, .buttonRemoveSection {
    display: none;
    position: relative;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 25px;
    box-sizing: content-box;
    border-color: transparent;
    background-color: hsl(0, 0%, 35%);
    z-index: 40;
}

.buttonRemoveSection {
    margin-top: 30px;
    margin-right: 0;
    position: absolute;
    left: -70px;
    top: 10px;
}

.buttonAddChecklistItem {
    position: relative;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 25px;
    border-radius: 25px;
    border-color: transparent;
    z-index: 2;
    background-color: hsl(140, 100%, 55%); !important;
    margin-right: 10px;
}

.buttonMoveItems {
    padding: 10px;
    position: absolute;
    height: 20px;
    width: 20px;
    display: none; !important;
    vertical-align: bottom;
    right: 0;
    bottom: 0;
    background-color: hsl(0, 0%, 20%); !important;
}

.buttonMoveQuestionnaireItems {
    position: absolute;
    margin: 10px;
    display: none;
    bottom: auto;
    top: 0;
    right: 35px;
    height: 15px;
    width: 15px;
    padding: 7px;
    background-color: hsl(0, 100%, 100%);
    border: 1px solid black;
}



.rotate180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.buttonChecklistDropDown, .buttonChecklistDropUp {
    display: inline-block;
    margin-top: 15px;
    margin-right: 20px;
    cursor: pointer;
    pointer-events: all;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid hsl(0, 100%, 100%);
}

div.buttonLogSortContainer {
    display: inline-block;
    position: relative;
    height: 100%;
    width: 10px;
}

.buttonLogSort {
    /*display: inline-block;*/
    display: none;
    position: absolute;
    top: 0;
    margin-top: 5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid hsl(195, 100%, 80%);
}

.buttonRight {
    right: 4px;
    position: absolute;
}

.buttonLeft {
    left: 4px;
    position: absolute;
}

.marginTop54 {
    margin: 54px 0;
}

.buttonAddMainItem {
    padding: 20px;
    box-sizing: content-box;
    position: absolute;
    z-index: 25;
    display: none;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    border: 3px solid hsl(0, 100%, 100%);
    margin-right: 17px;
    margin-left: 16px;
    color: hsl(0, 100%, 100%);
    /*top: 85%;*/
    bottom: 0;
    margin-bottom: 20px;
    right: 0;
    background-color: hsl(0, 0%, 20%);
}

.buttonCloseOut {
    position: absolute;
    top: 5px;
    right: 0;
    color: black;
    transform: scale(1, 0.85);
    font-family: "StandardFontRegular", "Arial", sans-serif;
    border: 5px black;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    margin-right: 20px;
    cursor: pointer;
    pointer-events: all;
}

.buttonChecklistDropUp {
}

.buttonChooseSection, .inputCreateItem, .buttonAddItemModal, .buttonCancelModal {
    position: relative;
    margin : 0 auto;
    text-align: center;
}

.buttonAddItemModal, .buttonCancelModal {
    min-width: 100px;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 10px;
    background-color: #E41D00; !important;
}

div.buttonCancel {



    background-color: hsl(0, 100%, 100%);
    color: black;
    border: 1px solid hsl(0, 0%, 50%);
}

div.buttonCancel:hover {
    background-color: hsl(0, 0%, 90%);
}

.buttonCancelModal {
    background-color: hsl(0, 100%, 100%);
    color: black;
    border: 1px solid hsl(0, 0%, 50%);

}

.buttonAddSection {
    border-radius: 46px;
    border: 2px solid;
    bottom: 0;
    left: 0;
    right: 0;
    top: 85%;
    margin: 0 auto;
    height: 50px;
    width: 50px;
    background-color: transparent;
}

.buttonChooseQuestionType {
    color: black;
    cursor: pointer;
    min-width: 120px;
    margin: 0 5px 10px;
}

.buttonGrey {
    /*display: none;*/
    background-color: hsl(0, 0%, 35%); !important;
}

.buttonGrey2 {
    background-color: hsl(0, 0%, 35%); !important;
}

.buttonGoToMonth {
    z-index: 800;
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 11px;
    width: 20%;
    height: 100%;
    margin: 6.5%;
    box-sizing: border-box;
    color: hsl(0, 0%, 75%);
    border: 1px solid hsl(0, 100%, 100%);
    cursor: pointer;
}

#month-view-button {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 40px;
    width: 60px;
    line-height: 40px;
}

#year-view-button {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 40px;
    width: 60px;
    line-height: 40px;
}

.buttonCurrentView {
    background-color: hsl(0, 100%, 100%); !important;
    color: black; !important;
}


/*** TEAM BUTTON ***/

.buttonLeaderIcon, .buttonViewManual {
    display: inline-block;
    position: relative;
    top: 35px;
    height: 50px;
    width: 140px;
    border-radius: 5px;
    color: hsl(0, 0%, 15%);
    background-color: hsl(140, 100%, 55%);
    user-select: none;
    text-align: center;
    line-height: 50px;
    float: right;
}

.buttonViewManual {
    cursor: pointer;
    background-color: hsla(0, 0%, 100%, 0.10);
    color: hsl(0, 0%, 100%) !important;
    border: solid 1px hsla(0, 0%, 100%, 0.50) !important;
}

.buttonSectionDockItem {
    display: inline-block;
    color: hsl(0, 0%, 90%);
    font-size: 16pt;
    height: 70px;
    line-height: 70px;
    padding: 0 20px;
    cursor: pointer;
}

.buttonSectionDockItemSelected {
    background-color: hsl(0, 0%, 10%);
}



.buttonLogin, .buttonLogOut, .buttonUpload {
    text-align: center;
    background-color: hsl(0, 100%, 40%);
    width: 150px;
    line-height: 30px;
    color: hsl(0, 0%, 100%);
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    margin: 20px auto;
    cursor: pointer;
}

.buttonLogOut {
    background-color: hsl(195, 100%, 55%);
    color: black;
    cursor: pointer;
}

.buttonUpload {
    color: black;
    cursor: pointer;
    width: 100px;
    background-color: hsl(195, 100%, 55%);
    font-size: 18px;
    padding: 10px;
}

.buttonDuplicate, .buttonCopy {
    pointer-events: all;
    cursor: pointer;
    border: 1px solid hsl(0, 0%, 50%);
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    line-height: 38px;
    width: 80px;
    border-radius: 5px;
    background-color: hsl(0, 100%, 100%);
    color: black;
}

.buttonCopy {
    margin-left: 10px;
    background-color: transparent;
    color: black;
    border: 1px solid hsla(0, 0%, 0%, 0.3);
}

.buttonCopy:hover {
    background-color: hsla(0, 0%, 50%, 0.25);
}

/*** ALT BUTTON ***/

div.altBtnBlockNorm, div.altBtnBlockActive, div.altBtnInlineBlockNorm, div.altBtnInlineBlockActive {
    display: block;
    margin-top: 10px;
    border: solid 1px hsla(0, 0%, 100%, 0.35);
    border-radius: 5px;
    color: hsl(0, 0%, 100%);
    font-size: 12pt;
    text-align: center;
    padding: 15px;
    pointer-events: all;
    cursor: pointer;
}

div.altBtnInlineBlockNorm, div.altBtnInlineBlockActive {
    display: inline-block;
    margin: 10px;
}

div.altBtnBlockActive, div.altBtnInlineBlockActive {
    background-color: hsl(140, 100%, 55%);
    border-color: hsl(140, 100%, 55%);
    color: hsl(0, 0%, 0%);
    pointer-events: none;
    cursor: default;
}

div.altBtnBlockNorm:first-child, div.altBtnBlockActive:first-child {
    margin-top: 0;
}

div.altBtnInfo {
    font-size: 12pt;
    color: hsl(0, 0%, 60%);
    font-style: italic;
    text-align: center;
}

.buttonAlt {
    cursor: pointer;
    pointer-events: all;
    margin: 0 10px;
    border-radius: 5px;
    color: hsl(0, 0%, 0%) !important;
    background-color: hsl(0, 0%, 100%) !important;
    border: solid 1px hsl(0, 0%, 100%) !important;
    width: 80px;
    height: 40px;
    line-height: 40px;
}

div.deleteFileButton, div.downloadFileButton, div.shareFileButton, div.editFileButton
, div.removeFileButton, div.downloadMetadataButton {
    position: absolute;
    top: 12px;
    width: 50px;
    height: 50px;
    padding: 0;
    right: 0;
    background-color: hsl(0, 0%, 20%);
    border-radius: 5px;
    border: 1px solid hsl(0, 100%, 100%);
}

div.downloadMetadataButton {
    top: auto;
    right: 75px;
}

div.downloadMetadataButton:hover {
    background-color: hsl(0, 0%, 30%);
}

div.chooseFilesButton {
    cursor: pointer;
    padding: 12px;
    height: 20px;
}

img.uploadCompleteCheckMark {
    position: relative;
    display: none;
    height: 20px;
    width: 20px;
    background-color: transparent;
}

div.editFileButton {
    right: 240px;
}

div.shareFileButton {
    right: 160px;
}

div.downloadFileButton {
    right: 80px;
}

div.removeFileButton {
    top: 25px;
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-color: transparent;
    border: none;
}

div.buttonExpand, div.buttonCollapse, div.buttonToggleAsset {
    cursor: pointer;
    width: 25px;
    height: 25px;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

div.buttonCollapse {
    /*position: absolute;*/
    /*top: 7px;*/
    /*right: 5px;*/

    position: relative;
    /* top: 7px; */
    /* right: 5px; */
    min-width: 25px;
    min-height: 25px
}

div.buttonExpand:hover, div.buttonCollapse:hover {
    background-color: hsl(0, 0%, 30%);
}

/*MAP BUTTONS*/

div.mapOptionsButton, div.mapOptionsButtonActive, div.assetsButton, div.kmlButton {
    position: absolute;
    z-index: 1000;
    width: 70px;
    height: 70px;
    left: 300px;
    bottom: 0px;
    background-color: hsl(0, 0%, 100%);
    border-left: solid 1px hsl(0, 0%, 95%);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    pointer-events: all;
}

div.assetsButton {
    top: 0;
    bottom: auto;
}

div.kmlButton {
    left: -70px;
    bottom: 0;
    border-right: solid 1px hsl(0, 0%, 95%);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

div.mapOptionsButtonActive div.mapOptionsIconRect1,
div.mapOptionsButtonActive div.mapOptionsIconRect2 {
    border-color: hsl(0, 100%, 40%);
    background-color: hsl(0, 0%, 100%);
}
div.dockButton, div.dockButtonSelected {
    position: relative;
    padding: 12px 0px;
    font-size: 0px;
    pointer-events: auto;
    cursor: pointer;
}

div.dockButtonSelected {
    background-color: hsl(200, 100%, 85%);
}

div.dockButton:hover {
    background-color: hsl(0, 0%, 95%);
}

div.dockButtonSelected:hover {
    background-color: hsl(200, 100%, 85%);
}

/*PANEL BUTTONS*/

div.buttonPanelOption {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    color: hsl(0, 0%, 0%);
    text-align: center;
    padding: 0px 15px;
    margin: 10px 6px 6px 5px;
    border: solid 1px hsl(0, 0%, 85%);
    border-radius: 5px;
    pointer-events: all;
    cursor: pointer;
    width: 92px;
}

div.panelCtrlBtnStandard {
    flex: 1;
    height: 30px;
    line-height: 30px;
    /* width: 80px; */
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    color: hsl(0, 0%, 0%);
    border: solid 1px hsl(0, 0%, 90%);
    margin: 0px 5px;
    pointer-events: all;
    cursor: pointer;
}

div.panelCtrlBtnStandard:hover {
    background-color: hsl(0, 0%, 95%);
}

div.panelCtrlBtnStandard:first-child {
    margin-left: 0px;
}

div.panelCtrlBtnStandard:last-child {
    margin-right: 0px;
}

div.buttonPanelAction {
    display: block;
    height: 35px;
    line-height: 36px;
    width: 110px;
    /*margin: 15px auto 10px;*/
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    color: hsl(0, 0%, 100%);
    /* border: solid 1px hsl(0, 0%, 80%); */
    /*background-color: hsl(200, 100%, 45%);*/
    /*margin: 0px 5px;*/
    pointer-events: all;
    cursor: pointer;
}

div.buttonPanelAction {
    background-color: hsl(0, 0%, 95%);
}

div.buttonPanelBlue {
    background-color: hsl(200, 100%, 45%);
}

div.buttonPanelBlue:hover {
    background-color: hsl(200, 100%, 55%);
}

div.buttonPanelOption:hover {
    background-color: hsl(0, 0%, 95%);
}

div.buttonFilterPanel {
    width: 70px;
}

div.buttonActive {
    cursor: default;

}
div.buttonActive:hover {
    background-color: hsl(150, 100%, 55%);
}

div.buttonToggleAsset {
    height: 15px;
    width: 15px;
    margin-right: 10px;
    display: inline-block;
    color: black;
    background-color: hsl(0, 100%, 100%);
}

div.buttonToggleAsset:hover {
    background-color: hsl(0, 0%, 95%);
}

/************MAP BUTTONS**********/

div.buttonRefreshAssets {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    color: black;
    border-radius: 5px;
    border: 1px solid black;
    pointer-events: all;
    cursor: pointer;
}

div.buttonRefreshAssets:hover {
    background-color: hsl(0 , 0%, 50%);
}