/* Removes "Tell A Friend" link from event pages */
.neoncrm-event-actions .neoncrm-TellFriend {
display: none;
}

/* Removes bullet points from Event Action section of event pages */
.neoncrm-event-actions ul {
list-style: none;
}

/* ===========================
Adding minimal TSC color scheme
Note, banner image has solid white background, and extends beyond container border
Chris Wesselborg, March 2018
*/

/* TSC legacy website text background */
body {
background-color: #dcddd1;
}

/* TSC legacy website text color
Lighter hue transitions horizontally to white banner image background,
adding minimal color without interfering too much with resizing responsive
banner image */
.container {
background: linear-gradient(to right, #fbfcef, #fff 20%, #fff 80%, #fbfcef);
color: #414e5a;
}

/* Add left and right padding for better appearance of form on small devices */
.row {
    padding-left: 0.2em;
    padding-right: 0.2em;
}

/* Adjust appearance of org toggle and submit buttons */
input[type="button"],
input[type="submit"] { 
background-color: #414e5a;
color: #fefff2;
border-radius: 12px; 
}

/* Adjust hover style of org toggle and submit buttons */
input[type="button"]:hover,
input[type="submit"]:hover {
background-color: #cdcdc2;
border: 1px solid #414e5a;
color: #414e5a;
}
