@import url('https://fonts.googleapis.com/css2?family=Allura&family=Josefin+Sans&family=Lobster+Two&display=swap');

:root {
  --headerheight: auto;
  --footerheight: 60px;
  --footerlineheight: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
}

html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  background: url(/assets/images/check_list_bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
}

/*MAKE CHANGES TO CONTAINER CLASS BELLOW, IN ORDER TO CHANGE ANYTHING WITH THE MIDDLE SECTION*/
.container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>HEADER CSS BEGINS HERE<<<<<<<<<<<<<<<<<<<<<<<<*/
.header {
  background-color: #364f6b;
  width: 100%;
  height: var(--headerheight);
  position: fixed;
  left: 0;
  top: 0;
  color: white;
  text-align: center;
}

.header .header_container .header_section_1 {
  /* background-color: hotpink; */
  display: grid;
  grid-template-columns: auto 1fr;
}

.header .header_container .header_section_1 .logo {
  /* background-color: yellow; */
  width: auto;
  padding-left: 5px;
  text-align: left;
  line-height: 50px;
}

.header .header_container .header_section_1 .logo a {
  /* background-color: yellow; */
  color: white;
}

.header .header_container .header_section_1 .logo span {
  /* background-color: yellow; */
  color: #fc5185;
}

.header .header_container .header_section_1 .nav {
  display: none;
}

.header .header_container .header_section_1 .nav a {
  color: white;
  line-height: 50px;
  padding-left: 30px;
  text-align: right;
  text-transform: uppercase;
}

.header .header_container .header_section_1 .nav a:hover {
  /* background-color: green; */
  color: #fc5185;
}

.header .header_container .header_section_1 .menu_icon {
  /* background-color: rgb(11, 145, 33); */
  padding-right: 5px;
  text-align: right;
  display: inline;
}

.header .header_container .header_section_1 .menu_icon .menu {
  /* background-color: rgb(11, 145, 33); */
  line-height: 50px;
}

.header .header_container .header_section_2 .dropdown {
  /* background-color: rgb(11, 145, 33); */
  display: none;
}

.header .header_container .header_section_2 .dropdown a {
  /* background-color: rgb(11, 145, 33); */
  color: white;
  padding: 30px 0px;
  text-align: center;
  text-transform: uppercase;
  display: block;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>CONTENT CSS BEGINS HERE<<<<<<<<<<<<<<<<<<<<<<<<*/
.content {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .content_container_1 {
  /* background-color: red; */
  width: 100%;
  height: 100%;
  /* padding: 95px 5px; */
}
.content .content_container_1 .content_container_1_section_1 {
  /* background-color: green; */
  width: 100%;
  height: 100%;
}

.content .content_container_1 .welcome_page {
  /* background-color: green; */
  width: 100%;
}

.content .content_container_1 .play_or_view {
  /* background-color: yellow; */
  width: 100%;
  padding-top: 60px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 70px;
}

.content .content_container_1 .auth_content {
  /* background-color: rgb(219, 8, 156); */
  width: 100%;
}

/*>>>>>>>>>> ARCHIVED VIEW BUTTON AND ARCHIVED VIEW PAGE CSS BEGINS HERE <<<<<<<<<<*/
.content .content_container_1 .content_container_1_section_1 .archived_view_content {
  /* background-color: green; */
  padding-top: 10px;
}

.content .content_container_1 .content_container_1_section_1 .archive_view_button {
  width: 100%;
  text-align: right;
}

.content .content_container_1 .content_container_1_section_1 .archive_view_button a {
  background-color: #364f6b;
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 18px;
  color: #fc5185;
}

.content .content_container_1 .content_container_1_section_1 .archive_view_button a:hover {
  color: white;
}

.content .content_container_1 .content_container_1_section_1 .archived_view_content {
  /* background-color: salmon; */
  width: 100%;
}

/*>>>>>>>>>>>>>>>>>>>>> ABOUT PAGE CSS BEGINS HERE <<<<<<<<<<<<<<<<<<*/

.content .content_container_1 .play_or_view .play_or_view_content .about_content {
  /* background-color: rgb(219, 8, 156); */
  width: 100%;
  background-color: #364f6b;
  border-radius: 5px;
}

.content .content_container_1 .play_or_view .play_or_view_content .about_content h2 {
  /* background-color: rgb(219, 8, 156); */
  color: white;
  text-align: center;
  font-size: 30px;
  padding-top: 8px;
  padding-bottom: 10px;
}

.content .content_container_1 .play_or_view .play_or_view_content .about_content p {
  /* background-color: rgb(219, 8, 156); */
  color: white;
  text-align: justify;
  font-size: 25px;
}

.content .content_container_1 .play_or_view .play_or_view_content .about_content .about_paragraph {
  /* background-color: rgb(219, 8, 156); */
  padding-bottom: 5px;
  
}

.content .content_container_1 .play_or_view .play_or_view_content .about_content .about_link {
  /* background-color: rgb(219, 8, 156); */
  color: #fc5185;
}


/*>>>>>>>>>>>>>>>>>>>>> CONTACT US PAGE CSS BEGINS HERE <<<<<<<<<<<<<<<<<<*/

.content .content_container_1 .auth_content .contact_us_content h2 {
  /* background-color: rgb(219, 8, 156); */
  color: white;
  text-align: left;
  font-size: 30px;
  padding-top: 8px;
  padding-bottom: 10px;
}


.content .content_container_1 .auth_content .contact_us_content .subject {
  padding: 0.7rem 1rem;
  display: block;
  width: 100%;
  height: 100px;
  resize: none;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  outline: none;
  color: #444;
  line-height: 1rem;
  font-size: 1.1em;
  font-family: 'Lora', serif;
}

.content .content_container_1 .auth_content .contact_us_content .textarea_counter {
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
  color: white;
}

/*>>>>>>>>>>>>>>>>>> CONTENT WELCOME PAGE CSS BEGINS HERE <<<<<<<<<<<<<<<<<*/
.content .content_container_1 .welcome_page h1 {
  color: white;
  font-size: 80px;
  text-align: center;
}

.content .content_container_1 .welcome_page h5 {
  color: white;
  text-align: center;
}

.content .content_container_1 .welcome_page p {
  color: white;
  text-align: center;
  padding-top: 10px;
}

.content .content_container_1 .welcome_page .auth_link {
  width: 200px;
  padding: 0.5rem 1rem;
  background: #364f6b;
  color: white;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-size: 1.08em;
  font-family: 'Lora', serif;
  display: inline-block;
}
.content .content_container_1 .welcome_page .auth_link:hover {
  color: white !important;
  background: #fc5185;
}

/*>>>>>>>>>>>>>>> CONTENT AUTHENTICATION PAGE CSS BEGINS HERE <<<<<<<<<<<<<<*/
.content .content_container_1 .auth_content .form_title {
  text-align: center;
  color: white;
}

.content .content_container_1 .auth_content form div {
  margin-bottom: 10px;
}
.content .content_container_1 .auth_content label {
  text-align: left;
  color: white;
}

.content .content_container_1 .auth_content .btn {
  padding: 0.5rem 1rem;
  background-color: #364f6b;
  color: white;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-size: 1.08em;
  font-family: 'Lora', serif;
}
.content .content_container_1 .auth_content .btn:hover {
  color: white !important;
  background-color: #fc5185;
}

.content .content_container_1 .text_input {
  padding: 0.7rem 1rem;
  display: block;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  outline: none;
  color: #444;
  line-height: 1.5rem;
  font-size: 1.2em;
  font-family: 'Lora', serif;
}

.content .content_container_1 .auth_content p {
  display: block;
  margin: 1em 0px 1em 0px;
  color: white;
  font-family: 'Lora', serif;
  text-align: justify;
}
.content .content_container_1 .auth_content a {
  text-decoration: none;
  color: #fc5185;
}

.container .content .content_container_1 .content_container_1_section_1 .auth_content .msg .bg_modal_success {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #3a6e3a;
  border: 1px solid #3a6e3a;
  background: #bcf5bc;
}

.container .content .content_container_1 .content_container_1_section_1 .auth_content .msg .bg_modal_error {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #884b4b;
  border: 1px solid #884b4b;
  background: #f5bcbc;
}

.msg .success {
  padding-top: 7px;
  padding-bottom: 5px;
  color: #3a6e3a;
  border: 1px solid #3a6e3a;
  background: #bcf5bc;
}

 .msg .error {
  padding-top: 7px;
  padding-bottom: 5px;
  color: #884b4b;
  border: 1px solid #884b4b;
  background: #f5bcbc;
}

.content .content_container_1 .session_content .session_title {
  padding-bottom: 5px;
  text-align: center;
  color: white;
}

.content .content_container_1 .session_content .session_message {
  text-align: center;
  color: white;
}


.content .content_container_1 .session_content .msg {
  width: 100%;
  padding-top: 7px;
  padding-bottom: 5px;
  background-color: #364f6b;
  color: white;
}

.content .content_container_1 .session_content .msg .error {
  padding-top: 7px;
  padding-bottom: 5px;
  border: 1px solid #884b4b;
  color: #884b4b;
  background: #f5bcbc;
}

/*>>>>>>>>>>>> CONTENT PROFILE & GENERAL TABLE 1 PAGE CSS BEGINS HERE <<<<<<<<<<<<*/

/* STYLE FOR TABLES HAVE IS LOCATED IN GENERAL_TABLES_STYLE.CSS */

/*>>>>>>>>>>>> CONTENT PLAY, VIEW & TABLE PAGE CSS ENDS HERE  <<<<<<<<<<<<*/

/*>>>>>>>>>>>>>>>>>>>>>>>> FOOTER CSS BEGINS HERE <<<<<<<<<<<<<<<<<<<<<<<*/

.footer {
  background-color: #364f6b;
  width: 100%;
  height: var(--footer);
  position: fixed;
  left: 0;
  bottom: 0;
  color: white;
  text-align: center;
  line-height: var(--footerlineheight);
}

.footer .footer_content_1_section_1 {
  font-size: 12px !important;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>MEDIA QUERIES CSS BEGINS HERE<<<<<<<<<<<<<<<<<<<<<<<<*/

/* MEDIA QUERIES STYLES HAVE BEEN MOVED TO GENERAL_MQ-STYLE.CSS */

/*>>>>>>>>>>>>>>>>>>>>>>>>>MEDIA QUERIES CSS BEGINS HERE<<<<<<<<<<<<<<<<<<<<<<<<*/
