#configurationcontainer {
    display:flex;
    flex-direction:column;
    /* gap:32px; */
    padding: 32px;
    background: #f7f6f2;
    align-items:stretch;
}

#configurationcontainer .selection.ui.dropdown {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
}

.lt-fieldlabel {
    /* text-transform:uppercase; */
    font-weight:600;
}

.lt-title-main-wrap {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 12px;
    /* margin-bottom: 12px; */
    padding-top:12px;
    gap: 8px;
    justify-content:space-between;
    cursor:pointer;
    opacity:.8;
}

.lt-title-main-wrap:hover {
    opacity: 1;
}

.lt-chosen-option {
    font-weight: 600;
    font-size: 12px;
    opacity: .5;
}

.lt-fieldlabel .step-label {
    font-size:.8em;
    font-weight:normal;
    text-transform:uppercase;
}

.lt-title {
    text-transform:uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lt-title-wrap {
    display: flex;
    align-items: baseline;
    gap:8px;
}

.lt-title-wrap > a {
    display:flex;
}

.lt-status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.05);
   
    border-radius: 100%;
    color: var(--green);
}

.lt-status--done {
    background: var(--green_light);
}

.sm-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sm-option {
    width: 100%;
    max-width: 130px;
    cursor:pointer;
    position:relative;
}

.sm-options--more-than-12 .sm-option {
    max-width:100px;
}

.sm-option.sm-option--color {
    max-width: 56px;
}

.sm-option__title {
    font-weight:600;
    font-size:12px;
    margin-top:4px;
    text-align:center;
}

.sm-options--more-than-12 .sm-option__title {
    font-size:10px;
}

.sm-option__image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
    background: #fff;
    border:2px solid transparent;
}

.sm-option--color .sm-option__image {
    border:none;
}  

.sm-option--color .sm-option__image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 100%;
}

.sm-option--active .sm-option__title {
    color: var(--brown_dark);
}

.sm-option--active:not(.sm-option--color) .sm-option__image {
    border-color: var(--brown_dark);
}

.sm-option--active.sm-option--color:after {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    content: '';
    display: block;
    left: -5px;
    top: -5px;
    z-index: 0;
    border-radius: 100%;
    border: 2px solid var(--brown_dark);
}

#configurationcontainer .tippy-box {
    font-size:12px;
    font-weight:600;
}

#configurationcontainer .tippy-box{
    background:  var(--brown_dark);
}

#configurationcontainer .tippy-arrow {
    color:var(--brown_dark);   
}

.product-images.has-sticky {
    position: sticky;
}

.viewer-wrap {
    position:relative;
}

.viewer-wrap .show-dimensions-checkbox {
    /* position:absolute;
    left:24px;
    bottom:25px; */
    padding:0;
    /* z-index: 1; */
}

.viewer-wrap .viewer__settings {
  left:24px;
  top:25px;
  position:absolute;
  z-index: 1;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.viewer-wrap .viewer__3dlabel {
  width:42px;
  position:absolute;
  right:24px;
  top:25px;
  z-index:1;
}

.viewer-wrap .viewer__3dlabel img {
  width:100%;
  height:auto;
}

.viewer-wrap .show-dimensions-checkbox label {
  margin:0;
  font-size:10px;
  font-weight:bold;
  padding-left:30px;
  line-height:22px;
}

.viewer-wrap .show-dimensions-checkbox label:before,
.viewer-wrap .show-dimensions-checkbox label:after {
  width:22px !important;
  height:22px !important;
  line-height:22px !important;
}

.viewer-wrap .configurator-share {
  --share_padding: 24px;
  --share_icon__wrap_size: 22px;
  --share_icon_size: 14px;
  --share_title: 10px;

  /* position: absolute;
  bottom: var(--share_padding);
  right: var(--share_padding);
  z-index: 1; */
  /* max-width: calc(100% - calc(var(--share_padding) * 2)); */
}

.viewer-wrap .configurator-share .inner {
  gap: 8px;
  /* max-width: 120px; */
}
.viewer-wrap .configurator-share .share-icon {
  min-width: var(--share_icon__wrap_size);
  max-width: var(--share_icon__wrap_size);
  min-height: var(--share_icon__wrap_size);
  max-height: var(--share_icon__wrap_size);
  background: rgba(134,113,90,0.14);
  border-radius: 4px;
}
.viewer-wrap .configurator-share .share-icon i {
  color: var(--brown_dark);
  font-size: var(--share_icon_size);
}
.viewer-wrap .configurator-share .title {
  font-size: var(--share_title);
}
.viewer-wrap .configurator-share .subtitle {
  font-size: 12px;
  color: var(--grey_dark);
}

#configurator-share-popup {
  display: none;
  width: 100%;
  max-width: 500px;
  padding: 32px 40px
}
#configurator-share-popup .inner {
  gap: 24px;
}
#configurator-share-popup .title {
  font-size: 20px;
  font-weight: 700;
}
#configurator-share-popup .subtitle {
  font-size: 14px;
}
#configurator-share-popup form,
#configurator-share-popup .input-wrap {
  gap: 10px;
}
#configurator-share-popup .input-wrap .standard-input {
  border: 1px solid #eee;
}
#configurator-share-popup .input-wrap.relative .standard-input {
  color: rgba(0,0,0,0.3);
  padding-right: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#configurator-share-popup .input-title {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
}
#configurator-share-popup .input-wrap .btn {
  height: 50px;
}


#configurator-share-popup .light-btn.absolute {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8E7B65;
  background: #8E7B651A;
  padding: 0 12px;
  gap: 4px;
}

#configurator-share-popup .input-wrap a .load-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
}
#configurator-share-popup .input-wrap a .load-icon,
#configurator-share-popup .input-wrap a.loading .btn-content {
  opacity: 0;
}
#configurator-share-popup .input-wrap a.loading .load-icon,
#configurator-share-popup .input-wrap a .btn-content {
  opacity: 1;
}
#configurator-share-popup .input-wrap a.loading .load-icon i {
  -webkit-animation: rotation 2s infinite linear;
}
@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(-359deg);}
}

.absolute {
  position: absolute;
}
.flex-1 {
  flex: 1;
}
.no-mouse {
  pointer-events: none;
}
@media (max-width: 500px) {
  .viewer-wrap .configurator-share {
    --share_padding: 16px;
    --share_icon__wrap_size: 32px;
    --share_icon_size: 18px;
    --share_title: 12px;
  }
  .viewer-wrap .configurator-share .subtitle {
    display: none;
  }

  #configurator-share-popup {
    max-width: calc(100vw - 30px);
    padding: 16px 20px
  }
}


body .TSD-label {
    /* background: #86715a !important;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px; */
    background: transparent !important;
    padding: 2px 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform:uppercase;
    border-radius: 4px;
    color: #fff !important;
    background: var(--brown_dark) !important;
}

.lt-fieldinput--done {
    display:none;
}

.lt-fieldinput {
    margin-bottom:32px;
    display:block;
}

.TSD-3d-indicator {
  right: unset!important;
  left: 20px!important;
  display:none !important;
}

.ui.dropdown>.text {
  height: auto;
  line-height: normal;
  padding-right:40px;
  font-size:90%;
}