@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}
@keyframes change {
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}



/* Colour pallet*/
:root {
    --color-background: #14181c;
    --color_one: #1c2127;
    --color_one_lighter: #979797;
    --color_one_mid: #333342;
    --color_one_darker: #0a0d11;

    --color_two: rgb(255, 255, 255);
    --color_three: rgb(64, 159, 0);
    --color_four: red;
    --lighbox_color: rgba(7, 5, 5, 0.3);
    
}

/* General Styling */
body {
    margin: 0;
    padding: 0;
    background: var(--color-background);
   /* background: linear-gradient(0deg,rgba(20, 24, 28, 1) 0%, rgba(58, 62, 74, 1) 100%); */
    color: var(--color_two);
    font-family: Arial, Helvetica, sans-serif; 
}

.headParagraph {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color_one_mid);
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    color: var(--color_two);
}

p, ul, li {
    line-height: 180%;
}

#content_container {
    width:100%;
    margin:auto;
}
input[type="file"] {
    display: none;
}
#upload_file_btn, .upload_file_btn, #upload_media_btn, .upload_media_btn {
    background-color: var(--color_three);
    display: block;
    margin: 0px 0px 20px;
    padding: 2%;
    max-width: 160px;
    width: 20%;
    min-width: 150px;
    color: var(--color_two);
    cursor: pointer;
}
#upload_file_btn_image {
    cursor: pointer;
}
.primaryButton {

    text-align: center;
    color:var(--color-two);
    background-color:var(--color-three);

    font-weight: lighter;
    padding: 1%;
    max-width: 160px;
    width: 20%;
    min-width: 150px;
}
.redText {
    color: red;
    display: block;
}
.okayText {
    color: green;
    display: block;
}



/*
#course_container {
    width: 100%;
    display:flex;
    flex-wrap: wrap;
    max-width: 1100px;
    padding-top: 30px;
}
    */

#form_container {
    width: 600px;
    margin:auto;
    margin-top: 70px;
}

input[type=button], input[type=submit], input[type=reset] {
	-webkit-appearance: none;
}
input[type="password"],
input[type="range"],
input[type="text"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="time"],
input[type="url"],
textarea,
select 
{
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--color-background);
    padding: 2%;
    margin-top: 10px;
}

input[type="checkbox"], input[type="radio"] {
    margin: 0;
}

input[type="submit"],
input[type="button"]{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 20%;
	padding: 2%;
    background-color: var(--color_three);
	border: 1px solid var(--color-main_two);
	cursor:pointer;
	color: #fff;
    min-width:180px;
}


.checkboxColumns {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxColumns input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--color_one_lighter);
}


/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxColumns input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxColumns .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#multi-select-box-holder {
    display: flex;
    flex-wrap: wrap;
}
.multi-select-box {
    width: 48%;
    margin: 1%;
    text-align: center;
    cursor: pointer;
    height: 50px;
    padding: 2%;
    color: var(--color_one);
    background-color: var(--color_two);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



/* pop up lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color:  var(--lighbox_color);
    text-align: center;
    display: none;
	backdrop-filter: blur(4px);
}  
.lb-content {
	max-width: 800px;
	width: 70%;
	position: absolute;
    display: none;
    /*border: 1px solid var(--color_two);*/
    background-color: var(--color-background);
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
     transform: translate(-50%, -50%);
}
.lb-header {
    text-align: center;
	width: 98%;
	margin:0px;
	padding: 1%;
    font-size: 1.2em;
}
#lb-body {
	width: 90%;
	padding:5%;
	padding: 5%;
}
.lb-close {
	display: block;
	height: 25px;
	width: 25px;
	line-height:35px;
	position: absolute;
	top: 12px;
	right: 12px; 
	cursor: pointer;
	text-align: center;   
	border-radius: 35px;  
	font-weight: bolder;
	font-weight:35px;
}
.crosssign_stem {
	position: absolute;
	width: 2px;
	height: 80%;
	left: 48%;
	top: 10%;
	transform: rotate(-45deg);
    background-color: var(--color_two);
}
.crosssign_stem2 {
	position: absolute;
	width: 2px;
	height: 80%;
	left: 48%;
	top: 10%;
	transform: rotate(45deg);
    background-color: var(--color_two);
}
/* pop up lightbox */


/* Loading pop up */
#loading {
	z-index:999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color:  var(--lighbox_color);
    text-align: center;
    display: none;
	backdrop-filter: blur(4px);
}
#loading img {
	position:absolute;
	width:10%;
	max-width: 100px;
	top:50%;
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto; 
	fill: var(--color_two);
}
#loading p {
	top: 65%;
	position: absolute;
	width: 20%;
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto; 
}
/* Loading pop up */



#courseSummary {
    font-size: 1em;
    width: 80%;
    padding: 0 0 20px 0;

    position: relative;
}

#courseSummaryText p {
    font-size: 1em;
}

/* Navigation bar */
#navigationBar {
    background-color: var(--color_one_darker);
    width:100%;
    padding: 10px;
    text-align:center;
    box-sizing: border-box;
    position: relative;
}
#headNavigationBar {
    background-color: var(--color_one_darker);
    width:100%;
    text-align:center;
    position: relative;
    box-sizing: border-box;
    margin-top: 20px;
}

#hub-menu {
    background-color: var(--color_one_darker);
    width:100%;
    padding: 10px;
    text-align:center;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left:0;
}

.navIconWrapper {
    max-width:200px;
    width: 30%;
    position: relative;
    display: inline-block;
    margin: 20px 0 20px 0;
}
.navIconWrapper span {
	color:var(--color-one)!important;
	font-size: 24px;
}
.navIconWrapper span:hover {
	color:var(--color-two)!important;
}
.iconLinks:hover {
	text-decoration:none;
}



/* Stats display (Scorecards) */

.largeStat {
	font-size: 2em;
	margin:0px;
}
.analyticCell {
	width: 48%;
    padding: 3% 1% 2% 1%;
    margin: 1%;
    float: left;
    text-align: center;
    min-width: 150px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	position: relative;
    background:  var(--color-main_one);
	transition: all .25s ease-in-out; 
	border: 1px solid #ccc;
	position:relative;
}

/* Pagination */
.pageControls {
	width:30px;
	height:30px;
	border: 1px solid #ccc;
	padding: 4px;
	text-align:center;
	line-height:30px;
	float:left;
	margin-right: 5px;
}
.pageControlsText {
	width:70px;
	height:30px;
	border: 1px solid #ccc;
	padding: 4px;
	text-align:center;
	line-height:30px;
	float:left;
	margin-right: 5px;
}

.content-breaker-h2 {
    padding: 0 0 10px 0;
    margin: 80px 0 0 0;
    border-bottom: 1px solid var(--color_one_mid);
    font-size: 1em;
}

.no-border {
    border: 0px;
}

/* Lists and rows */
#list_holder {
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.list_data {
    width: 100%;
    display:flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-three);
    position: relative;
    background-color: var(--color-main_one);
    margin: 0 0 15px 0;
    overflow: hidden;
    background-color: var(--color_one_darker);
    padding: 1%;
}
.list_data.drag {
    z-index: 99;
}
.list_header {
    font-weight: bold;
}
.list_data_col {
    box-sizing: border-box;
    overflow: hidden;
    padding: 1% 2% 1% 0;
}
.list_title {
    font-weight: bold;
    font-size: 1.1em;
}
.colCheckbox {
    text-align: right;
    width: 5%;
    padding: 1% 0% 1% 2%;
}
.col5 {
    width:5%;
}
.col10 {
    width:9%;
}
.col20 {
    width:19%;
}
.col30 {
    width:29%;
}
.col40 {
    width:39%;
}
.col60 {
    width:59%;
}
.col50 {
    width:49%;
}
.col70 {
    width:69%;
}
.col80 {
    width:79%;
}

.col90 {
    width:89%;
}


/* Universal Btns */
#popup_del_btn {
    background-color: var(--color_four);
    display: block;
    margin: 0px;
    padding: 15px;
    max-width: 160px;
    width: 10%;
    min-width: 150px;
    color: white;
    cursor: pointer;
    position:fixed;
    right:10px;
    bottom: 10px;
    text-align:center;
    display: none;
}

#editBtn {
    --background-color: var(--color_two);
    display: block;
    margin: 0px;
    padding: 3px;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    line-height: 20px;
    color: var(--color_two);
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 20px;
    text-align: center;
}

#newBtn {
    font-size: 30px;
    background-color: var(--color_three);
    display: block;
    margin: 0px;
    padding: 3px;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    line-height: 20px;
    color: var(--color_two);
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 20px;
    text-align: center;
}

.add_task_btn, .add_task_btn_edit, .add_feedback_option_btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--color_three);
    color: var(--color_two);
    text-align: center;
    border-radius: 30px;
    cursor:pointer;
    margin-bottom: 30px;
}

/* Course Admin section */

.task_list_row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.task_row_delete, .feedback_option_row_delete {
    width: 9%;
    text-align: center;
    font-size: 1.2em;
    cursor:pointer;
}
.triggerEditPopup {
    cursor:pointer;
}


/* learning area */

#hub-container {
	display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
#hub-content {
	z-index: -1;
	width: 100%;
    max-width: 1000px;
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translate(-50%, 0%);
}

#headerBar {
    width: 100%;
    /*height: 70px;*/
    /*background-color: var(--color_one);*/
}

.headerBarInfo {
    width: 100%;
    text-align: center;
    padding: 25px 0 0px 0;
    box-sizing: border-box;
}

#courseInfoHeader {
    width: 100%;
    height: 100px;
    padding: 10px;
}
/* course display boxes */

#content-area {
    min-height: 100vh;
    width: 90%;
    max-width: 1000px;
    position: relative;
    top: 10px;
    margin: auto auto 100px auto;
}


/* Index Styling */
.index-quote {
    text-align: center;
    font-size: 1.2em;
    width: 98%;
    margin: auto;
    padding: 50px 0 0 0;
}

.index-quote-author {
    text-align: right;
    font-size: .7em;
}

#index-hero-image {
    position:relative;
    background-image: url('https://api.innertheory.tv/images/index/mainImage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 56.25%;
}

#index-hero-image img{
    width: 100%;
}

#index-hero-text {
    width: 100%;
    margin: auto;
    text-align: center;
    position: absolute;
    font-size: .7em;
    bottom: 5%;
    transform: translate(-50%, 0%);
    left: 50%;
}

#index-hero-text h1 {
    padding: 0px;
    margin: 0px;
}

.join-btn {
background-color: var(--color_three);
  color: white;
  text-align: center;
  padding: 15px;
  width: 200px;
  border-radius: 4px;
  margin: 40px auto;
}

.index-focus-point-container {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: left;
    gap: 1% 1px;
    margin: 30px 0 40px 0;
}
.index-focus-point-cell {
    width: 100%;
    padding: 5%;
    box-sizing: border-box;
    background-color: var(--color_one_mid);
    margin-bottom: 10px;
    display: flex;
}

.iconbox {
    box-sizing: border-box;
    padding-right: 8%;
    width: 25%;
}

.iconbox span {
    font-size: 2em;
}

.celltextbox {
    box-sizing: border-box;
    width: 75%;
}
.celltextbox p {
    margin: 0;
}
.index-focus-point-cell p {
    font-size: .9em;
}

.index-focus-point-cell h4 {
    margin: 0 0 2% 0;
}

#logo {
    width: 200px;
    margin: auto;
}
.courseBox {
    max-width: 300px;
    width: 23%;
    height: auto;
    position: relative;
}

.courseBoxImages {
     width: 100%;
     max-height: 450px;
}

.courseBoxImages img{
    width: 100%;
}

.courseBoxTitle {
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--color_one);
    opacity: 0.9;
    padding: 4%;
    box-sizing: border-box;
    display: none;
}

.courseBox:hover + .courseBoxTitle {
    display: block;
}

.courseBoxActiveIcon {
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Journal */

.journal-entry {
    width: 99%;
    box-sizing: border-box;
}

.journal-thumb {
    width: 100%;
    overflow: hidden;
}

.journal-thumb img {
    width: 100%;
    transition: transform .6s; /* Animation */
}

.journal-thumb img:hover {
  -ms-transform: scale(1.05); /* IE 9 */
  -webkit-transform: scale(1.05); /* Safari 3-8 */
  transform: scale(1.05); 
}

.journal-thumb img:hover ~ .journal-title {
    text-decoration: underline;
}

.journal-text {
    width:100%;
    text-align: center;
}

.journal-intro {
    color: var(--color_one_lighter);
    margin: 0;
    background-color: var(--color_one_darker);
    padding: 5%;
}

.journal-title {
    color: var(--color_two);
    font-weight: bold;
    font-size: 1.2em;
}
.journal-title:hover {
    text-decoration: underline;
} 

.journal-category {
    font-size: .8em;
    color: var(--color_two);
}

#journal-image {
    width:100%;
    margin:auto;
}

#journal-copy {
    margin-top: 50px;
    width: 100%;
}

#journal-copy-summary {
    margin: 50px auto 80px auto;
    color: var(--color_one_lighter);
    font-weight: bold;
    font-size: 1.3em;
    box-sizing: border-box;
}

.category_btn {
  padding: 8px 14px;
  background-color: var(--color_one_darker);
  border-radius: 50px;
  border: solid 2px var(--color_one_mid);
}

#journalFilterBar {
flex-flow: row;
  justify-content: start;
  gap: 4% 20px;
  display: flex;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 10px auto 10px auto;
  padding-top: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 0 0 10px 0;
}



#pageTitle {
    width: 100%;
    position: relative;
    border-bottom: solid var(--color_one_mid) 1px;
    padding: 5px;
    box-sizing: border-box;
}
#pageTitle h1 {
    font-size: 1.2em;
}


.media-row-container {
    flex-flow: row wrap;
    justify-content: start;
    gap: 3% 2%;
    display: flex;
    min-height: 100vh;
    width: 90%;
    max-width: 1000px;
    position: relative;
    top: 10px;
    margin: auto auto 100px auto;
}

/* Pagination */
.pageControls {
	width:30px;
	height:30px;
	border: 1px solid #ccc;
	padding: 4px;
	text-align:center;
	line-height:30px;
	float:left;
	margin-right: 5px;
}
.pageControlsText {
	width:70px;
	height:30px;
	border: 1px solid #ccc;
	padding: 4px;
	text-align:center;
	line-height:30px;
	float:left;
	margin-right: 5px;
}

/* forms */
#form-content  {
    width: 100%;
    max-width: 500px;
    margin: auto;
}