swiper-container {
    width: 100%;
    height: 100%;
  }

  swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  swiper-slide img {
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .Custom_random {
    --glow-color: rgb(217, 176, 255);
    --glow-spread-color: rgba(191, 123, 255, 0.781);
    --enhanced-glow-color: rgb(231, 206, 255);
    --btn-color: rgb(100, 61, 136);
    border: .25em solid var(--glow-color);
    padding: 1.5em 3em;
    color: var(--glow-color);
    font-size: 17px;
    font-weight: bold;
    background-color: var(--btn-color);
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
    text-shadow: 0 0 .5em var(--glow-color);
    position: relative;
    transition: all 0.3s;
   }
   
   .Custom_random::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(2em);
    opacity: .7;
    transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
   }
   
   .Custom_random:hover {
    color: var(--btn-color);
    background-color: var(--glow-color);
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 2em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
   }
   
   .Custom_random:active {
    box-shadow: 0 0 0.6em .25em var(--glow-color),
           0 0 2.5em 2em var(--glow-spread-color),
           inset 0 0 .5em .25em var(--glow-color);
   }

  
 .loader div.container {
    background-color: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    transform: translate(-50%, -50%);
 }
 
 .loader div.line {
    position: relative;
    background-color: #ffffff80;
    display: inline-block;
    height: 0px;
    border-radius: 5px;
    width: 10px;
    margin: 10px;
    animation: line linear infinite 0.9s;
 }
 
 @keyframes line {
    0% {
       height: 0px;
       margin-top: 60px;
    }
    50% {
       height: 50px;
       margin-top: 10px;
    }
    100% {
       height: 0px;
       margin-top: 60px;
    }
 }
 
 .loader div.d1 {
    animation-delay: 0.15s;
 }
 .loader div.d2 {
    animation-delay: 0.3s;
 }
 .loader div.d3 {
    animation-delay: 0.45s;
 }
 .loader div.d4 {
    animation-delay: 0.6s;
 }
 .loader div.d5 {
    animation-delay: 0.75s;
 }
 .loader div.d6 {
    animation-delay: 0.9s;
 }
 
 .loader div.caption {
    text-align: center;
    color: #ffffff90;
    font-family: "Noto Sans", sans-serif;
 }
 
 .loader div.dot {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    animation: dot 1s infinite linear;
 }
 
 .loader div.dot:nth-child(2) {
    animation-delay: 0.2s;
 }
 
 .loader div.dot:nth-child(3) {
    animation-delay: 0.4s;
 }
 
 @keyframes dot {
    0%,
    100% {
       opacity: 0;
    }
    50% {
       opacity: 1;
    }
 }
 
 .loader ::selection {
    background-color: transparent;
 }
 