.table-points-profile {
  /* display: flex; */
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  /* width: 100%; */
}


.table-points-profile .rectangulo-pequeno {
    width: 95%;
    height: 90%;
    border-radius: 47px;
    background-color: #75154D;
    z-index: 2;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.table-points-profile .columnas {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
}

.table-points-profile .columna {
    cursor: pointer;

}
.table-points-profile .columna:first-child::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 16px solid #fff;
    position: absolute;
    left: 5px;
}

.table-points-profile .columna:last-child::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #fff;
  position: absolute;
  right: 0px;
}

.table-points-profile .profile-container {
  display: flex;
}

.table-points-profile .profile-container .box-left {
  flex: 1;
  color: white;
  line-height: 123px;
}

.table-points-profile .profile-container .box-left .row:first-child{
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-points-profile .dorsal-header-container{
  font-size: 7vw; /* Ajustamos el tamaño de fuente para que el número sea grande */
  font-family: Arial;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.table-points-profile .nombre-header-container{
  font-size: 20px; /* Ajustamos el tamaño de fuente para el nombre */
  font-family: Arial;
  margin-left: 10px; /* Aumentamos el margen izquierdo para separar el nombre del número */
  line-height: 1;
}

.table-points-profile .box-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-points-profile .row {
   /* Ajusta la altura segÃºn tus necesidades */
}

.table-points-profile .photo {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    position: relative;
    width: 223px;
    height: 223px;
    overflow: hidden;
    border-radius: 50%;
    align-items: center;
}

.table-points-profile .container-flag{
    display: flex;
    /*background-color: black;*/
    width: 290px;
    height: 45px;
    border-radius: 10px;
    margin: 0 auto;
    align-items: center;
}

.table-points-profile .flag{
  width: 50px;
}

.table-points-profile .photo img{
   /* Hace que la imagen sea circular */
    /* Establece la altura igual al ancho */
    /* Hace que la imagen sea circular */
    /* Hace que la imagen sea circular */
    /* Aplica el recorte circular */
    /* Hace que la imagen sea circular */
    /* Aplica el recorte circular */
   width: 100%;
   height: auto;
   width: 225px !important;
}

.table-points-profile .column-flag-image{
      display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}

.table-points-profile .name-country{
  font-family: Arial;
  font-size:25px;
}

.table-points-profile .container-points {
  display: flex;
  width: 290px;
  height: 68px;
  border-radius: 10px;
  margin: 15px auto 41px auto;
  align-items: center;
  background: #ffffff7d;
  justify-content: space-around;
}

.table-points-profile .container-points > .column {
      display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.table-points-profile .container-points > .column > .points-container {
    padding: 0;
    font-size: 33px;
}

.table-points-profile .container-points > .column > .number-container {
    margin: 0;
    padding: 0;
    font-size: 33px;
    font-weight: 700;
}

.table-points-profile .pagination {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      background-color: var(--e-a-bg-active);
      padding: 10px;
      BORDER-RADIUS: 20px;
    }
    





/* Media queries para teléfonos */
@media (max-width: 480px) {
    .table-points-profile .profile-container{
            flex-direction: column;
    }

    .table-points-profile {
        display: block;
        position: static;
        width: auto;
    }

    .table-points-profile .rectangulo {
        width: auto;
        height: auto;
        z-index: auto;
        background-color: #232B36;
    }

    .table-points-profile .rectangulo-pequeno {
        width: auto;
        height: auto;
        position: static;        
        transform: none;
    }

    .table-points-profile .columnas {
        position: static;
    }

    .table-points-profile .profile-container {
        display: flex;
        flex-direction: column;
    }

    .table-points-profile .profile-container .box-left{
        padding-top: 10px;
    }

    .table-points-profile .box-right {
        padding-bottom: 10px;
    }
}