/* ========================================================
* File: style.css AE/// ETEC Student Guide - Examplify2020
* Version: 1.2.0
* ======================================================== */
@font-face {
  font-family: "DINNext";
  src: url("../fonts/DINNextLTArabic-Regular-2.eot");
  src: url("../fonts/DINNextLTArabic-Regular-2.eot?#iefix") format("embedded-opentype"),
    url("../fonts/DINNextLTArabic-Regular-2.otf") format("opentype"),
    url("../fonts/DINNextLTArabic-Regular-2.svg") format("svg"),
    url("../fonts/DINNextLTArabic-Regular-2.ttf") format("truetype"),
    url("../fonts/DINNextLTArabic-Regular-2.woff") format("woff"),
    url("../fonts/DINNextLTArabic-Regular-2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

html, body, h1, h2, h3, h4, h5, h6 {
  font-family: "DINNext" !important;
}

/* ==back-to-top*/
/* ----------------------------------------------- */
#back-to-top {
  background-color: rgba(49, 155, 210, 0.3);
}

/* ==Header [.mainbar]*/
/* ----------------------------------------------- */
@media (min-width: 768px) {
  .navbar-left {
    float: right !important;
  }

  .navbar-right {
    float: left !important;
  }

  .navbar-nav.navbar-right .dropdown-menu:before {
    right: auto;
    left: 12px;
  }
}

.pull-left {
  float: right !important;
}

.pull-right {
  float: left !important;
}

.noticebar-item-body {
  padding-right: 20px;
}

.content-header-title {
  font-family: "DINNext" !important;
}

.portlet .portlet-header h1, .portlet .portlet-header h2, .portlet .portlet-header h3, .portlet .portlet-header h4, .portlet .portlet-header h5, .portlet .portlet-header h6 {
  float: right;
  margin: 0 0 0 1em;
}

.portlet .portlet-header h1 i, .portlet .portlet-header h2 i, .portlet .portlet-header h3 i, .portlet .portlet-header h4 i, .portlet .portlet-header h5 i, .portlet .portlet-header h6 i {
  margin-left: 10px;
  margin-right: 0px;
}

.dropdown-menu {
  text-align: right;
  left: auto;
}

@media (min-width: 768px) {
  body {
    background: #efefef;
  }
}

/* ==buttons */
/* ----------------------------------------------- */
.btn-success {
  color: #fff;
  background-color: #40b873;
  border-color: #40b873;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #389e63;
  border-color: #5cf15c;
}

/* ==Dropdowns */
/* ----------------------------------------------- */
.btn-primary .caret,
.btn-secondary .caret,
.btn-tertiary .caret,
.btn-facebook .caret,
.btn-twitter .caret {
  border-top-color: #fff;
}

.dropup .btn-primary .caret,
.dropup .btn-secondary .caret,
.dropup .btn-tertiary .caret,
.dropup .btn-facebook .caret,
.dropup .btn-twitter .caret {
  border-bottom-color: #fff;
}

.dropdown-menu {
  min-width: 185px;
}

.dropdown-menu>li {
  margin-right: .5em;
  margin-left: .5em;
}

.dropdown-menu>li>a {
  padding: 6px 7px;
  font-size: 13px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.dropdown-header {
  padding: 7px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
  color: #fff;
  background-color: #2686bf;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
  color: #444;
  background-color: #dadada;
}

@media (max-width: 768px) {
  .dropdown-header {
    color: #083d33;
    font-size: 13px;
  }

  .dropdown-menu>li>a {
    color: #fff;
  }

  .navbar-nav .open .dropdown-menu>li>a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding-left: 40px;
  }

  .dropdown-menu .divider {
    background-color: #3c6bb3;
  }
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  display: none;
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
}

.navbar .dropdown-submenu>.dropdown-menu,
.mainnav .dropdown-submenu>.dropdown-menu {
  display: block;
  margin-top: -6px;
  margin-left: 20px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.dropdown-submenu:hover>.dropdown-menu:before,
.dropdown-submenu:hover>.dropdown-menu:after {
  display: none;
}

@media (min-width: 768px) {

  .navbar .dropdown-submenu>.dropdown-menu,
  .mainnav .dropdown-submenu>.dropdown-menu {
    display: none;
    margin-left: -1px;
  }

  .navbar .dropdown-submenu:hover>.dropdown-menu,
  .mainnav .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }

  .dropdown-submenu>a:after {
    content: " ";
    display: block;
    float: right;
    width: 0;
    height: 0;
    margin-top: 5px;
    margin-right: -5px;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #cccccc;
  }

  .dropdown-submenu:hover>a:after {
    border-left-color: #e74c3c;
  }
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
}

/* ==Navbar */
/* ----------------------------------------------- */
.navbar {
  position: relative;
  z-index: 501;
  min-height: 60px;
  margin-bottom: 0;
  background-color: #222222;
  border: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: url(../img/pattern.png) repeat, linear-gradient(#ffffff, #ffffff);
  background-size: 69px;
  box-shadow: inset 0 0 0 2000px rgba(226, 226, 226, 0.25);
}

.navbar .navbar-nav>li>a {
  color: #428aca;
  font-size: 13px;
}

.navbar .navbar-nav>li>a:hover,
.navbar .navbar-nav>li>a:focus {
  color: #fff;
  background-color: #428aca;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
}

.navbar .navbar-nav>.active>a,
.navbar .navbar-nav>.active>a:hover,
.navbar .navbar-nav>.active>a:focus {
  color: #fff;
  background-color: #428aca;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
}

.navbar .navbar-nav>.disabled>a,
.navbar .navbar-nav>.disabled>a:hover,
.navbar .navbar-nav>.disabled>a:focus {
  color: #fff;
  background-color: #000;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
}

.navbar .navbar-toggle {
  padding-top: 6px;
  padding-bottom: 6px;
  margin-top: 10px;
  color: #428aca;
  font-size: 18px;
  border-color: none;
}

.navbar .navbar-toggle:hover,
.navbar .navbar-toggle:focus {
  background-color: #428aca;
  color: #fff;
}

.navbar .navbar-nav>.open>a,
.navbar .navbar-nav>.open>a:hover,
.navbar .navbar-nav>.open>a:focus {
  color: #fff;
  background-color: #2686bf;
}

.navbar-brand {
  height: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-brand-image {
  padding: 0;
}

a.navbar-brand.navbar-brand-image img {
  width: 270px;
  margin-top: 7px;
}

.RespLogo {
  width: 45px;
  margin: 3px 5px 0 0;
  float: right;
}

.ExamSoftLogo {
  width: 120px;
  margin: 19px 5px 0 0;
}

.navbar .navbar-nav>.navbar-profile>a {
  height: 60px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 60px;
}

.navbar-profile a:hover i, .navbar-profile a:hover span {
  color: #fff;
}

@media (min-width: 768px) {
  .navbar {
    height: 60px;
  }

  .navbar .navbar-nav>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /*.navbar-profile-label {
    display: none;
  }*/
}

@media (min-width: 768px) {
  .navbar-nav.navbar-right .dropdown-menu:before {
    left: auto;
    right: 12px;
  }
}

/* ==Search Banner */
/* ----------------------------------------------- */
.search-banner {
  background-image: url(../img/etec-building.jpg);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
  min-height: 680px;
  width: 100%;
  margin-bottom: 20px;
  -webkit-box-shadow: inset 0 0 0 2000px rgba(10, 44, 74, 0.75);
  box-shadow: inset 0 0 0 2000px rgba(10, 44, 74, 0.75);
}

.dataTable {
  display: table;
  vertical-align: middle;
  height: 500px;
  width: 100%;
  position: relative;
}

.dataTable .dataCell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

img.welcomeLogo {
  width: 350px;
  /*margin-bottom: 20px;*/
}

.welcomeText h3 {
  color: #fff;
  margin-bottom: 20px;
}

.welcomeText span {
  /*color: #8fcaff;*/
  color: #9cd0ff;
  font-size: 32px;
  box-shadow: inset 0 0 0 2000px rgba(226, 226, 226, 0.21);
  border-radius: 25px;
  padding: 4px 27px;
}

.search-box {
  transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #ebebeb;
  margin-top: 20px;
}

.search-box+label .search-icon {
  color: #428aca;
}

.search-box:hover {
  color: #428aca;
  background: #c8c8c8;
  box-shadow: 0 0 0 5px #3d4752;
}

.search-box:hover+label .search-icon {
  color: white;
}

.search-box:focus {
  transition: width 0.6s cubic-bezier(0, 1.22, 0.66, 1.39), border-radius 0.6s, background 0.6s;
  border: none;
  outline: none;
  box-shadow: none;
  padding-left: 15px;
  cursor: text;
  width: 300px;
  border-radius: auto;
  background: #ebebeb;
  color: #428aca;
}

.search-box:focus+label .search-icon {
  color: #428aca;
}

.search-box:not(:focus) {
  /*text-indent: -5000px;*/
}

#search-submit {
  position: relative;
  /*left: -5000px;*/
  display: none;
}

.search-icon {
  position: relative;
  right: -30px;
  color: white;
  cursor: pointer;
}

.ServiceTab a.tab {
  position: relative;
  display: block;
  padding: 15px 20px;
  border-radius: 6px;
  background-color: #d5d4d4;
  color: #646464;
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
  text-align: center;
  margin-bottom: 10px;
}

.ServiceTab .active>a {
  background-color: #428aca;
  color: #fff;
  text-decoration: none;
}

/*
.ServiceTab .active>a.tab:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: 49%;
  right: auto;
  top: 109px;
  bottom: auto;
  border: 10px solid;
  z-index: 2;
  border-color: transparent transparent transparent transparent;
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
  border-color: #428aca transparent transparent transparent;
}
*/
.ServiceTab .active>a.internal-tab {
  background-color: #3fb872;
}

.ServiceTab .active>a.internal-tab:before {
  border-color: transparent transparent transparent transparent;
}

.ServiceTab a.internal-tab {
  height: 80px;
  max-height: 80px;
  margin: 0;
  padding: 10px 20px;
}

.ServiceTab a.internal-tab h4 {
  font-size: 16px;
}

.maintitle {
  font-size: 15px;
}

.Ptrue img, .Pfalse img {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
  border-radius: 25px;
  background-color: #9fe076;
  padding: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  position: absolute;
  top: -4px;
  left: -4px;
}

.Pfalse img {
  background-color: #ef513d;
}

.card-container {
  background-color: #fff;
  padding: 35px 15px;
  /*margin: 25px 0;*/
  border-radius: 8px;
  min-height: 440px;
  overflow: hidden;
}

.card-container .card-title {
  background-color: #d9e2ea;
  overflow: hidden;
  text-align: center;
  margin-bottom: 15px;
  border-radius: 8px;
}

.card-container .card-title h5 {
  margin: 0;
  font-size: 15px;
  padding: 15px 15px 15px 20px;
  background-color: #037ba5;
  color: #fff;
  position: relative;
  float: left;
  text-align: left;
}

.card-container .card-title h5:before {
  content: '';
  right: -50px;
  top: 0;
  width: 0px;
  height: 100%;
  position: absolute;
  transform: skewX(-25deg);
  border: 4px dashed #037ba5;
}

.card-container .card-title h5:after {
  content: '';
  background-color: #037ba5;
  right: -38px;
  top: 0;
  width: 50px;
  height: 100%;
  position: absolute;
  transform: skewX(-25deg);
}

.nav-pills>li>a {
  border-radius: 4px;
  border: 1px solid #428aca69;
  transition: 0.3s ease all;
}

#myTab>li>a:hover, #myTab>li>a:focus {
  border: 1px solid transparent;
}

.nav-pills>li>a>.badge {
  color: #ffffff;
  background-color: #428aca;
}

@media (max-width: 720px) {
  .card-container {
    margin-bottom: 30px;
  }
}

.cttContainer {
  padding-bottom: .5em;
  margin-bottom: 1em;
  border-bottom: 1px dotted #CCC;
}

.cttContainer i {
  color: #428aca;
  font-size: 18px;
  margin-left: 5px;
}

.ctt-title {
  background-color: #f5f5f5;
  text-align: center;
  color: #428aca;
  border: 1px solid #428aca69;
  padding: 10px 0;
  margin-bottom: -15px;
  margin: 15px 0;
  border-radius: 25px;
}

.contentTabNum {
  color: #fff;
  background-color: #4289ca;
  padding: 4px 12px;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  margin-left: 5px;
  font-size: 17px;
}

.contentTabTitle {
  margin-top: 0;
  color: #4289ca;
  font-size: 24px;
}

.intContent {
  margin-bottom: 25px;
}

.intContent li {
  margin-bottom: 5px;
  font-size: 15px;
}

.intContent strong, .intContent span {
  font-size: 15px;
  padding-left: 5px;
  font-weight: bold;
}

.intContent strong {
  color: #ff0000;
}

.intContent span {
  color: #40b872;
}

.btnClick {
  padding: 0px 1px 3px 0;
  font-size: 15px;
  color: #458aca;
  text-decoration: none;
  background-color: transparent;
}

.btnClick:hover {
  color: #2a6496;
  text-decoration: underline;
}

.img-thumbnail {
  max-width: 75%;
  display: block;
  margin: 30px auto;
}

.lst-none {
  padding-right: 10px;
}

.lst-none li {
  list-style-type: none;
}

.li-true:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  font-size: 16px;
  padding-left: 5px;
}

.intContent li p {
  background-color: #f5f5f5;
  text-align: center;
  color: #428aca;
  border: 1px solid #428aca69;
  padding: 10px 4px;
  margin-bottom: -15px;
  margin: 15px 0;
  border-radius: 10px;
}

.nextTab.btn.btn-success {
  width: 25%;
  margin: 10px 0;
}

/* ==Accordion */
/* ----------------------------------------------- */
.accordion .panel-heading {
  padding: 0;
}

.accordion .accordion-toggle {
  display: block;
  padding: 13px 15px;
  font-size: 16px;
  cursor: pointer;
  color: #428bca;
}

.accordion .accordion-toggle:hover,
.accordion .accordion-toggle:active,
.accordion .accordion-toggle:focus {
  text-decoration: none;
  outline: none !important;
  background-color: #458aca;
  color: #fff;
}

.accordion .panel.open .accordion-toggle {
  color: #fff;
  background-color: #428aca;
}

a.accordion-toggle.collapsed:before {
  content: "\f137";
  font-family: 'FontAwesome';
  padding-left: 5px;
}

a.accordion-toggle:before {
  content: "\f13a";
  font-family: 'FontAwesome';
  padding-left: 5px;
}

.alert {
  margin-bottom: 10px;
}

#btn-menu {
  width: 100%;
  padding: 10px 0px;
  margin-bottom: 10px;
  background-color: #488aca;
  color: #fff;
}

.infoParents {
  margin-bottom: 10px;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.parentsGreen, .parentsRed {
  text-align: center;
  display: inline-block;
}

.parentsGreen {
  margin-left: 20px;
}

.parentsGreen img {
  background-color: #9fe076;
}

.parentsRed img {
  background-color: #ef513d;
}

.parentsGreen img, .parentsRed img {
  position: relative;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
  border-radius: 25px;
  padding: 5px;
  width: 30px;
  height: 30px;
}

/* ==footer */
/* ----------------------------------------------- */
footer {
  position: relative;
  z-index: 501;
  min-height: 60px;
  margin-bottom: 0;
  background-color: #222222;
  border: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: url(../img/pattern.png) repeat, linear-gradient(#ffffff, #ffffff);
  background-size: 69px;
  padding: 10px 0;
  margin-top: 55px;
  box-shadow: inset 0 0 0 2000px rgba(226, 226, 226, 0.25);
  box-shadow: 5px 10px 18px #888888;
}

.PCright {
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 10px;
}

.footer-links span {
  font-size: 12px;
}

ul.contact-circle {
  padding-right: 0;
  list-style-type: none;
  overflow: hidden;
  margin-top: 5px;
  font-size: 12px;
  margin-bottom: 0;
}

ul.contact-circle li {
  float: right;
  margin-left: 15px;
}

ul.contact-circle i {
  background-color: #198ece;
  color: #fff;
  padding: 5px;
  margin-left: 5px;
  border-radius: 5px;
}

.copyright img {
  width: 210px;
  margin: 0 auto;
}

.copyright span {
  font-size: 8.8px;
  display: block;
}

/* ==Mobile Responsive */
/* ----------------------------------------------- */
@media (max-width: 720px) {
  .img-thumbnail {
    max-width: 100%;
  }

  ul, ol {
    padding: 0;
  }

  .search-banner {
    margin-bottom: 25px;
  }

  #myTab li:last-child {
    margin-bottom: 25px;
  }

  .contentTabTitle {
    font-size: 16px;
  }

  .maintitle {
    font-size: 12px;
  }

  .intContent li {
    font-size: 14px;
  }

  .ServiceTab a.tab {
    padding: 6px;
    margin-bottom: 8px;
    margin-top: 0;
  }

  a.navbar-brand.navbar-brand-image img {
    width: 200px;
    margin: 11px 7px 0 0;
  }

  .ServiceTab .active>a.tab:before {
    display: none;
  }

  img.welcomeLogo {
    width: 280px;
  }

  .welcomeText span {
    /* color: #8fcaff; */
    font-size: 30px;
    box-shadow: inset 0 0 0 2000px rgba(226, 226, 226, 0);
    border-radius: 0;
    padding: 0;
  }

  .nextTab.btn.btn-success {
    width: 55%;
  }

  .footer-links {
    text-align: center;
    margin: 15px 0;
  }

  .copyright {
    text-align: center;
    margin: 20px 0;
  }

  ul.contact-circle li {
    display: inline-block;
    margin: 15px 0;
    padding-left: 10px;
    text-align: center;
    float: none !important;
    font-size: 15px;
  }

  .copyright img {
    width: 265px;
  }

  .copyright span {
    font-size: 11px;
  }

  footer {
    margin-top: 10px;
  }

  article {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 6px;
  }

  .container-mobile {
    padding: 0px;
    border-radius: 6px;
  }

  .container-mobile #report-sidemenu {
    padding-left: 15px;
    padding-right: 15px;
  }
}
