.loading_factory_iframe {
    width: 100dvw;
    height: 100dvh;
    z-index: 1000000;
    position: fixed;
    top: 0;
    left: 0;
}

.close_loading_factory_iframe {
    position: fixed;
    top: 15px;
    left: 15px;
    background: #ccc;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999999;
    border-radius: 8px;
}

.close_loading_factory_iframe span {
    font-size: 18px;
    font-weight: 600;
}

.loading_factory_museum {
    display: flex;
    flex-direction: row;
}

.loading_factory_museum-item {
    cursor: pointer;
    color: var(--color-black);
    height: var(--height-icon-ontop);
    width: var(--height-icon-ontop);
    min-width: 0px;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-around;
    border-radius: 10px;
    margin-left: 16px;
}

.loading_factory_museum-item div {
    display: none;
}

.loading_factory_museum-item-icon {
    height: var(--width-height-icon-right);
    width: var(--width-height-icon-right);
    margin-top: 2px;
}

.loading_factory_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.loading_factory_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(5, 47, 89);
  background: linear-gradient(
    90deg,
    rgba(5, 47, 89, 0.8856136204481793) 0%,
    rgba(7, 63, 120, 0.7539609593837535) 17%,
    rgba(7, 63, 120, 0.056481967787114895) 100%
  );
}

.loading_factory_wrapper {
    width: 90%;
    height: 100%;
    display: flex;
    z-index: 1;
    flex-direction: column;
}

.loading_factory_main {
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loading_factory_main_text {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
    gap: 5%;
    color: white;
    align-items: center;
    background-color: #ffffff00;
    padding: 20px;
    border-radius: 10px;
}

.loading_factory_main_text_title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;

}

.loading_factory_main_text_des {
  width: 100%;
  font-weight: 600;
  font-size: 0.8rem;

}

.loading_factory_main_text_explore {
  width: 50%;
  height: 10%;
  position: relative;
  display: none;
  /*background: rgb(5,47,89);*/
  /*background: linear-gradient(90deg, rgba(5,47,89,0.8856136204481793) 0%, rgba(7,63,120,1) 46%, rgba(24,104,187,1) 100%);  */
  /*border-radius: 10px;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*font-size: 140%;*/
  /*font-weight: 700;*/
}

.loading_factory_choosen {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
}

.loading_factory_choosen_top {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  /*justify-content: space-around;*/
  justify-content: center;
  align-items: center;
    gap: 20px;
}

.loading_factory_choosen_top_item {
  width: 90%;
  /*height: 45%;*/
  height: fit-content;
  border: 2px solid white;
  border-radius: 10px;
  background: rgb(5,47,89);
  background: linear-gradient(90deg, rgba(5,47,89,0.8856136204481793) 0%, rgba(7,63,120,1) 46%, rgba(24,104,187,1) 100%); 
  overflow: hidden;
  display: flex;
  user-select: none;
  
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.loading_factory_choosen_top_item img {
  height: 100%;
  width: 75%;
  border-radius: 14px;
  object-fit: cover;
}


.loading_factory_choosen_top_item>div{
  height: 100%;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading_factory_choosen_top_item>div>span {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #092b4f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading_factory_choosen_greet,
.loading_factory_choosen_explore {
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading_factory_choosen_greet_btn,
.loading_factory_choosen_explore_btn {
  width: 90%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #092b4f;
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: .2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
  animation: 1.5s linear 0.5s ctafactorybtn infinite;

}

.loading_factory_choosen_explore_btn {
    display: none;
}

.loading_factory_choosen_greet_btn::after {
  background: rgb(5,47,89);
  background: linear-gradient(90deg, rgba(5,47,89,0.8856136204481793) 0%, rgba(7,63,120,1) 46%, rgba(24,104,187,1) 100%);  border-radius: 16px;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: .2s transform ease-out;
  will-change: transform;
  z-index: -1;
  animation: 1.5s linear 0.5s ctafactorybtnafter infinite;

}

.loading_factory_choosen_greet_btn:hover::after {
  transform: translate(0, 0);
}

.loading_factory_choosen_greet_btn:hover {
  transform: scale(1.05);
  will-change: transform;
}

@keyframes ctafactorybtn {
  0%   {
        transform: scale(1);
        will-change: transform;         
  }
  50%  {
        transform: scale(1.05);
        will-change: transform;
      
  }
  100% {
        transform: scale(1);
        will-change: transform;      
  }
}

@keyframes ctafactorybtnafter {
  0%   {
    transform: translate(0, 0);
       
  }
  50%  {
    transform: translate(-100%, 0) rotate(10deg);

      
  }
  100% {
    transform: translate(0, 0);
      
  }
}



.loading_factory_detail {
  width: 90%;
  height: 90%;
  z-index: 1;
  display: none;
  position: relative;
}

.loading_factory_detail_title {
  width: 100%;
  height: 10%;
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading_factory_detail_title > div {
  position: absolute;
  top: -4%;
  left: -4%;
}

.loading_factory_detail_opt {
  width: 100%;
  max-height: 90%;
  display: flex;
  flex-wrap: wrap;
  overflow-y: scroll;
}

.loading_factory_detail_opt::-webkit-scrollbar {
  display: none;
}

.loading_factory_detail_opt_item {
  width: 400px;
  height: 150px;
  border: 2px solid white;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(5,47,89,0.8856136204481793) 0%, rgba(7,63,120,1) 46%, rgba(24,104,187,1) 100%);
  overflow: hidden;
  display: flex;
  margin-right: 10px;
  margin-bottom: 10px;
}

.loading_factory_detail_opt_item img {
  height: 100%;
  width: 75%;
  border-radius: 14px;
  object-fit: cover;
}


.loading_factory_detail_opt_item>div{
  height: 100%;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading_factory_detail_opt_item>div>span {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #092b4f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading_factory_popup {
  position: fixed; /* Sit on top of the page content */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.loading_factory_popup_detail {
    width: 95%;
    height: 70%;
    background-color: white;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;

}

.loading_factory_popup_title {
  width: 80%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading_factory_popup_title span {
  font-size: 1.2rem;
  color: #092b4f;
  font-weight: 800;
  text-transform: uppercase;
}

.loading_factory_popup_title > div {
  position: absolute;
  top: 1%;
  right: 1%;
}

.loading_factory_popup_list {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: scroll;
    gap: 5%;
}

.loading_factory_popup_list::-webkit-scrollbar {
    border-radius: 0;
    width: 8px;
}
.loading_factory_popup_list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    /*background-color: rgba(22, 24, 35, 0.1);*/
    background-color: #075caf61;
}

.loading_factory_popup_list::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0);
}


.loading_factory_popup_item {
    width: 95%;
    height: 30%;
    background: rgb(5,47,89);
    background: linear-gradient(90deg, rgba(5,47,89,0.8856136204481793) 0%, rgba(7,63,120,1) 46%, rgba(24,104,187,1) 100%);
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.loading_factory_popup_item>div {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 5%;
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.loading_factory_popup_item img {
  width: 30%;
  height: calc(100% - 16px);
  border-radius: 16px;
  margin-right: 8px;
}
.titleFactory{
    color: black;
    font-weight: bold;
    font-size: 1rem;
    font-family: "Plus Jakarta Sans Bold";
    display: contents;
}
.titleFactory>svg{
    margin-right: 10px;
}

@media only screen and (min-width: 576px) {
    .loading_factory_museum-item {
        min-width: 100px;
    }
    
    .loading_factory_museum-item div {
        display: block;
        line-height: 21px;
        font-weight: 400;
        font-size: 14px;
    }
    
    .loading_factory_wrapper {
      width: 90%;
      height: 90%;
      gap: 2%;
      flex-direction: row;
    }
    
    
    .loading_factory_main {
      width: 55%;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .loading_factory_main_text {
        align-items: unset;
    }
    
    .loading_factory_main_text_title {
      width: 100%;
      font-size: 2.2rem;
      font-weight: 700;
      text-align: left;
    }
        
    .loading_factory_main_text_des {
        font-size: 0.9rem;

    }
    
    .loading_factory_choosen_top_item {
        /*height: 33%;*/
    }
        
    .loading_factory_choosen {
      width: 43%;
      height: 100%;
    }
    
    .loading_factory_main_text_explore {
        display: block;
    }
    
    .loading_factory_popup_detail {
        width: 70%;
    
    }
    
    .loading_factory_popup_title span {
        font-size: 1.2rem;
    }
    
    .loading_factory_popup_item>div {
        font-size: 1.2rem;

    }

    
    .loading_factory_detail_opt_item {
        width: 250px;
        height: 120px;
    }
}

@media only screen and (min-width: 768px) {

    
    
    
    
    .loading_factory_popup_detail {
        width: 60%;
    }
    
    .loading_factory_popup_title span {
        font-size: 1.4rem;
    }
    
    .loading_factory_popup_item>div {
        font-size: 1.3rem;

    }
}

@media only screen and (min-width: 992px) {
    
    .loading_factory_main {
       width: 65%;
    }
    
    
    .loading_factory_choosen {
        width: 33%;

    }
    
    .loading_factory_main_text_title {
        font-size: 2.8rem;

    }
    
    .loading_factory_main_text_des {
        width: 100%;
        font-size: 1rem;
    }
    
    .loading_factory_choosen_greet_btn,
    .loading_factory_choosen_explore_btn {
        font-size: 1.4rem;

    }
    
    .loading_factory_popup_detail {
        width: 50%;
    }
    
}

@media only screen and (min-width: 1200px) {
    .loading_factory_popup_detail {
        width: 50%;
    }
}

@media only screen and (min-width: 1400px) {
    .loading_factory_popup_detail {
        width: 45%;
    }
}

