:root{
  --eo-1: #CCCCCC;
  --eo-2: #AA767C;
  --eo-3: #F5FDC6;
  --eo-4: #FFD3B6;
  --eo-5: #C7B3CC;
  --eo-6: #CCE7CF;
  --eo-7: #B6CCFE;
}

.access-request {
  overflow: hidden;
  position: relative;
  max-width: 700px;
  width: 60%;
  padding: 20px;
  background-color: rgba(30, 33, 38, 70%);
  border: 1px solid var(--color-gray-shade);
  border-radius: 10px;
  margin: auto;
  margin-top: 10px;
}

.access-request::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  overflow: hidden;
  aspect-ratio: 2/2;
  border-radius: 0 100% 0 0;
  filter: blur(80px);
  background-color: var(--color-primary);
  z-index: 0;
}
.access-request::after {
  content: "";
  position: absolute;
  top: -20%;
  right: 20%;
  width: 15%;
  overflow: hidden;
  aspect-ratio: 2/2;
  border-radius: 100%;
  filter: blur(100px);
  background-color: var(--color-primary);
  z-index: 0;
}

.access-request p {
  color: rgba(255, 255, 255, 70%);
  text-shadow: 0 0 10px var(--color-bg-dark);
  font-weight: 300;
  font-size: 14px;
  position: relative;
  /* z-index: 1; */
  padding: 10px;
}

.access-actions, .alert-actions {
  display: flex;
  column-gap: 10px;
  position: relative;
  /* z-index: 1; */
  align-items: center;
  justify-content: center;
}

.access-actions button {
  display: flex;
  align-items: center;
  background-color: #15251d80;
  color: #46fea5d4;
  box-shadow: inset 0 0 0 1px #50fdac5e;
  border: 0px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
}

.access-actions button.app:hover{
  box-shadow: inset 0 0 0 1px #54ffad73;
}

.access-actions button span {
  margin-left: 3px;
  font-size: 22px;
  font-weight: 500;
  opacity: 90%;
}

.access-actions button.rjc{
  background-color: transparent;
  color: #f4fefbb0;
  box-shadow: inset 0 0 0 1px #edfcf73c;  
}

.access-actions button.rjc:hover{
  box-shadow: inset 0 0 0 1px #ebfdf657;
}

.access-request.appeal-alert {
  /* border-color: #ff173e9c; */
  border-color: #fd644a7d;
} 
.access-request.appeal-alert::before {
  background-color: #fd644a7d;
} 
.access-request.appeal-alert::after {
  background-color: #fd644a7d;
} 

.access-request.appeal-alert h4{
  text-align: center;
}

#admin-info {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.txt-hilght {
  color: var(--color-primary);
}

.appeal-alert .txt-hilght {
  color: #ff977d;
}

.misc-data-heading{
  text-align: center;
}

#admin-misc-data {
  margin-top: 10px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.info-box {
  text-align: center;
  height: auto;
  flex: 1;
  margin: 10px;
  min-width: 150px;
  padding: 20px 10px;
  border-radius: 10px;
  background: var(--color-bg-light);
  box-shadow: inset 5px 5px 10px #1d2125, inset -5px -5px 10px #373d45;
}

.info-box span {
  color: var(--color-primary);
  background: var(--color-bg-dark);
  padding: 10px;
  border-radius: 5px;
}

.info-box h5 {
  margin-top: 10px;
}

.info-box h6 {
  background: var(--color-bg-dark);
  width: fit-content;
  margin: auto;
  text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary),
    0 0 40px var(--color-primary), 0 0 80px var(--color-primary);
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--color-primary);
}

#edit-heading {
  text-align: center;
}

#edit-options {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  /*grid-template-columns: repeat(auto-fill, 300px);*/
  justify-content: center;
  gap: 40px;
}

.edit-option {
  position: relative;
  min-width: 200px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--color-gray-shade);
  border-radius: 10px;
  background-color: rgba(30, 33, 38, 70%);
  overflow: hidden;
  cursor: pointer;
}

.edit-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  overflow: hidden;
  aspect-ratio: 2/2;
  border-radius: 0 0 100% 0;
  filter: blur(50px);
  background-color: white;
  z-index: 0;
}
.edit-option::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  overflow: hidden;
  aspect-ratio: 2/2;
  border-radius: 100% 0 0 0;
  filter: blur(80px);
  background-color: white;
  z-index: 0;
}

.edit-option:hover {
  transition-duration: 0.3s;
  transform: scale(1.03);
}

.edit-option h3{
  color: white;
}

.edit-option h5 {
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--color-white);
  opacity: 70%;
  font-size: 14px;
}

#edit-options .eo1::before, #edit-options .eo1::after {
  background-color: var(--eo-1);
}

#edit-options .eo1:hover {
  box-shadow: 0 0 10px var(--eo-1), 0 0 20px var(--eo-1), 0 0 40px var(--eo-1),
    0 0 80px var(--eo-1);
}

#edit-options .eo1 h3 {
  text-shadow: 0 0 10px var(--eo-1), 0 0 20px var(--eo-1), 0 0 40px var(--eo-1);
}

#edit-options .eo2::before {
  right: 0;
  left: unset;
  background-color: var(--eo-2);
}

#edit-options .eo2::after {
  background-color: var(--eo-2);
  right: 50%;
  border-radius: 100% 100% 0 0;
}

#edit-options .eo2:hover {
  box-shadow: 0 0 10px var(--eo-2), 0 0 20px var(--eo-2), 0 0 40px var(--eo-2),
    0 0 80px var(--eo-2);
}

#edit-options .eo2 h3 {
  text-shadow: 0 0 10px var(--eo-2), 0 0 20px var(--eo-2), 0 0 40px var(--eo-2);
}

#edit-options .eo3::before {
  background-color: var(--eo-3);
  top: 30%;
}

#edit-options .eo3::after {
  background-color: var(--eo-3);
  bottom: unset;
  width: 20%;
}

#edit-options .eo3:hover {
  box-shadow: 0 0 10px var(--eo-3), 0 0 20px var(--eo-3), 0 0 40px var(--eo-3),
    0 0 80px var(--eo-3);
}

#edit-options .eo3 h3 {
  text-shadow: 0 0 10px var(--eo-3), 0 0 20px var(--eo-3), 0 0 40px var(--eo-3);
}


#edit-options .eo5::before, #edit-options .eo5::after {
  background-color: var(--eo-5);
}

#edit-options .eo5:hover {
  box-shadow: 0 0 10px var(--eo-5), 0 0 20px var(--eo-5), 0 0 40px var(--eo-5), 0 0 80px var(--eo-5);
}

#edit-options .eo5 h3 {
  text-shadow: 0 0 10px var(--eo-5), 0 0 20px var(--eo-5), 0 0 40px var(--eo-5);
}

#edit-options .eo6::before {
  right: 0;
  left: unset;
  background-color: var(--eo-6);
}
#edit-options .eo6::after {
  background-color: var(--eo-6);
  right: 50%;
  border-radius: 100% 100% 0 0;
}

#edit-options .eo6:hover {
  box-shadow: 0 0 10px var(--eo-6), 0 0 20px var(--eo-6), 0 0 40px var(--eo-6), 0 0 80px var(--eo-6);
}

#edit-options .eo6 h3 {
  text-shadow: 0 0 10px var(--eo-6), 0 0 20px var(--eo-6), 0 0 40px var(--eo-6);
}

#edit-options .eo4::before {
  background-color: var(--eo-4);
  top: 30%;
}
#edit-options .eo4::after {
  background-color: var(--eo-4);
  bottom: unset;
  width: 20%;
}

#edit-options .eo4:hover {
  box-shadow: 0 0 10px var(--eo-4), 0 0 20px var(--eo-4), 0 0 40px var(--eo-4), 0 0 80px var(--eo-4);
}

#edit-options .eo4 h3 {
  text-shadow: 0 0 10px var(--eo-4), 0 0 20px var(--eo-4), 0 0 40px var(--eo-4);
}

#edit-options .eo7::before {
  background-color: var(--eo-7);
}

#edit-options .eo7::after {
  background-color: var(--eo-7);
  border-radius: 100% 100% 0 0;
}

#edit-options .eo7:hover {
  box-shadow: 0 0 10px var(--eo-7), 0 0 20px var(--eo-7), 0 0 40px var(--eo-7),
    0 0 80px var(--eo-7);
}

#edit-options .eo7 h3 {
  text-shadow: 0 0 10px var(--eo-7), 0 0 20px var(--eo-7), 0 0 40px var(--eo-7);
}

#authinfo{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

#suap, #surj{
  margin: 0 !important;
  padding: 0;
  width: auto;
  background: transparent;
}

/* =================================================== Responsive Under 1024 =================================================== */

@media screen and (max-width: 1023px) {
}

/* =================================================== Responsive Under 769 =================================================== */

@media screen and (max-width: 768px) {
}

/* =================================================== Responsive Under 480 =================================================== */

@media screen and (max-width: 479px) {
}
