/**
 * tom-select.css (v2.4.3)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */

 .ts-control {
  border: 1px solid #9A9A9C;
  height: 40px;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
}

.ts-wrapper.focus > .ts-control {
  border-color: #AEA3FF !important;
  border-width: 1.2px;
  outline: none;
}

.ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 0) 8px calc(8px - 2px - 3px - 0);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: rgb(124.5, 124.5, 124.5);
  background: white;
  border: 0 solid white;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  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;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  font-weight: 600;
  color: #323234
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  height: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D4D4D6;
}

.ts-dropdown.single .option.selected {
  justify-content: space-between;
  font-weight: 700;
}

.ts-dropdown.single .option.selected::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('/assets/check_black_24dp.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #EFEFFB66;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}

:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-control {
  padding-right: 2rem;
  position: relative;
}

.ts-control::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath d='M7,10l5,5,5-5Z' fill='%237d7d7f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  background-color: white;
}

.ts-control.rotate-icon::after {
  transform: translateY(-50%) rotate(180deg);
}

.no-icon .ts-control::after {
  display: none;
}

.no-icon .ts-control {
  padding-right: 0;
}

.ts-wrapper.has-items input::placeholder {
  opacity: 0;
}


.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
/*# sourceMappingURL=tom-select.css.map */
/*


*/


@charset "UTF-8";
/* line 4, /usr/share/rvm/gems/ruby-2.3.1/gems/neat-1.7.2/app/assets/stylesheets/grid/_box-sizing.scss */
html {
  box-sizing: border-box;
}

/* line 9, /usr/share/rvm/gems/ruby-2.3.1/gems/neat-1.7.2/app/assets/stylesheets/grid/_box-sizing.scss */
*, *::after, *::before {
  box-sizing: inherit;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  /* line 10, /app/app/assets/stylesheets/datepicker.sass */
  .datetimepicker {
    left: 32% !important;
  }
}
@media screen and (min-width: 360px) and (max-width: 411px) {
  /* line 10, /app/app/assets/stylesheets/datepicker.sass */
  .datetimepicker {
    left: 40% !important;
  }
}
@media screen and (min-width: 411px) and (max-width: 500px) {
  /* line 10, /app/app/assets/stylesheets/datepicker.sass */
  .datetimepicker {
    left: 48% !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 500px) {
  /* line 19, /app/app/assets/stylesheets/datepicker.sass */
  .datetimepicker-dropdown-bottom-right:before {
    left: 171px !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 500px) {
  /* line 22, /app/app/assets/stylesheets/datepicker.sass */
  .datetimepicker-dropdown-bottom-right:after {
    left: 172px !important;
  }
}

/* line 1, /app/vendor/assets/stylesheets/sweetalert.min.scss */
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

/* line 5, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

/* line 19, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert {
  background-color: white;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  /* line 34, /app/vendor/assets/stylesheets/sweetalert.min.scss */
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
/* line 40, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert h2 {
  color: #575757;
  font-size: 24px;
  text-align: center;
  font-weight: 100;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}

/* line 51, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 5px;
  padding: 0;
  line-height: normal;
}

/* line 62, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert fieldset {
  border: none;
  position: relative;
}

/* line 65, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

/* line 74, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}

/* line 79, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

/* line 89, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-error-container p {
  display: inline-block;
}

/* line 91, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

/* line 104, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

/* line 115, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 118, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 121, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* line 125, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 139, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

/* line 143, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

/* line 146, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

/* line 149, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

/* line 152, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

/* line 154, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

/* line 156, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

/* line 158, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert.show-input input {
  display: block;
}

/* line 160, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}

/* line 163, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}

/* line 171, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 0px 5px 0 5px;
  cursor: pointer;
}

/* line 183, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* line 186, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button:hover {
  background-color: #7ecff4;
}

/* line 188, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button:active {
  background-color: #5dc2f1;
}

/* line 190, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button.cancel {
  background-color: #fff;
  border: 1px solid #ccc;
  color: black;
}

/* line 194, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button.cancel:hover {
  background-color: #eee;
}

/* line 196, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button.cancel:active {
  background-color: #eee;
}

/* line 198, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

/* line 200, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default;
}

/* line 203, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button.confirm[disabled] {
  color: transparent;
}

/* line 205, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

/* line 209, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert button::-moz-focus-inner {
  border: 0;
}

/* line 211, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}

/* line 213, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

/* line 215, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

/* line 226, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}

/* line 228, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

/* line 231, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

/* line 239, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}

/* line 243, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}

/* line 247, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}

/* line 249, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}

/* line 259, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}

/* line 269, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}

/* line 271, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}

/* line 281, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}

/* line 290, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}

/* line 292, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 303, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}

/* line 312, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}

/* line 321, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

/* line 333, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 343, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

/* line 350, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 356, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 362, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@-webkit-keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
/* line 464, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
}

/* line 468, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

/* line 472, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s;
}

/* line 476, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s;
}

/* line 480, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s;
}

/* line 484, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

/* line 488, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s;
}

/* line 492, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s;
}

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
/* line 604, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}

/* line 608, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}

/* line 612, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
/* line 636, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s;
}

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
/* line 682, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s;
}

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
/* line 698, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate;
}

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
/* line 714, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
/* line 734, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9;
}

/* line 737, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9;
}

/* Success icon */
/* line 741, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9;
}

/* line 744, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9;
}

/* line 747, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
/* line 755, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 762, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

/* line 767, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall.la-dark {
  color: #333;
}

/* line 770, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

/* line 776, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall {
  width: 54px;
  height: 18px;
}

/* line 780, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}

/* line 791, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}

/* line 797, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}

/* line 803, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}

/* line 809, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

/* line 813, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

/* line 818, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

/* line 822, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

/* line 827, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

/* line 831, /app/vendor/assets/stylesheets/sweetalert.min.scss */
.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}
/* line 1, /app/app/assets/stylesheets/autocomplete.sass.erb */
.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
/* line 27, /app/app/assets/stylesheets/autocomplete.sass.erb */
.ui-autocomplete a:hover {
  text-decoration: none;
}
/* line 29, /app/app/assets/stylesheets/autocomplete.sass.erb */
.ui-autocomplete li {
  padding-left: 10px;
}
/* line 31, /app/app/assets/stylesheets/autocomplete.sass.erb */
.ui-autocomplete li:hover {
  background-color: #0081c2;
}
/* line 33, /app/app/assets/stylesheets/autocomplete.sass.erb */
.ui-autocomplete li:hover a {
  color: white;
}

/* line 2, /app/app/assets/stylesheets/pagination.sass */
.pagination-container {
  font-size: 1.1rem;
  text-align: center;
  margin: 20px auto;
}

/* line 7, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination {
  background: white;
  cursor: default;
}
/* line 10, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination a, .digg_pagination span, .digg_pagination em {
  padding: 0.2em 0.5em;
  display: block;
  float: left;
  margin-right: 1px;
}
/* line 15, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination .disabled {
  color: #999999;
  border: 1px solid #dddddd;
}
/* line 18, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination .current {
  font-style: normal;
  font-weight: bold;
  background: #2e6ab1;
  color: white;
  border: 1px solid #2e6ab1;
}
/* line 24, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination a {
  text-decoration: none;
  color: #105cb6;
  border: 1px solid #9aafe5;
}
/* line 28, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination a:hover, .digg_pagination a:focus {
  color: #000033;
  border-color: #000033;
}
/* line 31, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination .page_info {
  background: #2e6ab1;
  color: white;
  padding: 0.4em 0.6em;
  width: 22em;
  margin-bottom: 0.3em;
  text-align: center;
}
/* line 38, /app/app/assets/stylesheets/pagination.sass */
.digg_pagination .page_info b {
  color: #000033;
  background: #6aa6ed;
  padding: 0.1em 0.25em;
}

/*!
 * Datetimepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker {
  padding: 4px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-inline {
  width: 220px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker.datetimepicker-rtl {
  direction: rtl;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker.datetimepicker-rtl table tr td span {
  float: right;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown, .datetimepicker-dropdown-left {
  top: 0;
  left: 0;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
[class*=" datetimepicker-dropdown"]:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
[class*=" datetimepicker-dropdown"]:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
[class*=" datetimepicker-dropdown-top"]:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
[class*=" datetimepicker-dropdown-top"]:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  border-bottom: 0;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-bottom-left:before {
  top: -7px;
  right: 6px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-bottom-left:after {
  top: -6px;
  right: 7px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-bottom-right:before {
  top: -7px;
  left: 6px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-bottom-right:after {
  top: -6px;
  left: 7px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-top-left:before {
  bottom: -7px;
  right: 6px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-top-left:after {
  bottom: -6px;
  right: 7px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-top-right:before {
  bottom: -7px;
  left: 6px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker-dropdown-top-right:after {
  bottom: -6px;
  left: 7px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker > div {
  display: none;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker.minutes div.datetimepicker-minutes {
  display: block;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker.hours div.datetimepicker-hours {
  display: block;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker.days div.datetimepicker-days {
  display: block;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker.months div.datetimepicker-months {
  display: block;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker.years div.datetimepicker-years {
  display: block;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table {
  margin: 0;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker td, .datetimepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 0;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.table-striped .datetimepicker table tr td, .table-striped .datetimepicker table tr th {
  background-color: transparent;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.minute:hover {
  background: #eee;
  cursor: pointer;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.hour:hover {
  background: #eee;
  cursor: pointer;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.day:hover {
  background: #eee;
  cursor: pointer;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.old, .datetimepicker table tr td.new {
  color: #999;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.disabled, .datetimepicker table tr td.disabled:hover {
  background: 0;
  color: #999;
  cursor: default;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.today, .datetimepicker table tr td.today:hover, .datetimepicker table tr td.today.disabled, .datetimepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: linear-gradient(top, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a',endColorstr='#fdf59a',GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.today:hover, .datetimepicker table tr td.today:hover:hover, .datetimepicker table tr td.today.disabled:hover, .datetimepicker table tr td.today.disabled:hover:hover, .datetimepicker table tr td.today:active, .datetimepicker table tr td.today:hover:active, .datetimepicker table tr td.today.disabled:active, .datetimepicker table tr td.today.disabled:hover:active, .datetimepicker table tr td.today.active, .datetimepicker table tr td.today:hover.active, .datetimepicker table tr td.today.disabled.active, .datetimepicker table tr td.today.disabled:hover.active, .datetimepicker table tr td.today.disabled, .datetimepicker table tr td.today:hover.disabled, .datetimepicker table tr td.today.disabled.disabled, .datetimepicker table tr td.today.disabled:hover.disabled, .datetimepicker table tr td.today[disabled], .datetimepicker table tr td.today:hover[disabled], .datetimepicker table tr td.today.disabled[disabled], .datetimepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.today:active, .datetimepicker table tr td.today:hover:active, .datetimepicker table tr td.today.disabled:active, .datetimepicker table tr td.today.disabled:hover:active, .datetimepicker table tr td.today.active, .datetimepicker table tr td.today:hover.active, .datetimepicker table tr td.today.disabled.active, .datetimepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.active, .datetimepicker table tr td.active:hover, .datetimepicker table tr td.active.disabled, .datetimepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #08c, #04c);
  background-image: -ms-linear-gradient(top, #08c, #04c);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
  background-image: -webkit-linear-gradient(top, #08c, #04c);
  background-image: -o-linear-gradient(top, #08c, #04c);
  background-image: linear-gradient(top, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc',endColorstr='#0044cc',GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.active:hover, .datetimepicker table tr td.active:hover:hover, .datetimepicker table tr td.active.disabled:hover, .datetimepicker table tr td.active.disabled:hover:hover, .datetimepicker table tr td.active:active, .datetimepicker table tr td.active:hover:active, .datetimepicker table tr td.active.disabled:active, .datetimepicker table tr td.active.disabled:hover:active, .datetimepicker table tr td.active.active, .datetimepicker table tr td.active:hover.active, .datetimepicker table tr td.active.disabled.active, .datetimepicker table tr td.active.disabled:hover.active, .datetimepicker table tr td.active.disabled, .datetimepicker table tr td.active:hover.disabled, .datetimepicker table tr td.active.disabled.disabled, .datetimepicker table tr td.active.disabled:hover.disabled, .datetimepicker table tr td.active[disabled], .datetimepicker table tr td.active:hover[disabled], .datetimepicker table tr td.active.disabled[disabled], .datetimepicker table tr td.active.disabled:hover[disabled] {
  background-color: #04c;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td.active:active, .datetimepicker table tr td.active:hover:active, .datetimepicker table tr td.active.disabled:active, .datetimepicker table tr td.active.disabled:hover:active, .datetimepicker table tr td.active.active, .datetimepicker table tr td.active:hover.active, .datetimepicker table tr td.active.disabled.active, .datetimepicker table tr td.active.disabled:hover.active {
  background-color: #039;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker .datetimepicker-hours span {
  height: 26px;
  line-height: 26px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker .datetimepicker-hours table tr td span.hour_am, .datetimepicker .datetimepicker-hours table tr td span.hour_pm {
  width: 14.6%;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker .datetimepicker-hours fieldset legend, .datetimepicker .datetimepicker-minutes fieldset legend {
  margin-bottom: inherit;
  line-height: 30px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker .datetimepicker-minutes span {
  height: 26px;
  line-height: 26px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td span:hover {
  background: #eee;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td span.disabled, .datetimepicker table tr td span.disabled:hover {
  background: 0;
  color: #999;
  cursor: default;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td span.active, .datetimepicker table tr td span.active:hover, .datetimepicker table tr td span.active.disabled, .datetimepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #08c, #04c);
  background-image: -ms-linear-gradient(top, #08c, #04c);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
  background-image: -webkit-linear-gradient(top, #08c, #04c);
  background-image: -o-linear-gradient(top, #08c, #04c);
  background-image: linear-gradient(top, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc',endColorstr='#0044cc',GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td span.active:hover, .datetimepicker table tr td span.active:hover:hover, .datetimepicker table tr td span.active.disabled:hover, .datetimepicker table tr td span.active.disabled:hover:hover, .datetimepicker table tr td span.active:active, .datetimepicker table tr td span.active:hover:active, .datetimepicker table tr td span.active.disabled:active, .datetimepicker table tr td span.active.disabled:hover:active, .datetimepicker table tr td span.active.active, .datetimepicker table tr td span.active:hover.active, .datetimepicker table tr td span.active.disabled.active, .datetimepicker table tr td span.active.disabled:hover.active, .datetimepicker table tr td span.active.disabled, .datetimepicker table tr td span.active:hover.disabled, .datetimepicker table tr td span.active.disabled.disabled, .datetimepicker table tr td span.active.disabled:hover.disabled, .datetimepicker table tr td span.active[disabled], .datetimepicker table tr td span.active:hover[disabled], .datetimepicker table tr td span.active.disabled[disabled], .datetimepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #04c;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td span.active:active, .datetimepicker table tr td span.active:hover:active, .datetimepicker table tr td span.active.disabled:active, .datetimepicker table tr td span.active.disabled:hover:active, .datetimepicker table tr td span.active.active, .datetimepicker table tr td span.active:hover.active, .datetimepicker table tr td span.active.disabled.active, .datetimepicker table tr td span.active.disabled:hover.active {
  background-color: #039;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker table tr td span.old {
  color: #999;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker th.switch {
  width: 145px;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker thead tr:first-child th, .datetimepicker tfoot tr:first-child th {
  cursor: pointer;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.datetimepicker thead tr:first-child th:hover, .datetimepicker tfoot tr:first-child th:hover {
  background: #eee;
}

/* line 9, /app/vendor/assets/stylesheets/bootstrap-datetimepicker.min.scss */
.input-append.date .add-on i, .input-prepend.date .add-on i, .input-group.date .input-group-addon span {
  cursor: pointer;
  width: 14px;
  height: 14px;
}

/* ========================================================================
 * bootstrap-switch - v3.3.2
 * http://www.bootstrap-switch.org
 * ========================================================================
 * Copyright 2012-2013 Mattia Larentis
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */
/* line 22, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid;
  border-color: #cccccc;
  position: relative;
  text-align: left;
  overflow: hidden;
  line-height: 8px;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* line 43, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-container {
  display: inline-block;
  top: 0;
  border-radius: 4px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 50, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block !important;
  height: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
}

/* line 63, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
  text-align: center;
  z-index: 1;
}

/* line 68, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  color: #fff;
  background: #337ab7;
}

/* line 73, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  color: #fff;
  background: #5bc0de;
}

/* line 78, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  color: #fff;
  background: #5cb85c;
}

/* line 83, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  background: #f0ad4e;
  color: #fff;
}

/* line 88, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  color: #fff;
  background: #d9534f;
}

/* line 93, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  color: #000;
  background: #eeeeee;
}

/* line 98, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-label {
  text-align: center;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 100;
  color: #333333;
  background: #ffffff;
}

/* line 106, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 110, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 114, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
  position: absolute !important;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 124, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 131, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 138, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 145, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
  cursor: default !important;
}

/* line 150, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default !important;
}

/* line 163, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
  -webkit-transition: margin-left 0.5s;
  -o-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}

/* line 168, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 174, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 180, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-focused {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 186, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 191, /app/vendor/assets/stylesheets/bootstrap-switch.css */
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container {
  position: relative;
  list-style: none;
  padding: 0 0 5px 5px;
  height: auto;
  min-height: 34px;
  cursor: text;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize.focus > .tokens-container {
  outline: 0;
  border-color: #66afe9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container.input-sm {
  padding: 0 0 4px 4px;
  min-height: 30px;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container.input-lg {
  padding: 0 0 9px 9px;
  min-height: 46px;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token {
  padding: 0 1.2em 0 5px;
  background-color: #eff2f7;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token, .tokenize > .tokens-container > .placeholder, .tokenize > .tokens-container > .token-search {
  border: 1px solid #cdd5e3;
  display: inline-block;
  margin: 5px 5px 0 0;
  position: relative;
  vertical-align: middle;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize.sortable > .tokens-container > .token {
  cursor: move;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize.single > .tokens-container > .token {
  display: block;
  border-color: #fff;
  background-color: transparent;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize.sortable > .tokens-container > .token.shadow {
  border-color: #ccc;
  background-color: #ccc;
  filter: alpha(opacity=50);
  opacity: .2;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .placeholder, .tokenize > .tokens-container > .token-search {
  padding: 0;
  border-color: #fff;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .placeholder {
  color: #ccc;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token-search > input {
  padding: 0;
  margin: 0;
  line-height: 1em;
  border: 1px solid #fff;
  background: transparent;
  border-left: none;
  border-right: none;
  outline: none;
  width: 100%;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token-search > input::-ms-clear {
  display: none;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container.input-sm > .placeholder, .tokenize > .tokens-container.input-sm > .token-search, .tokenize > .tokens-container.input-sm > .token {
  margin: 4px 4px 0 0;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container.input-lg > .placeholder, .tokenize > .tokens-container.input-lg > .token-search, .tokenize > .tokens-container.input-lg > .token {
  margin: 9px 9px 0 0;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token.pending-delete {
  background-color: #5b72a4;
  border-color: #425c96;
  color: #fff;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token > .dismiss {
  position: absolute;
  right: 5px;
  color: #a9b9d8;
  text-decoration: none;
  cursor: pointer;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token > .dismiss:after {
  content: "×";
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize > .tokens-container > .token.pending-delete > .dismiss {
  color: #aaa;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize-dropdown {
  position: absolute;
  display: none;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize-dropdown > .dropdown-menu {
  min-height: 10px;
  width: 100%;
  display: block;
  margin: -1px 0 0;
  visibility: visible;
  opacity: 1;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize-dropdown > .dropdown-menu li {
  cursor: pointer;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize-dropdown > .dropdown-menu li > a .tokenize-highlight {
  font-weight: 700;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize-dropdown > .dropdown-menu li.locked {
  padding: 3px 20px;
  color: #333;
  white-space: nowrap;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize-dropdown > .dropdown-menu li.locked, .tokenize-dropdown > .dropdown-menu li > a {
  text-overflow: ellipsis;
  overflow-x: hidden;
}

/* line 1, /app/app/assets/stylesheets/tokenize2.min.css */
.tokenize-dropdown > .dropdown-menu li:not(.active) a:hover, .tokenize-dropdown > .dropdown-menu li:not(.active) a:focus {
  background-color: transparent;
}

/* line 1, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input {
  position: relative;
  display: inline-block;
}

/* line 4, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 7, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .hide {
  display: none;
}

/* line 9, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .v-hide {
  visibility: hidden;
}

/* line 11, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

/* line 18, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

/* line 24, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .selected-flag {
  z-index: 1;
  position: relative;
  width: 36px;
  height: 100%;
  padding: 0 0 0 8px;
}

/* line 30, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .selected-flag .iti-flag {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* line 35, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .selected-flag .iti-arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

/* line 45, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .selected-flag .iti-arrow.up {
  border-top: none;
  border-bottom: 4px solid #555;
}

/* line 48, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

/* line 62, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list.dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

/* line 65, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list .flag-box {
  display: inline-block;
  width: 20px;
}

@media (max-width: 500px) {
  /* line 69, /app/app/assets/stylesheets/intlTelInput.css.erb */
  .intl-tel-input .country-list {
    white-space: normal;
  }
}
/* line 71, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list .divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

/* line 75, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list .country {
  padding: 5px 10px;
}

/* line 77, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list .country .dial-code {
  color: #999;
}

/* line 79, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list .country.highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 81, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
  vertical-align: middle;
}

/* line 83, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
  margin-right: 6px;
}

/* line 85, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel], .intl-tel-input.separate-dial-code input, .intl-tel-input.separate-dial-code input[type=text], .intl-tel-input.separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

/* line 89, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
  right: auto;
  left: 0;
}

/* line 92, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
  width: 46px;
}

/* line 94, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.allow-dropdown .flag-container:hover {
  cursor: pointer;
}

/* line 96, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 98, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
  cursor: default;
}

/* line 100, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
  background-color: transparent;
}

/* line 102, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
}

/* line 105, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code .selected-dial-code {
  display: table-cell;
  vertical-align: middle;
  padding-left: 28px;
}

/* line 109, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-2 input, .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
  padding-left: 66px;
}

/* line 111, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
  width: 60px;
}

/* line 113, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
  padding-left: 76px;
}

/* line 115, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
  width: 70px;
}

/* line 117, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-3 input, .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
  padding-left: 74px;
}

/* line 119, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
  width: 68px;
}

/* line 121, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
  padding-left: 84px;
}

/* line 123, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  width: 78px;
}

/* line 125, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-4 input, .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
  padding-left: 82px;
}

/* line 127, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
  width: 76px;
}

/* line 129, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
  padding-left: 92px;
}

/* line 131, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
  width: 86px;
}

/* line 133, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-5 input, .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
  padding-left: 90px;
}

/* line 135, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
  width: 84px;
}

/* line 137, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
  padding-left: 100px;
}

/* line 139, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
  width: 94px;
}

/* line 141, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.iti-container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

/* line 147, /app/app/assets/stylesheets/intlTelInput.css.erb */
.intl-tel-input.iti-container:hover {
  cursor: pointer;
}

/* line 150, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

/* line 157, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-mobile .intl-tel-input .country-list {
  max-height: 100%;
  width: 100%;
}

/* line 160, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-mobile .intl-tel-input .country-list .country {
  padding: 10px 10px;
  line-height: 1.5em;
}

/* line 164, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag {
  width: 20px;
}

/* line 166, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.be {
  width: 18px;
}

/* line 168, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ch {
  width: 15px;
}

/* line 170, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mc {
  width: 19px;
}

/* line 172, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ne {
  width: 18px;
}

/* line 174, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.np {
  width: 13px;
}

/* line 176, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 179, /app/app/assets/stylesheets/intlTelInput.css.erb */
  .iti-flag {
    background-size: 5652px 15px;
  }
}
/* line 181, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ac {
  height: 10px;
  background-position: 0px 0px;
}

/* line 184, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ad {
  height: 14px;
  background-position: -22px 0px;
}

/* line 187, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ae {
  height: 10px;
  background-position: -44px 0px;
}

/* line 190, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.af {
  height: 14px;
  background-position: -66px 0px;
}

/* line 193, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ag {
  height: 14px;
  background-position: -88px 0px;
}

/* line 196, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ai {
  height: 10px;
  background-position: -110px 0px;
}

/* line 199, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.al {
  height: 15px;
  background-position: -132px 0px;
}

/* line 202, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.am {
  height: 10px;
  background-position: -154px 0px;
}

/* line 205, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ao {
  height: 14px;
  background-position: -176px 0px;
}

/* line 208, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.aq {
  height: 14px;
  background-position: -198px 0px;
}

/* line 211, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ar {
  height: 13px;
  background-position: -220px 0px;
}

/* line 214, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.as {
  height: 10px;
  background-position: -242px 0px;
}

/* line 217, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.at {
  height: 14px;
  background-position: -264px 0px;
}

/* line 220, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.au {
  height: 10px;
  background-position: -286px 0px;
}

/* line 223, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.aw {
  height: 14px;
  background-position: -308px 0px;
}

/* line 226, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ax {
  height: 13px;
  background-position: -330px 0px;
}

/* line 229, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.az {
  height: 10px;
  background-position: -352px 0px;
}

/* line 232, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ba {
  height: 10px;
  background-position: -374px 0px;
}

/* line 235, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bb {
  height: 14px;
  background-position: -396px 0px;
}

/* line 238, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bd {
  height: 12px;
  background-position: -418px 0px;
}

/* line 241, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.be {
  height: 15px;
  background-position: -440px 0px;
}

/* line 244, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bf {
  height: 14px;
  background-position: -460px 0px;
}

/* line 247, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bg {
  height: 12px;
  background-position: -482px 0px;
}

/* line 250, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bh {
  height: 12px;
  background-position: -504px 0px;
}

/* line 253, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bi {
  height: 12px;
  background-position: -526px 0px;
}

/* line 256, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bj {
  height: 14px;
  background-position: -548px 0px;
}

/* line 259, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bl {
  height: 14px;
  background-position: -570px 0px;
}

/* line 262, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bm {
  height: 10px;
  background-position: -592px 0px;
}

/* line 265, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bn {
  height: 10px;
  background-position: -614px 0px;
}

/* line 268, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bo {
  height: 14px;
  background-position: -636px 0px;
}

/* line 271, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bq {
  height: 14px;
  background-position: -658px 0px;
}

/* line 274, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.br {
  height: 14px;
  background-position: -680px 0px;
}

/* line 277, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bs {
  height: 10px;
  background-position: -702px 0px;
}

/* line 280, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bt {
  height: 14px;
  background-position: -724px 0px;
}

/* line 283, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bv {
  height: 15px;
  background-position: -746px 0px;
}

/* line 286, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bw {
  height: 14px;
  background-position: -768px 0px;
}

/* line 289, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.by {
  height: 10px;
  background-position: -790px 0px;
}

/* line 292, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.bz {
  height: 14px;
  background-position: -812px 0px;
}

/* line 295, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ca {
  height: 10px;
  background-position: -834px 0px;
}

/* line 298, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cc {
  height: 10px;
  background-position: -856px 0px;
}

/* line 301, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cd {
  height: 15px;
  background-position: -878px 0px;
}

/* line 304, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cf {
  height: 14px;
  background-position: -900px 0px;
}

/* line 307, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cg {
  height: 14px;
  background-position: -922px 0px;
}

/* line 310, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ch {
  height: 15px;
  background-position: -944px 0px;
}

/* line 313, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ci {
  height: 14px;
  background-position: -961px 0px;
}

/* line 316, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ck {
  height: 10px;
  background-position: -983px 0px;
}

/* line 319, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cl {
  height: 14px;
  background-position: -1005px 0px;
}

/* line 322, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cm {
  height: 14px;
  background-position: -1027px 0px;
}

/* line 325, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cn {
  height: 14px;
  background-position: -1049px 0px;
}

/* line 328, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.co {
  height: 14px;
  background-position: -1071px 0px;
}

/* line 331, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cp {
  height: 14px;
  background-position: -1093px 0px;
}

/* line 334, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cr {
  height: 12px;
  background-position: -1115px 0px;
}

/* line 337, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cu {
  height: 10px;
  background-position: -1137px 0px;
}

/* line 340, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cv {
  height: 12px;
  background-position: -1159px 0px;
}

/* line 343, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cw {
  height: 14px;
  background-position: -1181px 0px;
}

/* line 346, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cx {
  height: 10px;
  background-position: -1203px 0px;
}

/* line 349, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cy {
  height: 14px;
  background-position: -1225px 0px;
}

/* line 352, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.cz {
  height: 14px;
  background-position: -1247px 0px;
}

/* line 355, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.de {
  height: 12px;
  background-position: -1269px 0px;
}

/* line 358, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.dg {
  height: 10px;
  background-position: -1291px 0px;
}

/* line 361, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.dj {
  height: 14px;
  background-position: -1313px 0px;
}

/* line 364, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.dk {
  height: 15px;
  background-position: -1335px 0px;
}

/* line 367, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.dm {
  height: 10px;
  background-position: -1357px 0px;
}

/* line 370, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.do {
  height: 14px;
  background-position: -1379px 0px;
}

/* line 373, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.dz {
  height: 14px;
  background-position: -1401px 0px;
}

/* line 376, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ea {
  height: 14px;
  background-position: -1423px 0px;
}

/* line 379, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ec {
  height: 14px;
  background-position: -1445px 0px;
}

/* line 382, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ee {
  height: 13px;
  background-position: -1467px 0px;
}

/* line 385, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.eg {
  height: 14px;
  background-position: -1489px 0px;
}

/* line 388, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.eh {
  height: 10px;
  background-position: -1511px 0px;
}

/* line 391, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.er {
  height: 10px;
  background-position: -1533px 0px;
}

/* line 394, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.es {
  height: 14px;
  background-position: -1555px 0px;
}

/* line 397, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.et {
  height: 10px;
  background-position: -1577px 0px;
}

/* line 400, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.eu {
  height: 14px;
  background-position: -1599px 0px;
}

/* line 403, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.fi {
  height: 12px;
  background-position: -1621px 0px;
}

/* line 406, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.fj {
  height: 10px;
  background-position: -1643px 0px;
}

/* line 409, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.fk {
  height: 10px;
  background-position: -1665px 0px;
}

/* line 412, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.fm {
  height: 11px;
  background-position: -1687px 0px;
}

/* line 415, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.fo {
  height: 15px;
  background-position: -1709px 0px;
}

/* line 418, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.fr {
  height: 14px;
  background-position: -1731px 0px;
}

/* line 421, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ga {
  height: 15px;
  background-position: -1753px 0px;
}

/* line 424, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gb {
  height: 10px;
  background-position: -1775px 0px;
}

/* line 427, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gd {
  height: 12px;
  background-position: -1797px 0px;
}

/* line 430, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ge {
  height: 14px;
  background-position: -1819px 0px;
}

/* line 433, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gf {
  height: 14px;
  background-position: -1841px 0px;
}

/* line 436, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gg {
  height: 14px;
  background-position: -1863px 0px;
}

/* line 439, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gh {
  height: 14px;
  background-position: -1885px 0px;
}

/* line 442, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gi {
  height: 10px;
  background-position: -1907px 0px;
}

/* line 445, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gl {
  height: 14px;
  background-position: -1929px 0px;
}

/* line 448, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gm {
  height: 14px;
  background-position: -1951px 0px;
}

/* line 451, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gn {
  height: 14px;
  background-position: -1973px 0px;
}

/* line 454, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gp {
  height: 14px;
  background-position: -1995px 0px;
}

/* line 457, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gq {
  height: 14px;
  background-position: -2017px 0px;
}

/* line 460, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gr {
  height: 14px;
  background-position: -2039px 0px;
}

/* line 463, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gs {
  height: 10px;
  background-position: -2061px 0px;
}

/* line 466, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gt {
  height: 13px;
  background-position: -2083px 0px;
}

/* line 469, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gu {
  height: 11px;
  background-position: -2105px 0px;
}

/* line 472, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gw {
  height: 10px;
  background-position: -2127px 0px;
}

/* line 475, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.gy {
  height: 12px;
  background-position: -2149px 0px;
}

/* line 478, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.hk {
  height: 14px;
  background-position: -2171px 0px;
}

/* line 481, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.hm {
  height: 10px;
  background-position: -2193px 0px;
}

/* line 484, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.hn {
  height: 10px;
  background-position: -2215px 0px;
}

/* line 487, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.hr {
  height: 10px;
  background-position: -2237px 0px;
}

/* line 490, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ht {
  height: 12px;
  background-position: -2259px 0px;
}

/* line 493, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.hu {
  height: 10px;
  background-position: -2281px 0px;
}

/* line 496, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ic {
  height: 14px;
  background-position: -2303px 0px;
}

/* line 499, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.id {
  height: 14px;
  background-position: -2325px 0px;
}

/* line 502, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ie {
  height: 10px;
  background-position: -2347px 0px;
}

/* line 505, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.il {
  height: 15px;
  background-position: -2369px 0px;
}

/* line 508, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.im {
  height: 10px;
  background-position: -2391px 0px;
}

/* line 511, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.in {
  height: 14px;
  background-position: -2413px 0px;
}

/* line 514, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.io {
  height: 10px;
  background-position: -2435px 0px;
}

/* line 517, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.iq {
  height: 14px;
  background-position: -2457px 0px;
}

/* line 520, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ir {
  height: 12px;
  background-position: -2479px 0px;
}

/* line 523, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.is {
  height: 15px;
  background-position: -2501px 0px;
}

/* line 526, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.it {
  height: 14px;
  background-position: -2523px 0px;
}

/* line 529, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.je {
  height: 12px;
  background-position: -2545px 0px;
}

/* line 532, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.jm {
  height: 10px;
  background-position: -2567px 0px;
}

/* line 535, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.jo {
  height: 10px;
  background-position: -2589px 0px;
}

/* line 538, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.jp {
  height: 14px;
  background-position: -2611px 0px;
}

/* line 541, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ke {
  height: 14px;
  background-position: -2633px 0px;
}

/* line 544, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.kg {
  height: 12px;
  background-position: -2655px 0px;
}

/* line 547, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.kh {
  height: 13px;
  background-position: -2677px 0px;
}

/* line 550, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ki {
  height: 10px;
  background-position: -2699px 0px;
}

/* line 553, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.km {
  height: 12px;
  background-position: -2721px 0px;
}

/* line 556, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.kn {
  height: 14px;
  background-position: -2743px 0px;
}

/* line 559, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.kp {
  height: 10px;
  background-position: -2765px 0px;
}

/* line 562, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.kr {
  height: 14px;
  background-position: -2787px 0px;
}

/* line 565, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.kw {
  height: 10px;
  background-position: -2809px 0px;
}

/* line 568, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ky {
  height: 10px;
  background-position: -2831px 0px;
}

/* line 571, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.kz {
  height: 10px;
  background-position: -2853px 0px;
}

/* line 574, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.la {
  height: 14px;
  background-position: -2875px 0px;
}

/* line 577, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.lb {
  height: 14px;
  background-position: -2897px 0px;
}

/* line 580, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.lc {
  height: 10px;
  background-position: -2919px 0px;
}

/* line 583, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.li {
  height: 12px;
  background-position: -2941px 0px;
}

/* line 586, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.lk {
  height: 10px;
  background-position: -2963px 0px;
}

/* line 589, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.lr {
  height: 11px;
  background-position: -2985px 0px;
}

/* line 592, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ls {
  height: 14px;
  background-position: -3007px 0px;
}

/* line 595, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.lt {
  height: 12px;
  background-position: -3029px 0px;
}

/* line 598, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.lu {
  height: 12px;
  background-position: -3051px 0px;
}

/* line 601, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.lv {
  height: 10px;
  background-position: -3073px 0px;
}

/* line 604, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ly {
  height: 10px;
  background-position: -3095px 0px;
}

/* line 607, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ma {
  height: 14px;
  background-position: -3117px 0px;
}

/* line 610, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mc {
  height: 15px;
  background-position: -3139px 0px;
}

/* line 613, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.md {
  height: 10px;
  background-position: -3160px 0px;
}

/* line 616, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.me {
  height: 10px;
  background-position: -3182px 0px;
}

/* line 619, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mf {
  height: 14px;
  background-position: -3204px 0px;
}

/* line 622, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mg {
  height: 14px;
  background-position: -3226px 0px;
}

/* line 625, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mh {
  height: 11px;
  background-position: -3248px 0px;
}

/* line 628, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mk {
  height: 10px;
  background-position: -3270px 0px;
}

/* line 631, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ml {
  height: 14px;
  background-position: -3292px 0px;
}

/* line 634, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mm {
  height: 14px;
  background-position: -3314px 0px;
}

/* line 637, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mn {
  height: 10px;
  background-position: -3336px 0px;
}

/* line 640, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mo {
  height: 14px;
  background-position: -3358px 0px;
}

/* line 643, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mp {
  height: 10px;
  background-position: -3380px 0px;
}

/* line 646, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mq {
  height: 14px;
  background-position: -3402px 0px;
}

/* line 649, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mr {
  height: 14px;
  background-position: -3424px 0px;
}

/* line 652, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ms {
  height: 10px;
  background-position: -3446px 0px;
}

/* line 655, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mt {
  height: 14px;
  background-position: -3468px 0px;
}

/* line 658, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mu {
  height: 14px;
  background-position: -3490px 0px;
}

/* line 661, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mv {
  height: 14px;
  background-position: -3512px 0px;
}

/* line 664, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mw {
  height: 14px;
  background-position: -3534px 0px;
}

/* line 667, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mx {
  height: 12px;
  background-position: -3556px 0px;
}

/* line 670, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.my {
  height: 10px;
  background-position: -3578px 0px;
}

/* line 673, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.mz {
  height: 14px;
  background-position: -3600px 0px;
}

/* line 676, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.na {
  height: 14px;
  background-position: -3622px 0px;
}

/* line 679, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.nc {
  height: 10px;
  background-position: -3644px 0px;
}

/* line 682, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ne {
  height: 15px;
  background-position: -3666px 0px;
}

/* line 685, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.nf {
  height: 10px;
  background-position: -3686px 0px;
}

/* line 688, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ng {
  height: 10px;
  background-position: -3708px 0px;
}

/* line 691, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ni {
  height: 12px;
  background-position: -3730px 0px;
}

/* line 694, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.nl {
  height: 14px;
  background-position: -3752px 0px;
}

/* line 697, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.no {
  height: 15px;
  background-position: -3774px 0px;
}

/* line 700, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.np {
  height: 15px;
  background-position: -3796px 0px;
}

/* line 703, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.nr {
  height: 10px;
  background-position: -3811px 0px;
}

/* line 706, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.nu {
  height: 10px;
  background-position: -3833px 0px;
}

/* line 709, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.nz {
  height: 10px;
  background-position: -3855px 0px;
}

/* line 712, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.om {
  height: 10px;
  background-position: -3877px 0px;
}

/* line 715, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pa {
  height: 14px;
  background-position: -3899px 0px;
}

/* line 718, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pe {
  height: 14px;
  background-position: -3921px 0px;
}

/* line 721, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pf {
  height: 14px;
  background-position: -3943px 0px;
}

/* line 724, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pg {
  height: 15px;
  background-position: -3965px 0px;
}

/* line 727, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ph {
  height: 10px;
  background-position: -3987px 0px;
}

/* line 730, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pk {
  height: 14px;
  background-position: -4009px 0px;
}

/* line 733, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pl {
  height: 13px;
  background-position: -4031px 0px;
}

/* line 736, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pm {
  height: 14px;
  background-position: -4053px 0px;
}

/* line 739, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pn {
  height: 10px;
  background-position: -4075px 0px;
}

/* line 742, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pr {
  height: 14px;
  background-position: -4097px 0px;
}

/* line 745, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ps {
  height: 10px;
  background-position: -4119px 0px;
}

/* line 748, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pt {
  height: 14px;
  background-position: -4141px 0px;
}

/* line 751, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.pw {
  height: 13px;
  background-position: -4163px 0px;
}

/* line 754, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.py {
  height: 11px;
  background-position: -4185px 0px;
}

/* line 757, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.qa {
  height: 8px;
  background-position: -4207px 0px;
}

/* line 760, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.re {
  height: 14px;
  background-position: -4229px 0px;
}

/* line 763, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ro {
  height: 14px;
  background-position: -4251px 0px;
}

/* line 766, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.rs {
  height: 14px;
  background-position: -4273px 0px;
}

/* line 769, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ru {
  height: 14px;
  background-position: -4295px 0px;
}

/* line 772, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.rw {
  height: 14px;
  background-position: -4317px 0px;
}

/* line 775, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sa {
  height: 14px;
  background-position: -4339px 0px;
}

/* line 778, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sb {
  height: 10px;
  background-position: -4361px 0px;
}

/* line 781, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sc {
  height: 10px;
  background-position: -4383px 0px;
}

/* line 784, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sd {
  height: 10px;
  background-position: -4405px 0px;
}

/* line 787, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.se {
  height: 13px;
  background-position: -4427px 0px;
}

/* line 790, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sg {
  height: 14px;
  background-position: -4449px 0px;
}

/* line 793, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sh {
  height: 10px;
  background-position: -4471px 0px;
}

/* line 796, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.si {
  height: 10px;
  background-position: -4493px 0px;
}

/* line 799, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sj {
  height: 15px;
  background-position: -4515px 0px;
}

/* line 802, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sk {
  height: 14px;
  background-position: -4537px 0px;
}

/* line 805, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sl {
  height: 14px;
  background-position: -4559px 0px;
}

/* line 808, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sm {
  height: 15px;
  background-position: -4581px 0px;
}

/* line 811, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sn {
  height: 14px;
  background-position: -4603px 0px;
}

/* line 814, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.so {
  height: 14px;
  background-position: -4625px 0px;
}

/* line 817, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sr {
  height: 14px;
  background-position: -4647px 0px;
}

/* line 820, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ss {
  height: 10px;
  background-position: -4669px 0px;
}

/* line 823, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.st {
  height: 10px;
  background-position: -4691px 0px;
}

/* line 826, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sv {
  height: 12px;
  background-position: -4713px 0px;
}

/* line 829, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sx {
  height: 14px;
  background-position: -4735px 0px;
}

/* line 832, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sy {
  height: 14px;
  background-position: -4757px 0px;
}

/* line 835, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.sz {
  height: 14px;
  background-position: -4779px 0px;
}

/* line 838, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ta {
  height: 10px;
  background-position: -4801px 0px;
}

/* line 841, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tc {
  height: 10px;
  background-position: -4823px 0px;
}

/* line 844, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.td {
  height: 14px;
  background-position: -4845px 0px;
}

/* line 847, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tf {
  height: 14px;
  background-position: -4867px 0px;
}

/* line 850, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tg {
  height: 13px;
  background-position: -4889px 0px;
}

/* line 853, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.th {
  height: 14px;
  background-position: -4911px 0px;
}

/* line 856, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tj {
  height: 10px;
  background-position: -4933px 0px;
}

/* line 859, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tk {
  height: 10px;
  background-position: -4955px 0px;
}

/* line 862, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tl {
  height: 10px;
  background-position: -4977px 0px;
}

/* line 865, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tm {
  height: 14px;
  background-position: -4999px 0px;
}

/* line 868, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tn {
  height: 14px;
  background-position: -5021px 0px;
}

/* line 871, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.to {
  height: 10px;
  background-position: -5043px 0px;
}

/* line 874, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tr {
  height: 14px;
  background-position: -5065px 0px;
}

/* line 877, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tt {
  height: 12px;
  background-position: -5087px 0px;
}

/* line 880, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tv {
  height: 10px;
  background-position: -5109px 0px;
}

/* line 883, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tw {
  height: 14px;
  background-position: -5131px 0px;
}

/* line 886, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.tz {
  height: 14px;
  background-position: -5153px 0px;
}

/* line 889, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ua {
  height: 14px;
  background-position: -5175px 0px;
}

/* line 892, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ug {
  height: 14px;
  background-position: -5197px 0px;
}

/* line 895, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.um {
  height: 11px;
  background-position: -5219px 0px;
}

/* line 898, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.un {
  height: 14px;
  background-position: -5241px 0px;
}

/* line 901, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.us {
  height: 11px;
  background-position: -5263px 0px;
}

/* line 904, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.uy {
  height: 14px;
  background-position: -5285px 0px;
}

/* line 907, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.uz {
  height: 10px;
  background-position: -5307px 0px;
}

/* line 910, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.va {
  height: 15px;
  background-position: -5329px 0px;
}

/* line 913, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.vc {
  height: 14px;
  background-position: -5346px 0px;
}

/* line 916, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ve {
  height: 14px;
  background-position: -5368px 0px;
}

/* line 919, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.vg {
  height: 10px;
  background-position: -5390px 0px;
}

/* line 922, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.vi {
  height: 14px;
  background-position: -5412px 0px;
}

/* line 925, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.vn {
  height: 14px;
  background-position: -5434px 0px;
}

/* line 928, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.vu {
  height: 12px;
  background-position: -5456px 0px;
}

/* line 931, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.wf {
  height: 14px;
  background-position: -5478px 0px;
}

/* line 934, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ws {
  height: 10px;
  background-position: -5500px 0px;
}

/* line 937, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.xk {
  height: 15px;
  background-position: -5522px 0px;
}

/* line 940, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.ye {
  height: 14px;
  background-position: -5544px 0px;
}

/* line 943, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.yt {
  height: 14px;
  background-position: -5566px 0px;
}

/* line 946, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.za {
  height: 14px;
  background-position: -5588px 0px;
}

/* line 949, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.zm {
  height: 14px;
  background-position: -5610px 0px;
}

/* line 952, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.zw {
  height: 10px;
  background-position: -5632px 0px;
}

/* line 956, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag {
  width: 20px;
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("/assets/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 965, /app/app/assets/stylesheets/intlTelInput.css.erb */
  .iti-flag {
    background-image: url("/assets/flags@2x.png");
  }
}
/* line 968, /app/app/assets/stylesheets/intlTelInput.css.erb */
.iti-flag.np {
  background-color: transparent;
}

@-webkit-keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: .125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: .875em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: .125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: .875em;
    width: 1.5625em;
  }
}
@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
  }
}
@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
/* line 219, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container {
  background-color: transparent;
}

/* line 221, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-shown {
  background-color: transparent;
}

/* line 223, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 230, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

/* line 235, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

/* line 240, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 247, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 254, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 261, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

/* line 266, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 273, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

/* line 279, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-column .swal2-toast {
  flex-direction: column;
  align-items: stretch;
}

/* line 282, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-column .swal2-toast .swal2-actions {
  flex: 1;
  align-self: stretch;
  height: 2.2em;
  margin-top: .3125em;
}

/* line 287, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-column .swal2-toast .swal2-loading {
  justify-content: center;
}

/* line 289, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-column .swal2-toast .swal2-input {
  height: 2em;
  margin: .3125em auto;
  font-size: 1em;
}

/* line 293, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-toast-column .swal2-toast .swal2-validation-message {
  font-size: 1em;
}

/* line 296, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast {
  flex-direction: row;
  align-items: center;
  width: auto;
  padding: 0.625em;
  box-shadow: 0 0 0.625em #d9d9d9;
  overflow-y: hidden;
}

/* line 303, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-header {
  flex-direction: row;
}

/* line 305, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-title {
  flex-grow: 1;
  justify-content: flex-start;
  margin: 0 .6em;
  font-size: 1em;
}

/* line 310, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

/* line 314, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-close {
  position: initial;
  width: 0.8em;
  height: 0.8em;
  line-height: 0.8;
}

/* line 319, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-content {
  justify-content: flex-start;
  font-size: 1em;
}

/* line 322, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-icon {
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0;
}

/* line 327, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-icon-text {
  font-size: 2em;
  font-weight: bold;
  line-height: 1em;
}

/* line 331, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

/* line 334, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
  top: .875em;
  width: 1.375em;
}

/* line 337, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
  left: .3125em;
}

/* line 339, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
  right: .3125em;
}

/* line 341, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-actions {
  height: auto;
  margin: 0 .3125em;
}

/* line 344, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-styled {
  margin: 0 .3125em;
  padding: .3125em .625em;
  font-size: 1em;
}

/* line 348, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-styled:focus {
  box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
}

/* line 350, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

/* line 352, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'] {
  position: absolute;
  width: 2em;
  height: 2.8125em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}

/* line 359, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='left'] {
  top: -.25em;
  left: -.9375em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 2em 2em;
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

/* line 367, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='right'] {
  top: -.25em;
  left: .9375em;
  -webkit-transform-origin: 0 2em;
  transform-origin: 0 2em;
  border-radius: 0 4em 4em 0;
}

/* line 373, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

/* line 376, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: .4375em;
  width: .4375em;
  height: 2.6875em;
}

/* line 381, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'] {
  height: .3125em;
}

/* line 383, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='tip'] {
  top: 1.125em;
  left: .1875em;
  width: .75em;
}

/* line 387, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='long'] {
  top: .9375em;
  right: .1875em;
  width: 1.375em;
}

/* line 391, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: showSweetToast .5s;
  animation: showSweetToast .5s;
}

/* line 394, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: hideSweetToast .2s forwards;
  animation: hideSweetToast .2s forwards;
}

/* line 397, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip {
  -webkit-animation: animate-toast-success-tip .75s;
  animation: animate-toast-success-tip .75s;
}

/* line 400, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long {
  -webkit-animation: animate-toast-success-long .75s;
  animation: animate-toast-success-long .75s;
}

@-webkit-keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
    opacity: .5;
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
    opacity: .7;
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0);
    transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}
@keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
    opacity: .5;
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
    opacity: .7;
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0);
    transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}
@-webkit-keyframes hideSweetToast {
  0% {
    opacity: 1;
  }
  33% {
    opacity: .5;
  }
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes hideSweetToast {
  0% {
    opacity: 1;
  }
  33% {
    opacity: .5;
  }
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@-webkit-keyframes animate-toast-success-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: .125em;
    left: .125em;
    width: 0;
  }
  70% {
    top: .625em;
    left: -.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em;
  }
  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em;
  }
}
@keyframes animate-toast-success-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: .125em;
    left: .125em;
    width: 0;
  }
  70% {
    top: .625em;
    left: -.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em;
  }
  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em;
  }
}
@-webkit-keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: .9375em;
    width: 0;
  }
  84% {
    top: .9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em;
  }
}
@keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: .9375em;
    width: 0;
  }
  84% {
    top: .9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em;
  }
}
/* line 540, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}

/* line 543, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-height-auto {
  height: auto !important;
}

/* line 546, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background-color: transparent;
}

/* line 552, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown > .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* line 554, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-top {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 559, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-top-start, body.swal2-no-backdrop .swal2-shown.swal2-top-left {
  top: 0;
  left: 0;
}

/* line 562, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-top-end, body.swal2-no-backdrop .swal2-shown.swal2-top-right {
  top: 0;
  right: 0;
}

/* line 565, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 570, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-center-start, body.swal2-no-backdrop .swal2-shown.swal2-center-left {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 575, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-center-end, body.swal2-no-backdrop .swal2-shown.swal2-center-right {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 580, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-bottom {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 585, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-bottom-start, body.swal2-no-backdrop .swal2-shown.swal2-bottom-left {
  bottom: 0;
  left: 0;
}

/* line 588, /app/app/assets/stylesheets/sweetalert2.css */
body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .swal2-shown.swal2-bottom-right {
  right: 0;
  bottom: 0;
}

/* line 592, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: transparent;
  z-index: 1060;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* line 607, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-top {
  align-items: flex-start;
}

/* line 609, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-top-start, .swal2-container.swal2-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

/* line 612, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

/* line 615, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-center {
  align-items: center;
}

/* line 617, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-center-start, .swal2-container.swal2-center-left {
  align-items: center;
  justify-content: flex-start;
}

/* line 620, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-center-end, .swal2-container.swal2-center-right {
  align-items: center;
  justify-content: flex-end;
}

/* line 623, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-bottom {
  align-items: flex-end;
}

/* line 625, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-bottom-start, .swal2-container.swal2-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

/* line 628, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-bottom-end, .swal2-container.swal2-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

/* line 631, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-grow-fullscreen > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-self: stretch;
  justify-content: center;
}

/* line 636, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-grow-row > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-content: center;
  justify-content: center;
}

/* line 641, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-grow-column {
  flex: 1;
  flex-direction: column;
}

/* line 644, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-grow-column.swal2-top, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-bottom {
  align-items: center;
}

/* line 646, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-grow-column.swal2-top-start, .swal2-container.swal2-grow-column.swal2-center-start, .swal2-container.swal2-grow-column.swal2-bottom-start, .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-bottom-left {
  align-items: flex-start;
}

/* line 648, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-grow-column.swal2-top-end, .swal2-container.swal2-grow-column.swal2-center-end, .swal2-container.swal2-grow-column.swal2-bottom-end, .swal2-container.swal2-grow-column.swal2-top-right, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-bottom-right {
  align-items: flex-end;
}

/* line 650, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-grow-column > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-content: center;
  justify-content: center;
}

/* line 655, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
  margin: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 658, /app/app/assets/stylesheets/sweetalert2.css */
  .swal2-container .swal2-modal {
    margin: 0 !important;
  }
}
/* line 660, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-fade {
  transition: background-color .1s;
}

/* line 662, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-container.swal2-shown {
  background-color: rgba(0, 0, 0, 0.4);
}

/* line 665, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border-radius: 0.3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

/* line 678, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup:focus {
  outline: none;
}

/* line 680, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

/* line 682, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 686, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-title {
  display: block;
  position: relative;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

/* line 698, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-actions {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1.25em auto 0;
  z-index: 1;
}

/* line 704, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: .4;
}

/* line 706, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

/* line 708, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

/* line 710, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
  width: 2.5em;
  height: 2.5em;
  margin: .46875em;
  padding: 0;
  border: .25em solid transparent;
  border-radius: 100%;
  border-color: transparent;
  background-color: transparent !important;
  color: transparent;
  cursor: default;
  box-sizing: border-box;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 728, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
  margin-right: 30px;
  margin-left: 30px;
}

/* line 731, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  border: 3px solid #999999;
  border-radius: 50%;
  border-right-color: transparent;
  box-shadow: 1px 1px 1px #fff;
  content: '';
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
}

/* line 743, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-styled {
  margin: .3125em;
  padding: .625em 2em;
  font-weight: 500;
  box-shadow: none;
}

/* line 748, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-styled:not([disabled]) {
  cursor: pointer;
}

/* line 750, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #3085d6;
  color: #fff;
  font-size: 1.0625em;
}

/* line 757, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #aaa;
  color: #fff;
  font-size: 1.0625em;
}

/* line 764, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-styled:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
}

/* line 767, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-styled::-moz-focus-inner {
  border: 0;
}

/* line 769, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-footer {
  justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

/* line 776, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-image {
  max-width: 100%;
  margin: 1.25em auto;
}

/* line 779, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-close {
  position: absolute;
  top: 0;
  right: 0;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  transition: color 0.1s ease-out;
  border: none;
  border-radius: 0;
  outline: initial;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
}

/* line 798, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-close:hover {
  -webkit-transform: none;
  transform: none;
  color: #f27474;
}

/* line 802, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup > .swal2-input,
.swal2-popup > .swal2-file,
.swal2-popup > .swal2-textarea,
.swal2-popup > .swal2-select,
.swal2-popup > .swal2-radio,
.swal2-popup > .swal2-checkbox {
  display: none;
}

/* line 809, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-content {
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #545454;
  font-size: 1.125em;
  font-weight: 300;
  line-height: normal;
  z-index: 1;
  word-wrap: break-word;
}

/* line 819, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup #swal2-content {
  text-align: center;
}

/* line 821, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input,
.swal2-popup .swal2-file,
.swal2-popup .swal2-textarea,
.swal2-popup .swal2-select,
.swal2-popup .swal2-radio,
.swal2-popup .swal2-checkbox {
  margin: 1em auto;
}

/* line 828, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input,
.swal2-popup .swal2-file,
.swal2-popup .swal2-textarea {
  width: 100%;
  transition: border-color .3s, box-shadow .3s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  font-size: 1.125em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

/* line 838, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input.swal2-inputerror,
.swal2-popup .swal2-file.swal2-inputerror,
.swal2-popup .swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

/* line 843, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input:focus,
.swal2-popup .swal2-file:focus,
.swal2-popup .swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: 0 0 3px #c4e6f5;
}

/* line 849, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input::-webkit-input-placeholder,
.swal2-popup .swal2-file::-webkit-input-placeholder,
.swal2-popup .swal2-textarea::-webkit-input-placeholder {
  color: #cccccc;
}

/* line 853, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input:-ms-input-placeholder,
.swal2-popup .swal2-file:-ms-input-placeholder,
.swal2-popup .swal2-textarea:-ms-input-placeholder {
  color: #cccccc;
}

/* line 857, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input::-ms-input-placeholder,
.swal2-popup .swal2-file::-ms-input-placeholder,
.swal2-popup .swal2-textarea::-ms-input-placeholder {
  color: #cccccc;
}

/* line 861, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input::placeholder,
.swal2-popup .swal2-file::placeholder,
.swal2-popup .swal2-textarea::placeholder {
  color: #cccccc;
}

/* line 865, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-range input {
  width: 80%;
}

/* line 867, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-range output {
  width: 20%;
  font-weight: 600;
  text-align: center;
}

/* line 871, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-range input,
.swal2-popup .swal2-range output {
  height: 2.625em;
  margin: 1em auto;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

/* line 878, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

/* line 881, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-input[type='number'] {
  max-width: 10em;
}

/* line 883, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-file {
  font-size: 1.125em;
}

/* line 885, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

/* line 888, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: .375em .625em;
  color: #545454;
  font-size: 1.125em;
}

/* line 894, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-radio,
.swal2-popup .swal2-checkbox {
  align-items: center;
  justify-content: center;
}

/* line 898, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-radio label,
.swal2-popup .swal2-checkbox label {
  margin: 0 .6em;
  font-size: 1.125em;
}

/* line 902, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-radio input,
.swal2-popup .swal2-checkbox input {
  margin: 0 .4em;
}

/* line 905, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-validation-message {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
  overflow: hidden;
}

/* line 915, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-popup .swal2-validation-message::before {
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 .625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  content: '!';
  zoom: normal;
}

@supports (-ms-accelerator: true) {
  /* line 931, /app/app/assets/stylesheets/sweetalert2.css */
  .swal2-range input {
    width: 100% !important;
  }

  /* line 933, /app/app/assets/stylesheets/sweetalert2.css */
  .swal2-range output {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 937, /app/app/assets/stylesheets/sweetalert2.css */
  .swal2-range input {
    width: 100% !important;
  }

  /* line 939, /app/app/assets/stylesheets/sweetalert2.css */
  .swal2-range output {
    display: none;
  }
}
@-moz-document url-prefix() {
  /* line 943, /app/app/assets/stylesheets/sweetalert2.css */
  .swal2-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4);
  }
}
/* line 946, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon {
  position: relative;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: .25em solid transparent;
  border-radius: 50%;
  line-height: 5em;
  cursor: default;
  box-sizing: content-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  zoom: normal;
}

/* line 962, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon-text {
  font-size: 3.75em;
}

/* line 964, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-error {
  border-color: #f27474;
}

/* line 966, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}

/* line 969, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: .3125em;
  border-radius: .125em;
  background-color: #f27474;
}

/* line 977, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
  left: 1.0625em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 981, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
  right: 1em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 985, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

/* line 988, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

/* line 991, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

/* line 994, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success {
  border-color: #a5dc86;
}

/* line 996, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}

/* line 1003, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'] {
  top: -.4375em;
  left: -2.0635em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 3.75em 3.75em;
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

/* line 1011, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
  top: -.6875em;
  left: 1.875em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 3.75em;
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

/* line 1019, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  top: -.25em;
  left: -.25em;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
  z-index: 2;
  box-sizing: content-box;
}

/* line 1029, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  top: .5em;
  left: 1.625em;
  width: .4375em;
  height: 5.625em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 1;
}

/* line 1038, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success [class^='swal2-success-line'] {
  display: block;
  position: absolute;
  height: .3125em;
  border-radius: .125em;
  background-color: #a5dc86;
  z-index: 2;
}

/* line 1045, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
  top: 2.875em;
  left: .875em;
  width: 1.5625em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 1051, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
  top: 2.375em;
  right: .5em;
  width: 2.9375em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 1058, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps {
  align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  font-weight: 600;
}

/* line 1063, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps li {
  display: inline-block;
  position: relative;
}

/* line 1066, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps .swal2-progresscircle {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #3085d6;
  color: #fff;
  line-height: 2em;
  text-align: center;
  z-index: 20;
}

/* line 1075, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps .swal2-progresscircle:first-child {
  margin-left: 0;
}

/* line 1077, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps .swal2-progresscircle:last-child {
  margin-right: 0;
}

/* line 1079, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
  background: #3085d6;
}

/* line 1081, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
  background: #add8e6;
}

/* line 1083, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
  background: #add8e6;
}

/* line 1085, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-progresssteps .swal2-progressline {
  width: 2.5em;
  height: .4em;
  margin: 0 -1px;
  background: #3085d6;
  z-index: 10;
}

/* line 1092, /app/app/assets/stylesheets/sweetalert2.css */
[class^='swal2'] {
  -webkit-tap-highlight-color: transparent;
}

/* line 1095, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-show {
  -webkit-animation: swal2-show 0.3s;
  animation: swal2-show 0.3s;
}

/* line 1098, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-show.swal2-noanimation {
  -webkit-animation: none;
  animation: none;
}

/* line 1102, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-hide {
  -webkit-animation: swal2-hide 0.15s forwards;
  animation: swal2-hide 0.15s forwards;
}

/* line 1105, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-hide.swal2-noanimation {
  -webkit-animation: none;
  animation: none;
}

/* line 1109, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-rtl .swal2-close {
  right: auto;
  left: 0;
}

/* line 1113, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-animate-success-icon .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip 0.75s;
  animation: swal2-animate-success-line-tip 0.75s;
}

/* line 1117, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-animate-success-icon .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long 0.75s;
  animation: swal2-animate-success-line-long 0.75s;
}

/* line 1121, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-animate-success-icon .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

/* line 1125, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-animate-error-icon {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}

/* line 1128, /app/app/assets/stylesheets/sweetalert2.css */
.swal2-animate-error-icon .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark 0.5s;
  animation: swal2-animate-error-x-mark 0.5s;
}

@-webkit-keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media print {
  /* line 1149, /app/app/assets/stylesheets/sweetalert2.css */
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }

  /* line 1151, /app/app/assets/stylesheets/sweetalert2.css */
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden='true'] {
    display: none;
  }

  /* line 1153, /app/app/assets/stylesheets/sweetalert2.css */
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: initial !important;
  }
}
