  #modal-custom{
    z-index: 1;
  }

  #modal-custom a{
    color:var(--primary-color);
  }

  #modal-custom .modal-custom-header{
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
    width: 100%;
    background: transparent;
    position: relative;
  }

  #modal-custom .modal-custom-header a{
    display: block;
    float: left;
    width: 50%;
    padding: 0;
    text-align: center;
    height: 65px;
    color: var(--primary-color);
    vertical-align: middle;
    text-decoration: none;
    line-height: 65px;
    font-family:var( --primary-font-family);
    font-size: 15px;
    transition: all 0.3s ease;
    background: #d3d4d5;
    position: relative;
}

#modal-custom .modal-custom-header{
    background: #f8f9fa;
}

 #modal-custom .modal-custom-header a:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: .08;
    background: var(--primary-text-color-inverse);
}
#modal-custom .modal-custom-header a:not(.active):before{
  opacity: .05;
}

#modal-custom .modal-custom-header a.active{
  color: var(--primary-color);
  background: transparent;
}


  #modal-custom .modal-custom-header a:not(.active):hover{
    box-shadow: inset 0 -10px 20px -10px var(--primary-text-color-opacity-60)
  }

  #modal-custom .iti{
    width: 100%;
  }
  #modal-custom section{
    padding: 30px;
  }
  #modal-custom .icon-close{
    background: var(--primary-color);
    margin-bottom: 10px;
    position: absolute;
    right: -8px;
    top: -8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
    color: var(--primary-text-color);
    z-index: 1;
    cursor: pointer;
  }
  #modal-custom .icon-close:hover, #modal-custom .icon-close:focus{
    color: black;
  }
