.bodi{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#NavDash{
    background-color: rgb(34, 34, 65);
    border-bottom: 3px solid rgb(185, 86, 19);
}
#dashOff{
    display: none;
}
#mainLogo{
    width: 120px;
}
#successCard{
    border: none;
}
#toastMessage{
    background: transparent;
    border: none;
}
.dropSvg{
    margin-left: -7px;
    margin-right: 18px;
}
#dashNavs{
    background: transparent;
}
@media (max-width: 1115px){
    #dashOff{
        display: block;
        margin-top: -10px;
    }
    #mainLogo{
        width: 100px;
        height: 30px;
        margin-left: -90px;
    }
    #dashNavs{
        display: none;
    }
    #logOut{
        display: none;
    }
}
@media (max-width: 490px){
    #mainLogo{
        width: 100px;
        height: 30px;
        margin-left: -210px;
    }
}
#cards{
    background: transparent;
}
#d-flex{
    flex-wrap: wrap;
}

#currentBal{
    margin-top: 65px;
    /* background-color: rgb(34, 34, 65); */
    /* border-radius: 30px; */
    background: linear-gradient(
135deg,
rgb(15, 15, 35),
rgb(34, 34, 65),
rgb(58, 58, 105)
);
}
#eyeClose{
    cursor: pointer;
}
#balance{
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
#transfer{
    background: white;
    color: black;
    padding: 5px;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 5px 5px 10px;
}
#transfer:hover{
    /* background-color:green; */
    color: black;
    border: 1px solid white;
    transition: .5s;
}
/******ACCOUNT SUMARY */
.play{
    padding: 0px 30px 0px 30px;
    border: 2px solid green;
    background: white;
}
#accountCard{
    margin-top: 20px;
    background-color: rgb(242, 242, 252);
    box-shadow: 3px 3px 5px;
}
#accountCard a{
   text-decoration: none;
}
@media (max-width: 490px){
    #accountCard{
        margin-top: -50px;
    }
}

#privacy{
    color:  rgb(34, 34, 65);
}
.pSpan{
    border-left: 1px solid  rgb(34, 34, 65);
    padding-left: 5px;
}

.line{
    margin-top: -7px;
}
#Mback{
    background-color: rgba(83, 83, 105, 0.822);
    opacity: 1;
}
.notify{
    text-align: center;
    margin-top: -45px;
    margin-left: 25px;
    background: red;
    padding: 4px 1px 4px 1px;
    border-radius: 50%;
    font-size: 11px;
    z-index: 1;
}
#dropDown{
    margin-top: -4px;
}


.flip-box {
    background-color: transparent;
    width: 300px;
    height: 200px;
    /* border: 1px solid #f1f1f1; */
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    box-shadow: 5px 5px 10px;
  }
  
  /* This container is needed to position the front and back side */
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-box-front {
    color: black;
  }
  
  /* Style the back side */
  .flip-box-back {
    transform: rotateY(180deg);
  }
  
  #cardsB{
    background-color: rgb(49, 49, 70);
  }

 