/*
  Last Update At 23 Oct 2023 => 4350 Lines
  Last Update At 18 Sep 2024 => 3209 Lines
*/

:root {
  --primary-color: #0075ff;
  --primary-color-alt: #0366da;
  --green-color: #009688;
  --danger-color: darkred;
  --border-color: #ebebeb;
  --half-white: #f8f6f6;
  --second-color: #009688;
}

/* Start Tracks */
.track-steps {
  position: relative;
  counter-reset: steps;
  margin-right: 42px;
}
.track-steps:before {
  content: "";
  background-color: #c2c2c2;
  position: absolute;
  right: -40px;
  top: 0;
  width: 3px;
  height: 100%;
}
@media (max-width: 767px) {
  .track-steps {
    margin-right: 0;
    padding: 5px 0;
  }
  .track-steps:before {
    left: 50%;
    right: auto;
    margin-left: -1.5px;
  }
  .track-steps .step {
    margin: 70px 0;
  }
  .track-steps .step:last-child {
    margin-bottom: 0;
  }
}
.track-steps .step:not(:last-child) {
  margin-bottom: 20px;
}
.track-steps .step:before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  right: -58px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  border: 3px solid #fff;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
  -webkit-box-shadow: 0 0 20px #ccc;
  -moz-box-shadow: 0 0 20px #ccc;
  box-shadow: 0 0 20px #ccc;
  padding-right: 1px;
}
.track-steps .step:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 40px;
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent transparent #fff;
}
@media (max-width: 767px) {
  .track-steps .step:before {
    top: -54px;
    right: 50%;
    margin-right: -20px;
  }
  .track-steps .step:after {
    display: none;
  }
}
.track-steps .step:nth-child(1):before,
.track-steps .step:nth-child(1) .link {
  background-color: #00a8ff;
}
.track-steps .step:nth-child(2):before,
.track-steps .step:nth-child(2) .link {
  background-color: #e84118;
}
.track-steps .step:nth-child(3):before,
.track-steps .step:nth-child(3) .link {
  background-color: #273c75;
}
.track-steps .step:nth-child(4):before,
.track-steps .step:nth-child(4) .link {
  background-color: #487eb0;
}
.track-steps .step:nth-child(5):before,
.track-steps .step:nth-child(5) .link {
  background-color: #353b48;
}
.track-steps .step:nth-child(6):before,
.track-steps .step:nth-child(6) .link {
  background-color: #8c7ae6;
}
.track-steps .step .step-info {
  line-height: 1.8;
  font-size: 18px;
}
.track-steps .step .step-info .note {
  font-weight: bold;
  color: #ff0404;
  font-size: 15px;
}
.track-steps .step .step-info .info {
  background-color: #f9f9f9;
  padding: 15px;
  border-left: 5px solid var(--primary-color);
  font-size: 14px;
  font-weight: bold;
}
.track-steps .step .step-info .link {
  font-weight: bold;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 14px;
}
.track-steps .step .step-progress {
  display: flex;
}
.track-steps .step .step-progress .soon {
  background-color: #e91e63;
  color: #fff;
  font-weight: bold;
  padding: 6px 10px 4px;
  border-radius: 4px;
  font-size: 14px;
}
.track-steps .step .step-progress .percentage {
  background-color: #eee;
  color: #fff;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  margin-right: 4px;
  flex: 1;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.track-steps .step .step-progress .percentage span {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
}
.track-steps .step.soon h3,
.track-steps .step.soon .step-info,
.track-steps .step.soon .step-progress {
  opacity: 0.4;
  transition: 0.3s;
}
.track-steps .step.soon:hover h3,
.track-steps .step.soon:hover .step-info,
.track-steps .step.soon:hover .step-progress {
  opacity: 1;
}
.track-steps .step .step-info .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .track-steps .step .step-info .flex {
    display: block;
    text-align: center;
  }
  .track-steps .step .step-info .info {
    margin-top: 15px;
  }
}
/* End Tracks */
/* Start Tags */
.tag-cloud .content a {
  font-size: 15px !important;
  padding: 5px 10px;
  background-color: #eee;
  border-radius: 6px;
  margin-left: 10px;
  margin-bottom: 10px;
  color: #777;
}
/* End Tags */
/* Start Support Page */
@media (min-width: 768px) {
  .support-page {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px auto;
  }
  .support-page .bank-misr,
  .support-page .vodafone {
    width: calc(50% - 7.5px);
  }
  .support-page .three {
    width: calc((100% / 3) - 10px);
  }
}
@media (max-width: 767px) {
  .support-page .element {
    margin-top: 15px;
  }
}
.support-page .element {
  background-color: white;
  text-align: center;
}
.support-page .head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.support-page .bank-misr .head {
  background-color: #862f3b;
}
.support-page .vodafone .head {
  background-color: #ee1c25;
}
.support-page .paypal .head {
  background-color: #123984;
}
.support-page .patreon .head {
  background-color: #f96854;
}
.support-page .instapay .head {
  background-color: #4c096e;
}
.support-page .two .info {
  padding: 20px;
  font-size: 16px;
  border-top: 1px solid #eee;
}
.support-page .two .info div:not(:last-child) {
  margin-bottom: 10px;
}
.support-page .three .info {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  direction: ltr;
}
.support-page .paypal .info a {
  color: #123984;
}
.support-page .patreon .info a {
  color: #f96854;
}
.support-page .buy-coffee .info a {
  color: #ffdd00;
}
/* End Support Page */
/* Start Code Inside Pages */
.code-toolbar pre {
  position: relative;
  padding: 40px 20px 25px 20px;
  margin: 15px 0;
  direction: ltr;
  border-radius: 0;
  border: none;
  border-left: 5px solid black;
  border-radius: 5px;
}
.code-toolbar pre:before {
  position: absolute;
  left: 0;
  top: 0;
  padding: 4px 10px;
  font-weight: bold;
  text-shadow: none;
  font-size: 15px;
}
.code-toolbar pre.language-javascript {
  border-left-color: #f8c555;
}
.code-toolbar pre.language-javascript:before {
  background-color: #f8c555;
  content: "Javascript";
  color: #000;
}
.code-toolbar pre.language-html {
  border-left-color: #16a085;
}
.code-toolbar pre.language-html:before {
  background-color: #16a085;
  content: "HTML";
  color: #fff;
}
.code-toolbar pre.language-css {
  border-left-color: #00bcd4;
}
.code-toolbar pre.language-css:before {
  background-color: #00bcd4;
  content: "CSS";
  color: #fff;
}
.code-toolbar pre.language-sass {
  border-left-color: #ce679a;
}
.code-toolbar pre.language-sass:before {
  background-color: #ce679a;
  content: "SASS";
  color: #fff;
}
.code-toolbar pre.language-php {
  border-left-color: #4f5b93;
}
.code-toolbar pre.language-php:before {
  background-color: #4f5b93;
  content: "PHP";
  color: #fff;
}
.code-toolbar pre.language-python {
  border-left-color: #4584b6;
}
.code-toolbar pre.language-python:before {
  background-color: #4584b6;
  content: "Python";
  color: #fff;
}
.code-toolbar pre.language-sql:before {
  background-color: #f29111;
  content: "SQL";
  color: #fff;
}
.code-toolbar pre.language-git:before {
  background-color: #bd2c00;
  content: "Git";
  color: #fff;
  text-transform: uppercase;
}
.code-toolbar pre.language-typescript {
  border-left-color: #2a76cb;
}
.code-toolbar pre.language-typescript:before {
  background-color: #2a76cb;
  color: #fff;
  content: "Typescript";
}
.code-toolbar pre.language-c {
  border-left-color: #004482;
}
.code-toolbar pre.language-c:before {
  background-color: #004482;
  color: #fff;
  content: "C++";
}
.code-toolbar pre.language-csharp {
  border-left-color: #390091;
}
.code-toolbar pre.language-csharp:before {
  background-color: #390091;
  color: #fff;
  content: "C#";
}
/* End Code Inside Pages */
/* Start Advs Boxes */
.advs-box {
  padding: 15px;
  background-color: white;
  margin: 15px 0 -5px;
  text-align: center;
  font-size: 17px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  line-height: 2;
  gap: 20px;
}
.advs-box a:not(.link-button) {
  display: flex;
  width: fit-content;
  margin: auto;
}
.advs-box .link-button {
  font-weight: bold;
  background-color: var(--primary-color);
  color: white;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 14px;
  min-width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advs-box span {
  font-weight: bold;
  color: indianred;
}
@media (min-width: 768px) {
  .advs-box a.web {
    display: flex;
  }
  .advs-box a.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .advs-box {
    display: block;
  }
  .advs-box .link-button {
    margin-top: 15px;
  }
  .advs-box a.web {
    display: none;
  }
  .advs-box a.mobile {
    display: block;
  }
}
/* End Advs Boxes */
/* Start Paging */
.paging {
  margin: 20px 0;
  text-align: center;
  background-color: white;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.paging .page-numbers {
  display: inline-flex;
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  height: 30px;
  width: 30px;
  justify-content: center;
  align-items: center;
}
.paging .page-numbers.current,
.paging .page-numbers:hover {
  background-color: var(--primary-color);
  color: white;
}
.paging .page-numbers:hover {
  text-decoration: none;
}
.paging i {
  font-size: 10px;
}
/* End Paging */
/* Start Panels */
.pan {
  border-bottom: 3px solid #4d4d4e;
  border-top: 3px solid #4d4d4e;
  background-color: white;
  margin: 20px 0;
  overflow: hidden;
}
.pan > h4 {
  padding: 15px;
  font-weight: bold;
  margin: 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.pan .content {
  padding: 15px;
}
.pan .content img {
  max-width: 100% !important;
}
/* End Panels */
/* Start Previous Next Block */
.prev-next {
  background-color: white;
  margin-top: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.prev-next > div {
  padding: 15px;
  flex: 1;
  transition: 0.3s;
}
.prev-next > div:hover {
  background-color: #f9f9f9;
}
.prev-next span {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  color: #777;
}
.prev-next a {
  color: black;
  transition: 0.3s;
  font-weight: bold;
}
.prev-next a:hover {
  color: var(--primary-color);
}
/* End Previous Next Block */
/* Start Isolated Selectors */
.hostinger-note.content {
  padding: 20px !important;
  margin-top: 0;
  line-height: 2;
  font-weight: normal;
}
.hostinger-note.content span,
.hostinger-note.content a {
  font-weight: bold;
}
.hostinger-note {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  background-color: white;
}
.hostinger-note a {
  color: var(--primary-color);
}
.hostinger-note span {
  color: indianred;
}
.problem-url {
  background-color: #f9f9f9;
  display: block;
  padding: 15px;
  text-align: left;
  direction: ltr;
  font-weight: bold;
  color: var(--primary-color);
  border-left: 2px solid #eee;
}
.watch-video {
  padding: 20px;
  background-color: #fff;
  margin: 10px 0;
  text-align: center;
}
.watch-video a {
  background-color: #f00;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 4px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}
.watch-video a:hover {
  background-color: #df0505;
}
.points {
  margin-bottom: 15px !important;
}
.points li {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.points li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.points li:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.points li a {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 16px;
}
.points li span {
  font-weight: bold;
  color: #bf1408;
}
.single-panel {
  background-color: #fff;
  margin: 10px 0;
}
.single-panel h4 {
  padding: 15px;
  font-weight: bold;
  margin: 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.single-panel .content {
  padding: 15px;
}
.the-tags a {
  background-color: var(--primary-color);
  color: white;
  margin: 5px 0 5px 5px;
  padding: 0 5px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-flex;
}
.assign-title {
  text-align: center;
  background-color: #f1f1f1;
  padding: 15px;
  border: 1px solid #eee;
  font-weight: bold;
  color: var(--primary-color);
  direction: ltr;
}
.words-bank {
  width: 100%;
  margin: 15px 0;
  direction: ltr;
}
.words-bank thead td {
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ddd;
  background-color: #f9f9f9;
}
.words-bank tbody td:nth-child(2) {
  direction: rtl;
  text-align: right;
  border-left: 1px solid #ddd;
}
.words-bank tbody tr:not(:last-child) td {
  border-bottom: 1px solid #ddd;
}
.has-word {
  position: absolute !important;
  right: 5px;
  top: 8px !important;
  color: var(--primary-color);
}
.words-bank td {
  padding: 15px;
  vertical-align: middle;
}
/* End Isolated Selectors */

/* Start Top Bar */
.topbar-slider {
    overflow: hidden;
    background: var(--primary-color);
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.topbar-slider-track {
    display: flex;
    width: max-content;
}

.topbar-slide {
    white-space: nowrap;
    padding: 0 30px;
}

.topbar-slide a {
    color: #fff;
    text-decoration: none;
}

.topbar-slide a:hover {
    text-decoration: underline;
}

/* End Top Bar */
/* Start Bootstrap Direction & Override */
.navbar {
  margin-bottom: 0 !important;
  border-radius: 0;
  border: none;
  background-color: white;
}
@media (min-width: 768px) {
  .navbar-fixed-top {
    border-radius: 0;
    background: none;
    border: none;
  }
}
.home-nav {
  background-color: rgba(34, 34, 34, 0.85);
  border-color: #080808;
}
.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
  max-height: 100%;
}
.container {
  direction: rtl;
}
@media (min-width: 768px) {
  .navbar-header {
    float: right;
  }
  .navbar-right {
    float: left !important;
    margin-left: -15px;
    margin-right: 0;
  }
  .navbar-nav > li {
    float: right;
  }
}
.nav > li > a {
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav > li > .dropdown-toggle {
  position: relative;
  padding-left: 25px;
}
.nav > li > .dropdown-toggle::before {
  position: absolute;
  content: "\F140";
  left: 5px;
  top: 50%;
  font: normal normal normal 24px / 1 "Material Design Icons Light";
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900;
  transform: translateY(-50%);
}
.navbar-nav > li .down-arrow {
  font-size: 20px;
  position: relative;
  top: 3px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: #363f4a;
  color: #fff;
}
.navbar-nav .dropdown-menu {
  direction: rtl;
  background-color: #363f4a;
  border-radius: 0 0 10px 10px !important;
  padding: 0;
  min-width: 250px;
  text-align: right;
  right: 0;
  left: auto;
  border-top: 2px solid var(--primary-color);
  /* overflow: hidden; */
}
.navbar-nav .dropdown-menu > li > a {
  color: #fff;
  padding: 13px !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  /* border-left: 1px solid #4a5561; */
  font-size: 13px;
}
.navbar-nav .dropdown-menu > li:not(:last-child) > a { 
  border-bottom: 1px solid #4a5561 !important;
}
.navbar-nav .dropdown-menu > li > a:hover,
.navbar-nav .dropdown-menu > li > a:focus {
  background-color: var(--primary-color);
  color: #fff;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  background-color: var(--primary-color);
}
.navbar-toggle {
  border: 1px solid #fff;
}
.navbar-toggle .icon-bar {
  background-color: #fff;
}
@media (max-width: 767px) {
  .navbar .navbar-brand {
    margin-top: 0;
    float: right;
  }
  .navbar-toggle {
    float: left;
  }
  .navbar .navbar-nav > li > a {
    padding: 15px;
  }
  .navbar-nav .open .dropdown-menu {
    background-color: #353535;
    padding: 10px 0;
  }
  .navbar .navbar-nav > .open > a,
  .navbar .navbar-nav > .open > a:focus,
  .navbar .navbar-nav > .open > a:hover {
    background: none;
  }
}
.navbar-nav li:last-child .dropdown-menu,
.navbar-nav li:nth-last-child(2) .dropdown-menu {
  right: auto;
  left: 0;
}
/* End Bootstrap Direction & Override */
/* Start Base Layout */
.base-layout {
  background-color: #f2f2f2;
  padding-bottom: 20px;
  min-height: calc(100vh - 145px);
}
.base-layout .page-head {
  padding: 40px 20px;
  position: relative;
  background-color: #fafafa;
  z-index: 1;
  text-align: center;
}
.base-layout .page-head h1 {
  margin: 0;
  position: relative;
  font-size: 50px;
  font-weight: bold;
  color: black;
  line-height: 1.6;
}
.base-layout .page-head p {
  margin: auto;
  position: relative;
  z-index: 1;
  color: #555;
  font-size: 18px;
  line-height: 2;
  max-width: 800px;
}
.base-layout .page-head a {
  font-weight: bold;
  color: white;
}
.base-layout .page-head a::before {
  content: "[ ";
}
.base-layout .page-head a::after {
  content: " ]";
}
.base-layout img {
  max-width: 100%;
  height: auto;
}
.base-layout .base-search {
  background-color: white;
}
.base-layout .base-search form {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.base-layout .base-search input[type="text"] {
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #f9f8f8;
  flex: 1;
  padding: 15px;
}
.base-layout .base-search input[type="submit"] {
  background-color: var(--primary-color);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  padding: 15px;
  transition: 0.3s;
}
.base-layout .base-search input[type="submit"]:hover {
  background-color: var(--primary-color-alt);
}
.base-layout .base-content {
  margin-top: 20px;
}
.base-content .content-area .no-posts {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 992px) {
  .base-layout .base-content {
    display: flex;
    gap: 30px;
    flex-direction: row-reverse;
  }
  .base-content .content-area {
    flex: 1;
  }
  .base-content .side-area {
    width: 30%;
  }
}
.content-area .base-box {
  padding: 20px;
  background-color: white;
  position: relative;
  border-right: 1px solid #ccc;
  border-radius: 6px;
}
.content-area .base-box:hover::before {
  background-color: var(--primary-color-alt);
}
.content-area .base-box::before {
  content: "";
  position: absolute;
  right: -2px;
  width: 3px;
  background-color: var(--primary-color);
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.content-area .base-box:not(:last-child) {
  margin-bottom: 15px;
}
.content-area .base-box .box-thumbnail {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.content-area .base-box .box-thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.content-area .base-box .box-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.content-area .base-box .box-content .thumb {
  border: 1px solid #eee;
  width: 100%;
}
@media (min-width: 768px) {
  .content-area .base-box .box-content .thumb {
    width: 180px;
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .content-area .base-box .box-content .thumb {
    margin-bottom: 15px;
  }
}
.content-area .base-box .box-content .details {
  flex: 1;
}
.content-area .base-box .box-link {
  font-weight: bold;
  font-size: 20px;
  color: black;
  width: fit-content;
  display: block;
  margin-bottom: 10px;
  position: relative;
}
.content-area .base-box .box-link::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px 10px;
  transition: 0.3s;
}
.content-area .base-box .box-link:hover::before {
  width: 100%;
}
.content-area .base-box .box-link span {
  position: relative;
  z-index: 1;
}
.content-area .base-box .excerpt {
  line-height: 2;
}
.content-area .base-box .info {
  margin-top: 20px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
}
.base-box .info .icon {
  margin-left: 4px;
}
/* End Base Layout */
/* Start Single Base Layout */
.wp-block-separator {
  color: #d7d7d7;
}
.base-single {
  background-color: #eee;
}
.base-single .head {
  padding: 60px 100px 10px;
  background-color: white;
}
.base-single .head h1 {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 50px;
  line-height: 1.5;
}
.base-single .head h1 + p {
  font-size: 20px;
  line-height: 2;
  padding: 6px 15px;
  border-right: 4px solid var(--primary-color);
  background-color: aliceblue;
}
.base-single .head h1 + p span {
  color: var(--primary-color);
  font-weight: bold;
}
.base-single .base-content {
  padding: 10px 100px;
  position: relative;
  font-size: 18px;
  background-color: white;
}
.base-single .base-content h3,
.base-single .base-content h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
  background-color: #f1f1f1;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  border-right: 3px solid black;
}
.base-single .base-content h3 span {
  background-color: var(--primary-color);
  color: white;
  font-size: 14px;
  padding: 6px 15px;
  border-radius: 4px;
}
.base-single .base-content > h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0;
  background-color: #f4f4f4;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  border-right: 3px solid #0075ff;
}
.base-single .base-content .text {
  padding: 20px;
  margin: 15px 0;
  line-height: 1.8;
}
.base-single .base-content .text > a {
  font-weight: bold;
  color: #e91e63;
}
.base-single .base-content .text h4 {
  font-weight: bold;
  color: var(--primary-color);
  margin: 5px 0 10px;
}
.base-single .base-content .hint {
  background-color: #f9f9f9;
  padding: 20px;
  border-top: 1px dashed #f00;
  border-right: 3px solid #e91e63;
  border-bottom: 1px dashed #f00;
  border-left: 3px solid #e91e63;
  position: relative;
}
.base-single .base-content .hint:before {
  font-family: "FontAwesome";
  content: "\f0eb";
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.1;
  color: #e91e63;
}
.base-single .base-content .hint h4 {
  background-color: #e91e63;
  margin: 0 0 15px;
  padding: 10px;
  width: fit-content;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
}
.base-single .base-content .hint div {
  font-weight: bold;
  width: fit-content;
}
.base-single .base-content .hint div:not(:last-of-type) {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.base-single img {
  object-fit: fill;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  display: block;
  height: auto;
}
.base-content > .master-table > table > thead {
  border-bottom: 2px solid var(--primary-color) !important;
}
.base-content > .master-table > table > thead > tr > th {
  padding: 15px ;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border-bottom-color: var(--primary-color) !important;
}
/* End Single Base Layout */
/* Start Widgets */
.base-widget {
  padding: 20px;
  background-color: white;
  margin-bottom: 10px;
  border-radius: 6px;
}
.base-widget > h4 {
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  font-weight: bold;
  position: relative;
}
.base-widget > h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 80px;
  height: 1px;
  background-color: var(--primary-color);
}
.base-widget > h4 .icon {
  margin-left: 5px;
  font-size: 26px;
}
/* End Widgets */
/* Start Stats Widget */
.stat-widget ul li {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  background-color: #f2f2f2;
  font-weight: bold;
}
.stat-widget ul li:not(:last-child) {
  margin-bottom: 10px;
}
.stat-widget ul li .icon {
  margin-left: 10px;
  font-size: 20px;
}
/* End Stats Widget */
/* Start Child Cats */
.child-cats li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.child-cats li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}
.child-cats li img {
  width: 24px;
  margin-left: 5px;
}
.child-cats li a {
  font-weight: bold;
  color: black;
}
.child-cats li .count {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
}
/* End Child Cats */
/* Start Latest Members */
.latest-members li {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 0;
  border: 1px solid var(--border-color);
  position: relative;
}
.latest-members li::before {
  content: "";
  position: absolute;
  right: -2px;
  width: 3px;
  background-color: var(--primary-color);
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.latest-members li:not(:last-child) {
  margin-bottom: 10px;
}
.latest-members li img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 10px;
}
.latest-members li .member-name {
  display: block;
  font-weight: bold;
}
.latest-members li .member-name a {
  color: black;
  transition: 0.3s;
}
.latest-members li .member-name a:hover {
  color: var(--primary-color);
}
.latest-members li .register-date {
  color: #777;
}
.latest-members .widget-join {
  font-weight: bold;
  display: block;
  margin: 20px auto 0;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  width: fit-content;
}
/* End Latest Members */
/* Start Base Items */
.base-items li {
  position: relative;
  padding: 10px 0;
}
.base-items li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}
.base-items li a {
  display: block;
  width: fit-content;
  line-height: 1.8;
  font-weight: bold;
  color: black;
  position: relative;
  z-index: 1;
}
/* End Base Items */
/* Start Tag Cloud */
.tag-cloud li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.tag-cloud li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.tag-cloud li a {
  background-color: #eee;
  padding: 5px 8px;
  border-radius: 6px;
  text-transform: capitalize;
  color: black;
}
.tag-cloud li span {
  font-weight: bold;
  color: var(--primary-color);
}
/* End Tag Cloud */
/* Start Latest Article */
.latest-article a {
  font-weight: bold;
  color: black;
  text-align: center;
  display: block;
  font-size: 16px;
}
.latest-article img {
  max-width: 100%;
  height: auto;
  padding: 3px;
  border: 1px solid #ccc;
  margin-top: 15px;
}
/* End Latest Article */
/* Start Ad Box */
.img-ad img {
  max-width: 100%;
  height: auto;
  padding: 3px;
  border: 1px solid #ccc;
  margin-top: 15px;
}
/* End Ad Box */
/* Start Books */
.from-book {
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
}
.from-book span:last-child a {
  font-weight: bold;
  color: var(--primary-color);
}
.books-rate {
  padding: 10px 0;
  direction: ltr;
}
.books-rate .filled {
  color: var(--primary-color);
}
.books-points div {
  background-color: #f9f9f9;
  padding: 20px;
  position: relative;
  counter-increment: cons;
}
.books-points div:not(:last-child) {
  margin-bottom: 15px;
}
.books-points div::before {
  content: counter(cons);
  position: absolute;
  right: -5px;
  top: -5px;
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  line-height: 18px;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 12px;
}
/* End Books */
/* Start Tutorials */
.tutorial-type {
  text-transform: capitalize;
  background-color: #ddd;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 6px;
  display: inline-flex;
  margin: 10px 0 0;
  font-weight: bold;
  color: white;
  font-size: 12px;
}
.tutorial-type.web-design {
  background-color: #18a3ac;
}
.tutorial-type.javascript {
  background-color: #f7df1e;
  color: black;
}
.tutorial-type.wordpress {
  background-color: #d54e21;
}
.tutorial-type.python {
  background-color: #4584b6;
}
.tutorial-type.css {
  background-color: #90bd31;
}
.tutorial-type.laravel {
  background-color: #f55247;
}
.tutorial-type.php {
  background-color: #4f5b93;
}
.tutorial-type.vuejs {
  background-color: #42b883;
}
.tutorial-type.programming {
  background-color: #7552cc;
}
/* End Tutorials */
/* Start Courses Area */
.courses-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 15px;
  direction: ltr;
}
.course-box {
  background-color: white;
  padding: 18px;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 6px;
}
.course-box:hover {
  box-shadow: 0 0 10px #ddd;
}
.course-box .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-box .head img {
  width: 55px;
}
.course-box .link {
  font-weight: bold;
  color: black;
  width: fit-content;
  display: block;
  font-size: 17px;
  transition: 0.3s;
}
.course-box .status {
  margin-top: 15px;
  font-size: 15px;
}
.course-box .status .icon {
  margin-right: 5px;
  color: var(--primary-color);
}
.course-box .status .completed {
  color: var(--primary-color);
}
.course-box .status span.completed {
  font-weight: bold;
}
.course-box .link:hover {
  color: var(--primary-color);
}
.course-box .info p {
  margin: 10px 0 0;
}
.course-box .details {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.course-box .details > div:not(:last-child) {
  margin-bottom: 15px;
}
.course-box .details > div strong::before {
  content: "[";
}
.course-box .details > div strong::after {
  content: "]";
}
.course-box .details > div .icon {
  margin-right: 5px;
}
.course-box .details a {
  color: var(--primary-color);
  transition: 0.3s;
}
.course-box .details a:hover {
  color: var(--primary-color-alt);
}
.course-box .videos-duration {
  text-transform: capitalize;
}
/* End Courses Area */
/* Start Assignments Area */
.assignments-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 15px;
  direction: ltr;
}
.assignment-box {
  background-color: white;
  padding: 20px;
  font-size: 16px;
  transition: 0.3s;
}
.assignment-box:hover {
  box-shadow: 0 0 10px #ddd;
}
.assignment-box .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.assignment-box .head img {
  width: 48px;
}
.assignment-box .link {
  font-weight: bold;
  color: black;
  width: fit-content;
  display: block;
  font-size: 18px;
  transition: 0.3s;
}
.assignment-box .link:hover {
  color: var(--primary-color);
}
.assignment-box .info p {
  margin: 10px 0 0;
}
.assignment-box .details {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
}
.assignment-box .details > div:not(:last-child) {
  margin-bottom: 10px;
}
.assignment-box .details .icon {
  margin-right: 5px;
}
.assignment-box .details .text {
  width: 100px;
  display: inline-flex;
}
.assignment-box .details > div strong::before {
  content: "[ ";
}
.assignment-box .details > div strong::after {
  content: " ]";
}
.assignment-box .status .icon {
  margin-right: 5px;
}
.assignment-box .status .has,
.assignment-box .status .solution {
  color: var(--primary-color);
}
.assignment-box .status .has-not,
.assignment-box .status .no-solution {
  color: var(--danger-color);
}
.assignment-box .status span {
  font-weight: bold;
}
/* End Assignments Area */
/* Start Problem Solving Websites Area */
.problems-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 15px;
  direction: ltr;
}
.problems-box {
  background-color: white;
  padding: 20px;
  font-size: 16px;
  transition: 0.3s;
}
.problems-box:hover {
  box-shadow: 0 0 10px #ddd;
}
.problems-box .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.problems-box .head img {
  width: 55px;
}
.problems-box .link {
  font-weight: bold;
  color: black;
  width: fit-content;
  display: block;
  font-size: 18px;
  transition: 0.3s;
}
.problems-box .link:hover {
  color: var(--primary-color);
}
.problems-box .info p {
  margin: 10px 0 0;
}
.problems-box .details {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.problems-box .details > div:not(:last-child) {
  margin-bottom: 15px;
}
.problems-box .details > div .icon {
  margin-right: 5px;
}
/* End Problem Solving Websites Area */
/* Start Programming Solutions */
ul.p-filter {
  display: flex;
  background-color: white;
  padding: 15px;
  margin-top: 15px;
  justify-content: center;
  align-items: center;
  direction: ltr;
  font-size: 16px;
}
ul.p-filter li {
  padding: 0px 8px;
  font-weight: bold;
  cursor: pointer;
}
ul.p-filter li.active,
ul.p-filter li:hover {
  color: var(--primary-color);
}
ul.p-filter li:not(:last-child) {
  border-right: 1px solid #ddd;
}
.p-solutions {
  direction: ltr;
}
.p-solutions .solution {
  padding: 15px;
  background-color: white;
  margin-top: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.p-solutions .solution > span {
  border-radius: 6px;
  display: inline-flex;
  width: 90px;
  justify-content: center;
  align-items: center;
  padding: 3px 0;
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
  transition: 0.3s;
}
.p-solutions .solution > span.python {
  background-color: #4584b6;
  color: white;
}
.p-solutions .solution > span.php {
  background-color: #99cc99;
  color: white;
}
.p-solutions .solution > span.javascript {
  background-color: #f7df1e;
  color: black;
}
.p-solutions .solution > span.eight-kyu {
  color: #009688;
  border: 2px solid #009688;
}
.p-solutions .solution > span.seven-kyu {
  color: #03a9f4;
  border: 2px solid #03a9f4;
}
.p-solutions .solution > span.six-kyu {
  color: #ff5722;
  border: 2px solid #ff5722;
}
.p-solutions .solution > span.five-kyu {
  color: #673ab7;
  border: 2px solid #673ab7;
}
.p-solutions .solution > span.easy {
  color: #43a047;
  border: 2px solid #43a047;
}
.p-solutions .solution > span.medium {
  color: #ef6c00;
  border: 2px solid #ef6c00;
}
.p-solutions .solution > span.hard {
  color: #e91e63;
  border: 2px solid #e91e63;
}
.p-solutions .solution .info {
  border-left: 1px solid #ccc;
  padding-left: 10px;
  flex: 1;
  color: #666;
}
.p-solutions .solution .info a {
  font-weight: bold;
  transition: 0.3s;
  color: black;
  display: block;
  width: fit-content;
}
.p-solutions .solution .info a:hover {
  color: var(--primary-color);
}
.p-solutions .solution .info .language {
  font-size: 14px;
  margin-top: 4px;
  margin-right: 5px;
  border-right: 1px solid #ccc;
  padding-right: 10px;
  line-height: 1;
  display: inline-flex;
}
.p-solutions .solution .info .views {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
}
/* End Programming Solutions */
/* Start Study Main Page */
.study-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  direction: ltr;
}
.study-main .box {
  background-color: white;
  position: relative;
}
.study-main .box > span {
  position: absolute;
  right: 10px;
  top: 10px;
}
.study-main .box > span.done {
  color: var(--primary-color);
}
.study-main .box a {
  display: block;
  padding: 20px;
  text-align: center;
  color: black;
  transition: 0.3s;
}
.study-main .box a:hover {
  color: var(--primary-color);
}
.study-main .box img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: 0.5s;
  width: 100px;
  margin: auto;
}
.study-main .box img:hover {
  transform: scale(0.95) rotate(5deg);
}
.study-main .box h3 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}
.study-main .box .info {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-top: 1px solid #eee;
}
/* End Study Main Page */

/* Start Paths */
.paths {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.paths .path-box {
  border: 1px solid #eee;
  background-color: white;
}
.paths .path-link {
  display: block;
  padding: 15px;
  width: fit-content;
  color: black;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  transition: 0.3s;
}
.paths .path-link:hover {
  color: var(--primary-color);
}
.paths .path-excerpt {
  padding: 0 15px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 15px;
}
/* End Paths */
/* Start Challenges */
.challenges-main {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .challenges-main {
    grid-template-columns: minmax(100px, 1fr);
  }
}
.challenges-main .box {
  background-color: white;
}
.challenges-main .box a {
  font-weight: bold;
  color: black;
  padding: 20px;
  text-align: center;
  display: block;
  width: fit-content;
  margin: 10px auto;
  transition: 0.3s;
  font-size: 22px;
}
.challenges-main .box a:hover {
  color: var(--primary-color);
}
.challenges-main .box img {
  width: 200px;
  height: 200px;
  display: block;
}
.challenges-main .box .info {
  border-top: 1px solid #eee;
  text-align: right;
  padding: 15px;
}
.challenges-rating {
  direction: ltr;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  background-color: white;
  margin-top: 15px !important;
  margin-bottom: 15px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.challenges-rating li {
  background-color: #f8f6f6;
  cursor: pointer;
  padding: 5px 10px;
  transition: 0.3s;
  border-radius: 6px;
  font-weight: bold;
}
.challenges-rating li.active,
.challenges-rating li:hover {
  background-color: var(--primary-color);
  color: white;
}
.challenges-rating li:not(:last-child) {
  margin-right: 5px;
}
.challenges-child {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}
.challenges-child .box {
  background-color: white;
  border: 1px solid #eee;
  direction: ltr;
}
.challenges-child .box .thumb {
  margin: 10px 10px 0;
  border-bottom: 2px solid #ccc;
}
.challenges-child .box .title {
  display: block;
  width: fit-content;
  color: black;
  font-weight: bold;
  padding: 10px 15px;
  font-size: 17px;
  transition: 0.3s;
}
.challenges-child .box .title:hover {
  color: var(--primary-color);
}
.challenges-child .box .the-rate {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.challenges-child .box .the-rate .lvl {
  display: flex;
}
.challenges-child .box .the-rate .lvl span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #eee;
  margin-left: 4px;
}
.challenges-child .box .the-rate .lvl span.filled {
  background-color: var(--primary-color);
}
.challenges-child .box .the-techs {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.challenges-child .box .solutions {
  padding: 15px;
  border-top: 1px solid #eee;
}
.challenges-child .box .solutions .solutions-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.challenges-child .box .solutions .yes {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 13px;
}
.challenges-child .box .solutions .no {
  font-weight: bold;
  color: #666;
  font-size: 13px;
}
.challenges-child .box .solutions-area .images {
  display: flex;
}
.challenges-child .box .solutions-area img {
  width: 32px;
  height: 32px;
}
.challenges-child .box .solutions-area span.image {
  background-size: cover;
  width: 25px;
  height: 25px;
  display: block;
  filter: grayscale(1);
  opacity: 0.5;
  border-radius: 50%;
  margin-left: 5px;
  transition: 0.3s;
}
.challenges-child .box .solutions-area span.image:hover {
  filter: grayscale(0);
  opacity: 1;
}
.challenges-child .box .solutions-area .python {
  background-image: url("../images/python-solution.png");
}
.challenges-child .box .solutions-area .javascript {
  background-image: url("../images/javascript-solution.png");
}
.challenges-child .box .solutions-area .php {
  background-image: url("../images/php-solution.png");
}
/* End Challenges */
/* Start Courses Category */
.child-courses {
  background-color: #eaf0f2;
}
.child-courses .head-container {
  background-color: #fbfbfb;
}
.child-courses .head {
  direction: ltr;
  padding: 30px 0 15px;
  text-align: center;
}
.child-courses .head h1 {
  margin: 0 0 10px;
  font-weight: bold;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.child-courses .head .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.child-courses .head .info > div {
  flex: 1;
  font-size: 22px;
  font-weight: bold;
}
.child-courses .head .info > div:not(:last-child) {
  border-right: 1px solid #eee;
}
.child-courses .head .info .icon {
  margin-bottom: 20px;
  color: black;
  font-size: 30px;
}
.child-courses .head .info .title {
  display: block;
  color: #777;
  font-size: 16px;
  font-weight: normal;
  margin: 5px 0;
}
.child-courses .head .info > div .time-span {
  font-size: 17px;
}
.child-courses .head .info img {
  width: 80px;
}
.child-courses .course-description {
  border-top: 1px solid #eee;
  padding: 15px 0 0;
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
  direction: rtl;
}
.child-courses .courses-cont {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  direction: ltr !important;
  margin: 20px 0;
  gap: 10px;
}
.child-courses .courses-cont .course {
  background-color: white;
  border: 1px solid #eee;
  position: relative;
}
.child-courses .courses-cont img {
  max-width: 100%;
}
.child-courses .courses-cont .title {
  display: block;
  width: fit-content;
  font-size: 20px;
  color: black;
  font-weight: bold;
  line-height: 1.5;
  padding: 15px;
  transition: 0.3s;
  min-height: 90px;
}
.child-courses .courses-cont .title:hover {
  color: var(--primary-color);
}
.child-courses .courses-cont .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #eee;
}
.child-courses .courses-cont .number {
  font-weight: bold;
  color: var(--primary-color);
}
.child-courses .courses-cont .time {
  background-color: #eee;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
}
/* End Courses Category */
/* Start Problems Solving & Function Implement */
.video-items {
  direction: ltr;
  margin-top: 20px;
}
.video-items .item {
  background-color: white;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
}
.video-items .item .the-head {
  padding: 20px;
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-items .item .the-head h4 {
  margin: 0;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
}
.video-items .item .the-head .time {
  font-weight: bold;
}
.video-items .item h4 span {
  background-color: #eee;
  border-radius: 50%;
  font-size: 12px;
  display: inline-flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
.video-items .item .notes {
  padding: 20px;
}
.video-items .item ul {
  position: relative;
  height: 150px;
  padding-left: 42px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.video-items .item ul::before {
  content: "Problems";
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #e6e6e6;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: bold;
  height: 150px;
  text-align: center;
  border-radius: 0 10px 10px 0;
}
.video-items .item ul li {
  height: calc(100% / 3);
  display: flex;
  align-items: center;
  font-size: 16px;
  padding-left: 20px;
  font-weight: bold;
}
.video-items .item ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.video-items .item ul li a {
  color: black;
  transition: 0.3s;
}
.video-items .item ul li a:hover {
  color: var(--primary-color);
}
.video-items .item .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
  padding: 15px;
}
.video-items .item .info span {
  font-weight: bold;
  color: #004283;
  font-size: 18px;
}
.video-items .item .info a {
  background-color: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s;
}
.video-items .item .info a:hover {
  background-color: var(--primary-color-alt);
}
/* End Problems Solving & Function Implement */

/* Start Generic Page */
.page {
  background-color: #eaf0f2;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: calc(100vh - 147px);
}
.page .head {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  position: relative;
  border: 5px solid #fff;
}
.page .head h1 {
  font-weight: bold;
  margin: 0 0 50px;
  position: relative;
  display: inline-block;
  color: var(--primary-color);
}
.page .head h1:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -20px;
  left: 0;
}
@media (max-width: 767px) {
  .page .head h1 {
    font-size: 28px;
    line-height: 1.6;
  }
}
.page .head > div {
  line-height: 1.8;
  font-size: 18px;
}
.page .page-content {
  margin-top: 30px;
}
.page img {
  max-width: 100%;
}
/* End Generic Page */
/* Start Trainings */
.trainings .lesson-number {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 50px;
  position: absolute;
  left: 20px;
  top: 20px;
  opacity: 0.2;
  line-height: 1;
}
@media (max-width: 767px) {
  .trainings .lesson-number {
    font-size: 20px;
    position: absolute;
    left: 13px;
    top: 13px;
    opacity: 0.4;
  }
}
.trainings .tech-used span {
  display: inline-block;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  padding: 6px 10px 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.trainings .tech-used span.html {
  background-color: #009688;
}
.trainings .tech-used span.css {
  background-color: #8c7ae6;
}
.trainings .tech-used span.php {
  background-color: #4f5b93;
}
.trainings .tech-used span.js {
  background-color: #f7df1e;
  color: #000;
}
.trainings .tech-used span.python {
  background-color: #4584b6;
}
.trainings .support-links a {
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  background-color: #eee;
  padding: 2px 10px;
  border-radius: 4px;
  color: var(--primary-color);
}
.trainings .task-requirements {
  counter-reset: steps;
}
.trainings .task-requirements ul {
  list-style: none;
}
.trainings .task-requirements ul li {
  padding: 10px;
  margin-bottom: 15px;
  position: relative;
  background-color: #f5f5f5;
}
.trainings .task-requirements ul li:before {
  counter-increment: steps;
  content: counter(steps);
  background-color: #009688;
  color: #fff;
  width: 35px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  height: 35px;
  margin-left: 15px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%;
}
.trainings .task-requirements ul li span {
  font-weight: bold;
  color: #f44336;
}
.trainings .single-content img {
  border: none;
}
/* End Trainings */
/* Start Assignments */
.solutions-p a {
  font-weight: bold;
  color: #e91e63;
}
.solution-box h2 {
  margin: 20px auto !important;
  background-color: var(--primary-color) !important;
  border-right: none !important;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  border-radius: 6px;
}
.solution-box .guest {
  padding: 20px;
  background-color: #eee;
  font-weight: bold;
}
/* End Assignments */

/* Start Framework */
.flex {
  display: flex;
}
.separator {
  height: 6px;
  background: url(data:image/png;base64,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)
    repeat-x 0 0;
  border: 0;
}
.comparison-table {
  width: 100%;
  margin: 15px 0;
}
.comparison-table thead td {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}
.comparison-table td {
  padding: 12px;
  vertical-align: middle;
  border: 1px solid #ddd;
  font-size: 15px;
}
.data-table {
  width: 100%;
  margin: 15px 0;
}
.data-table tr td:first-child {
  background-color: #eee;
  text-align: center;
  width: 150px;
}
@media (max-width: 767px) {
  .data-table tr td:first-child {
    width: 100px;
  }
}
.data-table tr td {
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}
.data-table tr td img {
  max-width: 100%;
}
.symbol-table thead td {
  text-align: center;
  font-weight: bold;
}
.symbol-table tbody tr td:last-child {
  direction: rtl;
  text-align: right;
}
.file-name {
  background-color: #eee;
  padding: 15px;
  margin: 15px 0 0;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
}
/* End Framework */
/* Start Main Page Title */
.academy-page {
  background-color: #eaf0f2;
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: calc(100vh - 504px);
}
.academy-page .page-head {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  position: relative;
  border: 5px solid #fff;
}
.academy-page .page-head h1 {
  font-weight: bold;
  margin: 0 auto 50px;
  position: relative;
  display: block;
  width: fit-content;
}
.academy-page .page-head h1:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: black;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.academy-page .page-head .description {
  line-height: 2;
  font-size: 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .academy-page .page-head .description {
    max-width: 80%;
  }
}
.academy-page .page-head .description a {
  font-weight: bold;
  color: var(--primary-color);
}
.academy-page .page-content {
  padding: 20px;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 4px;
}
.academy-page .page-content-simple {
  margin-top: 20px;
}
/* End Main Page Title */
/* Start Header */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-header {
    margin: 25px 0 15px;
    display: block;
    text-align: center;
    float: none !important;
  }
  .home-nav .navbar-header,
  .navbar-inverse .navbar-header {
    display: none;
  }
  .navbar-brand {
    float: none !important;
    text-align: center;
  }
  .navbar-brand img {
    display: inline-block;
  }
  .navbar-right {
    float: none !important;
    text-align: center;
  }
  .navbar-nav > li {
    float: none !important;
    display: inline-block;
  }
  .nav > li > a {
    padding: 20px 12px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .navbar-header {
    height: 76px;
  }
  .navbar-toggle {
    margin: 20px;
  }
}
@media (min-width: 768px) {
  .navbar-inverse {
    height: 60px;
  }
  .navbar-inverse .navbar-brand {
    padding: 8px;
    margin: 0;
  }
}
/* End Header */
/* Start Courses Page */
.courses-child .lesson-box .lesson-name {
  min-height: 90px;
}
.courses-child .lesson-box .has-notes:hover span {
  display: block;
}
.courses-child .lesson-box .has-notes span {
  display: none;
  position: absolute;
  left: 50%;
  top: -68px;
  background-color: #000;
  color: #fff;
  width: 260px;
  text-align: center;
  padding: 15px 5px;
  z-index: 1000;
  font-weight: bold;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.courses-child .lesson-box .has-notes span::after {
  content: "";
  border-style: solid;
  border-width: 10px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -20px;
}
.courses-child .lesson-box .lessons-buttons .has-notes,
.courses-child .lesson-box .lessons-buttons a {
  font-size: 15px;
  background-color: #e7e7e7;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: black;
  border-radius: 50%;
}
/* End Courses Page */
/* Start Premium Page */
@media (max-width: 767px) {
  .premium-page .feature {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* End Premium Page */
/* Start Video */
.wp-video {
  margin: 20px auto;
}
/* End Video */
/* Start Study Plan Page */
.the-study.passed .content {
  margin-right: 210px;
}
.the-study.passed .side {
  position: fixed;
  top: 0;
}
.the-study .side ul li {
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  padding: 10px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  width: 25%;
}
.the-study .side ul li.active {
  color: var(--primary-color);
}
.the-study .content {
  flex: 1;
}
.the-study .content .week {
  background-color: #fff;
  padding: 55px 15px 0;
  position: relative;
}
.the-study .content .week .title {
  position: absolute;
  background-color: var(--primary-color);
  margin: 0;
  top: 0;
  right: 0;
  color: white;
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
}
.the-study .content .week .toggler.open {
  transform: rotate(180deg);
}
.the-study .content .week .step:first-child {
  margin-top: 20px;
}
.the-study .content .week .step {
  background-color: #fafafa;
  padding: 20px;
  position: relative;
}
.the-study .content .week .step ul {
  direction: ltr;
  font-size: 17px;
  line-height: 2;
}
.the-study .content .week .step ul li a {
  font-weight: bold;
  color: #e91e63;
}
@media (max-width: 767px) {
  .the-study {
    display: block;
  }
  .the-study.passed .content {
    margin: 0;
  }
  .the-study .side {
    display: none;
  }
}
/* End Study Plan Page */
/* Start Life Goals */
.goals-container .stats-box span {
  font-weight: bold;
  font-size: 16px;
}
.goals-container .the-progress {
  position: relative;
  margin-top: 18px;
}
.goals-container .the-progress .the-handle {
  position: absolute;
  left: 0;
  top: -7px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  padding: 3px 4px;
  border-radius: 4px;
  font-size: 12px;
  width: 44px;
  text-align: center;
  transition: 0.3s ease-in-out;
  z-index: 2;
}
.goals-container .the-progress .the-background {
  display: block;
  background-color: #fff;
  height: 10px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.goals-container .the-progress .the-background > span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}
.goals-container .items span {
  background-color: #333;
  padding: 3px 10px 2px;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  display: block;
  width: fit-content;
}
.goals-container .items span:not(:last-child) {
  margin-bottom: 10px;
}
.goals-container .items span.done {
  background-color: var(--primary-color);
}
/* End Life Goals */
/* Start Developers Tools */
.tools .info {
  border-top: 1px solid #e3e3e3;
}
/* End Developers Tools */
/* Start Framework */
.main-grid {
  display: grid;
  direction: ltr;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
}
.note {
  background-color: rgb(0 117 255 / 8%);
  padding: 15px;
  margin: 15px 0;
  border-right: 4px solid var(--primary-color);
  font-weight: bold;
  font-size: 15px;
  color: var(--primary-color);
}
/* End Framework */
/* Start Framework */
.grid-3 {
  display: grid;
  direction: ltr;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 10px;
}
.grid-3 .box {
  background-color: #fff;
  border: 1px solid #ececec;
}
.grid-3 .box img {
  padding: 10px 10px 0 10px;
}
.grid-3 .box .link {
  display: block;
  padding: 10px;
  font-size: 15px;
  line-height: 1.8;
  transition: 0.2s;
  position: relative;
  font-weight: bold;
  color: #4d4d4d;
}
.grid-3 .box .link:hover {
  color: var(--primary-color);
}
.video-box {
  text-align: center;
}
.video-box iframe {
  border: 2px solid #ddd;
  padding: 5px;
}
.video-url {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  display: block;
  width: fit-content;
  font-weight: bold;
  margin: 20px auto;
  border-radius: 6px;
  transition: 0.2s;
}
.video-url:hover,
.video-url:active {
  background-color: #c90a4b;
  color: white;
}
.main-input,
.main-output {
  position: relative;
  padding: 25px 20px 20px;
  background-color: #eee;
  margin: 20px 0;
  font-size: 20px;
  direction: ltr;
  text-align: left;
}
.main-input:before,
.main-output:before {
  position: absolute;
  left: 0;
  top: -10px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 4px 8px;
  line-height: 1;
  font-size: 14px;
}
.main-input:before {
  content: "Input";
}
.main-output:before {
  content: "Output";
}
.main-layout {
  background-color: #eaf0f2;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: calc(100vh - 147px);
}
.main-layout .head {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  position: relative;
  border: 5px solid #fff;
  margin-bottom: 30px;
}
.main-layout .head h1 {
  font-weight: bold;
  margin: 0 0 50px;
  position: relative;
  display: inline-block;
  color: var(--primary-color);
}
.main-layout .head h1:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -20px;
  left: 0;
}
.main-layout .head div {
  line-height: 1.8;
  font-size: 18px;
}
.flex {
  display: flex;
}
.labels-holder {
  display: flex;
}
span.main-label {
  text-transform: capitalize;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
}
.main-label.javascript {
  background-color: #f7df1e;
  color: black;
}
.main-label.python {
  background-color: #4584b6;
  color: white;
}
.main-label.php {
  background-color: #99cc99;
  color: white;
}
.solutions-count {
  background-color: #e7e7e7;
  color: #000;
  margin-left: 5px;
}
.main-panel {
  border-bottom: 3px solid #4d4d4e;
  border-top: 3px solid #4d4d4e;
  background-color: white;
  margin: 20px 0;
  overflow: hidden;
}
.main-panel > h4 {
  padding: 15px;
  font-weight: bold;
  margin: 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.main-panel .content {
  padding: 15px;
}
.main-panel .content .ad-title {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
}
.main-panel .content img {
  max-width: 100% !important;
}
.main-panel .content .copoun {
  margin-top: 15px;
  text-align: center;
  line-height: 2;
}
.main-panel .content .copoun span {
  font-weight: bold;
  color: indianred;
}
.main-notice {
  padding: 15px;
  border: 1px solid #ddd;
  border-right: 5px solid #2196f3;
  font-weight: bold;
}
/* End Framework */
/* Start Master Topics */
@media (min-width: 992px) {
  .main-topics {
    display: flex;
  }
  .main-topics .topics-holder {
    width: calc(70% - 20px);
    margin-left: 20px;
  }
  .main-topics .sidebar {
    width: 30%;
  }
}
.topics-holder .box:not(:last-child) {
  margin-bottom: 20px;
}
.topics-holder .box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.topics-holder .box .data {
  background-color: #fafafa;
}
.main-widget {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
.main-widget > h4 {
  font-weight: bold;
  margin: 0 0 10px;
  border-bottom: 1px solid #747474;
  padding-bottom: 15px;
  font-size: 16px;
}
.main-widget .content ul li {
  padding: 10px 0;
}
.main-widget .content ul li:not(:last-child) {
  border-bottom: 2px solid #f0f0f0;
}
/* End Master Topics */
/* Start Master Table */
.master-table {
  background-color: #fff;
  padding: 20px;
  font-size: 18px;
  direction: ltr;
}
.master-table table {
  width: 100%;
}
.master-table table td {
  padding: 15px;
  font-size: 16px;
  border: 1px solid #e1e1e1;
}
/* End Master Table */
/* Start Supporters */
.join .life {
  position: relative;
  background-color: #fff;
  padding: 25px 15px 15px;
  min-width: 280px;
  max-width: 100%;
  border: 2px solid #ff9800;
  text-align: center;
}
.join .life::before {
  font: normal normal normal 24px/1 "Material Design Icons Light";
  content: "\F2D1";
  position: absolute;
  left: 10px;
  top: 10px;
  color: #ff9800;
}
.join .life p span:first-child {
  font-size: 40px;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.join .plan-links {
  display: flex;
  justify-content: space-evenly;
}
.join .plan-links a {
  background-color: #929292;
  color: white;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 20px;
}
.join .plan-links a.features {
  background-color: var(--primary-color);
}
.join .plan-links a.supporters {
  background-color: #009688;
}
.join .separator {
  background: #eaf0f2;
}
.join .plan-steps li {
  padding: 15px;
  font-size: 16px;
  counter-increment: nums;
}
.join .plan-steps li::before {
  content: counter(nums);
  background-color: var(--primary-color);
  width: 30px;
  height: 30px;
  display: inline-flex;
  color: white;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 50%;
  margin-left: 10px;
}
.join .plan-steps a {
  font-weight: bold;
  color: var(--primary-color);
}
/* End Supporters */
/* Start Members List */
.members-head {
  background-color: white;
  padding: 15px 0;
  margin-bottom: 20px;
}
.members-head .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.members-head .container::before,
.members-head .container::after {
  display: none;
}
.members-head a {
  background-color: var(--half-white);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: bold;
  padding: 15px;
  border-radius: 6px;
}
.members-head span {
  font-size: 16px;
  font-weight: bold;
}
.members-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  direction: ltr;
  margin-top: 20px !important;
}
.members-list li {
  background-color: white;
  padding: 20px 15px 15px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.members-list li img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  padding: 4px;
}
.members-list li h4 {
  font-weight: bold;
  color: indianred;
}
.members-list li .info {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
/* End Members List */
/* Start Post Classes */
.q-head {
  padding: 20px 15px;
  text-align: center;
  background-color: #eee;
  font-weight: bold;
  margin: 20px auto;
  font-size: 22px;
}
.q-img {
  display: block;
  margin: 15px auto;
  padding: 10px;
  border: 1px solid #eee;
  background-color: white;
  box-shadow: 0 0 15px #e5e5e5;
}
/* End Post Classes */
.page-inside {
  padding: 20px;
  background-color: white;
  margin-top: 20px;
  font-size: 18px;
  line-height: 2;
}
.page-inside .text {
  background-color: #f7f5f5;
  padding: 20px;
  border-bottom: 2px solid #ccc;
}
.page-inside .text span {
  font-weight: bold;
}
