/* imports */

@font-face {
    font-family: Vazir;
    src: url(/newAssets/fonts/Vazir.ttf);
}

/* commom */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box!important;
    font-family: Vazir, sans-serif;
    scrollbar-color: #40c0c3 lightgray;
    scrollbar-width: thin;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

select:focus {
    box-shadow: none;
    outline: none;
}

.form-select:focus {
    box-shadow: none!important;
    outline: none!important;
    border-color: #ccae7c;
}

.transition__custom {
    transition: all .2s linear;
}

#Progress {
    direction: ltr;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10000;
}

#Bar {
    width: 0%;
    height: 2.5px;
    background-color: #40c0c3;
    z-index: 10000;
}

audio::-webkit-media-controls-panel {
    border: none;
    outline: none;
    border-radius: 0;
    background-color: #ccae7c;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background-color: lightgray;
}

::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: #40c0c3;
}


body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background-color: lightgray;
}

body::-webkit-scrollbar-thumb {
    background-color: #40c0c3;
}

.custom__simpleLink{
    color: white;
    padding: 10px 5px;
    transition: all .2s linear;

}

.custom__simpleLink:hover{
    text-decoration: underline;
}
.custom__link{
    color: black;
    padding: 10px 20px;
    transition: all .2s linear;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.custom__link:hover{
    text-decoration: underline;
    color: lightgray;
}


body {
    overflow-x: hidden;
}

.common__return {
    background-color: #40c0c3;
    border-radius: 5px;
    padding: 5px 10px;
    margin: auto;
    width: max-content;
    color: white;
    margin-top: 20px;
}

.common__return:hover {
    color: white;
}

.page__404 {
    height: 100vh;
    background-color: #ccae7c;
}

.page__404__return {
    background-color: #40c0c3;
    border-radius: 10px;
    padding: 10px 20px;
    color: black;
}

.page__404__return:hover {
    color: black;
}

.brown__borderTop {
    border-top: 10px solid #ccae7c;
}

button.nav-link {
    color: black;
    font-size: 12px!important;
}

button.nav-link:hover {
    color: #ccae7c;
}

.custom__red {
    color: red;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #40c0c3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.custom__tooltip {
    position: relative;
    display: inline-block;
}

.custom__tooltip .tooltiptext {
    width: max-content;
    background-color: #ccae7c;
    color: #fff;
    text-align: center;
    padding: 7px 15px;
    border-radius: 6px;
    position: absolute;
    bottom: 100%;
    margin-bottom: 5px;
    opacity: 0;
    z-index: 1110;
    transition: all .2s linear;
}

.custom__tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #ccae7c transparent transparent transparent;
}

.custom__tooltip:hover .tooltiptext {
    opacity: 1;
}

.common__tags__continue {
    background-color: #ccae7c;
    padding: 6px 16px;
    color: black;
    transition: all .2s linear;
}

.common__tags__continue:hover {
    color: white;
}

[x-cloak] {
    display: none!important;
}


/* top button */

.topButton {
    position: fixed;
    bottom: 20px;
    left: -50px;
    z-index: 1002;
    border: none;
    outline: none;
    background-color: #92d4cf;
    color: white;
    cursor: pointer;
    padding: 4px 14px;
    border-radius: 10px;
    font-size: 22px;
    transition: all .2s linear;
}

.topButton--active {
    left: 20px;
}


/* header */

.header {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: max-content;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1020;  
}

.header__fadeIn{
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-name: custom__fade__in;
}

@keyframes custom__fade__in{
    from{
        opacity: 0;
        height: 0;
    }

    to{
        opacity: 1;
        height: 70px;
    }
}


.header__logo {
    display: flex;
    justify-content: center;
}

.header__main {
    min-height: 50px;
    padding: 0 5px;
    
}

.header__search {
    position: relative;
    font-size: 14px;
}

.header__nav {
    height: 100%;
}

.header__selectLanguage {
    position: relative;
    height: 35px;
    width: 120px;
    margin-bottom: 5px;
    border-radius: 2px;
    font-size: 16px;
    color: white;
    background-color: #40c0c3;
    cursor: pointer;
}

.header__selectLanguage__body {
    position: absolute;
    width: 100%;
    height: max-content;
    background-color: #40c0c3;
    top: 35px;
    z-index: 1009;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    border-top: 1px solid black;
}

.header__selectLanguage__Link {
    color: white;
    transition: all .2s linear;
}

.header__selectLanguage__Link:hover {
    color: black;
}

.header__search__input {
    font-size: 14px;
    padding: 5px;
    padding-right: 15px;
    padding-left: 30px;
    outline: none;
    border: 1px solid #e8dccc;
    transition: all .2s linear;
    border-radius: 2px;
    background-color: #40c0c3;
    margin-bottom: 5px;
    color: white;
}
.header__search__input::placeholder{
    color: white;
}

.header__search__input:focus {
    border-color: #40c0c3;
    background-color: white;
    color: black;
}

.header__search__input:focus+ .header__search__icon{
    color: black!important;
}


.header__search__icon {
    position: absolute;
    top: 6px;
    left: 12px;
    font-size: 16px;
    transition: all .2s linear;
    color: white;
    border: none;
    outline: none;
    background-color: transparent;
}

.header__search__sm--button {
    padding: 5px 10px;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color: #92d4cf;
}

.header__search__sm {
    position: relative;
}

.header__search__offcanvas {
    position: absolute;
    width: 200px;
    height: 50px;
    background-color: #40c0c3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    top: 34px;
    right: 20px;
    z-index: 1002;
}

.header__search__icon:hover {
    color: black;
}

.header__nav__list {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 12px;
    height: 100%;
    margin: 0!important;
}

.header__nav__nav {
    height: 100%;
    display: flex;
    margin-bottom: 3px;
}

.header__nav__item {
    height: 100%;
}



.header__nav__link:hover {
    color: #40c0c3;
}

.header__nav__link {
    height: 100%;
    width: 100%;
    color: black;
    padding: 10px 10px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    border-radius: 3px;
}

.header__nav__link--active {
    color: white!important;
    background-color: #40c0c3;
}



.header__nav__item--haveDropdown {
    position: relative;
}

.header__dropdown {
    position: absolute;
    width: 160px;
    top: 40px;
    font-size: 14px;
    background-color: #40c0c3;
    z-index: 1002;
}

.header__dropdowns__link {
    color: white;
    padding: 10px 15px;
    transition: all .2s linear;
    display: flex;
    flex: 1;
}

.header__dropdowns__link:hover {
    color: black;
}

.header__dropdown__item {
    width: 100%
}

.header__dropdown__list {
    margin: 0!important;
    padding: 0!important;
    width: 100%;
}

.header__offcanvas__body {
    width: 250px!important;
}

.header__offcanvas__button {
    color: white;
    background-color: #40c0c3;
}

.header__offcanvas__list {
    padding: 20px 10px;
    margin: 0!important;
}

.header__offcanvas__item {
    width: 100%;
    height: 40px;
    padding: 0 10px;
}

.header__offcanvas__item:hover {
    background-color: #ccae7c;
}

.header__offcanvas__link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    color: black;
}

.header__offcanvas__link:hover {
    color: white!important;
}

.header__dropdown__offcanvas {
    position: absolute!important;
    left: -150px!important;
    z-index: 1001;
}

.header__search__checkboxContainer {
    width: 100%;
    height: max-content;
    background-color: #40c0c3;
    position: absolute;
    z-index: 1005;
    top: 33px;
    padding-bottom: 10px;
}

.header__search__checkbox__item:checked {
    background-color: #40c0c3;
}

.header__search__checkbox__title {
    font-size: 18px;
}


/* footer */

.footer__copyRight {
    background-color: #333;
    padding: 10px 20px;
    min-height: 60px;
}

.footer__container {
    padding: 40px 10px;
    min-height: 300px;
    background-color: gray;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer__item--textBold {
    color: yellow!important;
}

.footer__item {
    height: 100%;
    min-height: 380px;
    display: flex;
    padding: 10px 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    border-top: 1px solid lightgrey;
}

.footer__contact {
    border-right: none;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__item__header {
    margin-bottom: 20px;
}

.footer__socialMedia {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__copyRight__text {
    color: white;
    font-size: 14px;
}


/* zero */

.zero__content {
    height: 50vh;
}

.zero__content__image {
    width: 85%;
}

.zero__image {
    max-height: 90vh;
}

.zero__language {
    width: 100px;
    height: 40px;
    background-image: url("/newAssets/images/languageItem.png");
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zero__language__link {
    color: #49494a;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transition: all .2s linear;
}

.zero__language__link:hover {
    color: #ccae7c;
}


/* main */

.main__header {
    min-height: 300px;
}

.main__lessons {
    min-height: 330px;
}

.main__lessons__catrgories {
    height: 150px;
}

.main__lessons__chapters {
    height: max-content;
    padding: 10px 20px;
}

.main__chapters__item {
    padding: 0!important;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.main__chapters__link {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: black;
    transition: all .2s linear;
    padding: 10px 5px;
    margin: 0!important;
}

.main__chapters__link:hover {
    color: white!important;
    background-color: #837e71;
}

.main__chapters__link:hover .main__chapters__date {
    color: white;
}

.main__chapters__list {
    padding: 0!important;
    margin: 0!important;
}

.main__chapters__name {
    margin-bottom: 0!important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main__chapters__date {
    margin-bottom: 0!important;
    color: #d9c48a;
}

.main__chapters__continue {
    padding: 5px 35px;
    background-color: #efe5d9;
    border-radius: 5px;
    color: black;
    transition: all .2s linear;
    margin-bottom: 10px;
}

.main__chapters__continue:hover {
    color: initial;
}

.main__chapters__icon {
    font-size: 5px;
    margin-left: 5px;
}

.main__categories__image {
    width: 50px;
}

.main__categories__item {
    height: 100%;
    color: gray;
    font-size: 12px;
    font-weight: 600px;
    border-bottom: 1px solid lightgray;
    cursor: pointer;
    z-index: 1002;
    transition: all .2s linear;
}

.main__categories__item:not(#main__category__4) {
    border-left: 1px solid lightgray;
}

.main__categories__item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: initial;
}

.main__categories__item--active {
    background-image: url('/newAssets/images/lessonBack.png');
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.main__categories__number {
    color: #92d4cf;
    font-size: 14px;
}

.main__questions__seprator {
    background-image: url("/newAssets/images/askquestion.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 50px;
}

.main__questions__sepratorContainer {
    height: 20px;
}

.main__questions__seprator {
    background-image: url('/newAssets/images/askquestion.png');
    background-position: center;
    background-size: contain;
    font-size: 20px;
}

.main__questions__title {
    background-image: url("/newAssets/images/articles.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 40px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.main__apps__item {
    padding: 20px 0;
    color: black;
    transition: all .2s linear;
}

.main__apps__item:hover {
    color: initial;
    background-color: #92d4cf;
}

.main__apps__item__image {
    width: 150px;
    height: 100px;
    margin-bottom: 10px;
}

.main__apps__item__text {
    font-size: 14px;
    margin-bottom: 0!important;
}

.main__apps__item__text:nth-child(1) {
    font-size: 16px;
}

.main__apps__temporary {
    background-color: #ccae7c;
    padding: 30px 40px;
}

.main__apps__temporary__title {
    color: white;
}

.main__apps__temp__name {
    color: brown;
}

.main__apps__temp__buttons {
    padding: 10px 10px;
    background-color: white;
    color: white;
    font-size: 12px;
    transition: all .2s linear;
}

.main__apps__temp__buttons:hover {
    color: white;
}

.main__apps__temp__buttons--green {
    background-color: #8cb326;
}

.main__apps__temp__buttons--blue {
    background-color: #308fff;
}

.main__apps__temp__buttons--primary {
    background-color: #40c0c3;
}

.main__selected__item {
    height: 400px;
    padding: 5px 20px;
    overflow: auto;
    border-bottom: 1px solid lightgray;
    display: flex;
    flex-direction: column;
}

.main__selected__item:nth-child(even) {
    background-color: #ccae7c;
}

.main__selected__chosen__text {
    height: max-content;
    line-height: 25px;
    padding: 5px 20px;
}

.main__selected__book__image {
    width: 150px;
    height: 200px;
}

.main__selected__gallery__title {
    color: black;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .2s linear;
    border-radius: 3px;
}

.main__selected__gallery__title:hover {
    color: black;
    background-color: lightgray;
}

.main__selected__gallery__title--active {
    background-color: lightgray;
}

.main__gallery {
    margin-top: 10px;
    height: 300px;
    position: relative;
}

.main__gallery__buttons {
    position: absolute;
    top: 110px;
    border: none;
    padding: 2px;
    outline: none;
    font-size: 36px;
    color: black;
    background-color: transparent;
    transition: all .2s linear;
    border-radius: 3px;
    opacity: .6;
}

.main__gallery__buttons:hover {
    color: white;
    background-color: #40c0c3;
}

.main__gallery__buttons--after {
    right: -10px;
}

.main__gallery__buttons--before {
    left: -10px;
}

.main__photoGallery__item {
    display: none;
}

.main__audioGallery__item:not(.main__audioGallery__item:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid lightgray;

}

.main__audioGallery__item--active {
    display: flex;
}

.main__photoGallery__item--active {
    display: flex;
}

.main__audioGallery__title{
    width: 300px;
    margin:auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main__photoGallery__item__image {
    width: 250px;
    height: 200px;
}

.main__photoGallery__item__link {
    color: black;
}

.main__photoGallery__item__link:hover {
    color: black;
}

.main__edit__questions {
    background-color: white;
    min-height: 300px;
  }
  
  .main__edit__questions__container {
    min-height: 300px;
  }
  
  .main__edit__login__container {
    border: 1px solid #ccae7c;
    border-radius: 3px;
  }
  
  .main__edit__login {
      min-height: 300px;
  }
  
  .main__edit__login__link {
    color: black;
    width: 100%;
    font-weight: 600;
    border-radius: 3px;
    padding: 10px 0;
    transition: all 0.2s linear;
  }

  .main__edit__login__icon{
      color: #40c0c3;
  }
  
  .main__edit__login__link:hover {
    color: black;
    background-color: #40c0c3;
  }

  .main__edit__login__link:hover .main__edit__login__icon {
    color: black;
  }
  
  .main__edit__login__title {
    font-size: 14px!important;
  }
  
  .main__edit__questions__list {
    background-color: #ccae7c;
    border-radius: 0px 0 5px 5px;
  }
  
  .main__edit__questions__section {
    outline: none;
    border: none;
    border-bottom: 1px solid lightgray;
    width: 100%;
    padding: 20px 15px;
    background-color: white;
    font-size: 12px;
    border-radius: 0 5px 5px 0;
  }
  
  
  .main__edit__questions__section--active {
    border: 1px solid #ccae7c;
    background-color: #ccae7c !important;
    position: relative;
    -moz-border-radius: 5px 5px 0px 0;
    -webkit-border-radius: 5px 5px 0px 0;
    border-radius: 5px 5px 0px 0;
  }
  
  .main__edit__chapter__item {
    font-size: 14px;
  }

  .main__books__slider{
      min-height: 400px;
      overflow: auto;
  }

  .main__books__slider::-webkit-scrollbar{
     display: none;
  }
/* news */

.news__header {
    height: max-content;
    background-image: url("/newAssets/images/newsSliderBack.png");
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.news__header__title {
    margin: 10px 0 5px 0;
}

.news__header__latest {
    height: max-content;
}

.news__header__latest__small {
    min-height: 440px;
}

.news__header__latest__big {
    min-height: 440px;
    transition: all .2s linear;
    position: relative;
}

.news__header__smallItem {
    display: flex;
    flex-direction: row;
    flex: .33;
    padding: 3px;
    transition: all .2s linear;
}

.news__header__smallItem:hover {
    background-color: blanchedalmond;
}

.news__header__smallItem__image {
    width: 200px;
    height: 120px;
}

.news__headeer__smalItem__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.news__header__smallItem__imageContainer {
    display: flex;
    justify-content: center;
}

.news__header__smallItem__info {
    font-size: 10px;
    color: #837e71;
}

.news__header__smallItem__summary {
    font-size: 14px;
    color: #49494a;
}

.news__smallItem__icon {
    font-size: 12px;
    margin-top: 5px;
}

.news__header__big__imageContainer {
    height: 100%;
}

.news__header__big__image {
    width: 80%;
    height: 50%;
}

.news__header__big__info {
    font-size: 14px;
    color: #837e71;
}

.news__header__smallItem__content {
    padding: 5px;
    padding-right: 20px;
}

.news__header__big__content {
    padding: 5px;
    padding-right: 20px;
}

.news__header__big__continue {
    padding: 5px 25px;
    background-color: #ccae7c;
    border-radius: 5px;
    color: black;
    transition: all .2s linear;
}

.news__header__big__continue:hover {
    color: white;
}

.news__archive {
    min-height: 300px;
}

.news__mostVisited {
    height: 1100px;
    margin-bottom: 150px;
    overflow: auto;
}

.news__item__image {
    width: 100%;
    height: 100%;
}

.news__item {
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding: 10px;
    height: 500px;
    overflow: auto;
    transition: all .2s linear;
}

.news__item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.news__item__text {
    font-size: 14px;
}

.news__item__link {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.news__item__content {
    color: #49494a;
}

.news__mostVisited__item {
    display: flex;
    flex-direction: row;
    flex: .33;
    padding: 3px;
    transition: all .3s linear;
}

.news__mostVisited__item:hover {
    background-color: lightcyan;
}

.news__tags__header {
    height: max-content;
    background-image: url("/newAssets/images/newsSliderBack.png");
    display: flex;
    flex-direction: column;
}

.news__tags__item {
    border-radius: 5px;
}


/* lessons */

.lessons {
    width: 100%;
    margin: 0!important;
    display: flex;
    justify-self: center;
    flex-direction: column;
}

.lessons__header__content {
    width: 94%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lessons__header {
    display: flex;
    justify-content: center;
    background-image: url('/newAssets/images/lessonBack.png');
    padding-top: 25px;
}

.lessons__breadcrumb li {
    font-weight: bold;
    color: #49494a;
}

.lessons__breadcrumb__link {
    cursor: pointer;
}

.lessons__breadcrumb a {
    color: #ccae7c;
}

.lessons__filters__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    padding-right: 0!important;
    font-size: 12px;
}

.lessons__filters__item a {
    color: #837e71;
    font-weight: bolder;
    padding: 5px 15px;
    width: max-content;
    transition: all .2s linear;
}

.lessons__filters__item a:hover {
    background-color: #837e71;
    color: white;
}

.lessons__filters__item.active a {
    background-color: #ccae7c;
    color: white;
}

.lessons__filters--seprator {
    height: 26px;
    width: 2px;
    background-color: #ccae7c;
}

.lessons__options__category {
    width: 150px;
}

.lessons__category__select {
    height: 40px;
    background-color: transparent;
    border: 1px solid gray;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.lessons__category__select__body {
    position: absolute;
    width: 100%;
    height: max-content;
    top: 40px;
    background-color: #ccae7c;
    display: flex;
    flex-direction: column;
    z-index: 1010;
}

.lessons__category__select__link {
    color: white;
    padding: 5px 10px;
    transition: all .2s linear;
}

.lessons__category__select__link:hover {
    color: black;
}

.lessons__offcanvas__button {
    background-color: #ccae7c;
    outline: none;
    border: none;
    width: max-content;
    height: max-content;
    color: white;
}

.lessons__offcanvas__button:hover {
    background-color: #837e71;
}

.lessons__offcanvas__item {
    background-color: #ccae7c;
    color: white;
    padding: 10px 0;
    width: 100%;
    height: 100%;
    transition: all .3s linear;
}

.lessons__offcanvas__list {
    width: max-content;
}

.lessons__offcanvas {
    position: relative;
}

.lessons__offcanvas__content {
    position: absolute;
    z-index: 1110;
    left: 20px;
}

.lessons__offcanvas__link {
    color: white;
    width: 100%;
    font-size: 12px;
    padding: 0 20px;
    transition: all .3s linear;
}

.lessons__offcanvas__item:hover {
    color: white;
    background-color: burlywood;
}

.lessons__offcanvas__link:hover {
    color: white;
}

.lessons__body {
    width: 94%;
    min-height: 700px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.lessons__navigation {
    height: 700px;
    display: flex;
    overflow: auto;
    margin: 20px 0;
    flex-direction: column;
    border-left: 1px solid lightgray;
}

.lessons__chapters {
    height: 100%;
    padding: 10px 0;
}

.lessons__search {
    position: relative;
}

.lessons__search__input {
    position: sticky;
    top: 0;
    padding: 5px;
    padding-left: 30px;
    padding-right: 15px;
    font-size: 12px;
    outline: none;
    border: 1px solid #e8dccc;
    transition: all .3s linear;
}

.lessons__search__input:focus {
    border-color: #ccae7c;
}

.lessons__search__icon {
    position: absolute;
    top: 13px;
    left: 15px;
    color: #e8dccc;
    cursor: pointer;
}

.lessons__search__icon:hover {
    color: #ccae7c;
}

.lessons__accordion__button {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 6px 10px;
    border: none;
    background-color: white;
    transition: all .3s linear;
}

.lessons__accordion__button:hover {
    background-color: #ccae7c;
}

.lessons__accordion__button p {
    margin-bottom: 0;
}

.lessons__accordion__list {
    padding: 0!important;
    margin: 0!important;
}

.lessons__accordion__list--item {
    height: 40px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lessons__accordion__list__noChild--item {
    position: relative;
    height: 40px;
    
}

.lessons__accordion__list__noChild--item a {
    min-width: max-content;
    color: brown;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all .3s linear;
    padding: 0 10px;
    height: 100%;
    font-size: 14px;
    overflow: hidden;
    
}

.lessons__accordion__list--item a {
    min-width: max-content;
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all .3s linear;
    padding: 0 10px;
    height: 100%;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
}

.lessons__accordion__list--item a:hover,
.lessons__accordion__list__noChild--item a:hover {
    background-color: #92d4cf;
}

.lessons__accordion__button--active {
    background-color: #e8dccc!important;
}

.lessons__according__list--active {
    color: black!important;
}

.lessons__accordion__list__noChild--icon {
    font-size: 10px;
}

.lessons__chapter--text {
    font-size: 14px;
    height: 85px;
    overflow: hidden;
}

.lessons__chapter--seprator {
    margin: 10px 0;
}

.lessons__chapter {
    border: 1px solid lightgray;
    padding: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lessons__chpaters__operations {
    margin-top: 40px;
}

.lessons__chapter__continue {
    min-width: 80px;
    font-size: 12px;
    border-radius: 3px;
    padding: 10px 0;
    background-color: #ccae7c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s linear;
}

.lessons__chapter__continue:hover {
    color: black;
}

.lessons__chapter--statistic {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
}

.lessons__chapter--share {
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
}

.lessons__chapter--link {
    color: black;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.lessons__pagination {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    margin: auto;
}

.lessons__pagination__button {
    background-color: white;
    color: black;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s linear;
}

.lessons__pagination__button--active {
    background-color: #40c0c3!important;
    color: white;
}

.lessons__pagination__before--deactive:hover {
    color: #E4D8DC;
    background-color: white;
}

.lessons__pagination__before--deactive {
    color: #E4D8DC;
    background-color: white;
}

.lessons__pagination__button:hover {
    background-color: #40c0c3;
    color: white;
}

.lessons__pagination__main {
    display: flex;
    flex-direction: row;
}

.lessons__card__hasChild {
    height: 200px;
    position: relative;
    background-color: aqua;
    background-image: url("/newAssets/images/lessonBack.png");
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    transition: all .2s linear;
    margin-top: 60px;
    cursor: pointer;
}

.lessons__card__hasChild:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.lessons__card__icon {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -45px;
    background-color: white;
    border-radius: 100%;
    transition: all .2s linear;
    z-index: 1000;
}

.lessons__card__hasChild:hover .lessons__card__icon {
    background-color: #92d4cf;
}

.lessons__card__icon__image {
    width: 40px;
    height: 40px;
}

.lessons__card__chaptersNumber {
    font-size: 18px;
    color: #ccae7c;
}

.lessons__card__title {
    color: black;
    font-size: 18px;
    font-weight: bold;
    height: 52px;
    overflow: hidden;
    
}

.lessons__card__gapFix {
    height: 30px;
}

.lessons__card__noChild {
    height: 200px;
    position: relative;
    background-image: url("/newAssets/images/lessonBack.png");
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    transition: all .2s linear;
    margin-top: 60px;
}

.lessons__card__noChild:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.lessons__card__noChild:hover .lessons__card__icon {
    background-color: #92d4cf;
}

.lessons__card__noChild__filter {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: .1;
    background-color: brown;
}

.lessons__process__item{
    background-color: white!important;
    border: 2px solid lightgray;
    min-height: 300px;
}

.lessons__process__item__title{
    color: black;
    font-weight: 600;
}

.lessons__process__item__list{
    font-size: 16px!important;
    color: black;

}

.lessons__process__item__button{
    padding: 10px 20px;
    color: black;
    background-color: #40c0c3;
    border-radius: 3px;
    border: none;
    outline: none;
    font-size: 14px;
    transition: all .2s linear;
}

.lessons__process__item__button:hover{
    color: white;
}

.lessons__card__process{
    position: absolute;
    bottom: -45px;
    background-color: #40c0c3;
    color: black;
    padding: 15px;
    border-radius: 50%;
}

.lessons__accordion__process{
    position: absolute;
    right: 100px;
    border-radius: 3px!important;
    padding:5px 10px;
    cursor: pointer;
}
/* single lessons */

.singleLesson {
    width: 100%;
}

.singleLesson__header__header {
    height: max-content;
    background-image: url("/newAssets/images/newsSliderBack.png");
    background-position: center;
}

.singleLesson__header__button {
    color: black;
    background-color: #feedd1;
    padding: 5px 10px;
    height: max-content;
    width: max-content;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    transition: all .3s linear;
}

.singleLesson__header__button:hover {
    color: initial;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.singleLesson__header__button__icon {
    padding-top: 5px;
    font-size: 14px;
}

.singleLesson__header__button__text {
    margin-bottom: 0!important;
}

.singleLesson__breadcrumb li {
    font-weight: bold;
    font-size: 14px;
    color: #49494a;
}

.singleLesson__breadcrumb a {
    color: #ccae7c;
}

.singleLesson__header__info__icon {
    padding-top: 10px;
    font-size: 24px;
}

.singleLesson__header__date {
    font-size: 14px;
}

.singleLesson__header__operations {
    min-height: 40px;
    background-color: #d7c4a4;
}

.singleLesson__header__fileLink__pdf {
    color: red;
    cursor: pointer;
    font-size: 12px;
    border: 2px solid red;
    background-color: #efdbb8;
    height: max-content;
    padding: 3px 10px;
    transition: all .3s linear;
}

.singleLesson__header__fileLink__audio {
    color: green;
    font-size: 12px;
    border: 2px solid green;
    background-color: #efdbb8;
    height: max-content;
    padding: 3px 10px;
    transition: all .3s linear;
}

.singleLesson__header__fileLink__pdf:hover {
    color: red;
    opacity: .7;
}

.singleLesson__header__fileLink__audio:hover {
    color: green;
    opacity: .7;
}

.singleLesson__header__statButton {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    color: black;
    background-color: transparent;
    height: max-content;
    padding: 0 10px;
    border-right: 1px solid black;
}

.singleLesson__header__statIcon {
    font-size: 16px;
}

.singleLesson__header__likeIcon {
    color: red;
}

.singleLesson__aside__item {
    margin-top: 20px;
}

.singleLesson__main__aside {
    padding-bottom: 20px;
    margin-bottom: 80px;
}

.singleLesson__main__body {
    min-height: 1000px;
    padding: 20px 10px;
}

.singleLesson__body__title {
    color: #40c0c3;
}

.singleLesson__body__firstSection,
.singleLesson__body__secondSection {
    font-size: 14px;
    
}

.singleLesson__form__submit {
    background-color: #40c0c3;
    transition: all .3s linear;
}

.singleLesson__form__submit:hover {
    color: white;
}

.singleLesson__inputText {
    padding: 8px 15px;
    transition: all .3s linear;
    border: 1px solid #ccae7c;
    outline: none;
}

.singleLesson__inputText:focus {
    border: 1px solid #40c0c3;
    box-shadow: #40c0c3 0px 2px 5px;
}

.singleLesson__tags__title {
    color: #40c0c3;
}

.singleLesson__tags__list {
    min-height: 50px;
}

.singleLesson__tag {
    height: max-content;
    width: max-content;
    font-size: 12px;
    padding: 5px 10px;
    background-color: #40c0c3;
    color: white;
    transition: all .2s linear;
}

.singleLesson__tag:hover {
    color: initial;
}

.singleLesson__offcanvas__body {
    width: 250px!important;
}

.singleLesson__offcanvas__button {
    background-color: #40c0c3;
    outline: none;
    border: none;
    width: max-content;
    height: max-content;
    color: white;
    font-size: 12px;
}

.singleLesson__aside__list {
    max-height: 400px;
    overflow: auto;
}


/* comments */

.comments__container {
    min-height: 150px;
}

.comments__item {
    height: max-content;
}

.comments__comment {
    min-height: 100px;
    background-color: #eeeeee;
    color: black;
    border-radius: 10px;
    padding: 15px 20px;
}

.comments__item__header {
    background-color: #ccae7c;
    min-height: 40px;
    padding: 5px 10px;
}

.comments__item__body {
    min-height: 200px;
    border: 1px solid lightgrey;
    padding: 10px 20px;
}

.comments__link {
    color: black;
}

.comments__link:hover {
    color: black;
    text-decoration: underline;
}

.comments__comment__icon {
    font-size: 14px;
}

.comments__info__text {
    font-size: 12px;
}

.comments__answer {
    min-height: 50px;
}


/* biography */

.biography {
    min-height: 200px;
    background-image: url("/newAssets/images/lessonBack.png");
}

.biography img {
    max-width: 100%;
}

.biography__title {
    font-size: 24px;
}

.biography__icon {
    font-size: 18px;
}

.biography__print__btn {
    background-color: #40c0c3;
    padding: 5px 20px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: white;
}


/* single News */

.singleNews__title {
    font-size: 18px;
    margin: 20px 0;
}

.singleNews__date,
.singleNews__view {
    border-top: 1px solid black;
}

.singleNews__text a {
    width: max-content;
    padding: 5px 10px;
    background-color: #40c0c3;
    border-radius: 5px;
    font-size: 14px;
    color: white;
    display: flex;
    align-self: center;
    justify-content: center;
    margin: auto;
}

.singleNews__gallery__btn:hover {
    color: white;
}

.singleNews__icon {
    font-size: 24px;
}

.singleNews__summary {
    background-color: #ccae7c;
}

.singleNews_main {
    min-height: 500px;
    padding: 20px 10px;
}


/* faq */

.faq__selcetedWords {
    height: max-content;
}

.faq__search__container {
    position: sticky;
    z-index: 1010;
    top: 0;
}

.faq__items--active {
    background-color: #ccae7c;
}

.faq__askQuestion {
    padding: 8px 12px;
    background-color: #ccae7c;
    border-radius: 5px;
    color: black;
    font-size: 14px;
    transition: all .2s linear;
    font-weight: 600;
}

.faq__askQuestion:hover {
    color: white;
}


/* books */

.books__main__header {
    min-height: 100px;
    background-image: url("/newAssets/images/newsSliderBack.png");
}

.books__main__body {
    min-height: 500px;
    background-color: white;
}

.books__main__sidebar {
    min-height: 500px;
    background-color: white;
}

.books__main__itemsContainer {
    min-height: 500px;
    background-color: white;
}

.books__container {
    height: max-content;
}

.books__main__item {
    color: black;
    height: 400px;
    overflow: auto;
    width: 90%;
    border-radius: 5px;
    border: 1px solid lightgray;
    background-image: url('/newAssets/images/lessonBack.png');
}

.books__main__item:hover {
    color: black;
}

.books__main__title {
    color: black;
    transition: all .2s linear;
    height: 40px;
    overflow: hidden;
    word-wrap:break-word;
    text-overflow: ellipsis;
}

.books__main__item:hover .books__main__title {
    color: #40c0c3;
}

.books__main__image {
    height: 70%;
    background-color: white;
    background: transparent;
}


/* single book */

.singleBook {
    min-height: 400px;
    background-color: white;
    border-top: 10px solid #ccae7c;
    padding: 30px 10px;
}

.singleBook__infoParams {
    min-height: 400px;
}

.singleBook__imageContainer {
    min-height: 400px;
}

.singleBook__image{
    width: 240px;
    height: 380px;
}

.singleBook__link {
    width: 100%;
    height: 100%;
}

.singleBook__informations {
    border: 1px solid lightgray;
    border-radius: 10px;
}

.singleBook__detail__item {
    border-bottom: 1px solid lightgray;
    border-right: 1px solid lightgray;
    border-left: 1px solid lightgray;
    border-radius: 10px;
}


/* gallery */

.gallery {
    min-height: 500px;
}

.gallery__header {
    height: 80px;
    background-image: url('/newAssets/images/lessonBack.png');
}

.gallery__list {
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    padding-right: 0!important;
    font-size: 12px;
}

.gallery__listContainer {
    overflow-x: auto;
}

.gallery__listContainer::-webkit-scrollbar {
    display: none;
}

.gallery__imageCount {
    padding: 3px 15px;
    width: max-content;
    background-color: #40c0c3;
    border-radius: 5px;
    color: white;
    font-size: 12px;
    width: max-content;
}

.gallery__imageCount:hover {
    color: white;
}

.gallery__item {
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding: 10px;
    height: 500px;
    overflow: auto;
    transition: all .2s linear;
    position: relative;
}

.gallery__item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.gallery__item__info {
    background-color: #49494a;
    opacity: .9;
    overflow: hidden;
    padding-top: 10px;
}


/* gallery inner */

.galleryInner__body {
    min-height: 500px;
}

.galleryInner__image {
    height: max-content;
    border: 2px solid #ccae7c;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    bottom: 0;
    transition: all .2s linear;
}

.galleryInner__image:hover {
    bottom: 5px;
}


/* articles */


/* articles */

.article__items {
    height: 230px;
    position: relative;
    background-image: url("/newAssets/images/lessonBack.png");
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    transition: all .2s linear;
    margin-top: 50px;
    width: 100%;
    color: black;
}

.article__items:hover {
    color: black;
}

.article__items::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: black;
}

.article__items:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.article__items:hover .lessons__card__icon {
    background-color: #92d4cf;
}

.article__item__date {
    font-size: 12px;
}

.article__item__footer {
    position: absolute;
    bottom: 0;
}


/* search */

.search {
    border-top: 10px solid #ccae7c;
}

.search__section {
    min-height: 300px;
}

.search__header {
    background-color: #ccae7c;
    min-height: 60px;
}

.search__section__buttons {
    width: max-content;
    height: max-content;
    background-color: transparent;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 1010;
}

.search__section__button {
    color: white;
    background-color: #40c0c3;
}

.search__section__toggle {
    border: none;
    outline: none;
    background-color: #ccae7c;
    border-radius: 5px;
    padding: 7px 15px;
}


/* application */

.application {
    min-height: 500px;
}

.application__header {
    background-image: url("/newAssets/images/lessonBack.png");
    background-position: center;
}

.application__logo__container {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.application__logo {
    width: 100%;
    height: 100%;
}

.application__body {
    min-height: 200px;
}

.application__image {
    border-radius: 5px;
    border: 2px solid #ccae7c;
    position: relative;
    bottom: 0;
    transition: all .2s linear;
}

.application__image:hover {
    bottom: 5px;
}


/* questions */

.questions {
    min-height: 500px;
}

.questions__login {
    min-height: 500px;
}

.questions__login__container {
    min-height: 400px;
    border: 1px solid lightgray;
    background-color: #ccae7c;
}

.questions__checkbox__item:checked {
    background-color: #40c0c3;
}

.questions__button {
    background-color: #40c0c3;
    color: white;
    padding: 7px 30px;
    width: max-content;
    transition: all .2s linear;
}

.questions__button:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.questions__register__link {
    color: white;
    text-decoration: underline;
}

.questions__quick__textarea {
    height: 200px!important;
}


/* sounds */

.sounds__item {
    border: 1px solid lightgray;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 5px 10px;
    z-index: 0;
}

.sounds__items__seprator {
    width: max-content;
    align-self: center;
}

.sounds__category__button {
    cursor: pointer;
}

.sounds__audio {
    height: 30px;
}

.sounds__buttons {
    color: white;
    background-color: #ccae7c;
    border-radius: 3px;
    width: max-content;
    padding: 5px 15px;
    transition: all .2s linear;
    cursor: pointer;
}

.sounds__buttons:hover {
    color: white;
}

.sounds__details__button {
    position: relative;
}

.sounds__details__body {
    position: absolute;
    top: -155px;
    right: -150px;
    width: 300px;
    height: 150px;
    overflow: auto;
    background-color: #ccae7c;
    border-radius: 3px;
}

.sounds__moreButton{
    outline: none;
    border: none;
    width: max-content;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3px 50px;
    background-color: #40c0c3;
    border-radius: 3px;
    margin-bottom: 10px;
}


/* study */

.study{
    height: max-content;
}


.study__body{
    height: 500px;
    overflow: auto;
}

.study__body::-webkit-scrollbar {
    width: 6px;
}

.study__page{
    height: max-content;
}
.study__search{
    position: sticky;
    top: 10px;
    margin: auto;
    width: 200px;
    height: 50px;
    border: 1px solid black;
    background-color: white;
    z-index: 100;
}

.study__body a{
    color: black;
}
.study__body a:hover{
    color: #40c0c3;
    text-decoration: underline;
}

.study__search__btn{
    font-size: 12px;
}