

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --fon1: #ffffff;
  --akcent1: #A3795D;
  --akcent2: #604D46;
  --akcent3: #D8A37F;  
  --text1: #222222;
  --font-family:"Raleway", sans-serif;  
  --radius: 20px;  
}

/*название тренинга/модуля */

.page-header h1 a{
	font-family: var(--family);
  font-weight: 500;
  color: var(--text1)!important;
  }

/*шапка урока - начало*/
.lesson-header-block {
    background: url(https://fs17.getcourse.ru/fileservice/file/download/a/817644/sc/241/h/ed821bf2d54bb63208e31bd69af80e85.png)!important;
    background-size: cover !important;
    background-position: center!important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border:1px solid var(--akcent1);
    border-bottom: 1px solid var(--akcent1)!important;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px 20px 20px!important;     
    border-radius:13px;
    }

.lesson-header-block .text-center {
  /*  text-align: left; /*поставьте значение center вместо left, если хотите, чтобы название и описание урока было по центру*/
}

/* название урока*/
.lesson-title-value { 
  font-family: var(--family);
  font-style: normal;
  font-weight: 600;
  /*font-size: 36px;*/
  line-height: 40px;
  margin-bottom: 10px;
  color: var(--text1);
 }

 .lesson-description-value {
  font-family: var(--family);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: var(--text1);
}

/*какой урок из скольки и статус*/
.text-center.hidden-xs {
  font-family: var(--family);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: var(--text1);
}
.text-center.hidden-xs .user-state-accomplished,
.text-center.hidden-xs .user-state-need_accomplish{
  font-size: 16px;
  }

.lesson-navigation td .hidden-xs {
  display:none;
}

.lesson-navigation td a {
  text-decoration:none;
  font-family: var(--family);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  color: var(--text1);
}
.lesson-navigation td a:before {
  content: "";
  position: absolute;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: var(--text1);
}
.lesson-navigation > table > tbody > tr > td:nth-child(1){
  padding-left: 25px!important; 
}

.lesson-navigation > table > tbody > tr > td:nth-child(3) {
    padding-right: 25px !important;
}

/*урок предыд – стрелка*/
.lesson-navigation td:nth-of-type(1) a:before {
  content: "←";
  margin-top: 0px;
  margin-left:-20px;
  transition: all 0.3s;
}

/*урок след – стрелка*/
 .lesson-navigation td:nth-of-type(3) a:before {
  content: "→";
  margin-top: 0px;
  margin-left: 140px;
  text-decoration: none;
  transition: all 0.3s;
}
/*шапка урока - конец*/

.o-lt-lesson-image img {
    border-radius: 13px;
}
/*выделенный жирным текст, пытающийся быть заголовком*/
.text.f-text p strong {
    font-family: var(--family);
    color: var(--akcent1);
    font-size: 22px;
}

/*текст в уроке*/
.block-set .f-text {
   font-size: 18px;
   font-family: var(--family); 
}

/*Кастомный аудиоплеер*/

/*аудиоплеер*/

/* Граница плеера */
.podcast-container {
  border: 2px solid var(--akcent1); 
  background:var(--akcent1); 
  border-radius: 16px;
  padding: 15px 24px;  
  display: flex;
  flex-direction: column;
  height: 100%;
}
.h-container {
  display: flex;
  margin-bottom: 15px;
}

.podcast-playpause {
  -webkit-flex: 0 0 52px;
  flex: 0 0 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background: #ffffff;  /* Цвет кнопки Play/Pause */
  border-radius: 100%;
  cursor: pointer;
  margin-right: 14px;
}

.podcast-playpause:after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  height: 14px;
  border-color: transparent transparent transparent var(--akcent1);
  transition: 100ms all ease;
  will-change: border-width;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  margin-left: 3px;
}

.podcast-playpause.playing:after {
  border-style: double;
  border-width: 0px 0 0px 14px;
  margin-left: 0;
}

.podcast-title {   /* Название трека */
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase; /*свойство, чтобы название было всегда загл буквами*/
  color: var(--fon1);
  pointer-events: none;
  align-self:center;
}
.podcast-progress {
  border-radius: 6px;
  width: 100%;
  height: 8px;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Полоса прогресса */
.podcast-progress::-webkit-progress-bar {    
  height: 8px;
  background: #F7D3BA;
  border-radius: 6px;
}
/* полоса прогресса для Мозиллы */
.podcast-progress::-moz-progress-bar {   
  border-radius: 6px;
  background: var(--fon1);
}
/* Активная полоса прогресса */
.podcast-progress::-webkit-progress-value {  
  border-radius: 6px;
  background: var(--akcent2);
}
.podcast-progress::-moz-progress-value {  
  border-radius: 6px;
  background: var(--akcent2);
}
.podcast-progress::-webkit-progress-inner-element {
  border: none;
  padding: 0;
  margin: 0;
}
  
.f-container {
  display: flex;
  justify-content: space-between;
}
.podcast-time {
  pointer-events: none;
}

/* данные под полосой прогресса (минуты и скорость) */
.podcast-time,
.podcast-speed, 
.podcast-speed a {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: #F7D3BA;
  text-decoration: none!important;
}

.podcast-speed a:hover,
.podcast-speed a.active  {
  color: var(--akcent2)!important;
}


/*блок Задание*/
.lesson-mission-wrapper {
  border: none;
  }
/*слово Задание*/
.lt-lesson-mission-block h3 {
    font-family: var(--family);
    color: var(--akcent1);
    font-size: 22px;
    margin-bottom: 20px;
}
/*техт Задания*/
.lesson-mission-text {
   font-family: var(--family);
  font-style: normal;
  font-weight: 400;
  font-size: 18px!important;
  line-height: 27px;
  color: var(--akcent2);
  padding: 20px 0 0px 20px!important;
  border-bottom: none;
}

.lt-lesson-mission-block .answer-form,
.lt-lesson-mission-block .self-answers .user-answer,
.lesson-answer-comment{
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--akcent2);
    border-radius: 13px;
}


/*пометка обязательный ответ/обязательное поле*/
 .answer-form-inner i {
  font-family: var(--family);
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 18px;
  color: var(--akcent2);
}

/*Кнопка «Отправить ответ»:*/ 
.answer-form .btn-primary {
  font-family: var(--family);
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 35px;
  align-items: center;
  text-align: center;
  color: var(--fon1);
  background-color: var(--akcent1); 
  border-color: var(--akcent1);
  padding: 7px 24px;
  border-radius:13px;
}
.btn-primary:active:focus {
  background-color: var(--akcent1); 
}

/*Кнопка «Сохранить черновик»:*/ 
.answer-form .btn-link {
  font-family: var(--family);
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: var(--akcent2);
  border-bottom: 1px dashed var(--akcent2);
}

/* комментарии*/
.user-answer {
    border: 1px solid var(--akcent2);
    margin-bottom: 20px;
    border-radius: 13px;
}
.user-answer:first-child {
    border-top: 1px solid var(--akcent2);
}

.comment-form-wrapper .new-comment-textarea {
    border: 1px solid var(--akcent2);
    border-radius: 13px;
}
textarea.new-comment-textarea.new-comment-textarea-level-1.emoji-textarea:focus-visible {
    outline: none;
}

/*Кнопка Отправить комментарий*/ 
.comment-form-wrapper .new-comment.active .btn-send {
    background: var(--akcent2);
    border: 1px solid var(--akcent2);
    border-radius: 13px;
    display: block;
    margin-top: 10px;
}
.simple-answer {
    background: #ffffff;
    padding-left: 10px;
}
 .user-answer .addfield {
    background: #fcfcfc;
    border: 1px solid var(--akcent2);
    border-radius: 13px;
    margin-top: 10px;
    padding: 10px;
}
/*Кнопка добавления файла*/ 
.uploadifive-button {
    background: var(--fon1);
    color: var(--akcent2);
    border: 1px solid #D8A37F80;
    border-radius: 13px;
}
.answer-form img,
.user-image img,
.comments-tree .user-image-wrapper img{
    border-radius: 50px!important;
}

/*Кнопка задание принято*/ 
.user-answer .answer-status .answer-status-label {
    border-radius: 9px;
}

@media (max-width:640px) {
/* название урока*/
.lesson-title-value { 
 font-size: 36px;
  }    
 .lt-block-wrapper {
   padding-left: 25px!important;
    padding-right: 25px!important;
}
 .page-header h1 {
    
}
 .f-header.f-header-36 p {
  font-size: 32px;
  line-height: 110%;
  }    
/*кнопка в уроке*/
.fl_btn .btn.f-btn{
  width: 100%;
  font-size: 16px;
  line-height: 35px;
 }
    
/*блок с полями ответа*/
.answer-form {
  font-size: 19px;
  line-height: 22px;
  border-radius: 20px;
  padding: 10px 0px 10px 0px;
 } 
 .lesson-mission-text {
  padding: 20px 0 0px 17px!important;
 }  
 .answer-form .btn-primary {
    width: 100%;
    }
.answer-form .btn-save-draft {
    margin-left: 0px;
}    
.answer-form .btn-link {
    width: 100%;
    margin-top: 15px;
    }    
}

@media (max-width:520px) {
/*шапка*/
.lesson-header-block {
    padding: 0 20px 20px!important;
    }  

/* название урока*/
.lesson-title-value { 
  line-height: 40px;
  }      
 .lt-block-wrapper {
   padding-left: 15px!important;
    padding-right: 15px!important;
}
.page-header h1 {
   
}    
  /*Заголовок 1 (36)*/
.f-header.f-header-36 {
  font-size: 32px!important;
 }

/*Заголовок 2 (26)*/
.f-header.f-header-26 p,
 .header.f-header.f-lesson-header-1 p {
  font-size: 24px;
  line-height: 110%;
  }
}

@media (max-width:450px) {
/*шапка*/
 .lesson-header-block {
   
}    
.lt-block-wrapper {
  padding-left: 0px;
    padding-right: 0px;
}
}

@media (max-width:385px) {
 .lesson-title-value { 
 font-size: 32px;
  }   
 .lesson-navigation td a {
  font-size: 14px;
  }
.lesson-navigation td:nth-of-type(3) a:before {
   margin-left: 117px;  
}
}
@media (max-width:350px) {
  .lesson-title-value { 
 font-size: 28px;
  } 
}
@media (max-width: 335px) {
    .lesson-navigation td:nth-of-type(3) a:before {
        margin-left: 83px;
    }
}

/*.lt-block-wrapper .container {
    padding-left: 0px;
}*/

/*чатиум*/

/*фон шапки урока- блок с заголовком и описанием урока */
.chatium_body .lesson-title {
    text-align: center;
    font-family: var(--family);
    background: url(https://fs17.getcourse.ru/fileservice/file/download/a/817644/sc/241/h/ed821bf2d54bb63208e31bd69af80e85.png)!important;
    background-size: cover;
    height: 150px;
    background-position: center!important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border:1px solid var(--akcent1);
    border-bottom: 1px solid var(--akcent1)!important;
    padding: 20px 20px 20px 20px!important;     
    border-radius:13px;
    color:var(--text1);
    margin-left:10px;
    margin-right:10px;
    }

/*название урока-заголовок*/
.chatium_body .lesson-title h2 {
   font-size: 30px;
   line-height: 110%;
   margin-top: 0px;
   margin-bottom: 10px;
   font-family: var(--family)!important;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  color: var(--text1);
}

/*блок кнопок навигации*/
.chatium_body .lesson-title+style+div {
   margin-bottom: 0px!important;  
}

/*кнопки навигации*/
.chatium_body .lesson-title+style+div a {
    background:transparent!important;
    font-size: 14px;
    color:var(--text1);
    padding:3px 5px;
 }

/*кнопки выбора раздела*/
.mode-selector {
    border: 1px solid var(--akcent1);
    margin: 10px;
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    font-family: var(--family);
    font-size: 14px;
}
.mode-selector .link {
    flex: 1;
    text-align: center;
    padding: 5px;
    color: var(--akcent1);
    border-right: 1px solid var(--akcent1);
    text-decoration: none;
}

.mode-selector .link.active {
    background: var(--akcent1);
    color: white;
}

@media (max-width:400px) {
  .chatium_body .lesson-title h2 {
   font-size: 26px;  
}
}
@media (max-width:362px) {
  .chatium_body .lesson-title h2 {
   font-size: 22px;  
}
}
