<link rel="stylesheet" type="text/css" href="https://gsvlabs-confluence-files.s3-us-west-2.amazonaws.com/stylesheets/EWC/investorDashStyles.css" />
<script type="text/javascript" src="https://gsvlabs-confluence-files.s3-us-west-2.amazonaws.com/js/ewc/investorDashScript.js?v=910"></script>
<style>
.wiki-content .ev-cards-outer-container {
background-image: url("https://gsvlabs-confluence-files.s3-us-west-2.amazonaws.com/images/EWC+2020/gradient-vertical.jpg");
background-size: cover;
background-repeat: no-repeat;
}
#announcements-wrapper > span.conf-macro {
height: 100%;
}
#additional-filters-button {
width: calc(100% - 80px);
}
.zran-event {
display: none;
}
#watchlist-cards-section #scroll-section-1 .conf-macro {
min-height: max-content !important;
height: max-content !important;
}
@media only screen and (max-width: 480px) {
.events-search-main {
flex-direction: column;
align-items: center;
height: 75px;
flex-wrap: nowrap;
justify-content: flex-start;
padding-bottom: 0px;
overflow: hidden;
}
.wiki-content .ev-search-container {
padding-bottom: 45px;
}
}
.countryFilterContainer #country-placeholder {
background-color: #0f0e0e;
border: none;
font-size: var(--font-size-s);
padding: 11px 15px;
width: 120px;
}
.countryFilterContainer {
justify-content: center !important;
}
#filter-search-saved-view button {
height: 35px;
width: 170px;
display: flex;
justify-content: center;
align-items: center;
background: #1f1f1f;
border: 1px solid #3ddeed;
cursor: pointer;
font-size: 12px;
color: rgba(255, 255, 255, 0.71);
font-weight: bold;
}
#filter-search-saved-view button:hover {
opacity: 0.8;
}
.filter-saved-view-buttons {
margin: 10px 0px !important;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px !important;
}
#rw_theme_header {
position: fixed !important;
top: 0;
width: 100%;
background-color: var(--navbar-background-color);
}
#rw_theme_content {
margin-top: 50px !important;
}
.watchlist-banner-message p {
font-size: 14px;
margin-top: 5px;
}
.watchlist-banner-message p a {
font-weight: bold;
font-size: 15px;
display: block;
margin-top: 5px !important;
}
#watchlist-cards-section .scrolling-ev-cards-wrapper .conf-macro {
min-height: max-content !important;
height: max-content !important;
}
@media screen and (max-width: 700px) {
.wiki-content .ev-search-container .filterSearchTitle {
display: none !important;
}
#filter-search-main-view.filtersContainer {
width: calc(100% - 60px) !important;
}
.wiki-content .ev-search-container #filter-search-saved-title {
display: none !important;
}
#filter-search-saved-view {
width: calc(100% - 60px) !important;
}
}
/* ADDITIONAL FILTERS MOBILE */
@media only screen and (max-width: 480px) {
.wiki-content .ev-search-container {
flex-direction: column;
flex-direction: column;
align-items: center;
height: max-content;
min-height: unset;
}
.dropdownFilterContainer {
height: 47px !important;
justify-content: center !important;
}
#rw_wrapper #main-content.wiki-content {
margin-top: 40px;
}
html, body {
background-color: #111111;
}
}
</style>
<script>
// New Version of Format Date (Asynchronous)
async function formatDate2(d) {
const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
var hh = d.getHours();
var m = d.getMinutes();
var s = d.getSeconds();
var dd = "am";
var h = hh;
if (h >= 12) {
h = hh-12;
dd = "pm";
}
if (h == 0) {
h = 12;
}
m = m<10?"0"+m:m;
s = s<10?"0"+s:s;
var strTime = h+":"+m+" "+dd
return strTime + " on " + monthNames[d.getMonth()] + " " + d.getDate();
// return dayNames[d.getDay()] + ", " + monthNames[d.getMonth()] + " " + d.getDate() + " " + d.getFullYear() + ", " + strTime;
}
</script> |