﻿.gv-timepicker {
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.gv-timepicker:after {
  color: #666666;
  content: '\f017';
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-size: 17px;
  font-weight: 400;
  position: absolute;
  right: 8px;
  top: 8px;
}
.gv-timepicker.disabled {
  cursor: not-allowed;
}
.gv-timepicker.disabled > span {
  opacity: 0.5;
}
.gv-timepicker.open > .gv-timepicker-dropdown {
  display: block;
}
.gv-timepicker.open > span {
  border-color: #4AB37E !important;
  box-shadow: none !important;
  filter: drop-shadow(0px, 0px, 0px, 0px, rgba(0, 0, 0, 0)) !important;
  outline: none !important;
}
.gv-timepicker > span {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  color: #666666;
  display: block;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  padding: 8px 30px 8px 10px;
  text-decoration: none;
  text-transform: lowercase;
  transition-duration: 0.25s;
  transition-property: background-color, border, color;
  transition-timing-function: ease;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}
.gv-timepicker > span.unset {
  color: #CFCFCF;
  text-transform: none;
}
.gv-timepicker > div.actions {
  margin-top: 5px;
  text-align: right;
}
.gv-timepicker > div.gv-timepicker-dropdown {
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.0802);
  cursor: pointer;
  display: none;
  opacity: 1;
  position: absolute;
  top: 42px;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  z-index: 99999;
}
.gv-timepicker > div.gv-timepicker-dropdown:focus {
  outline: none;
}
.gv-timepicker > div.gv-timepicker-dropdown > div.gv-form {
  background-color: #FAFAFA;
  border: 1px solid #E2E3E4;
  border-radius: 0 0 4px 4px;
  margin: 0;
  padding: 8px;
}
.gv-timepicker > div.gv-timepicker-dropdown > ol {
  list-style-type: none;
  margin: 0;
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: relative;
}
.gv-timepicker > div.gv-timepicker-dropdown > ol > li {
  color: #666666;
  background-color: #FFFFFF;
  font-size: 15px;
  line-height: 18px;
  padding: 15px;
  position: relative;
  transition-duration: 0.25s;
  transition-property: background-color, color;
  transition-timing-function: ease;
}
.gv-timepicker > div.gv-timepicker-dropdown > ol > li:first-child {
  border-radius: 4px 4px 0 0;
}
.gv-timepicker > div.gv-timepicker-dropdown > ol > li:focus,
.gv-timepicker > div.gv-timepicker-dropdown > ol > li:hover {
  color: #333333;
  background-color: #E9F7F1;
}
.gv-timepicker > div.gv-timepicker-dropdown > ol > li.selected {
  color: #269D64;
  font-weight: bold;
}
.alertV2 {
  border: 1px solid transparent;
  border-radius: 4px;
  color: #333333;
  display: flex;
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 1;
  overflow: hidden;
  transition: opacity ease 0.25s;
  width: 100%;
}
.alertV2.inline {
  display: inline-flex;
}
.alertV2 .alert-content {
  display: block;
  flex: 1 1 auto;
  padding: 10px 15px;
  vertical-align: middle;
}
.alertV2 .alert-dismiss {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px 0 0;
}
.alertV2 .alert-dismiss > a {
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 18px;
  height: 18px;
  line-height: 18px;
}
.alertV2 .alert-dismiss > a > i {
  color: #333333;
}
.alertV2 .alert-icon {
  align-content: center;
  display: block;
  flex: 0 0 auto;
  padding: 14px;
  position: relative;
  vertical-align: middle;
  width: 50px;
}
.alertV2 .alert-icon .fa,
.alertV2 .alert-icon .fal,
.alertV2 .alert-icon .far,
.alertV2 .alert-icon .fas {
  color: #fff;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.alertV2.alert-danger,
.alertV2.alert-error {
  background-color: #ED4949;
  border-color: #ED4949;
}
.alertV2.alert-danger .alert-content,
.alertV2.alert-error .alert-content,
.alertV2.alert-danger .alert-dismiss,
.alertV2.alert-error .alert-dismiss {
  background-color: #F7E6E6;
}
.alertV2.alert-danger.dark,
.alertV2.alert-error.dark {
  background-color: #DB474C;
  border-color: #DB474C;
}
.alertV2.alert-danger.dark .alert-content,
.alertV2.alert-error.dark .alert-content,
.alertV2.alert-danger.dark .alert-dismiss,
.alertV2.alert-error.dark .alert-dismiss {
  background-color: #F7E6E6;
}
.alertV2.alert-info {
  background-color: #5895AC;
  border-color: #5895AC;
}
.alertV2.alert-info .alert-content,
.alertV2.alert-info .alert-dismiss {
  background-color: #e6edef;
}
.alertV2.alert-success {
  background-color: #4AB37E;
  border-color: #4AB37E;
}
.alertV2.alert-success .alert-content,
.alertV2.alert-success .alert-dismiss {
  background-color: #E9F7F1;
}
.alertV2.alert-warning {
  background-color: #FFD641;
  border-color: #FFD641;
}
.alertV2.alert-warning .alert-content,
.alertV2.alert-warning .alert-dismiss {
  background-color: #f8f4e7;
}
.alertV2.fade {
  opacity: 0;
}
.gv-badge {
  background-color: #9F9F9F;
  border-radius: 16px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  padding: 0 14px;
  vertical-align: middle;
}
.gv-badge.icon {
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 32px;
}
.gv-badge.icon > i {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.gv-badge.small {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
}
.gv-badge.small.icon {
  width: 24px;
}
.gv-badge.mini {
  font-size: 10px;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
}
.gv-badge.mini.icon {
  width: 20px;
}
.gv-badge.danger,
.gv-badge.error {
  background-color: #ED4949;
  color: #FFFFFF;
}
.gv-badge.info {
  background-color: #427e8f;
  color: #FFFFFF;
}
.gv-badge.success {
  background-color: #4AB37E;
  color: #FFFFFF;
}
.gv-badge.warning {
  background-color: #FFD641;
  color: #FFFFFF;
}
label.gv-checkbox {
  display: inline-block;
  margin: 2px 4px !important;
  padding: 0 !important;
  position: relative;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}
label.gv-checkbox.dark > input[type='checkbox']:disabled ~ em {
  background-color: #737373;
  border-color: #a6a6a6;
}
label.gv-checkbox.dark > input[type='checkbox'] ~ em {
  background-color: #333333;
  border: 1px solid #666666;
}
label.gv-checkbox.flex {
  display: flex;
}
label.gv-checkbox.flex > em {
  flex: 0 0 auto;
}
label.gv-checkbox.flex > span {
  flex: 1 1 auto;
  padding-left: 4px;
}
label.gv-checkbox.white-space-normal {
  white-space: normal;
}
label.gv-checkbox > input[type='checkbox'] {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 10px;
}
label.gv-checkbox > input[type='checkbox']:disabled:checked ~ em,
label.gv-checkbox > input[type='checkbox']:disabled[checked] ~ em {
  background-color: #a3d9be;
  border-color: #a3d9be;
}
label.gv-checkbox > input[type='checkbox']:disabled ~ em {
  border-color: #CCCCCC;
  background-color: #EEEEEE;
  cursor: not-allowed;
  opacity: 1;
}
label.gv-checkbox > input[type='checkbox']:disabled ~ span,
label.gv-checkbox > input[type='checkbox']:disabled a {
  cursor: not-allowed;
}
label.gv-checkbox > input[type='checkbox'] ~ em {
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  position: relative;
  transition-duration: 0.25s;
  transition-property: background-color, border-color, opacity;
  transition-timing-function: ease;
  vertical-align: top;
  width: 16px;
  min-width: 16px;
}
label.gv-checkbox > input[type='checkbox'] ~ em:after {
  border-color: #FFFFFF;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  height: 8px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition-duration: 0.25s;
  transition-property: opacity;
  transition-timing-function: ease;
  width: 4px;
}
label.gv-checkbox > input[type='checkbox']:checked ~ em,
label.gv-checkbox > input[type='checkbox'][checked] ~ em {
  background-color: #4AB37E;
  border-color: #4AB37E;
}
label.gv-checkbox > input[type='checkbox']:checked ~ em:after,
label.gv-checkbox > input[type='checkbox'][checked] ~ em:after {
  opacity: 1;
}
label.gv-checkbox > input[type='checkbox']:focus-visible ~ em {
  outline: #000000 solid 2px;
}
label.gv-checkbox > span {
  cursor: pointer;
  display: inline-block;
  margin-left: 4px;
  text-align: left;
  white-space: normal;
}
label.gv-checkbox > a {
  color: unset;
}
label.gv-checkbox-slider {
  cursor: pointer;
  display: inline-block;
  line-height: 24px;
  margin: 4px;
  position: relative;
  top: -2px;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}
label.gv-checkbox-slider.dark > input:disabled:checked + span {
  background-color: #a3d9be;
}
label.gv-checkbox-slider.dark > input:disabled + span {
  background-color: #a6a6a6;
}
label.gv-checkbox-slider.dark > input + span {
  background-color: #666666;
}
label.gv-checkbox-slider > input {
  position: absolute;
  top: 7px;
  left: 4px;
  height: 4px;
}
label.gv-checkbox-slider > input:checked + span {
  background-color: #4AB37E;
}
label.gv-checkbox-slider > input:checked + span > em {
  left: 100%;
  margin-left: -16px;
}
label.gv-checkbox-slider > input:disabled:checked + span {
  background-color: #a3d9be;
}
label.gv-checkbox-slider > input:disabled + span {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
label.gv-checkbox-slider > input:focus-visible + span {
  outline: solid 2px #000000;
}
label.gv-checkbox-slider > input + span {
  background-color: #CCCCCC;
  border-radius: 15px;
  display: inline-block;
  height: 20px;
  opacity: 1;
  padding: 2px;
  text-align: left;
  transition-duration: 0.25s;
  transition-property: background-color, opacity;
  transition-timing-function: ease;
  width: 36px;
  vertical-align: middle;
  position: relative;
}
label.gv-checkbox-slider > input + span > em {
  background-color: #FFFFFF;
  border-radius: 50%;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.0717));
  display: inline-block;
  height: 16px;
  left: 0;
  line-height: 24px;
  margin-left: 0;
  position: relative;
  top: 0;
  transition-duration: 0.25s;
  transition-property: left, margin-left;
  transition-timing-function: ease;
  width: 16px;
  vertical-align: top;
}
label.gv-checkbox-slider > * {
  vertical-align: middle;
}
.gv-double-range-picker {
  margin: 0 -8px;
}
.gv-double-range-picker.disable {
  cursor: not-allowed;
}
.gv-double-range-picker.disable > div.legend > div > span.value > span {
  background-color: #b3b3b3;
}
.gv-double-range-picker.disable > div.picker > label {
  cursor: not-allowed;
}
.gv-double-range-picker.disable > div.picker > label > b {
  background-color: #FFFFFF;
  border: 2px solid #cff3e2;
  cursor: not-allowed;
}
.gv-double-range-picker.disable > div.picker > label > b:has(~ input[type=range]:focus) {
  background-color: #cff3e2;
}
.gv-double-range-picker.disable > div.picker > label > em {
  background-color: #ffffff;
}
.gv-double-range-picker.disable > div.picker > label > em:has(~ input[type=range]:focus) {
  background-color: #ffffff;
}
.gv-double-range-picker.disable > div.picker > span.between {
  background-color: #cff3e2;
}
.gv-double-range-picker.grabbed {
  cursor: grabbing;
}
.gv-double-range-picker.grabbed > div.picker > label {
  cursor: grabbing;
}
.gv-double-range-picker.grabbed > div.picker > label > b {
  cursor: grabbing;
}
.gv-double-range-picker > div.legend {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 8px;
  position: relative;
  user-select: none;
}
.gv-double-range-picker > div.legend > div {
  display: flex;
  left: 0;
  position: absolute;
  top: -3px;
  width: 100%;
}
.gv-double-range-picker > div.legend > div > span.between {
  flex: 1 1 auto;
}
.gv-double-range-picker > div.legend > div > span.value {
  flex: 0 0 auto;
}
.gv-double-range-picker > div.legend > div > span.value.begin {
  text-align: right;
}
.gv-double-range-picker > div.legend > div > span.value.end {
  text-align: left;
}
.gv-double-range-picker > div.legend > div > span.value > span {
  border-radius: 6px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  font-size: 13px;
  background-color: #333333;
  padding: 2px 5px;
}
.gv-double-range-picker > div.legend > span {
  color: #666666;
  flex: 0 0 auto;
  font-size: 12px;
}
.gv-double-range-picker > div.picker {
  align-items: flex-start;
  display: flex;
  height: 16px;
  overflow: hidden;
  padding: 0 8px;
}
.gv-double-range-picker > div.picker > span.between {
  background-color: #269D64;
  border-radius: 6px;
  flex: 1 1 auto;
  height: 6px;
  margin: 5px 0;
}
.gv-double-range-picker > div.picker > label {
  flex: 0 0 auto;
  margin: 0;
  padding: 5px 0;
  position: relative;
}
.gv-double-range-picker > div.picker > label.begin > b {
  left: calc(100% - 8px);
}
.gv-double-range-picker > div.picker > label.begin > em {
  border-radius: 6px 0 0 6px;
}
.gv-double-range-picker > div.picker > label.end > b {
  right: calc(100% - 8px);
}
.gv-double-range-picker > div.picker > label.end > em {
  border-radius: 0 6px 6px 0;
}
.gv-double-range-picker > div.picker > label > b {
  background-color: #FFFFFF;
  border: 2px solid #269D64;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: grab;
  height: 16px;
  position: absolute;
  top: 0;
  width: 16px;
  transition: background-color ease 0.25s;
  z-index: 0;
}
.gv-double-range-picker > div.picker > label > b:has(~ input[type=range]:focus) {
  background-color: #269D64;
}
.gv-double-range-picker > div.picker > label > b.last-moved {
  z-index: 1;
}
.gv-double-range-picker > div.picker > label > em {
  background-color: #CFCFCF;
  display: block;
  height: 6px;
  transition: background-color ease 0.25s;
  width: 100%;
}
.gv-double-range-picker > div.picker > label > em:has(~ input[type=range]:focus) {
  background-color: #9F9F9F;
}
.gv-double-range-picker > div.picker > label > input[type=range],
.gv-double-range-picker > div.picker > label > span {
  position: absolute;
  bottom: 200%;
}
.gv-fixed-footer.fixed > .content {
  background-color: #FFFFFF;
  border-top: 1px solid #CFCFCF;
  bottom: 0;
  display: block;
  margin: 0;
  padding: 4px 0;
  position: fixed;
  z-index: 801;
}
.gv-fixed-footer.fixed.trial > .content {
  bottom: 39px;
}
.gv-fixed-footer.loading {
  display: none;
}
.gv-grid {
  font-size: 12px;
  position: relative;
}
.gv-grid .checkall {
  background-color: #F7F7F7;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  display: inline-block;
  padding: 4px 3px 3px 3px;
  text-align: center;
}
.gv-grid .checkall > .gv-checkbox {
  margin: 0;
}
.gv-grid .gv-footer {
  background-color: #F7F7F7;
  border-top: 1px solid #E8E8E8;
  padding: 6px;
}
.gv-grid .gv-footer > .gv-paging {
  float: right;
}
.gv-grid table {
  width: 100%;
}
.gv-grid table.auto-height {
  height: auto;
  min-height: unset;
}
.gv-grid table.auto-height > thead > tr > th {
  padding-top: 0;
}
.gv-grid table.valign-middle > tbody > tr > td {
  vertical-align: middle;
}
.gv-grid table > thead > tr > th {
  padding: 16px 8px 16px 8px;
}
.gv-grid table > thead > tr > th:first-child {
  padding-left: 8px;
}
.gv-grid table > thead > tr > th.sortable {
  color: #666666;
  cursor: pointer;
  transition: color ease 0.25s;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}
.gv-grid table > thead > tr > th.sortable:hover {
  color: #333333;
}
.gv-grid table > thead > tr > th.sortable::after {
  content: '\f0dc';
  display: inline-block;
  font: normal normal normal 14px/1 "Font Awesome 5 Pro";
  font-weight: bold;
  margin-left: 8px;
}
.gv-grid table > thead > tr > th.sortable.asc::after {
  content: '\f0de';
}
.gv-grid table > thead > tr > th.sortable.desc::after {
  content: '\f0dd';
}
.gv-grid table > thead > tr > th.row-height {
  overflow: hidden;
  padding: 0;
  width: 1px;
}
.gv-grid table > tbody > tr.active > td {
  background-color: #E9F7F1;
}
.gv-grid table > tbody > tr.family-name-adjust > td:not(.tdname) {
  padding-top: 43px;
}
.gv-grid table > tbody > tr > td {
  background-color: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  padding: 16px 8px 16px 8px;
  transition: background-color ease 0.25s;
  vertical-align: top;
}
.gv-grid table > tbody > tr > td .check {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
  padding: 4px 3px 3px 3px;
  text-align: center;
}
.gv-grid table > tbody > tr > td .check > .gv-checkbox {
  margin: 0;
}
.gv-grid table > tbody > tr > td .editable:hover {
  color: #427e8f;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.gv-grid table > tbody > tr > td .editable:hover > span {
  color: #427e8f;
}
.gv-grid table > tbody > tr > td .editable:hover:after {
  border-bottom: 1px solid #427e8f;
  content: "\f303";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-size: 10px;
  font-weight: 900;
  margin-left: 2px;
  position: absolute;
  text-decoration: none;
  z-index: 700;
}
.gv-grid table > tbody > tr > td .missing-value {
  display: block;
}
.gv-grid table > tbody > tr > td .missing-value > .missing-add {
  color: #427e8f;
  cursor: pointer;
  display: none;
  position: absolute;
  text-decoration: none;
}
.gv-grid table > tbody > tr > td .missing-value > .missing-add > i {
  font-size: 10px;
}
.gv-grid table > tbody > tr > td .missing-value:hover > .missing-add {
  display: inline;
}
.gv-grid table > tbody > tr > td.row-height {
  overflow: hidden;
  padding: 0;
  width: 1px;
}
.gv-grid table > tbody > tr > td .text-truncate {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: text-bottom;
}
.gv-grid table > tbody > tr > td .text-truncate.text-width-250 {
  max-width: 250px;
}
.gv-grid table > tbody > tr > td.no-rows {
  color: #666666;
  font-size: 16px;
  padding: 104px 0 !important;
  text-align: center;
}
.gv-grid table > tbody > tr > td.no-rows > i {
  color: #4AB37E;
  display: inline-block;
  font-size: 48px;
}
.gv-grid table > tbody > tr > td.tdname a {
  color: #666666;
  cursor: pointer;
  transition: color 1s ease;
}
.gv-grid table > tbody > tr > td.tdname a:active,
.gv-grid table > tbody > tr > td.tdname a:focus,
.gv-grid table > tbody > tr > td.tdname a:hover {
  color: #333333;
  outline: none;
}
.gv-grid table > tbody > tr > td.tdname a:active ul > li,
.gv-grid table > tbody > tr > td.tdname a:focus ul > li,
.gv-grid table > tbody > tr > td.tdname a:hover ul > li {
  color: #CFCFCF;
}
.gv-grid table > tbody > tr > td.tdname a:active ul > li > span,
.gv-grid table > tbody > tr > td.tdname a:focus ul > li > span,
.gv-grid table > tbody > tr > td.tdname a:hover ul > li > span {
  color: #333333;
}
.gv-grid table > tbody > tr > td.tdtags {
  padding: 8px 8px 16px 4px;
}
.gv-grid table > tbody > tr > td ul {
  list-style-type: none;
  padding: 0;
}
.gv-grid table > tbody > tr > td ul.bullets {
  list-style-type: disc;
  padding-left: 16px;
}
.gv-grid table > tbody > tr > td ul > li {
  color: #CFCFCF;
}
.gv-grid table > tbody > tr > td ul > li.notInvited {
  list-style-type: none;
}
.gv-grid table > tbody > tr > td ul > li.notInvited > span {
  color: #9F9F9F;
}
.gv-grid table > tbody > tr > td ul > li span {
  color: #666666;
  transition: color 1s ease;
}
.gv-grid .gv-grid-action {
  color: #666666;
  display: inline-block;
  font-size: 16px;
  margin: 8px;
  transition: color ease 0.25s;
}
.gv-grid .gv-grid-action > i {
  color: #666666;
  transition: color ease 0.25s;
}
.gv-grid .gv-grid-action:focus {
  color: #333333;
  outline: none;
}
.gv-grid .gv-grid-action:hover {
  color: #333333;
}
.gv-grid .gv-grid-action:hover > i {
  color: #333333;
}
.gv-grid .gv-grid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.gv-grid .gv-grid-container.data {
  min-height: 400px;
}
.gv-grid .gv-grid-container.fixed-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  display: none;
  position: fixed;
  top: 0;
  z-index: 1029;
}
.gv-grid .gv-grid-container.fixed-header.in {
  display: flex;
}
.gv-grid .gv-grid-container.fixed-header table {
  min-height: unset;
}
.gv-grid .gv-grid-container .grid-wrapper {
  flex: 1 1 auto;
  overflow: auto;
  position: relative;
}
.gv-grid .gv-grid-container .grid-wrapper.no-scroll {
  overflow: hidden;
}
.gv-grid .gv-grid-container .gv-grid-side-actions {
  background-color: #FFFFFF;
  flex: 0 0 auto;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left.scrolled {
  border-right: 1px solid #E8E8E8;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div {
  display: flex;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div {
  padding-right: 8px;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > a,
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > span {
  color: #666666;
  cursor: pointer;
  transition: color 1s ease;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > a:hover,
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > span:hover {
  color: #333333;
  text-decoration: none;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > a span.family-name,
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > span span.family-name {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > a ul,
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div.name-info > span ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.left > div > div > span.check {
  padding: 0 4px;
}
.gv-grid .gv-grid-container .gv-grid-side-actions.right.scrolled {
  border-left: 1px solid #E8E8E8;
}
.gv-grid .gv-grid-container .gv-grid-side-actions > div {
  align-items: flex-start;
  background-color: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding-top: 16px;
  transition: background-color ease 0.25s;
}
.gv-grid .gv-grid-container .gv-grid-side-actions > div:first-child {
  align-items: center;
  border-top: 0;
  padding-top: 0;
}
.gv-grid .gv-grid-container .gv-grid-side-actions > div:first-child > div {
  font-weight: bold;
  position: relative;
}
.gv-grid .gv-grid-container .gv-grid-side-actions > div.active {
  background-color: #E9F7F1;
}
.gv-grid .gv-grid-dropdown {
  padding: 16px 8px;
  text-align: right;
}
.gv-grid .gv-grid-dropdown .dropdown .dropdown-toggle {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  height: 28px;
  width: 28px;
}
.gv-grid .gv-grid-dropdown .dropdown .dropdown-toggle::before {
  border-left: 2.5px solid #427e8f;
  border-radius: 2px;
  border-top: 2.5px solid #427e8f;
  content: '';
  display: block;
  height: 10px;
  left: 8px;
  position: relative;
  top: 7px;
  transform: rotate(-135deg);
  width: 10px;
}
.gv-grid .gv-grid-dropdown .dropdown.open .dropdown-toggle::before {
  top: 10px;
  transform: rotate(45deg);
}
.gv-grid .gv-grid-selected-actions {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 0 0 4px 4px #FFFFFF;
  display: none;
  font-size: 14px;
  line-height: 30px;
  margin-top: -2px;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  z-index: 1025;
}
.gv-grid .gv-grid-selected-actions.open {
  display: flex;
}
.gv-grid .gv-grid-selected-actions > .selection {
  background-color: #F7F7F7;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  display: inline-block;
  float: left;
  margin: 0;
  padding: 0;
}
.gv-grid .gv-grid-selected-actions > .selection > a.selection-clear {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  display: inline-block;
  height: 16px;
  margin: -3px 6px 0 6px;
  width: 16px;
  vertical-align: middle;
}
.gv-grid .gv-grid-selected-actions > .selection > a.selection-clear::before {
  background-color: #4AB37E;
  content: ' ';
  display: inline-block;
  height: 2px;
  left: 3px;
  position: relative;
  top: -12px;
  width: 8px;
}
.gv-grid .gv-grid-selected-actions > .selection > span {
  color: #666666;
  display: inline-block;
  font-weight: normal;
  padding-right: 6px;
}
.gv-grid .gv-grid-selected-actions > .action {
  border-left: 1px solid #CFCFCF;
  display: inline-block;
  float: left;
}
.gv-grid .gv-grid-selected-actions > .action > a {
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 0px 10px;
  text-align: center;
  min-width: 130px;
}
.gv-grid .gv-grid-selected-actions > :last-child {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.gv-grid div.sorthovercontainer > div.sorthover,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover {
  color: #666666;
}
.gv-grid div.sorthovercontainer > div.sorthover > a,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover > a {
  color: #666666;
}
.gv-grid div.sorthovercontainer > div.sorthover > a:focus,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover > a:focus,
.gv-grid div.sorthovercontainer > div.sorthover > a:hover,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover > a:hover {
  color: #4AB37E;
}
.gv-grid div.sorthovercontainer > div.sorthover > .sorthoverposition.fa-tooltip,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover > .sorthoverposition.fa-tooltip {
  right: -18px;
}
.gv-grid div.sorthovercontainer > div.sorthover > .sorthoverposition > i,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover > .sorthoverposition > i,
.gv-grid div.sorthovercontainer > div.sorthover span > i,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover span > i {
  top: 4px;
}
.gv-grid div.sorthovercontainer > div.sorthover > .sorthoverposition > i.fa-sort-up,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover > .sorthoverposition > i.fa-sort-up,
.gv-grid div.sorthovercontainer > div.sorthover span > i.fa-sort-up,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover span > i.fa-sort-up {
  top: 6px;
}
.gv-grid div.sorthovercontainer > div.sorthover > .sorthoverposition > i.fa-sort-down,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover > .sorthoverposition > i.fa-sort-down,
.gv-grid div.sorthovercontainer > div.sorthover span > i.fa-sort-down,
.gv-grid div.sorthovercontainer > div#nameSort.sorthover span > i.fa-sort-down {
  top: 0;
}
.gv-grid div.sorthovercontainer > ul.dropdown-menu > li > a {
  background-color: #FFFFFF;
  color: #333333;
}
.gv-grid div.sorthovercontainer > ul.dropdown-menu > li > a .icon.down {
  margin-top: 4px;
}
.gv-grid div.sorthovercontainer > ul.dropdown-menu > li > a .icon.up {
  margin-top: 10px;
}
.gv-grid div.sorthovercontainer > ul.dropdown-menu > li > a .icon.hover {
  display: none;
  margin-top: 6px;
}
.gv-grid div.sorthovercontainer > ul.dropdown-menu > li > a:hover {
  background-color: #4AB37E;
  color: #FFFFFF;
}
.gv-grid div.sorthovercontainer > ul.dropdown-menu > li > a:hover .icon.hover {
  display: block;
}
span.gv-textinput-ml {
  align-items: center;
  border-radius: 4px;
  border: 1px solid #CFCFCF;
  display: inline-flex;
  padding: 10px;
  transition: border ease 0.25s;
}
span.gv-textinput-ml.focus {
  border-color: #4AB37E;
}
span.gv-textinput-ml.max {
  border-color: #F37575;
}
span.gv-textinput-ml.max > small {
  color: #F37575;
}
span.gv-textinput-ml > input {
  border: 0;
  color: #333333;
  flex: 1 1 auto;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: middle;
  width: 100%;
}
span.gv-textinput-ml > small {
  color: #666666;
  flex: 0 0 auto;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
  margin-left: 10px;
  transition: color ease 0.25s;
  vertical-align: middle;
}
.popover {
  background-color: #333333;
  border: none !important;
  border-radius: 4px;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 14px;
  font-style: normal !important;
  font-weight: normal !important;
  text-align: center;
  text-transform: none;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  z-index: 9999;
}
.popover > .popover-content {
  background-color: rgba(0, 0, 0, 0) !important;
  color: #FFFFFF !important;
  padding: 6px 8px !important;
}
.popover > .popover-title {
  background-color: rgba(0, 0, 0, 0) !important;
  border-bottom: 0px solid rgba(0, 0, 0, 0) !important;
  border-radius: 0 !important;
  color: #FFFFFF !important;
  padding: 6px 8px !important;
}
.popover.bottom {
  margin-top: 13px;
}
.popover.bottom > .arrow {
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.popover.bottom > .arrow:after {
  border-bottom-color: #333333 !important;
}
.popover.left {
  margin-left: -13px;
}
.popover.left > .arrow {
  border-left-color: rgba(0, 0, 0, 0.2) !important;
}
.popover.left > .arrow:after {
  border-left-color: #333333 !important;
}
.popover.right {
  margin-left: 13px;
}
.popover.right > .arrow {
  border-right-color: rgba(0, 0, 0, 0.2) !important;
}
.popover.right > .arrow:after {
  border-right-color: #333333 !important;
}
.popover.top {
  margin-top: -13px;
}
.popover.top > .arrow {
  border-top-color: rgba(0, 0, 0, 0.2) !important;
}
.popover.top > .arrow:after {
  border-top-color: #333333 !important;
}
.popover.light {
  background-color: #FFFFFF !important;
  box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.25) !important;
  color: #333333 !important;
}
.popover.light > .popover-content {
  color: #333333 !important;
}
.popover.light > .popover-title {
  color: #333333 !important;
}
.popover.light.bottom > .arrow {
  border-bottom-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.light.bottom > .arrow:after {
  border-bottom-color: #FFFFFF !important;
}
.popover.light.left > .arrow {
  border-left-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.light.left > .arrow:after {
  border-left-color: #FFFFFF !important;
}
.popover.light.right > .arrow {
  border-right-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.light.right > .arrow:after {
  border-right-color: #FFFFFF !important;
}
.popover.light.top > .arrow {
  border-top-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.light.top > .arrow:after {
  border-top-color: #FFFFFF !important;
}
.popover.yellow {
  background-color: #FFFFF0 !important;
  box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.25) !important;
}
.popover.yellow > .popover-content {
  color: #9F9F9F !important;
}
.popover.yellow > .popover-title {
  color: #9F9F9F !important;
}
.popover.yellow.bottom > .arrow {
  border-bottom-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.yellow.bottom > .arrow:after {
  border-bottom-color: #FFFFF0 !important;
}
.popover.yellow.left > .arrow {
  border-left-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.yellow.left > .arrow:after {
  border-left-color: #FFFFF0 !important;
}
.popover.yellow.right > .arrow {
  border-right-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.yellow.right > .arrow:after {
  border-right-color: #FFFFF0 !important;
}
.popover.yellow.top > .arrow {
  border-top-color: rgba(0, 0, 0, 0.12) !important;
}
.popover.yellow.top > .arrow:after {
  border-top-color: #FFFFF0 !important;
}
.gv-tooltip-container {
  cursor: help;
  position: relative;
}
.gv-tooltip-container.no-hover {
  cursor: pointer;
}
.gv-tooltip-container:not(.no-hover):hover > .gv-tooltip,
.gv-tooltip-container:not(.no-hover):active > .gv-tooltip {
  display: block;
}
.gv-tooltip-container > input[type=checkbox] {
  left: -9999px;
  position: fixed;
  top: -9999px;
}
.gv-tooltip-container > input[type=checkbox]:checked ~ .gv-tooltip {
  display: block;
}
.gv-tooltip-container > .gv-tooltip {
  background-color: #333333;
  border-radius: 6px;
  bottom: 100%;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.0802);
  color: #FFFFFF;
  display: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  left: 50%;
  line-height: 1.4;
  margin-bottom: 10px;
  padding: 8px 12px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 3;
}
.gv-tooltip-container > .gv-tooltip::before {
  border-bottom: 12px solid #333333;
  border-left: 0;
  border-right: 12px solid #333333;
  border-top: 0;
  bottom: -5.5px;
  content: " ";
  display: block;
  left: 50%;
  margin-left: -6px;
  position: absolute;
  transform: rotate(45deg);
}
.gv-tooltip-container > .gv-tooltip.bottom {
  bottom: unset;
  margin-bottom: unset;
  margin-top: 10px;
  top: 100%;
}
.gv-tooltip-container > .gv-tooltip.bottom::before {
  bottom: unset;
  top: -5.5px;
  transform: rotate(-45deg);
}
.gv-tooltip-container > .gv-tooltip.left {
  bottom: 50%;
  left: unset;
  right: 100%;
  margin-bottom: 0;
  margin-right: 10px;
  transform: translate(0, 50%);
}
.gv-tooltip-container > .gv-tooltip.left::before {
  bottom: unset;
  left: unset;
  right: -5.5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.btn-default {
  color: #999999;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
:focus-visible {
  outline: auto 1px #4AB37E;
}
a:focus-visible {
  outline: auto 1px #4AB37E;
  outline-offset: unset;
}
.dropdown {
  cursor: pointer;
}
.form-control {
  height: 30px;
  font-size: 13px;
  padding-left: 6px;
  padding-right: 6px;
}
.btn-primary {
  background-color: #4AB37E;
  border-color: #229B60;
  -webkit-box-shadow: 0 1px 1px #216E47;
  box-shadow: 0 1px 1px #216E47;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #FFF;
  background-color: #4AB37E;
  border-color: #229B60;
  -webkit-box-shadow: 0 1px 1px #216E47;
  box-shadow: 0 1px 1px #216E47;
}
.btn-info {
  background-color: #646464;
  border-color: #646464;
  -webkit-box-shadow: 0 1px 1px black;
  box-shadow: 0 1px 1px black;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-neutral {
  color: #ffffff;
  font-weight: normal;
  background-color: #828282;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: solid 2px #828282;
}
.btn-neutral:hover,
.btn-neutral:focus,
.btn-neutral:active,
.btn-neutral.active,
.open .dropdown-toggle.btn-neutral {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-warning {
  background-color: #ad9159;
  border-color: #8F7444;
  -webkit-box-shadow: 0 1px 1px #8F7444;
  box-shadow: 0 1px 1px #8F7444;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-danger {
  background-color: #b44e4e;
  border-color: #b44e4e;
}
.btn-google {
  color: #666666;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  background: url('../../pub/_images/google/g-logo.png') no-repeat left center;
  background-size: 40px 40px;
  background-position-x: 18px;
  background-color: #FFFFFF;
  padding: 20px 12px;
}
.btn-google:hover,
.btn-google:focus,
.btn-google:active,
.btn-google.active,
.open .dropdown-toggle.btn-google {
  color: #666666;
  background-color: #FFFFFF;
  border-color: #CCCCCC;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  background: url('../../pub/_images/google/g-logo.png') no-repeat left center;
  background-size: 40px 40px;
  background-position-x: 18px;
}
.btn-facebook {
  color: #FFFFFF;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  background: url('../../pub/_images/facebook/FB-f-Logo__blue_50.png') no-repeat left center;
  background-size: 40px 40px;
  background-position-x: 18px;
  background-color: #3B579D;
  padding: 20px 12px;
}
.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active,
.btn-facebook.active,
.open .dropdown-toggle.btn-facebook {
  color: #666666;
  background-color: #FFFFFF;
  border-color: #CCCCCC;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  background: url('../../pub/_images/facebook/FB-f-Logo__blue_50.png') no-repeat left center;
  background-size: 40px 40px;
  background-position-x: 18px;
}
.label {
  border-radius: 15px;
  padding: 8px;
  margin-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
  font-size: 100%;
}
.label-info {
  background-color: #FADCBC;
  color: #666666;
  border: 1px solid #EFCDAB;
}
.label-danger {
  background-color: #F47967;
}
label {
  font-weight: normal;
}
.alert {
  border-radius: 4px;
  color: #333333;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  padding: 10px 15px;
  vertical-align: middle;
}
.alert strong {
  font-weight: normal;
}
.alert-info {
  background-color: #edf4f7;
  border-color: #5895AC;
}
.alert-warning {
  background-color: #fffbed;
  border-color: #FFD641;
}
.alert-danger,
.alert-error {
  background-color: #f7e6e6;
  border-color: #ED4949;
}
.warning {
  color: #FDF29F;
}
.badge.badge-warning {
  color: #333333 !important;
  background-color: #FDF29F !important;
}
.progress-bar-success {
  background-color: #4AB37E;
}
.progress {
  height: 30px;
}
.whitelink,
.whitelink:hover,
.whitelink:visited,
.whitelink:active,
.whitelink:focus {
  color: white;
}
.graylink,
.graylink:hover,
.graylink:visited,
.graylink:active,
.graylink:focus {
  color: #666666;
}
.white {
  color: #FFFFFF;
}
.caps {
  text-transform: capitalize;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.strikethrough {
  text-decoration: line-through;
}
.gv-underline {
  text-decoration: underline;
}
.panel > .panel-heading {
  border-bottom-width: 2px;
}
.panel-default {
  border-bottom-width: 2px;
}
.panel-default > .panel-heading {
  background-color: #41A7BD;
  border-color: #CCCCCC;
  font-size: 13px;
  color: white;
}
.panel-default > .panel-heading i,
.panel-default > .panel-heading a:not(.btn) {
  color: white;
}
.panel-info {
  border-color: #CCCCCC;
}
.panel-info > .panel-heading {
  background-color: #646464;
  border-color: #CCCCCC;
  font-size: 13px;
  color: white;
  border-bottom: none;
}
.panel-primary {
  border-bottom-width: 2px;
  border-color: #DDD;
}
.panel-primary > .panel-heading {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #666666;
}
.sub-nav {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 15px;
}
.sub-nav .item {
  display: inline-block;
  text-align: center;
  padding: 12px 15px 12px 15px;
}
.sub-nav .item a {
  font-size: 13px;
}
.sub-nav .item.active {
  border-bottom: 3px solid #4AB37E;
}
.sub-nav .item.active a,
.sub-nav .item:hover a:not(.disable) {
  color: #666666;
}
.sub-nav .item i {
  font-size: 14px;
  margin-right: 8px;
  color: #999999;
}
.modal.fade:not(.in).bottom .modal-dialog {
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}
.modal.fade.bottom {
  top: inherit;
}
.modal:focus {
  outline: 0;
}
.modal > .modal-dialog > i.modalClose {
  background-color: #2f2f2f;
  border: 1px solid #999999;
  border-radius: 15px;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  font-size: 26px;
  height: 30px;
  margin: 16px -4px 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 30px;
  vertical-align: middle;
  z-index: 9999;
}
.modal.preview .modal-dialog {
  width: 98%;
  height: 98%;
  padding: 0;
  padding-top: 12px;
}
.modal.preview .modal-content {
  height: 96%;
}
.modal.preview .modal-body {
  padding: 0;
}
.lang-en {
  display: none;
}
.lang-en:lang(en) {
  display: block;
}
.lang-de {
  display: none;
}
.lang-de:lang(de) {
  display: block;
}
.lang-it {
  display: none;
}
.lang-it:lang(it) {
  display: block;
}
.lang-es {
  display: none;
}
.lang-es:lang(es) {
  display: block;
}
.lang-fr {
  display: none;
}
.lang-fr:lang(fr) {
  display: block;
}
.lang-ru {
  display: none;
}
.lang-ru:lang(ru) {
  display: block;
}
.lang-pt {
  display: none;
}
.lang-pt:lang(pt) {
  display: block;
}
.lang-nl {
  display: none;
}
.lang-nl:lang(nl) {
  display: block;
}
.lang-en.in:lang(en) {
  display: inline;
}
.lang-de.in:lang(de) {
  display: inline;
}
.lang-es.in:lang(es) {
  display: inline;
}
.lang-fr.in:lang(fr) {
  display: inline;
}
.lang-it.in:lang(it) {
  display: inline;
}
.lang-ru.in:lang(ru) {
  display: inline;
}
.lang-pt.in:lang(pt) {
  display: inline;
}
.lang-nl.in:lang(nl) {
  display: inline;
}
.div-table {
  display: table;
}
.div-table-row {
  display: table-row;
}
.div-table-cell {
  display: table-cell;
}
.responsive-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-iframe-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.display-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.display-flex.flex-row {
  flex-direction: row;
}
.display-flex.flex-column {
  flex-direction: column;
}
.display-flex.flex-wrap {
  flex-wrap: wrap;
}
.display-flex.flex-nowrap {
  flex-wrap: nowrap;
}
.display-flex.justify-start {
  justify-content: flex-start;
}
.display-flex.justify-end {
  justify-content: flex-end;
}
.display-flex.justify-center {
  justify-content: center;
}
.display-flex.justify-around {
  justify-content: space-around;
}
.display-flex.justify-between {
  justify-content: space-between;
}
.display-flex.justify-evenly {
  justify-content: space-evenly;
}
.display-flex.align-start {
  align-items: flex-start;
}
.display-flex.align-center {
  align-items: center;
}
.display-flex.align-end {
  align-items: flex-end;
}
.flex {
  display: flex;
}
.modal-content {
  border-radius: 0px;
}
.modal-title {
  font-weight: normal;
}
.modal-header {
  border-bottom: 3px solid #E6E6E6;
  background-color: #F3F3F3;
  padding: 10px 15px 10px 15px ;
}
.modal-header .close {
  font-size: 18px;
  margin-top: 4px;
}
.btn-point {
  z-index: 0;
  margin-right: 16px;
  border-bottom-width: 2px;
  position: relative;
  border-radius: 4px 0px 0px 4px;
  border-right-width: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-point:before {
  content: "";
  width: 22px;
  height: 22px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 4px;
  right: -11px;
  z-index: -1;
  border: 1px solid transparent;
  border-right-width: 2px;
  border-radius: 0px 5px 0px 0px;
}
.btn-point:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-point-left {
  z-index: 0;
  margin-right: 16px;
  border-bottom-width: 2px;
  position: relative;
  border-radius: 0px 4px 4px 0px;
  border-left-width: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-point-left:before {
  content: "";
  width: 22px;
  height: 22px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 4px;
  left: -11px;
  z-index: -1;
  border: 1px solid transparent;
  border-bottom-width: 2px;
  border-radius: 0px 0px 0px 5px;
}
.btn-point-left:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ie8 .btn-point:before,
.ie8 .btn-point-left:before {
  display: none;
}
.ie8 .btn-point {
  border-right-width: 1px;
}
.ie8 .btn-point-left {
  border-left-width: 1px;
}
.btn-point.btn-primary:before {
  background-color: #34b475;
  border-right-color: #229b60;
  border-top-color: #229b60;
}
.btn-point.btn-primary:hover:before,
.btn-point.btn-primary:focus:before,
.btn-point.btn-primary:active:before {
  color: #333;
  background-color: #fff;
  border-right-color: #ccc;
  border-top-color: #ccc;
}
.btn-point.btn-default:before {
  color: #333;
  background-color: #fff;
  border-right-color: #ccc;
  border-top-color: #ccc;
}
.btn-point.btn-default:hover:before,
.btn-point.btn-default:active:before {
  background-color: #34b475;
  border-right-color: #229b60;
  border-top-color: #229b60;
}
.btn-point-left.btn-primary:before {
  background-color: #34b475;
  border-left-color: #229b60;
  border-bottom-color: #229b60;
}
.btn-point-left.btn-primary:hover:before,
.btn-point-left.btn-primary:focus:before,
.btn-point-left.btn-primary:active:before {
  color: #333;
  background-color: #fff;
  border-left-color: #ccc;
  border-bottom-color: #ccc;
}
.btn-point-left.btn-default:before {
  color: #333;
  background-color: #fff;
  border-left-color: #ccc;
  border-bottom-color: #ccc;
}
.btn-point-left.btn-default:hover:before,
.btn-point-left.btn-default:active:before {
  background-color: #34b475;
  border-left-color: #229b60;
  border-bottom-color: #229b60;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #CCC !important;
  opacity: 1;
}
input:-moz-placeholder,
input:-moz-placeholder,
select:-moz-placeholder {
  color: #CCC !important;
  opacity: 1;
}
input::-moz-placeholder,
input::-moz-placeholder,
select::-moz-placeholder {
  color: #CCC !important;
  opacity: 1;
}
input:-ms-input-placeholder,
input:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #CCC !important;
  opacity: 1;
}
.fa-question-sign.pp {
  font-size: 14px;
  margin-left: 5px;
  cursor: pointer;
}
.margin-0 {
  margin: 0!important;
}
.margin-20 {
  margin: 20px!important;
}
.margin-5 {
  margin: 5px!important;
}
.margin-r-0 {
  margin-right: 0;
}
.margin-r-5 {
  margin-right: 5px;
}
.margin-r-10 {
  margin-right: 10px;
}
.margin-r-15 {
  margin-right: 15px;
}
.margin-r-20 {
  margin-right: 20px;
}
.margin-r-30 {
  margin-right: 30px;
}
.margin-r-40 {
  margin-right: 40px;
}
.margin-r-45 {
  margin-right: 45px!important;
}
.margin-r-50 {
  margin-right: 50px;
}
.margin-l-0 {
  margin-left: 0!important;
}
.margin-l-5 {
  margin-left: 5px;
}
.margin-l-10 {
  margin-left: 10px;
}
.margin-l-15 {
  margin-left: 15px;
}
.margin-l-20 {
  margin-left: 20px;
}
.margin-l-25 {
  margin-left: 25px;
}
.margin-l-30 {
  margin-left: 30px;
}
.margin-l-40 {
  margin-left: 40px;
}
.margin-l-45 {
  margin-left: 45px;
}
.margin-t-0 {
  margin-top: 0;
}
.margin-t-5 {
  margin-top: 5px;
}
.margin-t-10 {
  margin-top: 10px!important;
}
.margin-t-15 {
  margin-top: 15px;
}
.margin-t-20 {
  margin-top: 20px;
}
.margin-t-25 {
  margin-top: 25px;
}
.margin-t-30 {
  margin-top: 30px;
}
.margin-t-40 {
  margin-top: 40px;
}
.margin-t-60 {
  margin-top: 60px;
}
.margin-b-0 {
  margin-bottom: 0!important;
}
.margin-b-5 {
  margin-bottom: 5px;
}
.margin-b-10 {
  margin-bottom: 10px;
}
.margin-b-15 {
  margin-bottom: 15px!important;
}
.margin-b-20 {
  margin-bottom: 20px!important;
}
.margin-b-25 {
  margin-bottom: 25px;
}
.margin-b-30 {
  margin-bottom: 30px;
}
.margin-b-35 {
  margin-bottom: 35px;
}
.margin-b-40 {
  margin-bottom: 40px!important;
}
.margin-b-60 {
  margin-bottom: 60px;
}
.padding-5 {
  padding: 5px;
}
.padding-10 {
  padding: 10px;
}
.padding-15 {
  padding: 15px;
}
.padding-20 {
  padding: 20px;
}
.padding-r-0 {
  padding-right: 0px;
}
.padding-r-5 {
  padding-right: 5px;
}
.padding-r-10 {
  padding-right: 10px;
}
.padding-r-15 {
  padding-right: 15px;
}
.padding-r-20 {
  padding-right: 20px;
}
.padding-r-40 {
  padding-right: 40px;
}
.padding-l-0 {
  padding-left: 0px;
}
.padding-l-5 {
  padding-left: 5px;
}
.padding-l-10 {
  padding-left: 10px;
}
.padding-l-15 {
  padding-left: 15px;
}
.padding-l-20 {
  padding-left: 20px;
}
.padding-l-40 {
  padding-left: 40px;
}
.padding-t-5 {
  padding-top: 5px;
}
.padding-t-10 {
  padding-top: 10px;
}
.padding-t-15 {
  padding-top: 15px;
}
.padding-t-20 {
  padding-top: 20px!important;
}
.padding-t-40 {
  padding-top: 40px;
}
.padding-t-60 {
  padding-top: 60px;
}
.padding-b-5 {
  padding-bottom: 5px;
}
.padding-b-10 {
  padding-bottom: 10px;
}
.padding-b-15 {
  padding-bottom: 15px;
}
.padding-b-20 {
  padding-bottom: 20px;
}
.padding-b-40 {
  padding-bottom: 40px;
}
.padding-b-60 {
  padding-bottom: 60px;
}
.font-size-10 {
  font-size: 10px !important;
}
.font-size-11 {
  font-size: 11px !important;
}
.font-size-12 {
  font-size: 12px !important;
}
.font-size-13 {
  font-size: 13px !important;
}
.font-size-14 {
  font-size: 14px !important;
}
.font-size-15 {
  font-size: 15px !important;
}
.font-size-16 {
  font-size: 16px !important;
}
.font-size-18 {
  font-size: 18px !important;
}
.font-size-20 {
  font-size: 20px !important;
}
.font-size-22 {
  font-size: 22px !important;
}
.font-size-24 {
  font-size: 24px !important;
}
.font-size-28 {
  font-size: 28px !important;
}
.font-size-30 {
  font-size: 30px !important;
}
.font-size-32 {
  font-size: 32px !important;
}
.font-size-36 {
  font-size: 36px !important;
}
.font-size-46 {
  font-size: 46px !important;
}
.font-size-48 {
  font-size: 48px !important;
}
.font-size-60 {
  font-size: 60px !important;
}
.font-size-14-pt {
  font-size: 14pt !important;
}
.font-size-36-pt {
  font-size: 36pt !important;
}
.width-40 {
  width: 40px;
}
.width-50 {
  width: 50px;
}
.width-60 {
  width: 60px;
}
.width-65 {
  width: 65px;
}
.width-75 {
  width: 75px;
}
.width-100 {
  width: 100px;
}
.width-150 {
  width: 150px;
}
.width-200 {
  width: 200px;
}
.width-250 {
  width: 250px;
}
.width-300 {
  width: 300px;
}
.width-400 {
  width: 400px;
}
.width-500 {
  width: 500px;
}
.width-600 {
  width: 600px;
}
.width-700 {
  width: 700px;
}
.width-10p {
  width: 10%;
}
.width-15p {
  width: 15%;
}
.width-20p {
  width: 20%;
}
.width-25p {
  width: 25%;
}
.width-30p {
  width: 30%;
}
.width-40p {
  width: 40%;
}
.width-50p {
  width: 50%;
}
.width-60p {
  width: 60%;
}
.width-70p {
  width: 70%;
}
.width-80p {
  width: 80%;
}
.width-90p {
  width: 90%;
}
.width-100p {
  width: 100%;
}
.width-100p-important {
  max-width: 100% !important;
  min-width: 100% !important;
  width: 100% !important;
}
.w-auto {
  width: auto!important;
}
.w-60p {
  width: 60%!important;
}
.block {
  display: block;
}
.printonly {
  display: none;
}
.inline {
  display: inline-block;
}
.text-top {
  vertical-align: text-top !important;
}
.top {
  vertical-align: top;
}
.middle {
  vertical-align: middle;
}
.not-bold {
  font-weight: normal!important;
}
.nowrap {
  white-space: nowrap;
}
.pointer {
  cursor: pointer;
}
.fa-alink {
  font-size: 16px;
  color: #999999;
  cursor: pointer;
}
.fa-alink:hover {
  color: #67a0b1;
}
input {
  color: #666666;
}
.gray-link {
  color: inherit;
}
.graymed {
  color: #999999;
}
.grayborderbottom {
  border-bottom: 1px solid #CCCCCC;
}
.relative {
  position: relative;
}
.hidden {
  display: none;
}
.greentext {
  color: #229B60;
}
.white-text-shadow {
  text-shadow: 0 1px 1px #696969;
}
.blur {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
i.fa-tooltip {
  color: #999999 !important;
  cursor: pointer;
  font-size: 14px !important;
}
.btn.btn-default:hover i.fa-tooltip {
  color: #FFF !important;
}
.btn.btn-primary i.fa-tooltip {
  color: #FFF !important;
}
.btn.btn-primary:hover i.fa-tooltip {
  color: #999999 !important;
}
.menuitem i.fa-tooltip {
  color: #216E47 !important;
}
#alertbar {
  position: fixed;
  top: 5px;
  max-width: 600px;
  cursor: pointer;
  display: none;
  text-align: center;
  z-index: 15000;
}
.error {
  color: #CC0000;
  outline: #CC0000 auto 5px;
}
.help-inline {
  color: #CC0000;
  margin-left: 10px;
  font-weight: bold;
}
.help-inline-block {
  color: #CC0000;
  font-weight: bold;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
}
.help-inline-block:before,
.help-inline:before {
  content: "\f06a";
  padding-right: 5px;
  font-size: 14px;
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.no-validation-error .help-inline {
  display: none;
}
.table-new {
  width: 100%;
  background-color: white;
  border: 1px solid #CCCCCC;
  margin-bottom: 20px;
  font-size: 13px;
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  border-collapse: separate !important;
}
.table-new td {
  padding: 10px;
}
.table-new th {
  padding: 10px;
  background-color: #F1F1F1;
  border-bottom: 2px solid #CCCCCC;
}
.table-new th:first-child {
  -moz-border-radius: 6px 0 0 0;
  -webkit-border-radius: 6px 0 0 0;
  border-radius: 6px 0 0 0;
}
.table-new th:last-child {
  -moz-border-radius: 0 6px 0 0;
  -webkit-border-radius: 0 6px 0 0;
  border-radius: 0 6px 0 0;
}
.bottom-container {
  position: relative;
}
.bottom-container .bottom-content {
  position: absolute;
  bottom: 0px;
}
.design-list-expanded .design-styles {
  padding-top: 15px;
  display: inline-block;
}
.design-list-expanded .design-style {
  border-radius: 50%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 2px;
  cursor: pointer;
  background-position: center;
}
@media (max-width: 479px) {
  .design-list-expanded .design-style {
    width: 20px;
    height: 20px;
  }
}
.design-list-expanded .design-name {
  color: #666666;
  font-size: 24px;
  padding-right: 25px;
}
.design-list-expanded .design-expanded {
  border-bottom: 1px solid #CCC;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}
.design-list-expanded .related-images {
  margin-left: 30px;
  padding-bottom: 15px;
  padding-top: 25px;
  text-align: center;
}
.design-list-expanded .related-image-1 {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  max-height: 190px;
  max-width: 190px;
  -webkit-transform: rotate(350deg);
  -moz-transform: rotate(350deg);
  -ms-transform: rotate(350deg);
  -o-transform: rotate(350deg);
  transform: rotate(350deg);
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.design-list-expanded .design-image {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  margin-left: -20px;
  max-height: 300px;
  max-width: 240px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.design-list-expanded .related-image-2 {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  margin-left: -40px;
  margin-top: 20px;
  max-height: 190px;
  max-width: 180px;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.tiles {
  text-align: center;
  margin-bottom: 30px;
}
.tiles div:not(.browse) {
  display: inline-block;
  position: relative;
  width: 19%;
}
.tiles div.browse {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.tiles div.browse span {
  display: none;
}
.tiles a:hover div.browse span {
  display: inline;
  border: 1px solid #abd0b1;
  color: #abd0b1;
  background-color: #fff;
  padding: 5px 8px;
}
.tiles a img {
  padding: 15px;
  border: 1px solid transparent;
}
.tiles a:hover img {
  padding: 15px;
  border: 1px solid #abd0b1;
  background-color: #fff;
}
.tiles .tile {
  width: 100%;
  min-width: 162px;
}
@media (max-width: 1000px) {
  .design-list-expanded .related-image-1 {
    max-width: 30%;
    height: auto;
  }
  .design-list-expanded .design-image {
    max-width: 40%;
    height: auto;
  }
  .design-list-expanded .related-image-2 {
    max-width: 30%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .design-list-expanded .design-expanded {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .design-list-expanded .related-image-1 {
    display: none;
  }
  .design-list-expanded .related-image-2 {
    display: none;
  }
}
.search-bar {
  height: 43px;
}
.search-bar .col1 {
  display: table-cell;
  background-color: #777;
  padding-top: 10px;
  width: 170px;
  border-radius: 5px 0px 0px 5px;
  border: 1px solid #444;
  border-right: none;
}
.search-bar .col2 {
  display: table-cell;
  position: relative;
  background-color: white;
  border: 1px solid #666;
  padding: 5px;
  border-radius: 0 5px 5px 0;
}
.search-bar .col3 {
  display: table-cell;
  width: 295px;
  padding-left: 15px;
}
.search-bar .col3 a {
  color: white;
  font-size: 13px;
  padding: 10px;
  text-decoration: none;
  display: inline-block;
  background-color: #777;
  padding-top: 10px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #444;
}
.search-bar .col2 input.textbox {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  margin: 5px 0;
  padding: 0;
  width: inherit;
  background-color: inherit;
  outline: none;
  padding-left: 10px;
  width: 100%;
}
.search-bar .col2 div.tag {
  text-transform: capitalize;
  padding: 5px;
  background-color: #336699;
  border-radius: 5px;
  color: white;
  display: inline-block;
  margin-left: 1px;
  margin-right: 1px;
}
.search-bar .col2 div.tag0 {
  background-color: #78478a;
}
.search-bar .col2 div.tag1 {
  background-color: #b65070;
}
.search-bar .col2 div.tag2 {
  background-color: #e5574f;
}
.search-bar .col2 div.tag3 {
  background-color: #f08664;
}
.search-bar .col2 div.tag4 {
  background-color: #ffbb69;
}
.search-bar .col2 div.tag5 {
  background-color: #f4de82;
}
.search-bar .col2 div.tag6 {
  background-color: #c3ce7a;
}
.search-bar .col2 div.tag7 {
  background-color: #88bfb1;
}
.search-bar .col2 div.tag8 {
  background-color: #1d676a;
}
.search-bar .col2 div.tag9 {
  background-color: #00525f;
}
.search-bar .col2 div.tagDesigner {
  background-color: #518C9D;
}
.search-bar .col2 i.clearsearch {
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: 10px;
  font-size: 20px;
  color: #CCCCCC;
}
.search-bar .col2 i.clearsearch:hover {
  color: #666666;
}
.search-bar .col2.lang-en {
  display: none;
}
.search-bar .col2.lang-en:lang(en) {
  display: table-cell;
}
.search-bar .col2.lang-de {
  display: none;
}
.search-bar .col2.lang-de:lang(de) {
  display: table-cell;
}
.search-bar .col2.lang-es {
  display: none;
}
.search-bar .col2.lang-es:lang(es) {
  display: table-cell;
}
.search-bar .col2.lang-fr {
  display: none;
}
.search-bar .col2.lang-fr:lang(fr) {
  display: table-cell;
}
.search-bar .col2.lang-it {
  display: none;
}
.search-bar .col2.lang-it:lang(it) {
  display: table-cell;
}
.search-bar .col2.lang-ru {
  display: none;
}
.search-bar .col2.lang-ru:lang(ru) {
  display: table-cell;
}
.search-bar .col2.lang-pt {
  display: none;
}
.search-bar .col2.lang-pt:lang(pt) {
  display: table-cell;
}
.search-bar .col2.lang-nl {
  display: none;
}
.search-bar .col2.lang-nl:lang(nl) {
  display: table-cell;
}
.design-custom .sizebox {
  background-color: #F9F9F9;
  border: 1px solid #CCCCCC;
}
.design-custom .sizebox.active {
  border-color: #2BB573;
  -webkit-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.25);
}
.design-custom .adobe {
  width: 24px;
}
.design-custom {
  width: 100%;
}
.design-custom td {
  width: 25%;
  vertical-align: top;
}
.design-custom .template td {
  text-align: center;
}
.modal-lg {
  width: 883px;
}
@media (max-width: 1000px) {
  .modal-lg {
    width: 100%;
  }
}
.design-list-single {
  margin: 0 auto;
}
.design-list-single a:not(.btn) {
  color: #666666;
}
.design-list-single a:hover {
  text-decoration: underline;
}
.design-list-single h1 {
  font-size: 24px;
  display: flex;
}
.design-list-single h1 > i {
  margin-left: 5px;
}
.design-list-single .description-alt {
  color: #333333;
  font-size: 18px;
  margin: 15px 0;
}
.design-list-single .designer-image {
  width: 75px;
}
.design-list-single .designer-name {
  font-size: 16px;
}
.design-list-single .design-style {
  border-radius: 50%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 2px;
  cursor: pointer;
  background-position: 50%;
}
.design-list-single .related-design {
  max-width: 200px;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  margin-right: 10px;
}
.design-list-single .design {
  background-color: white;
  margin-top: 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  max-width: 800px;
}
.design-list-single .design #divRelated {
  background-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  display: none;
  padding: 10px;
  position: absolute;
  z-index: 1;
}
.design-list-single .design #divRelated div.ds-container {
  font-weight: normal;
  margin-bottom: 0;
}
.design-list-single .design #divRelated div.ds-container div.double-sided {
  height: 24px;
  position: relative;
  right: unset;
  width: 32px;
}
.design-list-single .design #divRelated div.ds-container div.double-sided.v1 {
  height: unset;
  width: 100%;
}
.design-list-single .design .ds-container {
  position: relative;
  height: 50px;
  margin: 10px auto;
  font-weight: bold;
}
.design-list-single .design .ds-container .double-sided {
  position: absolute;
  right: 0;
  top: 0;
}
.design-list-single .design .ds-container .double-sided div {
  background: url("/pub/_images/design/ds-large.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 46px;
  margin: 5px auto;
}
.design-list-single .design .ds-container .double-sided div:hover,
.design-list-single .design .ds-container .double-sided div:active {
  background: url("/pub/_images/design/ds-large-hover.png");
  background-size: 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.design-list-single .design .ds-container .double-sided img {
  margin: 0;
  opacity: 0;
  width: 46px;
}
.design-list-single .design img {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 95%;
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.design-list-single .design img.loading {
  background: url('/user/_images/ajax.gif') no-repeat center center;
  background-color: #F1F1F1;
}
.design-list-single .design img.loading#designImage {
  min-height: 400px;
  min-width: 95%;
}
.design-list-single .design img.loading.related-design {
  min-height: 200px;
  min-width: 95%;
}
.design-list-single .design img.related-design {
  margin-bottom: 0.5em;
}
.favorite-star {
  color: #CFCFCF;
  cursor: pointer;
  font-size: 20px;
}
.favorite-star:hover,
.favorite-star.active {
  color: #4AB37E;
}
.design-search-filter-menu {
  width: 425px;
}
@media (max-width: 767px) {
  .design-search-filter-menu {
    width: 280px;
  }
}
.design-search-filter-menu .color {
  border-radius: 50%;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 3px;
  border: 1px solid #CCC;
  cursor: pointer;
  background-position: center;
}
.design-search-filter-menu .color.active {
  border: 1px solid #999;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.design-search-filter-menu .sizebox {
  background-color: #F9F9F9;
  border: 1px solid #cccccc;
  border-bottom: 2px solid #cccccc;
  margin-right: 10px;
  display: inline-block;
  cursor: pointer;
}
.design-search-filter-menu .sizebox.active {
  border-color: #999;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.design-search-filter-menu .designer {
  width: 165px;
  display: inline-block;
  margin-right: 25px;
  cursor: pointer;
  margin-bottom: 2px;
}
.design-search-filter-menu .designer.active {
  font-weight: bold;
}
.design-search-top-section {
  background-color: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
  font-size: 14px;
}
.design-menu a {
  color: #666666;
}
.top-section-suggestion {
  background-color: #515151;
  padding: 10px 50px 10px 50px;
}
.top-section-suggestion div.tag {
  opacity: 1;
  display: inline-block;
  border: 1px solid #444;
  box-shadow: 0 1px 1px #515151;
  text-shadow: 0 1px 1px #696969;
  margin-bottom: 5px;
  width: 200px;
  height: 50px;
  text-transform: uppercase;
  background-color: #75677F;
  margin-right: 10px;
  border-radius: 7px;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  vertical-align: top;
  font-weight: bold;
  padding: 0 10px;
  white-space: normal;
}
.top-section-suggestion div.tag span {
  display: table-cell;
  vertical-align: middle;
  height: 50px;
  width: 198px;
}
.top-section-suggestion div.tag:hover {
  opacity: 0.85;
}
.top-section-suggestion div.tag0 {
  background-color: #75677F;
}
.top-section-suggestion div.tag1 {
  background-color: #914184;
}
.top-section-suggestion div.tag2 {
  background-color: #9E6693;
}
.top-section-suggestion div.tag3 {
  background-color: #70769F;
}
.top-section-suggestion div.tag4 {
  background-color: #908E9F;
}
.top-section-suggestion div.tag5 {
  background-color: #C485A0;
}
.top-section-suggestion .owl-theme .owl-controls {
  margin: 0;
}
.top-section-suggestion .owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  font-size: 72px;
  background: none;
  opacity: 0.7;
  margin-left: -21px;
  margin-right: -11px;
  margin-top: -33px;
}
.top-section-suggestion .owl-theme .owl-controls .owl-buttons .owl-prev {
  left: -20px;
  top: 0;
}
.top-section-suggestion .owl-theme .owl-controls .owl-buttons .owl-prev.disabled {
  display: none;
}
.top-section-suggestion .owl-theme .owl-controls .owl-buttons .owl-next {
  right: -20px;
  top: 0;
}
.top-section-suggestion .owl-theme .owl-controls .owl-buttons .owl-next.disabled {
  display: none;
}
.top-section-language-message {
  padding: 10px 50px 10px 50px;
  font-size: 14px;
  background-color: #F5FCFF;
  border: 1px solid #C0E1F2;
}
.design-search.v2 .btn {
  border-radius: 5px;
  border: none;
  box-shadow: none;
}
.design-search.v2 .form-control {
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  margin: 10px;
  min-height: 35px;
  height: unset;
}
.design-search.v2 .form-control:focus {
  border-color: #4AB37E;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.design-search.v2 .preview-animation {
  font-size: 125%;
}
.design-search.v2 h1 {
  font-family: brandon-grotesque;
  font-size: 36px;
  color: #333333;
}
@media (min-width: 992px) {
  .design-search.v2 .container {
    max-width: 1230px;
  }
}
.design-search.v2 ul.autocomplete {
  border-radius: 0 0 4px 4px;
  border-color: #CCCCCC;
  box-shadow: none;
  margin: 5px 0 0 -5px;
  padding: 5px 0;
  background: white;
}
.design-search.v2 ul.autocomplete li:first-child {
  border-radius: 0;
}
.design-search.v2 ul.autocomplete li.active,
.design-search.v2 ul.autocomplete li:hover {
  background: white;
  color: #4AB37E;
}
.design-search.v2 .main-col .design-list-single {
  margin-top: 20px;
}
.design-search.v2 .design-award {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.design-search.v2 .design-list-single h1 {
  font-size: 24px;
}
.design-search.v2 .design-list-single .favorite-star {
  font-size: 24px;
}
.design-search.v2 .design-list-single a.btnV2 {
  color: white;
}
.design-search.v2 .design-list-single a.btnV2:hover {
  text-decoration: none;
}
.design-search.v2 .design-list-single .design-styles {
  margin-top: 10px;
}
.design-search.v2 .design-list-single .design-styles .design-style {
  border: 1px solid #999999;
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 4px transparent;
}
.design-search.v2 .design-list-single .design-styles .design-style.active {
  margin: 0 2px;
  padding: 1px;
  box-shadow: 0 0 0 4px #cfcfcf;
}
.design-search.v2 .design-list-single .btn {
  font-family: brandon-grotesque;
  padding: 16px;
  font-size: 20px;
}
.design-search.v2 .design-list-single .btn i {
  vertical-align: bottom;
  margin-left: 10px;
}
.design-search.v2 .design-list-single #btnCustomize {
  font-family: brandon-grotesque;
  margin: 20px 0;
  color: white;
}
.design-search.v2 .design-list-single #btnCustomize:hover {
  text-decoration: none;
}
.design-search.v2 .design-list-single .btn-default {
  color: #4AB37E;
  text-align: left;
  padding-left: 0;
}
.design-search.v2 .design-list-single .btn-default:hover,
.design-search.v2 .design-list-single .btn-default:active,
.design-search.v2 .design-list-single .btn-default:focus {
  color: #216E47;
  background-color: white;
  text-decoration: none;
}
.design-search.v2 .design-list-single .desc {
  margin: 10px 0;
  color: #333333;
}
.design-search.v2 .design-list-single .desc small {
  display: block;
  margin-top: 10px;
  color: #999999;
  font-style: italic;
}
.design-search.v2 .design-list-single .desc small > span.customize {
  align-items: flex-start;
  color: #333333;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-style: normal;
  margin-top: 20px;
}
.design-search.v2 .design-list-single .desc small > span.customize > img {
  margin-right: 10px;
}
.design-search.v2 .design-list-single .desc small > span.customize > span > span:not(:first-child) {
  margin-top: 20px;
}
.design-search.v2 .design-list-single .design {
  border: none;
  border-radius: 6px;
  margin-top: -20px;
  padding: 15px;
}
.design-search.v2 .design-list-single .design img {
  margin: 0 0 20px;
}
.design-search.v2 .design-list-single .ds-container {
  height: unset;
  text-align: center;
  cursor: pointer;
  font-family: brandon-grotesque;
  font-size: 18px;
  margin: 0 auto 20px;
}
.design-search.v2 .design-list-single .ds-container:hover {
  color: #4AB37E;
}
.design-search.v2 .design-list-single .ds-container:hover .double-sided {
  background-image: url("/pub/_images/design/ds-large-hover2.png");
}
.design-search.v2 .design-list-single .ds-container span {
  vertical-align: top;
}
.design-search.v2 .design-list-single .ds-container .double-sided {
  display: inline-block;
  background-image: url("/pub/_images/design/ds-large2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  right: unset;
}
.design-search.v2 .design-list-single .ds-container .double-sided img {
  opacity: 0;
  width: unset;
  max-width: unset;
  vertical-align: unset;
}
.design-search.v2 .design-list-single .ds-container .double-sided:hover,
.design-search.v2 .design-list-single .ds-container .double-sided:active {
  background-image: url("/pub/_images/design/ds-large-hover2.png");
}
.design-search.v2 .design-list-single .related-designs {
  font-family: brandon-grotesque;
  text-align: center;
  border-top: 1px solid #CCCCCC;
  font-size: 16px;
}
.design-search.v2 .design-list-single .related-designs h2 {
  color: #CCCCCC;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0 20px;
}
.design-search.v2 .design-list-single .related-designs .related-designs-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.design-search.v2 .design-list-single .related-designs .related-container {
  display: inline-block;
  max-width: 340px;
  cursor: pointer;
}
.design-search.v2 .design-list-single .related-designs .related-container div {
  font-weight: bold;
  color: #333333;
}
.design-search.v2 .design-list-single .related-designs .related-container div div {
  padding: 20px;
}
.design-search.v2 .design-list-single .related-designs .related-container div:hover {
  text-decoration: none;
  color: #4AB37E;
}
.design-search.v2 .design-list-single #designHint,
.design-search.v2 .design-list-single .hint {
  font-size: 12px;
  color: #333;
  background: #e9f7f1;
  border-radius: 6px;
  padding: 10px;
  margin: 24px 0 32px;
}
.design-search.v2 .design-list-single #designHint .heading,
.design-search.v2 .design-list-single .hint .heading {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.design-search.v2 .design-list-single #designHint .heading .fa-stack,
.design-search.v2 .design-list-single .hint .heading .fa-stack {
  color: #4AB37E;
  margin-right: 5px;
}
.design-search.v2 .design-list-other {
  font-family: brandon-grotesque;
  text-align: center;
  border-top: 1px solid #CCCCCC;
  font-size: 16px;
  width: unset;
}
.design-search.v2 .design-list-other h2 {
  color: #CCCCCC;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0 20px;
}
.design-search.v2 .design-list-other .other-container {
  display: inline-block;
  padding: 20px;
  cursor: pointer;
}
.design-search.v2 .design-list-other .other-container div {
  padding: 20px;
}
.design-search.v2 .design-list-other .other-container a {
  font-weight: bold;
  color: #333333;
}
.design-search.v2 .design-list-other .other-container a:hover {
  text-decoration: none;
  color: #4AB37E;
}
.design-search.v2 .design-list #tiles {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px auto;
  max-width: 1440px;
  text-align: center;
}
.design-search.v2 .design-list div.pagination {
  text-align: center;
  padding-bottom: 30px;
  font-size: 14px;
  font-family: 'Open Sans';
  width: 100%;
}
.design-search.v2 .design-list div.pagination > a > label {
  display: none;
}
.design-search.v2 .design-list div.pagination div.page {
  display: inline-block;
  padding-top: 5px;
  margin-top: 5px;
  border-radius: 5px;
  width: 34px;
  height: 33px;
  border: 1px solid #F1F1F1;
  color: #000000;
  cursor: pointer;
}
.design-search.v2 .design-list div.pagination div.page:hover {
  border-color: #4AB37E;
  color: #4AB37E;
}
.design-search.v2 .design-list div.pagination div.disable,
.design-search.v2 .design-list div.pagination div.disable:hover {
  border-color: #F1F1F1;
  color: #F1F1F1;
}
.design-search.v2 .design-list div.pagination div.page.active {
  background-color: #4AB37E;
  border-color: #4AB37E;
  color: #FFFFFF !important;
}
.design-search.v2 .design-list div.pagination-loading {
  text-align: center;
  padding-bottom: 30px;
}
.design-search.v2 .design-list div.pagination-loading > i {
  color: #229B60;
  font-size: 36px;
}
.design-search.v2 .design-list div.pagination-loading > span {
  color: #666666;
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
.design-search.v2 .design-list div.design {
  display: inline-block;
  margin: 15px 10px 40px 10px;
  width: 275px;
}
.design-search.v2 .design-list div.design div.ds-container {
  cursor: pointer;
  font-family: brandon-grotesque;
  font-size: 16px;
  margin: 0 auto 5px auto;
  position: relative;
  text-align: center;
}
.design-search.v2 .design-list div.design div.ds-container:hover,
.design-search.v2 .design-list div.design div.ds-container:active {
  color: #4AB37E;
}
.design-search.v2 .design-list div.design div.ds-container:hover > .double-sided,
.design-search.v2 .design-list div.design div.ds-container:active > .double-sided {
  background-image: url("/pub/_images/design/ds-small-hover2.png");
}
.design-search.v2 .design-list div.design div.ds-container .double-sided {
  background: url("/pub/_images/design/ds-small2.png");
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 5px;
  height: 25px;
  width: 35px;
}
.design-search.v2 .design-list div.design div.ds-container > span {
  position: relative;
  top: -6px;
}
.design-search.v2 .design-list div.design div.hover-container:hover .design-info > .top-line > .hover-actions > button,
.design-search.v2 .design-list div.design div.hover-container:hover .design-info > .top-line > .hover-actions > span {
  display: block;
}
.design-search.v2 .design-list div.design div.hover-container > div {
  margin: 0 auto;
  position: relative;
}
.design-search.v2 .design-list div.design div.hover-container > div img.design-award {
  bottom: -20px;
  position: absolute;
  right: 4px;
}
.design-search.v2 .design-list div.design div.hover-container > div img.lazy.loading {
  background: url('/user/_images/ajax.gif') no-repeat center center;
  background-color: #F1F1F1;
}
.design-search.v2 .design-list div.design div.hover-container .design-designer {
  margin-top: -3px;
  font-size: 11px;
  display: block;
  color: #666666;
}
.design-search.v2 .design-list div.design div.hover-container .design-image {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
}
.design-search.v2 .design-list div.design div.hover-container .design-info {
  display: block;
  margin: 8px 0 0 0;
  min-height: 115px;
  position: relative;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 50px 5px 50px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .hover-actions {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  line-height: 20px;
  position: absolute;
  right: 0px;
  top: 0;
  transform: translateX(100%);
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .hover-actions > button {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  color: #666666;
  cursor: pointer;
  display: none;
  font-size: 20px;
  margin-left: 5px;
  padding: 0;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .hover-actions > span {
  cursor: pointer;
  display: none;
  margin-left: 5px;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .hover-actions > span.active {
  display: block;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .design-hint {
  flex: 0 0 auto;
  margin-left: 4px;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .design-hint > i.fa-circle {
  color: #4AB37E;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .design-name {
  color: #666666;
  display: inline-block;
  flex: 0 1 auto;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > img.design-national-park {
  flex: 0 0 auto;
  height: 16px;
  margin-left: 4px;
  width: 16px;
}
.design-search.v2 .design-list div.design div.hover-container .design-info > .top-line > .design-trash {
  display: inline-block;
  flex: 0 0 auto;
  margin-left: 4px;
}
.design-search.v2 .design-list div.design div.hover-container .pick-design2 {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  top: 6px;
  right: 6px;
}
.design-search.v2 .design-list div.design div.hover-container .pick-design2 .btn {
  border-radius: 0;
  font-size: 14px;
}
.design-search.v2 .design-list div.design div.hover-container .pick-design2 .btn:hover {
  background-color: #269D64;
  color: #FFFFFF;
}
.design-search.v2 .design-list div.design .design-styles {
  padding-top: 15px;
}
.design-search.v2 .design-list div.design .design-styles .design-style {
  border-radius: 50%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 2px;
  cursor: pointer;
  background-position: center;
}
@media (max-width: 479px) {
  .design-search.v2 .design-list div.design .design-styles .design-style {
    width: 20px;
    height: 20px;
  }
}
.design-search.v2 .design-list .tags {
  color: white;
  font-size: 0.875em;
  position: absolute;
  right: 0;
  text-align: center;
  top: 15%;
}
.design-search.v2 .design-list .tags .active-design {
  background: #609BD3;
  border-bottom: 3px solid #4F84B6;
  clear: both;
  display: block;
  float: right;
  margin-bottom: 5px;
  padding: 8px;
  width: 75px;
}
.design-search.v2 .design-list .tags .previous-design {
  background: #808186;
  border-bottom: 3px solid #49494a;
  clear: both;
  display: block;
  float: right;
  margin-bottom: 5px;
  padding: 8px;
}
@media (max-width: 1270px) {
  .design-search.v2 .design-list .design-list .design {
    width: 48%;
  }
}
@media (max-width: 690px) {
  .design-search.v2 .design-list .design-list .design {
    width: 300px;
  }
}
@media (max-width: 479px) {
  .design-search.v2 .design-list .design-list .design .pick-design2 {
    display: block;
  }
}
.design-search.v2 .collection-menu {
  font-family: Helvetica Neue, Arial, sans-serif;
  border-radius: 0 0 4px 4px;
  color: #666666;
  font-size: 12px;
  line-height: 16pt;
  padding: 20px 0 0;
  left: -2px;
  overflow: auto;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
.design-search.v2 .collection-menu .design-menu {
  padding-bottom: 20px;
}
.design-search.v2 .collection-menu .featured strong {
  font-size: 14px;
}
.design-search.v2 .collection-menu strong {
  color: #333333;
  font-size: 15px;
}
.design-search.v2 .collection-menu a {
  color: #666666;
}
.design-search.v2 .collection-menu a:hover,
.design-search.v2 .collection-menu a strong:hover {
  text-decoration: none;
  color: #4AB37E;
}
.design-search.v2 .collection-menu .header {
  font-family: brandon-grotesque;
  margin: 15px 0 5px;
}
.design-search.v2 .collection-menu .panel-body {
  padding: 0 15px;
}
.design-search.v2 .collection-menu .business {
  background: #f9f9f9;
  border-radius: 4px;
  margin-top: -2em;
  padding-top: 2em;
  padding-left: 3em;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .design-search.v2 .collection-menu .business {
    height: unset;
    padding-bottom: 30px;
    padding-left: 0;
    margin-top: 0;
    padding-top: 0;
  }
}
@media (max-height: 700px) and (min-height: 300px) {
  .design-search.v2 .collection-menu {
    max-height: 250px;
  }
}
@media (max-height: 700px) and (min-height: 400px) {
  .design-search.v2 .collection-menu {
    max-height: 350px;
  }
}
@media (max-height: 700px) and (min-height: 500px) {
  .design-search.v2 .collection-menu {
    max-height: 450px;
  }
}
@media (max-width: 767px) and (min-height: 700px) {
  .design-search.v2 .collection-menu {
    max-height: 650px;
  }
}
.design-search.v2 .design-search-top-section {
  padding-bottom: 0;
}
.design-search.v2 .design-search-top-section .search-bar {
  font-family: brandon-grotesque;
  font-size: 16px;
}
.design-search.v2 .design-search-top-section .search-bar .col1 {
  background-color: #4AB37E;
  border-color: #4AB37E;
}
@media (max-width: 767px) {
  .design-search.v2 .design-search-top-section .search-bar .col1 {
    display: block;
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin: 10px 0;
  }
}
.design-search.v2 .design-search-top-section .search-bar .col2 {
  border-color: #CCCCCC;
}
@media (min-width: 767px) {
  .design-search.v2 .design-search-top-section .search-bar .col2 {
    border-left: none;
  }
}
.design-search.v2 .design-search-top-section .search-bar .col2 i {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
}
.design-search.v2 .design-search-top-section .search-bar .col2:focus-within {
  border-color: #4AB37E;
}
.design-search.v2 .design-search-top-section .search-bar .col3 {
  align-self: center;
  text-align: right;
  width: 190px;
}
@media (max-width: 767px) {
  .design-search.v2 .design-search-top-section .search-bar .col3 {
    display: block;
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.design-search.v2 .design-search-top-section .search-bar .col3 a {
  padding-right: 0;
  border: none;
  background: none;
  color: #666666;
  font-size: 16px;
}
.design-search.v2 .design-search-top-section .search-bar .col3 a.green {
  color: #4AB37E;
}
.design-search.v2 .design-search-top-section .search-bar .col3 a.green:hover {
  color: #216E47;
}
.design-search.v2 .design-search-top-section .search-bar .col3 a:hover {
  cursor: pointer;
  color: #4AB37E;
  text-decoration: none;
}
.design-search.v2 .design-search-top-section .search-bar .col4.my-photo {
  align-self: center;
  flex: 0 0 auto;
  margin-left: 50px;
}
.design-search.v2 .design-search-top-section .search-bar .col4.my-photo > div {
  align-items: center;
  display: inline-flex;
  flex-wrap: nowrap;
  padding: 3px 5px;
}
.design-search.v2 .design-search-top-section .search-bar .col4.my-photo > div > a {
  font-size: 14px;
}
.design-search.v2 .design-search-top-section .search-bar .col4.my-photo > div > a.remove {
  border-left: 0;
  border-radius: 0 5px 5px 0;
}
.design-search.v2 .design-search-top-section .search-bar .col4.my-photo > div > a.upload {
  border-radius: 5px 0 0 5px;
}
.design-search.v2 .design-search-top-section .search-bar .col4.my-photo > div > img {
  border: 1px solid #666666;
  box-sizing: border-box;
  display: inline-block;
  height: auto;
  margin: 0 10px;
  max-height: 46px;
  max-width: 60px;
  overflow: hidden;
  width: auto;
}
.design-search.v2 .design-search-top-section .search-bar .col4.my-photo > div > span {
  color: #333333;
  flex: 0 0 auto;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.design-search.v2 .design-search-top-section.navbar-fixed-top {
  padding: 10px 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.design-search.v2 .filter-dropdown {
  padding-top: 26px;
}
@media (max-width: 767px) {
  .design-search.v2 .filter-dropdown {
    padding-top: 10px;
  }
}
.design-search.v2 .filter-dropdown .btn {
  text-align: left;
  padding: 10px 0;
  border-radius: 0;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
.design-search.v2 .filter-dropdown .btn:hover i,
.design-search.v2 .filter-dropdown .btn:focus i {
  color: #4AB37E;
}
.design-search.v2 #sidebar {
  position: fixed;
  overflow-y: hidden;
  margin-top: 20px;
}
.design-search.v2 #sidebar:hover {
  overflow-y: auto;
}
.design-search.v2 .sidebar__inner {
  padding-bottom: 100px;
}
.design-search.v2 .design-search-filter-menu {
  width: 260px;
  font-size: 14px;
}
.design-search.v2 .design-search-filter-menu .header {
  font-family: brandon-grotesque;
  font-size: 16px;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  color: #333333;
  padding: 10px;
}
@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  .design-search.v2 .design-search-filter-menu .header {
    padding-right: 20px;
  }
}
.design-search.v2 .design-search-filter-menu a {
  color: #4AB37E;
}
.design-search.v2 .design-search-filter-menu a:hover {
  cursor: pointer;
  color: #216E47;
  text-decoration: none;
}
.design-search.v2 .design-search-filter-menu .section .filter-header {
  font-family: brandon-grotesque;
  font-size: 16px;
  padding: 10px 0;
  cursor: pointer;
  color: #333333;
  text-transform: uppercase;
}
.design-search.v2 .design-search-filter-menu .section .filter-header em {
  color: #999999;
}
.design-search.v2 .design-search-filter-menu .section .filter-header i {
  margin-left: 10px;
}
.design-search.v2 .design-search-filter-menu .section .color {
  margin: 4px;
}
.design-search.v2 .design-search-filter-menu .section .color:hover {
  opacity: 0.5;
}
.design-search.v2 .design-search-filter-menu .section .color.active {
  width: 18px;
  height: 18px;
  margin: 0 2px;
  padding: 1px;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #4AB37E;
}
.design-search.v2 .design-search-filter-menu .section .sizebox {
  border-bottom: 1px solid #CCCCCC;
}
.design-search.v2 .design-search-filter-menu .section .sizebox.portrait {
  width: 41px;
  height: 60px;
}
.design-search.v2 .design-search-filter-menu .section .sizebox.landscapel {
  width: 60px;
  height: 41px;
}
.design-search.v2 .design-search-filter-menu .section .sizebox.square {
  width: 52px;
  height: 52px;
}
.design-search.v2 .design-search-filter-menu .section .sizebox.landscapes {
  width: 40px;
  height: 25px;
}
.design-search.v2 .design-search-filter-menu .section .sizebox:hover {
  background-color: #e0e0e0;
}
.design-search.v2 .design-search-filter-menu .section .sizebox.active {
  border: 1px solid #4AB37E;
  box-shadow: none;
}
.design-search.v2 .design-search-filter-menu .section ul {
  list-style: none;
  margin: 0;
  padding: 5px;
}
.design-search.v2 .design-search-filter-menu .section ul li {
  color: #333333;
  padding: 2px;
}
.design-search.v2 .design-search-filter-menu .section ul li ul {
  padding: 0 10px;
  padding-top: 10px;
}
.design-search.v2 .design-search-filter-menu .section ul li ul li:hover {
  cursor: pointer;
}
.design-search.v2 .design-search-filter-menu .section ul li ul li:hover a {
  color: #4AB37E;
}
.design-search.v2 .design-search-filter-menu .section ul li a {
  padding-left: 12px;
  color: #333333;
}
.design-search.v2 .design-search-filter-menu .section ul li a.active {
  padding-left: 10px;
  border-left: 2px solid #4AB37E;
}
.design-search.v2 .design-search-filter-menu .section ul li label.gv-checkbox a {
  padding-left: 0;
}
.design-search.v2 .design-search-filter-menu .section ul li:hover {
  cursor: pointer;
  color: #4AB37E;
}
.design-search.v2 .design-search-filter-menu .section ul li:hover a {
  color: #4AB37E;
}
.design-search.v2 .design-search-filter-menu .section ul li:hover label.gv-checkbox a {
  color: #333333;
}
.design-search.v2 .design-search-filter-menu .section ul li .show-more {
  padding-left: 24px;
  color: #4AB37E;
  text-transform: initial;
  font-size: 14px;
}
.design-search.v2 .page-design-search .designs {
  position: relative;
}
.design-search.v2 .page-design-search .collection-menu {
  width: unset;
  overflow-x: hidden;
}
.design-search.v2 .page-design-search .feature-collection {
  margin-bottom: 60px;
  padding: 0;
  background: none;
  border-bottom: none;
  font-size: 12pt;
}
.design-search.v2 .page-design-search .feature-collection h1 {
  max-width: 70%;
  font-size: 24pt;
  text-transform: capitalize;
  margin-bottom: 13px;
}
.design-search.v2 .page-design-search .feature-collection a {
  color: #4AB37E;
}
.design-search.v2 .page-design-search .feature-collection a.feature-link {
  display: unset;
  float: unset;
  margin-top: unset;
  margin-left: 0.3em;
}
.design-search.v2 .page-design-search .feature-collection a:hover {
  cursor: pointer;
  color: #216E47;
  text-decoration: none;
}
.design-search.v2 .page-design-search .feature-designer {
  margin-bottom: 60px;
  padding: 0;
  background: none;
  border-bottom: none;
  font-size: 12pt;
}
.design-search.v2 .page-design-search .feature-designer h1 {
  max-width: 70%;
  font-size: 24pt;
  text-transform: capitalize;
  margin-bottom: 13px;
}
.design-search.v2 .page-design-search .feature-designer a {
  color: #4AB37E;
}
.design-search.v2 .page-design-search .feature-designer a.feature-link {
  display: unset;
  float: unset;
  margin-top: unset;
  margin-left: 0.3em;
}
.design-search.v2 .page-design-search .feature-designer a:hover {
  cursor: pointer;
  color: #216E47;
  text-decoration: none;
}
.design-search.v2 .page-design-search .feature-designer img {
  border: 2px solid #CCCCCC;
}
.design-search.v2 .page-design-search .feature-designer p {
  color: #666666;
}
.design-search.v2 #tiles {
  margin: 0 auto;
}
.design-search.v2 .tiles {
  text-align: left;
}
.design-search.v2 .tiles > ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.design-search.v2 .tiles > ol > li {
  display: flex;
  flex: 0 0 auto;
  margin: 10px;
  max-width: 200px;
  min-width: 180px;
  text-align: center;
  width: calc(20% - 20px);
}
.design-search.v2 .tiles > ol > li > a {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.0802);
  cursor: pointer;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  padding: 10px;
  text-decoration: none;
  width: 100%;
}
.design-search.v2 .tiles > ol > li > a:hover {
  border: 1px solid #4AB37E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.0802);
}
.design-search.v2 .tiles > ol > li > a > picture {
  align-items: center;
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  height: 125px;
}
.design-search.v2 .tiles > ol > li > a > picture > img {
  border: 0;
  padding: 0;
}
.design-search.v2 .tiles > ol > li > a > span {
  display: block;
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 15px;
}
.design-search.v2 .tiles > ol > li > a > strong {
  color: #333333;
  flex: 1 0 auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.design-search.v2 #divDesignSuggest {
  font-family: brandon-grotesque;
  background-color: #f9f9f9;
  padding: 30px;
  margin-top: 45px;
  margin-bottom: 45px;
}
.design-search.v2 #divDesignSuggest h2 {
  font-family: brandon-grotesque;
  font-size: 36px;
  color: #333333;
}
.design-search.v2 #divDesignSuggest .design-suggest {
  width: 20%;
  min-width: 300px;
  margin: 10px auto 20px auto;
}
.design-search.v2 .signup-form .form-control {
  margin: 0;
}
.design-search.v2 .modal-content {
  border-radius: 6px;
}
.design-search.v2 #modalFilters .modal-body {
  overflow: auto;
}
@media (min-height: 500px) {
  .design-search.v2 #modalFilters .modal-body {
    max-height: 400px;
  }
}
@media (min-height: 700px) {
  .design-search.v2 #modalFilters .modal-body {
    max-height: 600px;
  }
}
@media (min-height: 900px) {
  .design-search.v2 #modalFilters .modal-body {
    max-height: 800px;
  }
}
@media (min-height: 1200px) {
  .design-search.v2 #modalFilters .modal-body {
    max-height: 1100px;
  }
}
@media (max-width: 1023px) {
  .design-search.v2 .topArrows {
    display: block;
    font-size: 24px;
  }
  .design-search.v2 #searchbar {
    padding-bottom: 0;
  }
}
@media (min-width: 1023px) {
  .design-search.v2 .topArrows {
    display: none;
  }
}
@media (max-width: 800px) {
  .design-search.v2 .gv-search-filters.horizontal {
    display: none;
  }
}
@media (max-width: 767px) {
  #modalMyPhoto .modal-title {
    font-size: 24px !important;
  }
  #modalMyPhoto .dropzone {
    border: none;
  }
}
div.container.filters > div {
  align-items: flex-end;
  border-bottom: 1px solid #F1F1F1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 15px auto 10px auto;
  padding: 12px 0 27px 0;
}
div.container.filters > div div.designs-found {
  color: #999999;
  flex: 0 0 auto;
  font-style: italic;
  font-family: brandon-grotesque;
  font-size: 20px;
  margin-left: 15px;
}
div.container.filters div.gv-search-filters.horizontal {
  align-items: center;
  box-sizing: content-box;
  display: flex;
  flex: 1 0 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 60px;
}
div.container.filters div.gv-search-filters.horizontal > div {
  flex: 0 0 auto;
  position: relative;
}
div.container.filters div.gv-search-filters.horizontal > div.has-filter > a {
  display: block;
}
div.container.filters div.gv-search-filters.horizontal > div.has-filter > button > img {
  display: none;
}
div.container.filters div.gv-search-filters.horizontal > div.has-filter > button > var {
  display: inline-flex;
}
div.container.filters div.gv-search-filters.horizontal > div > a {
  display: none;
  margin-top: 5px;
  position: absolute;
  white-space: nowrap;
}
div.container.filters div.gv-search-filters.horizontal > div > button {
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #CFCFCF;
  border-radius: 6px;
  color: #9F9F9F;
  cursor: pointer;
  display: flex;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  font-size: 16px;
  height: 59px;
  justify-content: space-around;
  line-height: 23px;
  max-width: 125px;
  min-width: 100px;
  padding: 12px 24px;
  transition-duration: 0.25s;
  transition-property: background-color, border-color;
  transition-timing-function: ease;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  width: 100%;
}
div.container.filters div.gv-search-filters.horizontal > div > button:active,
div.container.filters div.gv-search-filters.horizontal > div > button:focus,
div.container.filters div.gv-search-filters.horizontal > div > button:hover {
  background-color: #F7F7F7;
  border-color: #666666;
  outline: none;
}
div.container.filters div.gv-search-filters.horizontal > div > button.active {
  background-color: #F7F7F7;
  border-color: #666666;
}
div.container.filters div.gv-search-filters.horizontal > div > button > span {
  margin-left: 10px;
}
div.container.filters div.gv-search-filters.horizontal > div > button > var {
  align-items: center;
  background-color: #4AB37E;
  border-radius: 12px;
  color: #FFFFFF;
  display: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  height: 24px;
  justify-content: center;
  min-width: 24px;
}
div.container.filters div.gv-search-filters.horizontal > ul {
  align-items: flex-end;
  display: flex;
  flex: 1 1 auto;
  height: 59px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.container.filters div.gv-search-filters.horizontal > ul > li {
  flex: 1 1 auto;
  margin-left: 15px;
  position: relative;
  max-width: 160px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li.actions {
  flex: 0 0 auto;
}
div.container.filters div.gv-search-filters.horizontal > ul > li.actions > button {
  display: flex;
  font-size: 17px;
  height: 37px;
  padding: 5px 10px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li.open > label > span::after {
  margin-top: -2px;
  transform: rotate(135deg);
}
div.container.filters div.gv-search-filters.horizontal > ul > li.open > ul {
  display: block;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > label {
  display: block;
  margin-bottom: 0;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > label > span {
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  height: 37px;
  overflow: hidden;
  padding: 6px 30px 6px 10px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > label > span::after {
  border-bottom: 2px solid #CFCFCF;
  border-left: 2px solid #CFCFCF;
  content: " ";
  display: block;
  height: 7px;
  margin-top: -6px;
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  transform: rotate(-45deg);
}
div.container.filters div.gv-search-filters.horizontal > ul > li > label > span > span.colors-display {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-right: 10px;
  min-height: 23px;
  width: 100%;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > label > span > span.colors-display > span {
  flex: 0 1 auto;
  width: 10px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > label > strong {
  display: block;
  color: #333333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.571429px;
  line-height: 17px;
  margin-bottom: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > label > strong > var {
  color: #9F9F9F;
  font-style: normal;
  font-weight: normal;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.0802);
  box-sizing: border-box;
  display: none;
  left: 0;
  list-style-type: none;
  margin: -1px 0 0 0;
  min-width: 100%;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: calc(100% + 4px);
  z-index: 2;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.anchor-right {
  left: unset;
  right: 0;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li {
  background-color: #FFFFFF;
  display: flex;
  transition: background-color ease 0.25s;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li.all > label {
  padding: 0 !important;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li.all > label > span {
  padding: 8px 10px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li:hover {
  background-color: #E9F7F1;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li.actions:hover {
  background-color: #FFFFFF;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li > label {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  margin: 0 !important;
  padding: 8px 10px !important;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li > label > em {
  flex: 0 0 auto;
  margin-right: 10px;
  position: relative;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li > label > em::after {
  left: 5px;
  top: 2px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.checkbox > li > label > span {
  font-size: 16px;
  padding: 0;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.color {
  max-height: 500px;
  overflow-y: auto;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.color > li > label > input[type=checkbox] {
  display: none;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.color > li > label > input[type=checkbox]:checked + span {
  background-color: #4AB37E;
  color: #FFFFFF;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.color > li > label > span {
  align-items: center;
  display: flex;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.color > li > label > span > span {
  display: block;
  margin-left: 10px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.scroll {
  max-height: 400px;
  overflow-y: auto;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.text > li > ol {
  list-style-type: none;
  font-family: "brandon-grotesque", sans-serif;
  margin: 0;
  padding-left: 0;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.text > li > ol > li {
  background-color: #FFFFFF;
  display: flex;
  transition: background-color ease 0.25s;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.text > li > ol > li:hover {
  background-color: #E9F7F1;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.text > li > ol > li > label {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  font-family: "brandon-grotesque", sans-serif;
  margin: 0 !important;
  padding: 6px 8px !important;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.text > li > ol > li > label > em {
  position: relative;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.text > li > ol > li > label > em::after {
  left: 5px;
  top: 2px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul.text > li > ol > li > label > span {
  font-size: 14px;
  margin-left: 10px;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li.actions > a {
  flex: 1 1 auto;
  padding: 8px 10px;
  text-align: center;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label {
  cursor: pointer;
  display: flex;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  margin-bottom: 0;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label:hover > span {
  background-color: #E9F7F1;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=checkbox],
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=radio] {
  display: none;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=checkbox]:checked + span,
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=radio]:checked + span,
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=checkbox].checked + span,
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=radio].checked + span {
  background-color: #4AB37E;
  color: #FFFFFF;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=checkbox]:checked + span > small,
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=radio]:checked + span > small,
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=checkbox].checked + span > small,
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > input[type=radio].checked + span > small {
  border-color: #ABD0B1;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > span {
  align-items: center;
  background-color: #FFFFFF;
  color: #333333;
  display: flex;
  padding: 8px 10px;
  transition: background-color ease 0.25s;
  white-space: nowrap;
  width: 100%;
}
div.container.filters div.gv-search-filters.horizontal > ul > li > ul > li > label > span > small {
  background-color: #269D64;
  border: 1px solid #269D64;
  border-radius: 3px;
  color: #FFFFFF;
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1.4;
  margin-left: 10px;
  padding: 2px 5px;
  transition: border-color ease 0.25s;
}
div.container.filters div.gv-search-filters.horizontal > ul > li em.color {
  background-position: center;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.0802);
  display: block;
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}
.purchase .title {
  color: graytext;
  text-align: center;
}
.purchase .total .heading {
  margin-bottom: 5px;
}
.purchase .total .heading img {
  width: 75px;
}
.purchase .total .price {
  color: #3e3e3e;
}
.purchase .total .price-detail {
  color: #3e3e3e;
  font-size: 13px;
  margin-bottom: 5px;
}
.purchase .pricing-container {
  background-color: #F0F0F0;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.purchase .member-features {
  color: #999999;
  margin-bottom: 20px;
}
.purchase .member-feature {
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 13px;
}
.purchase .member-feature .fa {
  font-size: 16px;
  min-width: 30px;
}
.purchase .packages .guestcount {
  background-color: #F1F1F1;
  width: 125px;
  padding: 0;
}
.purchase .packages input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.purchase .packages .guestcount:focus {
  background-color: #FFF;
}
.purchase .packages .guestcountlabel {
  font-size: 16px;
  color: #3e3e3e;
}
.purchase .packages .loading {
  padding-top: 69px;
  padding-bottom: 69px;
  color: #999999;
  background-color: #fff;
}
.purchase .packages .loading:hover {
  background-color: #fff;
}
.purchase .mode-container {
  background-color: #27A868;
  border-top: 1px solid #cccccc;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.purchase .mode-container .mode {
  display: inline-block;
  font-size: 13px;
  padding: 7px 20px;
  margin-bottom: -1px;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
  color: #eeeeee;
  min-width: 175px;
  border-radius: 5px 5px 0 0;
  text-align: center;
}
.purchase .mode-container .mode.active {
  background-color: #fff;
  color: #229B60;
  border: 1px solid #ccc;
  border-bottom: none;
}
.purchase .package-table {
  padding: 20px;
}
.purchase .package-table table {
  width: 100%;
  font-size: 14px;
}
.purchase .package-table table th {
  padding-left: 10px;
}
.purchase .package-table table td {
  padding: 7px;
  padding-left: 10px;
  border: 1px solid #DDD;
  color: #333333;
}
.purchase .package-table table tr.active td {
  background-color: #bfe9f4;
  color: #2fa368;
  font-weight: bold;
}
.purchase .package-table table tr:hover td {
  background-color: #bfe9f4;
}
.purchase .package-table table tr.purchased td {
  color: #999999;
  background-color: #eee;
}
.purchase .package-table table tr.purchased td .price {
  font-style: italic;
}
.purchase .package-table table td.Light {
  color: #a3c4d3;
  border-left: 10px solid #a3c4d3;
}
.purchase .package-table table td.Premium {
  color: #85a2af;
  border-left: 10px solid #85a2af;
}
.purchase .package-table table td.Bronze {
  color: #846330;
  border-left: 10px solid #846330;
}
.purchase .package-table table td.Silver {
  color: #C4C4C4;
  border-left: 10px solid #C4C4C4;
}
.purchase .package-table table td.Gold {
  color: #A29652;
  border-left: 10px solid #A29652;
}
.purchase .package-table table td.Gold5000 {
  color: #9c8f45;
  border-left: 10px solid #9c8f45;
}
.purchase .package-table table td.Gold7500 {
  color: #978a3e;
  border-left: 10px solid #978a3e;
}
.purchase .package-table table td.Gold10000 {
  color: #918438;
  border-left: 10px solid #918438;
}
.purchase .package-table table td.Gold12500 {
  color: #918438;
  border-left: 10px solid #918438;
}
.purchase .package-table table td.Gold15000 {
  color: #8a7d32;
  border-left: 10px solid #8a7d32;
}
.purchase .package-table table td.Gold17500 {
  color: #85782e;
  border-left: 10px solid #85782e;
}
.purchase .package-table table td.Gold20000 {
  color: #7d7128;
  border-left: 10px solid #7d7128;
}
.purchase .package-table table td.Gold30000 {
  color: #766a24;
  border-left: 10px solid #766a24;
}
.purchase .package-table table td.Gold40000 {
  color: #6c611e;
  border-left: 10px solid #6c611e;
}
.purchase .package-table table td.Gold50000 {
  color: #665b1a;
  border-left: 10px solid #665b1a;
}
.purchase .package-table table td.Gold60000 {
  color: #5e5316;
  border-left: 10px solid #5e5316;
}
.purchase .package-table table td.Gold70000 {
  color: #544a11;
  border-left: 10px solid #544a11;
}
.purchase .package-table table td.Gold80000 {
  color: #433b09;
  border-left: 10px solid #433b09;
}
.purchase .package-table table td.Gold90000 {
  color: #383107;
  border-left: 10px solid #383107;
}
.purchase .package-table table td.Gold100000 {
  color: #2a2404;
  border-left: 10px solid #2a2404;
}
.purchase .design-services td.left {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #ddd;
}
.purchase .design-services td.right {
  text-align: center;
  width: 200px;
  background-color: #F1F1F1;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.purchase .design-services .name {
  color: #27A868;
  font-size: 20px;
}
.purchase .design-services .descr {
  padding-top: 10px;
  padding-bottom: 10px;
}
.purchase .design-services .price {
  font-size: 20px;
  padding-bottom: 5px;
}
.purchase .step2 .panel-body {
  padding: 30px;
  font-size: 16px;
}
.purchase .step2 .details {
  font-size: 16px;
}
.purchase .step2 .details table {
  width: 100%;
}
.purchase .step2 .details table td.price {
  text-align: right;
}
.purchase .step2 .details table tr.discount {
  color: #CC0000;
}
.purchase .step2 .details table td {
  padding-bottom: 5px;
}
.purchase .step2 .details table tfoot td {
  border-top: 1px solid #F3F3F3;
  padding-top: 10px;
  font-weight: bold;
}
.purchase .step2 .col-md-2,
.purchase .step2 .col-md-3,
.purchase .step2 .col-md-4,
.purchase .step2 .col-md-5,
.purchase .step2 .col-md-6 {
  padding-right: 10px;
  padding-left: 10px;
}
.purchase .eventworks .name {
  font-size: 16px;
  margin-top: 20px;
  color: white;
  padding: 4px;
  background-color: #8466a1;
}
.purchase .faq .question {
  font-weight: bold;
}
.purchase .faq .answer {
  margin-bottom: 10px;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 6.5px 0;
}
input[type=range]:focus:not(:focus-visible) {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: #2bacca;
  border-radius: 0;
  border: 0px solid #dbd58f;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 2px 2px 4px #cccccc, 0 0 2px #d9d9d9;
  border: 1px solid #cccccc;
  height: 16px;
  width: 16px;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6.5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #46bcd8;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: #2bacca;
  border-radius: 0;
  border: 0 solid #dbd58f;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 2px 2px 4px #cccccc, 0 0 2px #d9d9d9;
  border: 1px solid #cccccc;
  height: 16px;
  width: 16px;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #248fa8;
  border: 0 solid #dbd58f;
  border-radius: 0;
}
input[type=range]::-ms-fill-upper {
  background: #2bacca;
  border: 0 solid #dbd58f;
  border-radius: 0;
}
input[type=range]::-ms-thumb {
  box-shadow: 2px 2px 4px #cccccc, 0 0 2px #d9d9d9;
  border: 1px solid #cccccc;
  height: 12px;
  width: 12px;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -2px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #2bacca;
}
input[type=range]:focus::-ms-fill-upper {
  background: #46bcd8;
}
.up-down-arrows {
  line-height: 1;
  margin-top: 2px;
  border-spacing: 0;
}
.up-down-arrows td {
  padding: 0;
}
.no-text-select {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
iframe[name='google_conversion_frame'] {
  left: -300px;
  position: absolute;
}
ul.autocomplete {
  border: 1px solid #999999;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px;
  list-style-type: none;
  margin: 10px 0 0 -4px;
  max-height: 365px;
  overflow: auto;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 9999;
}
ul.autocomplete > li {
  background-color: #FFFFFF;
  cursor: pointer;
  padding: 6px 12px;
}
ul.autocomplete > li.active {
  background-color: #4AB37E;
  color: #FFFFFF;
}
ul.autocomplete > li:not(.active):hover {
  background-color: #F1F1F1;
}
ul.autocomplete > li:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
ul.autocomplete > li:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
label > input[type='checkbox'],
label > input[type='radio'] {
  display: inline-block;
  margin-right: 4px;
  vertical-align: baseline;
}
.disabled {
  cursor: not-allowed !important;
  opacity: 0.5;
}
.no-wrap {
  white-space: nowrap;
}
.position-relative {
  position: relative;
}
.text-black {
  color: #333333;
}
body.v2 .ui-datepicker {
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.0802);
  font-family: "Open Sans";
  font-size: 12px;
  padding: 8px;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header {
  background: #FFFFFF;
  border: 0;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-next {
  cursor: pointer;
  right: -8px;
  top: 8px;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-next:after {
  content: "";
  display: block;
  border-color: #CFCFCF;
  border-style: solid;
  border-width: 2px 2px 0 0;
  height: 8px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 8px;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-next.ui-state-hover.ui-datepicker-next-hover {
  background: rgba(0, 0, 0, 0);
  border: 0;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-next.ui-state-hover.ui-datepicker-next-hover:after {
  border-color: #666666;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-next > .ui-icon {
  display: none;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-prev {
  cursor: pointer;
  left: 8px;
  top: 8px;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-prev:before {
  content: "";
  display: block;
  border-color: #CFCFCF;
  border-style: solid;
  border-width: 0 0 2px 2px;
  height: 8px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 8px;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-prev.ui-state-hover.ui-datepicker-prev-hover {
  background: rgba(0, 0, 0, 0);
  border: 0;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-prev.ui-state-hover.ui-datepicker-prev-hover:before {
  border-color: #666666;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-prev > .ui-icon {
  display: none;
}
body.v2 .ui-datepicker > .ui-datepicker-header.ui-widget-header > .ui-datepicker-title {
  background: #FFFFFF;
  color: #666666;
}
body.v2 .ui-datepicker table.ui-datepicker-calendar > tbody > tr > td {
  padding: 2px;
  vertical-align: middle;
}
body.v2 .ui-datepicker table.ui-datepicker-calendar > tbody > tr > td > a {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  color: #333333;
  display: block;
  font-size: 11px;
  font-weight: bold;
  height: 22px;
  text-align: center;
  vertical-align: middle;
  width: 22px;
}
body.v2 .ui-datepicker table.ui-datepicker-calendar > tbody > tr > td > a.ui-state-active {
  background: #427e8f;
  border: 1px solid #427e8f;
  color: #FFFFFF;
}
body.v2 .ui-datepicker table.ui-datepicker-calendar > tbody > tr > td > a.ui-state-highlight:not(.ui-state-active) {
  border: 1px solid #CFCFCF;
}
body.v2 .ui-datepicker table.ui-datepicker-calendar > tbody > tr > td > a.ui-state-hover:not(.ui-state-active) {
  background: #FAFAFA;
  border: 1px solid #427e8f;
}
body.v2 .ui-datepicker table.ui-datepicker-calendar > thead > tr > th {
  color: #666666;
  font-size: 11px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}
.qq-uploader .qq-upload-cancel-selector {
  display: none !important;
}
.qq-uploader > dialog {
  background-color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  padding: 25px;
  position: relative;
}
.qq-uploader > dialog.qq-alert-dialog-selector {
  width: 500px;
}
.qq-uploader > dialog a.qq-close {
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 4px;
}
.qq-uploader > dialog a.qq-close > i {
  color: #666666;
}
.qq-uploader > dialog a.qq-close:hover > i {
  color: #666666;
}
.qq-uploader > dialog .qq-dialog-header {
  color: #666666;
  display: block;
  text-align: center;
}
.qq-uploader > dialog .qq-dialog-header > img {
  height: 30px;
  width: 30px;
}
.qq-uploader > dialog .qq-dialog-header > span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 29px;
  margin: 16px 0 20px 0;
}
.qq-uploader > dialog .qq-dialog-message-selector {
  color: #666666;
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 25px;
  text-align: center;
}
.qq-uploader.v2 {
  background-color: #E9F7F1;
  overflow: hidden;
}
.qq-uploader.v2.dropzone {
  border-color: #2BB573;
}
.qq-uploader.v2.dropzone .fa {
  border-color: #2BB573;
  color: #2BB573;
}
.qq-uploader.v2 .qq-progress-bar {
  background-color: #2BB573;
}
.qq-uploader.v2 .qq-upload-button {
  color: #2BB573;
}
.qq-uploader.v2 .qq-upload-list {
  box-shadow: none;
}
.qq-uploader.v2 .qq-upload-list li {
  background-color: #FFFFFF;
}
.gv-audioplayer {
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  display: flex;
  margin: 20px 0;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.gv-audioplayer > button {
  background-color: #E8E8E8;
  border: none;
  border-radius: 3px 0 0 3px;
  color: #666666;
  flex: 0 0 auto;
  height: 50px;
  padding: 0;
  margin: 0;
  text-align: center;
  transition-duration: 0.25s;
  transition-property: color, background-color;
  transition-timing-function: ease;
  vertical-align: middle;
  width: 80px;
}
.gv-audioplayer > button > i {
  color: #666666;
  display: none;
  font-size: 18px;
  padding: 16px;
  transition: color 0.25s ease;
}
.gv-audioplayer > button > i:hover {
  color: #333333;
}
.gv-audioplayer > button:focus:not(:focus-visible) {
  outline: none;
}
.gv-audioplayer > button:hover {
  background-color: #CFCFCF;
  color: #333333;
  outline: none;
}
.gv-audioplayer > button.pause > i.fa-pause {
  display: block;
}
.gv-audioplayer > button.play > i.fa-play {
  display: block;
}
.gv-audioplayer .actions {
  display: block;
  flex: 1 1 auto;
  margin: 0;
  padding: 0 12px;
  text-align: right;
  white-space: nowrap;
}
.gv-audioplayer .actions > a.button,
.gv-audioplayer .actions > button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 50%;
  display: inline-block;
  font-size: 20px;
  margin: 7px 0;
  height: 36px;
  text-align: center;
  transition-duration: 0.25s;
  transition-property: background-color;
  transition-timing-function: ease;
  vertical-align: middle;
  width: 36px;
}
.gv-audioplayer .actions > a.button:focus,
.gv-audioplayer .actions > button:focus,
.gv-audioplayer .actions > a.button:hover,
.gv-audioplayer .actions > button:hover {
  background-color: #EEEEEE;
  text-decoration: none;
}
.gv-audioplayer .actions > a.button:focus > i,
.gv-audioplayer .actions > button:focus > i,
.gv-audioplayer .actions > a.button:hover > i,
.gv-audioplayer .actions > button:hover > i {
  color: #333333;
}
.gv-audioplayer .actions > a.button:focus:not(:focus-visible),
.gv-audioplayer .actions > button:focus:not(:focus-visible),
.gv-audioplayer .actions > a.button:hover:not(:focus-visible),
.gv-audioplayer .actions > button:hover:not(:focus-visible) {
  outline: none;
}
.gv-audioplayer .actions > a.button > i,
.gv-audioplayer .actions > button > i {
  border-radius: 50%;
  color: #666666;
  transition-duration: 0.25s;
  transition-property: color;
  transition-timing-function: ease;
}
.gv-audioplayer .actions > a.button > i:hover,
.gv-audioplayer .actions > button > i:hover {
  color: #333333;
}
.gv-audioplayer .actions > a.button > i {
  margin-top: 6px;
}
.gv-audioplayer .info {
  display: block;
  flex: 1 1 auto;
  line-height: 50px;
  margin: 0;
  padding: 0 0 0 20px;
  vertical-align: middle;
}
.gv-audioplayer .info > input[type=range] {
  position: relative;
  top: 4px;
}
.gv-collapse-panel {
  margin-bottom: 16px;
}
.gv-collapse-panel > [data-role='toggle'] {
  background-color: #EEEEEE;
  border-radius: 4px;
  color: #4AB37E;
  cursor: pointer;
  display: block;
  font-size: 14px;
  margin: 0;
  padding: 16px 16px 16px 8px;
  text-align: center;
  transition-duration: 0.25s;
  transition-property: background-color, color;
  transition-timing-function: ease;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.gv-collapse-panel > [data-role='toggle']:after {
  content: "";
  border: none;
  border-bottom: 1.5px solid #4AB37E;
  border-left: 1.5px solid #4AB37E;
  border-radius: 1px;
  display: inline-block;
  height: 9px;
  left: 8px;
  position: relative;
  top: -3px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition-duration: 0.25s;
  transition-property: border-bottom, border-left;
  transition-timing-function: ease;
  width: 9px;
}
.gv-collapse-panel > [data-role='toggle']:hover {
  background-color: #E8E8E8;
  color: #269D64;
}
.gv-collapse-panel > [data-role='toggle']:hover:after {
  border-bottom: 1.5px solid #269D64;
  border-left: 1.5px solid #269D64;
}
.gv-collapse-panel > [data-role='content'] {
  display: none;
}
.gv-collapse-panel > [data-role='toggle'].open {
  margin-bottom: 8px;
}
.gv-collapse-panel > [data-role='toggle'].open:after {
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  top: 2px;
}
.gv-collapse-panel > [data-role='toggle'].open + [data-role='content'] {
  display: block;
}
.gv-form {
  margin-bottom: 24px;
}
.gv-form.flat {
  margin: 0;
}
.gv-form label.gv-input,
.gv-form div.gv-input {
  display: inline-block;
  margin: 8px 0;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  position: relative;
}
.gv-form label.gv-input.btn-end,
.gv-form div.gv-input.btn-end,
.gv-form label.gv-input.btn-start,
.gv-form div.gv-input.btn-start {
  display: flex;
}
.gv-form label.gv-input .input:disabled,
.gv-form div.gv-input .input:disabled,
.gv-form label.gv-input input:disabled,
.gv-form div.gv-input input:disabled,
.gv-form label.gv-input select:disabled,
.gv-form div.gv-input select:disabled,
.gv-form label.gv-input textarea:disabled,
.gv-form div.gv-input textarea:disabled,
.gv-form label.gv-input .input.disabled,
.gv-form div.gv-input .input.disabled,
.gv-form label.gv-input input.disabled,
.gv-form div.gv-input input.disabled,
.gv-form label.gv-input select.disabled,
.gv-form div.gv-input select.disabled,
.gv-form label.gv-input textarea.disabled,
.gv-form div.gv-input textarea.disabled {
  background-color: #FAFAFA !important;
  color: #333333 !important;
  cursor: not-allowed !important;
}
.gv-form label.gv-input .input:focus,
.gv-form div.gv-input .input:focus,
.gv-form label.gv-input input:focus,
.gv-form div.gv-input input:focus,
.gv-form label.gv-input select:focus,
.gv-form div.gv-input select:focus,
.gv-form label.gv-input textarea:focus,
.gv-form div.gv-input textarea:focus,
.gv-form label.gv-input .input.focus,
.gv-form div.gv-input .input.focus,
.gv-form label.gv-input input.focus,
.gv-form div.gv-input input.focus,
.gv-form label.gv-input select.focus,
.gv-form div.gv-input select.focus,
.gv-form label.gv-input textarea.focus,
.gv-form div.gv-input textarea.focus {
  border-color: #4AB37E !important;
  box-shadow: none!important;
  filter: drop-shadow(0px, 0px, 0px, 0px, rgba(0, 0, 0, 0)) !important;
  outline: none!important;
}
.gv-form label.gv-input .input.error:focus,
.gv-form div.gv-input .input.error:focus,
.gv-form label.gv-input input.error:focus,
.gv-form div.gv-input input.error:focus,
.gv-form label.gv-input select.error:focus,
.gv-form div.gv-input select.error:focus,
.gv-form label.gv-input textarea.error:focus,
.gv-form div.gv-input textarea.error:focus,
.gv-form label.gv-input .input.error.focus,
.gv-form div.gv-input .input.error.focus,
.gv-form label.gv-input input.error.focus,
.gv-form div.gv-input input.error.focus,
.gv-form label.gv-input select.error.focus,
.gv-form div.gv-input select.error.focus,
.gv-form label.gv-input textarea.error.focus,
.gv-form div.gv-input textarea.error.focus {
  border-color: rgba(0, 0, 0, 0) !important;
  outline: #CC0000 auto 5px !important;
}
.gv-form label.gv-input > .input,
.gv-form div.gv-input > .input,
.gv-form label.gv-input > input[type='date'],
.gv-form div.gv-input > input[type='date'],
.gv-form label.gv-input > input[type='datetime'],
.gv-form div.gv-input > input[type='datetime'],
.gv-form label.gv-input > input[type='datetime-local'],
.gv-form div.gv-input > input[type='datetime-local'],
.gv-form label.gv-input > input[type='email'],
.gv-form div.gv-input > input[type='email'],
.gv-form label.gv-input > input[type='month'],
.gv-form div.gv-input > input[type='month'],
.gv-form label.gv-input > input[type='number'],
.gv-form div.gv-input > input[type='number'],
.gv-form label.gv-input > input[type='password'],
.gv-form div.gv-input > input[type='password'],
.gv-form label.gv-input > input[type='search'],
.gv-form div.gv-input > input[type='search'],
.gv-form label.gv-input > input[type='tel'],
.gv-form div.gv-input > input[type='tel'],
.gv-form label.gv-input > input[type='text'],
.gv-form div.gv-input > input[type='text'],
.gv-form label.gv-input > input[type='time'],
.gv-form div.gv-input > input[type='time'],
.gv-form label.gv-input > input[type='url'],
.gv-form div.gv-input > input[type='url'],
.gv-form label.gv-input > input[type='week'],
.gv-form div.gv-input > input[type='week'],
.gv-form label.gv-input > select,
.gv-form div.gv-input > select,
.gv-form label.gv-input > textarea,
.gv-form div.gv-input > textarea {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  color: #666666;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  padding: 8px 10px;
  transition-duration: 0.25s;
  transition-property: background-color, border, color;
  transition-timing-function: ease;
  text-decoration: none;
  vertical-align: middle;
}
.gv-form label.gv-input > .input.btn-ended,
.gv-form div.gv-input > .input.btn-ended,
.gv-form label.gv-input > input[type='date'].btn-ended,
.gv-form div.gv-input > input[type='date'].btn-ended,
.gv-form label.gv-input > input[type='datetime'].btn-ended,
.gv-form div.gv-input > input[type='datetime'].btn-ended,
.gv-form label.gv-input > input[type='datetime-local'].btn-ended,
.gv-form div.gv-input > input[type='datetime-local'].btn-ended,
.gv-form label.gv-input > input[type='email'].btn-ended,
.gv-form div.gv-input > input[type='email'].btn-ended,
.gv-form label.gv-input > input[type='month'].btn-ended,
.gv-form div.gv-input > input[type='month'].btn-ended,
.gv-form label.gv-input > input[type='number'].btn-ended,
.gv-form div.gv-input > input[type='number'].btn-ended,
.gv-form label.gv-input > input[type='password'].btn-ended,
.gv-form div.gv-input > input[type='password'].btn-ended,
.gv-form label.gv-input > input[type='search'].btn-ended,
.gv-form div.gv-input > input[type='search'].btn-ended,
.gv-form label.gv-input > input[type='tel'].btn-ended,
.gv-form div.gv-input > input[type='tel'].btn-ended,
.gv-form label.gv-input > input[type='text'].btn-ended,
.gv-form div.gv-input > input[type='text'].btn-ended,
.gv-form label.gv-input > input[type='time'].btn-ended,
.gv-form div.gv-input > input[type='time'].btn-ended,
.gv-form label.gv-input > input[type='url'].btn-ended,
.gv-form div.gv-input > input[type='url'].btn-ended,
.gv-form label.gv-input > input[type='week'].btn-ended,
.gv-form div.gv-input > input[type='week'].btn-ended,
.gv-form label.gv-input > select.btn-ended,
.gv-form div.gv-input > select.btn-ended,
.gv-form label.gv-input > textarea.btn-ended,
.gv-form div.gv-input > textarea.btn-ended {
  border-radius: 4px 0 0 4px;
}
.gv-form label.gv-input > .input.btn-started,
.gv-form div.gv-input > .input.btn-started,
.gv-form label.gv-input > input[type='date'].btn-started,
.gv-form div.gv-input > input[type='date'].btn-started,
.gv-form label.gv-input > input[type='datetime'].btn-started,
.gv-form div.gv-input > input[type='datetime'].btn-started,
.gv-form label.gv-input > input[type='datetime-local'].btn-started,
.gv-form div.gv-input > input[type='datetime-local'].btn-started,
.gv-form label.gv-input > input[type='email'].btn-started,
.gv-form div.gv-input > input[type='email'].btn-started,
.gv-form label.gv-input > input[type='month'].btn-started,
.gv-form div.gv-input > input[type='month'].btn-started,
.gv-form label.gv-input > input[type='number'].btn-started,
.gv-form div.gv-input > input[type='number'].btn-started,
.gv-form label.gv-input > input[type='password'].btn-started,
.gv-form div.gv-input > input[type='password'].btn-started,
.gv-form label.gv-input > input[type='search'].btn-started,
.gv-form div.gv-input > input[type='search'].btn-started,
.gv-form label.gv-input > input[type='tel'].btn-started,
.gv-form div.gv-input > input[type='tel'].btn-started,
.gv-form label.gv-input > input[type='text'].btn-started,
.gv-form div.gv-input > input[type='text'].btn-started,
.gv-form label.gv-input > input[type='time'].btn-started,
.gv-form div.gv-input > input[type='time'].btn-started,
.gv-form label.gv-input > input[type='url'].btn-started,
.gv-form div.gv-input > input[type='url'].btn-started,
.gv-form label.gv-input > input[type='week'].btn-started,
.gv-form div.gv-input > input[type='week'].btn-started,
.gv-form label.gv-input > select.btn-started,
.gv-form div.gv-input > select.btn-started,
.gv-form label.gv-input > textarea.btn-started,
.gv-form div.gv-input > textarea.btn-started {
  border-radius: 0 4px 4px 0;
}
.gv-form label.gv-input > .input.w-auto,
.gv-form div.gv-input > .input.w-auto,
.gv-form label.gv-input > input[type='date'].w-auto,
.gv-form div.gv-input > input[type='date'].w-auto,
.gv-form label.gv-input > input[type='datetime'].w-auto,
.gv-form div.gv-input > input[type='datetime'].w-auto,
.gv-form label.gv-input > input[type='datetime-local'].w-auto,
.gv-form div.gv-input > input[type='datetime-local'].w-auto,
.gv-form label.gv-input > input[type='email'].w-auto,
.gv-form div.gv-input > input[type='email'].w-auto,
.gv-form label.gv-input > input[type='month'].w-auto,
.gv-form div.gv-input > input[type='month'].w-auto,
.gv-form label.gv-input > input[type='number'].w-auto,
.gv-form div.gv-input > input[type='number'].w-auto,
.gv-form label.gv-input > input[type='password'].w-auto,
.gv-form div.gv-input > input[type='password'].w-auto,
.gv-form label.gv-input > input[type='search'].w-auto,
.gv-form div.gv-input > input[type='search'].w-auto,
.gv-form label.gv-input > input[type='tel'].w-auto,
.gv-form div.gv-input > input[type='tel'].w-auto,
.gv-form label.gv-input > input[type='text'].w-auto,
.gv-form div.gv-input > input[type='text'].w-auto,
.gv-form label.gv-input > input[type='time'].w-auto,
.gv-form div.gv-input > input[type='time'].w-auto,
.gv-form label.gv-input > input[type='url'].w-auto,
.gv-form div.gv-input > input[type='url'].w-auto,
.gv-form label.gv-input > input[type='week'].w-auto,
.gv-form div.gv-input > input[type='week'].w-auto,
.gv-form label.gv-input > select.w-auto,
.gv-form div.gv-input > select.w-auto,
.gv-form label.gv-input > textarea.w-auto,
.gv-form div.gv-input > textarea.w-auto {
  width: auto!important;
}
.gv-form label.gv-input > .input.w-60p,
.gv-form div.gv-input > .input.w-60p,
.gv-form label.gv-input > input[type='date'].w-60p,
.gv-form div.gv-input > input[type='date'].w-60p,
.gv-form label.gv-input > input[type='datetime'].w-60p,
.gv-form div.gv-input > input[type='datetime'].w-60p,
.gv-form label.gv-input > input[type='datetime-local'].w-60p,
.gv-form div.gv-input > input[type='datetime-local'].w-60p,
.gv-form label.gv-input > input[type='email'].w-60p,
.gv-form div.gv-input > input[type='email'].w-60p,
.gv-form label.gv-input > input[type='month'].w-60p,
.gv-form div.gv-input > input[type='month'].w-60p,
.gv-form label.gv-input > input[type='number'].w-60p,
.gv-form div.gv-input > input[type='number'].w-60p,
.gv-form label.gv-input > input[type='password'].w-60p,
.gv-form div.gv-input > input[type='password'].w-60p,
.gv-form label.gv-input > input[type='search'].w-60p,
.gv-form div.gv-input > input[type='search'].w-60p,
.gv-form label.gv-input > input[type='tel'].w-60p,
.gv-form div.gv-input > input[type='tel'].w-60p,
.gv-form label.gv-input > input[type='text'].w-60p,
.gv-form div.gv-input > input[type='text'].w-60p,
.gv-form label.gv-input > input[type='time'].w-60p,
.gv-form div.gv-input > input[type='time'].w-60p,
.gv-form label.gv-input > input[type='url'].w-60p,
.gv-form div.gv-input > input[type='url'].w-60p,
.gv-form label.gv-input > input[type='week'].w-60p,
.gv-form div.gv-input > input[type='week'].w-60p,
.gv-form label.gv-input > select.w-60p,
.gv-form div.gv-input > select.w-60p,
.gv-form label.gv-input > textarea.w-60p,
.gv-form div.gv-input > textarea.w-60p {
  width: 60%!important;
}
.gv-form label.gv-input > .input.w-100p,
.gv-form div.gv-input > .input.w-100p,
.gv-form label.gv-input > input[type='date'].w-100p,
.gv-form div.gv-input > input[type='date'].w-100p,
.gv-form label.gv-input > input[type='datetime'].w-100p,
.gv-form div.gv-input > input[type='datetime'].w-100p,
.gv-form label.gv-input > input[type='datetime-local'].w-100p,
.gv-form div.gv-input > input[type='datetime-local'].w-100p,
.gv-form label.gv-input > input[type='email'].w-100p,
.gv-form div.gv-input > input[type='email'].w-100p,
.gv-form label.gv-input > input[type='month'].w-100p,
.gv-form div.gv-input > input[type='month'].w-100p,
.gv-form label.gv-input > input[type='number'].w-100p,
.gv-form div.gv-input > input[type='number'].w-100p,
.gv-form label.gv-input > input[type='password'].w-100p,
.gv-form div.gv-input > input[type='password'].w-100p,
.gv-form label.gv-input > input[type='search'].w-100p,
.gv-form div.gv-input > input[type='search'].w-100p,
.gv-form label.gv-input > input[type='tel'].w-100p,
.gv-form div.gv-input > input[type='tel'].w-100p,
.gv-form label.gv-input > input[type='text'].w-100p,
.gv-form div.gv-input > input[type='text'].w-100p,
.gv-form label.gv-input > input[type='time'].w-100p,
.gv-form div.gv-input > input[type='time'].w-100p,
.gv-form label.gv-input > input[type='url'].w-100p,
.gv-form div.gv-input > input[type='url'].w-100p,
.gv-form label.gv-input > input[type='week'].w-100p,
.gv-form div.gv-input > input[type='week'].w-100p,
.gv-form label.gv-input > select.w-100p,
.gv-form div.gv-input > select.w-100p,
.gv-form label.gv-input > textarea.w-100p,
.gv-form div.gv-input > textarea.w-100p {
  width: 100%!important;
}
.gv-form label.gv-input > .input > input,
.gv-form div.gv-input > .input > input,
.gv-form label.gv-input > input[type='date'] > input,
.gv-form div.gv-input > input[type='date'] > input,
.gv-form label.gv-input > input[type='datetime'] > input,
.gv-form div.gv-input > input[type='datetime'] > input,
.gv-form label.gv-input > input[type='datetime-local'] > input,
.gv-form div.gv-input > input[type='datetime-local'] > input,
.gv-form label.gv-input > input[type='email'] > input,
.gv-form div.gv-input > input[type='email'] > input,
.gv-form label.gv-input > input[type='month'] > input,
.gv-form div.gv-input > input[type='month'] > input,
.gv-form label.gv-input > input[type='number'] > input,
.gv-form div.gv-input > input[type='number'] > input,
.gv-form label.gv-input > input[type='password'] > input,
.gv-form div.gv-input > input[type='password'] > input,
.gv-form label.gv-input > input[type='search'] > input,
.gv-form div.gv-input > input[type='search'] > input,
.gv-form label.gv-input > input[type='tel'] > input,
.gv-form div.gv-input > input[type='tel'] > input,
.gv-form label.gv-input > input[type='text'] > input,
.gv-form div.gv-input > input[type='text'] > input,
.gv-form label.gv-input > input[type='time'] > input,
.gv-form div.gv-input > input[type='time'] > input,
.gv-form label.gv-input > input[type='url'] > input,
.gv-form div.gv-input > input[type='url'] > input,
.gv-form label.gv-input > input[type='week'] > input,
.gv-form div.gv-input > input[type='week'] > input,
.gv-form label.gv-input > select > input,
.gv-form div.gv-input > select > input,
.gv-form label.gv-input > textarea > input,
.gv-form div.gv-input > textarea > input,
.gv-form label.gv-input > .input select,
.gv-form div.gv-input > .input select,
.gv-form label.gv-input > input[type='date'] select,
.gv-form div.gv-input > input[type='date'] select,
.gv-form label.gv-input > input[type='datetime'] select,
.gv-form div.gv-input > input[type='datetime'] select,
.gv-form label.gv-input > input[type='datetime-local'] select,
.gv-form div.gv-input > input[type='datetime-local'] select,
.gv-form label.gv-input > input[type='email'] select,
.gv-form div.gv-input > input[type='email'] select,
.gv-form label.gv-input > input[type='month'] select,
.gv-form div.gv-input > input[type='month'] select,
.gv-form label.gv-input > input[type='number'] select,
.gv-form div.gv-input > input[type='number'] select,
.gv-form label.gv-input > input[type='password'] select,
.gv-form div.gv-input > input[type='password'] select,
.gv-form label.gv-input > input[type='search'] select,
.gv-form div.gv-input > input[type='search'] select,
.gv-form label.gv-input > input[type='tel'] select,
.gv-form div.gv-input > input[type='tel'] select,
.gv-form label.gv-input > input[type='text'] select,
.gv-form div.gv-input > input[type='text'] select,
.gv-form label.gv-input > input[type='time'] select,
.gv-form div.gv-input > input[type='time'] select,
.gv-form label.gv-input > input[type='url'] select,
.gv-form div.gv-input > input[type='url'] select,
.gv-form label.gv-input > input[type='week'] select,
.gv-form div.gv-input > input[type='week'] select,
.gv-form label.gv-input > select select,
.gv-form div.gv-input > select select,
.gv-form label.gv-input > textarea select,
.gv-form div.gv-input > textarea select,
.gv-form label.gv-input > .input textarea,
.gv-form div.gv-input > .input textarea,
.gv-form label.gv-input > input[type='date'] textarea,
.gv-form div.gv-input > input[type='date'] textarea,
.gv-form label.gv-input > input[type='datetime'] textarea,
.gv-form div.gv-input > input[type='datetime'] textarea,
.gv-form label.gv-input > input[type='datetime-local'] textarea,
.gv-form div.gv-input > input[type='datetime-local'] textarea,
.gv-form label.gv-input > input[type='email'] textarea,
.gv-form div.gv-input > input[type='email'] textarea,
.gv-form label.gv-input > input[type='month'] textarea,
.gv-form div.gv-input > input[type='month'] textarea,
.gv-form label.gv-input > input[type='number'] textarea,
.gv-form div.gv-input > input[type='number'] textarea,
.gv-form label.gv-input > input[type='password'] textarea,
.gv-form div.gv-input > input[type='password'] textarea,
.gv-form label.gv-input > input[type='search'] textarea,
.gv-form div.gv-input > input[type='search'] textarea,
.gv-form label.gv-input > input[type='tel'] textarea,
.gv-form div.gv-input > input[type='tel'] textarea,
.gv-form label.gv-input > input[type='text'] textarea,
.gv-form div.gv-input > input[type='text'] textarea,
.gv-form label.gv-input > input[type='time'] textarea,
.gv-form div.gv-input > input[type='time'] textarea,
.gv-form label.gv-input > input[type='url'] textarea,
.gv-form div.gv-input > input[type='url'] textarea,
.gv-form label.gv-input > input[type='week'] textarea,
.gv-form div.gv-input > input[type='week'] textarea,
.gv-form label.gv-input > select textarea,
.gv-form div.gv-input > select textarea,
.gv-form label.gv-input > textarea textarea,
.gv-form div.gv-input > textarea textarea {
  display: block;
  width: 100%;
}
.gv-form label.gv-input.block,
.gv-form div.gv-input.block {
  display: block;
  width: 100%!important;
}
.gv-form label.gv-input.date,
.gv-form div.gv-input.date,
.gv-form label.gv-input.icon,
.gv-form div.gv-input.icon,
.gv-form label.gv-input.search,
.gv-form div.gv-input.search,
.gv-form label.gv-input.time,
.gv-form div.gv-input.time {
  width: auto;
}
.gv-form label.gv-input.date > .input,
.gv-form div.gv-input.date > .input,
.gv-form label.gv-input.icon > .input,
.gv-form div.gv-input.icon > .input,
.gv-form label.gv-input.search > .input,
.gv-form div.gv-input.search > .input,
.gv-form label.gv-input.time > .input,
.gv-form div.gv-input.time > .input,
.gv-form label.gv-input.date > input,
.gv-form div.gv-input.date > input,
.gv-form label.gv-input.icon > input,
.gv-form div.gv-input.icon > input,
.gv-form label.gv-input.search > input,
.gv-form div.gv-input.search > input,
.gv-form label.gv-input.time > input,
.gv-form div.gv-input.time > input {
  padding-right: 36px;
}
.gv-form label.gv-input.date:before,
.gv-form div.gv-input.date:before,
.gv-form label.gv-input.icon:before,
.gv-form div.gv-input.icon:before,
.gv-form label.gv-input.search:before,
.gv-form div.gv-input.search:before,
.gv-form label.gv-input.time:before,
.gv-form div.gv-input.time:before {
  color: #666666;
  content: '';
  display: inline-block;
  float: right;
  font-family: "Font Awesome 5 Pro";
  font-size: 17px;
  font-weight: 400;
  left: -28px;
  position: relative;
  top: 6px;
  transition: color 0.25s ease;
  width: 0;
}
.gv-form label.gv-input.date.date:before,
.gv-form div.gv-input.date.date:before,
.gv-form label.gv-input.icon.date:before,
.gv-form div.gv-input.icon.date:before,
.gv-form label.gv-input.search.date:before,
.gv-form div.gv-input.search.date:before,
.gv-form label.gv-input.time.date:before,
.gv-form div.gv-input.time.date:before {
  content: '\f133';
}
.gv-form label.gv-input.date.search:before,
.gv-form div.gv-input.date.search:before,
.gv-form label.gv-input.icon.search:before,
.gv-form div.gv-input.icon.search:before,
.gv-form label.gv-input.search.search:before,
.gv-form div.gv-input.search.search:before,
.gv-form label.gv-input.time.search:before,
.gv-form div.gv-input.time.search:before {
  content: '\f002';
}
.gv-form label.gv-input.date.time.timepicker > .input,
.gv-form div.gv-input.date.time.timepicker > .input,
.gv-form label.gv-input.icon.time.timepicker > .input,
.gv-form div.gv-input.icon.time.timepicker > .input,
.gv-form label.gv-input.search.time.timepicker > .input,
.gv-form div.gv-input.search.time.timepicker > .input,
.gv-form label.gv-input.time.time.timepicker > .input,
.gv-form div.gv-input.time.time.timepicker > .input {
  padding: 0;
}
.gv-form label.gv-input.date.time.timepicker > .input > .gv-timepicker > span,
.gv-form div.gv-input.date.time.timepicker > .input > .gv-timepicker > span,
.gv-form label.gv-input.icon.time.timepicker > .input > .gv-timepicker > span,
.gv-form div.gv-input.icon.time.timepicker > .input > .gv-timepicker > span,
.gv-form label.gv-input.search.time.timepicker > .input > .gv-timepicker > span,
.gv-form div.gv-input.search.time.timepicker > .input > .gv-timepicker > span,
.gv-form label.gv-input.time.time.timepicker > .input > .gv-timepicker > span,
.gv-form div.gv-input.time.time.timepicker > .input > .gv-timepicker > span {
  padding: 8px 36px 8px 10px;
}
.gv-form label.gv-input.date.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown,
.gv-form div.gv-input.date.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown,
.gv-form label.gv-input.icon.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown,
.gv-form div.gv-input.icon.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown,
.gv-form label.gv-input.search.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown,
.gv-form div.gv-input.search.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown,
.gv-form label.gv-input.time.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown,
.gv-form div.gv-input.time.time.timepicker > .input > .gv-timepicker > .gv-timepicker-dropdown {
  margin: 1px 0 0 -1px;
}
.gv-form label.gv-input.date:after,
.gv-form div.gv-input.date:after,
.gv-form label.gv-input.icon:after,
.gv-form div.gv-input.icon:after,
.gv-form label.gv-input.search:after,
.gv-form div.gv-input.search:after,
.gv-form label.gv-input.time:after,
.gv-form div.gv-input.time:after {
  content: "";
  display: block;
}
.gv-form label.gv-input.inline,
.gv-form div.gv-input.inline {
  width: auto;
}
.gv-form label.gv-input.flat,
.gv-form div.gv-input.flat {
  margin-bottom: 0;
}
.gv-form label.gv-input.mini,
.gv-form div.gv-input.mini {
  margin: 0;
}
.gv-form label.gv-input.mini > .input,
.gv-form div.gv-input.mini > .input,
.gv-form label.gv-input.mini > input[type='date'],
.gv-form div.gv-input.mini > input[type='date'],
.gv-form label.gv-input.mini > input[type='datetime'],
.gv-form div.gv-input.mini > input[type='datetime'],
.gv-form label.gv-input.mini > input[type='datetime-local'],
.gv-form div.gv-input.mini > input[type='datetime-local'],
.gv-form label.gv-input.mini > input[type='email'],
.gv-form div.gv-input.mini > input[type='email'],
.gv-form label.gv-input.mini > input[type='month'],
.gv-form div.gv-input.mini > input[type='month'],
.gv-form label.gv-input.mini > input[type='number'],
.gv-form div.gv-input.mini > input[type='number'],
.gv-form label.gv-input.mini > input[type='password'],
.gv-form div.gv-input.mini > input[type='password'],
.gv-form label.gv-input.mini > input[type='search'],
.gv-form div.gv-input.mini > input[type='search'],
.gv-form label.gv-input.mini > input[type='tel'],
.gv-form div.gv-input.mini > input[type='tel'],
.gv-form label.gv-input.mini > input[type='text'],
.gv-form div.gv-input.mini > input[type='text'],
.gv-form label.gv-input.mini > input[type='time'],
.gv-form div.gv-input.mini > input[type='time'],
.gv-form label.gv-input.mini > input[type='url'],
.gv-form div.gv-input.mini > input[type='url'],
.gv-form label.gv-input.mini > input[type='week'],
.gv-form div.gv-input.mini > input[type='week'],
.gv-form label.gv-input.mini > select,
.gv-form div.gv-input.mini > select,
.gv-form label.gv-input.mini > textarea,
.gv-form div.gv-input.mini > textarea {
  font-size: 12px;
  padding: 6px 10px;
}
.gv-form label.gv-input.mini > .gv-dropdown-wrapper,
.gv-form div.gv-input.mini > .gv-dropdown-wrapper {
  position: relative;
  font-size: 14px;
}
.gv-form label.gv-input.mini > .gv-dropdown-wrapper > .gv-dropdown-menu > li > a,
.gv-form div.gv-input.mini > .gv-dropdown-wrapper > .gv-dropdown-menu > li > a {
  font-size: 14px;
  padding: 6px 10px;
}
.gv-form label.gv-input.mini > .gv-dropdown-wrapper > .gv-dropdown-menu > li:first-child > a,
.gv-form div.gv-input.mini > .gv-dropdown-wrapper > .gv-dropdown-menu > li:first-child > a {
  padding: 6px 34px 6px 10px;
}
.gv-form label.gv-input.mini > .gv-dropdown-wrapper > .gv-dropdown-toggle,
.gv-form div.gv-input.mini > .gv-dropdown-wrapper > .gv-dropdown-toggle {
  font-size: 14px;
  padding: 6px 26px 6px 10px;
}
.gv-form label.gv-input.mini.date:before,
.gv-form div.gv-input.mini.date:before,
.gv-form label.gv-input.mini.icon:before,
.gv-form div.gv-input.mini.icon:before,
.gv-form label.gv-input.mini.search:before,
.gv-form div.gv-input.mini.search:before,
.gv-form label.gv-input.mini.time:before,
.gv-form div.gv-input.mini.time:before {
  font-size: 12px;
  left: -22px;
  top: 7px;
}
.gv-form label.gv-input.mini.date > .input,
.gv-form div.gv-input.mini.date > .input,
.gv-form label.gv-input.mini.icon > .input,
.gv-form div.gv-input.mini.icon > .input,
.gv-form label.gv-input.mini.search > .input,
.gv-form div.gv-input.mini.search > .input,
.gv-form label.gv-input.mini.time > .input,
.gv-form div.gv-input.mini.time > .input,
.gv-form label.gv-input.mini.date > input,
.gv-form div.gv-input.mini.date > input,
.gv-form label.gv-input.mini.icon > input,
.gv-form div.gv-input.mini.icon > input,
.gv-form label.gv-input.mini.search > input,
.gv-form div.gv-input.mini.search > input,
.gv-form label.gv-input.mini.time > input,
.gv-form div.gv-input.mini.time > input {
  padding-right: 30px;
}
.gv-form label.gv-input > .double,
.gv-form div.gv-input > .double {
  display: inline-block;
  vertical-align: middle;
}
.gv-form label.gv-input > .double:after,
.gv-form div.gv-input > .double:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.gv-form label.gv-input > .double label.gv-input,
.gv-form div.gv-input > .double label.gv-input,
.gv-form label.gv-input > .double div.gv-input,
.gv-form div.gv-input > .double div.gv-input {
  width: 48%;
  margin-bottom: 0;
}
.gv-form label.gv-input > .double label.gv-input:before,
.gv-form div.gv-input > .double label.gv-input:before,
.gv-form label.gv-input > .double div.gv-input:before,
.gv-form div.gv-input > .double div.gv-input:before {
  left: -25px;
  top: 7px;
}
.gv-form label.gv-input > .double label.gv-input:last-child,
.gv-form div.gv-input > .double label.gv-input:last-child,
.gv-form label.gv-input > .double div.gv-input:last-child,
.gv-form div.gv-input > .double div.gv-input:last-child {
  float: right;
}
.gv-form label.gv-input > .double label.gv-input > .input,
.gv-form div.gv-input > .double label.gv-input > .input,
.gv-form label.gv-input > .double div.gv-input > .input,
.gv-form div.gv-input > .double div.gv-input > .input,
.gv-form label.gv-input > .double label.gv-input > input,
.gv-form div.gv-input > .double label.gv-input > input,
.gv-form label.gv-input > .double div.gv-input > input,
.gv-form div.gv-input > .double div.gv-input > input,
.gv-form label.gv-input > .double label.gv-input > select,
.gv-form div.gv-input > .double label.gv-input > select,
.gv-form label.gv-input > .double div.gv-input > select,
.gv-form div.gv-input > .double div.gv-input > select,
.gv-form label.gv-input > .double label.gv-input > textarea,
.gv-form div.gv-input > .double label.gv-input > textarea,
.gv-form label.gv-input > .double div.gv-input > textarea,
.gv-form div.gv-input > .double div.gv-input > textarea,
.gv-form label.gv-input > .double label.gv-input > div.gv-dropdown-wrapper,
.gv-form div.gv-input > .double label.gv-input > div.gv-dropdown-wrapper,
.gv-form label.gv-input > .double div.gv-input > div.gv-dropdown-wrapper,
.gv-form div.gv-input > .double div.gv-input > div.gv-dropdown-wrapper {
  display: inline-block;
  width: 100%;
}
.gv-form label.gv-input > .single,
.gv-form div.gv-input > .single {
  display: inline-block;
  vertical-align: middle;
}
.gv-form label.gv-input > .single label.gv-input,
.gv-form div.gv-input > .single label.gv-input {
  width: 100%;
  margin-bottom: 0;
}
.gv-form label.gv-input > .single label.gv-input:before,
.gv-form div.gv-input > .single label.gv-input:before {
  left: -25px;
  top: 7px;
}
.gv-form label.gv-input > .single label.gv-input > .input,
.gv-form div.gv-input > .single label.gv-input > .input,
.gv-form label.gv-input > .single label.gv-input > input,
.gv-form div.gv-input > .single label.gv-input > input,
.gv-form label.gv-input > .single label.gv-input > select,
.gv-form div.gv-input > .single label.gv-input > select,
.gv-form label.gv-input > .single label.gv-input > textarea,
.gv-form div.gv-input > .single label.gv-input > textarea,
.gv-form label.gv-input > .single label.gv-input > div.gv-dropdown-wrapper,
.gv-form div.gv-input > .single label.gv-input > div.gv-dropdown-wrapper {
  display: inline-block;
  width: 100%;
}
.gv-form label.gv-input > span:not(.input),
.gv-form div.gv-input > span:not(.input),
.gv-form label.gv-input .form-content,
.gv-form div.gv-input .form-content {
  display: inline-block;
  font-size: 14px;
  margin: 0 4px 0 0;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
}
.gv-form label.gv-input > span:not(.input).form-content,
.gv-form div.gv-input > span:not(.input).form-content,
.gv-form label.gv-input .form-content.form-content,
.gv-form div.gv-input .form-content.form-content {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.gv-form label.gv-input > span:not(.input).text-right,
.gv-form div.gv-input > span:not(.input).text-right,
.gv-form label.gv-input .form-content.text-right,
.gv-form div.gv-input .form-content.text-right {
  text-align: right;
}
.gv-form label.gv-input > span:not(.input).w1of2,
.gv-form div.gv-input > span:not(.input).w1of2,
.gv-form label.gv-input .form-content.w1of2,
.gv-form div.gv-input .form-content.w1of2 {
  margin-right: 1%!important;
  width: 48%!important;
}
.gv-form label.gv-input > span:not(.input).w1of2 ~ .input,
.gv-form div.gv-input > span:not(.input).w1of2 ~ .input,
.gv-form label.gv-input .form-content.w1of2 ~ .input,
.gv-form div.gv-input .form-content.w1of2 ~ .input,
.gv-form label.gv-input > span:not(.input).w1of2 ~ .double,
.gv-form div.gv-input > span:not(.input).w1of2 ~ .double,
.gv-form label.gv-input .form-content.w1of2 ~ .double,
.gv-form div.gv-input .form-content.w1of2 ~ .double,
.gv-form label.gv-input > span:not(.input).w1of2 ~ input,
.gv-form div.gv-input > span:not(.input).w1of2 ~ input,
.gv-form label.gv-input .form-content.w1of2 ~ input,
.gv-form div.gv-input .form-content.w1of2 ~ input,
.gv-form label.gv-input > span:not(.input).w1of2 ~ select,
.gv-form div.gv-input > span:not(.input).w1of2 ~ select,
.gv-form label.gv-input .form-content.w1of2 ~ select,
.gv-form div.gv-input .form-content.w1of2 ~ select,
.gv-form label.gv-input > span:not(.input).w1of2 ~ .single,
.gv-form div.gv-input > span:not(.input).w1of2 ~ .single,
.gv-form label.gv-input .form-content.w1of2 ~ .single,
.gv-form div.gv-input .form-content.w1of2 ~ .single,
.gv-form label.gv-input > span:not(.input).w1of2 ~ textarea,
.gv-form div.gv-input > span:not(.input).w1of2 ~ textarea,
.gv-form label.gv-input .form-content.w1of2 ~ textarea,
.gv-form div.gv-input .form-content.w1of2 ~ textarea,
.gv-form label.gv-input > span:not(.input).w1of2 ~ .form-content,
.gv-form div.gv-input > span:not(.input).w1of2 ~ .form-content,
.gv-form label.gv-input .form-content.w1of2 ~ .form-content,
.gv-form div.gv-input .form-content.w1of2 ~ .form-content,
.gv-form label.gv-input > span:not(.input).w1of2 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input > span:not(.input).w1of2 ~ div.gv-dropdown-wrapper,
.gv-form label.gv-input .form-content.w1of2 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input .form-content.w1of2 ~ div.gv-dropdown-wrapper {
  width: 50%;
}
.gv-form label.gv-input > span:not(.input).w1of2 ~ span.help-inline,
.gv-form div.gv-input > span:not(.input).w1of2 ~ span.help-inline,
.gv-form label.gv-input .form-content.w1of2 ~ span.help-inline,
.gv-form div.gv-input .form-content.w1of2 ~ span.help-inline {
  margin-left: 50%;
}
.gv-form label.gv-input > span:not(.input).w1of3,
.gv-form div.gv-input > span:not(.input).w1of3,
.gv-form label.gv-input .form-content.w1of3,
.gv-form div.gv-input .form-content.w1of3 {
  margin-right: 1%!important;
  width: 31%!important;
}
.gv-form label.gv-input > span:not(.input).w1of3 ~ .input,
.gv-form div.gv-input > span:not(.input).w1of3 ~ .input,
.gv-form label.gv-input .form-content.w1of3 ~ .input,
.gv-form div.gv-input .form-content.w1of3 ~ .input,
.gv-form label.gv-input > span:not(.input).w1of3 ~ .double,
.gv-form div.gv-input > span:not(.input).w1of3 ~ .double,
.gv-form label.gv-input .form-content.w1of3 ~ .double,
.gv-form div.gv-input .form-content.w1of3 ~ .double,
.gv-form label.gv-input > span:not(.input).w1of3 ~ input,
.gv-form div.gv-input > span:not(.input).w1of3 ~ input,
.gv-form label.gv-input .form-content.w1of3 ~ input,
.gv-form div.gv-input .form-content.w1of3 ~ input,
.gv-form label.gv-input > span:not(.input).w1of3 ~ select,
.gv-form div.gv-input > span:not(.input).w1of3 ~ select,
.gv-form label.gv-input .form-content.w1of3 ~ select,
.gv-form div.gv-input .form-content.w1of3 ~ select,
.gv-form label.gv-input > span:not(.input).w1of3 ~ .single,
.gv-form div.gv-input > span:not(.input).w1of3 ~ .single,
.gv-form label.gv-input .form-content.w1of3 ~ .single,
.gv-form div.gv-input .form-content.w1of3 ~ .single,
.gv-form label.gv-input > span:not(.input).w1of3 ~ textarea,
.gv-form div.gv-input > span:not(.input).w1of3 ~ textarea,
.gv-form label.gv-input .form-content.w1of3 ~ textarea,
.gv-form div.gv-input .form-content.w1of3 ~ textarea,
.gv-form label.gv-input > span:not(.input).w1of3 ~ .form-content,
.gv-form div.gv-input > span:not(.input).w1of3 ~ .form-content,
.gv-form label.gv-input .form-content.w1of3 ~ .form-content,
.gv-form div.gv-input .form-content.w1of3 ~ .form-content,
.gv-form label.gv-input > span:not(.input).w1of3 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input > span:not(.input).w1of3 ~ div.gv-dropdown-wrapper,
.gv-form label.gv-input .form-content.w1of3 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input .form-content.w1of3 ~ div.gv-dropdown-wrapper {
  width: 66%;
}
.gv-form label.gv-input > span:not(.input).w1of3 ~ span.help-inline,
.gv-form div.gv-input > span:not(.input).w1of3 ~ span.help-inline,
.gv-form label.gv-input .form-content.w1of3 ~ span.help-inline,
.gv-form div.gv-input .form-content.w1of3 ~ span.help-inline {
  margin-left: 33%;
}
.gv-form label.gv-input > span:not(.input).w1of4,
.gv-form div.gv-input > span:not(.input).w1of4,
.gv-form label.gv-input .form-content.w1of4,
.gv-form div.gv-input .form-content.w1of4 {
  margin-right: 1%!important;
  width: 23%!important;
}
.gv-form label.gv-input > span:not(.input).w1of4 ~ .input,
.gv-form div.gv-input > span:not(.input).w1of4 ~ .input,
.gv-form label.gv-input .form-content.w1of4 ~ .input,
.gv-form div.gv-input .form-content.w1of4 ~ .input,
.gv-form label.gv-input > span:not(.input).w1of4 ~ .double,
.gv-form div.gv-input > span:not(.input).w1of4 ~ .double,
.gv-form label.gv-input .form-content.w1of4 ~ .double,
.gv-form div.gv-input .form-content.w1of4 ~ .double,
.gv-form label.gv-input > span:not(.input).w1of4 ~ input,
.gv-form div.gv-input > span:not(.input).w1of4 ~ input,
.gv-form label.gv-input .form-content.w1of4 ~ input,
.gv-form div.gv-input .form-content.w1of4 ~ input,
.gv-form label.gv-input > span:not(.input).w1of4 ~ select,
.gv-form div.gv-input > span:not(.input).w1of4 ~ select,
.gv-form label.gv-input .form-content.w1of4 ~ select,
.gv-form div.gv-input .form-content.w1of4 ~ select,
.gv-form label.gv-input > span:not(.input).w1of4 ~ .single,
.gv-form div.gv-input > span:not(.input).w1of4 ~ .single,
.gv-form label.gv-input .form-content.w1of4 ~ .single,
.gv-form div.gv-input .form-content.w1of4 ~ .single,
.gv-form label.gv-input > span:not(.input).w1of4 ~ textarea,
.gv-form div.gv-input > span:not(.input).w1of4 ~ textarea,
.gv-form label.gv-input .form-content.w1of4 ~ textarea,
.gv-form div.gv-input .form-content.w1of4 ~ textarea,
.gv-form label.gv-input > span:not(.input).w1of4 ~ .form-content,
.gv-form div.gv-input > span:not(.input).w1of4 ~ .form-content,
.gv-form label.gv-input .form-content.w1of4 ~ .form-content,
.gv-form div.gv-input .form-content.w1of4 ~ .form-content,
.gv-form label.gv-input > span:not(.input).w1of4 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input > span:not(.input).w1of4 ~ div.gv-dropdown-wrapper,
.gv-form label.gv-input .form-content.w1of4 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input .form-content.w1of4 ~ div.gv-dropdown-wrapper {
  width: 75%;
}
.gv-form label.gv-input > span:not(.input).w1of4 ~ span.help-inline,
.gv-form div.gv-input > span:not(.input).w1of4 ~ span.help-inline,
.gv-form label.gv-input .form-content.w1of4 ~ span.help-inline,
.gv-form div.gv-input .form-content.w1of4 ~ span.help-inline {
  margin-left: 25%;
}
.gv-form label.gv-input > span:not(.input).w1of10,
.gv-form div.gv-input > span:not(.input).w1of10,
.gv-form label.gv-input .form-content.w1of10,
.gv-form div.gv-input .form-content.w1of10 {
  margin-right: 1%!important;
  width: 9%!important;
}
.gv-form label.gv-input > span:not(.input).w1of10 ~ .input,
.gv-form div.gv-input > span:not(.input).w1of10 ~ .input,
.gv-form label.gv-input .form-content.w1of10 ~ .input,
.gv-form div.gv-input .form-content.w1of10 ~ .input,
.gv-form label.gv-input > span:not(.input).w1of10 ~ .double,
.gv-form div.gv-input > span:not(.input).w1of10 ~ .double,
.gv-form label.gv-input .form-content.w1of10 ~ .double,
.gv-form div.gv-input .form-content.w1of10 ~ .double,
.gv-form label.gv-input > span:not(.input).w1of10 ~ input,
.gv-form div.gv-input > span:not(.input).w1of10 ~ input,
.gv-form label.gv-input .form-content.w1of10 ~ input,
.gv-form div.gv-input .form-content.w1of10 ~ input,
.gv-form label.gv-input > span:not(.input).w1of10 ~ select,
.gv-form div.gv-input > span:not(.input).w1of10 ~ select,
.gv-form label.gv-input .form-content.w1of10 ~ select,
.gv-form div.gv-input .form-content.w1of10 ~ select,
.gv-form label.gv-input > span:not(.input).w1of10 ~ .single,
.gv-form div.gv-input > span:not(.input).w1of10 ~ .single,
.gv-form label.gv-input .form-content.w1of10 ~ .single,
.gv-form div.gv-input .form-content.w1of10 ~ .single,
.gv-form label.gv-input > span:not(.input).w1of10 ~ textarea,
.gv-form div.gv-input > span:not(.input).w1of10 ~ textarea,
.gv-form label.gv-input .form-content.w1of10 ~ textarea,
.gv-form div.gv-input .form-content.w1of10 ~ textarea,
.gv-form label.gv-input > span:not(.input).w1of10 ~ .form-content,
.gv-form div.gv-input > span:not(.input).w1of10 ~ .form-content,
.gv-form label.gv-input .form-content.w1of10 ~ .form-content,
.gv-form div.gv-input .form-content.w1of10 ~ .form-content,
.gv-form label.gv-input > span:not(.input).w1of10 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input > span:not(.input).w1of10 ~ div.gv-dropdown-wrapper,
.gv-form label.gv-input .form-content.w1of10 ~ div.gv-dropdown-wrapper,
.gv-form div.gv-input .form-content.w1of10 ~ div.gv-dropdown-wrapper {
  width: 89%;
}
.gv-form label.gv-input > span:not(.input).w1of10 ~ span.help-inline,
.gv-form div.gv-input > span:not(.input).w1of10 ~ span.help-inline,
.gv-form label.gv-input .form-content.w1of10 ~ span.help-inline,
.gv-form div.gv-input .form-content.w1of10 ~ span.help-inline {
  margin-left: 11%;
}
.gv-form label.gv-input > span.help-inline,
.gv-form div.gv-input > span.help-inline {
  display: block;
  margin: 8px 4px;
  text-transform: none;
}
.gv-form label.gv-input.required > span:first-child:after,
.gv-form div.gv-input.required > span:first-child:after,
.gv-form label.gv-input.required > p:first-child:after,
.gv-form div.gv-input.required > p:first-child:after {
  content: '*';
  color: #4AB37E;
  display: inline;
  font-size: 18px;
  margin-left: 8px;
}
.gv-form label.gv-input.stacked > span,
.gv-form div.gv-input.stacked > span {
  display: block;
  margin-bottom: 16px;
  width: 100%;
}
.gv-form label.gv-input.stacked > .input,
.gv-form div.gv-input.stacked > .input,
.gv-form label.gv-input.stacked > input,
.gv-form div.gv-input.stacked > input,
.gv-form label.gv-input.stacked > select,
.gv-form div.gv-input.stacked > select,
.gv-form label.gv-input.stacked > textarea,
.gv-form div.gv-input.stacked > textarea,
.gv-form label.gv-input.stacked > div.gv-dropdown-wrapper,
.gv-form div.gv-input.stacked > div.gv-dropdown-wrapper {
  display: block;
  margin-bottom: 16px;
  width: 100%;
}
.gv-form label.gv-input.stacked.date:before,
.gv-form div.gv-input.stacked.date:before,
.gv-form label.gv-input.stacked.icon:before,
.gv-form div.gv-input.stacked.icon:before,
.gv-form label.gv-input.stacked.search:before,
.gv-form div.gv-input.stacked.search:before,
.gv-form label.gv-input.stacked.time:before,
.gv-form div.gv-input.stacked.time:before {
  top: 42px;
}
.gv-form label.gv-input.stacked.mini > span,
.gv-form div.gv-input.stacked.mini > span {
  font-size: 13px;
  margin-bottom: 10px;
}
.gv-form label.gv-input.stacked.mini > .input,
.gv-form div.gv-input.stacked.mini > .input,
.gv-form label.gv-input.stacked.mini > input,
.gv-form div.gv-input.stacked.mini > input,
.gv-form label.gv-input.stacked.mini > select,
.gv-form div.gv-input.stacked.mini > select,
.gv-form label.gv-input.stacked.mini > textarea,
.gv-form div.gv-input.stacked.mini > textarea,
.gv-form label.gv-input.stacked.mini > div.gv-dropdown-wrapper,
.gv-form div.gv-input.stacked.mini > div.gv-dropdown-wrapper {
  margin-bottom: 10px;
}
.gv-form label.gv-input.stacked.mini.date:before,
.gv-form div.gv-input.stacked.mini.date:before,
.gv-form label.gv-input.stacked.mini.icon:before,
.gv-form div.gv-input.stacked.mini.icon:before,
.gv-form label.gv-input.stacked.mini.search:before,
.gv-form div.gv-input.stacked.mini.search:before,
.gv-form label.gv-input.stacked.mini.time:before,
.gv-form div.gv-input.stacked.mini.time:before {
  top: 34px;
}
.gv-form label.gv-input > .double > label.gv-input.time > input:not(.open) + .input.timepicker,
.gv-form div.gv-input > .double > label.gv-input.time > input:not(.open) + .input.timepicker {
  display: none;
}
.gv-form label.gv-input > .double > label.gv-input.time > input.open + .input.timepicker,
.gv-form div.gv-input > .double > label.gv-input.time > input.open + .input.timepicker {
  display: inline-block;
}
.gv-form .gv-section {
  margin-top: 24px;
}
.gv-form .gv-section:not(:first-child) {
  border-top: 1px solid #E8E8E8;
  padding-top: 24px;
}
.gv-form .gv-section.flat {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.gv-form .gv-section.no-line {
  border-top: none;
  margin-top: 16px;
  padding-top: 0;
}
.gv-form .gv-section .gv-subsection {
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  margin: 8px 0;
  padding: 20px;
}
.gv-form .gv-section .gv-subsection.no-line {
  border: none;
  border-radius: 0;
  padding: 0;
}
.gv-form .heading {
  color: #CFCFCF;
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.gv-form .note {
  color: #CFCFCF;
  display: block;
  font-size: 12px;
  margin: 5px 0 0 0;
}
.gv-form .offset1of2 {
  margin-left: 50%;
}
.gv-form .offset1of3 {
  margin-left: 33%;
}
.gv-form .offset1of4 {
  margin-left: 25%;
}
.gv-form .offset1of10 {
  margin-left: 11%;
}
.gv-form .w1of1 {
  margin-right: 0!important;
  width: 100%!important;
}
.gv-form .w1of2 {
  display: inline-block;
  margin-right: 2%!important;
  width: 48%!important;
}
.gv-form .w1of2:last-child {
  margin-right: 0!important;
}
.gv-form .w1of3 {
  display: inline-block;
  margin-right: 2%!important;
  width: 31%!important;
}
.gv-form .w1of3:last-child {
  margin-right: 0!important;
}
.gv-form .w1of4 {
  display: inline-block;
  margin-right: 2%!important;
  width: 23%!important;
}
.gv-form .w1of4:last-child {
  margin-right: 0!important;
}
.gv-form .w1of5 {
  display: inline-block;
  margin-right: 2%!important;
  width: 18%!important;
}
.gv-form .w1of5:last-child {
  margin-right: 0!important;
}
.gv-form .w1of6 {
  display: inline-block;
  margin-right: 2%!important;
  width: 14%!important;
}
.gv-form .w1of6:last-child {
  margin-right: 0!important;
}
.gv-form .w1of10 {
  display: inline-block;
  margin-right: 2%!important;
  width: 8%!important;
}
.gv-form .w1of10:last-child {
  margin-right: 0!important;
}
.gv-form .w1of12 {
  display: inline-block;
  margin-right: 2%!important;
  width: 6%!important;
}
.gv-form .w1of12:last-child {
  margin-right: 0!important;
}
.gv-form .w3of4 {
  display: inline-block;
  margin-right: 2%!important;
  width: 73%!important;
}
.gv-form .w3of4:last-child {
  margin-right: 0!important;
}
.gv-form .w3of10 {
  display: inline-block;
  margin-right: 2%!important;
  width: 28%!important;
}
.gv-form .w3of10:last-child {
  margin-right: 0!important;
}
.gv-header {
  margin-bottom: 35px;
}
.gv-header .gv-header-top {
  display: flex;
}
.gv-header .gv-header-top > h1 {
  color: #666666;
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: normal;
  margin: 0;
  vertical-align: top;
}
.gv-header .gv-header-top > div {
  flex: 1 1 auto;
  position: relative;
  text-align: right;
}
.gv-header > ol.gv-header-nav {
  display: flex;
  list-style-type: none;
  margin: 24px 0 0 0;
  padding: 0;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.gv-header > ol.gv-header-nav > li {
  border-bottom: 1px solid #CFCFCF;
  border-top: 1px solid #CFCFCF;
  flex: 1 1 auto;
  font-size: 14px;
  padding: 0;
}
.gv-header > ol.gv-header-nav > li > a {
  border-bottom: 4px solid rgba(0, 0, 0, 0);
  color: #4AB37E;
  display: block;
  padding: 18px 2px 14px 2px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.25s;
  transition-property: border-bottom-color, color;
  transition-timing-function: ease;
}
.gv-header > ol.gv-header-nav > li > a:hover {
  color: #666666;
  border-bottom-color: #CFCFCF;
}
.gv-header > ol.gv-header-nav > li > a em.gv-badge {
  background-color: #269D64;
  border-radius: 7px;
  color: #FFFFFF;
  display: inline-block;
  font-family: 'Open Sans';
  font-size: 10px;
  font-style: normal;
  font-weight: bold;
  height: 15px;
  min-width: 15px;
  overflow: hidden;
  padding: 0 4px;
  position: relative;
  text-align: center;
  text-decoration: none;
  top: -4px;
  white-space: nowrap;
}
.gv-header > ol.gv-header-nav > li > a em.gv-badge > var {
  display: inline-block;
  left: calc(50% - 0.5px);
  position: relative;
  top: calc(50% - 1px);
  transform: translate(-50%, -50%);
}
.gv-header > ol.gv-header-nav > li > a > i {
  color: #666666;
  display: inline-block;
  margin: 0 3px;
}
.gv-header > ol.gv-header-nav > li > a > span {
  margin: 0 3px;
  white-space: nowrap;
}
.gv-header > ol.gv-header-nav > li.active > a {
  border-bottom-color: #269D64;
  color: #666666;
  font-weight: bold;
}
.gv-header > ol.gv-header-nav > li.active > a > i {
  font-weight: 400;
}
.gv-inline-edit.gv-form {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.0802);
  padding: 15px;
  width: 270px;
}
.gv-inline-edit.gv-form > .btnV2 {
  width: 45%;
}
.gv-inline-edit.gv-form > label.gv-input {
  margin: 0 0 12px 0;
}
a.gv-link {
  color: #4AB37E !important;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  opacity: 1;
  transition-duration: 0.25s;
  transition-property: color, opacity;
  transition-timing-function: ease;
}
a.gv-link:link,
a.gv-link:visited,
a.gv-link:active {
  color: #4AB37E !important;
  text-decoration: none !important;
}
a.gv-link:link > i.fa,
a.gv-link:visited > i.fa,
a.gv-link:active > i.fa,
a.gv-link:link > i.fal,
a.gv-link:visited > i.fal,
a.gv-link:active > i.fal,
a.gv-link:link > i.far,
a.gv-link:visited > i.far,
a.gv-link:active > i.far,
a.gv-link:link > i.fas,
a.gv-link:visited > i.fas,
a.gv-link:active > i.fas {
  color: #4AB37E !important;
  transition-duration: 0.25s;
  transition-property: color;
  transition-timing-function: ease;
}
a.gv-link:focus {
  color: #269D64 !important;
  text-decoration: none !important;
}
a.gv-link:focus > i.fa,
a.gv-link:focus > i.fal,
a.gv-link:focus > i.far,
a.gv-link:focus > i.fas {
  color: #269D64 !important;
}
a.gv-link:hover {
  color: #269D64 !important;
  text-decoration: none !important;
  outline: none;
}
a.gv-link:hover > i.fa,
a.gv-link:hover > i.fal,
a.gv-link:hover > i.far,
a.gv-link:hover > i.fas {
  color: #269D64 !important;
}
a.gv-link.disabled {
  opacity: 0.5;
}
a.gv-link.dark {
  color: #666666 !important;
}
a.gv-link.dark:link,
a.gv-link.dark:visited,
a.gv-link.dark:active {
  color: #666666 !important;
}
a.gv-link.dark:link > i.fa,
a.gv-link.dark:visited > i.fa,
a.gv-link.dark:active > i.fa,
a.gv-link.dark:link > i.fal,
a.gv-link.dark:visited > i.fal,
a.gv-link.dark:active > i.fal,
a.gv-link.dark:link > i.far,
a.gv-link.dark:visited > i.far,
a.gv-link.dark:active > i.far,
a.gv-link.dark:link > i.fas,
a.gv-link.dark:visited > i.fas,
a.gv-link.dark:active > i.fas {
  color: #666666 !important;
}
a.gv-link.dark:hover,
a.gv-link.dark:focus {
  color: #333333 !important;
}
a.gv-link.dark:hover > i.fa,
a.gv-link.dark:focus > i.fa,
a.gv-link.dark:hover > i.fal,
a.gv-link.dark:focus > i.fal,
a.gv-link.dark:hover > i.far,
a.gv-link.dark:focus > i.far,
a.gv-link.dark:hover > i.fas,
a.gv-link.dark:focus > i.fas {
  color: #333333 !important;
}
a.gv-link.blue {
  color: #427e8f !important;
}
a.gv-link.blue:link,
a.gv-link.blue:visited,
a.gv-link.blue:active {
  color: #427e8f !important;
}
a.gv-link.blue:link > i.fa,
a.gv-link.blue:visited > i.fa,
a.gv-link.blue:active > i.fa,
a.gv-link.blue:link > i.fal,
a.gv-link.blue:visited > i.fal,
a.gv-link.blue:active > i.fal,
a.gv-link.blue:link > i.far,
a.gv-link.blue:visited > i.far,
a.gv-link.blue:active > i.far,
a.gv-link.blue:link > i.fas,
a.gv-link.blue:visited > i.fas,
a.gv-link.blue:active > i.fas {
  color: #427e8f !important;
}
a.gv-link.blue:hover,
a.gv-link.blue:focus {
  color: #325f6c !important;
}
a.gv-link.blue:hover > i.fa,
a.gv-link.blue:focus > i.fa,
a.gv-link.blue:hover > i.fal,
a.gv-link.blue:focus > i.fal,
a.gv-link.blue:hover > i.far,
a.gv-link.blue:focus > i.far,
a.gv-link.blue:hover > i.fas,
a.gv-link.blue:focus > i.fas {
  color: #325f6c !important;
}
label.miniOnOffSlider {
  background-color: transparent;
  display: inline-block;
  vertical-align: middle;
}
label.miniOnOffSlider > input {
  display: none;
}
label.miniOnOffSlider > input:checked + span > em {
  background-color: #41A7BD;
  float: right;
}
label.miniOnOffSlider > input:checked + span > span[data-state='on'] {
  color: #333333;
  display: inline-block;
  float: left;
}
label.miniOnOffSlider > input:not(:checked) + span > em {
  background-color: #CCCCCC;
  float: left;
}
label.miniOnOffSlider > input:not(:checked) + span > span[data-state='off'] {
  color: #666666;
  display: inline-block;
  float: right;
}
label.miniOnOffSlider > span {
  background-color: #F7F7F7;
  border-radius: 10.5px;
  box-shadow: rgba(0, 0, 0, 0.1742) 0px 1px 3px inset;
  cursor: pointer;
  display: block;
  padding: 3px;
  text-align: left;
  user-select: none;
  width: auto;
}
label.miniOnOffSlider > span > em {
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  display: inline-block;
  height: 16px;
  width: 16px;
}
label.miniOnOffSlider > span > i {
  clear: both;
  display: block;
}
label.miniOnOffSlider > span > span {
  display: none;
  font-size: 10px;
  font-weight: bold;
  line-height: 12px;
  margin: 2px 5px 0 5px;
}
.gv-container {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 15px;
}
.gv-container > .gv-container-header {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
}
.gv-container > .gv-container-header.large {
  font-size: 18px;
}
.gv-container > .gv-container-header.gray-line {
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 15px;
}
.gv-container > .gv-container-header > .actions {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  right: 0;
  top: 0;
}
.gv-container > .gv-container-header > .actions > .action-icon {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  display: inline-block;
  height: 30px;
  line-height: 26px;
  text-align: center;
  transition-duration: 0.25s;
  transition-property: background-color;
  transition-timing-function: ease;
  width: 30px;
}
.gv-container > .gv-container-header > .actions > .action-icon > i {
  border-bottom: 1px solid #427e8f;
  color: #427e8f;
  font-size: 12px;
  line-height: 17px;
  transition-duration: 0.25s;
  transition-property: border-color, color;
  transition-timing-function: ease;
  vertical-align: middle;
}
.gv-container > .gv-container-header > .actions > .action-icon:hover {
  background-color: #EEEEEE;
  cursor: pointer;
}
.gv-container > .gv-container-header > .actions > .action-icon:hover > i {
  border-bottom: 1px solid #3F7C93;
  color: #3F7C93;
}
select.gv-dropdown {
  left: -9999px;
  overflow: hidden;
  position: fixed;
  top: -9999px;
  z-index: -99999;
}
select.gv-dropdown:disabled + .gv-dropdown-wrapper > a.gv-dropdown-toggle {
  cursor: not-allowed;
  opacity: 0.5;
}
select.gv-dropdown[data-initialized] + .gv-dropdown-wrapper > ol.gv-dropdown-menu {
  display: none;
}
select.gv-dropdown[data-initialized].open + .gv-dropdown-wrapper > ol.gv-dropdown-menu {
  display: inline-block;
}
select.gv-dropdown.mini + .gv-dropdown-wrapper > .gv-dropdown-menu > li > a {
  font-size: 14px;
  padding: 6px 10px;
}
select.gv-dropdown.mini + .gv-dropdown-wrapper > .gv-dropdown-menu > li:first-child > a {
  padding: 6px 34px 6px 10px;
}
select.gv-dropdown.mini + .gv-dropdown-wrapper > a.gv-dropdown-toggle {
  font-size: 14px;
  padding: 6px 26px 6px 10px;
}
select.gv-dropdown + .gv-dropdown-wrapper {
  display: inline-block;
  left: 0;
  position: relative;
  top: 0;
  vertical-align: middle;
}
select.gv-dropdown + .gv-dropdown-wrapper > a.gv-dropdown-toggle {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  color: #666666 !important;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  opacity: 1;
  overflow: hidden;
  padding: 8px 28px 8px 12px;
  text-align: left;
  text-decoration: none !important;
  text-overflow: ellipsis;
  transition-duration: 0.25s;
  transition-property: background-color, color, opacity;
  transition-timing-function: ease;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  width: 100%;
}
select.gv-dropdown + .gv-dropdown-wrapper > a.gv-dropdown-toggle:before {
  border-bottom: 2px solid #CFCFCF;
  border-left: 2px solid #CFCFCF;
  border-radius: 1px;
  content: "";
  display: block;
  float: right;
  height: 8px;
  left: 14px;
  position: relative;
  top: 3px;
  transform: rotate(-45deg);
  width: 8px;
}
select.gv-dropdown + .gv-dropdown-wrapper > a.gv-dropdown-toggle:focus,
select.gv-dropdown + .gv-dropdown-wrapper > a.gv-dropdown-toggle:hover {
  box-shadow: none;
  color: #333333;
  outline: none;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 1px 3px 7px rgba(0, 0, 0, 0.05);
  display: inline-block;
  list-style-type: none;
  margin: 0;
  overflow-x: visible;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  z-index: 99999;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child > a,
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child > span {
  border-radius: 3px 3px 0 0;
  padding: 8px 36px 8px 12px;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child > a:before,
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child > span:before {
  border-top: 2px solid #CFCFCF;
  border-right: 2px solid #CFCFCF;
  border-radius: 1px;
  content: "";
  display: block;
  float: right;
  height: 8px;
  left: 22px;
  position: relative;
  top: 6px;
  transform: rotate(-45deg);
  width: 8px;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child > aspan:before,
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child > spanspan:before {
  left: 0;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:last-child > a {
  border-radius: 0 0 3px 3px;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.focus > a {
  background-color: #FAFAFA !important;
  color: #333333 !important;
  text-decoration: none !important;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.focus.selected > a {
  color: #269D64 !important;
  text-decoration: none !important;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.optgroup > span {
  color: #9F9F9F !important;
  display: block;
  font-size: 12px;
  font-weight: normal;
  padding: 8px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.optgroup:first-child > span {
  border-radius: 3px 3px 0 0;
  padding: 8px 36px 8px 12px;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.optgroup:first-child > span:before {
  border-top: 2px solid #CFCFCF;
  border-right: 2px solid #CFCFCF;
  border-radius: 1px;
  content: "";
  display: block;
  float: right;
  height: 8px;
  left: 22px;
  position: relative;
  top: 6px;
  transform: rotate(-45deg);
  width: 8px;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.optgroup > ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.optgroup > ol > li > a {
  padding-left: 28px;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.selected > a {
  color: #4AB37E !important;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.selected > a:focus,
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.selected > a:hover {
  color: #269D64 !important;
  text-decoration: none !important;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li > a {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  border-radius: unset;
  color: #666666 !important;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  padding: 8px 12px;
  text-align: left;
  text-decoration: none !important;
  transition-duration: 0.25s;
  transition-property: background-color, color;
  transition-timing-function: ease;
  white-space: nowrap;
}
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li > a:focus,
select.gv-dropdown + .gv-dropdown-wrapper > ol.gv-dropdown-menu li > a:hover {
  background-color: #FAFAFA !important;
  box-shadow: none;
  color: #333333 !important;
  outline: none;
  text-decoration: none !important;
}
select.gv-dropdown.blue + .gv-dropdown-wrapper > a.gv-dropdown-toggle {
  color: #427e8f !important;
}
select.gv-dropdown.blue + .gv-dropdown-wrapper > a.gv-dropdown-toggle:before {
  border-bottom-color: #427e8f;
  border-left-color: #427e8f;
}
select.gv-dropdown.blue + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child > a:before,
select.gv-dropdown.blue + .gv-dropdown-wrapper > ol.gv-dropdown-menu > li:first-child span:before {
  border-top-color: #427e8f;
  border-right-color: #427e8f;
}
select.gv-dropdown.blue + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.optgroup:first-child > span:before {
  border-top-color: #427e8f;
  border-right-color: #427e8f;
}
select.gv-dropdown.blue + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.selected > a {
  color: #427e8f !important;
}
select.gv-dropdown.blue + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.selected > a:focus,
select.gv-dropdown.blue + .gv-dropdown-wrapper > ol.gv-dropdown-menu li.selected > a:hover {
  color: #427e8f !important;
}
.gv-duplicate-alert {
  cursor: help;
}
.gv-duplicate-alert > i {
  color: #FFD641;
}
ul.gv-paging {
  display: inline-block;
  font-size: 12px;
  list-style-type: none;
  margin: 0;
  white-space: nowrap;
}
ul.gv-paging > li {
  color: #666666;
  display: inline-block;
  margin: 0 5px;
}
ul.gv-paging > li.gv-paging-info {
  margin: 0 15px;
}
ul.gv-paging > li > button[data-role] {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  height: 22px;
  position: relative;
  transition-delay: 0.25s;
  transition-property: background-color, border-color;
  transition-timing-function: ease;
  vertical-align: middle;
  width: 22px;
}
ul.gv-paging > li > button[data-role]:focus,
ul.gv-paging > li > button[data-role]:hover {
  outline: none;
}
ul.gv-paging > li > button[data-role]::before {
  border-left: 2.5px solid #427e8f;
  border-radius: 2px;
  border-top: 2.5px solid #427e8f;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  top: 6px;
  width: 8px;
}
ul.gv-paging > li > button[data-role][data-role='next']::before {
  left: 5px;
  transform: rotate(135deg);
}
ul.gv-paging > li > button[data-role][data-role='previous']::before {
  left: 7px;
  transform: rotate(-45deg);
}
ol.gv-link-list,
ul.gv-link-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ol.gv-link-list > li,
ul.gv-link-list > li {
  display: block;
  margin-bottom: 12px;
  padding: 0;
}
ol.gv-link-list > li:last-child,
ul.gv-link-list > li:last-child {
  margin-bottom: 0;
}
ol.gv-link-list > li > a,
ul.gv-link-list > li > a {
  background-color: rgba(0, 0, 0, 0);
  color: #666666;
  cursor: pointer;
  display: block;
  font-size: 14px;
  padding: 0;
  transition-duration: 0.25s;
  transition-property: color;
  transition-timing-function: ease;
}
ol.gv-link-list > li > a:focus,
ul.gv-link-list > li > a:focus,
ol.gv-link-list > li > a:hover,
ul.gv-link-list > li > a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #4AB37E;
  outline: none;
}
ol.gv-link-list.dropdown-menu,
ul.gv-link-list.dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.0802);
  cursor: pointer;
  padding: 15px;
  text-align: left;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
ol.gv-link-list.dropdown-menu.open,
ul.gv-link-list.dropdown-menu.open {
  display: block;
}
ol.gv-link-list.dropdown-menu > li,
ul.gv-link-list.dropdown-menu > li {
  margin-bottom: 12px;
}
ol.gv-link-list.dropdown-menu > li:last-child,
ul.gv-link-list.dropdown-menu > li:last-child {
  margin-bottom: 0;
}
.gv-message {
  background-color: #FAFAFA;
  border: 1px solid #E8E8E8;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  padding: 20px;
}
.gv-message > .gv-message-body {
  color: #9F9F9F;
  font-size: 13px;
}
.gv-message > .gv-message-body > strong {
  color: #333333;
  font-weight: normal;
}
.gv-message > .gv-message-footer {
  margin-top: 15px;
  text-align: right;
}
.gv-message > .gv-message-header {
  color: #333333;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.gv-popup {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.0802);
  display: none;
  padding: 4px 12px;
  position: absolute;
}
.gv-popup::before {
  background-color: #FFFFFF;
  border-right: 1px solid #CFCFCF;
  border-top: 1px solid #CFCFCF;
  content: " ";
  display: block;
  height: 12px;
  position: absolute;
  left: 20px;
  top: -7px;
  transform: rotate(-45deg);
  width: 12px;
}
.gv-popup.in {
  display: block;
}
.gv-popup > .gv-popup-header {
  background-color: #FAFAFA;
  border-radius: 4px 4px 0 0;
  color: #333333;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin: -4px -12px 15px -12px;
  padding: 10px 14px;
  position: relative;
}
.gv-popup > .gv-popup-header::before {
  background-color: #FAFAFA;
  border-right: 1px solid #CFCFCF;
  border-top: 1px solid #CFCFCF;
  content: " ";
  display: block;
  height: 12px;
  position: absolute;
  left: 20px;
  top: -7px;
  transform: rotate(-45deg);
  width: 12px;
}
.gv-popup-target {
  position: relative;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.gv-popup-target .closed-only {
  display: initial;
}
.gv-popup-target .open-only {
  display: none;
}
.gv-popup-target.open .closed-only {
  display: none;
}
.gv-popup-target.open .open-only {
  display: initial;
}
label.gv-radiobutton {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 8px;
  position: relative;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}
label.gv-radiobutton > input[type='radio'] {
  position: absolute;
  left: -1px;
  top: -5px;
  width: 18px;
  height: 18px;
  /*&:checked, &[checked] {
      border: 10px solid white;
      outline: unset !important*/
  /* I added this one for Edge (chromium) support */
  /*}*/
}
label.gv-radiobutton > input[type='radio']:focus {
  outline-offset: 0;
}
label.gv-radiobutton > input[type='radio'] ~ em {
  background-color: #FFFFFF;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #CCCCCC;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  margin-right: 4px;
  opacity: 1;
  transition-duration: 0.25s;
  transition-property: background-color, box-shadow, opacity;
  transition-timing-function: ease;
  vertical-align: top;
  width: 16px;
  position: relative;
}
label.gv-radiobutton > input[type='radio']:checked ~ em,
label.gv-radiobutton > input[type='radio'][checked] ~ em {
  background-color: #4AB37E;
}
label.gv-radiobutton > input[type='radio']:disabled ~ em {
  cursor: not-allowed;
  opacity: 0.5;
}
label.gv-radiobutton > input[type='radio']:disabled ~ span {
  cursor: not-allowed;
}
label.gv-radiobutton > span {
  cursor: pointer;
  display: inline-block;
  text-align: left;
  white-space: normal;
}
label.gv-radiobutton:hover > input[type='radio']:not(:disabled) ~ em {
  box-shadow: 0 0 0 1px #4AB37E;
}
label.gv-radiobutton.dark > input[type='radio'] ~ em {
  background-color: #333333;
  border: 4px solid #333333;
  box-shadow: 0 0 0 1px #666666;
}
label.gv-radiobutton.dark > input[type='radio']:checked ~ em {
  background-color: #4AB37E;
  box-shadow: 0 0 0 1px #FFFFFF;
}
label.gv-radiobutton.disabled > em,
label.gv-radiobutton.disabled > span {
  cursor: not-allowed !important;
}
.gv-savestatus {
  color: #666666;
  cursor: help;
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
}
.gv-savestatus .text {
  display: inline-block;
  margin-left: 4px;
  white-space: nowrap;
}
.gv-savestatus.fixed {
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  display: inline-block;
  margin: 0 !important;
  padding: 8px 10px;
  position: fixed;
  right: 40px;
  top: 24px;
  z-index: 1000;
}
.gv-savestatus.middle {
  top: 50%;
  transform: translateY(-50%);
}
.gv-savestatus .fa-times-circle {
  color: #CC0000;
}
.gv-savestatus.fixed {
  border-width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition-delay: 0s, 0.5s, 0s, 0s, 0.5s;
  transition-duration: 0s, 0s, 0.5s, 0s, 0s;
  transition-property: border, height, opacity, padding, width;
  transition-timing-function: ease;
  width: 0;
}
.gv-savestatus.fixed.fade-in {
  height: auto;
  opacity: 1;
  width: auto;
}
.gv-savestatus.fixed.fade-in.fixed {
  padding: 8px 10px;
}
.gv-sliderpicker {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  width: 100%;
}
.gv-sliderpicker > div.labels {
  color: #CFCFCF;
  display: flex;
  font-size: 9px;
  line-height: 11px;
  margin-bottom: 5px;
}
.gv-sliderpicker > div.labels > label {
  flex: 1 1 50%;
  margin-bottom: 0;
  text-align: left;
}
.gv-sliderpicker > div.labels > label:not(:first-child) {
  margin-left: 10px;
}
.gv-sliderpicker > div.labels > label:last-child {
  text-align: right;
}
.gv-sliderpicker > div.slider {
  position: relative;
  height: 16px;
  padding: 0 16px 0 0;
}
.gv-sliderpicker > div.slider > em {
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.gv-sliderpicker > div.slider > span {
  background-color: #CFCFCF;
  border-radius: 6px;
  display: inline-block;
  height: 6px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.gv-sliderpicker > div.slider > span.highlight {
  background-color: #269D64;
  width: 0;
}
#thank-you-save-status {
  position: relative;
  margin-right: 20px;
}
#thank-you-save-status .gv-savestatus.fixed {
  right: 51px;
}
#designerheader .gv-savestatus {
  position: relative;
}
.designer-convert .gv-savestatus {
  margin-right: 40px;
  margin-top: 20px;
}
#save-status.email-canvas {
  display: inline-block;
  margin-right: 20px;
}
#save-status.email-canvas .gv-savestatus {
  position: relative;
}
.gv-scrollbar {
  background-color: #E8E8E8;
  border-radius: 8px;
  display: block;
  height: 8px;
  margin: 8px 0;
  position: relative;
}
.gv-scrollbar.horizontal {
  width: 100%;
}
.gv-scrollbar.horizontal > .handle {
  height: 8px;
}
.gv-scrollbar.vertical {
  height: 99%;
  width: 8px;
}
.gv-scrollbar.vertical > .handle {
  width: 8px;
}
.gv-scrollbar > .handle {
  background-color: #269D64;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
}
body.gv-scrollbar-scrolling {
  user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  -webkit-user-select: none !important;
}
.modal.v2.gv-shared-edit > .modal-dialog {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
}
.modal.v2.gv-shared-edit.emailmessage > .modal-dialog {
  width: 750px;
}
.modal.v2.gv-shared-edit.has-alert > .modal-dialog {
  width: 750px;
}
.gv-tagpicker {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 0 3px 23px rgba(0, 0, 0, 0.0802);
  display: none;
  padding: 12px 15px;
  width: 340px;
}
.gv-tagpicker.right {
  transform: translateX(-100%);
}
.gv-tagpicker.above {
  transform: translateY(-120%);
}
.gv-tagpicker.show {
  display: inline-block;
  position: absolute;
  z-index: 99999;
}
.gv-tagpicker > div > div {
  display: block;
  margin-top: 10px;
}
.gv-tagpicker > div > div.taglist.input {
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  padding: 8px 10px;
  position: relative;
  transition: border-color ease 0.25s;
}
.gv-tagpicker > div > div.taglist.input.focus {
  border-color: #4AB37E;
}
.gv-tagpicker > div > div.taglist:not(.input) > ol > li {
  cursor: pointer;
}
.gv-tagpicker > div > div.taglist > ol {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.gv-tagpicker > div > small {
  color: #666666;
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  margin-left: 5px;
  vertical-align: middle;
}
.gv-tagpicker > div > strong {
  color: #333333;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  vertical-align: middle;
}
.gv-tagpicker .search {
  display: inline-block;
}
.gv-tagpicker .search .gv-scrollbar > .handle {
  background-color: #CFCFCF;
}
.gv-tagpicker .search > input {
  border: 0;
  outline: none !important;
}
.gv-tagpicker .search .results {
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 3px 23px rgba(0, 0, 0, 0.0802);
  left: -2px;
  margin-top: 18px;
  position: absolute;
  width: 310px;
  z-index: 99999;
}
.gv-tagpicker .search .results.above {
  bottom: 75px;
}
.gv-tagpicker .search .results > a.dismiss {
  cursor: pointer;
  position: absolute;
  right: 6px;
  top: 4px;
}
.gv-tagpicker .search .results > a.dismiss > i {
  color: #9F9F9F;
  font-size: 20px;
}
.gv-tagpicker .search .results > a.dismiss:hover > i {
  color: #666666;
}
.gv-tagpicker .search .results > div.scroll {
  height: 260px;
  position: absolute;
  right: 8px;
  top: 23px;
  width: 8px;
}
.gv-tagpicker .search .results > div.scrollable {
  border-radius: 4px;
  max-height: 300px;
  overflow: hidden;
}
.gv-tagpicker .search .results > div.scrollable > ol {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
.gv-tagpicker .search .results > div.scrollable > ol > li {
  background-color: rgba(0, 0, 0, 0);
  color: #666666;
  cursor: pointer;
  display: block;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 20px 10px 15px;
  transition-duration: 0.25s;
  transition-property: background-color, color;
  transition-timing-function: ease;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.gv-tagpicker .search .results > div.scrollable > ol > li:hover,
.gv-tagpicker .search .results > div.scrollable > ol > li.focus {
  background-color: #FAFAFA;
  color: #333333;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  input[type=range].gv-range.ie10up {
    height: 70px;
  }
}
input[type=range].gv-range {
  display: inline-block;
  margin: 0;
  height: 20px;
  position: relative;
  top: 10px;
  background: transparent;
  -webkit-appearance: none;
}
input[type=range].gv-range:focus::-webkit-slider-runnable-track,
input[type=range].gv-range:hover::-webkit-slider-runnable-track {
  background: #4AB37E;
  border: 0px solid #EEEEEE;
}
input[type=range].gv-range:focus::-ms-fill-lower,
input[type=range].gv-range:hover::-ms-fill-lower {
  background: #4AB37E;
  border: 0px solid #EEEEEE;
}
input[type=range].gv-range:focus::-ms-fill-upper,
input[type=range].gv-range:hover::-ms-fill-upper {
  background: #4AB37E;
  border: 0px solid #EEEEEE;
}
input[type=range].gv-range:focus:not(:focus-visible),
input[type=range].gv-range:hover:not(:focus-visible) {
  outline: none;
}
input[type=range].gv-range::-webkit-slider-runnable-track {
  background: #269D64;
  border: 0px solid #CFCFCF;
  border-radius: 2px;
}
input[type=range].gv-range::-moz-range-track {
  background: #269D64;
  border: 0px solid #CFCFCF;
  border-radius: 2px;
}
input[type=range].gv-range::-ms-track {
  background: #269D64;
  border: 0px solid #CFCFCF;
  border-radius: 2px;
}
input[type=range].gv-range::-ms-fill-lower {
  background: #269D64;
  border: 0 solid #CFCFCF;
  border-radius: 2px;
}
input[type=range].gv-range::-ms-fill-upper {
  background: #269D64;
  border: 0 solid #CFCFCF;
  border-radius: 2px;
}
output.gv-range-output {
  position: absolute;
  background: #333;
  text-align: center;
  color: white;
  border-radius: 4px;
  bottom: 100%;
  padding: 5px;
  transition: opacity ease 0.25s;
}
output.gv-range-output.in {
  opacity: 1;
}
output.gv-range-output.out {
  opacity: 0;
}
output.gv-range-output:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}
.modal.v2.labelPicker .modal-dialog {
  width: 300px;
}
.modal.v2.labelPicker .modal-dialog .modal-content .gv-form {
  margin-bottom: 0;
}
.modal.v2.labelPicker .modal-dialog .modal-content .gv-form label.gv-input {
  margin-bottom: 4px;
}
.modal.v2.labelPicker .modal-dialog .modal-content .gv-form label.gv-input > input {
  margin-bottom: 0;
}
.modal.v2.labelPicker .modal-dialog .modal-content ul.labels {
  display: block;
  list-style-type: none;
  margin: 0;
  max-height: 235px;
  padding: 0;
  overflow-y: auto;
}
.modal.v2.labelPicker .modal-dialog .modal-content ul.labels li {
  background-color: #666666;
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  margin: 3px 2px;
  padding: 3px 5px;
  white-space: nowrap;
}
.gv-picker {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 0 3px 23px 0 rgba(0, 0, 0, 0.0802);
  padding: 16px;
  position: absolute;
  transform: translateX(-100%);
}
.gv-picker .gv-picker-title {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.54px;
  margin-bottom: 12px;
}
.gv-table {
  background-color: #F7F7F7;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  margin: 20px 0;
}
.gv-table.no-scroll {
  overflow: hidden;
}
.gv-table > table {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.gv-table > table > tbody > tr:first-child > td {
  padding-top: 20px;
}
.gv-table > table > tbody > tr:last-child > td {
  padding-bottom: 20px;
}
.gv-table > table > tbody > tr > td {
  background-color: #FFFFFF;
  border-right: 1px solid #CFCFCF;
  font-size: 13px;
  text-align: left;
  padding: 10px 20px;
}
.gv-table > table > tbody > tr > td:last-child {
  border-right: none;
}
.gv-table > table > tbody > tr > td.no-data {
  font-style: italic;
  padding: 30px !important;
  text-align: center;
}
.gv-table > table > tfoot > tr > td,
.gv-table > table > tfoot > tr > th {
  border-top: 1px solid #CFCFCF;
}
.gv-table > table > thead > tr > td,
.gv-table > table > thead > tr > th {
  border-bottom: 1px solid #CFCFCF;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.gv-table > table > thead > tr > td.sortable,
.gv-table > table > thead > tr > th.sortable {
  color: #666666;
  cursor: pointer;
  transition: color ease 0.25s;
  white-space: nowrap;
}
.gv-table > table > thead > tr > td.sortable:hover,
.gv-table > table > thead > tr > th.sortable:hover {
  color: #333333;
}
.gv-table > table > thead > tr > td.sortable::after,
.gv-table > table > thead > tr > th.sortable::after {
  content: '\f0dc';
  display: inline-block;
  font: normal normal normal 14px/1 "Font Awesome 5 Pro";
  font-weight: bold;
  margin-left: 8px;
}
.gv-table > table > thead > tr > td.sortable.asc::after,
.gv-table > table > thead > tr > th.sortable.asc::after {
  content: '\f0de';
}
.gv-table > table > thead > tr > td.sortable.desc::after,
.gv-table > table > thead > tr > th.sortable.desc::after {
  content: '\f0dd';
}
.gv-table > table > tfoot > tr > td,
.gv-table > table > thead > tr > td,
.gv-table > table > tfoot > tr > th,
.gv-table > table > thead > tr > th {
  color: #666666;
  background-color: transparent;
  border-right: 1px solid #CFCFCF;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  padding: 10px 20px;
}
.gv-table > table > tfoot > tr > td > i,
.gv-table > table > thead > tr > td > i,
.gv-table > table > tfoot > tr > th > i,
.gv-table > table > thead > tr > th > i {
  display: inline-block;
  margin-right: 5px;
}
.gv-table > table > tfoot > tr > td:last-child,
.gv-table > table > thead > tr > td:last-child,
.gv-table > table > tfoot > tr > th:last-child,
.gv-table > table > thead > tr > th:last-child {
  border-right: none;
}
.gv-table.narrow > table > tbody > tr > td,
.gv-table.narrow > table > tfoot > tr > td,
.gv-table.narrow > table > thead > tr > td,
.gv-table.narrow > table > tbody > tr > th,
.gv-table.narrow > table > tfoot > tr > th,
.gv-table.narrow > table > thead > tr > th {
  padding: 10px;
}
.gv-table-actions {
  text-align: right;
}
.gv-table-actions > .gv-table-action {
  color: #666666;
  display: inline-block;
  font-size: 16px;
  margin: 0 8px;
  transition: color ease 0.25s;
}
.gv-table-actions > .gv-table-action > i {
  color: #666666;
  transition: color ease 0.25s;
}
.gv-table-actions > .gv-table-action:hover {
  color: #333333;
}
.gv-table-actions > .gv-table-action:hover > i {
  color: #333333;
}
.gv-tab-container > .gv-tab-header:after {
  border: none;
  clear: both;
  content: "";
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
}
.gv-tab-container > .gv-tab-header .actions {
  float: right;
}
.gv-tab-container > .gv-tab-header .actions.search {
  position: relative;
  top: -8px;
}
.gv-tab-container > .gv-tab-header .actions.search > .btnV2 {
  margin-right: 10px;
  position: relative;
  top: 1px;
  vertical-align: top;
}
.gv-tab-container > .gv-tab-header .gv-tabs {
  background-color: transparent;
  border: none;
  display: inline-block;
  list-style-type: none;
  margin: 0 30px 0 0;
  padding: 0;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li {
  color: #666666;
  display: inline-block;
  height: 31px;
  padding: 0;
  transition-duration: 0.25s;
  transition-property: background-color, color;
  transition-timing-function: ease;
  vertical-align: bottom;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li > a {
  color: #666666;
  cursor: pointer;
  display: block;
  opacity: 1;
  transition-duration: 0.25s;
  transition-property: color, opacity;
  transition-timing-function: ease;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li > a > i {
  color: #666666;
  transition-duration: 0.25s;
  transition-property: color;
  transition-timing-function: ease;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li > a > i:focus,
.gv-tab-container > .gv-tab-header .gv-tabs > li > a > i:hover {
  color: #666666;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:focus,
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:hover {
  box-shadow: none;
  color: #333333;
  outline: none;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:focus > i,
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:hover > i {
  color: #333333;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:focus > i:focus,
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:hover > i:focus,
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:focus > i:hover,
.gv-tab-container > .gv-tab-header .gv-tabs > li > a:hover > i:hover {
  color: #333333;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li.disabled > a {
  cursor: not-allowed;
  opacity: 0.5;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(:first-child) {
  margin-left: 15px;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(.link) {
  background-color: #F7F7F7;
  border: 1px solid #CFCFCF;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(.link).active {
  background-color: #FFFFFF;
  color: #4AB37E;
  position: relative;
  top: 1px;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(.link).active > a {
  color: #4AB37E;
  padding: 6px 18px 8px 18px;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(.link).active > a > i {
  color: #4AB37E;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(.link):not(.disabled):not(.active):focus,
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(.link):not(.disabled):not(.active):hover {
  background-color: #CFCFCF;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li:not(.link) > a {
  padding: 7px 18px;
}
.gv-tab-container > .gv-tab-header .gv-tabs > li.link > a {
  font-size: 12px;
  font-weight: 500;
  margin: 7px 18px;
}
.gv-tab-container > .gv-tab-content {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 0 4px 4px 4px;
  padding: 15px;
}
.gv-tab-container.open > .gv-tab-content {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding: 0;
}
.gv-tag {
  background-color: #666666;
  border-radius: 4px;
  display: inline-block;
  margin: 2px 3px;
  padding: 3px 3px 3px 5px;
  vertical-align: middle;
  white-space: nowrap;
}
.gv-tag.gv-tag-readonly {
  padding-right: 5px;
}
.gv-tag > button {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
.gv-tag i,
.gv-tag i:hover,
.gv-tag i:focus {
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 100;
  margin: 0 1px 0 0;
  padding: 3px;
  vertical-align: middle;
}
.gv-tag > span {
  color: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 2px 1px;
  vertical-align: middle;
}
.gv-tag-picker {
  width: 275px;
}
.gv-tag-picker .btnV2 {
  width: 45%;
}
.gv-tag-picker .gv-tag-picker-tags {
  margin-bottom: 12px;
  max-height: 175px;
  overflow-x: auto;
}
.gv-tag-picker .gv-tag-picker-tags > ul {
  list-style-type: none;
  padding: 0;
}
.gv-tag-picker .gv-tag-picker-tags > ul > li {
  cursor: pointer;
  display: block;
  float: left;
  margin: 0 5px 5px 0;
}
.gv-text {
  color: #9F9F9F;
}
.gv-text.black {
  color: #333333;
}
.gv-text.dark {
  color: #666666;
}
.gv-text.bold {
  font-weight: 700;
}
.gv-text.medium-bold {
  font-weight: 600;
}
.gv-text.semi-bold {
  font-weight: 500;
}
.btnV2 {
  background-color: #4AB37E;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  padding: 9px 25px;
  transition-duration: 0.25s;
  transition-property: background-color, border-color, color;
  transition-timing-function: ease;
}
.btnV2.disabled {
  opacity: 0.7;
}
.btnV2:focus-visible {
  outline: solid 2px #000000;
}
.btnV2.btnV2-xs {
  font-size: 12px;
  padding: 5px 12px;
}
.btnV2.btnV2-sm {
  border-radius: 4px;
  font-size: 14px;
  padding: 7px 15px;
}
.btnV2.btnV2-end {
  border-radius: 0 4px 4px 0;
}
.btnV2.btnV2-start {
  border-radius: 4px 0 0 4px;
}
.btnV2.btnV2-end,
.btnV2.btnV2-start {
  border: 2px solid transparent;
}
.btnV2.btnV2-lg {
  border-radius: 6px;
  font-family: brandon-grotesque;
  font-size: 24px;
  padding: 10px 40px;
}
.btnV2.btnV2-xl {
  font-size: 20px;
  padding: 16px;
}
.btnV2.btnV2-block {
  display: block;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: 100%;
}
.btnV2:hover,
.btnV2:focus,
.btnV2:active {
  background-color: #269D64;
  box-shadow: none;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
}
.btnV2:hover:not(:focus-visible),
.btnV2:focus:not(:focus-visible),
.btnV2:active:not(:focus-visible) {
  outline: none;
}
.btnV2 > i:hover,
.btnV2:focus,
.btnV2:active {
  color: #FFFFFF;
}
.btnV2.btnV2-alt {
  background-color: #E9F7F1;
  border-color: #4AB37E;
  color: #4AB37E;
}
.btnV2.btnV2-alt:hover,
.btnV2.btnV2-alt:focus,
.btnV2.btnV2-alt:active {
  background-color: #D1EEE2;
  color: #4AB37E;
}
.btnV2.btnV2-alt > i:hover,
.btnV2.btnV2-alt:focus,
.btnV2.btnV2-alt:active {
  color: #4AB37E;
}
.btnV2.btnV2-blue {
  background-color: #67A0B1;
  color: #FFFFFF;
}
.btnV2.btnV2-blue:hover,
.btnV2.btnV2-blue:focus,
.btnV2.btnV2-blue:active {
  background-color: #427e8f;
}
.btnV2.btnV2-blue > i:hover,
.btnV2.btnV2-blue:focus,
.btnV2.btnV2-blue:active {
  color: #FFFFFF;
}
.btnV2.btnV2-blue-light {
  background-color: #FFFFFF;
  color: #427e8f;
}
.btnV2.btnV2-blue-light:hover,
.btnV2.btnV2-blue-light:focus,
.btnV2.btnV2-blue-light:active {
  background-color: #FAFAFA;
  color: #3F7C93;
}
.btnV2.btnV2-blue-light > i:hover,
.btnV2.btnV2-blue-light:focus,
.btnV2.btnV2-blue-light:active {
  color: #3F7C93;
}
.btnV2.btnV2-blue-white {
  border-color: #427e8f;
  background-color: #FFFFFF;
  color: #427e8f;
}
.btnV2.btnV2-blue-white:hover,
.btnV2.btnV2-blue-white:focus,
.btnV2.btnV2-blue-white:active {
  border-color: #427e8f;
  background-color: #427e8f;
  color: #FFFFFF;
}
.btnV2.btnV2-blue-white > i:hover,
.btnV2.btnV2-blue-white:focus,
.btnV2.btnV2-blue-white:active {
  color: #FFFFFF;
}
.btnV2.btnV2-dark {
  background-color: #666666;
  color: #FFFFFF;
}
.btnV2.btnV2-dark:hover,
.btnV2.btnV2-dark:focus,
.btnV2.btnV2-dark:active {
  background-color: #333333;
}
.btnV2.btnV2-dark > i:hover,
.btnV2.btnV2-dark:focus,
.btnV2.btnV2-dark:active {
  color: #EEEEEE;
}
.btnV2.btnV2-facebook {
  background-color: #3A559F;
  color: #FFFFFF;
}
.btnV2.btnV2-facebook:hover,
.btnV2.btnV2-facebook:focus,
.btnV2.btnV2-facebook:active {
  background-color: #546FB9;
}
.btnV2.btnV2-facebook > i:hover,
.btnV2.btnV2-facebook:focus,
.btnV2.btnV2-facebook:active {
  color: #FFFFFF;
}
.btnV2.btnV2-facebook.btnV2-xs {
  padding: 2px 7px;
}
.btnV2.btnV2-whatsapp {
  background-color: #59CE72;
  color: #FFFFFF;
}
.btnV2.btnV2-whatsapp:hover,
.btnV2.btnV2-whatsapp:focus,
.btnV2.btnV2-whatsapp:active {
  background-color: #6cc17e;
}
.btnV2.btnV2-whatsapp > i:hover,
.btnV2.btnV2-whatsapp:focus,
.btnV2.btnV2-whatsapp:active {
  color: #FFFFFF;
}
.btnV2.btnV2-whatsapp.btnV2-xs {
  padding: 2px 5px;
}
.btnV2.btnV2-gray {
  background-color: #E8E8E8;
  color: #9F9F9F;
  border-color: #CFCFCF;
}
.btnV2.btnV2-gray:hover,
.btnV2.btnV2-gray:focus,
.btnV2.btnV2-gray:active {
  background-color: #CFCFCF;
  color: #666666;
  border-color: #CFCFCF;
}
.btnV2.btnV2-gray > i:hover,
.btnV2.btnV2-gray:focus,
.btnV2.btnV2-gray:active {
  color: #666666;
}
.btnV2.btnV2-gray-light {
  background-color: #FFFFFF;
  color: #9F9F9F;
  border-color: #9F9F9F;
}
.btnV2.btnV2-gray-light:hover,
.btnV2.btnV2-gray-light:focus,
.btnV2.btnV2-gray-light:active {
  background-color: #FFFFFF;
  color: #666666;
  border-color: #666666;
}
.btnV2.btnV2-gray-light > i:hover,
.btnV2.btnV2-gray-light:focus,
.btnV2.btnV2-gray-light:active {
  color: #666666;
}
.btnV2.btnV2-twitter {
  background-color: #50ABF1;
  color: #FFFFFF;
}
.btnV2.btnV2-twitter:hover,
.btnV2.btnV2-twitter:focus,
.btnV2.btnV2-twitter:active {
  background-color: #6AC5FF;
}
.btnV2.btnV2-twitter > i:hover,
.btnV2.btnV2-twitter:focus,
.btnV2.btnV2-twitter:active {
  color: #FFFFFF;
}
.btnV2.btnV2-white {
  background-color: #FFFFFF;
  border-color: #4AB37E;
  color: #4AB37E;
}
.btnV2.btnV2-white:hover,
.btnV2.btnV2-white:focus,
.btnV2.btnV2-white:active {
  background-color: #4AB37E;
  color: #FFFFFF;
}
.btnV2.btnV2-white > i:hover,
.btnV2.btnV2-white:focus,
.btnV2.btnV2-white:active {
  color: #FFFFFF;
}
.btnV2.btnV2-whiteAlt {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #666666;
}
.btnV2.btnV2-whiteAlt:hover,
.btnV2.btnV2-whiteAlt:focus,
.btnV2.btnV2-whiteAlt:active {
  background-color: #666666;
  border-color: #666666;
  color: #FFFFFF;
}
.btnV2.btnV2-whiteAlt > i:hover,
.btnV2.btnV2-whiteAlt:focus,
.btnV2.btnV2-whiteAlt:active {
  color: #FFFFFF;
}
.btnV2.btnV2-white-red {
  background-color: #FFFFFF;
  border-color: #CCCCCC;
  color: #CC0000;
}
.btnV2.btnV2-white-red:hover,
.btnV2.btnV2-white-red:focus,
.btnV2.btnV2-white-red:active {
  background-color: #CC0000;
  color: #FFFFFF;
}
.btnV2.btnV2-white-red > i:hover,
.btnV2.btnV2-white-red:focus,
.btnV2.btnV2-white-red:active {
  color: #FFFFFF;
}
.btnV2.btnV2-link {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  color: #4AB37E;
}
.btnV2.btnV2-link:hover,
.btnV2.btnV2-link:focus,
.btnV2.btnV2-link:active {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  color: #269D64;
}
.btnV2.btnV2-link > i:hover,
.btnV2.btnV2-link:focus,
.btnV2.btnV2-link:active {
  color: #269D64;
}
.btnV2.btnV2-link.dark-gray {
  color: #666666;
}
.btnV2.btnV2-link.dark-gray:hover,
.btnV2.btnV2-link.dark-gray:focus,
.btnV2.btnV2-link.dark-gray:active {
  color: #333333;
}
.btnV2.btnV2-link.dark-gray > i:hover,
.btnV2.btnV2-link.dark-gray:focus,
.btnV2.btnV2-link.dark-gray:active {
  color: #333333;
}
.btnV2.btnV2-link.gray {
  color: #9F9F9F;
}
.btnV2.btnV2-link.gray:hover,
.btnV2.btnV2-link.gray:focus,
.btnV2.btnV2-link.gray:active {
  color: #666666;
}
.btnV2.btnV2-link.gray > i:hover,
.btnV2.btnV2-link.gray:focus,
.btnV2.btnV2-link.gray:active {
  color: #666666;
}
.btnV2.btnV2-link.narrow {
  padding: 9px 0;
}
.btnV2.btnV2-link.narrow.btnV2-xs {
  padding: 5px 0;
}
.btnV2.btnV2-link.narrow.btnV2-sm {
  padding: 7px 0;
}
.btnV2.btnV2-link.narrow.btnV2-lg {
  padding: 10px 0;
}
.btnV2.btnV2-link.narrow.btnV2-lg {
  padding: 16px 0;
}
.btnV2.btnV2-clear {
  background: transparent;
  color: #4AB37E;
  border-color: #4AB37E;
}
.btnV2.btnV2-clear:hover,
.btnV2.btnV2-clear:focus,
.btnV2.btnV2-clear:active {
  color: #3b8f65;
  border-color: #3b8f65;
}
.btn-group-V2 {
  background-color: #FFFFFF !important;
  border: solid 1px #E8E8E8 !important;
  border-radius: 100px !important;
  display: inline-block !important;
  padding: 3px !important;
  white-space: nowrap !important;
}
.btn-group-V2 a {
  color: #4AB37E;
  background-color: #FFFFFF !important;
  border-radius: 100px !important;
  cursor: pointer !important;
  display: inline-block !important;
  font-size: 12px !important;
  padding: 7px 9px !important;
  text-decoration: none !important;
  transition-duration: 0.25s !important;
  transition-property: background-color, color !important;
  transition-timing-function: ease !important;
  white-space: nowrap !important;
  position: unset !important;
  border: none !important;
  top: unset !important;
  bottom: unset !important;
  left: unset !important;
  right: unset !important;
}
.btn-group-V2 a:hover,
.btn-group-V2 a:focus,
.btn-group-V2 a:active {
  color: #333333 !important;
  text-decoration: none !important;
}
.btn-group-V2 a.active {
  color: #FFFFFF !important;
  background-color: #4AB37E !important;
}
.btn-group-V2 a.active:hover,
.btn-group-V2 a.active:focus,
.btn-group-V2 a.active:active {
  background-color: #269D64 !important;
  text-decoration: none !important;
}
.btn-group-V2 a.active:focus-visible {
  outline: auto 1px #000000;
}
.btn-group-V2.btn-group-V2-dark a {
  color: #666666 !important;
  background-color: #FFFFFF !important;
}
.btn-group-V2.btn-group-V2-dark a:hover,
.btn-group-V2.btn-group-V2-dark a:focus,
.btn-group-V2.btn-group-V2-dark a:active {
  color: #333333 !important;
}
.btn-group-V2.btn-group-V2-dark a.active {
  color: #FFFFFF !important;
  background-color: #666666 !important;
}
.btn-group-V2.btn-group-V2-dark a.active:hover,
.btn-group-V2.btn-group-V2-dark a.active:focus,
.btn-group-V2.btn-group-V2-dark a.active:active {
  background-color: #333333 !important;
}
.modal.v2.full-screen {
  overflow: hidden;
}
.modal.v2.full-screen > .modal-dialog {
  padding: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}
.modal.v2.full-screen > .modal-dialog > .modal-content {
  border-radius: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
}
.modal.v2 button:focus:not(:focus-visible) {
  outline: none;
}
.modal.v2 .cancel {
  background: none;
  border: none;
  border-radius: 4px;
  color: #666666;
  cursor: pointer;
  transition: color 0.25s ease;
}
.modal.v2 .cancel:focus,
.modal.v2 .cancel:hover {
  color: #333333;
}
.modal.v2 h2 {
  font-family: brandon-grotesque;
  font-size: 36px;
  color: #333333;
}
.modal.v2 h4 {
  font-family: brandon-grotesque;
  font-size: 24px;
  color: #333333;
}
.modal.v2 h6 {
  font-family: brandon-grotesque;
  font-size: 16px;
  color: #333333;
}
.modal.v2 hr {
  margin: 10px;
}
.modal.v2 .modal-body {
  font-size: 14px;
  padding: 0 40px 15px 40px;
}
.modal.v2 .modal-body.split {
  padding: 0;
}
.modal.v2 .modal-body.split .modal-body-part {
  padding: 0 40px;
}
.modal.v2 .modal-body.split .modal-body-part.end {
  padding-bottom: 15px;
}
.modal.v2 .modal-content {
  border-color: #979797;
  border-radius: 6px;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.modal.v2 .modal-content .modal-sub-header {
  color: #666666;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}
.modal.v2 .modal-footer {
  border: 0;
  margin-top: 0;
}
.modal.v2 .modal-header {
  background-color: white;
  border: none;
  border-radius: 6px;
  padding: 15px 30px 10px 40px;
}
.modal.v2 .modal-header .close {
  font-size: 28px;
  font-weight: 100;
  margin-right: -15px;
  margin-top: -5px;
  opacity: 0.5;
  position: relative;
  z-index: 1000;
}
.modal.v2 .modal-header .close:focus-visible {
  outline: auto 1px #4AB37E;
  outline-offset: 2px;
}
.modal.v2 .modal-header .modal-title {
  color: #333333;
  font-family: 'Open Sans';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
.modal.v2 .modal-header .modal-title.gray {
  color: #666666;
}
.modal.v2 .modal-header .modal-title.small {
  font-size: 18px;
}
.modal.v2.top {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}
.modal.v2.top > .modal-dialog > .modal-content {
  box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.0802);
}
.modal.v2 .mce-tinymce.mce-container.mce-panel {
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-top-part::before {
  display: none;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar {
  background-color: #FAFAFA;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn-group {
  padding: 5px 10px;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn {
  background-color: transparent;
  color: #666666;
  margin: 0 4px;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn button,
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn button > i.mce-ico {
  color: #666666;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn.mce-active {
  background-color: #CFCFCF;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn.mce-active:hover,
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn.mce-active button,
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn.mce-active button > i.mce-ico {
  color: #333333;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn.mce-listbox {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  margin-right: 25px;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn.mce-listbox.mce-active {
  border-color: #4AB37E;
}
.modal.v2 .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn.mce-listbox.mce-active .mce-caret {
  border-top-color: #666666;
}
.modal.v2.gv-tinymce-small .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar {
  background-color: #FAFAFA;
}
.modal.v2.gv-tinymce-small .mce-tinymce.mce-container.mce-panel .mce-container.mce-toolbar .mce-btn-group {
  padding: 2px 0;
}
.modal.v2 .qq-uploader {
  background-color: #E9F7F1;
}
.modal.v2 .qq-uploader.dropzone {
  border-color: #2BB573;
}
.modal.v2 .qq-uploader.dropzone .fa {
  border-color: #2BB573;
  color: #2BB573;
}
.modal.v2 .qq-upload-button {
  color: #2BB573;
}
.modal.v2 .qq-upload-list li {
  background-color: #fff;
}
.modal.v2 .qq-upload-list {
  box-shadow: none;
}
.modal.v2 .qq-progress-bar {
  background-color: #2BB573;
}
.alert a:not(.btn) {
  color: #427e8f;
  cursor: pointer;
}
.alert a:not(.btn):link,
.alert a:not(.btn):visited,
.alert a:not(.btn):active {
  color: #427e8f;
}
.alert a:not(.btn):link > i.fa,
.alert a:not(.btn):visited > i.fa,
.alert a:not(.btn):active > i.fa,
.alert a:not(.btn):link > i.fal,
.alert a:not(.btn):visited > i.fal,
.alert a:not(.btn):active > i.fal,
.alert a:not(.btn):link > i.far,
.alert a:not(.btn):visited > i.far,
.alert a:not(.btn):active > i.far,
.alert a:not(.btn):link > i.fas,
.alert a:not(.btn):visited > i.fas,
.alert a:not(.btn):active > i.fas {
  color: #427e8f;
}
.alert a:not(.btn):hover,
.alert a:not(.btn):focus {
  color: #325f6c;
}
.alert a:not(.btn):hover > i.fa,
.alert a:not(.btn):focus > i.fa,
.alert a:not(.btn):hover > i.fal,
.alert a:not(.btn):focus > i.fal,
.alert a:not(.btn):hover > i.far,
.alert a:not(.btn):focus > i.far,
.alert a:not(.btn):hover > i.fas,
.alert a:not(.btn):focus > i.fas {
  color: #325f6c;
}
.modal.reorderEventSections > .modal-dialog {
  left: 50%;
  margin: 0;
  position: relative;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 560px;
}
.modal.reorderEventSections > .modal-dialog .modal-body {
  padding-bottom: 0px;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections {
  display: block;
  list-style-type: none;
  margin-top: 15px;
  padding: 0;
  width: 100%;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li.placeholder {
  border: none;
  display: block;
  height: 5px;
  margin: 0;
  padding: 0;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li.placeholder:last-child {
  border-top: 1px solid #E8E8E8;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder) {
  background-color: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  display: flex;
  font-size: 14px;
  line-height: 20px;
  padding: 15px;
  font-weight: bold;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder).header {
  border-top: 2px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder).ui-sortable-helper {
  border-bottom: 1px solid #E8E8E8;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder) .name {
  flex: 1 0 auto;
  width: 70px;
  color: #333333;
  text-transform: uppercase;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder) .display {
  flex: 1 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder) .display > * {
  width: 80px;
  margin-right: 0;
  text-align: center;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder) .handle {
  flex: 0 0 auto;
}
.modal.reorderEventSections > .modal-dialog .modal-body ol.event-sections > li:not(.placeholder) .handle > i {
  color: #9F9F9F;
  cursor: move;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .not-screen-large {
    display: initial;
  }
  .not-screen-medium {
    display: initial;
  }
  .not-screen-small {
    display: none;
  }
  .screen-large {
    display: none;
  }
  .screen-medium {
    display: none;
  }
  .screen-small {
    display: initial;
  }
}
@media screen and (max-width: 1279px) {
  .not-screen-large {
    display: initial;
  }
  .not-screen-medium {
    display: none;
  }
  .not-screen-small {
    display: initial;
  }
  .screen-large {
    display: none;
  }
  .screen-large.only {
    display: none;
  }
  .screen-medium {
    display: initial;
  }
  .screen-small {
    display: initial;
  }
  .screen-small.only {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .not-screen-large {
    display: none;
  }
  .not-screen-medium {
    display: initial;
  }
  .not-screen-small {
    display: initial;
  }
  .screen-large {
    display: initial;
  }
  .screen-medium {
    display: initial;
  }
  .screen-medium.only {
    display: none;
  }
  .screen-small {
    display: initial;
  }
  .screen-small.only {
    display: none;
  }
}
@media print {
  .printonly {
    display: inherit;
  }
  .dropdown-menu,
  .modal,
  .noprint {
    display: none;
  }
  html,
  body {
    color: black;
  }
}
.ie89Only {
  display: none;
}
.ie8 .ie89Only,
.ie9 .ie89Only {
  display: block;
}
.ie8 .ie89Hide,
.ie9 .ie89Hide {
  display: none !important;
}
.ie8 .input-password {
  background-color: #FFFFFF !important;
  color: #464646 !important;
  font-family: Arial !important;
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf) format('truetype');
}
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  color: #767676;
}
body.font-arial {
  font-family: Arial !important;
}
body.font-arial #notificationbar {
  font-family: Arial !important;
}
body.modal-open {
  margin: 0;
  overflow: hidden;
}
.visually-hidden {
  position: absolute;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
#pagecontainer {
  height: 100vh;
  overflow: hidden;
}
#notificationbar {
  z-index: 2;
  position: relative;
  width: 100%;
  background: #373737;
  color: white;
  font-size: 18px;
  font-family: brandon-grotesque;
}
@media screen and (max-width: 550px) {
  #notificationbar {
    font-size: 14px;
  }
}
#notificationbar #notificationbar__inner {
  display: flex;
  flex-flow: column;
}
#notificationbar #notificationbar__inner > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-bottom: 1px solid white;
}
#notificationbar #notificationbar__inner > div.hostnamewarning {
  align-items: center;
  background-color: #EEEEEE;
  color: #666666;
  display: flex;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  justify-content: center;
  padding: 10px;
  text-align: center;
}
#notificationbar #notificationbar__inner > div.hostnamewarning > i {
  color: #4AB37E;
  font-size: 20px;
  margin-right: 5px;
}
#notificationbar #notificationbar__inner .status {
  flex: 1;
  border-bottom: none;
}
#notificationbar #notificationbar__inner .status a {
  color: #4AB37E;
  text-transform: uppercase;
}
@media screen and (min-width: 550px) {
  #notificationbar #notificationbar__inner .status a {
    margin: 0 10px;
  }
}
#notificationbar #notificationbar__inner .status .status-menu {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
#notificationbar #notificationbar__inner .status .status-menu > * {
  margin: 0 4px;
}
@media screen and (max-width: 550px) {
  #notificationbar #notificationbar__inner .status .status-menu {
    text-align: center;
  }
}
@media screen and (min-width: 550px) {
  #notificationbar #notificationbar__inner .status .status-menu i {
    margin-right: 10px;
  }
}
#maincontainer {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
a {
  color: #427e8f;
}
a:hover,
a:focus,
a:active {
  color: #3F7C93;
}
var {
  font-style: inherit;
}
.tags {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tags .gv-tag {
  cursor: pointer;
  padding: 3px 5px;
}
@media (max-width: 550px) {
  #modalMessaging .modal-content {
    min-height: unset;
    padding-bottom: unset;
  }
  #modalMessaging .modal-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
  }
}
#modalMessaging .modal-footer {
  padding: 0;
}
#modalMessaging .modal-header {
  padding-right: 25px;
  padding-left: 20px;
  font-family: 'Open Sans';
}
#modalMessaging .conversation-list {
  max-height: 350px;
  overflow-y: auto;
  padding: 20px 0;
}
#modalMessaging .conversation-list > div.message {
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 20px;
  padding: 13px 20px;
}
#modalMessaging .conversation-list > div.message .body {
  color: #333333;
}
#modalMessaging .conversation-list > div.message .date {
  color: #9F9F9F;
}
#modalMessaging .conversation-list > div.message ol.files {
  display: inline-block;
  list-style-type: none;
  margin: 10px 0 0 0;
  padding: 0;
}
#modalMessaging .conversation-list > div.message ol.files > li {
  display: inline;
}
#modalMessaging .conversation-list > div.message ol.files > li:not(:last-child)::after {
  content: ', ';
}
#modalMessaging .conversation-list > div.message .message-title {
  color: #333333;
}
#modalMessaging .conversation-list > div.message.in {
  background-color: #E9F7F1;
  margin-left: 0;
  margin-right: 30px;
}
#modalMessaging .conversation-list > div.message.out {
  background-color: #F7F7F7;
  margin-left: 30px;
  margin-right: 5px;
}
#modalMessaging .send-container {
  background-color: #F8F8F8;
  border-radius: 0px 0px 10px 10px;
  padding: 20px;
  border-top: 1px solid #CCC;
}
#modalMessaging .send-container textarea {
  width: 100%;
  height: 90px;
  padding: 10px;
}
#modalMessaging .send {
  position: relative;
  overflow: hidden;
}
#modalMessaging .dropzone {
  padding: 15px 0;
}
#modalMessaging .qq-upload-button,
#modalMessaging .qq-upload-button-hover {
  display: inline;
  width: 75px;
  border: 0;
  padding: 0;
  text-align: center;
  background: none;
  border: none;
  color: #6A91A3;
  box-shadow: none;
  float: none;
}
#modalMessaging .send .qq-uploader {
  padding-left: 10px;
  padding-right: 10px;
}
#modalMessaging .qq-uploader-minimize {
  min-height: 0;
  border: 0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
#modalMessaging .send .qq-upload-list li.qq-upload-success:last-child {
  margin-bottom: 10px;
}
#modalMessaging .qq-upload-list li {
  border-radius: 5px;
  margin-top: 3px;
  background-color: #DFF3F6;
  line-height: normal;
  font-size: 13px;
  text-align: left;
}
#modalMessaging .qq-upload-list li.qq-upload-success {
  background-color: #8DB3B7;
  color: #FFFFFF;
}
#modalMessaging .qq-upload-list i {
  font-size: 16px;
  margin-right: 10px;
}
#modalMessaging .qq-upload-size {
  color: #666;
}
#modalMessaging .qq-progress-bar {
  margin-top: 3px;
  height: 3px;
}
#modalMessaging .qq-upload-drop-area-active {
  background-color: #F0FAFF;
  border: initial;
  border-top: 1px solid #CCC;
  box-shadow: none;
}
#modalMessaging .qq-upload-file {
  display: inline;
}
#modalMessaging .fa-times-circle {
  color: white;
  font-size: 16px;
}
#modalMessaging .file {
  display: inline-block;
  padding: 10px;
  font-size: 12px;
}
#modalMessaging .file a {
  color: #999999;
}
#cardcontainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#cardcontainer .no-flick {
  -webkit-transform: translate3d(0, 0, 0);
}
#cardcontainer .img-liningflap {
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -o-transform-origin: 0% 0%;
  position: absolute;
}
#cardcontainer .img-flap {
  transform-origin: 0% 10px;
  -ms-transform-origin: 0% 10px;
  -webkit-transform-origin: 0% 10px;
  -moz-transform-origin: 0% 10px;
  -o-transform-origin: 0% 10px;
  position: absolute;
}
#cardcontainer img {
  max-width: 100%;
  min-height: 1px;
  min-width: 1px;
}
#cardcontainer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#cardcontainer .imageMap {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#cardcontainer .imageMap .hotspots {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 550px) {
  #cardcontainer .imageMap .hotspots div:hover a {
    background: #EFF375;
    opacity: 0.3;
    border: 1px solid #F7FF00;
  }
}
#cardcontainer .imageMap a {
  display: block;
  position: absolute;
  background: #000;
  opacity: 0;
}
#cardcontainer .imageMap .animationMap {
  clip-path: inset(0);
}
#cardcontainer .imageMap .animationMap .animation-container {
  position: absolute;
  display: block;
  cursor: unset;
}
#cardcontainer .page-card,
#cardcontainer #wrapper,
#cardcontainer .wrapper {
  width: 100%;
  height: 100%;
}
#cardcontainer #wrapper {
  padding: 15px;
}
#cardcontainer #envelopeFlap > div {
  transform-origin: top;
}
#cardcontainer .img-liningflap {
  position: absolute;
  top: -75.1%;
  left: 0;
  width: 100%;
  transform-origin: bottom;
}
#cardcontainer .img-liningflap.portrait,
#cardcontainer .img-liningflap.landscape-l {
  top: -91.4%;
}
#cardcontainer .img-liningflap.landscape-s {
  top: -93.5%;
}
#cardcontainer .centerCard {
  width: 100%;
}
#cardcontainer .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
#openButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#modalSMSOptIn .h4 {
  font-size: 30px;
  margin-bottom: 10px;
}
#modalSMSOptIn .modal-dialog {
  width: 90%;
  max-width: 340px;
  text-align: center;
  margin: 0 auto;
}
#modalSMSOptIn .modal-body {
  padding: 15px;
}
#modalSMSOptIn div {
  margin: 10px 0;
}
#modalSMSOptIn div.updates {
  margin-bottom: 25px;
}
#modalSMSOptIn div.rates {
  font-size: 13px;
  color: #999999;
  margin-top: 25px;
}
#card-overlay {
  background-color: black;
}
#card-overlay .nff-sticker-container {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
}
#card-overlay .nff-sticker-container img {
  width: 100px;
}
@media screen and (max-width: 550px) {
  #card-overlay .nff-sticker-container img {
    width: 75px;
  }
}
#card-overlay .controls {
  position: absolute;
}
#card-overlay .controls .button {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: 1px solid #E2E3E4;
}
#card-overlay .controls .button:hover {
  background-color: #000000;
  cursor: pointer;
}
#card-overlay .controls .button img.flipcard {
  margin-right: 5px;
  height: 15px;
  filter: brightness(2);
}
#card-overlay .controls .button a {
  color: inherit;
}
#card-overlay .controls .button a:hover {
  text-decoration: none;
}
#card-overlay .controls .menu {
  margin: 0 5px;
  position: relative;
}
#card-overlay .controls .menu.open > button {
  opacity: 1;
}
#card-overlay .controls .menu.open > ul {
  display: block;
}
#card-overlay .controls .menu > .button {
  margin: 0;
}
#card-overlay .controls .menu > ul {
  align-items: center;
  border: 1px solid #E2E3E4;
  border-radius: 15px;
  bottom: calc(100% + 5px);
  color: white;
  display: none;
  font-size: 14px;
  justify-content: center;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
}
#card-overlay .controls .menu > ul > li {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  padding: 10px 15px;
  white-space: nowrap;
}
#card-overlay .controls .menu > ul > li:first-child {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#card-overlay .controls .menu > ul > li:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
#card-overlay .controls .menu > ul > li:hover {
  background-color: #000000;
}
#card-overlay .controls .menu > ul > li > a,
#card-overlay .controls .menu > ul > li > button {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  padding: 0;
  text-decoration: none;
}
#card-overlay .controls.top {
  top: 0;
  margin: 10px;
  transition-property: top, opacity;
  transition-duration: 0.5s;
  display: flex;
  flex-flow: column;
}
#card-overlay .controls.top.left {
  left: 0;
}
#card-overlay .controls.top.right {
  right: 0;
}
#card-overlay .controls.top .flex-row {
  display: flex;
  padding-bottom: 10px;
}
#card-overlay .controls.top .button {
  height: 36px;
  padding: 10px;
  margin: 0 5px;
  border-radius: 23px;
}
#card-overlay .controls.top .button.music {
  font-size: 18px;
}
#card-overlay .controls.top .button.music .fa-music {
  margin-left: 10px;
  margin-right: 5px;
}
#card-overlay .controls.top .button.music .fa-pause {
  margin-left: 5px;
}
#card-overlay .controls.bottom {
  bottom: 32px;
  left: 0;
  margin: 10px;
  transition-property: top, opacity;
  transition-duration: 0.5s;
  display: flex;
  flex-flow: row;
}
#card-overlay .controls.bottom.mobile {
  bottom: 0;
  right: 0;
}
#card-overlay .controls.bottom .button {
  height: 36px;
  padding: 10px;
  margin: 0 5px;
  border-radius: 23px;
}
#card-overlay .controls.bottom .button i {
  margin-right: 10px;
}
#card-overlay .controls.bottom .button i:last-child {
  margin-right: 0;
}
#card-overlay .controls.bottom .menu > button {
  margin: 0;
}
#card-overlay .controls.side {
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: center;
  transition: transform 1s;
  transition-delay: 1s;
}
#card-overlay .controls.side.collapsed {
  transform: translateX(100%);
}
#card-overlay .controls.side .button {
  font-size: 18px;
  height: 60px;
  width: 260px;
  padding: 20px;
  margin: 5px 0;
}
.mobile-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  transition: transform, height 0.5s, 0.5s;
}
.mobile-bottom.placeholder {
  position: relative;
  height: 62px;
  opacity: 0 !important;
}
.mobile-bottom .btnV2 {
  width: 100%;
  text-align: center;
  margin: 10px 15px;
}
.mobile-bottom.collapsed {
  transform: translateY(100%);
}
.mobile-bottom.collapsed.placeholder {
  height: 0;
}
.gift-card {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #FFFFFF;
  max-width: 190px;
  margin: 0 5px;
  cursor: pointer;
}
.gift-card img {
  border-radius: 8px;
}
.gift-card span {
  padding: 10px;
}
.gift-card:hover span {
  opacity: 0.7;
}
.gift-card.mobile {
  flex-flow: row;
  max-width: unset;
  margin: 0;
  border-radius: 0;
}
.gift-card.mobile img {
  max-height: 40px;
  margin: 0 6px;
  border-radius: 4px;
}
.gift-card.mobile span {
  padding: 0;
}
.send-gift > div.sent {
  cursor: pointer;
  padding: 0 5px;
  text-align: center;
}
.send-gift > div.sent > i {
  color: #4AB37E;
  display: inline-block;
  font-size: 18px;
  margin-right: 5px;
}
.send-gift > div.sent > span {
  color: #777777;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
}
.send-gift.details-modal > .modal-dialog {
  max-width: 100%;
  width: 350px;
}
.send-gift.details-modal > .modal-dialog > .modal-content > .modal-body {
  text-align: center;
}
.send-gift.details-modal > .modal-dialog > .modal-content > .modal-body > div {
  margin: 10px 0 0 0;
}
.send-gift.details-modal > .modal-dialog > .modal-content > .modal-body > div > small {
  font-size: 14px;
}
.send-gift.details-modal > .modal-dialog > .modal-content > .modal-body > div > span {
  font-size: 16px;
}
.send-gift.details-modal > .modal-dialog > .modal-content > .modal-body > div > strong {
  font-size: 20px;
}
.send-gift.details-modal > .modal-dialog > .modal-content > .modal-body > img {
  display: inline-block;
  max-width: 100%;
  width: 250px;
}
.send-gift.email-modal > .modal-dialog {
  width: 525px;
}
.send-gift.email-modal > .modal-dialog > .modal-content > .modal-body {
  padding: 30px 80px;
}
.send-gift.email-modal > .modal-dialog > .modal-content > .modal-body > strong {
  color: #333333;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin: 10px 0 15px 0;
}
.send-gift.email-modal > .modal-dialog > .modal-content > .modal-body > .gv-form {
  margin-bottom: 30px;
}
.send-gift.email-modal > .modal-dialog > .modal-content > .modal-body > .gv-form > label.gv-input {
  margin: 0;
}
.send-gift.email-modal > .modal-dialog > .modal-content > .modal-body > .gv-form > label.gv-input > input {
  display: block;
  margin-bottom: 0;
  width: 100%;
}
.send-gift.email-modal > .modal-dialog > .modal-content > .modal-body > .gv-form > label.gv-input > span {
  display: block;
  margin-bottom: 8px;
}
.send-gift.jifiti-modal {
  z-index: auto;
}
.send-gift.jifiti-modal > .modal-dialog {
  max-width: none;
  width: auto;
}
.send-gift.jifiti-modal > .modal-dialog > .modal-content {
  background-color: transparent;
  border: 0;
  border-radius: 0;
}
.send-gift.jifiti-modal > .modal-dialog > .modal-content > .modal-body {
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.send-gift.jifiti-modal > .modal-dialog > .modal-content > .modal-body div.jifiti-iframe {
  text-align: center;
}
.send-gift.jifiti-modal > .modal-dialog > .modal-content > .modal-body div.jifiti-iframe iframe {
  border-radius: 6px;
  display: inline-block;
  height: 780px;
  width: 824px;
}
@media screen and (max-width: 550px) {
  .send-gift.email-modal > .modal-dialog {
    width: 100%;
  }
  .send-gift.jifiti-modal > .modal-dialog > .modal-content > .modal-body div.jifiti-iframe.visible > iframe {
    display: block;
  }
  .send-gift.jifiti-modal > .modal-dialog > .modal-content > .modal-body div.jifiti-iframe iframe {
    border-radius: 0;
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
  }
}
.save-card-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.save-card-mobile i {
  margin-right: 6px;
}
.poweredby {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: url(/viewer2/_images/footer.png) no-repeat center center;
  color: white;
  margin-top: 25px;
}
.poweredby > span {
  min-height: 32px;
  padding: 7px;
}
.footer {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  font-size: 10px;
}
.footer > span {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0 7px 0 0;
  margin-right: 0;
  min-height: 32px;
  padding: 7px 10px 7px 7px;
}
.footer .save i {
  font-size: 16px;
}
.footer .save a {
  color: white;
}
.footer .save a:hover,
.footer .save a:focus,
.footer .save a:active {
  color: white;
  text-decoration: none;
}
.footer .logo {
  margin-right: 3px;
}
.footer .logo img {
  margin-left: 5px;
}
#rightcolumntoggle {
  width: 100%;
  height: 100px;
  background: blue;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
i.fa-check-circle {
  color: #4AB37E;
}
i.fa-minus-circle {
  color: #ED4949;
}
#rightcolumncontainer {
  z-index: 1;
  background: url('../_images/email_trilogo.png') white no-repeat center;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 0;
  min-width: 360px;
  max-width: 360px;
  border: 1px solid #E2E3E4;
}
#rightcolumncontainer.mobile {
  overflow: hidden;
  min-width: 100%;
  max-width: 100%;
}
#modalRSVP {
  color: #767676;
}
#modalRSVP .rsvp-message,
#modalRSVP .rsvp-confirmation {
  padding: 15px;
  background: #F7F7F7;
  border-radius: 5px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
#modalRSVP .rsvp-confirmation {
  margin-bottom: 15px;
}
#modalRSVP .rsvp-closed {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}
#modalRSVP .plusone {
  border-bottom: 1px solid #e3e3e3;
  padding: 20px 0;
}
#modalRSVP .plusone:first-child {
  border-top: 1px solid #e3e3e3;
}
#modalRSVP .guest-rsvp {
  font-size: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-flow: row wrap;
  flex: 0 1 auto;
}
#modalRSVP .guest-rsvp .btnV2 {
  min-width: 140px;
  padding: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 5px;
  max-width: 160px;
}
#modalRSVP .guest-rsvp .changersvp {
  margin-left: 10px;
}
#modalRSVP .guest-rsvp .status {
  display: flex;
  align-items: center;
  font-family: brandon-grotesque;
  text-transform: uppercase;
  font-weight: bold;
  color: #3d3d3d;
}
#modalRSVP .guest-rsvp .status i {
  font-size: 20px;
  margin-right: 10px;
}
#modalRSVP .guest-rsvp .status.attending i {
  color: #4AB37E;
}
#modalRSVP .guest-rsvp .status.notattending i {
  color: #ED4949;
}
#modalRSVP .remove {
  margin-left: 10px;
  font-size: 18px;
}
#modalRSVP .guest-purchase .body > div,
#modalRSVP .guest-tickets .body > div {
  margin: 0 15px;
}
#modalRSVP .guest-purchase .tickets,
#modalRSVP .guest-tickets .tickets {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#modalRSVP .guest-purchase .tickets > label.gv-select,
#modalRSVP .guest-tickets .tickets > label.gv-select {
  align-items: center;
  display: flex;
  margin-bottom: 0;
  width: 100%;
}
#modalRSVP .guest-purchase .tickets > label.gv-select > select,
#modalRSVP .guest-tickets .tickets > label.gv-select > select {
  flex: 0 1 auto;
  max-width: 200px;
}
#modalRSVP .guest-purchase .tickets > label.gv-select > span,
#modalRSVP .guest-tickets .tickets > label.gv-select > span {
  flex: 1 0 auto;
  margin-bottom: 0;
  margin-right: 5px;
}
#modalRSVP .guest-purchase .tickets > label.gv-select > span > span.invalid,
#modalRSVP .guest-tickets .tickets > label.gv-select > span > span.invalid {
  margin-left: 5px;
}
#modalRSVP .guest-purchase .items,
#modalRSVP .guest-tickets .items {
  width: 100%;
}
#modalRSVP .guest-purchase .items .tags,
#modalRSVP .guest-tickets .items .tags {
  margin-left: -5px;
  justify-content: flex-start;
}
#modalRSVP .guest-purchase .items .mobile .item > div,
#modalRSVP .guest-tickets .items .mobile .item > div {
  padding-bottom: 10px;
}
#modalRSVP .guest-purchase .items .mobile .item .name,
#modalRSVP .guest-tickets .items .mobile .item .name {
  font-weight: bold;
}
#modalRSVP .guest-purchase .items .mobile .item .info,
#modalRSVP .guest-tickets .items .mobile .item .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#modalRSVP .guest-purchase .items .mobile .item .qty,
#modalRSVP .guest-tickets .items .mobile .item .qty {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
#modalRSVP .guest-purchase .items .mobile .item .qty > *,
#modalRSVP .guest-tickets .items .mobile .item .qty > * {
  padding-right: 5px;
}
#modalRSVP .guest-purchase .items table,
#modalRSVP .guest-tickets .items table {
  width: 100%;
}
#modalRSVP .guest-purchase .items th,
#modalRSVP .guest-tickets .items th,
#modalRSVP .guest-purchase .items td,
#modalRSVP .guest-tickets .items td {
  text-align: center;
  padding: 10px;
}
#modalRSVP .guest-purchase .items th:first-child,
#modalRSVP .guest-tickets .items th:first-child,
#modalRSVP .guest-purchase .items td:first-child,
#modalRSVP .guest-tickets .items td:first-child {
  text-align: left;
  padding-left: 0;
}
#modalRSVP .guest-purchase .items th:last-child,
#modalRSVP .guest-tickets .items th:last-child,
#modalRSVP .guest-purchase .items td:last-child,
#modalRSVP .guest-tickets .items td:last-child {
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
}
#modalRSVP .guest-purchase .items .action .btnV2,
#modalRSVP .guest-tickets .items .action .btnV2 {
  padding: 10px 12px;
}
#modalRSVP .donation {
  display: flex;
  align-items: center;
  padding-top: 15px;
}
#modalRSVP .donation .gv-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: initial;
}
#modalRSVP .donation .gv-input input {
  margin-left: 10px;
  margin-right: 8px;
  max-width: 100px;
}
#modalRSVP .comment #txtComment {
  min-height: 100px;
  width: 100%;
}
#modalRSVP .ordersummary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
#modalRSVP .ordersummary .header span {
  font-weight: bold;
  text-transform: uppercase;
}
#modalRSVP .ordersummary .header a {
  margin-left: 10px;
}
#modalRSVP .ordersummary .gv-form {
  margin-bottom: 0;
}
#modalRSVP #order-summary {
  background: #eee;
  padding: 20px 30px;
}
#modalRSVP #order-summary table {
  width: 100%;
}
#modalRSVP #order-summary table#items td,
#modalRSVP #order-summary table#items th {
  text-align: center;
  max-width: 100px;
  padding: 5px 5px;
}
#modalRSVP #order-summary table#items td:first-child,
#modalRSVP #order-summary table#items th:first-child {
  max-width: initial;
  text-align: left;
}
#modalRSVP #order-summary table#items td:last-child,
#modalRSVP #order-summary table#items th:last-child {
  text-align: right;
}
#modalRSVP #order-summary table#items tr:first-child td {
  border-top: solid 1px #D8D8D8;
  padding-top: 10px;
}
#modalRSVP #order-summary table#items tr:last-child td {
  border-bottom: solid 1px #D8D8D8;
  padding-bottom: 10px;
}
#modalRSVP #order-summary table#totaldue {
  margin-top: 10px;
}
#modalRSVP #order-summary table#totaldue th {
  text-transform: uppercase;
  text-align: right;
}
#modalRSVP #order-summary table#totaldue th span {
  margin-left: 10px;
}
#modalRSVP #payment .input-container {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
#modalRSVP #payment .input-container .col {
  padding: 5px 0;
}
#modalRSVP #payment .input-container .col:first-child {
  margin-right: 60px;
  min-width: 45%;
}
#modalRSVP #payment .input-container input {
  width: 100%;
}
#modalRSVP #payment .input-container #card-element {
  background-color: #FFFFFF;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  color: #666666;
  font-size: 14px;
  padding: 9px 10px;
  transition-duration: 0.25s;
  transition-property: background-color, border, color;
  transition-timing-function: ease;
  text-decoration: none;
  vertical-align: middle;
}
#modalRSVP #payment .payByCC .terms {
  padding: 25px 0;
}
#modalRSVP #payment .payByCC .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#modalRSVP #payment .payByCC .actions .btnV2-link {
  cursor: pointer;
  padding: 0;
}
#modalRSVP #payment .payByCC .actions .submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 65%;
  flex: 1;
}
#modalRSVP #payment .payByCC .actions .submit > * {
  margin: 0 5px;
}
#modalRSVP #payment .payByCheck .gvdirs {
  padding: 25px 0;
}
#modalRSVP #payment .payByCheck .checkdirs {
  padding-bottom: 25px;
}
#modalRSVP #payment .payByCheck .orpaybycard {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#modalRSVP #payment .payByCheck .orpaybycard :first-child {
  padding-right: 10px;
}
#modalRSVP .purchase-summary {
  background-color: #FAFAFA;
  border: solid 1px #CCC;
  min-width: 400px;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  margin-top: 20px;
}
#modalRSVP .locations-header,
#modalRSVP .registry-header {
  color: #3d3d3d;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
#modalRSVP .registry-container {
  margin-bottom: 10px;
}
#modalRSVP .complete-container .rsvp-submitted {
  padding-bottom: 10px;
}
#modalRSVP .complete-container .rsvp-summary {
  background-color: #EEEEEE;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}
#modalRSVP .complete-container .rsvp-summary .guest {
  display: flex;
}
#modalRSVP .complete-container .rsvp-summary .guest .icon {
  margin-right: 15px;
}
#modalRSVP .complete-container .rsvp-summary .guest .icon > div {
  font-family: arial, sans-serif;
  width: 22px;
  height: 22px;
  color: #FFFFFF;
  text-align: center;
  padding-left: 4px;
  padding-right: 2px;
  padding-bottom: 2px;
  padding-top: 1px;
  font-size: 14px;
  border-radius: 4px;
}
#modalRSVP .complete-container .rsvp-summary .guest .icon > div.yes {
  background-color: #4AB37E;
}
#modalRSVP .complete-container .rsvp-summary .guest .icon > div.no {
  background-color: #A4373B;
}
#modalRSVP .complete-container .rsvp-summary .guest .info > div {
  margin-bottom: 15px;
}
#modalRSVP .complete-container .rsvp-summary .guest .info .name {
  font-weight: bold;
}
#modalRSVP .complete-container .rsvp-summary .guest .info .ticket > span {
  font-style: italic;
}
#modalRSVP .complete-container .rsvp-summary .guest .info .survey .gv-form {
  margin: 0;
}
#modalRSVP .complete-container .rsvp-summary .guest .info .survey .followUpQuestions {
  margin-top: -10px;
  margin-left: 10px;
}
#modalRSVP .complete-container .rsvp-summary .guest .info .survey .qtext::before {
  content: 'Q: ';
}
#modalRSVP .complete-container .rsvp-summary .guest .info .survey .atext {
  font-style: italic;
  margin-bottom: 15px;
}
#modalRSVP .complete-container .rsvp-summary .guest .info .survey .atext::before {
  content: 'A: ';
}
#modalRSVP .complete-container .rsvp-summary .items {
  margin-left: 35px;
}
#modalRSVP .complete-container .rsvp-summary .items .head {
  font-weight: bold;
}
#modalRSVP .complete-container .fake-tickets {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#modalRSVP .complete-container .fake-tickets .tickets-container {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
#modalRSVP .complete-container .fake-tickets .tickets-container .ticket {
  width: 245px;
  color: white;
  margin: 10px;
  padding: 10px;
  page-break-after: always;
  page-break-inside: avoid;
}
#modalRSVP .complete-container .fake-tickets .tickets-container .ticket .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#modalRSVP .complete-container .fake-tickets .tickets-container .ticket .body {
  text-align: left;
  padding: 20px 0;
}
#modalRSVP .complete-container .fake-tickets .tickets-container .ticket .body .info > div {
  padding-bottom: 20px;
}
#modalRSVP .complete-container .fake-tickets .tickets-container .ticket .body .info > div span {
  display: block;
}
#modalRSVP .complete-container .fake-tickets .tickets-container .ticket .body .code {
  display: flex;
  justify-content: center;
}
#modalRSVP .complete-container .fake-tickets .tickets-container .ticket .body .code img {
  border: 2px solid white;
}
#modalRSVP .complete-container .complete-footer {
  display: flex;
  justify-content: flex-end;
  margin: 0 -5px;
}
#modalRSVP .complete-container .complete-footer > * {
  margin: 5px;
}
#modalRSVP .complete-container .complete-footer > div {
  display: flex;
}
#modalRSVP .complete-container .complete-footer a.btnV2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 550px) {
  #modalRSVP .guest-purchase .mobile {
    display: none;
  }
}
@media (max-width: 550px) {
  #modalRSVP .guest-head .guest-rsvp {
    padding: 20px 0;
    width: 100%;
    justify-content: flex-start;
  }
  #modalRSVP .complete-container .complete-footer {
    flex-direction: column;
    margin: 0;
  }
  #modalRSVP .guest-purchase .body > div {
    margin: 0;
  }
  #modalRSVP .guest-purchase .head {
    color: #3d3d3d;
    padding-left: 15px;
    padding-right: 15px;
  }
  #modalRSVP .guest-purchase .btnV2 {
    padding: 10px;
  }
  #modalRSVP .guest-purchase .btnV2.btnV2-link {
    padding-left: 0;
  }
  #modalRSVP .guest-purchase .head .copy span {
    display: block;
  }
  #modalRSVP .guest-purchase table {
    display: none;
  }
  #modalRSVP .ordersummary {
    flex-flow: row wrap;
  }
  #modalRSVP .ordersummary .coupons {
    width: 100%;
    padding-top: 10px;
  }
  #modalRSVP #payment .input-container {
    flex-flow: row wrap;
  }
  #modalRSVP #payment .input-container .col {
    width: 100%;
  }
  #modalRSVP #payment .input-container .col:first-child {
    margin-right: 0;
  }
  #modalRSVP #payment .payByCC .actions {
    flex-flow: row wrap;
    justify-content: center;
  }
  #modalRSVP #payment .payByCC .actions > * {
    padding: 20px 0;
    width: 100%;
  }
  #modalRSVP #payment .payByCC .actions .submit {
    max-width: 100%;
  }
  #modalRSVP #payment .payByCC .actions .space-between-fix {
    display: none;
  }
  #modalRSVP #payment .payByCC .actions .btnV2 {
    width: 100%;
    text-align: center;
  }
  #modalRSVP #payment .payByCC .actions .back {
    display: none;
  }
}
.rsvp-widget {
  display: block;
  background: white;
  justify-content: center;
  align-items: center;
  min-height: 84px;
  flex: 0 0 auto;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  margin: 10px 0;
  text-align: center;
  z-index: 1;
}
.rsvp-widget > div {
  margin: 7px 0;
  width: 100%;
}
.rsvp-widget > div:last-child {
  margin-bottom: 0;
}
.rsvp-widget.side {
  box-shadow: none;
  opacity: 0.95;
}
.rsvp-widget.mobile-only {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}
@media (min-width: 550px) {
  .rsvp-widget.mobile-only {
    display: none !important;
  }
}
@media (max-width: 550px) {
  .rsvp-widget {
    min-height: 0;
  }
  .rsvp-widget.mobile-hide {
    display: none !important;
  }
}
.rsvp-widget i {
  font-size: 18px;
  margin-right: 5px;
}
.rsvp-widget .no-response {
  width: 100%;
}
@media (max-width: 550px) {
  .rsvp-widget .no-response .btnV2 {
    width: 100%;
  }
}
.rsvp-widget .no-response h2 {
  font-size: 18px;
  font-weight: bold;
  font-family: brandon-grotesque;
  text-transform: uppercase;
  color: #333;
}
.rsvp-widget .simple-rsvp {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  min-width: 320px;
}
.rsvp-widget .simple-rsvp.small {
  flex-flow: column;
  min-width: unset;
}
.rsvp-widget .simple-rsvp .btnV2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  flex: 1;
}
.rsvp-widget .response {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 550px) {
  .rsvp-widget .response.mobile-only {
    display: none !important;
    flex-flow: row;
    justify-content: space-between;
  }
}
@media (max-width: 550px) {
  .rsvp-widget .response.mobile-hide {
    display: none !important;
  }
}
.rsvp-widget .response.mobile-only {
  flex-flow: row;
  justify-content: space-between;
}
.rsvp-widget .response .success {
  margin-bottom: 5px;
}
.rsvp-widget .rsvp-closed {
  display: flex;
}
.rsvp-widget .btnV2 {
  text-transform: uppercase;
}
.rsvp-widget .btnV2.btnV2-sm {
  padding: 12px 12px;
}
.rsvp-widget .message-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.rsvp-widget .message-btn:last-child {
  margin: 10px 0;
}
.rsvp-widget .message-btn > * {
  flex: 1;
}
.btnV2.attend {
  background: #4AB37E;
}
.btnV2.attend:hover,
.btnV2.attend:focus,
.btnV2.attend:active {
  background-color: #269D64;
}
.btnV2.no-attend {
  background: #767676;
}
.btnV2.no-attend:hover,
.btnV2.no-attend:focus,
.btnV2.no-attend:active {
  background-color: #5d5d5d;
}
#modalGVConfirm .modal-dialog {
  padding-top: 15%;
}
#modalGVConfirm .modal-body {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#modalGVConfirm .modal-body > * {
  margin: 14px;
}
#modalGVConfirm .modal-body .icon {
  background-repeat: no-repeat;
  background-size: contain;
  width: 47px;
  height: 47px;
}
#modalGVConfirm .modal-body .icon.attending {
  background-image: url('../_images/icon-checkmark.png');
}
#modalGVConfirm .modal-body .icon.not-attending {
  background-image: url('../_images/icon-checkmark-red.png');
}
#modalGVConfirm .modal-body .message {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 700;
}
#modalGVConfirm .modal-body .actions {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
#modalGVConfirm .modal-body .actions > * {
  flex: 1 0 auto;
  margin: 10px;
  min-width: 148px;
}
#modalSurvey .submit {
  margin: 20px 0;
}
#modalRSVP .guest-survey .question-container,
#modalSurvey .guest-survey .question-container {
  flex: 1 1 auto;
}
#modalRSVP .guest-survey .question-container .tags,
#modalSurvey .guest-survey .question-container .tags {
  margin-left: -5px;
  justify-content: flex-start;
}
#modalRSVP .guest-survey .question-container .question,
#modalSurvey .guest-survey .question-container .question {
  padding: 0 15px;
  flex: 1 1 auto;
}
#modalRSVP .guest-survey .question-container .question .qtext,
#modalSurvey .guest-survey .question-container .question .qtext {
  display: inline-block;
  font-weight: 600;
}
#modalRSVP .guest-survey .question-container .question textarea,
#modalSurvey .guest-survey .question-container .question textarea,
#modalRSVP .guest-survey .question-container .question input:not([type='checkbox'], [type='radio']),
#modalSurvey .guest-survey .question-container .question input:not([type='checkbox'], [type='radio']) {
  width: 100%;
}
#modalRSVP .guest-survey .question-container .question label.gv-select,
#modalSurvey .guest-survey .question-container .question label.gv-select {
  display: block;
  margin-top: 8px;
}
#modalRSVP .guest-survey .question-container .question label.gv-select > select,
#modalSurvey .guest-survey .question-container .question label.gv-select > select {
  display: inline-block;
  max-width: 480px;
  width: 100%;
}
#modalRSVP .guest-survey .question-container .question label.gv-select > span,
#modalSurvey .guest-survey .question-container .question label.gv-select > span,
#modalRSVP .guest-survey .question-container .question label.gv-input > span,
#modalSurvey .guest-survey .question-container .question label.gv-input > span {
  left: -100px;
  position: fixed;
  top: -100px;
}
#modalRSVP .guest-survey .question-container .question ul,
#modalSurvey .guest-survey .question-container .question ul {
  padding: 0;
  margin: 0;
  margin-top: 8px;
}
#modalRSVP .guest-survey .question-container .question ul li,
#modalSurvey .guest-survey .question-container .question ul li {
  list-style: none;
  margin: 6px 0;
}
#modalRSVP .guest-survey,
#modalSurvey .guest-survey,
#modalRSVP .guest-purchase,
#modalSurvey .guest-purchase,
#modalRSVP .guest-tickets,
#modalSurvey .guest-tickets {
  background: #eee;
  margin-top: 20px;
}
#modalRSVP .guest-survey .head,
#modalSurvey .guest-survey .head,
#modalRSVP .guest-purchase .head,
#modalSurvey .guest-purchase .head,
#modalRSVP .guest-tickets .head,
#modalSurvey .guest-tickets .head {
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 30px;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
#modalRSVP .guest-survey .head .small,
#modalSurvey .guest-survey .head .small,
#modalRSVP .guest-purchase .head .small,
#modalSurvey .guest-purchase .head .small,
#modalRSVP .guest-tickets .head .small,
#modalSurvey .guest-tickets .head .small {
  font-weight: normal;
  text-transform: initial;
}
#modalRSVP .guest-survey .body,
#modalSurvey .guest-survey .body,
#modalRSVP .guest-purchase .body,
#modalSurvey .guest-purchase .body,
#modalRSVP .guest-tickets .body,
#modalSurvey .guest-tickets .body {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 15px;
}
#modalRSVP .guest-survey .body.has-follow-ups,
#modalSurvey .guest-survey .body.has-follow-ups,
#modalRSVP .guest-purchase .body.has-follow-ups,
#modalSurvey .guest-purchase .body.has-follow-ups,
#modalRSVP .guest-tickets .body.has-follow-ups,
#modalSurvey .guest-tickets .body.has-follow-ups {
  display: block;
}
#modalRSVP .guest-survey.collapsed .body,
#modalSurvey .guest-survey.collapsed .body,
#modalRSVP .guest-purchase.collapsed .body,
#modalSurvey .guest-purchase.collapsed .body,
#modalRSVP .guest-tickets.collapsed .body,
#modalSurvey .guest-tickets.collapsed .body {
  display: none;
}
#modalRSVP .guests-container .guest,
#modalSurvey .guests-container .guest {
  border-bottom: 1px solid #e3e3e3;
  padding: 20px 0;
}
#modalRSVP .guests-container .guest-head,
#modalSurvey .guests-container .guest-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#modalRSVP .guests-container .guest-head .spacer,
#modalSurvey .guests-container .guest-head .spacer {
  flex: 1 1 auto;
  height: 1px;
  min-width: 10px;
}
#modalRSVP .guests-container .guest-info,
#modalSurvey .guests-container .guest-info {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#modalRSVP .guests-container .guest-info .name,
#modalSurvey .guests-container .guest-info .name {
  font-weight: bold;
}
#modalRSVP .guests-container .guest-info .name i,
#modalSurvey .guests-container .guest-info .name i {
  cursor: pointer;
}
#modalRSVP .guests-container .guest-info .email,
#modalSurvey .guests-container .guest-info .email {
  font-size: 12px;
  padding-top: 7px;
}
#modalRSVP .guests-container .guest-edit,
#modalSurvey .guests-container .guest-edit {
  flex: 1 1 auto;
}
#modalRSVP .guests-container .guest-edit .actions,
#modalSurvey .guests-container .guest-edit .actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
#modalRSVP .guests-container .guest-edit input,
#modalSurvey .guests-container .guest-edit input {
  width: 100%;
}
#modalRSVP .invalid:not(.alertV2),
#modalSurvey .invalid:not(.alertV2) {
  color: #ED4949;
  background: #F7C6C6;
  border-radius: 4px;
  display: inline-block;
  padding: 5px 15px;
  margin: 10px 0;
}
#modalRSVP .submit,
#modalSurvey .submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#modalRSVP .submit #divErrors,
#modalSurvey .submit #divErrors {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
#modalRSVP .submit .buttons,
#modalSurvey .submit .buttons {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}
@media screen and (max-width: 550px) {
  #modalRSVP .guest-head,
  #modalSurvey .guest-head {
    flex-flow: row wrap;
  }
  #modalRSVP .guest-survey .body > div,
  #modalSurvey .guest-survey .body > div {
    margin: 0;
  }
  #modalRSVP .guest-survey .head,
  #modalSurvey .guest-survey .head {
    color: #3d3d3d;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.invalid {
  color: #ED4949;
}
#modalMailingAddress .flexrow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
#modalMailingAddress .flexrow > div {
  flex: 1;
  margin: 0 10px;
}
#modalMailingAddress .flexrow > div:first-child {
  margin-left: 0;
}
#modalMailingAddress .flexrow > div:last-child {
  margin-right: 0;
}
@media screen and (max-width: 550px) {
  #modalMailingAddress .flexrow {
    flex-flow: row wrap;
  }
  #modalMailingAddress .flexrow > div {
    flex: 1 1 auto;
    margin: 0;
    width: 100%;
  }
  #modalMailingAddress .flexrow > div:first-child,
  #modalMailingAddress .flexrow > div:last-child {
    margin: inherit;
  }
}
#modalMailingAddress .mailing-address,
#modalMailingAddress .email-form {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
#modalMailingAddress .mailing-address input,
#modalMailingAddress .email-form input {
  width: 100%;
}
#modalMailingAddress .submit {
  display: flex;
  justify-content: flex-end;
}
.modal.v2 .modal-header .modal-title {
  text-transform: uppercase;
  font-size: 18px;
}
#modalTicketList h2 {
  font-family: brandon-grotesque;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: #3d3d3d;
  padding: 10px 0;
}
#modalTicketList .tickets-list {
  text-align: center;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
#modalTicketList .tickets-list > * {
  padding: 10px;
}
#modalTicketList .tickets-list .head {
  background: #f7f7f7;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
#modalTicketList .tickets-list .item {
  margin-bottom: 10px;
}
#modalTicketList .tickets-list .item .summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
#modalTicketList .tickets-list .item .morecontent > * {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
#modalTicketList .tickets-list .item .morecontent > * > * {
  margin: auto;
}
#modalTicketList .tickets-list .item .morecontent .price {
  margin-top: 0;
  justify-content: flex-end;
}
#modalTicketList .tickets-list .item .morecontent .description {
  font-style: italic;
}
.section.ticketing > .content {
  text-align: center;
}
.section.ticketing > .content h2 {
  font-family: brandon-grotesque;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: #3d3d3d;
  padding: 10px 0;
}
.section.ticketing > .content .tickets-list {
  text-align: center;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
.section.ticketing > .content .tickets-list > * {
  padding: 10px;
}
.section.ticketing > .content .tickets-list .head {
  background: #f7f7f7;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.section.ticketing > .content .tickets-list .item {
  margin-bottom: 10px;
}
.section.ticketing > .content .tickets-list .item .summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.section.ticketing > .content .tickets-list .item .morecontent > * {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.section.ticketing > .content .tickets-list .item .morecontent > * > * {
  margin: auto;
}
.section.ticketing > .content .tickets-list .item .morecontent .price {
  margin-top: 0;
  justify-content: flex-end;
}
.section.ticketing > .content .tickets-list .item .morecontent .description {
  font-style: italic;
}
.section.ticketing > .content > h2 {
  display: none;
}
.section.ticketing > .content th {
  text-align: center;
}
@media screen and (min-width: 550px) {
  .mobile-only {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .mobile-hide {
    display: none;
  }
}
#modalMap .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
#modalMap iframe {
  width: 100%;
  height: 60vh;
  padding: 40px 20px;
}
.details-share {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.details-share .share-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-left: 10px;
}
.details-share .share-buttons .fa-facebook-f {
  color: #3b5998;
}
.details-share .share-buttons .fa-twitter {
  color: #55acee;
}
.details-share .share-buttons .fa-linkedin {
  color: #1985bc;
}
.details-share .share-buttons .fa-envelope {
  color: #999;
}
.details-share .share-buttons .fa-link {
  color: #999;
}
.details-share .share-buttons .share {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 34px;
  height: 34px;
  font-size: 17px;
}
.details-share .share-buttons a.share {
  border-radius: 50%;
  border: 1px solid #CCC;
  opacity: 0.5;
}
.details-share .share-buttons a.share:hover {
  text-decoration: none;
}
.details-share .share-buttons a.share.active {
  opacity: 1;
}
.share-email.gv-form {
  margin: 20px 0;
}
.registry-help {
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}
.registry-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}
.registry-list a {
  cursor: pointer;
  border: 1px solid #CCC;
  border-radius: 5px;
  background-color: #f8f8f8;
  box-shadow: 1px 1px 2px 0 #CCCCCC;
  margin: 5px;
  width: 140px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.registry-list a:hover,
.registry-list a:active,
.registry-list a:focus {
  text-decoration: none;
}
.registry-list a > em {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1 1 auto;
  height: 100%;
}
#logos-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}
#logos-list .eventLogo {
  width: 50%;
}
#logos-list .eventLogo img {
  width: 100%;
  padding: 10px;
}
.attachment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: solid 1px #e3e3e3;
  word-break: break-word;
}
.attachment .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: #eee;
  color: #999;
}
.attachment .icon i {
  font-size: 18px;
}
.attachment .info {
  flex: 1;
  padding: 0 20px;
}
.attachment a {
  cursor: pointer;
}
#modalSection .descr {
  margin: 25px 0;
}
.section-image {
  display: flex;
  justify-content: center;
}
.details-header {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 15px;
}
@media screen and (max-width: 550px) {
  .details-header {
    border-bottom: 1px solid #e3e3e3;
    text-align: left;
    padding: 0 20px 15px 20px;
    margin-top: 15px;
    text-transform: none;
    font-size: 16px;
  }
  .details-header div {
    display: flex;
    align-items: center;
  }
  .details-header i {
    font-size: 20px;
    margin-right: 10px;
  }
}
#rightcolumncontainer .custom-scroll {
  position: fixed;
  right: 4px;
  width: 8px;
}
#rightcolumncontainer .custom-scroll .gv-scrollbar {
  margin: 0;
}
#rightcolumncontainer .custom-scroll .gv-scrollbar .handle {
  background-color: #b6b6b6;
}
@media screen and (max-width: 550px) {
  #rightcolumncontainer .custom-scroll {
    display: none;
  }
}
#rightcolumncontent {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  overflow-x: hidden;
  flex: 1;
  margin-right: -20px;
  padding-right: 0;
  background: white;
}
#rightcolumncontent.overflow-fix {
  padding-right: 20px;
}
@media screen and (max-width: 550px) {
  #rightcolumncontent {
    margin-right: 0;
  }
  #rightcolumncontent.overflow-fix {
    padding-right: 0;
  }
}
#rightcolumncontent .sections-container {
  border-bottom: 1px solid #e3e3e3;
  margin: 20px;
}
#rightcolumncontent .section {
  border-top: 1px solid #E3E3E3;
  margin-bottom: 20px;
}
@media screen and (max-width: 550px) {
  #rightcolumncontent .section:first-child {
    border-top: none;
  }
}
#rightcolumncontent .section.send-gift-card {
  margin-bottom: 11px;
}
#rightcolumncontent .section.send-gift-card div.send-gift {
  margin-top: 11px;
  text-align: center;
}
#rightcolumncontent .section.send-gift-card div.send-gift > a {
  font-size: 14px;
}
#rightcolumncontent .section.send-gift-card div.send-gift > div.sent {
  padding: 9px 5px;
}
#rightcolumncontent .section.sharing {
  margin: 20px 0;
}
#rightcolumncontent .section.sharing .tags {
  margin-bottom: 0;
}
#rightcolumncontent .section.website .heading {
  text-transform: none;
}
#rightcolumncontent .section .tags {
  margin-top: 10px;
  margin-bottom: -10px;
}
#rightcolumncontent .section .heading {
  cursor: pointer;
  color: #333;
  font-size: 14px;
  font-family: brandon-grotesque;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
#rightcolumncontent .section .heading i {
  margin-left: 5px;
}
#rightcolumncontent .section.link {
  margin: 20px 0;
}
#rightcolumncontent .section.link .heading {
  color: #427e8f;
}
#rightcolumncontent .section.link a:hover,
#rightcolumncontent .section.link a:active,
#rightcolumncontent .section.link a:focus {
  text-decoration: none;
}
#rightcolumncontent .section .content {
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 12px;
}
#rightcolumncontent .section .content > div.section-image {
  margin-bottom: 10px;
}
#rightcolumncontent .section .content > * {
  width: 100%;
}
#rightcolumncontent .section .content.collapsed {
  display: none;
}
#rightcolumncontent .nff-sticker-container {
  display: flex;
  justify-content: center;
}
#rightcolumncontent .nff-sticker-container img {
  width: 100px;
}
.guest-list-widget {
  padding-top: 25px;
}
.guest-list-widget i {
  font-size: 16px;
  margin-right: 6px;
}
.guest-list-widget .fa-check-circle {
  color: #4AB37E;
}
.guest-list-widget .fa-minus-circle {
  color: #ED4949;
}
.guest-list-widget .tab-bar {
  display: flex;
}
.guest-list-widget .tab-bar a {
  background: #f7f7f7;
  border-radius: 4px 4px 0 0;
  border: 1px solid #ccc;
  padding: 10px;
  margin-right: 15px;
  color: #777;
}
@media screen and (max-width: 550px) {
  .guest-list-widget .tab-bar a {
    margin-right: 0;
  }
}
.guest-list-widget .tab-bar a:hover,
.guest-list-widget .tab-bar a:focus,
.guest-list-widget .tab-bar a:active {
  text-decoration: none;
  background: white;
}
.guest-list-widget .tab-bar a.active {
  color: #4AB37E;
  background: white;
  border-bottom: 1px solid white;
}
@media screen and (min-width: 550px) {
  .guest-list-widget .content {
    overflow: auto;
    max-height: 75vh;
    margin-right: -40px;
  }
}
.guest-list-widget .content .loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.guest-list-widget .content td:first-child {
  font-weight: bold;
}
.guest-list-widget .content tr:not(:last-child) td {
  padding-bottom: 20px;
}
.guest-list-widget .content-wrapper {
  padding: 20px;
  margin-top: -1px;
  border: 1px solid #ccc;
  border-radius: 0px 4px 4px 4px;
  overflow: hidden;
  position: relative;
}
.guest-list-widget .custom-scroll {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
}
.guest-list-widget .custom-scroll .gv-scrollbar {
  margin: 0;
}
.guest-list-widget .custom-scroll .gv-scrollbar .handle {
  background-color: #b6b6b6;
}
@media screen and (max-width: 550px) {
  .guest-list-widget .custom-scroll {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .details-share .share-buttons {
    justify-content: space-between;
  }
}
.modal .locations .location {
  display: flex;
  text-align: left;
  justify-content: space-between;
}
.modal .locations .location .tags {
  display: inline-block;
  margin-left: -3px;
}
.modal .locations .location .actions {
  display: block;
}
.modal .locations .location .actions .show-map {
  display: none;
}
.modal .locations .map {
  display: flex;
}
.locations .location {
  text-align: center;
  margin-bottom: 26px;
}
#rightcolumncontent .locations .location .tags {
  margin-bottom: 0;
}
.locations .location .name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}
.locations .location .notes {
  margin-top: 10px;
}
.locations .location .venue {
  font-weight: bold;
}
.locations .location .actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 13px;
}
.locations .location .actions > * {
  cursor: pointer;
  margin: auto;
}
.locations .map {
  display: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .locations .location .actions {
    justify-content: space-between;
  }
}
#modalShare .modal-dialog {
  max-width: 400px;
}
#modalShare .modal-dialog input {
  width: 100%;
}
#modalPhotos .modal-dialog {
  max-width: 800px;
}
.photo-container .photo {
  text-align: center;
}
.photo-container .photo img {
  max-width: 100%;
}
.photo-container .photo .caption {
  margin-top: 12px;
}
.photo-container .photo .caption .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}
.comments {
  margin-top: 24px;
}
.comments .comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comments .comments-list .comment-item {
  margin-bottom: 10px;
}
.comments .comments-list .comment-item .name {
  font-weight: bold;
}
.comments .comments-list .comment-item .comment {
  margin-left: 5px;
}
.comment-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.comment-input.gv-form label.gv-input input {
  flex: 1;
}
@media screen and (min-width: 550px) {
  .comment-input.gv-form label.gv-input button {
    min-width: 140px;
  }
}
.owl-theme .owl-item img {
  width: auto;
  display: inline-block;
}
@media (max-width: 550px) {
  .owl-theme .owl-nav {
    display: none;
  }
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #ccc;
  background: transparent;
  font-size: 72px;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  color: #b3b3b3;
  background: none;
}
.owl-theme .owl-prev,
.owl-theme .owl-next {
  position: absolute;
  top: 40%;
}
.owl-theme .owl-prev {
  left: -45px;
}
.owl-theme .owl-next {
  right: -45px;
}
.owl-theme .owl-dots .owl-dot span {
  background: #e9e9e9;
}
.modal {
  overflow-y: auto;
}
.modal .modal-dialog {
  width: 80%;
  max-width: 640px;
}
@media screen and (min-width: 550px) {
  .modal .mobile-header {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .modal {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
  }
  .modal .modal-dialog.mobile-full {
    background: white;
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
  }
  .modal .modal-dialog.mobile-full .mobile-header {
    border-bottom: 1px solid #e3e3e3;
    flex: 0 0 auto;
    padding: 10px 0;
    position: relative;
    width: 100%;
    z-index: 1;
  }
  .modal .modal-dialog.mobile-full .mobile-header .heading {
    font-weight: bold;
  }
  .modal .modal-dialog.mobile-full .mobile-header .rsvp-widget {
    position: unset;
    border-top: 1px solid #e3e3e3;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  }
  .modal .modal-dialog.mobile-full .modal-content {
    border: none;
    border-radius: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
  }
  .modal .modal-dialog.mobile-full .modal-content .modal-body {
    flex: 1 1 auto;
    padding: 0 10px;
    padding-bottom: 50px;
  }
  .modal .modal-dialog.mobile-full .modal-content .modal-footer {
    flex: 0 0 auto;
  }
  .modal .modal-dialog.mobile-full .modal-content .modal-header {
    flex: 0 0 auto;
    text-align: center;
  }
  .modal .modal-dialog.mobile-full .modal-content .modal-header .close {
    display: none;
  }
  .modal .modal-dialog.mobile-full.has-rsvp-widget .mobile-header {
    border-bottom: none;
  }
  .modal .modal-dialog.mobile-full.has-rsvp-widget .modal-content {
    height: 75vh;
    overflow-y: scroll;
    margin-top: -10px;
  }
}
#notificationbar {
  transition: all 0.5s;
}
#notificationbar.offscreen {
  height: 0 !important;
}
#notificationbar #notificationbar__inner {
  transition: transform 0.5s;
}
#notificationbar #notificationbar__inner.offscreen {
  transform: translateY(-100%);
}
#pagecontainer {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  transition-property: filter, -webkit-filter, height, margin-top;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}
#pagecontainer > div {
  flex: 1;
  transition: flex 0.75s;
}
@media screen and (min-width: 550px) {
  #pagecontainer {
    transition-property: filter, -webkit-filter, height;
    transition-duration: 0.5s;
    transition-timing-function: linear, linear, ease;
  }
}
@media screen and (min-width: 550px) {
  #pagecontainer {
    flex-flow: row;
  }
  #pagecontainer > div {
    width: 0;
  }
  #pagecontainer #maincontainer {
    flex: 4;
  }
  #pagecontainer #maincontainer.detailsonly {
    width: 0;
    min-width: 0%;
    flex: 0 !important;
  }
  #pagecontainer #rightcolumncontainer {
    flex: 1;
  }
  #pagecontainer #rightcolumncontainer > div {
    opacity: 1;
    transition: opacity 0.1875s 0.675s;
  }
  #pagecontainer #rightcolumncontainer.detailsonly {
    max-width: unset;
  }
  #pagecontainer #rightcolumncontainer.offscreen {
    width: 0;
    min-width: 0%;
    flex: 0 !important;
  }
  #pagecontainer #rightcolumncontainer.offscreen > div:not(.details-header) {
    opacity: 0;
    transition: opacity 0.1875s 0s;
  }
}
@media screen and (max-width: 550px) {
  #pagecontainer {
    flex-flow: column;
  }
  #pagecontainer #maincontainer > div:not(.bottom) {
    opacity: 1;
    transition: opacity 0.1875s 0.675s;
  }
  #pagecontainer #maincontainer.offscreen > div {
    opacity: 0;
    transition: opacity 0.1875s 0s;
  }
  #pagecontainer > div {
    height: 0;
  }
  #pagecontainer .offscreen {
    flex: 0 !important;
  }
}
@media print {
  .mobile-only {
    display: none;
  }
  #pagecontainer {
    overflow-y: auto;
    height: initial !important;
    display: initial;
  }
  #maincontainer {
    display: none;
  }
  #maincontainer.showcard {
    display: flex;
    page-break-inside: avoid;
    page-break-after: always;
    height: 1000px;
    padding: 0;
    margin: 0;
    vertical-align: middle;
  }
  #maincontainer > div > div:not(.page) {
    display: none;
  }
  #rightcolumncontainer {
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    width: 100%;
    margin: auto;
  }
  .actions {
    display: none;
  }
  .guest-list-widget .mobile-hide {
    display: none;
  }
  .custom-scroll {
    display: none;
  }
  .gv-form {
    display: none;
  }
  .section {
    page-break-inside: avoid;
  }
  .section .heading i {
    display: none;
  }
  .section.link,
  .section.photos,
  .section.attachments,
  .section.guestlist {
    display: none;
  }
}
#rightcolumncontainer.animated {
  transition-property: all;
  transition-duration: 0.75s;
}
#rightcolumncontent {
  transition-property: all;
  transition-duration: 0.375s;
  transition-delay: 0.45s;
  opacity: 1;
}
.pulse {
  animation-name: shadow-pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.pulse-opacity {
  animation-name: opacity-pulse;
  animation-duration: 5s;
  animation-iteration-count: 1;
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
  }
  10% {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}
@keyframes opacity-pulse {
  0% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.7;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
_:-ms-fullscreen #notificationbar #notificationbar__inner .status,
:root #notificationbar #notificationbar__inner .status {
  padding: 25px;
}
_:-ms-fullscreen .rsvp-widget > div,
:root .rsvp-widget > div {
  padding-top: 9px;
}
.zoom-modal {
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transition: opacity ease 0.75s;
  z-index: 1;
}
.zoom-modal.in {
  opacity: 1;
}
.zoom-modal.open {
  display: block;
}
.zoom-modal > button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 32px;
  top: 16px;
}
.zoom-modal > img {
  cursor: grab;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  flex: 0 0 auto;
  margin: 32px;
  max-width: calc(100% - 64px);
}
.zoom-modal > img.dragging {
  cursor: grabbing;
}