/*==================================
  Configurator
==================================*/

.configurator-active {
    padding-right: 17px;
    overflow: hidden;
  }
  
  .configurator-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(33, 37, 41, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
  
  .configurator-popup {
    position: relative;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    width: 100%;
    height: 100%;
    padding: 16px;
    background-color: var(--white);
    overflow-y: auto;
  }
  
  .configurator-popup #configurator-loader {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .configurator-popup-container.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
  }
  
  .configurator-popup-content {
    width: 100%;
    height: 100%;
  }
  
  
  .close-configurator {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: var(--white);
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    border-radius: 100%;
  }
  
  .close-configurator:hover {
    background-color: #000;
  }
  .close-configurator:hover:before,
  .close-configurator:hover:after {
    background-color: #fff;
  }

  .close-configurator:before,
  .close-configurator:after {
    content: "";
    width: 2px;
    height: 20px;
    background-color: var(--accent-700);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
  
  .close-configurator:before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  .close-configurator:after {
    transform: translate(-50%, -50%) rotate(45deg);
  }