

/* Start:/kdp/kdp_style.css?17782183749402*/
@charset "UTF-8";
.kdp_wrapper {
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.kdp_grid_frame {
  max-width: 960px;
  margin: 0 auto;
  float: left;
  padding-top: 80px;
  padding-bottom: 115px;
  display: grid;
  grid-template-columns: 1fr 245px;
  grid-template-rows: auto 1fr;
  column-gap: 138px;
}
.kdp_grid_frame * {
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .kdp_grid_frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: unset;
    padding-top: 52px;
    padding-bottom: 55px;
  }
}
.kdp_grid_frame.row {
  float: unset;
}
.kdp_grid_frame .description_box {
  margin-bottom: 70px;
  height: fit-content;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .kdp_grid_frame .description_box {
    padding-top: 0;
    margin-bottom: 50px;
  }
}
.kdp_grid_frame .description_box .title {
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: Arial, sans-serif;
}
.kdp_grid_frame .description_box .txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.kdp_grid_frame .description_box .txt .bold {
  font-weight: bold;
}
.kdp_grid_frame .description_box .tooltip_wrapper {
  position: relative;
  cursor: pointer;
}
.kdp_grid_frame .description_box .tooltip_wrapper.opened .text_dropdown {
  max-height: fit-content;
}
.kdp_grid_frame .description_box .tooltip_wrapper.opened .open_btn {
  display: none;
}
.kdp_grid_frame .description_box .tooltip_wrapper.opened .close_btn {
  display: block;
}
.kdp_grid_frame .description_box .tooltip_wrapper .close_btn, .kdp_grid_frame .description_box .tooltip_wrapper .open_btn {
  transition: opacity 0.3s;
  font-size: 12px;
  color: #828282;
  font-weight: 300;
  border: none;
  background: none;
}
.kdp_grid_frame .description_box .tooltip_wrapper .close_btn {
  display: none;
}
.kdp_grid_frame .description_box .tooltip_wrapper .open_btn {
  display: block;
}
.kdp_grid_frame .description_box .text_dropdown {
  max-height: 84px;
  transition: max-height 0.3s;
  overflow-y: hidden;
  margin-bottom: 8px;
}
.kdp_grid_frame .data_collection_box {
  width: 100%;
  grid-column: 1/2;
}
@media (max-width: 767px) {
  .kdp_grid_frame .data_collection_box {
    grid-row: 3/4;
  }
}
.kdp_grid_frame .data_collection_box .kdp_mobile_breakpoint {
  display: none;
  /*Жуткий костыль что-бы заголовок инпутов был на одной высоте*/
  /* From 870px to 768px: Display block */
  /* From 767px to 465px: Display none */
  /* From 464px and smaller: Display block */
}
@media (max-width: 860px) and (min-width: 768px) {
  .kdp_grid_frame .data_collection_box .kdp_mobile_breakpoint {
    display: block;
  }
}
@media (max-width: 767px) and (min-width: 465px) {
  .kdp_grid_frame .data_collection_box .kdp_mobile_breakpoint {
    display: none;
  }
}
@media (max-width: 477px) {
  .kdp_grid_frame .data_collection_box .kdp_mobile_breakpoint {
    display: block;
  }
}
.kdp_grid_frame .data_collection_box .description {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #2A2A2A;
  line-height: 150%;
  margin-bottom: 20px;
}
.kdp_grid_frame .data_collection_box .grid_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  margin-bottom: 21px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .kdp_grid_frame .data_collection_box .grid_wrapper {
    max-width: 453px;
  }
}
@media (max-width: 363px) {
  .kdp_grid_frame .data_collection_box .grid_wrapper .input_title {
    white-space: initial;
  }
}
.kdp_grid_frame .data_collection_box .grid_wrapper .calc__label {
  margin-top: unset;
  min-width: 50%;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  font-size: 11px;
  line-height: 16px;
  color: #999999;
}
.kdp_grid_frame .data_collection_box .grid_wrapper .calc__label .calc__input {
  display: block;
  font-size: 14px;
  padding: 7px 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  color: #3f3f3f;
  margin-top: 5px;
}
@media (max-width: 363px) {
  .kdp_grid_frame .data_collection_box .grid_wrapper .calc__label .calc__input {
    font-size: 12px;
  }
}
.kdp_grid_frame .data_collection_box .grid_wrapper .calc__label .calc__input-error {
  padding-top: 5px;
  font-size: 10px;
  color: red;
  position: absolute;
  bottom: -20px;
}
.kdp_grid_frame .data_collection_box .instruction_link {
  font-size: 12px;
  font-weight: 400;
  color: #EF7F22;
  line-height: 140.5%;
  font-family: Helvetica, sans-serif;
  display: flex;
  margin-bottom: 23px;
}
.kdp_grid_frame .button {
  display: flex;
  border: none;
  background-color: #EF7F22;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  line-height: 127.1%;
  padding: 10px 26px;
  border-radius: 10px;
  cursor: pointer;
  max-width: max-content;
  justify-content: center;
}
@media (max-width: 767px) {
  .kdp_grid_frame .button {
    max-width: 100%;
  }
}
.kdp_grid_frame .extended-confirmation-submit-container {
  margin-top: 2em;
  display: flex;
  justify-content: center;
}
.kdp_grid_frame .video_box {
  width: 100%;
  grid-column: 2/3;
  grid-row: 1/3;
}
@media (max-width: 767px) {
  .kdp_grid_frame .video_box {
    grid-row: 2/3;
    grid-column: 1;
    margin-bottom: 42px;
  }
}
.kdp_grid_frame .video_box .thumbnail_wrapper {
  position: relative;
  border-radius: 10px;
  border: solid 2px #D9D9D9;
  overflow: hidden;
  overflow: clip;
  box-sizing: border-box;
  max-height: 434px;
}
@media (max-width: 767px) {
  .kdp_grid_frame .video_box .thumbnail_wrapper {
    display: none;
  }
}
.kdp_grid_frame .video_box .video_thumbnail {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/kdp/./assets/img/video_instruction_thumbnail.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}
.kdp_grid_frame .video_box .desktop_video_frame {
  width: 100%;
  box-sizing: border-box;
  display: flex;
}
.kdp_grid_frame .video_box .button {
  display: flex;
  padding: 8px 25px;
  align-items: center;
  border: solid 1px #EF7F22;
  border-radius: 10px;
  justify-content: center;
  max-width: 347px;
}
@media (max-width: 767px) {
  .kdp_grid_frame .video_box .button {
    padding: 8px 10px;
  }
}
.kdp_grid_frame .video_box .button p {
  color: #EF7F22;
  font-size: 14px;
  font-weight: 400;
  line-height: 127.1%;
  white-space: nowrap;
}
.kdp_grid_frame .video_box .button img {
  margin-right: 12px;
}
.kdp_grid_frame .video_box .pdf_instruction_button {
  margin-top: 32px;
  background: none;
}
@media (max-width: 767px) {
  .kdp_grid_frame .video_box .pdf_instruction_button {
    margin-top: 16px;
  }
}
.kdp_grid_frame .video_box .video_instruction_button {
  background: none;
  display: none;
}
@media (max-width: 767px) {
  .kdp_grid_frame .video_box .video_instruction_button {
    display: flex;
  }
}
.kdp_grid_frame .extended-confirmation-container {
  position: relative;
}

[data-remodal-id=mobile_video_instruction_modal] {
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}
[data-remodal-id=mobile_video_instruction_modal] .mobile_modal_close {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 20px;
  width: 20px;
  z-index: 2;
}
[data-remodal-id=mobile_video_instruction_modal] .mobile_video_frame {
  height: 80vh;
  width: 100%;
}

.popup-container.hide {
  display: none;
}

.popup-container {
  position: fixed;
  z-index: 1046;
  background: rgba(255, 255, 255, 0.49);
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.popup-container .popup {
  max-width: 390px;
  width: 95%;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  padding: 25px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.popup-container .popup .popup-title {
  color: #ef7f22;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
}
.popup-container .popup .popup-title.gray {
  color: #7e7e7e;
}
.popup-container .popup .popup-title.black {
  color: #333333;
}
.popup-container .popup.hide {
  display: none;
}
.popup-container .popup .popup-text {
  font-size: 14px;
  margin-bottom: 21px;
  line-height: 21px;
}
.popup-container .popup a {
  color: #ef7f22;
  text-decoration: none;
}

.kdp-confirmation-wait-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-title, .popup-text {
  text-align: center;
}

.popup-title {
  font-size: 18px !important;
  color: #000000 !important;
  padding-bottom: 0.5em;
  padding-top: 1.5em;
}

.popup-text:last-child {
  margin-bottom: 0;
}

.loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #ef7f22;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s linear infinite;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  z-index: 99;
  display: none;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
  background-color: rgba(204, 204, 204, 0.5);
}

/*# sourceMappingURL=kdp_style.css.map */

/* End */
/* /kdp/kdp_style.css?17782183749402 */
