.itc-modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: rgb(0 0 0 / 50%);
    opacity: 0;
    transition: opacity 0.2s ease-in;
    pointer-events: none;
  }
  
  .itc-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: auto;
    margin: 10px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 0.3rem;
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 30%);
    transition: opacity 0.3s ease-in;
  }
  
  @media (min-width: 576px) {
    .itc-modal-content {
      max-width: 500px;
      margin: 150px auto;
    }
  }
  
  .itc-modal-show .itc-modal-backdrop,
  .itc-modal-show .itc-modal-content {
    z-index: 1050;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
  }
  
  .itc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #05141f;
    color: #fff;
  }
  
  .itc-modal-title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  
  .itc-modal-btn-close {
    float: right;
    font-weight: 700;
    font-size: 24px;
    font-family: sans-serif;
    line-height: 1;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
  }
  
  .itc-modal-btn-close:focus,
  .itc-modal-btn-close:hover {
    color: #999;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.75;
  }
  
  .itc-modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 30px;
    overflow: auto;
  }
  
  .itc-modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
  }

  .itc-modal-body {
    display: flex;
    gap: 1rem;
  }
  .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 4px 6px;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 4px;
  }

  .btn-delete {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
  }

  .btn-cancel {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    margin-left: 10px;
  }

  .btn-delete:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
  }

  .btn-cancel:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
  }

  .items {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .item {
    flex: 0 0 50%;
    padding: 10px;
  }

  .item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .item img:hover {
    filter: grayscale(1);
    cursor: pointer;
  }

  .select-city a {
    display: inline-block;
    position: relative;
    padding: 0.2em 0;
    color: #222222;
    font-family: KiaSignatureRegular, sans-serif;
    font-size: 15px;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .select-city a::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: #05141f;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
  }

  .select-city a:hover::after,
  .select-city a:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
  }

  /* Scale from center */
  .select-city a::after {
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
  }

  .select-city a:hover::after,
  .select-city a:focus::after{
    transform: scale(1);
  }

  .select-city-title {
 
    font-family: KiaSignatureRegular, sans-serif;
    font-size: 18px;
  }