/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Layout: */
/* 
.col-main {
    flex: 2;
}

.col-complementary {
    flex: 1;
}

/* Responsive: */

/* @media only screen and (min-width: 640px) {
    .layout {
        display: flex;
    }
} */

/* etc */
/* 
body {
    margin: 1.5em;
}

.container {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.col {
    padding: 1em;
    margin: 0 2px 2px 0;
    background: #b3e888;
} */
@import url("https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css");

.ui-widget-header {
    border: 1px solid #f1b417;
    background: #f7df90;
    color: #444444;
    font-weight: bold;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #e4dada;
  background: #f9fffa;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #f1b417;
  background: #ffedbf;
  font-weight: normal;
  color: #011b03;
  text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #b38100 !important;
  background: #f1b417 !important;
  color: #ffffff !important;
}

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
html,
body {
  padding: 0;
  margin: 0;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.d-flex {
  display: flex;
}
.action-wrap {
  padding-top: 20px;
}
.action-list {
  list-style: none;
  margin-left: auto;
}

/*****
***** modal
**********/

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/********
*****Tab styling***
*********/
.report-tab-wrapper {
  overflow: hidden;
  background-color: #374eb2;
  border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	
}
.report-tab-wrapper button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  border-radius: 0;
}
.tab button:hover {
  background-color: #ddd;
}

.report-tab-wrapper button.active {
  background-color: #061b75;
}

.tabcontent {
  display: none;
  padding: 25px 25px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
  border: 1px solid #e4e2ef;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/**********
***Table styling
*********/

/* table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }
  
  table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  
  table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
  }
  
  table th,
  table td {
    padding: .625em;
    text-align: center;
  }
  
  table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  
  @media screen and (max-width: 600px) {
    table {
      border: 0;
    }
  
    table caption {
      font-size: 1.3em;
    }
    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
/* content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    table td:last-child {
      border-bottom: 0;
    }
  } */

/**** table new styling ***/
.table-wrapper table {
     border: 0;
    border-radius: 5px;
    box-shadow: 0px 3px 4px 1px #dfe2f1;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.table-wrapper table.dataTable thead th,
table.dataTable thead td {
  border-bottom: 0;
  background-color: #374eb2;
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 300;
}

.table-wrapper table.dataTable thead th{
	font-size:16px;
	font-weight:500;
}
.table-wrapper table.dataTable thead th:focus{
	outline:none !important;
	background:#192a73;
}

table a.ldqr_report_link, table a.ldqr_report_fix, table a.ldqr_report_delete{color:#374eb2;}

.table-wrapper table.dataTable thead th:first-child{
	border-top-left-radius:15px;
	padding-left:10px
}
.table-wrapper table.dataTable thead th:last-child{
	border-top-right-radius:15px;
	padding-right:10px;
}
.table-wrapper table.dataTable tbody tr td:first-child{
	padding-left:10px
}
.table-wrapper table.dataTable tbody tr td:last-child{
	padding-right:10px
}
.table-wrapper table.dataTable tfoot tr th{
	font-weight:500;
	color:#504d5d;
}
.table-wrapper table.dataTable tfoot tr th:first-child{
	padding-left:10px
}
.table-wrapper table.dataTable tfoot tr th:last-child{
	padding-right:10px
}

body .expand-topics{
	color: #374eb2;
	background: transparent !important;
	box-shadow:none;
	border:0;
	cursor:pointer;
	font-size:17px;
	padding:0;
}
body .expand-topics:hover, body .expand-topics:focus, body .expand-topics:active{
	color: #1c37ab !important;
	background: transparent!important;
	box-shadow:none;
	border:0;
}
body table#viewreportTablelesson td:first-child, body table#viewreportTablelesson th:first-child{
	padding-left:25px;
}
body table#viewreportTablelesson td:last-child, body table#viewreportTablelesson th:last-child{
	text-align:right;
	padding-right:25px;
}
body table#viewreportTablelesson td table td, body table#viewreportTablelesson td table th{
	text-align: left;
}

body table#viewreportTablelesson td table tr:last-child td{
	border-bottom:0;
}

body table#viewreportTablelesson td{
	padding:0.5rem 1rem;
}
body table#viewreportTablelesson td table  td{
	padding:0.5rem 2rem !important;
}
body table#viewreportTablelesson td table{
	box-shadow:none !important;
	box-shadow: none !important;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}




body .table-wrapper table.dataTable thead .sorting,
body .table-wrapper table.dataTable thead .sorting_desc,
body .table-wrapper table.dataTable thead .sorting_asc {
  background-position: center right 5px;
}

.table-wrapper a#viewreportTable_previous,
.table-wrapper a#viewreportTable_next {
  background: #3f57bf;
  padding: 5px 8px;
  border-radius: 3px;
  color: #fff;
}
a.paginate_button.current {
  background: #2b42a5;
  padding: 5px 8px;
  margin: 0 3px;
  border-radius: 3px;
  color: #fff;
}

a.paginate_button.current {
     background: #304dc5;
    color: #ffffff !important;
}

.table-wrapper table tr,
.table-wrapper table.dataTable.stripe tbody tr.odd,
.table-wrapper table.dataTable.display tbody tr.odd {
  background-color: #ffffff;
  border: 0;
}

.table-wrapper table.dataTable.stripe tbody tr:hover,
.table-wrapper table.dataTable.display tbody tr:hover {
  background-color: #f1f1f1;
}

div#viewreportTable_length {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
div#viewreportTable_filter {
  padding: 10px 0;
}

.display-th-list {
  align-items: center;
  padding: 5px;
}

.display-th-list .display-name {
  padding-left: 5px;
}
#settingModal {
  max-width: 400px;
  border-radius: 15px;
}
#settingModal .modal-content{
	padding:30px;
}
#settingModal .btn {
  padding: 8px 30px;
  margin-top: 15px;
}

i#fieldSettings {
    cursor: pointer;
    margin-right: 10px;
}

i#fieldSettings:hover {
    filter: drop-shadow(0px 0px 0.5px #000);
}
button#modalBtn {
    margin-top: 20px;
}
#fieldModal .close{font-size:22px;
    position: relative;
    right: -15px;
    top: -15px;
}
#fieldModal .modal-content{
	padding:30px;
}
#fieldModal .modal-content form{
	margin-bottom:0;
}

table.widefat th, table.widefat td{
	padding: 0.5rem 1rem;
} 

table.widefat thead th {
    background: #394d9c;
    color: #fff;
	font-weight:500;
}

table.widefat tfoot th {
background: #f1f5f7;
    color: #394d9c;
	font-weight:500;
}
table.widefat td:first-child, table.widefat th:first-child{
	padding-left:0.5rem;
}
table.widefat thead th:first-child{
	border-top-left-radius:10px;	
}
table.widefat thead th:last-child{border-top-right-radius:10px;}

table.widefat tfoot th:first-child{
	border-bottom-left-radius:10px;	
}
table.widefat tfoot th:last-child{border-bottom-right-radius:10px;}

table.widefat tbody tr:hover {
    background: #edf1f0;
}

body table.widefat tfoot tr th{
	border-bottom:0;
}

/*** Date range***
*****************/
.report-wrapper .select-group {
  justify-content: space-between;
  padding: 10px 0;
}
.report-wrapper .select-group select {
  padding: 5px 20px 5px 10px;
  width: 100%;
  background-position: right 5px center;
}
.report-wrapper .select-group select,
.report-wrapper .select-group input {
  min-height: 42px;
}

/********/
.student-report {
  flex-direction: row;
  padding-top: 40px;
}
.student-report .student-profile {
  width: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.student-report .student-profile .student-pic {
  width: 200px;
  height: 200px;
  border: 2px solid #cfd0ea;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.student-report .student-profile .student-pic img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.student-report .student-profile .student-pic .name-first-letter {
  font-size: 5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  letter-spacing: 1px;
  color: #5d5858;
}
.student-report .student-graph {
  width: 58%;
}
.student-name {
  font-size: 22px;
  padding-top: 8px;
}

.reponsive-table.table-wrapper {
  padding-top: 45px;
}
.reponsive-table div#viewreportTable_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reponsive-table input[type="search"] {
  height: 42px;
	border-color: #FFB500;
}

.dataTables_wrapper select {
    height: 42px;
    border-color: #f1b417;
}

/*** calander***/

.ui-datepicker.ui-widget-content {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.date-range-wrapper {
  position: relative;
}
.date-range-wrapper input {
  width: 130px;
  border: 0;
  background: transparent;
	height:38px;
}
.date-range-wrapper input.end-date {
  position: relative;
  border-left: 1px solid #e7e9ec;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}


.select-group .form-group {
  width: 100%;
  max-width: 250px;
}

.date-range-wrapper input::placeholder {
  color: #4d5c6d;
  opacity: 1;
}

.date-range-wrapper input:-ms-input-placeholder {
  color: #4d5c6d;
}

.date-range-wrapper input::-ms-input-placeholder {
  color: #4d5c6d;
}

.date-range-wrapper {
 	border: 1px solid #FFB500;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
    position: relative;
	height:42px;
}

.report-wrapper .select-group .form-group .select2-container--default .select2-selection--single{
	border: 1px solid #FFB500;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
    position: relative;
	min-height:42px;
}
.report-wrapper .select-group .form-group .select2-container--default .select2-selection--single:focus,
.report-wrapper .select-group .form-group .select2-container--default .select2-selection--single:active,
.report-wrapper .select-group .form-group .select2 .selection .select2-selection{
	outline:0 !important;
	border: 1px solid #FFB500 !important;
	border-radius: 10px !important;
	
}

.report-wrapper .select-group .form-group .select2-container--default .select2-selection--single span{
	height:42px;
	top:0;
	line-height:40px;
	font-size:18px;
}

.buttons {
    background-color: #35D461;
    font-size: 1.125rem;
    line-height: 1.25rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    padding: 10px 22px;
    border-radius: 7px;
    transition: 0.3s ease;
    text-align: center;
}

.buttons:hover, 
.buttons:active,
.buttons:focus{
    background: #16A13C;
    text-decoration: none;
}


.select-group .form-group span {
    width: 100% !important;
}

.select-group .form-group .select2-container--default .select2-selection--single .select2-selection__arrow b{
	border-color: #f1b417 transparent transparent transparent;
	left: 94%;
}
.dt-buttons{padding:10px 0;}
.dt-buttons button.dt-button {
    border:1px solid #35D461;
    color: #000;
	padding: 8px 15px;
    min-width: 90px;
	font-size:16px;
	line-height: 1.25rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    display: inline-block;    
    border-radius: 7px;
    transition: 0.3s ease;
    text-align: center;
	background: transparent;
}
.dt-buttons button.dt-button:hover{
    border: 1px solid #35D461;
    color: #fff;
    background: #35D461;
	box-shadow:none;
}

body .select2-container.select2-container--default .select2-search--dropdown .select2-search__field{padding-left:15px;}
div#viewreportTablelesson_length {
    width: 50%;
    float: left;
	margin-bottom:20px;
}
div#viewreportTablelesson_filter {
    width: 50%;
    float: left;
    text-align: right;
    margin-bottom: 20px;
}

div#modalcontent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

table tr.selected td {
    background: #ececfb;
}

a.paginate_button.previous, a.paginate_button.next {
    background: #4561d8;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff !important;
}

div#viewreportTablelesson_wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1039px) {
  .report-wrapper .select-group {
    flex-wrap: wrap;
  }
  .select-group .form-group {
    max-width: 100%;
    width: 48%;
    margin-bottom: 15px;
  }
  .date-range-wrapper input,
  .date-range-wrapper {
    width: 48%;
  }
  .filter {
    width: 48%;
  }
}

@media only screen and (max-width: 768px) {
  .student-report {
    flex-wrap: wrap;
  }
  .student-report .student-profile {
    width: 100%;
    padding-bottom: 30px;
  }
  .student-report .student-graph {
    width: 100%;
  }
}

.fetch_more_records {
    margin-left: 1px;
    margin-right: 2px;
}

a.paginate_button.fetch_more_records, a.paginate_button.fetch_more_records_quiz {
    padding: 4px 7px;
    background: white;
    border: #35d461 solid 2px;
    border-radius: 7px;
    margin-left: 5px;
    cursor: pointer;
}

a.paginate_button {
    margin: 3px;
}

td.details-control {
    background: url(https://datatables.net/dev/accessibility/DataTables_1_10/examples/resources/details_open.png) no-repeat center center;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url(https://datatables.net/dev/accessibility/DataTables_1_10/examples/resources/details_close.png) no-repeat center center;
}

.student-profile-wrapper{display:inline-flex; flex-direction: row; justify-content: space-between; width:50%;}
.student-profile-wrapper table th, .student-profile-wrapper table td{
	padding:5px;
}

.student-profile-wrapper .reponsive-table.table-wrapper{padding-top:0;}
.student-profile-wrapper table th:last-child,
.student-profile-wrapper table td:last-child{text-align:right;}

@media only screen and (max-width: 797px){
  .student-profile-wrapper {
      flex-grow: 1;
      flex-direction: column;
  }
}

.clear-all a{
  
}