/*Answers list*/

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #EE5B08;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  border: #EE5B08 1px solid;
  border-radius: 3px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.3s linear;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.form__block.collapsible-content {
    margin: 0;
}

.collapsible:after {
  content: '+';
  font-size: 16px;
  color: white;
  float: right;
  margin-left: 5px;
  transition: all 0.3s linear;
}

.collapsible.active:after,
.collapsible:hover:after {
  color: black;
  transition: all 0.3s linear;
}

.collapsible.active:after {
  content: "-";
}

.form__brdr .check__mask {
  border: 0.0625rem solid #DED4D4;
  background-color: #fff;
}
.check__inpt:disabled + .check__mask {
    background-color: #f2f1f1;
}

/* Load form block styles */
.form_opacity {
  opacity: .5;
  pointer-events: none
}
/* End Load form block styles */
.form__description__quiz {
  display: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #67D3F5;
}

.popup-bg {
    z-index: 1100;
}
.form__block .form__grade.selected {
    background-color:  #e6eff5;
}
.form__grade {
  padding-bottom: 10px;
}
@media (max-width: 375px) {
    .question__img {
      width: auto;
  }
}
/* final screen redirect between domains START */
.redirect__agree {
  padding: 15px 0;
  display: flex;
  font-size: 12px;
  font-weight: 100;
  line-height: 1.1;
  align-items: flex-start;
  margin-top: 1em;
}
.redirect__agree label {
  margin-right: 10px;
}
.redirect__agree .check__mask:not(:first-child) {
  margin-left: 0;
}
/* final screen redirect between domains END */
/* privacy START */
.privacy__table {
  width: 100%;
}
.privacy__table td, .privacy__table th {
  border: solid 1px black;
  padding: 0.625em;
}
.privacy__content a {
  color: #089BEE;
}
/* privacy END */
.prog {
  display: flex;
}

.popup-leave-suggest {
  opacity: 0.9;
}
.popup-leave-suggest .progress, .popup-leave-suggest .progress__start {
  border-radius: 15px;
}
.popup-leave-suggest .progress__txt {
  padding: 0 1.25em
}
.popup-leave-suggest .progress__start {
  background-color: #31D0C7;
}
.popup-leave-suggest .progress__start:hover {
  opacity: 0.7;
}
@media (max-width: 479px) {
  .popup-leave-suggest .progress__txt {
    padding: 1.25em
  }
}

@media (max-width: 479px) {
    .progress__start {
      font-size: 16px;
    }
}

.fields-table th {
  background-color: unset;
}
.fields-table tr {
  width: 100%;
}

/*.fields-table th:first-child {*/
/*  max-width: 230px;*/
/*  width: 230px !important;*/
/*}*/

/*.fields-table th:not(:first-child) {*/
/*  width: min-content;*/
/*}*/

@media (max-width: 767px) {
  .fields-table th {
    min-width: 160px;
  }
}
@media (max-width: 479px) {
  .fields-table th {
    min-width: 130px;
  }
}

.cookie-banner {
    position: fixed;
    bottom: 10px; /* Окно будет чуть выше низа экрана */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.cookie-banner p {
    flex: 1;
    margin-right: 10px;
    font-size: 14px;
}

.accept-btn {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    max-width: 40%;
}

.close-btn {
    font-size: 18px;
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 600px) {
    .cookie-banner p {
        font-size: 12px;
    }

    .accept-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}
