/* Fixes to IE go in this file where possible */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* The above media query will only apply CSS to IE10 and IE11 */


/* Fix text over-run in new activity screen */
.dashboard .bar .info p {
    max-width: 496px;
}

/* Fix corporate hospitality calendar items not fitting in tile */
#event_option_list .event_item {
    height: 270px;
}

/* fix input box backgrounds using old background color */
input[type=file], input[type=text] {
    background: white;
}

/* Fix for IE10 putting a thick border around linked images */
a > img { border: 0px }

/* START: fix summary table overflowing - only required for IE10 - IE11 does not need this one */
.dashboard .table .box.head > div {
    max-width: 79px;
}
.dashboard .table .box.content > div {
    max-width: 79px;
}
.dashboard .report_table .box.head > div {
    max-width: 68px;
}
.dashboard .report_table .box.content > div {
    max-width: 68px;
}
/* END: fix summary table overflowing */

.avatar svg {
    padding:0 !important;
    z-index:-1;
}

.nav-bar .avatar .links {
    display: none;
}

.nav-bar .avatar:hover .links {
    opacity: 1;
    display: block;
}

} /* END: @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) */
