


.custom__flex {

    display: none;
    
}
.custom__flex.visible {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
   
}
.wrap-btn-action {
    display: none;
}
.wrap-btn-action.visible {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
   
}

.custom__flex.visible 
.custom__flex input {
    flex: 80%;
}
.wrap-btn-action  {
    margin-right: 15px;
    flex: 18%;
}
.custom__flex i.fa-solid{
    font-size: larger;
    cursor: pointer;
}
.wrap-btn-action[data-btn-element="addMore"] .deletePin {

    display: none;
}
.wrap-btn-action[data-btn-element="addMore"]  .addMore {

    display: inline-block;
}

.wrap-btn-action[data-btn-element="deletePin"] .deletePin {

    display: inline-block;
}
.wrap-btn-action[data-btn-element="deletePin"] .addMore {

    display: none;
}



 .custom__flex .addMore button {
    font-weight: 500;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 30px;
    color: #5268f2;
    background-color: transparent;
    transition: all 1s;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border: 2px solid #a5b1f9;
    border-radius: 25px;
    outline: none;
    text-transform: capitalize;
 }
 .custom__flex .addMore button:hover {
    color: #fff;
    background: #5268f2;
    border-color: #5268f2;
    box-shadow: 0px 20px 30px 0px rgb(9 25 130 / 20%);
 }

@media screen and ( max-width: 768px) {

    .custom__flex {
        padding: 5px 10px ;
        gap: 1rem;
    }
    .custom__flex .addMore, .custom__flex .deletePin {
        margin-right: 0;
    }
    
}