.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
  }
/* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.alert-container {
    top: 5rem;
    right: 2rem;
    position: absolute;
    z-index: 50;
}

.navbar {
    z-index: 20;
}

.iti__country-list {
    z-index: 30;
}


.is-hidden {
    display: none;
}

@-webkit-keyframes marquee {
    0% {text-indent:100%;}
    100% {text-indent:-200%}
}

input.marquee {
    -webkit-animation: marquee 5s infinite;
    -webkit-animation-timing-function: linear;
}


.clickable {
    cursor: pointer;
}

textarea { height: 100px !important; }


.loading {
    margin-top:4rem;
    text-align: center;
    color: #666;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
  }

  .sortable-select {
    min-height: 150px;
    max-height: 400px;
    width: 100%;
    padding: 5px;
    overflow-y: auto;
    position: relative;
  }
  .sortable-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 3px 0;
    cursor: move;
    user-select: none;
  }
  .sortable-item.dragging {
    opacity: 0.5;
  }
  .remove-item {
    background: black;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }