#vizRegion, #vizRegion > div:first-child {
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
}

#vis_sourceData {
    max-width: 100%;
}

.vis_section {
    height: 100%;
}

#vis_guide_container{
    display:grid;
    width:100%;
    height:100;
    position:relative;
}

#vis_guide_container > .overlap {
      grid-column-start: 1;
      grid-row-start: 1;
      position: relative;
}

/*.vis_guide, .vis_guide div:not([class]) {
    display: -ms-grid;
    display: grid;
    visibility: hidden;
    position: absolute;
    opacity: .75;
    top: 0;
    left: 0;
    height: 100%;
    grid-template-columns: minmax(150px, 30%) minmax(0,70%);
    -ms-grid-columns: minmax(150px, 30%) minmax(0,70%);
    grid-template-rows: minmax(60px, 25%) minmax(0,50%) minmax(60px,25%);
    -ms-grid-rows: minmax(60px, 25%) minmax(0,50%) minmax(60px,25%);*/
    /*grid-template-areas:
"vis_rows vis_columns"
"vis_rows vis_area"
"vis_rows vis_metrics";*/ /*TODO: we can use areas once IE is dropped */
    /*width: 100%;
    z-index: 1;
}*/


.vis_area {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    position: relative;
}

    .vis_area > div {
        height: inherit;
    }

.vis_area_background {
    /*background-image: url(../images/inmydata_large.png);*/
    background-repeat: no-repeat;
    background-position: center;
}


.vis_area, .vis_area > div {
    flex-grow: 1;
}

.vis_area_section {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
}

/*.vis_section.vis_columns {
    margin-top: 0;
    visibility: hidden;
}

.vis_section.vis_rows {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    border-right: 0;
    visibility: hidden;
}

.vis_section.vis_metrics {
    margin-bottom: 0;
    border-top: 0;
    visibility: hidden;
}
*/




#vis_tab_container {
    display: -ms-flexbox;
    display: flex;
    background-color: #c5ced8;
    height: 35px;
}

.vis_tab_content > div {
    display: -ms-flexbox;
    display: flex;
}


.vis_tab_content, .vis_tab_content > div {
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}

.vis_tab_content {
    flex-grow: 1;
}

/**
* The layout of the visualisation designer is defined here
*/


.vis_wrapper {
    flex-grow:1;
}

.vis_container {
  height: 100%;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* these overflow statements allow the container to be resized*/
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
}

/*.vis_container_max {
    grid-template-columns: 0 100%;
    -ms-grid-columns: 0 100%;
    grid-template-rows: 0 100% 0;
    -ms-grid-rows: 0 100% 0;
}

    .vis_container_max .vis_section {
        border: none;
    }*/

.vis_section_inner {
    position: relative;
    height: 100%;
    padding-top: 5px;
}


@supports (display: flex) {
    .vis_container {
        height: 100%;
        border: none;
    }
}

.vis_whole {
    grid-row: 1/ span 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-column: 1/ span 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
}

.vis_columns {
    /*grid-area: vis_columns;*/
    grid-column: 2;
    -ms-grid-column: 2;
}

.vis_rows {
    /*grid-area: vis_rows;*/
    grid-row: 1/ span 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    /*height: 100vh;*/
}

.vis_metrics {
    /*grid-area: vis_metrics;*/
    grid-row: 3;
    grid-column: 2;
    -ms-grid-column: 2;
    -ms-grid-row: 3;
}

.vis_area_section {
    /*grid-area: vis_area;*/
    grid-row: 2;
    grid-column: 2;
    -ms-grid-column: 2;
    -ms-grid-row: 2;
}

.vis_guide_area {
    background-color: rgb(200,200,200);
    position: relative;
    border: 3px dashed rgb(120,120,120);
}

.vis_guide_area_text {
    width: 100%;
    height: 2em;
    font-size: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: 600;
}

.vis_tab_header_spacer {
    width: 40px;
    background-color: #d33;
}

.vis_tab_headers {
    display: inline-block;
    background-color: #434737;
    height: 35px;
    line-height: 35px;
}

.vis_tab_header[selected] {
    background-color: rgb(93, 106, 121);
    color: white;
}

.vis_tab_header {
    max-width: 150px;
    overflow: hidden;
}

.vis_tab_header_title_input {
    padding: 0 0 0 4px !important;
    box-shadow: none !important;
    height: 35px;
}

.vis_tab_close, .vis_mobile_tab_expand {
    color: white;
    cursor: pointer;
    margin-left: 10px;
    float: right;
    line-height: 39px;
    font-size: 16px !important;
}

.vis_tab_header, #vis_tabs_add {
    display: inline-block;
    color: white;
    background-color: #424446;
    cursor: pointer;
    padding: 0 10px 0 10px;
    height: 35px;
}

#vis_tabs_add {
    width: 20px;
    line-height: 35px !important;
    font-size: 20px !important;
}

.vis_tab_header_title {
    display: inline-block;
    max-width: 120px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: .9rem;
    white-space: nowrap;
    -ms-user-select: none;
    user-select: none;
}

.vis_tab_add {
    background-color: #434747;
    background-image: url(../images/icons/plus-white.svg);
    vertical-align: middle;
    background-size: 53%;
    background-position: center;
}

    .vis_tab_header:hover, .vis_tab_add:hover {
        background-color: rgb(114, 133, 154);
    }

/*#mobileTabs {
    z-index: 101;
    min-width:0;
    overflow:auto;
}
*/
.solIcon {
    display: block;
    position: relative;
    cursor: pointer;
    top: 1px;
    width: 20px;
    font-size: 20px !important;
}


.fadedSolIcon {
    opacity: 0;
    padding: 1px 5px;
}

.floatingSolIcons {
    margin: 0 5px;
    top: 4px;
    flex-basis: 20px;
}


.sol-selected .fadedSolIcon, .sol-option:hover .fadedSolIcon {
    opacity: 1;
}

.fieldFilter {
    background-image: url("../images/icons/filter.svg");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 13px 2px;
}

    .fieldFilter.activeFilter {
        background-image: url("../images/icons/filter-selected.svg");
    }

.sol-option .fieldFilter {
    padding: 10px;
}

.vis_filterSelect {
    top: 35px;
    position: absolute;
    color: black;
    z-index: 100001;
    border: none;
}

    .vis_filterSelect .sol-selection-container {
        border: none !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
    }

    .vis_filterSelect .sol-input-container input[type="text"] {
        box-shadow: inset 1px 1px 5px 0 #707070 !important;
    }

    .vis_filterSelect .sol-inner-container {
        margin: 1px;
    }

.vis_filterSelectWrapper {
    position: absolute;
}

.cog {
    background-image: url("../images/icons/cog_white.svg");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    padding: 10px;
    cursor: pointer;
    top: 4px;
}


.absoluteCentre {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
}

#drilldownOptions {
    height: 100%;
    width: 100%;
}

/*#vis_drilldownOptions_wrapper{
    height:calc(100% - 30px);
}*/

#vis_drilldownOptions_dataSources{
    list-style: none;
    padding:0;
    margin-top:30px;
    max-width:40%;
    height:calc(100% - 80px);
    overflow:auto;
}

#vis_drilldownOptions_dataSources li{
    padding:5px;
    cursor:pointer;
}

#vis_drilldownOptions_dataSources li[selected] {
    padding: 5px;
    margin: 5px 0;
    font-weight:bold;
}

.vis_drilldownFilter {
    display: none;
    width: 100%;
    background-color: #e5d0c0;
    padding: 5px;
    font-weight: bold;
    z-index: 0;
    font-size: 1em;
    height: 1em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



.vis_fieldsIconRow {
    width: 100%;
    padding: 10px 0 10px 0;
    background-color: rgb(69,73,73);
}

    .vis_fieldsIconRow > .icon {
        margin-left: auto;
        margin-right: 10px;
    }

.vis_allFields, .vis_allMetrics {
    z-index: 0;
    position: relative;
}

    .vis_allFields > .sol-container, .vis_allMetrics > .sol-container {
        width: 100% !important;
    }

.vis_drop_highlight {
    background-color: #e5d0c0;
}

.vis_drop_label {
    visibility: visible;
    opacity: .75;
    text-align: center;
    border: 1px dashed #999;
    display: block;
    height: 50px;
    width: 100px;
    line-height: 24px;
    overflow: hidden;
}

.vis_drop_label_hidden {
    display: none;
}



#vis_metric_heatmap_minmax {
    width: 90%;
    margin: 5px auto;
}

/*#vis_metric_heatmapMinValue, #vis_metric_heatmapMaxValue {
  margin-top: 10px;
}*/

#vis_metric_heatmapMinValue {
    float: left;
}

#vis_metric_heatmapMaxValue {
    float: right;
}

label[for^="vis_metric_showDifferences"] {
    vertical-align: middle;
}

.vis_metric_warning {
    font-size: 1.5em !important;
    margin-left: 10px;
    top: 5px;
    cursor: default;
}
/*IE11 hack*/
/*_:-ms-fullscreen, :root #vis_metric_heatmapMin, #vis_metric_heatmapMax {
    padding: 10px;
  }*/

#vis_landingFrame {
    height: 100%;
    width: 100%;
    border: none;
}

/*.vis_tools, #dashboard_tools {
    font-size: .8em;
}

    .vis_tools > div:first-child {
        height: 100%;
        width: calc(100% - 22px);
        float: left;
    }*/

#vis_table_selected_columns_header_text {
    pointer-events: none; /* prevents click on child elements getting intercepted */
}

.vis_tools_selected_section {
    min-height: 39px;
    overflow: hidden;
    user-select: none;
}

.vis_tools_selected_section_header {
  padding: 5px;
  background-color: var(--IMD-BACKGROUND-COLOR);
  color: var(--IMD-COLOR);
  border-top: 1px solid var(--IMD-ACCORDION-HEADER);
  border-bottom: 1px solid var(--IMD-ACCORDION-HEADER);
}

.vis_tools_selected_panel, .vis_tools_filters_panel {
    flex-shrink: 0; /* always show full height */
    flex-grow: 0;
}

.vis_tools_sol .sol_current_selection {
    white-space: nowrap;
    overflow-x: auto;
}

/**
  SOL overrides
*/

.vis_tools_sol .sol_quick_delete:hover {
    color: inherit;
}

.vis_tools_sol .sol-selected-display-item-text {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 5px;
}

.vis_tools_sol .sol-quick-delete {
    line-height: 23px;
    padding: 2px;
}

.vis_tools_sol {
    color: black;
    width: 100%;
    user-select: none;
}

    .vis_tools_sol .sol-option, .vis_tools_sol .sol-selected-display-item {
        margin: 3px 3px 3px 0;
        padding: 1px;
        background-color: #333;
        color: white;
    }

    .vis_tools_sol .sol-label, .sol-selected-display-item {
        cursor: move;
        position: relative;
        /*padding-right: 20px !important;*/
    }

.vis_selected_metrics .sol-selected-display-item {
    padding-right: 5px !important;
}

#vis_tools_filters{
    display:inline-block;
    vertical-align:middle;
}

#vis_tools_filters .sol-selected-display-item {
    background-color: #d33;
    color: #fff;
    cursor: default;
}

.vis_tools_sol .sol-selection {
    background-color: transparent;
}

.vis_tools_sol .sol-selection-container {
    border: none !important;
    position: static !important;
    background-color: transparent !important;
}

.vis_tools_sol .sol-container.sol-active {
    background-color: transparent;
}

.vis_tools_sol .sol-label-text, .vis_savedDrilldownOptions .sol-label-text {
    padding-left: 0;
}

#vis_tools_filters_clear {
    font-size: 16px !important;
    top: 4px;
    position: relative;
    cursor: pointer;
}


#vis_tools_filters_count {
    background-color: #d33;
    border-radius: 50%;
    color: #fff;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    margin-left: 3px;
}

.vis_tools_filters_add {
    font-size: 20px !important;
    position: relative;
    float: right;
    top: 7px;
    cursor: pointer;
    padding: 0px 10px 0 7px;
}

#vis_tools_accordion {
    min-width: 316px;
}

.vis_tools_fields_inner{
    min-height: 7em;
}

#vis_tools_fields {
    min-height: 150px; /* keeps filter results visible */
}

    #vis_tools_fields .sol-selection, #vis_tools_metrics .sol-selection {
        overflow-x: hidden;
    }

.accordion-panel.vis_tools_metrics {
    min-height: 90px;
}

.vis_drilldownOptions .sol-inner-container {
    border: 1px solid #ccc;
}

.displayNone {
    display: none !important;
}

.hidden {
    visibility: hidden;
}

/*.vis_expandIcon {
  height: 24px;
  width: 24px;
  background-size: 24px;
  background-image: url(/images/icons/maximise.svg);
  position: absolute;
  right: 0;
  top:40px;
  margin:5px;
  z-index:1;
}

.vis_expandIcon_minimise {
  background-image: url(/images/icons/minimise.svg);
}*/

#vis_new_mobile_header {
    display: none;
}


#vis_new_dataSource_label {
    line-height: 32px;
}

.vis_new_dataSource_error {
    display: inline-block;
}

.error_inline{
    display:inline-block;
}

.vis_new_cancel_container {
    height: 40px;
    width: 100%;
    margin-bottom: 5px;
    display:flex;
    justify-content:flex-end;
}

#vis_new_okButton {
    float: left;
    margin-left: 30px;
    display: none;
}

#vis_new_mobileLoadButton, #vis_new_mobileCreateButton {
    float: right;
    display: none;
}



.vis_new_button {
    float: right;
    z-index: 10000;
    margin: 0 0 0 40px;
}

.vis_new_wrapper {
    /*height: calc(100% - 50px);*/
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.vis_new_section_wrapper {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}

.vis_dataSourceSelect .sol-label-text, .vis_loadSelect .sol-label-text {
    padding-left: 5px;
}

.vis_dataSourceSelect, .vis_loadSelect {
    color: black;
}

.vis_grid_cell {
  display: block;
  content: '&nbsp';
  padding: 4px 3px !important;
  height: calc(100% - 1px);
}

.vis_grid_negative {
    background: #d33 !important;
    color: white !important;
}

.vis_grid_databar_cell{
  display:grid;
}

.vis_grid_cell.overlap {
  grid-column-start: 1;
  grid-row-start: 1;
  position: relative;
}

.vis_databar {
  grid-column-start: 1;
  grid-row-start: 1;
  position: relative;
  background-color: var(--IMD-GRID-HEADER-COLOR);
  background-image: linear-gradient(45deg, var(--IMD-BACKGROUND-COLOR), transparent);
  height: 98%;
}

#vis_metric_dataBarColour {
  vertical-align: middle;
  margin-left: 10px;
}

#vis_chart, #vis_table, #vis_table > div {
    height: 100%;
    width: 100%;
}

#vis_new_name_input {
    width: calc(100% - 16px);
}

.vis_options {
    padding: 10px;
}

#vis_options_category {
    width: 100%;
    padding: 7px;
}

/****
  Vis types
*/

#vis_options_type_section {
    flex-shrink: 0;
}



#vis_toolbar_view, #vis_toolbar_mobileTabs {
    display: none;
}



#vis_field_options {
    overflow-y: auto;
    overflow-x: hidden;
    height: 395px;
    padding: 10px;
}

#vis_field_options_tabs, #vis_drilldownOptions_tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.vis_field_tab_header {
    flex-grow: 1;
}

#vis_field_options_dialog {
    color: black;
    z-index: 1;
    position: absolute;
    width: 330px;
    height: 488px;
    display: none;
    background-color: #fff;
    font-size: .8em;
    border: 1px solid #ccc;
    z-index: 10000;
}


.field_options_row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.field_options_row_content {
    flex-grow: 1;
}

#vis_field_options_dialog > div, #vis_field_options_dialog .sol-selection-container, #vis_field_options_dialog .sol-option {
    background-color: #fff !important;
    color: black !important;
}

#vis_field_filter_pleasewait {
    padding: 20px;
    text-align: center;
}

#vis_field_others_label {
    width: auto;
    margin: 0;
}

#vis_field_include_row {
    justify-content: space-around;
}

.vis_field_formLabel {
    flex-basis: 70px;
}

/*#vis_mobile_tabs_add {
    font-size: 20px !important;
    margin: 5px;
    left: calc(100% - 80px);
}

#vis_mobile_tabs_nav {
    height: 100%;*/
    /*width: 100%;*/
    /*overflow-y: scroll;
    clear: both;
}

#vis_mobile_tabs_title {
    color: #fff;
    font-size: 1.5em;
    padding: 7px;
    display: inline-block;
}

#vis_mobile_tabs_list {
    padding: 0;
    margin: 10px 0 30px 0;
    color: #fff;
    overflow-y: scroll;
    height: 100%;
}

#vis_mobile_tabs_list .accordion-panel {
    margin:0;
}



.vis_mobile_tab_header .vis_tab_close {
    font-size:14px !important;
}

.vis_mobile_tab_header, .vis_field_tab_header {
    list-style-type: none;
    cursor: pointer;
    padding: 0 0 5px 10px;
    background: #434747;
    margin-bottom: 4px;
}

.vis_mobile_tab_header {
    display: flex;
    align-items: center;
    margin: 0;
    padding-right:10px;
}

.vis_mobile_tab_header .vis_tab_header_title {
    max-width: calc(100% - 50px);
    flex-grow:1;
}

.vis_mobile_tab_header[selected][aria-expanded="true"], .vis_mobile_tab_header[selected][aria-expanded="true"] + .accordion-panel .vis_mobile_tab_header {
    background-color: #656565;
}*/

.vis_field_tab_header {
    color: #fff;
    height: 100%;
    font-weight: bold;
    padding-bottom:0;
}

    .vis_field_tab_header[selected] {
        background-color: #fff;
        color: #000;
        border-radius: 0 16px 0 0;
    }


    .vis_mobile_fieldSelect, .vis_mobile_metricSelect, .vis_mobile_filtersSelect {
        width: 340px !important;
        color: black;
    }

    .vis_mobile_filtersSelect .fieldFilter {
        top: 0 !important;
        left: auto !important;
        right: 40px !important
    }

#vis_rename_input {
    max-width: 280px;
}

.amcharts-export-menu {
    display: none; /* temp until Amcharts4 brings back annotations*/
}

/* phones in either portrait or landscape */
@media only screen and (max-device-width: 499.9px) and (max-device-height:1023.9px), only screen and (max-device-height: 499.9px) and (max-device-width:1023.9px) {

    .vis_share_option {
        width: 75px;
    }

    .vis_new_container {
        width: auto;
        height: calc(100% - 15px);
        margin: 0;
        overflow: scroll;
    }

    .vis_new_header_wrapper {
        display: none;
    }

    .vis_new_dataSources_error {
        display: block;
    }

    .vis_tab_headers {
        display: flex;
        flex-direction: row;
    }

        .vis_tab_headers > .vis_new_tab_header {
            flex-grow: 1;
            max-width: none;
            text-align: center;
            line-height: 30px;
            color: #fff;
            background-color: #434747;
            cursor: pointer;
            padding: 0 10px 0 10px;
            height: 40px;
        }

    #vis_new_mobile_header {
        display: flex;
    }

    .vis_new_tab_header:not([selected]) {
        background-color: white;
        color: black;
    }


    .vis_new_container h1 {
        display: inline;
        margin: 0;
    }

    .vis_new_section_wrapper {
        flex-direction: column;
    }

    .vis_new_form {
        height: 100%;
        width: 100%;
    }

    .vis_new_button {
        margin: 0;
    }

    #vis_new_okButton {
        display: block;
    }

    .vis_new_cancel_container {
        margin-top: 5px;
        display: flex;
        justify-content: space-around;
        /*      position: fixed;
        bottom: 42px;*/
        background-color: #434747;
        left: 0;
    }

    #vis_toolbar_view, #vis_toolbar_mobileTabs {
        display: block;
    }

    #vis_tab_container {
        display: none;
    }

    .vis_tools_fields, .vis_tools_metrics {
        display: none;
    }

    #vis_tools_filters_clear {
        top: 2px;
    }

    #vis_tools_selected .sol-selected-display-item {
        padding: 6px;
    }

    .fieldFilter {
        display: block;
        height: 32px;
        width: 30px;
        padding: 0 !important;
        background-size: 30px;
    }

    /*#vis_metric_heatmapMinValue, #vis_metric_heatmapMaxValue {
      display: block;
    }*/

    #vis_metric_heatmapMin, #vis_metric_heatmapMax {
        width: 60%;
    }

    #vis_new_name_label, #vis_new_type_label {
        display: none;
    }

    .vis_new_form .formRow {
        margin-bottom: 0;
    }

    #vis_tools_accordion {
        min-width: 280px;
    }

    .vis_tab_close, .vis_mobile_tab_expand {
        float: none;
        font-size: 16px !important;
        background-image: none;
        line-height: normal;
        margin-left: 30px;
        width: 16px;
        height: 16px;
    }

    .vis_mobile_tab_subheader {
        padding-left: 20px;
        padding-bottom: 1em;
        font-size: .9rem !important;
    }
}


@media only screen /* phones in portrait */
and (max-device-width: 499.9px) and (max-device-height:1023.9px) {


    .slideout-expanded {
        min-width: calc(100% - 18px);
    }

    .slideout-right {
        min-width: 100%;
    }

    .vis_mobile_fieldSelect, .vis_mobile_metricSelect, .vis_mobile_filtersSelect {
        width: 100% !important;
    }

    .vis_selected_icon {
        font-size: 1.2em !important;
        margin-right: 0px;
        padding: 0 20px 0 20px;
    }

    .vis_tools {
        font-size: 1em;
    }

    .vis_tools_selected_section_header {
        padding: 10px;
    }

    #vis_metricOptions.vis_metricOptions_visible {
        width: calc(100% - 40px);
    }


    #vis_metricOptions_buttons {
        bottom: 50px;
    }

    .fadedSolIcon {
        padding: 2px 0;
    }
}

@media only screen /* phones in landscape */
and (max-device-height: 499.9px) and (max-device-width:1023.9px) {
    .vis_filterSelect.sol-container, .vis_filterSelect.sol-inner-container {
        top: initial !important;
    }

    #vis_new_name_input {
        padding-top: 3px;
        padding-bottom: 3px;
    }

    #vis_share_okButton {
        margin-right: 30px;
    }

    .fadedSolIcon {
        padding: 2px 5px;
    }
}

/* phones in either portrait or landscape */
@media only screen and (max-device-width: 499.9px) and (max-device-height:1023.9px), only screen and (max-device-height: 499.9px) and (max-device-width:1023.9px) {
    .vis_tools {
        height: 100% !important;
    }



    /* workaround for sizing issue of DragDropTouch's 'ghost' element when dragging selected sol items in Chrome */
    div[data-value][style] {
        bottom: initial !important;
    }

    #vis_field_filter_loading_image {
        line-height: 50px;
        transform-origin: 50% -12.5%;
    }
}

@media only screen /* tablets */
and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio:1) {

    .resizeGripper {
        width: 26px;
    }

    .vis_tools > div:first-child {
        height: 100%;
        width: calc(100% - 32px);
        float: left;
    }

    .fadedSolIcon {
        padding: 2px 10px;
    }

    #vis_field_filter_loading_image {
        line-height: 50px;
        transform-origin: 50% -12.5%;
    }
}
