.costapass-content{
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0px 10px;
}

.icon-costapass{
  display: none;
}
.loading-costapass{
  width: 20px;
  height: 20px;
  border: 3px 3px 3px 0px;
  border: solid #002854;
  border-radius: 30px;
  animation: loading 1s infinite;
}
.user-costapass-info{
  display: flex;
  align-items: center;
  color: #000;
}

.user-costapass-info p{
  display: flex;
  align-items: center;
  color: #000;
  gap: 5px;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}
.user-costapass-info img{
  margin-right: 5px;
	width: 20px;
}

/*------- Modal ----------*/

.costapass-modal__container{
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999;
  justify-content: center;
  align-items: center;
  animation: showModal .5s;
}
.costapass-modal{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 350px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  font-size: 18px;
}

.costapass-modal p{
  margin: 0;
}

.costapass-modal__header{
  display: flex;
  width: 100%;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background-color: rgb(1, 58, 96);
}

.costapass-modal__header p{
  display: flex;
  align-items: center;
}

.costapass-modal__body{
  width: 100%;
  color: #000;
  padding: 0px 20px;
}

.costapass-modal__info{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.costapass-modal__info p{
  margin-right: 10px;
}

.costapass-modal__money{
  width: 100%;
  text-align: center;
  padding: 20px;
}

.costapass-modal__amount{
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.costapass-modal__footer{
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-evenly;
}

.costapass-modal__footer button,
.costapass-modal__footer a{
  background-color: rgb(1, 58, 96);
  color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
  border: none;
  text-decoration: none;
  transition: .2s;
}

.costapass-modal__footer button:active,
.costapass-modal__footer a:active{
  transform: scale(0.90);
}

.costapass-modal__footer a:hover{
  color: #fff;
  text-decoration: none;
}

/*------- End Modal ----------*/

@keyframes loading {
  0%{
    transform: scale(0);
  }
  100%{
    transform: scale(1.5);
  }
}

@keyframes showModal {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}