* {
    padding: 0, 0, 0, 0;
    margin: 0, 0, 0, 0;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: black;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    min-height: 100%;
    position: relative;
}

body {
    height: 100%;
}

.sidebar {
    -moz-box-shadow:    1px 1px 8px 1px #000000;
    -webkit-box-shadow: 1px 1px 8px 1px #000000;
    box-shadow:         1px 1px 8px 1px #000000;
    width: 300px;
    margin: 0px;
    padding: 0px;
    padding-left: 20px;
    top: 0px;
    left: 0px;
    z-index: 1px;
    /*background-color: #ff5964;*/
    background-color: #D9514E;
    position: fixed;
    height: 100%;
    overflow: auto;
}


div.content {
    margin-left: 350px;
    padding: 1px 1px;
    padding: 0px;
    height: 1000px;
}


.alignleft {
	float: left;
}
.alignright {
	float: right;
}

/* Sidebar content */
.sidebar-text {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 0px;
    font-size: 16px;
}

div.slider-labels {
    padding-top: 0px;
    margin-top: 0px;
}

div.slider-labels > p {
    font-size:12px;
    font-weight: 400;
}

.slidecontainer {
    display: none;
    width: 80%;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0px;
    margin-bottom: 5px;
}
  
.slider {
  -webkit-appearance: none;
  padding-bottom: 0px;
    margin-bottom: 0px;
  width: 100%;
  height: 4px;
  border-radius: 8px;  
  background: #ffffff;
  outline: none;
  opacity: 0.9;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%; 
  background: #2a2b2dff;
  background : #ffe74c;
  border: 1px solid black;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffe74c;
  cursor: pointer;
}

#logo {
    font-weight: 400;
    font-size: 30px;
}

.menu-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 0px;
}

/* for centering button */
.vertical-center {
    margin: 0;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.button {
    border: 1px solid black;
    display: inline-block;
    border-radius: 4px;
    background-color: #ffe74c;
    color: black;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 20px;
  }
  
.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
.button:hover span {
    padding-right: 25px;
  }
  
.button:hover span:after {
    opacity: 1;
    right: 0;
}


.option-submenu {
    margin-top: 2px;
    margin-bottom: 5px;
}
/* End sidebar content */

.board-container {
    margin-top: 0;
    margin-left: 300px;
    top: 0;
    height: 100%;
    text-align: center;
    right: 0;
}

.collapse-button {
    display: none;
    position: absolute;
    right: 0;
    margin-right: 10%;
    margin-top: 13px;
    border: 1px solid black;
    border-radius: 4px;
    background-color: #ffe74c;
    color: black;
    text-align: center;
    font-size: 14px;
    padding: 5px;
    width: 90px;
}


#mobile-header {
    display: none;
}

/* mobile styling */
@media (max-width: 900px) {
    .sidebar {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .board-container {
        position: absolute;
        margin-top: 60px;
        width: 100%;
        height: 70%;
    }

    #logo {
        display: inline-block;
    }

    #expand {
        display: none;
    }

    #collapse {
        display: inline-block;
    }

    .collapse-button {
        transition: all 0.5s;
        cursor: pointer;
    }

    #mobile-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 55px;
        z-index: 2;
        padding-left: 20px;
        -moz-box-shadow:    1px 1px 8px 1px #000000;
        -webkit-box-shadow: 1px 1px 8px 1px #000000;
        box-shadow:         1px 1px 8px 1px #000000;
        background-color: #D9514E;
    }
}