#SignatureImg {
  width: 20vw;
}

@media only screen and (max-width: 699px) {
  #SignatureImg {
    width: 90vw;
  }
}

#excite_360 {
  width: 100vw;
  height: 100vh;
  letter-spacing: 0.2px;
  font-family: "Lato", sans-serif;
}

#excite_360 button {
  cursor: pointer;
}

#excite_spinnerContainer {
  z-index: 21;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0);
}

#loadingCount {
  font-size: 100px;
  color: #fff;
}

.excite_spinner {
  height: 60px;
  width: 60px;
  -webkit-animation: excite_rotation 0.6s infinite linear;
  -moz-animation: excite_rotation 0.6s infinite linear;
  -o-animation: excite_rotation 0.6s infinite linear;
  animation: excite_rotation 0.6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, 0.15);
  border-right: 6px solid rgba(0, 174, 239, 0.15);
  border-bottom: 6px solid rgba(0, 174, 239, 0.15);
  border-top: 6px solid rgba(0, 174, 239, 0.8);
  border-radius: 100%;
}

@-webkit-keyframes excite_rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes excite_rotation {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes excite_rotation {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes excite_rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

#excite_mainContainer {
  z-index: 22;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
}

#excite_mainContainer>button {
  top: 50vh;
  position: fixed;
  left: 50vw;
  transform: translate(0px, 0px);
}

#excite_mainContainerImg {
  width: 100%;
  cursor: pointer;
}

section#excite_model {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

section#excite_model>* {
  letter-spacing: 0.2px;
  font-family: "Lato", sans-serif;
  user-select: none;
}

.mobile-sidenav-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}

div.excite_full-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 15;
}

div.excite_init-modal {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: min(50vh, 400px);
  width: min(80%, 700px);
  padding: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 10px;
  z-index: 20;
}

div.excite_init-modal>.two-cols {
  display: grid;
  grid-template-columns: 50% 50%;
  column-gap: 10px;
  align-items: flex-start;
}

div.excite_init-modal>.gif-container>div>img {
  max-width: 100%;
}

.init-modal-btn {
  padding: 10px 5px;
  color: #171717;
  text-align: center;
  border-radius: 4px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  transition: all 0.3s ease-in-out;
}

.init-modal-btn:hover {
  letter-spacing: 0.4em;
}

div.excite_init-modal>.interaction-container>.env-toggle>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

main#excite {
  height: 100%;
}

div#excite_overlay-container {
  display: none;
}

div#excite_overlay-container.active {
  position: fixed;
  display: block;
  left: 0;
  z-index: 20;
  height: 100%;
  width: calc(100% - 360px);
  background-color: #000;
}

div#excite_overlay-container.active>img:not(.show) {
  display: none;
}

div#excite_overlay-container.active>button[close-overlay] {
  display: block;
  position: absolute;
  top: 20px;
  right: 1.5em;
}

div#excite_overlay-container.active>img.show {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
}

@media only screen and (max-width: 599px) {
  div#excite_overlay-container.active {
    width: 100%;
  }
}

div.excite_action-buttons {
  pointer-events: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 55%;
}

div.excite_action-buttons>* {
  margin: 30px 20px;
}

div.excite_topbar {
  pointer-events: auto;
  display: flex;
}

div.excite_action-bar {
  pointer-events: auto;
  align-items: center;
  display: flex;
  column-gap: 120px;
  width: 100%;
  justify-content: space-between;
}

div.excite_action-bar>* {
  display: flex;
}

div.excite_action-bar>.camera-toggle {
  column-gap: 1em;
}

@media only screen and (max-width: 821px) {
  div.excite_action-buttons {
    flex-direction: column-reverse;
  }

  div.excite_action-bar {
    align-items: initial;
    justify-content: initial;
    row-gap: 20px;
    flex-direction: column;
  }

  div.excite_topbar {
    column-gap: 0.25em;
  }

  div.excite_action-bar>.camera-toggle {
    column-gap: 0.25em;
  }
}

.excite_icon-button {
  background-color: transparent;
  padding: 8px;
  border: 0;
  border-radius: 50%;
}

.excite_icon-button>img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.excite_icon-button>img:hover {
  transform: scale(1.2);
}

.nav-link.active.excite_ctm-bg {
  background-color: #808080;
}

.excite_skewed-button {
  color: #fff;
  background-color: #000;
  line-height: 16px;
  border: 0;
  display: inline-block;
  height: fit-content;
  box-shadow: 0 17px 20px 0 rgb(0 0 0 / 41%);
  transform: skewX(-18deg);
  text-transform: uppercase;
  padding: 11px 36px;
  transition: all 0.4s ease-in-out;
  filter: drop-shadow(0 37px 80px rgba(0, 0, 0, 0.41)) drop-shadow(0 8.26443px 17.869px rgba(0, 0, 0, 0.244404)) drop-shadow(0 2.46054px 5.32008px rgba(0, 0, 0, 0.165596));
}

.excite_skewed-button::after {
  position: absolute;
  content: '';
  right: -5px;
  top: 0;
  bottom: 0;
  transform: rotate(0);
  background-color: #e83323;
  width: 2px;
  left: auto;
  height: 100%;
}

#right-sidenav {
  background-color: rgb(44 44 44 / 80%);
}

.excite_skewed-button.active {
  background-color: #808080;
  border: 0;
}

.excite_skewed-button>span {
  display: inline-block;
  font-size: 16px;
  transform: skewX(18deg);
  word-break: keep-all;
}

.excite_sidenav-top {
  flex-grow: 1;
}

.excite_offcanvas button.sidenav-toggle {
  position: absolute;
  border: 0;
  padding: 6px 12px;
  height: 32px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 3px;
  top: 50%;
  transform: translateX(calc(-50% - 16px)) translateY(-50%) rotate(-90deg);
  transform-origin: 50% 50%;
}

.excite_offcanvas.show button.sidenav-toggle {
  background-color: #fff;
  color: #000;
}

.excite_offcanvas:not(.show) button.sidenav-toggle {
  color: #fff;
  background-color: #808080;
}

.excite_offcanvas button.sidenav-toggle>span {
  display: block;
  transition: all 0.2s ease-in-out;
}

.excite_offcanvas button.sidenav-toggle>span>img {
  height: 1em;
  width: 1em;
}

.excite_offcanvas.show button.sidenav-toggle>span.menu-closed {
  display: none !important;
}

.excite_offcanvas:not(.show) button.sidenav-toggle>span.menu-open {
  display: none !important;
}

.excite_attached-color-panel {
  color: white;
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  width: 220px;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateX(calc(-100% - 1.5em));
  padding: 0 1em;
  bottom: 40px;
}

.excite_attached-color-panel>* {
  display: flex;
}

.excite_attached-color-panel>.expanded-color-panel {
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.excite_attached-color-panel>.expanded-color-panel.show {
  padding: 0.5em 0;
}

.excite_attached-color-panel>.expanded-color-panel>h4 {
  margin: 0 0 4px 0;
}

.excite_attached-color-panel>.expanded-color-panel>div {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5em;
  column-gap: 0.5em;
}

.excite_attached-color-panel>.collapsed-color-panel {
  padding: 0.5em 0;
  align-items: center;
  cursor: pointer;
}

.excite_color-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 50%;
  background-color: #7a42c7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.excite_color-name {
  display: inline-block;
  margin-left: 0.5em;
  text-transform: capitalize;
  user-select: none;
}

.excite_color-panel-icon {
  flex-grow: 1;
  text-align: right;
  margin-right: 1em;
  border-radius: 50%;
  user-select: none;
}

.excite_color-panel-icon>img {
  width: 1.5em;
  height: 1.5em;
}

@media only screen and (max-width: 699px) {
  .excite_attached-color-panel {
    width: 35vw;
    transform: translateX(calc(-100% - 16px));
  }

  .excite_color-panel-icon {
    margin-right: 0 !important;
  }
}

.excite_more-options .form-switch {
  padding-left: 0;
}

.excite_more-options .form-check>.form-check-input,
.excite_more-options .form-check>.form-check-label {
  cursor: pointer;
  user-select: none;
}

.excite_more-options .form-check .form-check-input {
  float: unset;
  margin-left: 4px;
  margin-right: 4px;
}

.excite_offcanvas {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  color: #fff;
  outline: 0;
  border: 0 !important;
  transition: transform 0.3s ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  transform: translateX(100%);
}

.excite_offcanvas.excite_overlay {
  z-index: 15;
  background-color: #000;
}

.excite_offcanvas-body.default-padding {
  padding: 0.5em 1em;
}

.excite_cursor-pointer {
  cursor: pointer;
}

.excite_inline-icon {
  height: 1.1em;
  width: 1.1em;
  margin: 0 6px 0 0;
  display: inline-block;
  vertical-align: middle;
}

.excite_rotate-180 {
  transform: rotate(180deg);
}

@media only screen and (max-width: 479px) {
  .excite_offcanvas {
    width: 100% !important;
  }
}

.excite_offcanvas.show {
  transform: none;
}

.excite_offcanvas-header {
  display: flex;
  justify-content: space-between;
  padding: 1em 0.5em;
  background: #282828;
}

.excite_offcanvas-body {
  overflow-y: auto;
  height: 100%;
}

.excite_d-none {
  display: none !important;
}

.excite_d-flex {
  display: flex;
}

.excite_flex-column {
  flex-direction: column;
}

.excite_p-0 {
  padding: 0;
}

.excite_m-0 {
  margin: 0;
}

@media only screen and (min-width: 0) {

  .excite_d-md-block,
  .excite_d-lg-block,
  .excite_d-md-flex,
  .excite_d-lg-flex {
    display: none !important;
  }

  .excite_d-xs-none {
    display: none !important;
  }

  .excite_d-xs-block {
    display: block !important;
  }

  .excite_d-xs-flex {
    display: flex !important;
  }
}

@media only screen and (min-width: 480px) {
  .excite_d-md-none {
    display: none !important;
  }

  .excite_d-md-block {
    display: block !important;
  }

  .excite_d-md-flex {
    display: flex !important;
  }
}

@media only screen and (min-width: 770px) {
  .excite_d-lg-none {
    display: none !important;
  }
}

ul.excite_tab-panel-heading {
  list-style: none;
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
  display: flex;
}

ul.excite_tab-panel-heading>li.tab-item {
  flex: 0 0 50%;
  position: relative;
}

ul.excite_tab-panel-heading>li.tab-item>button {
  width: 100%;
  padding: 15px 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #000;
  transition: all 0.15s ease-in-out;
  border: #808080 solid 2.5px;
}

ul.excite_tab-panel-heading>li.tab-item.active>button {
  background-color: #808080;
}

ul.excite_tab-panel-heading>li.tab-item.active::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 14px solid #808080;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
}

.excite_tab-content>.tab-pane {
  display: none;
}

.excite_tab-content>.tab-pane.active {
  display: block;
}

.excite_accordion-button {
  width: 100%;
  padding: 1em 0.8em;
  background: transparent;
  outline: none;
  border: none;
  text-align: unset;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.excite_accordion-button>.button-counter {
  color: aqua;
}

ol.excite_sidebar-list>li {
  line-height: 1.5em;
  font-size: 16px;
  margin-bottom: 20px;
}

ol.excite_sidebar-list>li>span {
  padding-left: 9px;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}

ol.excite_sidebar-list>li::marker {
  color: #2da4d4;
  font-weight: bold;
  font-size: 18px;
}

ol.excite_sidebar-list>li ul>li {
  line-height: 1.5em;
  padding: 5px 0 0 9px;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

ol.excite_sidebar-list>li ul>li:hover {
  color: #2da4d4;
}

.glowing-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-animation: glowing 1s ease-in-out infinite alternate;
  -moz-animation: glowing 1s ease-in-out infinite alternate;
  animation: glowing 1s ease-in-out infinite alternate;
}

@keyframes glowing {
  from {
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #191919, 0 0 40px #191919, 0 0 50px #2c2c2c, 0 0 60px #2c2c2c, 0 0 70px #676467;
      
  }

  to {
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #676467, 0 0 40px #676467, 0 0 50px #676467, 0 0 60px #676467, 0 0 70px #676467;
  }
}

@-webkit-keyframes glowing {
  from {
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #191919, 0 0 40px #191919, 0 0 50px #2c2c2c, 0 0 60px #2c2c2c, 0 0 70px #676467;
      
  }

  to {
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #676467, 0 0 40px #676467, 0 0 50px #676467, 0 0 60px #676467, 0 0 70px #676467;
  }
}
