.viewer-loader{
  position: absolute;
  display: flex;
  width: 192px;
  height: 192px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  z-index: 25;
}

.viewer-loader img{
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}

.ar_conf_container {
  display: flex;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  /* width: 100vw; */
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}

.summary.entry-summary {
  /* height: 500px; */
  /* overflow-y: auto; */
  position: relative;
  padding-left: 65px;
}

.ar_model_viewer {
  position: relative;
}

.ar_filter *{
  box-sizing: border-box;
}

.ar_filter {
  width: 430px;
  position: relative;
}

.ar_filter .ar_filter_group {
  padding-top: 16px;
  border-top: 1px solid #E2E2E2;
}

.ar_filter .ar_filter_group .ar_filter_header {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ar_filter .ar_filter_group .ar_filter_number {
  color: #FFF;
  
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 11px;
  background: #1D1D1D;
  padding: 4px 8px;
  white-space: nowrap;
}

.ar_filter .ar_filter_group .ar_filter_caption {
  color: var(--colors-black, #333);
  
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

.ar_filter .ar_filter_group .ar_filter_group_toggle {
  content: url("../img/front/ar-ui-icons/arrow-up.png");
}

.ar_filter .ar_filter_group .ar_filter_group_toggle.closed {
  content: url("../img/front/ar-ui-icons/arrow-down.png");
}

.ar_filter .ar_filter_group .ar_filter_options.closed {
  display: none;
}

.ar_filter .ar_filter_group .ar_filter_options_result {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.ar_filter .ar_filter_group .ar_filter_options_result_caption {
  color: var(--dark-gray, #5D5D5D);
  
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
  margin-bottom: 2px;
}

.ar_filter .ar_filter_group .ar_filter_options_result_caption::first-letter {
  text-transform: uppercase;
}

.ar_filter .ar_filter_group .ar_filter_options_result_item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  margin-bottom: 8px;
  background: #F2F2F2;
}

.ar_filter .ar_filter_group .ar_filter_options_result_item:last-child {
  margin-bottom: 16px;
}

.ar_filter .ar_filter_group .ar_filter_options_result_name {
  color: var(--colors-black, #333);
  
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

.ar_filter .ar_filter_group .ar_filter_options_result_price {
  color: #1D1D1D;
  text-align: right;
  
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 150px;
}

.ar_filter .ar_filter_group .ar_filter_description {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 20px;

  color: var(--dark-gray, #5D5D5D);
  
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 78px;
  cursor: pointer;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option .image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--gray, #CECECE);
  margin-top: 9px;
  margin-bottom: 9px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option .image img{
  width: 58px;
  height: 58px;
  border-radius: 7px;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option .component_title {
  color: var(--black, #000);
  text-align: center;
  
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ar_filter .option {
  position: relative;
}

.ar_filter .ar_option_description_tooltip {
  content: url("../img/front/ar-ui-icons/question.svg");
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 1;
}

.ar_filter .option.active .ar_option_description_tooltip {
  content: url("../img/front/ar-ui-icons/question.svg");
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 1;
}

.ar_option_description {
  display: block;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translate(-50%, -100%);
  width: 205px;
  padding: 16px;
  background-color: #F8F8F8;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.17));
  color: #454545;
  
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  transition: opacity 0.3s ease;
  z-index: -9999;
}

.ar_filter .ar_option_description::after {
  content: url("../img/front/ar-ui-icons/tooltip_triangle.png");
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  margin: 0 auto;
}

.ar_filter .ar_option_description_tooltip:hover + .ar_option_description {
  opacity: 1;
  z-index: 9999;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option.active .image {
  border: 1px solid var(--green, #336D3F);
}


.ar_filter .ar_filter_group .ar_filter_options.type_select .option.active .component_title {
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option.disabled .component_title {
  color: var(--gray, #CECECE);
  text-align: center;
  
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  cursor: auto;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option.active .image::before {
  content: url("../img/front/ar-ui-icons/accept.svg");
  position: absolute;
  top: -17px;
  left: -17px;
}

.ar_filter .ar_filter_group.disabled{
  display: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option.disabled {
  position: relative;
  cursor: auto;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option.disabled .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.75);
  cursor: auto;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select .option.disabled .image::before {
  content: url("../img/front/ar-ui-icons/lock.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 0;
  cursor: auto;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option .component_title {
  display: flex;
  padding: 6px 14px;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  border: 1px solid var(--gray, #CECECE);

  color: var(--black, #000);
  text-align: center;
  
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ar_filter_options.type_range .option {
  display: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option.active .component_title {
  border: 1px solid var(--green, #336D3F);
  color: var(--green, #336D3F);
  text-align: center;
  
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option.active .component_title::before {
  content: url("../img/front/ar-ui-icons/accept.svg");
  position: absolute;
  top: -16px;
  left: -16px;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option.disabled .component_title {
  position: relative;
  border: 1px solid var(--gray, #CECECE);

  color: var(--gray, #CECECE);
  text-align: center;
  
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option.disabled .component_title::before {
  content: url("../img/front/ar-ui-icons/lock-small.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option.disabled {
  cursor: auto;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_select_no_photo .option .image {
  display: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_dropdown .option {
  display: none;
}

.ar_filter .ar_filter_group .ar_filter_options .option.disabled * {
  cursor: auto;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options .option.hidden {
  display: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  margin-top: 16px;
  margin-bottom: 32px;
}
.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option {
  display: flex;
  cursor: pointer;
  margin-top: 16px;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option .image {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background: url("../img/front/ar-ui-icons/checkbox-unchecked.svg") no-repeat center / contain;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option.active .image {
  background: url("../img/front/ar-ui-icons/checkbox-checked.svg") no-repeat center / contain;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option.disabled .image {
  background: url("../img/front/ar-ui-icons/checkbox-disabled.svg") no-repeat center / contain;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option.disabled {
  cursor: auto;
  pointer-events: none;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option .component_title {
  color: var(--colors-black, #333);
  font-family: Ubuntu;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option.active .component_title {
  color: var(--colors-main, #9F8869);
  font-weight: 700;
}

.ar_filter .ar_filter_group .ar_filter_options.type_checkbox .option.disabled .component_title {
  color: #C3C3C3;
  pointer-events: none;
}

.ar_price .ar_price_amount {
    font-size: 30px;
    font-weight: bold;
}

.ar_price .currency_symbol {
    font-size: 30px;
    color: #0a4b78;
    font-weight: bold;

}
.ar_model_viewer {
    width: 500px;
    height: 500px;
    display: block;
    float: left;
}

.ar_model_viewer canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hidden_option {display: none;}

.ar_summary .ar_summary_caption {
  color: black;
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  margin-bottom: 32px;
}

.ar_summary .ar_summary_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #CDCDCD;
  padding-bottom: 16px;
  margin-bottom: 28px;
}

.ar_summary .ar_summary_list .ar_summary_list_item {
  display: flex;
  flex-direction: column;
}

.ar_summary .ar_summary_list .ar_summary_list_item .ar_summary_list_group {
  color: #C3C3C3;
  font-family: Ubuntu;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ar_summary .ar_summary_list .ar_summary_list_item .ar_summary_list_components {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ar_summary .ar_summary_list .ar_summary_list_item .ar_summary_list_components .ar_summary_list_components_component {
  display: flex;
  justify-content: space-between;
}

.ar_summary .ar_summary_list .ar_summary_list_item .ar_summary_list_components .ar_summary_list_components_component .ar_summary_list_components_component_title {
  color: var(--colors-black, #333);
  font-family: Ubuntu;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ar_summary .ar_summary_list .ar_summary_list_item .ar_summary_list_components .ar_summary_list_components_component .ar_summary_list_components_component_price {
  color: var(--colors-black, #333);
  text-align: right;
  font-family: Ubuntu;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input-text .qty .text {
  height: 140px;
}


@media only screen and (max-width: 1349px) {
  .tbl-window {
    width: calc(100% - 443px);
  }
}

@media only screen and (max-width: 1199px) {
  .tbl-window {
    width: calc(100% - 360px);
  }
}

@media only screen and (max-width: 991px) {
  .tbl-container {
    display: block;
    align-items: center;
    justify-content: flex-start;
  }

  .tbl-window {
    position: relative;
    top: auto;
    left: auto;
    height: 600px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .tbl-container {
    position: relative;
  }

  .tbl-window {
    height: calc(100vw + -60px);
    position: sticky;
    top: 0;
  }

  .tbl-window-btn {
    bottom: 28px;
    right: auto;
    left: 15px;
  }

  .tbl-window-btn-item:not(:last-child) {
    margin-right: 12px;
  }
  .tbl-window-btn-item img, .tbl-window-btn-item svg {
    margin-bottom: 4px;
    width: auto;
    height: 22px;
  }
  .tbl-window-btn-text {
    font-size: 11px;
    line-height: 14px;
  }

  .tbl-info-box {
    width: calc(100% - 15px);
  }

  .tbl-qr-img {
    width: 257px;
  }
}

