/* CSS Document */

:root {
    --main-hex: #000000; /*#237CE4;*/
	--main-hex-a: #000000B3; /*#237CE4B3;*/
	--accent-hex: #E6E6E6;
	--border-hex: #000000;
    --success-hex: #48D61A;
	--error-hex: #EB0C1A;
}

html {
    font-size: 16px;
}

body {
	/*font-family: 'Montserrat', sans-serif;*/
	font-family: 'Lexend Deca', sans-serif;
	line-height: 145%;;
    font-size: 16px;
	font-size: 1rem;
}

html,body {
	width:100%;
	height:100%;
}

h1, h2, h3 {
	color: var(--main-hex);
	font-weight: bold;
	padding-bottom: 20px;
}

h1 {
	font-size: 2.3rem;
	line-height: 2.3rem;
	padding-bottom: 20px;
}

h2 {
	font-size: 2rem;
	line-height: 2rem;
}

h3 {
	font-size: 1.4rem;
	line-height: 1.4rem;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
	background-color: white;
}

input[type="text"]::-webkit-clear-button, input[type="search"]::-webkit-clear-button { 
	display: none; 
}

select {
	border:1px solid var(--main-hex);
	border-radius: 3px;
	padding:5px 10px;
}

textarea {
    padding: 10px;
}

input[type="submit"] {
    background-color: var(--main-hex);
    border: 0px;
    padding: 10px 20px;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
}

a, input[type="submit"], button {
    cursor: pointer;
}

button, a.button {
	padding:5px 10px;
	font-weight: bold;
	font-size: 1rem;
	background-color: #FFFFFF;
	border:1px solid #000000;
	border-radius:3px;
	cursor:pointer;
	color:#000000;
	text-decoration: none;
}

button:hover, a.button:hover {
	background-color: #EEEEEE;
}

button:disabled {
	cursor: not-allowed;
	pointer-events: all !important;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table, th, td {
	border: 1px solid black;
}

th, td {
	padding: 8px;
}

td {
	vertical-align:middle;
}

.header {
	width: 100%;
	height: 60px;
	padding: 0px 20px;
	background-color: var(--main-hex);
	border-bottom: 1px solid var(--main-hex); /*var(--border-hex);*/
	position: fixed;
	z-index: 50000;
	display:flex;
	justify-content: space-between;
	align-items: center;
}

.header #search {
	display:flex;
	/*background-color: #FFFFFF;*/
	justify-content: space-between;
	align-items: center;
	/*border: 1px solid #FFFFFF;*/
}

.header #search input[type="search"] {
	background-color: #FFFFFF;
	border: 0px;
	padding: 5px;
}

.header #search select {
	background-color: #FFFFFF;
	border: 0px;
	padding: 5px;
	padding-right:20px;
	margin-right:20px;
}


.header #search input[type="submit"] {
	background-color: #FFFFFF;
    /*background-image: url("../img/search-icon.png");*/
	/*background-image: url("../fonts/svgs/solid/search.svg");*/
    /*background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	fill: var(--main-hex);*/
	background-color: var(--main-hex);
    -webkit-mask-image: url(../fonts/svgs/solid/search.svg);
    mask-image: url(../fonts/svgs/solid/search.svg);
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
    mask-position: center;
	-webkit-mask-position: center;
    mask-size: 1rem;
	-webkit-mask-size: 1rem;
	border: 0px;
    text-indent: -5000px;
	position:relative;
}  

.header .left {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
}

.header .logo {
	color: #FFFFFF;
	margin-right: 20px;
	font-size: 2rem;	
	font-weight: bold;
	text-decoration: none;
	font-family: "Playwrite GB S", cursive;
  	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.logo_text {
	font-family: "Playwrite GB S", cursive;
  	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.header .logo:hover {
	color:#EB0C1A;
}

.header .left nav {
    margin-left: 20px;
}

.header .left nav a {
	color: #FFFFFF;
	text-decoration: none;
    margin-right: 20px;
}

.header .left nav a:hover {
    text-decoration: underline;
}

footer {
	background-color: var(--main-hex);
	color: #FFFFFF;
	background-color: white;
	color: var(--accessory-hex);
	width: 100%;
	padding: 20px;
	margin: 0px auto;
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


footer.contained {
	background-color: var(--accent-hex);
	color: #FFFFFF;
	width: 100%;
	height:35px;
	border-top:1px solid var(--border-hex);
	display:flex;
	justify-content:space-between;
	align-items: center;
	padding:0 20px;
	margin: 0px auto;
}

footer a{
	color: black;
	text-decoration:none;
}

footer a:hover{
	text-decoration:underline;
}

footer .f_left_links {
	display:flex;
	gap:20px;
}

main {
	width: 80%;
	margin: 0px auto;
	margin-top: 20px;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}

main#home {
	width:100%;
	height:100%;
	margin-top:0px;
	align-items: stretch;
	align-content: stretch;
}

main#home .left, main#home .right {
	overflow:hidden;
}

main#home .left, main#home .right textarea {
	overflow-y:scroll;
}

main#home .left {
	/*overflow:visible;
	overflow-x:visible;
	overflow-y:scroll;*/
	width:50%;
}

main#home .left .feedback_header {
	padding:20px;
	padding-bottom:0px;
	width:100%;
	display:flex;
	justify-content: space-between;
}

main#home .left .feedback_header.options {
	padding:0px 20px;
	padding-bottom:20px;
}

main#home .left .feedback_header h1 {
	word-break: break-all;
	margin-right:20px;
}

main#home .right {
	width:50%;
	border-left: 1px solid var(--border-hex);
	position:relative;
}

main#home .right textarea{
	width:100%;
	height:100%;
	border:0px;
	border-radius: 0;
}

main#home .right .button_holder{
	position:absolute;
	z-index:1;
	right:20px;
	top:20px;
	display:none;
}

/*main#home .right:hover .button_holder{
	display:block;
}*/

main#home .right .button_holder button {
	margin-left:20px;
}

main#home aside, 
main#profile aside, 
main#search aside, 
main#register aside, 
main#password aside, 
main#index aside, 
main#login aside, 
main#edit_profile aside,
main#presentations aside {
	width:30%;
	background-color: var(--accent-hex);
	align-self: flex-start;
}

main#profile aside {
    padding: 20px;
    margin-right: 20px;
    width: 40%;
}

main#profile aside h2, main#profile aside h3 {
    width: 100%;
    line-height: inherit;
    text-align: center;
}

main#profile aside .avatar{
    width: 75%;
    max-width: 200px;
    max-height: 200px;
    margin: 0px auto;
    margin-bottom: 20px;
}

main#profile aside .avatar img{
    width: 100%;
}

main#presentations aside {
	padding:20px;
}

main#index .page_pane {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-direction:column;
}

main#index .page_pane h1, main#index .page_pane h2, main#index .page_pane p {
    width: 100%;
}

main#index p, main#index li {
    font-size: 1.4rem;
    line-height: 140%;
}

main#index ul {
	list-style-type:square;
	list-style-position: inside;
}

main#index p, main#index li {
	margin: 20px auto;
}

main#index .home_comments p.link_as_button_holder.register_holder {
	margin-top:40px;
}

#container {
	width: 100%;
	/* height:100%; */
	padding-top: 60px;
}

.fh_home #container {
	height:100%;
}
 
#news_feed {
    width: 100%;
}

#document {
	width: 70%;
	padding-right: 20px;
}

#document a {
	color: var(--error-hex);
	text-decoration: none;
}

#document a:hover {
	text-decoration: underline;
}

#document h2 {
	margin-top:20px;
}	

#document p, #document li {
	padding-bottom:20px;
}

#form {
	width: 70%;
	padding-right: 20px;
}

#search_results {
	width: 70%;
	padding-right: 20px;
}

#login_form {
	padding: 20px;
}

#login_form.login_sidebar h2 {
	/* padding-bottom:10px; */
	font-family: "Playwrite GB S", cursive;
  	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	color: var(--error-hex);
}

#login_form.login_sidebar h3 {
	padding-bottom:10px;
}

#login_form.login_sidebar h3 a{
	color: var(--main-hex);
	font-size:1.4rem;
	line-height:1.4rem;
}

#form #login_form {
	background-color: var(--accent-hex);
}

#form p {
	margin-top:20px;
}

#login_form label, #form label {
    margin-top: 20px;
    color: var(--main-hex);
    width: 100%;
    display: block;
    clear: both;
    font-weight: bold;
}

#login_form input, #form input, #form textarea, #form select {
	width: 100%;
	border: 0px;
	background-color: #FFFFFF;
	padding: 10px;
	color: var(--main-hex);
	font-size: 1rem;
    margin-top: 5px;
}

#form input, #form textarea, #form select {
	border: 1px solid var(--main-hex);
}

#login_form input[type="submit"], #form input[type="submit"] {
	width: 120px;
	border: 0px;
	color: #FFFFFF;
	padding: 10px 20px;
	margin-top: 20px;
	margin-bottom: 40px;
	background-color: var(--main-hex);
	font-weight: bold;
	font-size: 1rem;
	border-radius: 3px;
}

#login_form input[type="submit"].wide_butt, #form input[type="submit"].wide_butt {
	width: auto;
}

#login_form a {
	color: var(--main-hex);
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
}

#login_form a:hover {
	text-decoration: underline;	
}

#form .avatar {
    max-width:200px;
    margin-top: 20px;
    margin-bottom: 40px;
}

#post_creator {
    margin-bottom: 20px;
    position: relative;
}

#post_blackout {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--main-hex-a);
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
}

.follow_button {
    background-color: var(--main-hex);
    border: 0px;
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px 20px;
    padding-left: 50px;
    font-size: 1.1em;
    background-size: contain;
    background-position: 5px center;
    background-repeat: no-repeat;
    display: block;
    margin: 10px auto;
}

.post_block .row_full .follow_button {
    margin: 0px;
}

.follow_button.follow_user {
    background-image: url("../img/follow-icon.png");
}

.follow_button.following_user {
    background-image: url("../img/following-icon.png");
}

.link_as_button {
    background-color: var(--main-hex);
    border: 0px;
    padding: 10px 20px;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
}

.page_pane {
	width: 70%;
	padding-right: 20px;
}

.post_block {
    width: 100%;
    padding-bottom: 20px;
}

.post_viewer {
    width: 100%;
    border-bottom: 1px solid var(--border-hex);
    padding-bottom: 20px;
    margin-bottom: 0px;
}

.post_block .row{
    display: flex;
    width: 100%;
    align-items: stretch;
}

.post_block .row_full{
    display:flex;
    width: 100%;
    justify-content: space-between;
}

.post_block .row.right{
    justify-content: right;
    
}

.post_block img.avatar{
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.post_block img.attachment{
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.post_content {
    width: 100%;
}
.post_content p{
    margin-top: 10px;
    width: 100%;
    clear: both;
    
}

.post_content a{
    color: var(--main-hex);
    text-decoration: none;
}

.post_content a:hover{
    text-decoration: underline;
}

.post_content a.user_name{
    font-weight: bold;
    font-size: 1.4rem;
}

.post_content a.delete{
    color: var(--error-hex);
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.4rem;
}

.post_content a.delete:hover{
    color: #000000;
    text-decoration: none;
}

.post_composer {
    width: 100%;
    border-bottom: 1px solid var(--border-hex);
    padding-bottom: 20px;
    margin-bottom: 0px;
}

.post_composer .row{
    display:flex;
    width: 100%;
    /*align-items: stretch;*/
}

.post_composer .row.right{
    justify-content: right;
    
}

.post_composer img{
    width: 100px;
    height: 100px;
	display: block;
	margin-left: auto;
}

.post_composer textarea {
    width: 100%;
    resize: vertical;
    min-height: 100px;
    border: 1px solid var(--border-hex);
	align-self: stretch;
	margin-left: 20px;
}

.post_composer .file {
    width: 100%;
    margin-top: 20px;
    margin-right: 20px;
    padding: 10px 20px;
    border: 1px solid var(--accent-hex);
    color: var(--main-hex);
}

.post_composer .post {
    margin-top: 20px;
    
}

.profile_right {
    width: 60%;
}

.edit_profile {
    text-align: center;
}

.edit_profile a{
    color: var(--main-hex);
    text-decoration: none;
}

.edit_profile a:hover {
    text-decoration: underline;    
}

.followers {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.followers span.top {
    padding: 0px 10px;   
}

.tabs {
    width: 100%;
    margin-top: 20px;
    border-bottom: 1px solid var(--border-hex);
    padding-bottom: 10px;
    margin-bottom:20px;
}

.tabs a {
    margin-right: 20px;
}

.tabs a.active {
    font-weight: bold;
}

.search_feed_people {
    display: none;
}

.no_posts {
    width: 100%;
    border: 10px dashed var(--accent-hex);
    color: var(--accent-hex);
    font-weight: bold;
    padding: 100px 0px;
    text-align: center;
    font-size: 2rem;
    
}

 /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #EEEEEE;
  color: #000000;
  /*cursor: pointer;*/
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size:12px;
	font-size: 1.2rem;
}

.feedback_delete, .feedback_item_copy, .criterion_delete, .assignment_name button {
	visibility: hidden;
	color:#EB0C1A;
}

.accordion button {
	background-color: #EEEEEE;
}

.assignment_name {
	align-items: flex-start;
}

.assignment_name button {
	flex-grow:0;
	flex-shrink: 0;
}

.assignment_name:hover button {
	visibility: visible;
}

.criterion_delete {
	margin-right: 10px;
}

.accordion:hover .criterion_delete {
	visibility: visible;
}

.feedback_line_parent {
	display: block;
	min-height:16px;
	min-height: 1rem;
}

.feedback_delete:hover, .criterion_delete:hover, .assignment_name button:hover{
	background-color: #EB0C1A; /*#000000;*/
	color:#FFFFFF;
	border-radius:3px;
	border:1px solid #000000;
	padding:5px 10px;
}

.feedback_item_copy {
	color: var(--main-hex);
}

.feedback_item_copy.copied {
	color: var(--success-hex);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
	padding: 0 20px;
	padding-bottom: 40px;
	background-color: white;
	/*overflow: hidden;*/
} 

.panel.course_panel {
	padding: 0;
	padding-bottom:40px;
	/*overflow: hidden;*/
} 

.panel ul {
	width:100%;
	/*padding:20px;*/
	margin-top:20px;
	list-style: none;
}

.panel ul li {
	width:100%;
	margin-bottom:20px;
	display: flex;
	align-items: flex-start;
}

.panel ul li p {
	flex-grow: 1;
	flex-basis: 100%;
	overflow-wrap: break-word;
	/* max-width: 100%; */
	word-wrap: anywhere;
}

.panel ul li button{
	flex-shrink:0;
	flex-grow:0;
	margin-left:20px;
}

.panel ul li button.closer {
	margin-left:10px;
	white-space: nowrap;
	text-align: center;
}

.panel ul li div.hold_bc {
	margin-left:10px;
}

.panel ul li div.hold_bc.hbc_space {
	margin-left:20px;
}

.panel ul li div.hold_bc button.closer {
	margin-left:0px;
}

.panel ul li:hover .feedback_delete {
	visibility: visible;
}

.panel ul li:hover .feedback_item_copy {
	visibility: visible;
}

.move, .move_b {
	cursor: move;
	margin-right:10px;
	display:none;
}

.accordion_toggle {
	font-size:22px;
	font-size:2.2rem;
	cursor: pointer;
}

.new_feedback {
	/*margin-bottom:20px;*/
}

.copy {
	/*transition: .5s;*/
}

.copied {
	color: var(--success-hex);
	/*transition: .5s;*/
}

.home_comments {
	padding-bottom:20px;
}

.home_comments h1 {
	padding-bottom:10px;
}

.home_comments h2 {
	font-size:1.6rem;
	line-height: 1.6rem;
}

.home_comments p {
	font-size:1rem;
	line-height: 1rem;
	margin:10px auto;
}

.home_comments video {
	border:1px solid #000000;
	border-top:5px solid #000000;
	width:100%;
	margin:10px auto;
}

.home_comments .link_as_button_holder {
	margin-top:20px;
}

.home_comments .link_as_button_holder.register_holder {
	margin-top:40px;
}

#search nav a {
	color:#FFFFFF;
	text-decoration:none;
}

#search nav a:hover {
	text-decoration:underline;
}

.positivity_indicator {
	margin-right:10px;
	cursor:pointer
}

.positivity_indicator .mood {
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 50%;
	font-size: 0.7rem;
	font-weight: bold;
	line-height: 20px;
	text-align: center;

	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.positivity_indicator.red .mood {
	background-color: var(--error-hex);
}

.positivity_indicator.yellow .mood {
	background-color: gold;
}

.positivity_indicator.green .mood {
	background-color: var(--success-hex);
}

.positivity_indicator.blue .mood {
	background-color: dodgerblue;
	color:white;
}

.hamburger {
	display:none;
}

.overlay {
	display: none;
}

.move {
    display: block;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 1rem;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 3px;
    visibility:hidden;
	cursor: move;
}

.move:hover {
    background-color: white;
}

.accordion:hover .move {
    visibility:visible;
}

.criteria_accordion_options {
    display: flex;
}

main#home .right .button_holder {
    width:100%;
    height:52px;
    top:0;
    right:0;
    padding:0px 20px;
    justify-content: space-between;
    align-items: center;
    background-color: #EEEEEE;
    border-bottom: 1px solid #000000;
}

/*main#home .right:hover .button_holder {*/
main#home .right .button_holder, main#home .right:hover .button_holder {
    display:flex;
}

main#home .right .button_holder button {
    background-color: #EEEEEE;
}

main#home .right .button_holder button:hover, main#home .right .button_holder button.copy.copied {
    background-color: #FFFFFF;
}

main#home .right textarea {
    /* height: calc(100% - 52px); */
	height: calc(100% - 87px);
    margin-top:52px;
	display:block;
	resize:none;
}

#editor_title {
    padding:0;
    font-size:1.2rem;
    line-height: 1.2rem;
}

.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 150px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 10px;
	position: absolute;
	z-index: 1;
	top: 150%;
	left: 50%;
	margin-left: -75px;
	font-size:.7rem;
	line-height:130%;
}

.tooltip .tooltiptext.skinny {
	width:100px;
	margin-left: -50px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.edit_fi select{
	margin-top:-10px;
	margin-bottom:20px;
	margin-left:30px;
	
}

.editing_toggle_panel {
	display: flex;
	align-items: center;
}

.feedback_header.options .sorting_editing_feedback{
	display:none;
	margin-right:10px;
}

.feedback_header.options .sorting_editing_feedback a{
	text-decoration:none;
	font-weight:bold;
	color: var(--main-hex);
}

.feedback_header.options .sorting_editing_feedback a:hover{
	text-decoration:underline;
}

.feedback_header.options:hover .sorting_editing_feedback, .feedback_header.options.editing .sorting_editing_feedback{
	display: block;
}

.logout_message, .login_error {
	font-weight: bold;
	font-size: 1.6rem;
	padding-bottom: 40px;
}

.login_error {
	color: var(--error-hex);
}

.logout_message {
	color: var(--success-hex);
}

.field_error, #form input.field_error , #login_form input.field_error {
	background-color: salmon;
	color: var(--error-hex);
	border:1px solid var(--error-hex);
}

.label_error, #form label.label_error {
	color: var(--error-hex);
}

.prezince_services {
	width:100%;
	padding-top:20px;
	line-height: 140% !important;
}

.prezince_services.nospace {
	padding-top:0px;
}

.prezince_services a {
	/* color: var(--accessory-hex); */
	color: var(--error-hex);
	text-decoration: none;
	/* font-weight: bold; */
}

.prezince_services a:hover {
	text-decoration: underline;
}

.filter_search_box {
	display:flex;
	/* width:100%; */
	margin:20px;
	margin-top:10px;
	border:1px solid var(--border-hex);
	border-radius: 3px;
	overflow:hidden;
	justify-content:center;
}

.filter_search_box input{
	padding:5px;
	border:0;
	/* width:100%; */
	flex-grow:1;
}

.filter_search_box button{
	border:0;
	border-radius:0;
	border-left:1px solid var(--border-hex);
}

.filter_search_box button:hover {
	color: #EB0C1A;
}

.scroll_top {
	width:44px;
	height:35px;
	line-height:35px; 
	background-color:black;
	color: white;
	position:fixed;
	left:calc(50% - 64px);
	bottom:0;
	border-bottom-left-radius:0;
	border-bottom-right-radius:0;
	border-bottom:0;
	font-size: 1.8rem;
	padding:0;
}

.scroll_top:hover {
	background-color: #EB0C1A;
}

.icon_link_mask {
	background-color: white;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	mask-size: 1.4rem;
	-webkit-mask-size: 1.4rem;
	border: 0px;
	text-indent: -5000px;
	width: 40px;
	height: 40px;
	display: block;
}

.icon_link_mask.logout {
	-webkit-mask-image: url(../fonts/svgs/solid/sign-out-alt.svg);
	mask-image: url(../fonts/svgs/solid/sign-out-alt.svg);
	margin-left:10px;
	margin-right:-7px;
}

.icon_link_mask.logout:hover {
	background-color: #EB0C1A;
}

.vellip_box {
	position:relative;
	width:30px;
}

.vellip_box .submenu{
	display:none;
}

.vellip_box:hover {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.vellip_box:hover .submenu{
	display:block;
	width:175px;
	position:absolute;
	z-index:1;
	right:28px;
	top:-1px;
	background-color:white;
	border:1px solid var(--border-hex);
	border-radius:3px;
	border-top-right-radius: 0;
}

.vellip_box:hover .submenu a{
	width:100%;
	display:flex;
	align-items:center;
	justify-content: center;
	/* padding:10px; */
	height:40px;
	line-height:40px;
	border-bottom:1px solid var(--border-hex);
}

.vellip_box:hover .submenu a.running {
	background-color:var(--accent-hex);
	cursor:not-allowed;
}

.vellip_box:hover .submenu a img {
	height:30px;
}

.vellip_box:hover .submenu a:last-child{
	border-bottom:0;
}

.vellip_box:hover .submenu a:hover{
	background-color:var(--accent-hex);
}

.welcome_h2 {
	color:var(--error-hex);
}

.inline_style_font {
	font-family: "Playwrite GB S", cursive;
  	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.many_more {
	font-style:italic;
}

.login_sxs {
	display: flex;
	gap:20px;
	align-items: center;
	justify-content: flex-start;
	padding-top:20px;
	padding-bottom:20px;
}

#login_form .login_sxs input[type="submit"] {
	margin:auto 0;
}


/* START COURSE OUTLINE GENERATOR CSS */

a.outline_delete, 
button.outline_delete,
#login_form a.outline_delete,
#login_form button.outline_delete,
#form a.outline_delete,
#form button.outline_delete {
    flex-shrink: 0;
	color: black;
    font-weight: bold;
    font-size: 1.8rem;
    /*line-height: 1.4rem;*/
	width:40px;
	height:40px;
	display:flex;
	justify-content:center;
	align-items:center;
    background-color:transparent;
    margin:0;
}

a.outline_delete:hover, 
button.outline_delete:hover,
#login_form a.outline_delete:hover,
#login_form button.outline_delete:hover,
#form a.outline_delete:hover,
#form button.outline_delete:hover {
	color: var(--error-hex);
    text-decoration: none;
}

.button_general {
    flex-shrink: 0;
	color: black;
    font-weight: bold;
    /* font-size: 2.2rem; */
    /*line-height: 1.4rem;*/
	width:40px;
	height:40px;
	display:flex;
	justify-content:center;
	align-items:center;
    background-color:transparent;
    border: 1px solid var(--border-hex);
	visibility: visible;
}

.button_general.move {
	margin-right: 0;
}

.stretch_td {
    width:100%;
}

.flex_td {
    width:100px;
    border:0;
    border-top:1px solid var(--border-hex);
}

.flex_td div.hold{
    display: flex;
    gap:10px;
}

th.flex_td {
    border:0;
}

.outline_list {
    width:100%;
    border-top:1px solid var(--border-hex);
    list-style: none;
    margin-top:20px;
}

.outline_list li {
    width:100%;
    border-bottom:1px solid var(--border-hex);
    padding: 20px 0;
}

a.generate_outline {
    display: inline-block;
    margin-left:20px;
	text-decoration: none;
	cursor:pointer;
	color:var(--main-hex);
}

a.generate_outline:hover {
	text-decoration: underline;
}

#outline hr {
	margin:20px 0;
}

.outline_list li {
	display: flex;
	justify-content: space-between;
	gap:20px;
}

.outline_list li a{
	color: var(--main-hex);
	font-weight:bold;
	text-decoration:none;
}

.outline_list li a:hover{
	text-decoration:underline;
}

.outline_list li button.delete {
	display:none;
}

.outline_list li:hover button.delete {
	display:block;
}


.last_updated_outline {
	font-size: .8rem;
	font-style: italic;

}

#outline_templates_list {
    width:100%;
    border-top:1px solid var(--border-hex);
    list-style: none;
    margin-top:20px;
}

#outline_templates_list li {
	display: flex;
	justify-content: space-between;
	gap:20px;
	width:100%;
    border-bottom:1px solid var(--border-hex);
    padding: 20px 0;
}

#outline_templates_list li .title{
	color: var(--main-hex);
	font-weight:bold;
	text-decoration:none;
}

#outline_templates_list li .title:hover{
	text-decoration: underline;
}

#outline_templates_list li button.delete {
	display:none;
}

#outline_templates_list li:hover button.delete {
	display:block;
}

#outline .right_align_holder {
	display:flex;
	gap:20px;
	justify-content: flex-end;
	padding-bottom:20px;
}

#outline .right_align_holder.top_pad {
	padding-top:20px;
}

.im_clickable_obvsly {
	text-decoration: none;
	cursor:pointer;
}

.im_clickable_obvsly:hover {
	text-decoration: underline;
}

.top_flex {
	display: flex;
	justify-content: space-between;
	gap:20px;
	align-items: center;
}

.top_flex h1 {
	padding-bottom: 0;
}

#outlines #form{
	width:60%;
}

#outlines aside{
	width:40%;
}

.outline_list li .hold_bc {
	display: none;
}

.outline_list li:hover .hold_bc {
	display: block;
}

.outline_list li:hover .hold_bc a {
	text-decoration: none;
}

/* END COURSE OUTLINE GENERATOR CSS */

.drop_file_upload {
	/* height:350px; */
	position:relative;
	width:100%;
	border: 5px dashed #999999;
	justify-content: center;
	align-items: center;
	display:flex;
	padding:20px;
}

.drop_file_upload p{
	color:#999999;
	font-size: 2rem;
	text-align: center;
	line-height:140%;
}

.drop_file_upload input[type="submit"] {
	display:none;
}

.drop_file_upload label {
	display:none;
}

.drop_file_upload input[type="file"] {
	opacity: 0;
	position:absolute;
	top:0;
	left:0;
	z-index:10;
	width:100%;
	height:100%;
}

.upload_icon {
	display:none;
}

main#slides_list {
	flex-wrap: wrap;
}

main#slides_list .top_flex {
	width:100%;
}

.thumbs_ss_sxs {
	width:100%;
	display:flex;
	gap:20px;
}
.slideshow_list {
	display:block;
    width:100%;
	list-style: none;
}

.slideshow_list li{
    width:100%;
	border:1px solid var(--border-hex);
	margin-bottom: 5px;
	/* padding:20px; */
    /* border-top:1px solid var(--border-hex);
    border-bottom:1px solid var(--border-hex); */
}

.slideshow_list li .slide{
	padding:20px;
}

.slideshow_list li .slide input,
.slideshow_list li .slide textarea,
.slideshow_list li .slide select{
	border:1px solid var(--border-hex);
	padding:10px;
	width:100%;
}

.slideshow_list li .slide textarea{
	margin-top:20px;
	resize:vertical;
}

.slideshow_list li .slide input.feature,
.slideshow_list li .slide textarea.feature{
	font-size:2.4rem;
}

.slideshow_list li .slide .sxs {
	display:flex;
	gap:20px;
	margin-top:20px;
}

.slideshow_list li.add_slide_here {
	border:0;
	display:flex;
	justify-content: center;
	align-items: center;
}

.slideshow_list li.add_slide_here button {
	opacity:0;
}

.slideshow_list li.add_slide_here:hover button {
	opacity:1;
}

.slideshow_list li.add_slide_here .button_reveal {
	position:relative;

}

.slideshow_list li.add_slide_here .button_reveal nav {
	display:none;
}

.slideshow_list li.add_slide_here .button_reveal:hover nav{
	display:block;
	position:absolute;
	z-index:5;
	bottom:28px;
	width:120px;
	left:-45px;
	background-color:white;
	border:1px solid var(--border-hex);
}

.slideshow_list li.add_slide_here .button_reveal:hover nav button{
	width: 100%;
	border:0;
	border-bottom:1px solid var(--border-hex);
	border-radius:0;
}

.slideshow_list li.add_slide_here .button_reveal:hover nav button:last-child{
	border:0;
}

.slideshow_list_thumbs {
	display:block;
    width:100px;
	list-style: none;
}

.slideshow_list_thumbs li{
    width:100%;
	margin-top:20px;
	aspect-ratio: 16 / 9;
	cursor: move;
}

.slideshow_list_thumbs li:first-child{
	margin-top:0;
}

.slideshow_list_thumbs li .thumb_num{
	width:100%;
	text-align: center;
	font-size:11px;
}

.slide_thumb_ph {
	background-color: white;
	width:100%;
	height:100%;
	border:1px solid var(--border-hex);
}

.slide_thumb_ph.title div:first-child{
	background-size:cover;
	width:100%;
	height:50%;
}

.slide_thumb_ph.title .headlines {
	display:flex;
	justify-content: center;
	align-items: center;
	flex-wrap:wrap;
}

.slide_thumb_ph.title .headlines div:first-child {
	width:75%;
	margin-top:5px;
	margin-bottom:5px;
}

.slide_thumb_ph.title .headlines div:nth-child(2) {
	width:50%;
}

.slide_thumb_ph.wall {
	background-size:cover;
	display:flex;
	justify-content: center;
	align-items: center;
}

.slide_thumb_ph.wall div{
	border-top:10px solid white;
	width: 50%;
}

.slide_thumb_ph.content div:first-child{
	background-size:cover;
	width:100%;
	height:20%;
}

.slide_thumb_ph.content div.head{
	width:50%;
	margin:10px;
	margin-bottom:5px;
}

.slide_thumb_ph.content .copy div{
	width:70%;
	border-top:2px solid black;
	margin:3px;
	margin-left:10px;
}

.slide_thumb_ph.video {
	background-color:black;
	display:flex;
	justify-content: center;
	align-items: center;
}

.slide_thumb_ph.video div{
	background-color: var(--error-hex);
	width:20px;
	height:20px;
	border-radius:3px;
}

.slide_editor_header {
	background-color: var(--accent-hex);
	border-bottom:1px solid var(--border-hex);
	padding:10px 20px;
	font-weight:bold;
	display:flex;
	justify-content:space-between;
	align-items: center;
}

.module_design_box div{
	width:100%;
}

.module_design_box div input{
	width:100%;
	padding:5px;
	border:1px solid var(--border-hex);
	margin-bottom:10px;
}

.module_design_box div input[type=color]{
	padding:3px;
	margin-bottom:20px;
}

.module_design_box .bg_image_preview {
	background-size:cover;
	padding-bottom:52.65%;
	position:relative;
	border:1px solid var(--border-hex);
	margin-bottom:20px;
}

.module_design_box .bg_image_preview .delete{
	position: absolute;
	top:10px;
	right:10px;
}

.module_design_box button.save {
	background-color: var(--accent-hex);
}

.module_design_box button.save:hover {
	background-color: white;
}

/* Define the fade-out animation */
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		visibility: hidden; /* Hides the element after fade-out */
	}
}

/* Apply the fade-out class with a delay */
.fade-out-run {
	animation: fadeOut 1s forwards; /* 1s animation duration, 3s delay */
}
 
.sticky_header {
	position:sticky;
	width:100%;
	display:block;
	top:0;
	background-color:white;
	z-index: 5000;
	border-bottom: 1px solid var(--border-hex);
}

.title_watch {
	display:flex;
	justify-content: flex-start;
	gap:20px;
	align-items: center;
}

.stopwatch {
	display:flex;
	justify-content: flex-start;
	gap:10px;
	align-items: center;
}

main#home .right .button_holder .stopwatch button {
	margin:0;
}

#stopwatch_display {
	width:70px;
}

#stopwatch_display.running {
	color: var(--error-hex);
}