.for1phone {
  display: block;
  fill: #FFF !important;
  text-align: center;
  width: 35.5px; }
  @media (min-width: 1400px) {
    .for1phone {
      display: block;
      fill: #FFF !important;
      text-align: center;
      width: 46px; } }

.shareamongmultipledevices {
  display: block;
  fill: #FFF !important;
  text-align: center;
  width: 54px; }
  @media (min-width: 840px) {
    .shareamongmultipledevices {
      display: block;
      fill: #FFF !important;
      text-align: center;
      width: 64.8px; } }
  @media (min-width: 1400px) {
    .shareamongmultipledevices {
      display: block;
      fill: #FFF !important;
      text-align: center;
      width: 81px; } }

.changebgcolor {
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.animated.infinite {
  animation-iteration-count: infinite; }

.animated.hinge {
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }
.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }
.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }
.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }
.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }
.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }
.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }
.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }
.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }
.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  animation-name: hinge; }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }
.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }
.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }
.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  animation-name: slideOutUp; }

/* word for all the circles start */
#planadvisor {
  /* word for all the circles end */
  /* DIV user's answers with red circle */
  /* DIV user's choice with gray circle */ }
  #planadvisor .word {
    font-family: NotoSansCondBold, NotoSansTCBlack;
    position: absolute;
    color: white;
    top: 65%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 68%;
    width: 300px;
    text-align: center;
    font-size: 13px; }
    @media (min-width: 769px) {
      #planadvisor .word {
        font-size: 14px; } }
    @media (min-width: 840px) {
      #planadvisor .word {
        font-size: 16px; } }
    @media (min-width: 1400px) {
      #planadvisor .word {
        font-size: 20px; } }
  #planadvisor .word2 {
    font-family: NotoSansCondBold, NotoSansTCBlack;
    position: absolute;
    color: white;
    top: 65%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 13px;
    font-size: 12px;
    top: 72%;
    text-align: center;
    white-space: normal;
    width: 100px;
    word-break: break-word; }
    @media (min-width: 769px) {
      #planadvisor .word2 {
        font-size: 14px;
        line-height: 14px; } }
    @media (min-width: 840px) {
      #planadvisor .word2 {
        font-size: 14px;
        line-height: 14px;
        width: 100px; } }
    @media (min-width: 1400px) {
      #planadvisor .word2 {
        font-size: 16px;
        line-height: 16px;
        width: 150px; } }
  #planadvisor .word3 {
    font-family: NotoSansCondBold, NotoSansTCBlack;
    position: absolute;
    color: white;
    top: 65%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 13px;
    font-size: 12px;
    top: 72%;
    text-align: center;
    white-space: normal;
    width: 100px;
    word-break: break-word;
    width: 75px;
    top: 80%; }
    @media (min-width: 769px) {
      #planadvisor .word3 {
        font-size: 14px;
        line-height: 14px; } }
    @media (min-width: 840px) {
      #planadvisor .word3 {
        font-size: 14px;
        line-height: 14px;
        width: 100px; } }
    @media (min-width: 1400px) {
      #planadvisor .word3 {
        font-size: 16px;
        line-height: 16px;
        width: 150px; } }
    @media (min-width: 769px) {
      #planadvisor .word3 {
        width: 100px; } }
    @media (min-width: 1400px) {
      #planadvisor .word3 {
        width: 150px; } }
    @media (max-width: 1400px) {
      #planadvisor .word3 {
        top: 77%; } }
  #planadvisor .circle_container {
    overflow: hidden;
    -ms-overflow-style: none;
    font-size: 10px;
    margin: auto;
    width: 73%; }
    #planadvisor .circle_container::-webkit-scrollbar {
      width: 0px;
      background: transparent;
      /* make scrollbar transparent */ }
    @media (min-width: 769px) {
      #planadvisor .circle_container {
        font-size: 0.8em; } }
    @media (min-width: 840px) {
      #planadvisor .circle_container {
        font-size: 0.8em; } }
  #planadvisor .centertwocirlesheight {
    height: 80vh; }
    @media screen and (min-width: 769px) and (max-height: 860px) {
      #planadvisor .centertwocirlesheight {
        height: auto;
        right: 0px; } }
    @media screen and (max-width: 768px) and (max-height: 650px) {
      #planadvisor .centertwocirlesheight {
        height: auto;
        right: 0px; } }
    @media screen and (max-width: 480px) and (max-height: 650px) {
      #planadvisor .centertwocirlesheight {
        height: auto; } }
    @media (min-width: 769px) {
      #planadvisor .centertwocirlesheight {
        height: 80vh; } }
  #planadvisor .centercirlesheight {
    height: 60vh;
    width: auto;
    position: relative;
    margin: auto; }
    @media screen and (max-width: 768px) and (max-height: 650px) {
      #planadvisor .centercirlesheight {
        height: auto; } }
  #planadvisor .centercirlesheightfourcircle {
    height: 60vh;
    width: auto;
    position: relative;
    margin: auto; }
    @media screen and (max-width: 768px) and (max-height: 650px) {
      #planadvisor .centercirlesheightfourcircle {
        height: auto;
        right: 0px; } }
  #planadvisor .centertwocirles {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media screen and (min-width: 769px) and (max-height: 650px) {
      #planadvisor .centertwocirles {
        top: 0;
        position: relative;
        margin: auto;
        margin-top: 12%;
        left: -1%;
        width: 443.6px;
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        transform: translate(0%, 0%); } }
    @media screen and (max-width: 768px) and (max-height: 650px) {
      #planadvisor .centertwocirles {
        top: 45%;
        position: relative;
        margin: auto;
        margin-top: 20%;
        left: 0%;
        width: 350.8px;
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        transform: translate(0%, 0%); } }
    @media screen and (max-width: 480px) and (max-height: 650px) {
      #planadvisor .centertwocirles {
        top: 45%;
        position: relative;
        margin: auto;
        margin-top: 30%;
        left: 0%;
        width: 294px;
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        transform: translate(0%, 0%); } }
    @media (max-width: 480px) {
      #planadvisor .centertwocirles {
        width: 294px; } }
  #planadvisor .centercirles {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media screen and (min-width: 769px) and (max-height: 860px) {
      #planadvisor .centercirles {
        top: 45%;
        position: relative;
        margin: auto;
        margin-top: 9%;
        left: 0%;
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        width: auto;
        margin-top: 5%;
        top: 0; } }
    @media screen and (max-width: 768px) and (max-height: 650px) {
      #planadvisor .centercirles {
        top: 45%;
        position: relative;
        margin: auto;
        margin-top: 9%;
        left: 0%;
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        width: auto; } }
    @media screen and (max-width: 480px) and (max-height: 650px) {
      #planadvisor .centercirles {
        top: 45%;
        position: relative;
        margin: auto;
        margin-top: 9%;
        left: 0%;
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        width: auto; } }
  #planadvisor .centermultiplecirles {
    overflow-x: auto;
    width: 100%;
    margin-top: 20px;
    overflow-y: hidden;
    -ms-overflow-style: none; }
    #planadvisor .centermultiplecirles::-webkit-scrollbar {
      width: 0px;
      background: transparent;
      /* make scrollbar transparent */ }
    @media screen and (min-width: 769px) and (max-height: 650px) {
      #planadvisor .centermultiplecirles {
        margin-bottom: 50px; } }
  #planadvisor .wrap_text {
    width: 90px;
    word-wrap: break-word;
    white-space: normal; }
    @media (min-width: 769px) {
      #planadvisor .wrap_text {
        width: 100px; } }
    @media (min-width: 840px) {
      #planadvisor .wrap_text {
        width: 120px; } }
    @media (min-width: 1400px) {
      #planadvisor .wrap_text {
        width: 126.71px; } }
  #planadvisor .line {
    width: 285px;
    margin-top: 0;
    margin-bottom: 0; }
    @media (min-width: 769px) {
      #planadvisor .line {
        width: 366px; } }
    @media (min-width: 1400px) {
      #planadvisor .line {
        width: 450px; } }
  #planadvisor .circle_answer {
    text-align: center;
    margin: 0 auto;
    display: block;
    font-family: NotoSansRegular, NotoSansTCRegular;
    overflow: hidden;
    -ms-overflow-style: none; }
    #planadvisor .circle_answer::-webkit-scrollbar {
      width: 0px;
      background: transparent;
      /* make scrollbar transparent */ }
    @media screen and (max-width: 840px) {
      #planadvisor .circle_answer {
        margin-top: 3%; } }
    #planadvisor .circle_answer .underline {
      padding-top: 5px;
      text-align: center;
      overflow-x: scroll;
      overflow-y: hidden; }
    #planadvisor .circle_answer .smallcircle {
      position: absolute;
      right: 15%;
      width: 20px;
      height: 20px;
      background: black;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px;
      display: inline-block;
      z-index: 99;
      float: right;
      cursor: pointer;
      top: 0; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_answer .smallcircle {
          width: 25.6px;
          height: 25.6px;
          background: black;
          -webkit-border-radius: 12.8px;
          -moz-border-radius: 12.8px;
          border-radius: 12.8px;
          right: 10px;
          top: -5px; } }
      @media screen and (min-width: 769px) {
        #planadvisor .circle_answer .smallcircle {
          width: 25.6px;
          height: 25.6px;
          background: black;
          -webkit-border-radius: 12.8px;
          -moz-border-radius: 12.8px;
          border-radius: 12.8px;
          right: 12px;
          top: -5px; } }
      @media (min-width: 840px) {
        #planadvisor .circle_answer .smallcircle {
          width: 25.25px;
          height: 25.25px;
          background: black;
          -webkit-border-radius: 12.625px;
          -moz-border-radius: 12.625px;
          border-radius: 12.625px;
          right: 20px;
          top: -5px;
          z-index: 999; } }
      #planadvisor .circle_answer .smallcircle .whiteline {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 40%;
        height: 10%;
        top: 50%;
        border-bottom: 1px solid white;
        position: absolute; }
    #planadvisor .circle_answer .chosen_circle {
      width: 50px;
      height: 50px;
      background: white;
      -webkit-border-radius: 25px;
      -moz-border-radius: 25px;
      border-radius: 25px;
      margin-bottom: 5px;
      margin: auto;
      position: relative;
      border: solid 1px #ababab; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_answer .chosen_circle {
          width: 57.6px;
          height: 57.6px;
          background: white;
          -webkit-border-radius: 28.8px;
          -moz-border-radius: 28.8px;
          border-radius: 28.8px; } }
      @media screen and (min-width: 769px) {
        #planadvisor .circle_answer .chosen_circle {
          width: 60px;
          height: 60px;
          background: white;
          -webkit-border-radius: 30px;
          -moz-border-radius: 30px;
          border-radius: 30px; } }
      @media screen and (min-width: 840px) {
        #planadvisor .circle_answer .chosen_circle {
          width: 56.71px;
          height: 56.71px;
          background: white;
          -webkit-border-radius: 28.355px;
          -moz-border-radius: 28.355px;
          border-radius: 28.355px; } }
      #planadvisor .circle_answer .chosen_circle.yellow {
        background-color: #eeb900; }
      #planadvisor .circle_answer .chosen_circle img {
        width: 40%;
        margin-top: 50%;
        transform: translate(0, -50%); }
        #planadvisor .circle_answer .chosen_circle img.large {
          width: 60%; }
      #planadvisor .circle_answer .chosen_circle .number {
        color: #ababab;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 55%;
        font-size: 20pt; }
    #planadvisor .circle_answer ul {
      white-space: nowrap;
      padding: 0;
      display: -webkit-inline-flex;
      display: inline-flex;
      margin-bottom: 0;
      -webkit-flex-wrap: nowrap;
      /* Safari 6.1+ */ }
      #planadvisor .circle_answer ul li {
        display: inline-block;
        position: relative;
        width: 100%; }
        #planadvisor .circle_answer ul li .outercircle {
          display: inline;
          float: left; }
          #planadvisor .circle_answer ul li .outercircle .wrap_text {
            color: #7e7e7e;
            text-align: center;
            margin-top: 0.5em; }
          #planadvisor .circle_answer ul li .outercircle .border {
            border-left: 1px solid #dedede;
            margin-left: 2%;
            padding-left: 6%; }
        @media (min-width: 1400px) {
          #planadvisor .circle_answer ul li:nth-child(n+2) {
            padding-left: 10px; } }
        #planadvisor .circle_answer ul li:nth-child(n+2) .wrap_text {
          padding-left: 6%; }
  #planadvisor .circle_choice {
    width: calc(95px * 3 + 15px * 2);
    margin: auto;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    margin-top: 10px;
    margin-bottom: 130px; }
    #planadvisor .circle_choice::-webkit-scrollbar {
      width: 0px;
      background: transparent;
      /* make scrollbar transparent */ }
    @media (min-width: 769px) and (min-height: 860px) {
      #planadvisor .circle_choice {
        margin-bottom: 180px; } }
    @media (min-width: 840px) and (min-height: 860px) {
      #planadvisor .circle_choice {
        margin-bottom: 150px; } }
    @media screen and (min-width: 480px) {
      #planadvisor .circle_choice {
        width: calc(115.2px * 3 + 15px * 2); } }
    @media (min-width: 767px) {
      #planadvisor .circle_choice {
        width: calc(122px * 3 + 15px * 2); } }
    @media (min-width: 840px) {
      #planadvisor .circle_choice {
        width: 685px; } }
    @media (min-width: 1400px) {
      #planadvisor .circle_choice {
        width: 825px; } }
    #planadvisor .circle_choice .circlerow {
      display: inline-flex; }
      #planadvisor .circle_choice .circlerow .circlemain {
        position: relative;
        width: 95px;
        height: 95px; }
        #planadvisor .circle_choice .circlerow .circlemain:not(:first-child) {
          margin-left: 15px; }
        @media screen and (min-width: 480px) {
          #planadvisor .circle_choice .circlerow .circlemain {
            width: 115.2px;
            height: 115.2px; } }
        @media screen and (min-width: 769px) {
          #planadvisor .circle_choice .circlerow .circlemain {
            width: 122px;
            height: 122px; } }
        @media (min-width: 1400px) {
          #planadvisor .circle_choice .circlerow .circlemain {
            width: 150px;
            height: 150px; } }
    #planadvisor .circle_choice .alt {
      margin-top: 0;
      margin-left: 54.5px; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_choice .alt {
          margin-left: 64.6px; } }
      @media (min-width: 769px) {
        #planadvisor .circle_choice .alt {
          margin-left: 68px; } }
      @media (min-width: 1400px) {
        #planadvisor .circle_choice .alt {
          margin-left: 82px; } }
    #planadvisor .circle_choice .circle {
      width: 95px;
      height: 95px;
      background: #c2c4c4;
      -webkit-border-radius: 47.5px;
      -moz-border-radius: 47.5px;
      border-radius: 47.5px;
      display: inline-block;
      cursor: pointer;
      position: relative; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_choice .circle {
          width: 115.2px;
          height: 115.2px;
          background: #c2c4c4;
          -webkit-border-radius: 57.6px;
          -moz-border-radius: 57.6px;
          border-radius: 57.6px; } }
      @media screen and (min-width: 769px) {
        #planadvisor .circle_choice .circle {
          width: 122px;
          height: 122px;
          background: #c2c4c4;
          -webkit-border-radius: 61px;
          -moz-border-radius: 61px;
          border-radius: 61px; } }
      @media screen and (min-width: 1400px) {
        #planadvisor .circle_choice .circle {
          width: 150px;
          height: 150px;
          background: #c2c4c4;
          -webkit-border-radius: 75px;
          -moz-border-radius: 75px;
          border-radius: 75px; } }
    #planadvisor .circle_choice img {
      position: absolute;
      width: 60%;
      left: 30%;
      height: 55%;
      top: 38%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      text-align: center; }
      @media (max-width: 1400px) {
        #planadvisor .circle_choice img {
          width: 40%;
          height: 42%;
          top: 31%; } }
  #planadvisor .circle_choice_H {
    margin: auto;
    position: relative;
    white-space: nowrap;
    margin-top: 10px;
    margin-bottom: 130px; }
    @media (min-width: 769px) and (min-height: 860px) {
      #planadvisor .circle_choice_H {
        margin-bottom: 180px; } }
    @media (min-width: 840px) and (min-height: 860px) {
      #planadvisor .circle_choice_H {
        margin-bottom: 150px; } }
    #planadvisor .circle_choice_H .circlerow {
      display: block;
      width: 50%;
      height: 95px; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_choice_H .circlerow {
          height: 115.2px; } }
      @media (min-width: 1400px) {
        #planadvisor .circle_choice_H .circlerow {
          height: 124.9px; } }
      #planadvisor .circle_choice_H .circlerow .circlemain {
        position: relative;
        width: 95px;
        height: 95px;
        margin-left: 5px;
        display: inline-block; }
        @media screen and (min-width: 480px) {
          #planadvisor .circle_choice_H .circlerow .circlemain {
            width: 115.2px;
            height: 115.2px; } }
        @media (min-width: 1400px) {
          #planadvisor .circle_choice_H .circlerow .circlemain {
            width: 124.9px;
            height: 124.9px;
            margin-left: 15px; } }
        #planadvisor .circle_choice_H .circlerow .circlemain .circle {
          width: 95px;
          height: 95px;
          background: #c2c4c4;
          -webkit-border-radius: 47.5px;
          -moz-border-radius: 47.5px;
          border-radius: 47.5px;
          display: inline-block;
          cursor: pointer;
          position: relative; }
          @media screen and (min-width: 480px) {
            #planadvisor .circle_choice_H .circlerow .circlemain .circle {
              width: 115.2px;
              height: 115.2px;
              background: #c2c4c4;
              -webkit-border-radius: 57.6px;
              -moz-border-radius: 57.6px;
              border-radius: 57.6px; } }
          @media screen and (min-width: 1400px) {
            #planadvisor .circle_choice_H .circlerow .circlemain .circle {
              width: 124.9px;
              height: 124.9px;
              background: #c2c4c4;
              -webkit-border-radius: 62.45px;
              -moz-border-radius: 62.45px;
              border-radius: 62.45px; } }
        #planadvisor .circle_choice_H .circlerow .circlemain img {
          position: absolute;
          max-width: 45%	!important;
          max-height: 40px;
          left: 30%;
          top: 35%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          text-align: center; }
          @media (min-width: 480px) {
            #planadvisor .circle_choice_H .circlerow .circlemain img {
              max-height: 50px; } }
          #planadvisor .circle_choice_H .circlerow .circlemain img.large {
            width: 60%; }
          #planadvisor .circle_choice_H .circlerow .circlemain img.small {
            width: 30%; }
        #planadvisor .circle_choice_H .circlerow .circlemain .word3 {
          top: 72%; }
          @media (min-width: 769px) {
            #planadvisor .circle_choice_H .circlerow .circlemain .word3 {
              width: 80px; } }
          @media (min-width: 1400px) {
            #planadvisor .circle_choice_H .circlerow .circlemain .word3 {
              width: 100px; } }
    #planadvisor .circle_choice_H .row2 {
      margin: 0;
      margin-left: 50px; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_choice_H .row2 {
          margin-left: 60.1px; } }
      @media (min-width: 1400px) {
        #planadvisor .circle_choice_H .row2 {
          margin-left: 69.95px; } }
    #planadvisor .circle_choice_H .row3 {
      margin: 0;
      margin-left: 100px; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_choice_H .row3 {
          margin-left: 120.2px; } }
  @media (min-width: 768px) {
    #planadvisor #r2sq1 {
      width: 540px; } }
  #planadvisor .circle_choice_two {
    width: 100%;
    margin: auto;
    position: relative;
    margin-top: 10px;
    margin-bottom: 130px; }
    @media (min-width: 769px) and (min-height: 860px) {
      #planadvisor .circle_choice_two {
        margin-bottom: 180px; } }
    @media (min-width: 840px) and (min-height: 860px) {
      #planadvisor .circle_choice_two {
        margin-bottom: 150px; } }
    #planadvisor .circle_choice_two ul {
      width: 92%;
      list-style-type: none;
      margin: auto;
      padding: 0; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_choice_two ul {
          width: 320.8px; } }
      @media (min-width: 769px) {
        #planadvisor .circle_choice_two ul {
          width: 413.6px; } }
      @media (min-width: 840px) {
        #planadvisor .circle_choice_two ul {
          width: 418.6px; } }
      #planadvisor .circle_choice_two ul li {
        display: inline-block; }
        #planadvisor .circle_choice_two ul li.border {
          border-right: solid 1px #bdbdbe;
          padding-right: 10px; }
        #planadvisor .circle_choice_two ul li .circle {
          width: 127px;
          height: 127px;
          background: #117a00;
          -webkit-border-radius: 63.5px;
          -moz-border-radius: 63.5px;
          border-radius: 63.5px;
          display: block;
          cursor: pointer;
          position: relative; }
          @media screen and (min-width: 480px) {
            #planadvisor .circle_choice_two ul li .circle {
              width: 150.4px;
              height: 150.4px;
              background: #117a00;
              -webkit-border-radius: 75.2px;
              -moz-border-radius: 75.2px;
              border-radius: 75.2px; } }
          @media (min-width: 769px) {
            #planadvisor .circle_choice_two ul li .circle {
              width: 196.8px;
              height: 196.8px;
              background: #117a00;
              -webkit-border-radius: 98.4px;
              -moz-border-radius: 98.4px;
              border-radius: 98.4px; } }
          #planadvisor .circle_choice_two ul li .circle.gap {
            margin-left: 10px; }
            @media (min-width: 840px) {
              #planadvisor .circle_choice_two ul li .circle.gap {
                margin-left: 17px; } }
            @media (min-width: 1400px) {
              #planadvisor .circle_choice_two ul li .circle.gap {
                margin-left: 17px; } }
          #planadvisor .circle_choice_two ul li .circle .image {
            position: absolute;
            top: 35%;
            z-index: 1;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            text-align: center;
            font-size: 10px; }
          #planadvisor .circle_choice_two ul li .circle .word {
            margin-top: 9%; }
          #planadvisor .circle_choice_two ul li .circle .word2 {
            margin-top: 3%; }
            @media (min-width: 769px) {
              #planadvisor .circle_choice_two ul li .circle .word2 {
                font-size: 16px;
                line-height: 16px;
                width: 150px; } }
            @media (min-width: 1400px) {
              #planadvisor .circle_choice_two ul li .circle .word2 {
                font-size: 20px;
                line-height: 20px; } }
  #planadvisor .circle_choice_four {
    width: calc(95px * 2 + 20px);
    margin: auto;
    position: relative;
    margin-top: 10px;
    margin-bottom: 130px; }
    @media (min-width: 769px) and (min-height: 860px) {
      #planadvisor .circle_choice_four {
        margin-bottom: 180px; } }
    @media (min-width: 840px) and (min-height: 860px) {
      #planadvisor .circle_choice_four {
        margin-bottom: 150px; } }
    @media screen and (min-width: 480px) {
      #planadvisor .circle_choice_four {
        width: calc(115.2px * 2 + 20px); } }
    @media screen and (min-width: 769px) {
      #planadvisor .circle_choice_four {
        width: 264px; } }
    @media screen and (min-width: 840px) {
      #planadvisor .circle_choice_four {
        width: 539px; } }
    @media screen and (min-width: 1400px) {
      #planadvisor .circle_choice_four {
        width: 651px; } }
    #planadvisor .circle_choice_four ul {
      width: 210px;
      list-style-type: none;
      margin: auto;
      margin-bottom: 20px;
      padding: 0; }
      @media screen and (min-width: 480px) {
        #planadvisor .circle_choice_four ul {
          width: 250.4px; } }
      @media screen and (min-width: 769px) {
        #planadvisor .circle_choice_four ul {
          width: 264px; } }
      @media screen and (min-width: 840px) {
        #planadvisor .circle_choice_four ul {
          width: 539px; } }
      @media screen and (min-width: 1400px) {
        #planadvisor .circle_choice_four ul {
          width: 651px; } }
      #planadvisor .circle_choice_four ul li {
        display: inline-block;
        position: relative;
        margin-right: 20px;
        width: 95px;
        height: 95px; }
        @media screen and (min-width: 480px) {
          #planadvisor .circle_choice_four ul li {
            width: 115.2px;
            height: 115.2px; } }
        @media screen and (min-width: 769px) {
          #planadvisor .circle_choice_four ul li {
            width: 122px;
            height: 122px; } }
        @media (min-width: 840px) {
          #planadvisor .circle_choice_four ul li {
            width: 122px;
            height: 122px;
            margin-right: 17px; } }
        @media (min-width: 1400px) {
          #planadvisor .circle_choice_four ul li {
            width: 150px;
            height: 150px;
            margin-right: 17px; } }
        @media (max-width: 840px) {
          #planadvisor .circle_choice_four ul li:nth-child(2) {
            margin-right: 0; } }
        @media (min-width: 840px) {
          #planadvisor .circle_choice_four ul li:nth-child(4) {
            margin-right: 0; } }
        #planadvisor .circle_choice_four ul li .word {
          font-family: NotoSansCondBold, NotoSansTCBlack;
          position: absolute;
          color: white;
          top: 65%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          line-height: 13px;
          font-size: 12px;
          top: 72%;
          text-align: center;
          white-space: normal;
          width: 100px;
          word-break: break-word;
          position: absolute;
          top: 55%;
          font-size: 32pt; }
          @media (min-width: 769px) {
            #planadvisor .circle_choice_four ul li .word {
              font-size: 14px;
              line-height: 14px; } }
          @media (min-width: 840px) {
            #planadvisor .circle_choice_four ul li .word {
              font-size: 14px;
              line-height: 14px;
              width: 100px; } }
          @media (min-width: 1400px) {
            #planadvisor .circle_choice_four ul li .word {
              font-size: 16px;
              line-height: 16px;
              width: 150px; } }
          @media (min-width: 769px) {
            #planadvisor .circle_choice_four ul li .word {
              font-size: 32pt; } }
          @media (min-width: 1400px) {
            #planadvisor .circle_choice_four ul li .word {
              font-size: 40pt; } }
      #planadvisor .circle_choice_four ul .circle {
        width: 95px;
        height: 95px;
        background: #c2c4c4;
        -webkit-border-radius: 47.5px;
        -moz-border-radius: 47.5px;
        border-radius: 47.5px;
        display: block;
        cursor: pointer;
        position: relative; }
        @media screen and (min-width: 480px) {
          #planadvisor .circle_choice_four ul .circle {
            width: 115.2px;
            height: 115.2px;
            background: #c2c4c4;
            -webkit-border-radius: 57.6px;
            -moz-border-radius: 57.6px;
            border-radius: 57.6px; } }
        @media (min-width: 769px) {
          #planadvisor .circle_choice_four ul .circle {
            width: 122px;
            height: 122px;
            background: #c2c4c4;
            -webkit-border-radius: 61px;
            -moz-border-radius: 61px;
            border-radius: 61px; } }
        @media (min-width: 840px) {
          #planadvisor .circle_choice_four ul .circle {
            width: 122px;
            height: 122px;
            background: #c2c4c4;
            -webkit-border-radius: 61px;
            -moz-border-radius: 61px;
            border-radius: 61px; } }
        @media (min-width: 1400px) {
          #planadvisor .circle_choice_four ul .circle {
            width: 150px;
            height: 150px;
            background: #c2c4c4;
            -webkit-border-radius: 75px;
            -moz-border-radius: 75px;
            border-radius: 75px; } }
      #planadvisor .circle_choice_four ul img {
        position: absolute;
        width: 45%;
        top: 35%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center; }
      #planadvisor .circle_choice_four ul .count {
        position: absolute;
        margin-left: 70%;
        top: 45%;
        color: white;
        font-family: NotoSansCondBold, NotoSansTCBlack; }
      #planadvisor .circle_choice_four ul .plus {
        position: absolute;
        left: 78%;
        top: 7%;
        color: black;
        font-family: NotoSansCondBold, NotoSansTCBlack;
        background-color: #FFF;
        border: black 1px solid;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        cursor: pointer; }
        #planadvisor .circle_choice_four ul .plus::after {
          content: "+";
          position: absolute;
          top: 0;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 1.5em; }
        @media (max-width: 480px) {
          #planadvisor .circle_choice_four ul .plus {
            width: 30px;
            height: 30px; } }
        @media (max-width: 480px) {
          #planadvisor .circle_choice_four ul .plus {
            position: absolute;
            left: 78%;
            top: 7%;
            color: black;
            font-family: NotoSansCondBold, NotoSansTCBlack;
            background-color: #FFF;
            border: black 1px solid;
            border-radius: 50px;
            width: 35px;
            height: 35px;
            cursor: pointer; }
            #planadvisor .circle_choice_four ul .plus::after {
              content: "+";
              position: absolute;
              top: 0;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              font-size: 1.5em; } }
  @media (max-width: 480px) and (max-width: 480px) {
    #planadvisor .circle_choice_four ul .plus {
      width: 30px;
      height: 30px; } }

      #planadvisor .circle_choice_four ul .minus {
        position: absolute;
        left: 78%;
        top: 60%;
        color: black;
        font-family: NotoSansCondBold, NotoSansTCBlack;
        background-color: #FFF;
        border: black 1px solid;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        cursor: pointer; }
        #planadvisor .circle_choice_four ul .minus::after {
          content: "-";
          position: absolute;
          top: 0;
          top: 43%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 2em; }
        @media (max-width: 480px) {
          #planadvisor .circle_choice_four ul .minus {
            width: 30px;
            height: 30px; } }
        @media (max-width: 480px) {
          #planadvisor .circle_choice_four ul .minus {
            position: absolute;
            left: 78%;
            top: 60%;
            color: black;
            font-family: NotoSansCondBold, NotoSansTCBlack;
            background-color: #FFF;
            border: black 1px solid;
            border-radius: 50px;
            width: 35px;
            height: 35px;
            cursor: pointer; }
            #planadvisor .circle_choice_four ul .minus::after {
              content: "-";
              position: absolute;
              top: 0;
              top: 43%;
              left: 50%;
              transform: translate(-50%, -50%);
              font-size: 2em; } }
  @media (max-width: 480px) and (max-width: 480px) {
    #planadvisor .circle_choice_four ul .minus {
      width: 30px;
      height: 30px; } }

.breadcrumbR1 {
  width: 135px;
  margin: auto;
  padding: 0;
  -webkit-margin: 0; }
  .breadcrumbR1 li {
    display: inline-block;
    margin-left: 5px; }
    .breadcrumbR1 li div {
      width: 60px;
      height: 5px;
      background: #bdbdbe;
      border-radius: 5px; }
      .breadcrumbR1 li div.active {
        width: 60px;
        height: 5px;
        background: #ff0000; }
  @media screen and (max-width: 840px) {
    .breadcrumbR1 {
      width: 168.6px;
      margin: auto;
      padding: 0;
      -webkit-margin: 0;
      margin-bottom: 3%; }
      .breadcrumbR1 li {
        display: inline-block;
        margin-left: 5px; }
        .breadcrumbR1 li div {
          width: 76.8px;
          height: 6.4px;
          background: #bdbdbe;
          border-radius: 5px; }
          .breadcrumbR1 li div.active {
            width: 76.8px;
            height: 6.4px;
            background: #ff0000; } }

.breadcrumbR2 {
  width: 225px;
  margin: auto;
  padding: 0;
  -webkit-margin: 0; }
  .breadcrumbR2 li {
    display: inline-block;
    margin-left: 5px; }
    .breadcrumbR2 li div {
      width: 60px;
      height: 5px;
      background: #bdbdbe;
      border-radius: 5px; }
      .breadcrumbR2 li div.active {
        width: 60px;
        height: 5px;
        background: #ff0000; }
  @media screen and (min-width: 480px) {
    .breadcrumbR2 {
      width: 275.4px;
      margin: auto;
      padding: 0;
      -webkit-margin: 0; }
      .breadcrumbR2 li {
        display: inline-block;
        margin-left: 5px; }
        .breadcrumbR2 li div {
          width: 76.8px;
          height: 6.4px;
          background: #bdbdbe;
          border-radius: 5px; }
          .breadcrumbR2 li div.active {
            width: 76.8px;
            height: 6.4px;
            background: #ff0000; } }
  @media (max-width: 768px) {
    .breadcrumbR2 {
      margin-bottom: 3%; } }
  .breadcrumbR2.padding-left {
    padding-left: 11px; }

span {
  margin: 0;
  padding: 0; }

.questions_default {
  margin: auto;
  margin-top: 10px;
  padding: 0;
  line-height: 15px;
  text-align: center;
  color: #7e7e7e;
  font-family: NotoSansSemiBold, NotoSansTCBold;
  font-size: 1em;
  margin-top: 34px; }
  @media screen and (min-width: 480px) {
    .questions_default {
      font-size: 1.231em; } }
  @media (min-width: 769px) {
    .questions_default {
      font-size: 1.538em;
      line-height: 1.538em; } }
  @media (min-width: 840px) {
    .questions_default {
      font-size: 1.231em;
      line-height: 1.231em; } }
  @media (min-width: 1400px) {
    .questions_default {
      font-size: 1.231em;
      line-height: 1.231em; } }
  .questions_default.small {
    font-size: 60%;
    font-style: italic; }

.questions {
  margin: auto;
  margin-top: 10px;
  padding: 0;
  line-height: 15px;
  text-align: center;
  color: #7e7e7e;
  font-family: NotoSansSemiBold, NotoSansTCBold;
  font-size: 1em;
  margin-bottom: 10px; }
  @media screen and (min-width: 480px) {
    .questions {
      font-size: 1.231em; } }
  @media (min-width: 769px) {
    .questions {
      font-size: 1.538em;
      line-height: 1.538em; } }
  @media (min-width: 840px) {
    .questions {
      font-size: 1.231em;
      line-height: 1.231em; } }
  @media (min-width: 1400px) {
    .questions {
      font-size: 1.231em;
      line-height: 1.231em; } }
  .questions .small {
    font-size: 60%;
    font-style: italic;
    margin-top: 5px; }

.hide {
  display: none; }

.removepaddingleft {
  padding-left: 0;
  padding-right: 0; }

.next {
  margin: auto;
  z-index: 9999;
  position: absolute;
  border-radius: 35px !important;
  min-width: 120px;
  cursor: pointer;
  font-size: 16px;
  top: -30%;
  box-shadow: none !important; }
  @media (min-width: 769px) {
    .next {
      font-size: 1em; } }
  .next.disabled {
    background-color: #d3d2d2 !important;
    border-color: #d3d2d2 !important;
    opacity: 1 !important; }
  .next.active {
    background-color: #fd1f32 !important;
    border-color: #fd1f32 !important; }

.back {
  margin: auto;
  z-index: 9999;
  position: absolute;
  border-radius: 35px !important;
  min-width: 120px;
  cursor: pointer;
  font-size: 16px;
  top: -30%;
  background-color: #FFF;
  color: #fd1f32 !important;
  border: 1px solid #fd1f32 !important; }

.buttons {
  width: 285px;
  text-align: center;
  margin: auto;
  position: relative; }
  @media (min-width: 769px) {
    .buttons {
      width: 366px; } }
  @media (min-width: 1400px) {
    .buttons {
      width: 450px; } }
  .buttons #btnNext {
    right: 0%; }
  .buttons #btnBack {
    left: 0%; }
  .buttons a {
    color: #bdbdbe;
    top: 10px;
    position: relative; }
    .buttons a#btnAllPlans {
      color: #666666;
      font-family: NotoSansBold, NotoSansTCBold; }

@media (min-width: 840px) {
  .btncontainer {
    width: 840px;
    position: relative;
    margin: auto;
    margin-top: 55px; } }

.btn-noborderradius {
  padding: 0;
  border: none;
  background: none;
  top: 60%;
  color: #bdbdbe;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: 12px; }
  @media (min-width: 769px) {
    .btn-noborderradius {
      font-size: 1em; } }
  .btn-noborderradius#btnBack {
    left: 50px; }

.greybar {
  background-color: #FFF;
  height: 3%; }

.plfooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #f5f6fa;
  clear: both;
  z-index: 99; }
  @media screen and (min-width: 769px) {
    .plfooter {
      height: 90px; } }
  @media screen and (min-width: 1400px) {
    .plfooter {
      height: 90px; } }

.pa-wrapper {
  position: fixed;
  top: 55px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  display: none;
  background-color: #FFF;
  -webkit-animation-duration: 0.2s;
  /* Safari 4.0 - 8.0 */
  animation-duration: 0.6s; }
  .pa-wrapper::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    /* make scrollbar transparent */ }

.pa-content {
  position: static; }

.pa-close {
  position: absolute;
  right: 1em;
  top: 2em;
  z-index: 999;
  background-color: #d6d6d6;
  color: #FFF;
  padding: 0.5% 1%; }
  .pa-close .cross {
    font-size: 30px; }
  .pa-close:hover {
    color: #ff0217;
    text-decoration: none; }

/*# sourceMappingURL=main.css.map */
