body{
    
    background-color: #1a1a1a;

}
.loader {
    
    transform: rotateX(30deg);
    perspective: 100px;
    border-radius: 70%;
    width: 48px;
    height: 48px;
    color: rgb(148, 148, 148);
  }
    .loader:before,
    .loader:after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: inherit;
      height: inherit;
      border-radius: 50%;
      transform: rotateX(40deg);
      animation: 1s spin linear infinite;
    }
    .loader:after {
      color: #001aff;
      transform: rotateY(40deg);
      animation-delay: .4s;
    }

  @keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
    }
  }

  @keyframes rotateccw {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }

  @keyframes spin {
    0%,
    100% {
      box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.5em .2em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.5em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.5em -.5em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.5em 0 0 currentcolor;
    }
    87% {
      box-shadow: .2em -.5em 0 0 currentcolor;
    }
  }





  
summary {
  font-weight: 600;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 16, 160);
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
 }
 .description{
   align-items: center;
 }
.description img {
  width: 50px;
  height: 70px;
  
 }
 .description .col-md-3{
   padding-top: 2%;
  width: 70%;
  margin-right: 0px;
  border: 0;
 }
 .description .col-md-5{
   padding-top: 2%;
  width: 70%;
  margin-right: 0px;
  border: 0;
 }
 .description .row{
   margin-bottom: 10px;
 }
 .description .col-md-2{
   width: 70px;
   margin-right: 0px;
  
   border: 0;
 }
 .description p{
   align-items: flex-start;
 }











