:root {
  --main-bg-color: #454545;
  --selected-bg-color: #111111;
}

.headerImage {
  display: block;
  margin-left: 15px;
  margin-right: auto;
  width:278px;
  height:137px;
}

.mainContent {
	width: 100%;
	height: 100%;
	border: none;
}

html, body {
	width: 100%;
	height:100%;
	margin: 0;
	padding: 0;
}

.content {
    height: 300px;
    border: none;
    padding: 10px;
    overflow: hidden;
}

.content img {
    margin-right: 15px;
    max-height:100%;
    margin: 20px;
}

.right {
    float: right;
}

.left {
    float: left;
}

main {
	height: calc(100% - 350px);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--main-bg-color);
}

li {
  float: left;

}

.user {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

.quick-login {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  background-color: #a1a1a1;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111111;
}

li label {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

li input {
  display: block;
  color: #111111;
  text-align: center;
  text-decoration: none;
  margin-top: 14px;
}

.row {
  display: flex;
  height:100%;
}

.firstColumn {
  flex: 80%;
  padding: 10px;
  overflow: auto;
}

.secondColumn {
  flex: 20%;
  padding: 10px;
  text-align: center;
}

.dark{
  margin-left: 0;
  background-color: #fff;
}

.calendar{
  box-shadow: 0px 0px 35px -16px rgba(0,0,0,0.75);
  font-family: 'Roboto', sans-serif;
  padding: 10px 30px;
  color:#363b41;
  display: inline-block;
  text-align: left;
  background: var(--main-bg-color);
}

.calendar_header{
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.header_copy{
  font-size:20px;
}
.calendar_plan{
  margin-bottom: 20px;
}
.cl_plan{
  width: 95%;
  height: 60px;
  background-image: linear-gradient(-222deg, #FF8494, #ffa9b7);
  box-shadow: 0px 0px 52px -18px rgba(0, 0, 0, 0.75);
  padding:30px;
  color:#fff;
}
.cl_title{

}
.cl_copy{
  font-size:16px;
  margin: 20px 0;
  display: inline-block;
}


.calendar_events{
  color:#A39D9E;
}

.ce_title{
  font-size:14px;
}

.event_item {
  margin: 18px 0;
  padding:5px;
  cursor: pointer;
  &:hover {
    background-image: linear-gradient(-222deg, #FF8494, #ffa9b7);
    box-shadow: 0px 0px 52px -18px rgba(0, 0, 0, 0.75);

    .ei_Dot {
      background-color: #fff;
    }
    .ei_Copy,.ei_Title{
      color:#fff;
    }
  }
}

.ei_Dot,.ei_Title{
  display:inline-block;
}

.ei_Dot{
  border-radius:50%;
  width:10px;
  height: 10px;
  background-color: #A39D9E;
  box-shadow: 0px 0px 52px -18px rgba(0, 0, 0, 0.75);
}
.dot_active{
  background-color: #FF8494;
}

.ei_Title{
  margin-left:10px;
  color:#fff;
}

.ei_Copy{
  font-size:12px;
  margin-left:27px;
}

.dark{
  color:#fff;
  .header_title,.ei_Title,.ce_title{
    color:#fff;
  }
}
/*
form {
  max-width:420px;
  margin:50px auto;
}*/

.feedback-input {
  font-family: 'Roboto', sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid var(--main-bg-color);
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus {
  border:2px solid var(--main-bg-color);
}

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

/*
[type="submit"] {
  font-family: 'Roboto', sans-serif;
  width: 100%;
  background:var(--main-bg-color);
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:20px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}

[type="submit"]:hover {
  background: var(--selected-bg-color);
}
*/