.fade.show {
  opacity: 1;
}


.form-group {
    margin-bottom: 1rem;
}
/*
label {
    display: inline-block;
    margin-bottom: .5rem;
}

button, input {
    overflow: visible;
}
*/

/**, *::before, *::after {
    box-sizing: inherit;
}*/

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0rem;
    font-size: 0.9rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}


.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 15px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }
  .modal-sm {
    max-width: 300px;
  }
  .col-md-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media (min-width: 320px){
  .col-md-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media (min-width: 1020px) {
  .modal-lg {
    max-width: 800px;
  }
}

.btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.25;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}

.btn:focus, .btn:hover {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(108, 139, 239, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: .65;
}

.btn:active, .btn.active {
  background-image: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #6c8bef;
  border-color: #6c8bef;
}

.btn-primary:hover {
  color: #fff;
  background-color: #4a70eb;
  border-color: #3e67ea;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 3px rgba(108, 139, 239, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #6c8bef;
  border-color: #6c8bef;
}

.btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: #4a70eb;
  background-image: none;
  border-color: #3e67ea;
}

.btn-secondary {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #727b84;
  border-color: #6c757d;
}

.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  background-color: #868e96;
  border-color: #868e96;
}

.btn-secondary:active, .btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
  background-color: #727b84;
  background-image: none;
  border-color: #6c757d;
}

.btn-success {
  color: #111;
  background-color: #15d4be;
  border-color: #15d4be;
}

.btn-success:hover {
  color: #111;
  background-color: #12b19f;
  border-color: #10a694;
}

.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 3px rgba(21, 212, 190, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  background-color: #15d4be;
  border-color: #15d4be;
}

.btn-success:active, .btn-success.active,
.show > .btn-success.dropdown-toggle {
  background-color: #12b19f;
  background-image: none;
  border-color: #10a694;
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:active, .btn-info.active,
.show > .btn-info.dropdown-toggle {
  background-color: #138496;
  background-image: none;
  border-color: #117a8b;
}

.btn-warning {
  color: #111;
  background-color: #ffb803;
  border-color: #ffb803;
}

.btn-warning:hover {
  color: #111;
  background-color: #dc9e00;
  border-color: #cf9500;
}

.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 3px rgba(255, 184, 3, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  background-color: #ffb803;
  border-color: #ffb803;
}

.btn-warning:active, .btn-warning.active,
.show > .btn-warning.dropdown-toggle {
  background-color: #dc9e00;
  background-image: none;
  border-color: #cf9500;
}

.btn-danger {
  color: #fff;
  background-color: #ff6262;
  border-color: #ff6262;
}

.btn-danger:hover {
  color: #fff;
  background-color: #ff3c3c;
  border-color: #ff2f2f;
}

.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 3px rgba(255, 98, 98, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  background-color: #ff6262;
  border-color: #ff6262;
}

.btn-danger:active, .btn-danger.active,
.show > .btn-danger.dropdown-toggle {
  background-color: #ff3c3c;
  background-image: none;
  border-color: #ff2f2f;
}

.btn-light {
  color: #111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #111;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:active, .btn-light.active,
.show > .btn-light.dropdown-toggle {
  background-color: #e2e6ea;
  background-image: none;
  border-color: #dae0e5;
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:active, .btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  background-color: #23272b;
  background-image: none;
  border-color: #1d2124;
}

.btn-outline-primary {
  color: #6c8bef;
  background-color: transparent;
  background-image: none;
  border-color: #6c8bef;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #6c8bef;
  border-color: #6c8bef;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 3px rgba(108, 139, 239, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #6c8bef;
  background-color: transparent;
}

.btn-outline-primary:active, .btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #6c8bef;
  border-color: #6c8bef;
}

.btn-outline-secondary {
  color: #868e96;
  background-color: transparent;
  background-image: none;
  border-color: #868e96;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #868e96;
  background-color: transparent;
}

.btn-outline-secondary:active, .btn-outline-secondary.active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-outline-success {
  color: #15d4be;
  background-color: transparent;
  background-image: none;
  border-color: #15d4be;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #15d4be;
  border-color: #15d4be;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 3px rgba(21, 212, 190, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #15d4be;
  background-color: transparent;
}

.btn-outline-success:active, .btn-outline-success.active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #15d4be;
  border-color: #15d4be;
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:active, .btn-outline-info.active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-warning {
  color: #ffb803;
  background-color: transparent;
  background-image: none;
  border-color: #ffb803;
}

.btn-outline-warning:hover {
  color: #fff;
  background-color: #ffb803;
  border-color: #ffb803;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 3px rgba(255, 184, 3, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffb803;
  background-color: transparent;
}

.btn-outline-warning:active, .btn-outline-warning.active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #ffb803;
  border-color: #ffb803;
}

.btn-outline-danger {
  color: #ff6262;
  background-color: transparent;
  background-image: none;
  border-color: #ff6262;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #ff6262;
  border-color: #ff6262;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 3px rgba(255, 98, 98, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #ff6262;
  background-color: transparent;
}

.btn-outline-danger:active, .btn-outline-danger.active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ff6262;
  border-color: #ff6262;
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #fff;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:active, .btn-outline-light.active,
.show > .btn-outline-light.dropdown-toggle {
  color: #fff;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:active, .btn-outline-dark.active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-link {
  font-weight: normal;
  color: #6c8bef;
  border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
  background-color: transparent;
}

.btn-link, .btn-link:focus, .btn-link:active {
  border-color: transparent;
  box-shadow: none;
}

.btn-link:hover {
  border-color: transparent;
}

.btn-link:focus, .btn-link:hover {
  color: #2755e7;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link:disabled {
  color: #868e96;
}

.btn-link:disabled:focus, .btn-link:disabled:hover {
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}


.label-primary {
    background-color: #337ab7;
}
.label-success {
    background-color: #5cb85c;
}
.label-danger {
    background-color: #d9534f;
}
.label-info {
    background-color: #5bc0de;
}
.label-warning {
    background-color: #f0ad4e;
}



.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-13, .col-14, .col-15, .col-16, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-13, .col-xl-14, .col-xl-15, .col-xl-16, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 13px;
  padding-left: 13px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 6.25%;
  max-width: 6.25%;
}

.col-2 {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.col-3 {
  flex: 0 0 18.75%;
  max-width: 18.75%;
}

.col-4 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-5 {
  flex: 0 0 31.25%;
  max-width: 31.25%;
}

.col-6 {
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

.col-7 {
  flex: 0 0 43.75%;
  max-width: 43.75%;
}

.col-8 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-9 {
  flex: 0 0 56.25%;
  max-width: 56.25%;
}

.col-10 {
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

.col-11 {
  flex: 0 0 68.75%;
  max-width: 68.75%;
}

.col-12 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-13 {
  flex: 0 0 81.25%;
  max-width: 81.25%;
}

.col-14 {
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

.col-15 {
  flex: 0 0 93.75%;
  max-width: 93.75%;
}

.col-16 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.order-13 {
  order: 13;
}

.order-14 {
  order: 14;
}

.order-15 {
  order: 15;
}

.order-16 {
  order: 16;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 6.25%;
    max-width: 6.25%;
  }
  .col-sm-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .col-sm-3 {
    flex: 0 0 18.75%;
    max-width: 18.75%;
  }
  .col-sm-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-5 {
    flex: 0 0 31.25%;
    max-width: 31.25%;
  }
  .col-sm-6 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .col-sm-7 {
    flex: 0 0 43.75%;
    max-width: 43.75%;
  }
  .col-sm-8 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-9 {
    flex: 0 0 56.25%;
    max-width: 56.25%;
  }
  .col-sm-10 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .col-sm-11 {
    flex: 0 0 68.75%;
    max-width: 68.75%;
  }
  .col-sm-12 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-13 {
    flex: 0 0 81.25%;
    max-width: 81.25%;
  }
  .col-sm-14 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .col-sm-15 {
    flex: 0 0 93.75%;
    max-width: 93.75%;
  }
  .col-sm-16 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .order-sm-13 {
    order: 13;
  }
  .order-sm-14 {
    order: 14;
  }
  .order-sm-15 {
    order: 15;
  }
  .order-sm-16 {
    order: 16;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 6.25%;
    max-width: 6.25%;
  }
  .col-md-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .col-md-3 {
    flex: 0 0 18.75%;
    max-width: 18.75%;
  }
  .col-md-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-5 {
    flex: 0 0 31.25%;
    max-width: 31.25%;
  }
  .col-md-6 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .col-md-7 {
    flex: 0 0 43.75%;
    max-width: 43.75%;
  }
  .col-md-8 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-9 {
    flex: 0 0 56.25%;
    max-width: 56.25%;
  }
  .col-md-10 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .col-md-11 {
    flex: 0 0 68.75%;
    max-width: 68.75%;
  }
  .col-md-12 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-13 {
    flex: 0 0 81.25%;
    max-width: 81.25%;
  }
  .col-md-14 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .col-md-15 {
    flex: 0 0 93.75%;
    max-width: 93.75%;
  }
  .col-md-16 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .order-md-13 {
    order: 13;
  }
  .order-md-14 {
    order: 14;
  }
  .order-md-15 {
    order: 15;
  }
  .order-md-16 {
    order: 16;
  }
}

@media (min-width: 1020px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 6.25%;
    max-width: 6.25%;
  }
  .col-lg-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .col-lg-3 {
    flex: 0 0 18.75%;
    max-width: 18.75%;
  }
  .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-5 {
    flex: 0 0 31.25%;
    max-width: 31.25%;
  }
  .col-lg-6 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .col-lg-7 {
    flex: 0 0 43.75%;
    max-width: 43.75%;
  }
  .col-lg-8 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-9 {
    flex: 0 0 56.25%;
    max-width: 56.25%;
  }
  .col-lg-10 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .col-lg-11 {
    flex: 0 0 68.75%;
    max-width: 68.75%;
  }
  .col-lg-12 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-13 {
    flex: 0 0 81.25%;
    max-width: 81.25%;
  }
  .col-lg-14 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .col-lg-15 {
    flex: 0 0 93.75%;
    max-width: 93.75%;
  }
  .col-lg-16 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .order-lg-13 {
    order: 13;
  }
  .order-lg-14 {
    order: 14;
  }
  .order-lg-15 {
    order: 15;
  }
  .order-lg-16 {
    order: 16;
  }
}

@media (min-width: 1280px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 6.25%;
    max-width: 6.25%;
  }
  .col-xl-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .col-xl-3 {
    flex: 0 0 18.75%;
    max-width: 18.75%;
  }
  .col-xl-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-5 {
    flex: 0 0 31.25%;
    max-width: 31.25%;
  }
  .col-xl-6 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .col-xl-7 {
    flex: 0 0 43.75%;
    max-width: 43.75%;
  }
  .col-xl-8 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-9 {
    flex: 0 0 56.25%;
    max-width: 56.25%;
  }
  .col-xl-10 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .col-xl-11 {
    flex: 0 0 68.75%;
    max-width: 68.75%;
  }
  .col-xl-12 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-13 {
    flex: 0 0 81.25%;
    max-width: 81.25%;
  }
  .col-xl-14 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .col-xl-15 {
    flex: 0 0 93.75%;
    max-width: 93.75%;
  }
  .col-xl-16 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .order-xl-13 {
    order: 13;
  }
  .order-xl-14 {
    order: 14;
  }
  .order-xl-15 {
    order: 15;
  }
  .order-xl-16 {
    order: 16;
  }
}

.input-group {
  position: relative;
  display: flex;
  width: 100%;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
  z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: flex;
  align-items: center;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 0.5rem 0.95rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.25;
  color: #495057;
  text-align: center;
  background-color: #e9ecef;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  width:13px;
}

.input-group-addon.form-control-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-addon.form-control-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

.input-group .form-control:not(:last-child),
.input-group-addon:not(:last-child),
.input-group-btn:not(:last-child) > .btn,
.input-group-btn:not(:last-child) > .btn-group > .btn,
.input-group-btn:not(:last-child) > .dropdown-toggle,
.input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:not(:last-child) {
  border-right: 0;
}

.input-group .form-control:not(:first-child),
.input-group-addon:not(:first-child),
.input-group-btn:not(:first-child) > .btn,
.input-group-btn:not(:first-child) > .btn-group > .btn,
.input-group-btn:not(:first-child) > .dropdown-toggle,
.input-group-btn:not(:last-child) > .btn:not(:first-child),
.input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-control + .input-group-addon:not(:first-child) {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:focus, .input-group-btn > .btn:active, .input-group-btn > .btn:hover {
  z-index: 3;
}

.input-group-btn:not(:last-child) > .btn,
.input-group-btn:not(:last-child) > .btn-group {
  margin-right: -1px;
}

.input-group-btn:not(:first-child) > .btn,
.input-group-btn:not(:first-child) > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.input-group-btn:not(:first-child) > .btn:focus, .input-group-btn:not(:first-child) > .btn:active, .input-group-btn:not(:first-child) > .btn:hover,
.input-group-btn:not(:first-child) > .btn-group:focus,
.input-group-btn:not(:first-child) > .btn-group:active,
.input-group-btn:not(:first-child) > .btn-group:hover {
  z-index: 3;
}

.btn2 {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: whitesmoke;
  background-image: -moz-linear-gradient(top, white, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, white, #e6e6e6);
  background-image: -o-linear-gradient(top, white, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #bbbbbb;
  *border: 0;
  border-bottom-color: #a2a2a2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *margin-left: .3em;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn2:active, .btn2.active {
  background-color: #cccccc \9;
}

.btn2.active, .btn2:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}


.btn1 {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn-primary1 {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary1:hover,
.btn-primary1:focus,
.btn-primary1:active,
.btn-primary1.active,
.open > .dropdown-toggle.btn-primary1 {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e;
}
.btn-primary1:active,
.btn-primary1.active,
.open > .dropdown-toggle.btn-primary1 {
  background-image: none;
}
.btn-primary1.disabled,
.btn-primary1[disabled],
fieldset[disabled] .btn-primary1,
.btn-primary1.disabled:hover,
.btn-primary1[disabled]:hover,
fieldset[disabled] .btn-primary1:hover,
.btn-primary1.disabled:focus,
.btn-primary1[disabled]:focus,
fieldset[disabled] .btn-primary1:focus,
.btn-primary1.disabled:active,
.btn-primary1[disabled]:active,
fieldset[disabled] .btn-primary1:active,
.btn-primary1.disabled.active,
.btn-primary1[disabled].active,
fieldset[disabled] .btn-primary1.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary1 .badge {
  color: #428bca;
  background-color: #fff;
}

.btn-success1 {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-success1:hover,
.btn-success1:focus,
.btn-success1:active,
.btn-success1.active,
.open > .dropdown-toggle.btn-success1 {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success1:active,
.btn-success1.active,
.open > .dropdown-toggle.btn-success1 {
  background-image: none;
}
.btn-success1.disabled,
.btn-success1[disabled],
fieldset[disabled] .btn-success1,
.btn-success1.disabled:hover,
.btn-success1[disabled]:hover,
fieldset[disabled] .btn-success1:hover,
.btn-success1.disabled:focus,
.btn-success1[disabled]:focus,
fieldset[disabled] .btn-success1:focus,
.btn-success1.disabled:active,
.btn-success1[disabled]:active,
fieldset[disabled] .btn-success1:active,
.btn-success1.disabled.active,
.btn-success1[disabled].active,
fieldset[disabled] .btn-success1.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success1 .badge {
  color: #5cb85c;
  background-color: #fff;
}

.right-contents{ 
	margin-bottom:20px;
}
.right-h3 {
    margin-top: 0px;
	margin-bottom: 0px;
}