#popup.popup-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  z-index: 1000;
}

#popup .popup-img {
  object-fit: none;
  width: 100%;
  height: 100%;
  object-position: center;
}

#popup .btn-group {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 2px 5px;
  border-radius: 5px;
  display: flex;
  gap: 7px;
}
#popup .btn-g-icon {
  height: 20px;
  width: 20px;
}
#popup .button-g {
  display: flex;
  background-color: #d6d6d6;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  cursor: pointer;
  border-radius: 6px;
}
#popup .button-g:hover {
  background-color: rgb(71, 70, 70);
  color: white;
}

/* INFO DRAWER PANEL */
#info-drawer {
  position: fixed;
  right: -437px;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background-color: #000000;
  z-index: 1500;
  box-shadow: -4px 0px 7px -2px rgba(10, 10, 10, 0.88);
  -webkit-box-shadow: -4px 0px 7px -2px rgba(10, 10, 10, 0.88);
  -moz-box-shadow: -4px 0px 7px -2px rgba(10, 10, 10, 0.88);
  transition: right 0.3s ease-in-out;
}
@media (min-width: 576px) {
  #info-drawer {
    width: 400px;
  }
}
#info-drawer.sidebar-open {
  right: 0; /* Visible when open class is applied */
}
#info-drawer .info-close {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background-color: #d6d6d6;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#info-drawer .info-close-icon {
  height: 20px;
  width: 20px;
}

#info-drawer .drawer-header {
  height: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #d6d6d630;
}
#info-drawer .drawer-header-title {
  color: white;
  font-family: sans-serif;
  font-weight: 600;
}

#info-drawer .drawer-body {
  overflow: auto;
  padding: 15px;
  color: white;
  height: calc(100vh - 86px);
}
#info-drawer .card-divider {
  padding-bottom: 15px;
  border-bottom: 1px solid #d6d6d630;
  margin-bottom: 15px;
}
#info-drawer .card-divider:last-child {
  border-bottom: 0;
}
#info-drawer .item-card {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 10px;
  font-family: sans-serif;
  cursor: pointer;
}
#info-drawer .card-img-panel {
  background-color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
#info-drawer .card-content-panel {
  padding: 10px;
}
#info-drawer .card-sub-title {
  color: #a3a3a3;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#info-drawer .card-title {
  color: #d4d4d4;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
#info-drawer .card-img-panel img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 120px;
}
#info-drawer .badge {
  background-color: #facc15;
  color: black;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
}

.loader-process-text {
  font-size: 38px;
  font-weight: 800;
  color: white;
}
.template-loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: #0000003b;
}
