@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,700;1,800&display=swap");

body {
  overflow: hidden;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  background: #f4f6f6;
  color: #202020;
  font-family: "Open Sans", sans-serif;
  background-image: url(../images/background-pattern.jpg);
  background-repeat: repeat;
}

body.login-page {
  background-image: url(../images/background-login.jpg);
}

.login-box {
  -webkit-box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.5);
}

a,
a:hover,
a:visited {
  color: #202020;
}

h1,
h2,
h3 {
  font-weight: normal;
  font-weight: 800;
}

nav {
  width: 520px;
}

main {
  overflow-y: scroll;
}

@media (max-width: 1100px) {
  nav {
    width: 500px;
    display: none;
  }
}

.no-underline {
  text-decoration: none !important;
}

.nav-buttons a {
  background-color: #7057a5;
  background-image: url(../images/nav-pattern.png);
  background-repeat: repeat-y;
  background-position: center right;
  display: table;
  padding: 20px;
  color: #fff;
  text-decoration: none !important;
  width: 100%;
  font-size: 14px;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-buttons a {
    font-size: 12px;
    padding-left: 10px;
  }
}

.nav-buttons a:hover {
  background: #664f96;
  border-right: 4px solid #c9caca;
}

.nav-buttons a.active,
.nav-buttons a.active:hover {
  background: #fff;
  color: #664f96;
  border-right: none;
}

.nav-buttons a i {
  float: right;
  opacity: 0.6;
  vertical-align: middle;
  margin-top: 10px;
}

.nav-buttons a span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #664f96;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .nav-buttons a span {
    width: 20px;
    height: 20px;
    background-size: 50%;
  }
}

.nav-buttons a div {
  float: left;
  display: inline-block;
  vertical-align: middle;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .nav-buttons a div {
    padding-top: 3px;
  }
  .nav-buttons a i {
    margin-top: 3px;
  }
}

.nav-buttons a.active span,
.nav-buttons a.active:hover span {
  background-color: #dee0e0;
}

.nav-buttons a.active i {
  color: #7057a5;
  opacity: 1;
}

.nav-buttons a.active i::before {
  content: "\2212";
}

.nav-buttons a:nth-child(1) span {
  background-image: url(../images/nav-written.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.nav-buttons a:nth-child(2) span {
  background-image: url(../images/nav-verbal.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.nav-buttons a:nth-child(3) span {
  background-image: url(../images/nav-ideas.png);
  background-repeat: no-repeat;
  background-position: 10px center;
}

@media (max-width: 900px) {
  .nav-buttons a:nth-child(3) span {
    background-position: 6.5px center;
  }
}

.nav-buttons a:nth-child(4) span {
  background-image: url(../images/nav-calendar.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.nav-buttons a:nth-child(5) span {
  background-image: url(../images/nav-profile.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.nav-buttons a:nth-child(6) span {
  background-image: url(../images/test-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px;
}

.small-padding {
  padding: 5px !important;
}

.no-hover:hover {
  background: transparent !important;
  border-right: 0px solid transparent !important;
}

.nav-buttons a:nth-child(1).active span {
  background-image: url(../images/nav-written-active.png);
}

.nav-buttons a:nth-child(2).active span {
  background-image: url(../images/nav-verbal-active.png);
}

.nav-buttons a:nth-child(3).active span {
  background-image: url(../images/nav-ideas-active.png);
}

.nav-buttons a:nth-child(4).active span {
  background-image: url(../images/nav-calendar-active.png);
}

.nav-buttons a:nth-child(5).active span {
  background-image: url(../images/nav-profile-active.png);
}

header {
  -webkit-box-shadow: 0px 3px 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 3px 12px -5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 12px -5px rgba(0, 0, 0, 0.3);
}

header a.nav-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.2)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.head-avatar.online {
  position: relative;
}

.head-avatar.online::before {
  position: absolute;
  content: "";
  right: 14px;
  top: -3px;
  width: 12px;
  height: 12px;
  background: #7dc243;
  border-radius: 50%;
  border: 3px solid #fff;
}

.head-search-form {
  min-width: 250px;
  margin-top: -2px;
  max-width: 100%;
}

@media (max-width: 1100px) {
  .head-search-form {
    margin: 0 0 0 20px;
  }
}

.head-search-form .search-input {
  background: transparent;
  border: 1px solid #7c7c7c;
  border-radius: 20px;
  width: 100%;
  padding: 7px 15px;
  font-size: 13px;
  outline: none;
}

.head-search-form .search-btn {
  border: none;
  background: transparent;
  outline: none;
  margin-left: -35px;
}

.head-btn {
  position: relative;
}

.head-btn span {
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 11px;
  color: #fff;
  background: #53bb6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  right: -11px;
  top: 0;
}

.head-btn:nth-child(2) span {
  background: #f26a28;
}

.home-statistic {
  background: #fff;
  padding: 15px;
  border-left: 10px solid #28ace2;
}

.home-profile {
  background: #fff;
  padding: 15px;
  border-left: 10px solid #7057a5;
}

.last-filled-lessons {
  background: #fff;
  padding: 15px;
  border-left: 10px solid #f26a28;
}

.last-filled-lessons-2 {
  background: #fff;
  padding: 15px;
  border-left: 10px solid #bf218e;
}

.categories-list {
  background: #fff;
  padding: 15px;
  border-left: 10px solid #f26a28;
}

.progress-circle {
  width: 150px;
  height: 150px;
  background: none;
  position: relative;
}

.progress-circle::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 15px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-circle > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress-circle .progress-left {
  left: 0;
}

.progress-circle .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 15px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress-circle .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress-circle .progress-right {
  right: 0;
}

.progress-circle .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress-circle .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}

.form-control {
  background: #f2f2f2 !important;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
}

.custom-checkbox .custom-control-label {
  padding-left: 35px;
}

.custom-checkbox .custom-control-label::before {
  top: -0.25rem;
  left: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: #f2f2f2;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
}

.custom-control.custom-checkbox {
  min-height: 2rem;
  padding-left: 0.5rem;
}

.custom-checkbox
  .custom-control-input:not(:disabled):active
  ~ .custom-control-label::before {
  background: #dadada;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background: #f2f2f2;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url(../images/icon-checkmark.png);
}

.custom-checkbox .custom-control-label::after {
  position: absolute;
  top: -1.2rem;
  left: -1.5rem;
  width: 4rem;
  height: 4rem;
}

.btn-theme {
  -webkit-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.48);
}

.img-avatar-big {
  border-radius: 50%;
  -webkit-box-shadow: inset 5px 5px 16px -12px rgba(0, 0, 0, 0.78);
  -moz-box-shadow: inset 5px 5px 16px -12px rgba(0, 0, 0, 0.78);
  box-shadow: inset 5px 5px 16px -12px rgba(0, 0, 0, 0.78);
  max-height: 200px;
}

.filled-lesson-block {
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 30px 50px;
  border-radius: 30px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

.pagination-theme .page-link {
  margin: 0 10px;
  border-radius: 50%;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.7);
}

.pagination-theme .page-item:first-child .page-link {
  border-radius: 20px;
  padding: 10px 35px;
}

.pagination-theme .page-item:last-child .page-link {
  border-radius: 20px;
  padding: 10px 35px;
}

.pagination-orange .page-item.active .page-link {
  background: #f26a28;
  border-color: #f26a28;
}

.pagination-pink .page-item.active .page-link {
  background: #bf218e;
  border-color: #bf218e;
}

.categories-list-item {
  position: relative;
  -webkit-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  z-index: 1;
  margin-bottom: 50px;
  outline: 3px solid #fff;
}

.categories-list-item:hover:after {
  position: absolute;
  z-index: 2;
  content: "";
  background: rgba(38, 163, 214, 0.7);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
}

.categories-list-item:hover:before {
  position: absolute;
  z-index: 3;
  content: "Megnyitás";
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: 1px solid rgba(0, 0, 0, 0.7);
  padding: 4px 20px;
  font-size: 12px;
  left: 50%;
  top: 50%;
  margin-top: -15px;
  margin-left: -50px;
  border-radius: 5px;
}

.categories-list-item h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 15px;
  margin: 0;
  -webkit-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 1px 1px 5px -2px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

@media (max-width: 992px) {
  .categories-list-item h4 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .categories-list-item h4 {
    font-size: 15px;
  }
}

@media (max-width: 499px) {
  .categories-list-item h4 {
    font-size: 13px;
  }
}

.categories-list-item:hover h4 {
  color: #000;
  background: #fff;
}

.categories-list-item span {
  position: absolute;
  top: -3px;
  right: -3px;
  padding: 0 0 10px 10px;
  background: #fff;
  border-bottom-left-radius: 25px;
  z-index: 3;
}

.category-list-blue h4 {
  background: #26a3d6;
}
.category-list-blue:hover {
  outline: 3px solid #26a3d6;
  border-radius: 3px;
}
.category-list-blue:hover:after {
  background: #26a3d6;
  opacity: 0.7;
}
.category-list-blue:hover h4 {
  color: #26a3d6;
}

.category-list-lightblue h4 {
  background: #28ace2;
}
.category-list-lightblue:hover {
  outline: 3px solid #28ace2;
  border-radius: 3px;
}
.category-list-lightblue:hover:after {
  background: #28ace2;
  opacity: 0.7;
}
.category-list-lightblue:hover h4 {
  color: #28ace2;
}

.category-list-pink h4 {
  background: #bf218e;
}
.category-list-pink:hover {
  outline: 3px solid #bf218e;
  border-radius: 3px;
}
.category-list-pink:hover:after {
  background: #bf218e;
  opacity: 0.7;
}
.category-list-pink:hover h4 {
  color: #bf218e;
}

.category-list-orange h4 {
  background: #f26a28;
}
.category-list-orange:hover {
  outline: 3px solid #f26a28;
  border-radius: 3px;
}
.category-list-orange:hover:after {
  background: #f26a28;
  opacity: 0.7;
}
.category-list-orange:hover h4 {
  color: #f26a28;
}

.category-list-darkblue h4 {
  background: #2185c7;
}
.category-list-darkblue:hover {
  outline: 3px solid #2185c7;
  border-radius: 3px;
}
.category-list-darkblue:hover:after {
  background: #2185c7;
  opacity: 0.7;
}
.category-list-darkblue:hover h4 {
  color: #2185c7;
}

.category-list-purple h4 {
  background: #7057a5;
}
.category-list-purple:hover {
  outline: 3px solid #7057a5;
  border-radius: 3px;
}
.category-list-purple:hover:after {
  background: #7057a5;
  opacity: 0.7;
}
.category-list-purple:hover h4 {
  color: #7057a5;
}

.category-list-green h4 {
  background: #53bb6b;
}
.category-list-green:hover {
  outline: 3px solid #53bb6b;
  border-radius: 3px;
}
.category-list-green:hover:after {
  background: #53bb6b;
  opacity: 0.7;
}
.category-list-green:hover h4 {
  color: #53bb6b;
}

.login-form-control {
  width: 200px;
  background: transparent !important;
  -webkit-box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #ca47a1;
  border-right: 1px solid #ca47a1;
  color: #fff !important;
}

.login-page .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
}

.login-page .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.login-page .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.btn-login {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff !important;
  -webkit-box-shadow: 10px 10px 17px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 10px 10px 17px -8px rgba(0, 0, 0, 0.3);
  box-shadow: 10px 10px 17px -8px rgba(0, 0, 0, 0.3);
  padding-right: 30px;
  border-radius: 0;
}

.btn-login:hover {
  color: #bf218e !important;
  background: #fff;
}

.news-box .datestamp {
  font-weight: bold;
  color: #fff;
  background: #7057a5;
  display: inline-block;
  padding: 10px 5px;
  font-size: 12px;
}

@media (min-width: 992px) {
  .news-box .datestamp {
    padding: 15px 10px;
    font-size: 16px;
  }
}

.news-box h4 {
  font-weight: bold;
  color: #7057a5;
}

.news-box p {
  color: #444;
}

news-box a.more-link {
  color: #fff;
  display: inline-block;
}

.news-box a.more-link:after {
  content: " ›";
  color: #fff;
}

table.event-calendar {
  color: #fff;
  font-size: 16px;
  width: 100%;
}

table.event-calendar a {
  color: #fff;
}

table.event-calendar thead tr:first-child th {
  background: #7057a5;
  padding: 8px;
  font-weight: 600;
}

table.event-calendar thead tr:last-child th {
  font-size: 16px;
  background: #967dcb;
  text-align: center;
  width: 14.28%;
  padding: 5px;
  font-weight: normal;
}

table.event-calendar tbody tr td {
  background-color: #8d79b7;
  width: 14.28%;
}

table.event-calendar tbody tr td a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  text-decoration: none !important;
}

table.event-calendar tbody tr td .flagged {
  background-color: #8d4f6b;
}

table.event-calendar tbody tr td .active {
  background-color: #e6d48b;
}

.ElementIsLoading,
.ElementIsLoadingYellow {
  position: relative;
}

.ElementIsLoading::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.92);
  background-image: url(../images/ajax-loader-big.gif);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 10;
}

.select2-container .select2-selection--multiple {
  min-height: 38px !important;
}

#IdeasFilterer .select2-container--default .select2-selection--multiple {
  border-radius: 0 !important;
}

#IdeasFilterer
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  line-height: 24px;
}

@media (min-width: 1400px) {
  .collapseHomeStatOpener {
    display: none;
  }
  #collapseHomeStat {
    display: block !important;
  }
}
