body.themes {
  --themes-sidebar-width: 35rem;
}
body.themes .themes-wrapper {
  padding-top: var(--header-height);
  padding-left: var(--themes-sidebar-width);
  padding-bottom: 9rem;
  min-height: 100vh;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #ffffff;
}
body.themes .themes-wrapper .themes-container {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
body.themes .themes-wrapper .themes-container .device {
  margin: 0 auto;
  padding: 0;
  position: relative;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
body.themes .themes-wrapper .themes-container .device .device-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 2rem;
  min-height: 10rem;
}
body.themes .themes-wrapper .themes-container .device .device-header .device-choose {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: 1px solid var(--border-color);
  padding: 0.4rem;
  border-radius: 0.3rem;
  min-height: 3.4rem;
}
body.themes .themes-wrapper .themes-container .device .device-header .device-choose .device-choose-item {
  color: var(--content-color);
  background-color: #ffffff;
  border-radius: 0.2rem;
  padding: 0rem;
  text-decoration: none;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  height: 100%;
  position: relative;
  min-height: 2.4rem;
  min-width: 7rem;
  cursor: pointer;
}
body.themes .themes-wrapper .themes-container .device .device-header .device-choose .device-choose-item i {
  font-size: 1.5rem;
  background: #ffffff;
}
body.themes .themes-wrapper .themes-container .device .device-header .device-choose .device-choose-item.active {
  color: var(--brand-color);
  background-color: #eef0f2;
}
body.themes .themes-wrapper .themes-container .device .device-header .orientation-device {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-left: auto;
  margin-right: 0;
}
body.themes .themes-wrapper .themes-container .device .device-header .orientation-device .orientation-lbl {
  color: var(--content-color);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 1rem;
}
body.themes .themes-wrapper .themes-container .device .device-header .orientation-device .orientation-divider {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2.4rem;
  width: 1px;
  background-color: var(--content-color);
}
body.themes .themes-wrapper .themes-container .device .device-header .orientation-device .orientation-btn {
  font-size: 1.5rem;
  cursor: pointer;
}
body.themes .themes-wrapper .themes-container .device .device-header .orientation-device .orientation-btn.active {
  color: var(--brand-color);
}
body.themes .themes-wrapper .themes-container .device .device-body {
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  height: inherit;
}
body.themes .themes-wrapper .themes-container .device .device-body iframe {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}
body.themes .themes-wrapper .themes-container .device .device-footer {
  min-height: 2rem;
}
body.themes .themes-wrapper .themes-container .device.desktop {
  width: 100%;
  height: calc(100vh - 20rem);
}
body.themes .themes-wrapper .themes-container .device.desktop .device-header .orientation-device {
  display: none;
}
body.themes .themes-wrapper .themes-container .device.desktop .device-body iframe {
  border-radius: 1.2rem;
  border: 1px solid var(--border-color);
}
body.themes .themes-wrapper .themes-container .device.tablet {
  width: 768px;
  height: 1024px;
}
body.themes .themes-wrapper .themes-container .device.tablet.landscape {
  width: 1024px;
  height: 768px;
}
body.themes .themes-wrapper .themes-container .device.mobile {
  width: 576px;
  height: 768px;
}
body.themes .themes-wrapper .themes-container .device.mobile.landscape {
  width: 768px;
  height: 576px;
}
body.themes .themes-sidebar {
  padding-top: var(--header-height);
  width: var(--themes-sidebar-width);
  margin-left: 0;
  height: 100%;
  background-color: #f3f6fa;
  border-right: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  --selected-theme-color: var(--header-navigation);
}
body.themes .themes-sidebar .template-panel {
  padding: 2rem;
}
body.themes .themes-sidebar .template-panel .template-header {
  color: var(--content-color);
  margin-bottom: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 3rem;
}
body.themes .themes-sidebar .template-panel .template-header .header-title {
  font-size: 1.8rem;
  font-weight: 600;
}
body.themes .themes-sidebar .template-panel .template-header .back-arrow {
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1.5rem;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: var(--content-color);
  opacity: 0.75;
}
body.themes .themes-sidebar .template-panel .template-header .back-arrow:hover {
  opacity: 1;
}
body.themes .themes-sidebar .template-panel .template-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 2rem;
}
body.themes .themes-sidebar .template-panel .template-list .template-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 0.4rem;
  position: relative;
  -webkit-box-shadow: 0 0 1rem -0.6rem #000000;
          box-shadow: 0 0 1rem -0.6rem #000000;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template {
  padding: 0.6rem;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-thumbnail {
  position: relative;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-thumbnail .template-thumbnail-img {
  display: block;
  max-width: 100%;
  border-radius: 0.2rem;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-thumbnail .template-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.2rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-thumbnail .template-overlay .btn {
  padding: 0.6rem 2rem;
  min-height: 3.4rem;
  border-radius: 3rem;
  line-height: 1;
  white-space: nowrap;
  font-size: 1.3rem;
  border: 2px solid #ffffff;
  cursor: pointer;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-thumbnail .template-overlay .btn.btn-apply {
  display: none;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-thumbnail .template-overlay .btn.btn-switch-default {
  display: none;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-preview {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--content-color);
  margin-top: 0.6rem;
  min-height: 3.2rem;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-name .title {
  padding-left: 0.6rem;
  margin-right: auto;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .template-name .action .btn {
  min-height: 3.2rem;
  border-radius: 0.4rem;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .template .applied-icon {
  opacity: 0;
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  color: var(--selected-theme-color);
  border: 1px solid #ffffff;
  font-size: 2rem;
  z-index: 1;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  line-height: 1;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .action {
  display: none;
}
body.themes .themes-sidebar .template-panel .template-list .template-item .action .btn {
  padding: 0.6rem 1.2rem;
  min-height: 4rem;
  border-radius: 0;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  border-color: var(--selected-theme-color);
  background: var(--selected-theme-color);
}
body.themes .themes-sidebar .template-panel .template-list .template-item .action .btn i {
  margin-right: 0.6rem;
  font-size: 1.3rem;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active {
  border-color: var(--selected-theme-color);
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active .action {
  display: block;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active:hover {
  border-color: var(--selected-theme-color);
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active:hover .template .template-thumbnail .template-overlay {
  opacity: 1;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active:hover .template .template-thumbnail .template-overlay .btn-apply {
  display: none;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active:hover .template .template-thumbnail .template-overlay .btn-switch-default {
  display: inline-block;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active:hover.default .template .template-thumbnail .template-overlay {
  opacity: 0;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active:hover.default .template .template-thumbnail .template-overlay .btn-apply {
  display: none;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active:hover.default .template .template-thumbnail .template-overlay .btn-switch-default {
  display: none;
}
body.themes .themes-sidebar .template-panel .template-list .template-item.active .template .applied-icon {
  opacity: 1;
}
body.themes .themes-sidebar .template-panel .template-list .template-item:hover {
  border-color: var(--brand-color);
}
body.themes .themes-sidebar .template-panel .template-list .template-item:hover .template .template-thumbnail .template-overlay {
  opacity: 1;
}
body.themes .themes-sidebar .template-panel .template-list .template-item:hover .template .template-thumbnail .template-overlay .btn-apply {
  display: inline-block;
}
body.themes .themes-sidebar .template-panel .template-content .template-card {
  border-radius: 0.4rem;
  margin-bottom: 1.2rem;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--content-color);
  font-size: 1.4rem;
  font-weight: 500;
  min-height: 4rem;
  padding: 1.2rem 1.5rem;
  border-radius: 0.3rem;
  cursor: pointer;
  background: #e6ecf3;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-header .arrow {
  margin-left: auto;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-header .arrow i {
  font-size: 1.6rem;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body {
  display: none;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list {
  padding: 1.2rem;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-label {
  color: var(--content-color);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .form-group {
  margin-bottom: 2rem;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .input-range {
  background: #ffffff;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list .style-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.4rem;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  cursor: pointer;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  position: relative;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list .style-list-item .icon {
  opacity: 0;
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  color: var(--brand-color);
  font-size: 1.6rem;
  z-index: 1;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  line-height: 1;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list .style-list-item:hover {
  border-color: var(--brand-color);
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list .style-list-item.active {
  border-color: var(--brand-color);
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list .style-list-item.active .icon {
  opacity: 1;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-alignment-style .style-list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-alignment-style .style-list-item .label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-alignment-style .style-list-item .label .outer {
  --width: 100%;
  --height: 4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: var(--width);
  height: var(--height);
  background: #d3dce7;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-alignment-style .style-list-item .label .outer .inner {
  display: inline-block;
  background: #ffffff;
  width: calc(var(--width) * 0.6);
  height: inherit;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-alignment-style .style-list-item .label.left .outer {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-alignment-style .style-list-item .label.center .outer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-alignment-style .style-list-item .label.right .outer {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-field-style .style-list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-field-style .style-list-item .label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-field-style .style-list-item .label .field-box {
  width: 100%;
  height: 3.6rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  position: relative;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-field-style .style-list-item .label.rounded .field-box {
  border-radius: 0.6rem;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .template-card-item .item-data .style-list.form-field-style .style-list-item .label.square .field-box {
  border-radius: 0;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .or-separator {
  text-align: center;
  font-weight: bold;
  color: var(--content-color);
  margin: 10px 0;
  position: relative;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .or-separator::before, body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .or-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  border-top: 1px dashed var(--border-color);
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .or-separator::before {
  left: 0;
}
body.themes .themes-sidebar .template-panel .template-content .template-card .template-card-body .template-card-list .or-separator::after {
  right: 0;
}
body.themes .themes-sidebar .template-panel .template-content .template-card.active .template-card-header {
  background: #d3dce7;
}
body.themes .themes-sidebar .template-panel .template-content .template-card.active .template-card-header .arrow {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
body.themes .themes-sidebar .template-panel .template-content .template-card.active .template-card-body {
  display: block;
}
body.themes .themes-sidebar .template-panel .template-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2rem;
}
body.themes .themes-sidebar .template-panel .template-footer .btn {
  padding: 0.6rem 2rem;
  min-height: 4rem;
  border-radius: 0.3rem;
  line-height: 1;
  font-weight: 600;
}
body.themes .themes-sidebar .template-panel .template-footer .btn.btn-outline {
  border-color: transparent;
  background-color: transparent;
}
body.themes .themes-sidebar-toggle-btn {
  max-height: 6rem;
  width: 2.4rem;
  background-color: var(--header-background);
  color: #ffffff;
  border: 0;
  outline: 0;
  border-radius: 0.4rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: fixed;
  top: var(--header-height);
  bottom: 0;
  margin: auto;
  margin-left: var(--themes-sidebar-width);
  left: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  cursor: pointer;
}
body.themes .themes-sidebar-toggle-btn i {
  font-size: 1.6rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
body.themes.themes-sidebar-open .themes-wrapper {
  padding-left: var(--themes-sidebar-width);
}
body.themes.themes-sidebar-open .themes-sidebar {
  margin-left: 0;
}
body.themes.themes-sidebar-open .themes-sidebar-toggle-btn {
  margin-left: var(--themes-sidebar-width);
}
body.themes.themes-sidebar-open .themes-sidebar-toggle-btn i {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body.themes.themes-sidebar-close .themes-wrapper {
  padding-left: 0;
}
body.themes.themes-sidebar-close .themes-sidebar {
  margin-left: calc(var(--themes-sidebar-width) * -1);
}
body.themes.themes-sidebar-close .themes-sidebar-toggle-btn {
  margin-left: 0;
}
body.themes.themes-sidebar-close .themes-sidebar-toggle-btn i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}/*# sourceMappingURL=themes.css.map */