

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');


:root
{
    --background:#FFE099;
    --list-col:#FFFCF6;
    --border:#FFB114;
	--ColorBorder: #FFB114;
	--ColorBtn: #FFB114;
	--text: #333;
	--progress:#FFF2D8;
	--ProgressActive: #FFB114;
    --PlayerBackground:#FFFCF6;
}

.myblock .block-box
{
    background:#FFFCF6!important;
    border-radius:10px;
    border:1px solid #FFB114!important;
    font-family:'Montserrat';
}


/*аккордеон для аудио*/
.accordion{
  /* ширина в % для резинового макета, 
  * можно определить фиксированное
  * значение в px 
  */
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.toggle-box{
  /* по умаолчанию скрыт */
  display: none;
}
 
/* формируем внешний вид панелей аккордеона */
 
.toggle-box + label  { 
  background: var(--progress);
  color: var(--text);
  cursor: pointer;
  display: block;
  box-shadow:0px 3px 0px #d0941f;
  font-family:'Montserrat';
  font-size: 16px;
  font-weight:600;
  line-height: 30px;
  padding: 8px 22px; 
  margin-bottom: 0px;
  border-radius:10px;
 overflow: overlay;
    text-align:center;
}



 
/* формируем внешний вид панелей при нажатии на них */
 
.toggle-box + label:active{
  background: var(--BorderColor);
  box-shadow:0px 3px 0px #d0941f;
  line-height: 24px;
    
}
 
/* содержание блоков скрыто */
 
.toggle-box + label + div {
  display: none;
}
 
/* при обработке флажка (checkbox) показываем блок с содержанием */
 
.toggle-box:checked + label + div{
  display: block;
}
 
/* формируем внешний вид кнопки переключателя на панели справа */
 
.toggle-box + label:before  {
    background: var(--ColorBtn);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    color: var(--text);
    content: "+";
    display: block;
    float: right;
    font-size: 14px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    margin: 5px 5px 0px;
    text-align: center;
    width: 20px;
    box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
}
.toggle-box:checked + label:before {
  content: "\2212";
}

/*pleer*/


.podcast-container {
  border: 2px solid var(--ColorBorder); /* Граница плеера */
  border-radius: 5px;
  padding: 15px 24px;  
  display: flex;
  flex-direction: column;
  height: 100%;
	background:var(--PlayerBackground);
}
.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: var(--ColorBtn);  /* Цвет кнопки Play/Pause */
  border-radius: 100%;
  cursor: pointer;
  margin-right: 14px;
    box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
}
.podcast-playpause:after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  height: 14px;
  border-color: transparent transparent transparent white;
  transition: 100ms all ease;
  will-change: border-width;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  margin-left: 3px;
    box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
}
.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: 12px;
    line-height: 120%;
    text-transform: uppercase;
    font-family: 'Montserrat';
}
.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: var(--progress);
  border-radius: 6px;
}
.podcast-progress::-webkit-progress-value {  /* Активная полоса прогресса */
  border-radius: 6px;
  background: var(--ProgressActive);
}
.podcast-progress::-webkit-progress-inner-element {
  border: none;
  padding: 0;
  margin: 0;
}
.podcast-progress::-moz-progress-bar {     /* Активная полоса прогресса для Мозиллы */
  border-radius: 6px;
  background: var(--ProgressActive);
}
.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: rgb(14,12,10,0.5);
  text-decoration: none!important;
}
.podcast-speed a:hover,
.podcast-speed a.active  {
  color: #0E0C0A;
}

 
/* оформляем блок с содержанием */
 
.box{
  background: #fefefe;
 /* border-left: rgba(0,0,0,0.1) solid 1px;
  border-right: rgba(0,0,0,0.1) solid 1px;
  border-bottom: rgba(0,0,0,0.1) solid 1px;*/
  padding: 10px 10px 10px;
  line-height: 1.5;
}
 
/* значения встраиваемых картинок в блоки */
 
.box img{
  height: auto;
  border: rgba(0,0,0,0.3) solid 1px;
}
.left-img{  
  float: left; 
  margin: 5px 10px 0px 0px;
}
.right-img{
  float: right; 
  margin: 5px 0 0 10px;
}
.large-img {width: 100%;margin-bottom: 5px;}

.vhi-iframe {
     border-radius: 10px!important;
    border: 2px solid #FFB114!important;
}

.user-state-has_mission
{
    display:none;
}
.legal .col-md-offset-1 {
    margin-left: 0;
}

.legal .col-md-offset-0 {
    border-left: 1px solid #FFB114;
}

.legal .fa-exclamation-triangle
{
    color:#FFB114;
    font-size:100px;
    text-align:center;
}

.legal .flex-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.legal .my-container {
    max-width: 90%;
    padding: 20px;
    background: #FFFCF6;
    padding-left: 10px;
    border-radius: 10px;
    border: 1px solid #FFB114;
    font-family: 'Montserrat';
    font-weight:bold;
}

.lt-lesson-mission-block h3
{
    font-family:'Montserrat';
    text-align:center;
    padding:20px 0px;
 
}

.lt-lesson-mission-block h3:before
{
    content:'\f040';
    display:inline-block;
    padding-right:20px;
    font-family:'FontAwesome';
    color:#FFB114;
}

.answer-form
{
       background: #FFFCF6;
}

.lesson-mission-wrapper
{
    border:none!important;
}

.lesson-mission-text {
    border-bottom: 1px solid #FFB114;
}

textarea#lessonanswer-answer_text {
    border: 1px solid #FFB114;
    border-radius: 10px;
}

.answer-form, .lesson-mission-text
{
    font-family:'Montserrat';
}

.answer-form .btn-link
{
    color:#FFB114;
}

.btn-send-answer 
{
    border-radius:10px!important;
    background:#FFB114!important;
    box-shadow: 0px 3px 0px #D0941F!important;
    border:1px solid #FFB114;
    color:black;
    
}


.simple-answer, .lt-lesson-mission-block {
    background: #FFFCF6;
    padding-left: 10px;
    border-radius: 10px;
    border: 1px solid #FFB114;
}

.user-answer:first-child {
  border-top: 1px solid #FFB114!important;
}

/*содержание*/
.mylist  .text {
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    background: #FFFCF6;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 1px 0px #d0941f;
      font-family: 'Montserrat';
}

.mylist .col-md-10
{
width:100%!important;
  margin-left:0px!important;
}

.vhe-cdn-change {
    
    padding-left: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    margin-top: 0;
    background: #FFF2D8!important;
    align-items: center;
    justify-content: center;
   
}
.vhe-cdn-change a
{
   color: #FFB114;
    font-family:'Montserrat';
}


 .mylist .header {
    cursor: pointer;
    text-decoration: none;
    display: inline-block!important;
    padding: 10px;
    background: #FFF2D8;
    box-shadow: 0px 3px 0px #d0941f;
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    color: #333!important;
    font-family: 'Montserrat'!important;
    text-decoration:none; 

}


 .mylist .header p:before {

     content:'\f0a4 \00a0 \00a0';
     display:inline-block;
      font-family: 'FontAwesome';

}

.mylist .header p {
    display: inline;
    border-bottom: none!important;
}

/*шапка урока*/
.lesson-header-block.row-section {
    background: var(--list-col)!important;
    border: 1px solid var(--background)!important;
    padding: 0px 15px!important;
    border-radius: 10px!important;
}

.page-header h1 a:before
{
content:'';
 display:inline-block;
  width:50px;
  height:50px;
  background:url("https://fs.getcourse.ru/fileservice/file/download/a/194520/sc/415/h/7e08b6b4aecffd7f9a556e24e9fd857f.png");
  position:relative;
  top:15px;
  margin-right:20px;
}

.page-header h1:after {
    content: '\f060 \00a0 \00a0 назад';
    display: inline-block;
    font-family: "FontAwesome", "Montserrat";
    font-size: 10px;
    position: relative;
    bottom: 10px;
    right: -300px;
    margin-left: 20px;
    padding: 10px;
    background: #FFF2D8;
    border-radius: 10px;
}

.standard-page-content .breadcrumb, .standard-logo
{
display:none!important;
}


.page-header a
{
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat';
    padding:5px;
}
.page-header h1
{
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat';
    background: #FFB114;
    border-radius: 10px;
    padding:10px 20px 20px 20px;
    width:77%;

}

/* кнопки предыдущий/следующий*/
.lesson-navigation td .hidden-xs {
  display:none;
}

.lesson-navigation tr td
{
    border-top:none!important;
}

.lesson-navigation td a {
  background:var(--background);
  color:#333;
  padding:5px 10px;
  border-radius:5px;
  transition:all 0.3s;
}

.lesson-navigation td:first-child a:before {
  content:"←"
}

.lesson-navigation td:last-child a:after {
  content:"→"
}

.lesson-navigation td a {
  text-decoration:none;
}

.lesson-navigation td a:hover {
    opacity: 0.9;
  box-shadow: 0px 3px 0px #D0941F;
}

.text-center.hidden-xs span {
  display:block;
}

/*button UP*/

#polzun{
    display:none;
	position:fixed;
	right:0;
	top:calc(75vh-150px);
	z-index:100;
	padding:0!important;
    margin: 0!important;
    background-color: var(--border)!important;
    border-radius: 5px!important;
	color:white;
	border:none;
	outline: none; 
    font-family:'Montserrat';
    font-weight:bold;
    font-size:12px;

}

#polzun:hover {
    opacity: 0.9;
  box-shadow: 0px 3px 0px #D0941F;
}

.polzunok span {
    writing-mode: vertical-lr;
    text-orientation: upright;
    padding: 5px;

}

/* марикрованый список сожержания*/
.menu ul {
  list-style: none;
}

.menu a
{
    color:#333333!important;
}

.menu a:hover
{
    font-weight:bold!important;
    text-decoration:none!important;
}

.menu ul li::before {
     font-family: 'FontAwesome'!important;
  content: "\f063"; 
  color: var(--border); 
  display: inline-block; 
    width: 1em; 
}

/* Заголовок меню */
.menu .header {
position: relative;
padding: 10px 20px;
background: var(--background);
opacity: 0.8;
border-radius:10px;

}

.menu .header:hover,
.menu .header:focus {
opacity: 0.9;
box-shadow: 0px 3px 0px #D0941F;
}

.menu .header:active {
opacity: 1;
}

.menu .header p{
font-weight: 500;
font-size: 18px;
border-bottom: none;
}

/* Блок с пунктами меню */
.menu .f-text {
background-color: var(--list-col);
border-radius: 10px;
border: 1px solid var(--border);
-webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.12), 0 2px 2px 0 rgba(0,0,0,.24);
box-shadow: 0 0 2px 0 rgba(0,0,0,.12), 0 2px 2px 0 rgba(0,0,0,.24);
}

/* Список пунктов меню */
.menu-list {
padding-bottom: 20px;
        display: flex;
    justify-content: center;
    flex-direction: column;
}

.active {
font-size: 1.1em;
font-weight: bold;
}
/* Иконка открыть-закрыть */
.menu-icon {
position: relative;
display: inline-block;
width: 22px;
height: 2px;
margin-bottom: 6px;
background: var(--border);
margin-left: 10px;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.menu-icon::before, .menu-icon::after {
content: "";
position: absolute;
left: 0px;
background: var(--border);
width: 100%;
height: 2px;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
 

.menu-icon::before { top: 6px; }
.menu-icon::after {
top: -6px;
}
.menu-icon--close {
background: transparent;
}
.menu-icon.menu-icon--close::before, .menu-icon.menu-icon--close::after {
top: 0;
}
.menu-icon.menu-icon--close::before {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.menu-icon.menu-icon--close::after {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}


@media (max-width: 1000px){
    .page-header h1
    {
        width:100%;
    }
    .page-header h1:after {
    content: '\f060 \00a0 \00a0 назад';
    display: inline-block;
    font-family: "FontAwesome", "Montserrat";
    font-size: 10px;
    position: relative;
    bottom: 10px;
    right: -150px;
    margin-left: 20px;
    padding: 10px;
    background: #FFF2D8;
    border-radius: 10px;
}
}

@media (max-width: 760px){ 
	 
	#polzun{font-size:10px ;
    right:0px;
	top:calc(70vh);}
    .jp-video .jp-controls-holder {width: 300px!important;}
    .jp-speeding {font-size: 1em!important;}
	 
}

@media (max-width:400px) {
    
    .podcast-title 
    {
        font-size:16px;
    }
  .lesson-navigation td a {
      font-size:12px;
  }
    
    .page-header a
{
font-size:15px;
}

.page-header h1 {

    padding: 10px 0px 20px 0px;

}

.page-header h1 a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url("https://fs.getcourse.ru/fileservice/file/download/a/194520/sc/415/h/7e08b6b4aecffd7f9a556e24e9fd857f.png");
    background-size: contain;
    position: relative;
    top: 5px;
    right: -10px;
    /* margin-right: 50px; */
}

.page-header h1:after {
    content: '\f060 \00a0 \00a0 назад';
    display: inline-block;
    font-family: "FontAwesome", "Montserrat";
    font-size: 8px;
    position: relative;
    bottom: 5px;
    right: -15px;
    margin-left: 20px;
    padding: 5px;
    background: #FFF2D8;
    border-radius: 10px;
}
}

.two-btns .builder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
} 

.two-btns .builder .builder-item:not(.part-button) { 
  flex: 1 1 100%;
} 
.two-btns .builder .builder-item.part-button { 
  flex: 0 0 auto;
  margin-right: 10px;
  margin-left: 10px;
} 
.two-btns .part-button button { 
  min-height: 50px;
  max-width:280px;
  padding: 8px 30px;
} 
.two-btns .part-button .form-loader { 
  display: none!important;
}
.two-btns .btn {
	border-radius:10px;
	background-color:#FFF2D8!important;
	color: black!important;
	font-family: 'Montserrat', sans-serif;
	font-size:16px!important;
	box-shadow: 0px 3px 0px #D0941F;
	padding:5px 35px 4px 35px!important;

}

@media (max-width:720px)
	{
		 
.two-btns .part-button button {
    min-height: 50px;
    max-width: 130px;
    padding: 8px 30px;
    font-size: 10px!important;
}
		.two-btns .btn
		{
			font-size:12px!important;
			padding: 2px 10px 1px 10px!important;
		}
        .mylist .header, .toggle-box + label 
        {
            font-size:10px!important;
        }

}

        


