/*! 
   * angular-loading-bar v0.9.0
   * https://chieffancypants.github.io/angular-loading-bar
   * Copyright (c) 2016 Wes Cruver
   * License: MIT
   */#loading-bar,#loading-bar-spinner
  {
    pointer-events: none;
    -webkit-pointer-events: none;
    -webkit-transition: all .35s linear;
    transition: all .35s linear;
  }
  
  #loading-bar-spinner.ng-enter,#loading-bar-spinner.ng-leave.ng-leave-active,#loading-bar.ng-enter,#loading-bar.ng-leave.ng-leave-active
  {
    opacity: 0;
  }
  
  #loading-bar-spinner.ng-enter.ng-enter-active,#loading-bar-spinner.ng-leave,#loading-bar.ng-enter.ng-enter-active,#loading-bar.ng-leave
  {
    opacity: 1;
  }
  
  #loading-bar .bar
  {
    -webkit-transition: width .35s;
    transition: width .35s;
    background: #29d;
    position: fixed;
    z-index: 10002;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom-right-radius: 1px;
    border-top-right-radius: 1px;
  }
  
  #loading-bar .peg
  {
    position: absolute;
    width: 70px;
    right: 0;
    top: 0;
    height: 2px;
    opacity: .45;
    -ms-box-shadow: #29d 1px 0 6px 1px;
    -webkit-box-shadow: #29d 1px 0 6px 1px;
    box-shadow: 1px 0 6px 1px #29d;
    -webkit-border-radius: 100%;
    border-radius: 100%;
  }
  
  #loading-bar-spinner .spinner-icon
  {
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;
    -webkit-animation: loading-bar-spinner .4s linear infinite;
    animation: loading-bar-spinner .4s linear infinite;
  }
  
  @-webkit-keyframes loading-bar-spinner
  {
    0%
    {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    to
    {
      -webkit-transform: rotate(1turn);
      transform: rotate(1turn);
    }
  }
  
  @keyframes loading-bar-spinner
  {
    0%
    {
      transform: rotate(0deg);
    }
  
    to
    {
      transform: rotate(1turn);
    }
  }
  
  .ats-switch.disabled
  {
    opacity: .5;
    filter: alpha(opacity=50);
  }
  
  .ats-switch.disabled,.ats-switch.disabled .knob,.ats-switch.disabled .switch-left,.ats-switch.disabled .switch-right
  {
    cursor: default!important;
  }
  
  .ats-switch span
  {
    cursor: pointer;
    display: inline-block;
    float: left;
    height: 100%;
    line-height: 20px;
    padding: 4px;
    text-align: center;
    width: 33%;
    white-space: nowrap;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  .ats-switch>div
  {
    position: relative;
    width: 150%;
  }
  
  .ats-switch .knob
  {
    background: red;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background-color: #f5f5f5;
    width: 34%;
  }
  
  .ats-switch .switch-on
  {
    left: 0;
  }
  
  .ats-switch .switch-off
  {
    left: -50%;
  }
  
  .ats-switch .switch-right,.ats-switch .swtich-left
  {
    z-index: 1;
  }
  
  .ats-switch .switch-left
  {
    color: #fff;
    background: #005fcc;
  }
  
  .ats-switch .switch-right
  {
    color: #333;
    background: #f0f0f0;
  }
  
  .ats-switch .switch-animate
  {
    transition: left .5s;
    -o-transition: left .5s;
    -moz-transition: left .5s;
    -webkit-transition: left .5s;
  }
  
  .ats-switch
  {
    border-color: #ccc;
    -o-user-select: none;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  
  .ats-switch:hover
  {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  }
  
  .ats-switch.disabled:hover
  {
    border-color: #ccc;
  }
  
  .ats-switch .knob
  {
    border-right: none;
    border-left: none;
  }
  
  .ats-switch.switch-mini
  {
    min-width: 72px;
  }
  
  .ats-switch.switch-mini .knob,.ats-switch.switch-mini .switch-left,.ats-switch.switch-mini .switch-right
  {
    padding-bottom: 4px;
    padding-top: 4px;
    font-size: 10px;
    line-height: 9px;
  }
  
  .ats-switch.switch-mini i.switch-mini-icons
  {
    height: 1.2em;
    line-height: 9px;
    vertical-align: text-top;
    text-align: center;
    transform: scale(.6);
    margin-top: -1px;
    margin-bottom: -1px;
  }
  
  .ats-switch.switch-small
  {
    min-width: 80px;
  }
  
  .ats-switch.switch-small .knob,.ats-switch.switch-small .switch-left,.ats-switch.switch-small .switch-right
  {
    padding-bottom: 3px;
    padding-top: 3px;
    font-size: 12px;
    line-height: 18px;
  }
  
  .ats-switch.switch-large
  {
    min-width: 120px;
  }
  
  .ats-switch.switch-large .knob,.ats-switch.switch-large .switch-left,.ats-switch.switch-large .switch-right
  {
    padding-bottom: 9px;
    padding-top: 9px;
    font-size: 16px;
    line-height: normal;
  }
  
  .ats-switch span.switch-left
  {
    background: #428bca;
  }
  
  .ats-switch span.switch-right
  {
    color: #000;
    background: #eee;
  }
  
  .ats-switch.switch-primary span.switch-left
  {
    color: #fff;
    background: #428bca;
  }
  
  .ats-switch.switch-info span.switch-left
  {
    color: #fff;
    background: #5bc0de;
  }
  
  .ats-switch.switch-success span.switch-left
  {
    color: #fff;
    background: #5cb85c;
  }
  
  .ats-switch.switch-warning span.switch-left
  {
    background: #f0ad4e;
    color: #fff;
  }
  
  .ats-switch.switch-danger span.switch-left
  {
    color: #fff;
    background: #d9534f;
  }
  
  .ats-switch.switch-default span.switch-left
  {
    color: #000;
    background: #eee;
  }
  
  .toast-title
  {
    font-weight: 700;
  }
  
  .toast-message
  {
    word-wrap: break-word;
  }
  
  .toast-message a,.toast-message label
  {
    color: #fff;
  }
  
  .toast-message a:hover
  {
    color: #ccc;
    text-decoration: none;
  }
  
  .toast-close-button
  {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
  }
  
  .toast-close-button:focus,.toast-close-button:hover
  {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4;
  }
  
  button.toast-close-button
  {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
  }
  
  .toast-top-center
  {
    top: 0;
    right: 0;
    width: 100%;
  }
  
  .toast-bottom-center
  {
    bottom: 0;
    right: 0;
    width: 100%;
  }
  
  .toast-top-full-width
  {
    top: 0;
    right: 0;
    width: 100%;
  }
  
  .toast-bottom-full-width
  {
    bottom: 0;
    right: 0;
    width: 100%;
  }
  
  .toast-top-left
  {
    top: 12px;
    left: 12px;
  }
  
  .toast-top-right
  {
    top: 12px;
    right: 12px;
  }
  
  .toast-bottom-right
  {
    right: 12px;
    bottom: 12px;
  }
  
  .toast-bottom-left
  {
    bottom: 12px;
    left: 12px;
  }
  
  #toast-container
  {
    position: fixed;
    z-index: 999999;
  }
  
  #toast-container *
  {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  #toast-container .toast
  {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    background-position: 15px;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #fff;
    opacity: .8;
  }
  
  #toast-container .toast:hover
  {
    -webkit-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
  }
  
  #toast-container .toast.toast-info
  {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=")!important;
  }
  
  #toast-container .toast.toast-error
  {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=")!important;
  }
  
  #toast-container .toast.toast-success
  {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==")!important;
  }
  
  #toast-container .toast.toast-warning
  {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=")!important;
  }
  
  #toast-container.toast-bottom-center .toast,#toast-container.toast-top-center .toast
  {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #toast-container.toast-bottom-full-width .toast,#toast-container.toast-top-full-width .toast
  {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .toast
  {
    background-color: #030303;
  }
  
  .toast-success
  {
    background-color: #51a351;
  }
  
  .toast-error
  {
    background-color: #bd362f;
  }
  
  .toast-info
  {
    background-color: #2f96b4;
  }
  
  .toast-warning
  {
    background-color: #f89406;
  }
  
  progress-bar
  {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: .4;
  }
  
  div[toast]
  {
    opacity: 1!important;
  }
  
  div[toast].ng-enter
  {
    opacity: 0!important;
    transition: opacity .3s linear;
  }
  
  div[toast].ng-enter.ng-enter-active
  {
    opacity: 1!important;
  }
  
  div[toast].ng-leave
  {
    opacity: 1;
    transition: opacity .3s linear;
  }
  
  div[toast].ng-leave.ng-leave-active
  {
    opacity: 0!important;
  }
  
  @media (max-width:240px)
  {
    #toast-container .toast.div
    {
      padding: 8px 8px 8px 50px;
      width: 11em;
    }
  
    #toast-container .toast-close-button
    {
      right: -.2em;
      top: -.2em;
    }
  }
  
  @media (min-width:241px) and (max-width:480px)
  {
    #toast-container .toast.div
    {
      padding: 8px 8px 8px 50px;
      width: 18em;
    }
  
    #toast-container .toast-close-button
    {
      right: -.2em;
      top: -.2em;
    }
  }
  
  @media (min-width:481px) and (max-width:768px)
  {
    #toast-container .toast.div
    {
      padding: 15px 15px 15px 50px;
      width: 25em;
    }
  }
  
  .toggle-switch
  {
    border: 1px solid;
    cursor: pointer;
    display: inline-block;
    text-align: left;
    overflow: hidden;
    line-height: 8px;
    min-width: 100px;
  }
  
  .toggle-switch.disabled>div>span.knob
  {
    background: #aaa;
  }
  
  .toggle-switch span
  {
    cursor: pointer;
    display: inline-block;
    float: left;
    height: 100%;
    line-height: 20px;
    padding: 4px;
    text-align: center;
    width: 33%;
    white-space: nowrap;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  .toggle-switch>div
  {
    position: relative;
    width: 150%;
  }
  
  .toggle-switch .knob
  {
    background: red;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background-color: #f5f5f5;
    width: 34%;
    z-index: 100;
  }
  
  .toggle-switch .switch-on
  {
    left: 0;
  }
  
  .toggle-switch .switch-off
  {
    left: -50%;
  }
  
  .toggle-switch .switch-left,.toggle-switch .switch-right
  {
    z-index: 1;
  }
  
  .toggle-switch .switch-left
  {
    color: #fff;
    background: #005fcc;
  }
  
  .toggle-switch .switch-right
  {
    color: #333;
    background: #f0f0f0;
  }
  
  .toggle-switch-animate
  {
    transition: left .5s;
    -o-transition: left .5s;
    -moz-transition: left .5s;
    -webkit-transition: left .5s;
  }
  
  tags-input
  {
    display: block;
  }
  
  tags-input *,tags-input :after,tags-input :before
  {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  tags-input .host
  {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 100%;
  }
  
  tags-input .host:active
  {
    outline: none;
  }
  
  tags-input .tags
  {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    padding: 1px;
    overflow: hidden;
    word-wrap: break-word;
    cursor: text;
    background-color: #fff;
    border: 1px solid #a9a9a9;
    box-shadow: inset 1px 1px 1px 0 #d3d3d3;
    height: 100%;
  }
  
  tags-input .tags.focused
  {
    outline: none;
    -webkit-box-shadow: 0 0 3px 1px rgba(5,139,242,.6);
    box-shadow: 0 0 3px 1px rgba(5,139,242,.6);
  }
  
  tags-input .tags .tag-list
  {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  tags-input .tags .tag-item
  {
    margin: 2px;
    padding: 0 5px;
    display: inline-block;
    float: left;
    font: 14px Helvetica Neue,Helvetica,Arial,sans-serif;
    height: 26px;
    line-height: 25px;
    border: 1px solid #acacac;
    border-radius: 3px;
    background: linear-gradient(180deg,#f0f9ff 0,#cbebff 47%,#a1dbff);
  }
  
  tags-input .tags .tag-item.selected
  {
    background: linear-gradient(180deg,#febbbb 0,#fe9090 45%,#ff5c5c);
  }
  
  tags-input .tags .tag-item .remove-button
  {
    margin: 0 0 0 5px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    vertical-align: middle;
    font: 700 16px Arial,sans-serif;
    color: #585858;
  }
  
  tags-input .tags .tag-item .remove-button:active
  {
    color: red;
  }
  
  tags-input .tags .input
  {
    border: 0;
    outline: none;
    margin: 2px;
    padding: 0;
    padding-left: 5px;
    float: left;
    height: 26px;
    font: 14px Helvetica Neue,Helvetica,Arial,sans-serif;
  }
  
  tags-input .tags .input.invalid-tag
  {
    color: red;
  }
  
  tags-input .tags .input::-ms-clear
  {
    display: none;
  }
  
  tags-input.ng-invalid .tags
  {
    -webkit-box-shadow: 0 0 3px 1px rgba(255,0,0,.6);
    box-shadow: 0 0 3px 1px rgba(255,0,0,.6);
  }
  
  tags-input[disabled] .host:focus
  {
    outline: none;
  }
  
  tags-input[disabled] .tags
  {
    background-color: #eee;
    cursor: default;
  }
  
  tags-input[disabled] .tags .tag-item
  {
    opacity: .65;
    background: linear-gradient(180deg,#f0f9ff 0,rgba(203,235,255,.75) 47%,rgba(161,219,255,.62));
  }
  
  tags-input[disabled] .tags .tag-item .remove-button
  {
    cursor: default;
  }
  
  tags-input[disabled] .tags .tag-item .remove-button:active
  {
    color: #585858;
  }
  
  tags-input[disabled] .tags .input
  {
    background-color: #eee;
    cursor: default;
  }
  
  tags-input .autocomplete
  {
    margin-top: 5px;
    position: absolute;
    padding: 5px 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
  }
  
  tags-input .autocomplete .suggestion-list
  {
    margin: 0;
    padding: 0;
    list-style-type: none;
    max-height: 280px;
    overflow-y: auto;
    position: relative;
  }
  
  tags-input .autocomplete .suggestion-item
  {
    padding: 5px 10px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font: 16px Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #000;
    background-color: #fff;
  }
  
  tags-input .autocomplete .suggestion-item.selected,tags-input .autocomplete .suggestion-item.selected em
  {
    color: #fff;
    background-color: #0097cf;
  }
  
  tags-input .autocomplete .suggestion-item em
  {
    font: normal 700 16px Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #000;
    background-color: #fff;
  }
  
  .selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder
  {
    visibility: visible!important;
    background: #f2f2f2!important;
    background: rgba(0,0,0,.06)!important;
    border: 0 none!important;
    -webkit-box-shadow: inset 0 0 12px 4px #fff;
    box-shadow: inset 0 0 12px 4px #fff;
  }
  
  .selectize-control.plugin-drag_drop .ui-sortable-placeholder:after
  {
    content: "!";
    visibility: hidden;
  }
  
  .selectize-control.plugin-drag_drop .ui-sortable-helper
  {
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.2);
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
  }
  
  .selectize-dropdown-header
  {
    position: relative;
    padding: 3px 12px;
    border-bottom: 1px solid #d0d0d0;
    background: #f8f8f8;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
  }
  
  .selectize-dropdown-header-close
  {
    position: absolute;
    right: 12px;
    top: 50%;
    color: #333;
    opacity: .4;
    margin-top: -12px;
    line-height: 20px;
    font-size: 20px!important;
  }
  
  .selectize-dropdown-header-close:hover
  {
    color: #000;
  }
  
  .selectize-dropdown.plugin-optgroup_columns .optgroup
  {
    border-right: 1px solid #f2f2f2;
    border-top: 0 none;
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child
  {
    border-right: 0 none;
  }
  
  .selectize-dropdown.plugin-optgroup_columns .optgroup:before
  {
    display: none;
  }
  
  .selectize-dropdown.plugin-optgroup_columns .optgroup-header
  {
    border-top: 0 none;
  }
  
  .selectize-control.plugin-remove_button [data-value]
  {
    position: relative;
    padding-right: 24px!important;
  }
  
  .selectize-control.plugin-remove_button [data-value] .remove
  {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 17px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    padding: 1px 0 0;
    border-left: 1px solid transparent;
    -webkit-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .selectize-control.plugin-remove_button [data-value] .remove:hover
  {
    background: rgba(0,0,0,.05);
  }
  
  .selectize-control.plugin-remove_button [data-value].active .remove
  {
    border-left-color: transparent;
  }
  
  .selectize-control.plugin-remove_button .disabled [data-value] .remove:hover
  {
    background: none;
  }
  
  .selectize-control.plugin-remove_button .disabled [data-value] .remove
  {
    border-left-color: rgba(77,77,77,0);
  }
  
  .selectize-control.plugin-remove_button .remove-single
  {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 23px;
  }
  
  .selectize-control
  {
    position: relative;
  }
  
  .selectize-dropdown,.selectize-input,.selectize-input input
  {
    color: #333;
    font-family: inherit;
    font-size: inherit;
    line-height: 20px;
    -webkit-font-smoothing: inherit;
  }
  
  .selectize-control.single .selectize-input.input-active,.selectize-input
  {
    background: #fff;
    cursor: text;
    display: inline-block;
  }
  
  .selectize-input
  {
    border: 1px solid #ccc;
    padding: 6px 12px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
  
  .selectize-control.multi .selectize-input.has-items
  {
    padding: 5px 12px 2px;
  }
  
  .selectize-input.full
  {
    background-color: #fff;
  }
  
  .selectize-input.disabled,.selectize-input.disabled *
  {
    cursor: default!important;
  }
  
  .selectize-input.focus
  {
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.15);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.15);
  }
  
  .selectize-input.dropdown-active
  {
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
  }
  
  .selectize-input>*
  {
    vertical-align: baseline;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  
  .selectize-control.multi .selectize-input>div
  {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 1px 3px;
    background: #efefef;
    color: #333;
    border: 0 solid transparent;
  }
  
  .selectize-control.multi .selectize-input>div.active
  {
    background: #428bca;
    color: #fff;
    border: 0 solid transparent;
  }
  
  .selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active
  {
    color: gray;
    background: #fff;
    border: 0 solid rgba(77,77,77,0);
  }
  
  .selectize-input>input
  {
    display: inline-block!important;
    padding: 0!important;
    min-height: 0!important;
    max-height: none!important;
    max-width: 100%!important;
    margin: 0!important;
    text-indent: 0!important;
    border: 0 none!important;
    background: none!important;
    line-height: inherit!important;
    -webkit-user-select: auto!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
  }
  
  .selectize-input>input::-ms-clear
  {
    display: none;
  }
  
  .selectize-input>input:focus
  {
    outline: none!important;
  }
  
  .selectize-input:after
  {
    clear: left;
  }
  
  .selectize-input.dropdown-active:before
  {
    content: " ";
    display: block;
    position: absolute;
    background: #fff;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .selectize-dropdown
  {
    position: absolute;
    z-index: 10;
    border: 1px solid #d0d0d0;
    background: #fff;
    margin: -1px 0 0;
    border-top: 0 none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.1);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
  }
  
  .selectize-dropdown [data-selectable]
  {
    cursor: pointer;
    overflow: hidden;
  }
  
  .selectize-dropdown [data-selectable] .highlight
  {
    background: rgba(255,237,40,.4);
    -webkit-border-radius: 1px;
    border-radius: 1px;
  }
  
  .selectize-dropdown .optgroup-header,.selectize-dropdown .option
  {
    padding: 3px 12px;
  }
  
  .selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option
  {
    cursor: inherit;
    opacity: .5;
  }
  
  .selectize-dropdown [data-selectable].option
  {
    opacity: 1;
  }
  
  .selectize-dropdown .optgroup:first-child .optgroup-header
  {
    border-top: 0 none;
  }
  
  .selectize-dropdown .optgroup-header
  {
    color: #777;
    background: #fff;
    cursor: default;
  }
  
  .selectize-dropdown .active
  {
    background-color: #f5f5f5;
    color: #262626;
  }
  
  .selectize-dropdown .active.create
  {
    color: #262626;
  }
  
  .selectize-dropdown .create
  {
    color: rgba(51,51,51,.5);
  }
  
  .selectize-dropdown-content
  {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch;
  }
  
  .selectize-control.single .selectize-input,.selectize-control.single .selectize-input input
  {
    cursor: pointer;
  }
  
  .selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input
  {
    cursor: text;
  }
  
  .selectize-control.single .selectize-input:after
  {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    right: 17px;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0;
    border-color: #333 transparent transparent;
  }
  
  .selectize-control.single .selectize-input.dropdown-active:after
  {
    margin-top: -4px;
    border-width: 0 5px 5px;
    border-color: transparent transparent #333;
  }
  
  .selectize-control.rtl.single .selectize-input:after
  {
    left: 17px;
    right: auto;
  }
  
  .selectize-control.rtl .selectize-input>input
  {
    margin: 0 4px 0 -2px!important;
  }
  
  .selectize-control .selectize-input.disabled
  {
    opacity: .5;
    background-color: #fff;
  }
  
  .selectize-dropdown,.selectize-dropdown.form-control
  {
    height: auto;
    padding: 0;
    margin: 2px 0 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
  }
  
  .selectize-dropdown .optgroup-header
  {
    font-size: 12px;
    line-height: 1.42857143;
  }
  
  .selectize-dropdown .optgroup:first-child:before
  {
    display: none;
  }
  
  .selectize-dropdown .optgroup:before
  {
    content: " ";
    display: block;
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
    margin-left: -12px;
    margin-right: -12px;
  }
  
  .selectize-dropdown-content
  {
    padding: 5px 0;
  }
  
  .selectize-dropdown-header
  {
    padding: 6px 12px;
  }
  
  .selectize-input
  {
    min-height: 34px;
  }
  
  .selectize-input.dropdown-active
  {
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
  
  .selectize-input.dropdown-active:before
  {
    display: none;
  }
  
  .selectize-input.focus
  {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  }
  
  .has-error .selectize-input
  {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  }
  
  .has-error .selectize-input:focus
  {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
  }
  
  .selectize-control.multi .selectize-input.has-items
  {
    padding-left: 9px;
    padding-right: 9px;
  }
  
  .selectize-control.multi .selectize-input>div
  {
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
  
  .form-control.selectize-control
  {
    padding: 0;
    height: auto;
    border: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  