/*-------------------------------*
 * - Mixins
/*-------------------------------**/
/*------------------------------------*/
/*           Variables
/*------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  font-family: 'Poppins', 'open sans',  'lato',  'helvetica',  sans-serif;
  background-color: #1bbc9d;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pricing-container {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .pricing-container {
    width: 95%;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .pricing-container {
    width: 95%;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .pricing-container {
    width: 95%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-container {
    width: 99%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pricing-container {
    width: 90%;
  }
}

@media only screen and (min-width: 1439px) {
  .pricing-container {
    width: 90%;
  }
}

.pricing-switcher {
  text-align: center;
}

.pricing-switcher p.price-switcher-label {
  font-size: 0.9em;
  margin-bottom: 5px;
  color: #fff;
}

.pricing-switcher .price-switcher-switched {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: line-through;
}

.pricing-switcher .fieldset {
  display: inline-block;
  position: relative;
  border-radius: 50em;
  border: 2px solid #1d1d27;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .pricing-switcher .fieldset {
    padding: 2px 3px;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .pricing-switcher .fieldset {
    padding: 2px 3px;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .pricing-switcher .fieldset {
    padding: 2px 3px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-switcher .fieldset {
    padding: 2px 3px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pricing-switcher .fieldset {
    padding: 2px;
  }
}

@media only screen and (min-width: 1439px) {
  .pricing-switcher .fieldset {
    padding: 2px;
  }
}

.pricing-switcher input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.pricing-switcher label {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 90px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  font-size: 1rem;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .pricing-switcher label {
    height: 20px;
    line-height: 20px;
  }
}

.pricing-switcher .switch {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 40px;
  width: 90px;
  background-color: #1d1d27;
  border-radius: 50em;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (max-width: 768px) {
  .pricing-switcher .switch {
    height: 20px;
  }
}

.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
  -webkit-transform: translateX(95px);
  transform: translateX(95px);
}

.no-js .pricing-switcher {
  display: none;
}

.pricing-list {
  width: 100%;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .pricing-list {
    margin-top: 0.5em;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .pricing-list {
    margin-top: 1em;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .pricing-list {
    margin-top: 1em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-list {
    margin-top: 2em;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pricing-list {
    margin-top: 2em;
  }
}

@media only screen and (min-width: 1439px) {
  .pricing-list {
    margin-top: 2em;
  }
}

.pricing-list > li {
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .pricing-list > li {
    margin-bottom: 1.5vh;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .pricing-list > li {
    margin-bottom: 1.5vh;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .pricing-list > li {
    margin-bottom: 2vh;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-list > li {
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pricing-list > li {
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 1439px) {
  .pricing-list > li {
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 768px) {
  .pricing-list {
    margin: 3em 0 0;
  }
  .pricing-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .pricing-list > li {
    width: 33.3333333333%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
  }
  .has-margins .pricing-list > li {
    width: 32.3333333333%;
    float: left;
    margin-right: 1.5%;
  }
  .has-margins .pricing-list > li:last-of-type {
    margin-right: 0;
  }
}

.pricing-wrapper {
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-wrapper:hover {
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.35);
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.pricing-wrapper:hover .pricing-footer {
  background-color: white;
  border: 0px 5px  5px 5px solid #fff;
  padding: 15px;
  border-radius: 10px;
  opacity: 1;
  visibility: visible !important;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .pricing-wrapper:hover .pricing-footer {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.pricing-wrapper > li {
  background-color: #ffffff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  margin: -1px;
  border-radius: 10px;
}

.pricing-wrapper > li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  pointer-events: none;
  background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.pricing-wrapper > li.is-ended::after {
  display: none;
}

.pricing-wrapper .is-visible {
  position: relative;
  z-index: 5;
}

.pricing-wrapper .is-hidden {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.pricing-wrapper .is-selected {
  z-index: 3 !important;
}

.touch .pricing-wrapper {
  -webkit-perspective: 2000px;
  perspective: 2000px;
}

.pricing-wrapper.is-switched .is-visible {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-animation: rotate 0.5s;
  animation: rotate 0.5s;
}

.pricing-wrapper.is-switched .is-hidden {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-animation: rotate-inverse 0.5s;
  animation: rotate-inverse 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched .is-selected {
  opacity: 1;
}

.pricing-wrapper.is-switched .reverse-animation .is-visible {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-animation: rotate-back 0.5s;
  animation: rotate-back 0.5s;
}

.pricing-wrapper.is-switched .reverse-animation .is-hidden {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-animation: rotate-inverse-back 0.5s;
  animation: rotate-inverse-back 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched .reverse-animation .is-selected {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .pricing-wrapper > li::before {
    content: '';
    position: absolute;
    z-index: 6;
    left: -1px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: #b1d6e8;
  }
  .pricing-wrapper > li::after {
    display: none;
  }
  .has-margins .pricing-wrapper > li,
  .has-margins .exclusive .pricing-wrapper > li {
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }
  :nth-of-type(1) > .pricing-wrapper > li::before {
    display: none;
  }
  .has-margins .pricing-wrapper > li {
    border-radius: 4px 4px 6px 6px;
  }
  .has-margins .pricing-wrapper > li::before {
    display: none;
  }
}

@media only screen and (min-width: 1500px) {
  .full-width .pricing-wrapper > li {
    padding: 2.5em 0;
  }
}

.no-js .pricing-wrapper .is-hidden {
  position: relative;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  margin-top: 1em;
}

.pricing-header {
  height: auto;
  padding: 1.9em 0 1.6em;
  pointer-events: auto;
  text-align: center;
  color: #1bbc9d;
  background-color: transparent;
}

@media only screen and (max-width: 768px) {
  .pricing-header {
    padding: 0px;
  }
}

.pricing-header h2 {
  font-weight: 600;
  margin-bottom: 3vh;
  padding-top: 1vh;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 2px !important;
}

@media only screen and (max-width: 768px) {
  .pricing-header h2 {
    font-size: 4vh;
    margin-bottom: 0px;
  }
}

/*----------------------*/
/*      #exclusive     */
/*----------------------*/
.exclusive .pricing-header {
  color: #1bbc9d;
  background-color: transparent;
}

.exclusive .currency,
.exclusive .duration {
  color: #1d1d27;
}

.exclusive .select {
  background-color: #1bbc9d;
  color: #ffffff;
}

.exclusive .top-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  line-height: 1em;
  color: white;
  border-radius: 5px;
  padding: 10px;
  background-color: #1d1d273d;
  font-size: 0.7em;
  font-weight: 600;
}

@media only screen and (max-width: 425px) {
  .exclusive .top-badge {
    font-size: 1.5vh;
    padding: 7px;
  }
}

@media only screen and (min-width: 768px) {
  .exclusive .pricing-wrapper > li::before {
    display: none;
  }
  .exclusive + li .pricing-wrapper > li::before {
    display: none;
  }
}

.has-margins .exclusive .pricing-features li {
  margin: 0;
}

.no-touch .exclusive .select:hover {
  background-color: #2ae0bd;
}

.no-touch .secondary-theme .exclusive .select:hover {
  background-color: #1bbc9d;
}

.secondary-theme .exclusive .select {
  background-color: #1bbc9d;
}

/*----  End of Exclusive --- */
.currency {
  font-weight: 300;
  color: #1bbc9d;
  display: inline-block;
  margin-top: 10px;
  vertical-align: top;
  font-weight: 600;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .currency {
    font-size: 1.1rem;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .currency {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .currency {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .currency {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .currency {
    font-size: 1.7rem;
  }
}

@media only screen and (min-width: 1439px) {
  .currency {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 768px) {
  .currency {
    margin-top: 0px;
  }
}

.value {
  font-weight: 300;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .value {
    font-size: 4vh;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .value {
    font-size: 4vh;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .value {
    font-size: 5vh;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .value {
    font-size: 6vh;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .value {
    font-size: 6vh;
  }
}

@media only screen and (min-width: 1439px) {
  .value {
    font-size: 6vh;
  }
}

.duration {
  color: #1bbc9d;
  font-weight: 700;
  color: #1bbc9d;
  text-transform: uppercase;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .duration {
    font-size: 0.6rem;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .duration {
    font-size: 0.7rem;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .duration {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .duration {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .duration {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1439px) {
  .duration {
    font-size: 1rem;
  }
}

.duration::before {
  margin-right: 2px;
}

.switched {
  background-color: #D48F5D !important;
}

.switched .value,
.switched .pricing-header,
.switched .currency:not([exclusive]),
.switched .duration {
  color: #c97335;
}

.switched .exclusive .value,
.switched .exclusive .pricing-header {
  color: #D48F5D;
}

.switched .exclusive .currency,
.switched .exclusive .duration {
  color: #1d1d27;
}

.switched .select {
  border-color: #D48F5D !important;
  color: #D48F5D !important;
}

.switched .select:hover {
  background-color: #dfab85 !important;
  color: #fff !important;
}

.switched .no-touch .select:hover {
  background-color: #D48F5D !important;
  color: #ffffff;
}

.switched .exclusive .select {
  background-color: #D48F5D;
  color: #ffffff !important;
}

.switched .no-touch .exclusive .select:hover {
  background-color: #c97335 !important;
}

.pricing-body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: visible;
}

.is-switched .pricing-body {
  overflow: hidden;
  margin: 0px;
  padding: 0px;
}

.pricing-features {
  color: #494962;
  width: auto;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .pricing-features {
    padding-bottom: 3px;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .pricing-features {
    padding-bottom: 5px;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .pricing-features {
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-features {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pricing-features {
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 1439px) {
  .pricing-features {
    padding-bottom: 70px;
  }
}

.pricing-features:after {
  content: "";
  display: table;
  clear: both;
}

.pricing-features li {
  float: none;
  width: auto;
  line-height: 3vh;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .pricing-features li {
    font-size: 1.8vh;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .pricing-features li {
    font-size: 2vh;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .pricing-features li {
    font-size: 2vh;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-features li {
    font-size: 0.9rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pricing-features li {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 1439px) {
  .pricing-features li {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 374px) {
  .pricing-features li {
    padding: 0em;
  }
}

@media only screen and (min-width: 375px) and (max-width: 424px) {
  .pricing-features li {
    padding: 0em;
  }
}

@media only screen and (min-width: 425px) and (max-width: 767px) {
  .pricing-features li {
    padding: 0em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-features li {
    padding: 2vh;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pricing-features li {
    padding: 2vh 0.2vh;
  }
}

@media only screen and (min-width: 1439px) {
  .pricing-features li {
    padding: 2vh;
  }
}

.pricing-features li.unavailable {
  color: #ccc;
  text-decoration: line-through;
}

.pricing-features em {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}

.pricing-features span.feature-duration {
  font-size: 10px;
}

.pricing-footer {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1.8em 0;
  text-align: center;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.pricing-footer::after {
  display: none;
}

@media only screen and (min-width: 768px) {
  .pricing-footer {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

.pricing-footer:hover {
  opacity: 1 !important;
  visibility: visible !important;
}

.pricing-footer:hover.no-touch .select {
  cursor: pointer;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.has-margins .pricing-footer {
  padding-bottom: 0;
}

.select {
  position: static;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  height: auto;
  padding: 1.3em 0;
  color: #1bbc9d;
  border-radius: 8px;
  border: 2px solid #1bbc9d;
  font-size: 1.4rem;
  text-indent: 0;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
  -webkit-transition: all .6s;
  transition: all .6s;
  width: 70%;
}

@media only screen and (max-width: 425px) {
  .select {
    padding: 0.8rem 1.5rem;
    width: 50%;
  }
}

@media only screen and (max-width: 1024px) {
  .select.pricing-button {
    height: 10px;
    line-height: 0em;
    margin: 0px;
    font-size: 1em;
    padding: 20px 20px 20px 20px;
  }
}

.no-touch .select:hover {
  background-color: #1bbc9d;
  color: #ffffff;
}

.has-margins .select {
  display: block;
  padding: 1.7em 0;
  border-radius: 0 0 4px 4px;
}

/*-------------------------------------*/
/*          Animations
/*-------------------------------------*/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(200deg);
    transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
    transform: perspective(2000px) rotateY(180deg);
  }
}

@-webkit-keyframes rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
}

@keyframes rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
    transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(20deg);
    transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

@-webkit-keyframes rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
  }
}

@keyframes rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-200deg);
    transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
    transform: perspective(2000px) rotateY(-180deg);
  }
}

@-webkit-keyframes rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
}

@keyframes rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
    transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-20deg);
    transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}
/*# sourceMappingURL=price.css.map */