/**
 * Public-facing styles.
 *
 * @package Nice_Demo_Switcher
 * @since   1.0
 */
/*-------------------------------------------------------------------------------------------*/
/* Demos.                                                                                    */
/*-------------------------------------------------------------------------------------------*/
#nice-demo-switcher #nice-demo-switcher-filters,
#nice-demo-showcase #nice-demo-switcher-filters {
  display: block;
  clear: both;
  margin-bottom: 1%;
}

#nice-demo-switcher #nice-demo-switcher-filters li,
#nice-demo-showcase #nice-demo-switcher-filters li {
  display: inline-block;
  margin-left: 1%;
  margin-bottom: .5em;
}

#nice-demo-switcher #nice-demo-switcher-filters li a,
#nice-demo-showcase #nice-demo-switcher-filters li a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  padding: 7px 20px;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}

#nice-demo-switcher #nice-demo-switcher-filters li a:hover, #nice-demo-switcher #nice-demo-switcher-filters li a.selected,
#nice-demo-showcase #nice-demo-switcher-filters li a:hover,
#nice-demo-showcase #nice-demo-switcher-filters li a.selected {
  background: white;
}

#nice-demo-switcher #nice-demo-switcher-filters li a.selected,
#nice-demo-showcase #nice-demo-switcher-filters li a.selected {
  color: #222;
}

.dark #nice-demo-switcher #nice-demo-switcher-filters li a, .dark
#nice-demo-showcase #nice-demo-switcher-filters li a {
  background: rgba(0, 0, 0, 0.12);
  color: #ddd;
}

.dark #nice-demo-switcher #nice-demo-switcher-filters li a:hover, .dark #nice-demo-switcher #nice-demo-switcher-filters li a.selected, .dark
#nice-demo-showcase #nice-demo-switcher-filters li a:hover, .dark
#nice-demo-showcase #nice-demo-switcher-filters li a.selected {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.dark #nice-demo-switcher #nice-demo-switcher-filters li a.selected, .dark
#nice-demo-showcase #nice-demo-switcher-filters li a.selected {
  color: #fff;
}

#nice-demo-switcher #nice-demo-switcher-demos,
#nice-demo-showcase #nice-demo-switcher-demos {
  display: block;
  position: relative;
  list-style-type: none;
}

#nice-demo-switcher .filterable-empty,
#nice-demo-showcase .filterable-empty {
  display: none;
  width: 100%;
  text-align: center;
}

#nice-demo-showcase .grid [class*="columns-"],
#nice-demo-showcase .grid [class*="columns-"] .item-inner {
  overflow: visible;
}

#nice-demo-showcase .item-inner .item-caption {
  -webkit-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

/*-------------------------------------------------------------------------------------------*/
/* Switcher.                                                                                 */
/*-------------------------------------------------------------------------------------------*/
#nice-demo-switcher.nice-demo-switcher-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* Overlay closing cross */
}

#nice-demo-switcher.nice-demo-switcher-overlay.dark {
  background: rgba(0, 0, 0, 0.9) !important;
  color: white;
}

#nice-demo-switcher.nice-demo-switcher-overlay #nice-demo-switcher-header {
  position: relative;
}

#nice-demo-switcher.nice-demo-switcher-overlay #nice-demo-switcher-header #nice-demo-switcher-heading {
  float: left;
  max-width: calc(100% - 250px);
  margin-top: -15px;
}

@media all and (max-width: 767px) {
  #nice-demo-switcher.nice-demo-switcher-overlay #nice-demo-switcher-header #nice-demo-switcher-heading {
    max-width: 100%;
    float: none;
  }
}

#nice-demo-switcher.nice-demo-switcher-overlay #nice-demo-switcher-header #nice-demo-switcher-heading .demo-switcher-title {
  padding-left: 0;
  padding-right: 0;
}

#nice-demo-switcher.nice-demo-switcher-overlay #nice-demo-switcher-header #nice-demo-switcher-heading .demo-switcher-description {
  padding-left: 0;
  padding-right: 0;
}

#nice-demo-switcher.nice-demo-switcher-overlay .overlay-close {
  outline: none;
  margin: 15px 0;
  position: absolute;
  top: 0;
  right: 0;
}

#nice-demo-switcher.nice-demo-switcher-overlay .overlay-close.btn {
  margin: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.8);
}

#nice-demo-switcher.nice-demo-switcher-overlay.dark .overlay-close, #nice-demo-switcher.nice-demo-switcher-overlay.dark .overlay-close i {
  color: white;
}

#nice-demo-switcher.nice-demo-switcher-overlay.light .overlay-close, #nice-demo-switcher.nice-demo-switcher-overlay.light .overlay-close i {
  color: #333;
}

#nice-demo-switcher.nice-demo-switcher-overlay.overlay-scale {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0s 0.3s;
}

#nice-demo-switcher.nice-demo-switcher-overlay.overlay-scale.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

#nice-demo-switcher.nice-demo-switcher-overlay .demo-switcher-title,
#nice-demo-switcher.nice-demo-switcher-overlay .demo-switcher-description {
  text-align: left;
}

#nice-demo-switcher {
  position: fixed;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9999;
  font-family: 'Open Sans',-apple-system,BlinkMacSystemFont,"Helvetica Neue",sans-serif;
  /* Position adjustments */
}

#nice-demo-switcher h1, #nice-demo-switcher h2, #nice-demo-switcher h3, #nice-demo-switcher h4, #nice-demo-switcher h5, #nice-demo-switcher h6 {
  font-family: 'Poppins','Open Sans',-apple-system,BlinkMacSystemFont,"Helvetica Neue",sans-serif;
}

#nice-demo-switcher.nice-demo-switcher-overlay.light {
  background: #f6f6f6;
  color: #333;
}

#nice-demo-switcher.nice-demo-switcher-overlay.light #nice-demo-switcher-header {
  background: transparent;
}

#nice-demo-switcher.nice-demo-switcher-overlay.light .item-inner a {
  color: #333;
}

#nice-demo-switcher #nice-demo-switcher-header {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 200;
  top: 0;
  background: #333;
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}

#nice-demo-switcher #nice-demo-switcher-header .demo-switcher-purchase {
  position: absolute;
  top: 0;
  margin: -20px 0;
  right: 60px;
}

@media all and (max-width: 767px) {
  #nice-demo-switcher #nice-demo-switcher-header .demo-switcher-purchase {
    position: relative;
    top: auto;
    margin: auto;
    right: auto;
  }
}

@media all and (max-width: 767px) {
  #nice-demo-switcher #nice-demo-switcher-header .demo-switcher-purchase .purchase-button {
    margin-left: 0;
    margin-right: 0;
  }
}

#nice-demo-switcher .nice-demo-switcher-content {
  position: relative;
  width: 100%;
  float: left;
  height: 100%;
  overflow: scroll;
  padding: 30px 30px 0;
}

#nice-demo-switcher #nice-demo-switcher-body {
  line-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

#nice-demo-switcher .purchase-button {
  display: inline-block;
  border: 0;
  margin: 15px;
  padding: 10px 15px;
  line-height: 25px;
  font-family: inherit;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

#nice-demo-switcher .demo-switcher-title {
  display: block;
  padding: 15px;
  line-height: 25px;
  font-family: inherit;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

#nice-demo-switcher .demo-switcher-description {
  display: block;
  padding: 0 15px 15px 15px;
  line-height: 20px;
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
}

#nice-demo-switcher #nice-demo-switcher-filters ul {
  margin: 0 0 5px;
}

#nice-demo-switcher #nice-demo-switcher-filters ul:not(:last-of-type) {
  margin-bottom: 5px;
}

#nice-demo-switcher #nice-demo-switcher-filters ul li {
  font-family: inherit;
  font-size: 12px;
  font-weight: normal;
  text-decoration: none;
}

#nice-demo-switcher #nice-demo-switcher-filters ul li:first-child {
  margin-left: 0;
}

#nice-demo-switcher #nice-demo-switcher-filters + #nice-demo-switcher-demos {
  margin-top: 45px;
}

#nice-demo-switcher #nice-demo-switcher-demos div figure {
  line-height: 0;
}

#nice-demo-switcher #nice-demo-switcher-demos div .demo-overlay .demo-details .demo-title {
  height: 100%;
}

#nice-demo-switcher #nice-demo-switcher-demos div .demo-overlay .demo-details .demo-title span {
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
  text-decoration: none;
  line-height: 1.2em;
}

#nice-demo-switcher #nice-demo-switcher-demos div .demo-title {
  text-align: left;
  padding: 10px 0;
}

#nice-demo-switcher #nice-demo-switcher-demos div .demo-title h4 {
  font-size: 16px;
}

#nice-demo-switcher .filterable-empty {
  display: none;
  padding-bottom: 70px;
  width: 100%;
  text-align: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2em;
}

#nice-demo-switcher.left, #nice-demo-switcher.right {
  top: 0;
  height: 100%;
}

#nice-demo-switcher.left #nice-demo-switcher-heading, #nice-demo-switcher.right #nice-demo-switcher-heading {
  padding: 5px 10px;
}

#nice-demo-switcher.left #nice-demo-switcher-body, #nice-demo-switcher.right #nice-demo-switcher-body {
  padding: 5px 10px 0;
}

#nice-demo-switcher.right.open {
  right: 0;
}

#nice-demo-switcher.right #nice-demo-switcher-handler {
  left: -44px;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -ms-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

#nice-demo-switcher.right #nice-demo-switcher-filter {
  margin-right: 1.5%;
  text-align: right;
}

#nice-demo-switcher.left.open {
  left: 0;
}

#nice-demo-switcher.left #nice-demo-switcher-handler {
  right: -44px;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

#nice-demo-switcher.left #nice-demo-switcher-filter {
  margin-left: 1.5%;
  text-align: left;
}

#nice-demo-switcher.top, #nice-demo-switcher.bottom {
  left: 0;
  width: 100%;
}

#nice-demo-switcher.top #nice-demo-switcher-header, #nice-demo-switcher.bottom #nice-demo-switcher-header {
  width: 25%;
  height: 25%;
}

#nice-demo-switcher.top #nice-demo-switcher-heading, #nice-demo-switcher.bottom #nice-demo-switcher-heading {
  width: 25%;
  height: 75%;
}

#nice-demo-switcher.top #nice-demo-switcher-body, #nice-demo-switcher.bottom #nice-demo-switcher-body {
  width: auto;
  height: 100%;
  top: 0;
  left: 25%;
  position: absolute;
  overflow: auto;
  padding: 10px;
}

#nice-demo-switcher.top #nice-demo-switcher-filter, #nice-demo-switcher.bottom #nice-demo-switcher-filter {
  margin-left: 1.5%;
  text-align: left;
}

#nice-demo-switcher.top #nice-demo-switcher-demos li, #nice-demo-switcher.bottom #nice-demo-switcher-demos li {
  padding-right: 10px;
}

#nice-demo-switcher.top #nice-demo-switcher-demos .demo-image img, #nice-demo-switcher.bottom #nice-demo-switcher-demos .demo-image img {
  width: auto !important;
}

#nice-demo-switcher.top.open {
  top: 0;
}

#nice-demo-switcher.bottom.open {
  bottom: 0;
}

#nice-demo-switcher-handler {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background: #eee;
  display: block;
  position: fixed;
  width: 44px;
  height: 40px;
  padding: 6px;
  text-align: center;
  line-height: 24px;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -ms-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  z-index: 150;
  right: 0;
  top: 180px;
}

body[data-demo-switcher-loaded] #nice-demo-switcher-handler {
  opacity: 0;
  -webkit-transition: opacity 0.4s linear 0s;
  -moz-transition: opacity 0.4s linear 0s;
  -ms-transition: opacity 0.4s linear 0s;
  -o-transition: opacity 0.4s linear 0s;
  transition: opacity 0.4s linear 0s;
}

body[data-demo-switcher-loaded="true"] #nice-demo-switcher-handler {
  opacity: 1;
}

#nice-demo-switcher-handler.overlay {
  background-color: #eee !important;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

#nice-demo-switcher-handler i {
  font-size: 24px;
}

#nice-demo-switcher-handler:hover i {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#nice-demo-switcher-handler.left {
  right: -44px;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

#nice-demo-switcher-handler.right {
  left: -44px;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -ms-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

#nice-demo-switcher-handler.top {
  top: 0;
}

#nice-demo-switcher-handler.bottm {
  bottom: 0;
}

#nice-demo-switcher-handler.top, #nice-demo-switcher-handler.bottom {
  right: 100px;
}

/*-------------------------------------------------------------------------------------------*/
/* Showcase.                                                                                 */
/*-------------------------------------------------------------------------------------------*/
#nice-demo-showcase #nice-demo-switcher-filters {
  padding-right: 10px;
}

#nice-demo-showcase #nice-demo-switcher-filters ul {
  margin-bottom: 5px;
}

#nice-demo-showcase #nice-demo-switcher-filters ul#nice-demo-switcher-filter {
  margin-bottom: 80px;
}

#nice-demo-showcase #nice-demo-switcher-filters ul:last-of-type {
  margin-bottom: 0;
}

#nice-demo-showcase #nice-demo-switcher-filters ul li {
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  line-height: 1.2em;
}

#nice-demo-showcase #nice-demo-switcher-filters ul li a {
  text-transform: capitalize;
}

#nice-demo-showcase #nice-demo-switcher-demos li {
  padding: 10px;
}

#nice-demo-showcase #nice-demo-switcher-demos li .demo-overlay .demo-details {
  padding: 0 10%;
}

#nice-demo-showcase #nice-demo-switcher-demos li .demo-overlay .demo-details .demo-title {
  height: 50%;
}

#nice-demo-showcase #nice-demo-switcher-demos li .demo-overlay .demo-details .demo-title span {
  height: 50%;
  padding: 20px;
  font-family: inherit;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2em;
}

#nice-demo-showcase #nice-demo-switcher-demos li .demo-overlay .demo-details .demo-description {
  height: 50%;
}

#nice-demo-showcase #nice-demo-switcher-demos li .demo-overlay .demo-details .demo-description span {
  height: 50%;
  font-family: inherit;
  font-size: 12px;
  font-weight: normal;
  text-decoration: none;
  line-height: 1.2em;
}

#nice-demo-showcase .filterable-empty {
  display: none;
  padding-bottom: 70px;
  width: 100%;
  text-align: center;
  font-family: inherit;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2em;
}

#nice-demo-showcase .demo-entry .demo-title {
  padding: 1.5em 0;
  text-align: center;
}

#nice-demo-showcase .demo-entry .demo-title h4 {
  font-size: 18px;
}

/*
	Buy Button
*/
.nice-buy-btn-tooltip {
  font-family: 'Open Sans',-apple-system,BlinkMacSystemFont,"Helvetica Neue",sans-serif;
  bottom: 20px;
  right: 20px;
  position: fixed;
  z-index: 200;
}

.nice-buy-btn-tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

.nice-buy-btn-tooltip .tooltip-content {
  background: #fff;
  bottom: 100px;
  right: 0px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  opacity: 0;
  width: 300px;
  z-index: 100;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.nice-buy-btn-tooltip .tooltip-content:after {
  background: #eee;
  bottom: -7px;
  content: "";
  display: block;
  height: 13px;
  position: absolute;
  right: 26px;
  transform: rotate(45deg);
  width: 12px;
  z-index: 100;
}

.nice-buy-btn-tooltip .tooltip-content .buy-btn-title,
.nice-buy-btn-tooltip .tooltip-content .buy-btn-description,
.nice-buy-btn-tooltip .tooltip-content .buy-btn-action {
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

.nice-buy-btn-tooltip .tooltip-content .buy-btn-title {
  background: #eee;
}

.nice-buy-btn-tooltip .tooltip-content .buy-btn-action {
  background: #eee;
  background-clip: padding-box;
  /* Stops background color from leaking outside the border. */
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.nice-buy-btn-tooltip .tooltip-button {
  height: 60px;
  line-height: 75px;
  width: 60px;
}

.cta {
  /*bottom: 40px;
	display: inline-block;
	position: relative;
	right: 40px;
	text-decoration: none;
	z-index: 95;*/
  font-weight: 700;
}

.cta:hover .cta-bubble-price,
.cta:hover .cta-bubble-icon {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.cta .currency {
  font-size: 16px;
}

.cta-active .cta-bubble-price, .cta-active .cta-bubble-icon {
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.64, 1.87, 0.79, 0.66) 0s;
}

.cta-bubble-price {
  height: 60px;
  line-height: 60px;
  width: 60px;
}

.cta-bubble-price, .cta-bubble-icon {
  background-color: #53add0;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 24px;
  text-align: center;
  transition: none 0s ease 0s;
}

.cta-bubble-price {
  position: absolute;
  bottom: 20px;
}

.cta-bubble-icon {
  background-color: #53add0;
  bottom: 0;
  font-size: 11px;
  height: 50px;
  line-height: 1em;
  padding-top: 13px;
  position: absolute;
  right: 0;
  width: 50px;
}

.demo-entry .item-caption {
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.demo-entry:hover .item-caption {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease 0s, box-shadow 0.3s ease 0s, background-color 0.3s ease 0s;
}

.nice-animation {
  transform-origin: 50% 50% !important;
}
