.ugams-html-template body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
.ugams-html-template div {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.ugams-html-template hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
.ugams-html-template hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
}
.ugams-html-template p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.ugams-html-template *, ::after, ::before {
  box-sizing: border-box;
}
.ugams-html-template input,
.ugams-html-template button,
.ugams-html-template select,
.ugams-html-template optgroup,
.ugams-html-template textarea {
  margin: 0;
  font-family: inherit;
  font-size: 12pt;
  line-height: inherit;
}
.ugams-html-template label {
  display: inline-block;
  margin-bottom: .5rem;
}
.ugams-position-static {
  position: static !important;
}
/*****************
	Headings
*****************/

.ugams-html-template h1,
.ugams-html-template h2,
.ugams-html-template h3,
.ugams-html-template h4,
.ugams-html-template h5,
.ugams-html-template h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.ugams-html-template h1,
.ugams-html-template h2,
.ugams-html-template h3,
.ugams-html-template h4,
.ugams-html-template h5,
.ugams-html-template h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.ugams-html-template h6, .h6 {
  font-size: 1rem;
}

.ugams-html-template h2, .h2 {
  font-size: 2rem;
}

/*****************
	 Buttons
*****************/

.ugams-btn {
  height: 40px;
  font-size: 17px;
  padding: 7px 13px 20px 13px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  line-height: 20px;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.ugams-btn:focus, .ugams-btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.ugams-btn.disabled, .ugams-btn:disabled {
  opacity: 0.65;
}

.ugams-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.ugams-btn:not(:disabled):not(.disabled):active, .ugams-btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

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

.ugams-btn-primary {
  color: #fff;
  background-image: -webkit-linear-gradient(#00aaff, #007bff);
  background-image: -moz-linear-gradient(#00aaff, #007bff);
  background-image: -ms-linear-gradient(#00aaff, #007bff);
  background-image: -o-linear-gradient(#00aaff, #007bff);
  background-image: linear-gradient(#00aaff, #007bff);
  border-color: #0022ff;
  background-size: auto 150%;
  background-position: 0 0;
  transition: background-position 0.3s;
}
.ugams-btn-primary:hover {
  background-position: 0 100%;
}

.ugams-btn-primary:focus, .ugams-btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.ugams-btn-primary.disabled, .ugams-btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.ugams-btn-primary:not(:disabled):not(.disabled):active, .ugams-btn-primary:not(:disabled):not(.disabled).active,
.show > .ugams-btn-primary.ugams-dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.ugams-btn-primary:not(:disabled):not(.disabled):active:focus, .ugams-btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .ugams-btn-primary.ugams-dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.ugams-btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

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

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

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

.ugams-btn-light:not(:disabled):not(.disabled):active, .ugams-btn-light:not(:disabled):not(.disabled).active,
.show > .ugams-btn-light.ugams-dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.ugams-btn-light:not(:disabled):not(.disabled):active:focus, .ugams-btn-light:not(:disabled):not(.disabled).active:focus,
.show > .ugams-btn-light.ugams-dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

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

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

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

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

.ugams-btn-dark:not(:disabled):not(.disabled):active, .ugams-btn-dark:not(:disabled):not(.disabled).active,
.show > .ugams-btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.ugams-btn-dark:not(:disabled):not(.disabled):active:focus, .ugams-btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .ugams-btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.ugams-btn-success {
  color: #fff;
  background-image: -webkit-linear-gradient(#59C859, #439143) !important;
  background-image: -moz-linear-gradient(#59C859, #439143) !important;
  background-image: -ms-linear-gradient(#59C859, #439143) !important;
  background-image: -o-linear-gradient(#59C859, #439143) !important;
  background-image: linear-gradient(#59C859, #439143) !important;
  border-color: #367936;
  background-size: auto 150%;
  background-position: 0 0%;
  transition: background-position 0.3s;
}

.ugams-btn-success:hover {
  background-position: 0 100%;
}

.ugams-btn-success:focus, .ugams-btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.ugams-btn-success.disabled, .ugams-btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.ugams-btn-success:not(:disabled):not(.disabled):active, .ugams-btn-success:not(:disabled):not(.disabled).active,
.show > .ugams-btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.ugams-btn-success:not(:disabled):not(.disabled):active:focus, .ugams-btn-success:not(:disabled):not(.disabled).active:focus,
.show > .ugams-btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.ugams-btn-white-flat {
  color: #fff;
  background-color: #44494E;
  border-color: #44494E;
}

.ugams-btn-white-flat:hover {
  color: #fff;
  background-color: #50555B;
  border-color: #50555B;
}
.ugams-btn-white {
  color: #fff;
  background-image: -webkit-linear-gradient(#6B747A, #363A3E) !important;
  background-image: -moz-linear-gradient(#6B747A, #363A3E) !important;
  background-image: -ms-linear-gradient(#6B747A, #363A3E) !important;
  background-image: -o-linear-gradient(#6B747A, #363A3E) !important;
  background-image: linear-gradient(#6B747A, #363A3E) !important;
  border-color: #363A3E;
  background-size: auto 150%;
  background-position: 0 0%;
  transition: background-position 0.3s;
}

.ugams-btn-white:hover {
  background-position: 0 100%;
}

.ugams-btn-white:focus, .ugams-btn-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.ugams-btn-white.disabled, .ugams-btn-white:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.ugams-btn-white:not(:disabled):not(.disabled):active, .ugams-btn-white:not(:disabled):not(.disabled).active,
.show > .ugams-btn-white.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.ugams-btn-white:not(:disabled):not(.disabled):active:focus, .ugams-btn-white:not(:disabled):not(.disabled).active:focus,
.show > .ugams-btn-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.ugams-btn-danger {
  color: #fff;
  background-image: -webkit-linear-gradient(#EE3545, #BB3545) !important;
  background-image: -moz-linear-gradient(#EE3545, #BB3545) !important;
  background-image: -ms-linear-gradient(#EE3545, #BB3545) !important;
  background-image: -o-linear-gradient(#EE3545, #BB3545) !important;
  background-image: linear-gradient(#EE3545, #BB3545) !important;
  border-color: #aa3545;
  background-size: auto 150%;
  background-position: 0 0%;
  transition: background-position 0.3s;
}

.ugams-btn-danger:hover {
  background-position: 0 100%;
}
.ugams-btn-danger:focus, .ugams-btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.ugams-btn-danger.disabled, .ugams-btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.ugams-btn-danger:not(:disabled):not(.disabled):active, .ugams-btn-danger:not(:disabled):not(.disabled).active,
.show > .ugams-btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.ugams-btn-danger:not(:disabled):not(.disabled):active:focus, .ugams-btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .ugams-btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.ugams-btn-sm, .ugams-btn-group-sm > .ugams-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.ugams-btn-sm + .ugams-dropdown-toggle-split, .ugams-btn-group-sm > .ugams-btn + .ugams-dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.ugams-btn-white {
  color: #000;
  background-image: -webkit-linear-gradient(#f4f5f5, #dfdddd) !important;
  background-image: -moz-linear-gradient(#f4f5f5, #dfdddd) !important;
  background-image: -ms-linear-gradient(#f4f5f5, #dfdddd) !important;
  background-image: -o-linear-gradient(#f4f5f5, #dfdddd) !important;
  background-image: linear-gradient(#f4f5f5, #dfdddd) !important;
  border-color: #888;
  background-size: auto 150%;
  background-position: 0 0%;
  transition: background-position 0.3s;
}

.ugams-btn-white:hover {
  background-position: 0 100%;
}
.ugams-btn-white:focus, .ugams-btn-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.ugams-btn-white.disabled, .ugams-btn-white:disabled {
  color: #000000;
  background-color: #EEEEEE;
  border-color: #EEEEEE;
}

.ugams-btn-white:not(:disabled):not(.disabled):active, .ugams-btn-white:not(:disabled):not(.disabled).active,
.show > .ugams-btn-white.dropdown-toggle {
  color: #000000;
  background-color: #E0E0E0;
  border-color: #BDBDBD;
}

.ugams-btn-white:not(:disabled):not(.disabled):active:focus, .ugams-btn-white:not(:disabled):not(.disabled).active:focus,
.show > .ugams-btn-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
/*****************
   Button Group
*****************/

.ugams-btn-group,
.ugams-btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.ugams-btn-group > .ugams-btn,
.ugams-btn-group-vertical > .ugams-btn {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.ugams-btn-group > .ugams-btn:hover,
.ugams-btn-group-vertical > .ugams-btn:hover {
  z-index: 1;
}

.ugams-btn-group > .ugams-btn:focus, .ugams-btn-group > .ugams-btn:active, .ugams-btn-group > .ugams-btn.active,
.ugams-btn-group-vertical > .ugams-btn:focus,
.ugams-btn-group-vertical > .ugams-btn:active,
.ugams-btn-group-vertical > .ugams-btn.active {
  z-index: 1;
}

.ugams-btn-group .ugams-btn + .ugams-btn,
.ugams-btn-group .ugams-btn + .ugams-btn-group,
.ugams-btn-group .ugams-btn-group + .ugams-btn,
.ugams-btn-group .ugams-btn-group + .ugams-btn-group,
.ugams-btn-group-vertical .ugams-btn + .ugams-btn,
.ugams-btn-group-vertical .ugams-btn + .ugams-btn-group,
.ugams-btn-group-vertical .ugams-btn-group + .ugams-btn,
.ugams-btn-group-vertical .ugams-btn-group + .ugams-btn-group {
  margin-left: -1px;
}

.ugams-btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.ugams-btn-toolbar .ugams-input-group {
  width: auto;
}

.ugams-btn-group > .ugams-btn:first-child {
  margin-left: 0;
}

.ugams-btn-group > .ugams-btn:not(:last-child):not(.dropdown-toggle),
.ugams-btn-group > .ugams-btn-group:not(:last-child) > .ugams-btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ugams-btn-group > .ugams-btn:not(:first-child),
.ugams-btn-group > .ugams-btn-group:not(:first-child) > .ugams-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ugams-btn-group-toggle > .ugams-btn,
.ugams-btn-group-toggle > .ugams-btn-group > .ugams-btn {
  margin-bottom: 0;
}

.ugams-btn-group-toggle > .ugams-btn input[type="radio"],
.ugams-btn-group-toggle > .ugams-btn input[type="checkbox"],
.ugams-btn-group-toggle > .ugams-btn-group > .ugams-btn input[type="radio"],
.ugams-btn-group-toggle > .ugams-btn-group > .ugams-btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
/*****************
	Dropdowns
*****************/

.ugams-dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.ugams-dropdown-toggle:empty::after {
  margin-left: 0;
}

/*****************
	 Alerts
*****************/

.ugams-alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.ugams-alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.ugams-alert-secondary hr {
  border-top-color: #c8cbcf;
}

.ugams-alert-secondary .ugams-alert-link {
  color: #202326;
}
.ugams-alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.ugams-alert-light hr {
  border-top-color: #ececf6;
}

.ugams-alert-light .ugams-alert-link {
  color: #686868;
}


/*****************
   Form Control
*****************/

.ugams-form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ugams-form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.ugams-form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.ugams-form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.ugams-form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.ugams-form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.ugams-form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.ugams-form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.ugams-form-control:disabled, .ugams-form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/*select.ugams-form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}*/

select.ugams-form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.ugams-form-group {
  margin-bottom: 1rem;
}
.ugams-form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.ugams-form-check-input:disabled ~ .ugams-form-check-label {
  color: #6c757d;
}
/*****************
   Input Group
*****************/
.ugams-input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.ugams-input-group > .ugams-form-control,
.ugams-input-group > .custom-select,
.ugams-input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.ugams-input-group > .ugams-form-control:focus,
.ugams-input-group > .custom-select:focus,
.ugams-input-group > .custom-file:focus {
  z-index: 3;
}

.ugams-input-group > .ugams-form-control + .ugams-form-control,
.ugams-input-group > .ugams-form-control + .custom-select,
.ugams-input-group > .ugams-form-control + .custom-file,
.ugams-input-group > .custom-select + .ugams-form-control,
.ugams-input-group > .custom-select + .custom-select,
.ugams-input-group > .custom-select + .custom-file,
.ugams-input-group > .custom-file + .ugams-form-control,
.ugams-input-group > .custom-file + .custom-select,
.ugams-input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.ugams-input-group > .ugams-form-control:not(:last-child),
.ugams-input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ugams-input-group > .ugams-form-control:not(:first-child),
.ugams-input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ugams-input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ugams-input-group > .custom-file:not(:last-child) .custom-file-label,
.ugams-input-group > .custom-file:not(:last-child) .custom-file-label::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ugams-input-group > .custom-file:not(:first-child) .custom-file-label,
.ugams-input-group > .custom-file:not(:first-child) .custom-file-label::before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ugams-input-group-prepend,
.ugams-input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ugams-input-group-prepend .ugams-btn,
.ugams-input-group-append .ugams-btn {
  position: relative;
  z-index: 2;
}
.ugams-input-group-prepend .ugams-btn + .ugams-btn,
.ugams-input-group-prepend .ugams-btn + .ugams-input-group-text,
.ugams-input-group-prepend .ugams-input-group-text + .ugams-input-group-text,
.ugams-input-group-prepend .ugams-input-group-text + .ugams-btn,
.ugams-input-group-append .ugams-btn + .ugams-btn,
.ugams-input-group-append .ugams-btn + .ugams-input-group-text,
.ugams-input-group-append .ugams-input-group-text + .ugams-input-group-text,
.ugams-input-group-append .ugams-input-group-text + .ugams-btn {
  margin-left: -1px;
}

.ugams-input-group-prepend {
  margin-right: -1px;
}

.ugams-input-group > .ugams-input-group-prepend > .ugams-btn,
.ugams-input-group > .ugams-input-group-prepend > .ugams-input-group-text,
.ugams-input-group > .ugams-input-group-append:not(:last-child) > .ugams-btn,
.ugams-input-group > .ugams-input-group-append:not(:last-child) > .ugams-input-group-text,
.ugams-input-group > .ugams-input-group-append:last-child > .ugams-btn:not(:last-child):not(.dropdown-toggle),
.ugams-input-group > .ugams-input-group-append:last-child > .ugams-input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ugams-input-group > .ugams-input-group-append > .ugams-btn,
.ugams-input-group > .ugams-input-group-append > .ugams-input-group-text,
.ugams-input-group > .ugams-input-group-prepend:not(:first-child) > .ugams-btn,
.ugams-input-group > .ugams-input-group-prepend:not(:first-child) > .ugams-input-group-text,
.ugams-input-group > .ugams-input-group-prepend:first-child > .ugams-btn:not(:first-child),
.ugams-input-group > .ugams-input-group-prepend:first-child > .ugams-input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ugams-form-control-plaintext.ugams-form-control-sm, .ugams-input-group-sm > .ugams-form-control-plaintext.ugams-form-control,
.ugams-input-group-sm > .ugams-input-group-prepend > .ugams-form-control-plaintext.ugams-input-group-text,
.ugams-input-group-sm > .ugams-input-group-append > .ugams-form-control-plaintext.ugams-input-group-text,
.ugams-input-group-sm > .ugams-input-group-prepend > .ugams-form-control-plaintext.ugams-btn,
.ugams-input-group-sm > .ugams-input-group-append > .ugams-form-control-plaintext.ugams-btn, .ugams-form-control-plaintext.ugams-form-control-lg, .ugams-input-group-lg > .ugams-form-control-plaintext.ugams-form-control,
.ugams-input-group-lg > .ugams-input-group-prepend > .ugams-form-control-plaintext.ugams-input-group-text,
.ugams-input-group-lg > .ugams-input-group-append > .ugams-form-control-plaintext.ugams-input-group-text,
.ugams-input-group-lg > .ugams-input-group-prepend > .ugams-form-control-plaintext.ugams-btn,
.ugams-input-group-lg > .ugams-input-group-append > .ugams-form-control-plaintext.ugams-btn {
  padding-right: 0;
  padding-left: 0;
}

.ugams-form-control-sm, .ugams-input-group-sm > .ugams-form-control,
.ugams-input-group-sm > .ugams-input-group-prepend > .ugams-input-group-text,
.ugams-input-group-sm > .ugams-input-group-append > .ugams-input-group-text,
.ugams-input-group-sm > .ugams-input-group-prepend > .ugams-btn,
.ugams-input-group-sm > .ugams-input-group-append > .ugams-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

select.ugams-form-control-sm:not([size]):not([multiple]), .ugams-input-group-sm > select.ugams-form-control:not([size]):not([multiple]),
.ugams-input-group-sm > .ugams-input-group-prepend > select.ugams-input-group-text:not([size]):not([multiple]),
.ugams-input-group-sm > .ugams-input-group-append > select.ugams-input-group-text:not([size]):not([multiple]),
.ugams-input-group-sm > .ugams-input-group-prepend > select.ugams-btn:not([size]):not([multiple]),
.ugams-input-group-sm > .ugams-input-group-append > select.ugams-btn:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

.ugams-input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

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


/*****************
	Accordion
*****************/
.ugams-card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.ugams-card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.ugams-card-header + .ugams-list-group .ugams-list-group-item:first-child {
  border-top: 0;
}
.ugams-border {
  border: 1px solid #dee2e6 !important;
}

/*****************
	Container
*****************/

.ugams-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .ugams-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .ugams-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .ugams-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .ugams-container {
    max-width: 1140px;
  }
}

.ugams-container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/*****************
	 Row/Col
*****************/

.ugams-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.ugams-col-1, .ugams-col-2, .ugams-col-3, .ugams-col-4, .ugams-col-5, .ugams-col-6, .ugams-col-7, .ugams-col-8, .ugams-col-9, .ugams-col-10, .ugams-col-11, .ugams-col-12, .ugams-col,
.ugams-col-auto, .ugams-col-sm-1, .ugams-col-sm-2, .ugams-col-sm-3, .ugams-col-sm-4, .ugams-col-sm-5, .ugams-col-sm-6, .ugams-col-sm-7, .ugams-col-sm-8, .ugams-col-sm-9, .ugams-col-sm-10, .ugams-col-sm-11, .ugams-col-sm-12, .ugams-col-sm,
.ugams-col-sm-auto, .ugams-col-md-1, .ugams-col-md-2, .ugams-col-md-3, .ugams-col-md-4, .ugams-col-md-5, .ugams-col-md-6, .ugams-col-md-7, .ugams-col-md-8, .ugams-col-md-9, .ugams-col-md-10, .ugams-col-md-11, .ugams-col-md-12, .ugams-col-md,
.ugams-col-md-auto, .ugams-col-lg-1, .ugams-col-lg-2, .ugams-col-lg-3, .ugams-col-lg-4, .ugams-col-lg-5, .ugams-col-lg-6, .ugams-col-lg-7, .ugams-col-lg-8, .ugams-col-lg-9, .ugams-col-lg-10, .ugams-col-lg-11, .ugams-col-lg-12, .ugams-col-lg,
.ugams-col-lg-auto, .ugams-col-xl-1, .ugams-col-xl-2, .ugams-col-xl-3, .ugams-col-xl-4, .ugams-col-xl-5, .ugams-col-xl-6, .ugams-col-xl-7, .ugams-col-xl-8, .ugams-col-xl-9, .ugams-col-xl-10, .ugams-col-xl-11, .ugams-col-xl-12, .ugams-col-xl,
.ugams-col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.ugams-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.ugams-col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.ugams-col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.ugams-col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.ugams-col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.ugams-col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.ugams-col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.ugams-col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.ugams-col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.ugams-col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.ugams-col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.ugams-col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.ugams-col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.ugams-col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .ugams-col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .ugams-col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .ugams-col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}