
.modal__cards {
    display: none;
    transition: 0.4s;

}

.modal__cards.show{
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #1C1A30;
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; */
}
.modal{
    background: #ffffff00;
    padding: 20px;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    overflow-y: auto;
}
/* body{
    overflow: hidden;
} */
.modal__cards-title {
    color: #FFF;
text-align: center;
font-family: Inter;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-top: 100px;
}
.modal__cards-box {
    border-radius: 30px;
    width: 400px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.5s;
    
}
.modal__cards-box:hover{
    background-color: rgba(255, 255, 255, 0.503);
    cursor: pointer;
}
.modal__cards-box:hover .modal-card{
    rotate: 7deg;
}

.modal-card {
    margin-top: 50px;
    transition: 0.5s;
width: 315px;
height: 215px;
background-color: #000;
border-radius: 30px;
padding: 10px;

}





.modal-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal__card-chip {
    width: 60px;
    height: 48px;
}
.modal__card-company {
    width: 75px;
}
.modal__card-number {
    margin-top: 20px;
    color: #FFF;
font-family: Lato;
font-size: 17px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 5px;
}
.modal__card-data {
    color: #FFF;
font-family: Work Sans;
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-top: 30px;
margin-left: 50px;
}





.modal__card-name {
    margin-top: 20px;
    color: #FFF;
font-family: Work Sans;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.modal__card-info {
    color: #FFF;
font-family: Work Sans;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
}


.modal__cards {
}
.modal__cards-title {
    margin-bottom: 50px;
}
.modal__block {
    gap: 20px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    margin: 0px auto;
    flex-wrap: wrap;
    padding: 0px 20px;
}
.modal__cards-box {
}
.modal-card {
}

.card-pink{
    background-color: #E1447D;
}
.card-white{
    background-color: #fff;
}

.modal-btn{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    top: 50px;
    transition: 0.2s;
}
.modal-btn:hover{
    cursor: pointer;
}




/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #000000;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(267deg, #0095FF 10.17%, #10069F 133.23%); 
    border-radius: 20px;
}
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }