/*account-setting-css-here*/

.btn {
  overflow: hidden;
}

.wait-time select.form-control.other-form-control {
  height: 50px;
  background: url(../images/select-arrow.png) no-repeat right center #fff;
}

.update-password-bg {
  display: flex;
  align-items: center;
}

.update-password-bg p {
  margin-left: auto;
  font-size: 16px;
  color: #bd8266;
  margin-bottom: 0;
}

/*notification-settings-page-css-here*/

.notification-settings-head h2 {
  margin-bottom: 30px;
}

.notification-settings-head p {
  font-size: 18px;
  color: #4a4a4a;
}

.notification-settings-list {
  padding: 15px 0px;
  border-top: solid 1px #a4aeb4;
  border-bottom: solid 1px #a4aeb4;
}

.notification-settings-list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.notification-settings-list ul li:last-child {
  margin-bottom: 0;
}

.notification-settings-list ul li h5 {
  margin-right: auto;
  font-size: 18px;
  color: #4a4a4a;
}

.container > .switch {
  display: block;
  margin: 12px auto;
}

.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 65px;
  height: 33px;
  padding: 3px;
  background-color: white;
  border-radius: 18px;
  cursor: pointer;
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch-label {
  position: relative;
  display: block;
  height: 27px;
  font-size: 12px;
  text-transform: uppercase;
  background: #eceeef;
  border-radius: inherit;
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}

.switch-label:before,
.switch-label:after {
  position: absolute;
  top: 45%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #495e68;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.switch-input:checked ~ .switch-label {
  background: #d2d7d9;
  /* Old browsers */
  background: -moz-linear-gradient(left, #d2d7d9 0%, #f9fafa 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #d2d7d9 0%, #f9fafa 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #d2d7d9 0%, #f9fafa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2d7d9', endColorstr='#f9fafa', GradientType=1);
  /* IE6-9 */
  box-shadow: none;
}

.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}

.switch-input:checked ~ .switch-label:after {
  opacity: 1;
  color: #495e68;
}

.switch-handle {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 20px;
  height: 20px;
  background: #d15938;
  border-radius: 20px;
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

.switch-input:checked ~ .switch-handle {
  background: #005761 !important;
}

.switch-input:checked ~ .switch-handle:before {
  background: #005761 !important;
}

.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #d15938;
  border-radius: 6px;
}

.switch-input:checked ~ .switch-handle {
  left: 40px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-green > .switch-input:checked ~ .switch-label {
  background: #4fb845;
}

/*how-it-work-css-here*/

.how-it-work-bg {
  background: url(../images/how-it-work-bg.png) no-repeat center bottom;
  background-size: cover;
  min-height: 1490px;
}
.how-it-work-video {
  padding-top: 70px;
  text-align: center;
}
.how-it-work-video h2 {
  font-size: 66px;
  color: #ffffff;
  font-family: "Cera-Pro-Bold";
  margin-bottom: 40px;
}
.work-message-list {
  margin-top: 125px;
}
.work-video video {
  width: 940px;
  height: 529px;
}
.work-message-top {
  display: flex;
}
.message-box2 {
  margin-left: auto;
  margin-top: 140px;
}
.work-message {
  max-width: 380px;
}
.work-message.message-box1 {
  margin-left: 85px;
}
.work-message h3 {
  font-size: 50px;
  color: #bd8266;
  font-family: "Cera-Pro-Bold";
}
.work-message p {
  font-size: 18px;
  color: #ffffff;
}
.message-box3 {
  margin-left: 85px;
  margin-top: 105px;
}
.private-dashboard-bg {
  overflow: hidden;
  position: relative;
  padding-bottom: 159px;
  padding-top: 90px;
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #ffffff 0%,
    #f6f6f6 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #f6f6f6 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6f6f6 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
}
.private-dashboard-bg:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/private-dashboard-bg.png) no-repeat bottom center;
  width: 100%;
  height: 159px;
  background-size: cover;
}
.private-dashboard-head {
  text-align: center;
}
.private-dashboard-head-inner {
  margin: auto;
  max-width: 755px;
}
.private-dashboard-head h2 {
  font-size: 55px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
  margin-bottom: 15px;
}
.private-dashboard-head p {
  font-size: 18px;
  color: #78736e;
}
.ipad-dashborad {
  margin-bottom: 0px;
  position: relative;
  right: -135px;
  margin-top: 50px;
}
.here-gone-section {
  background: url(../images/shape01.png) no-repeat right 220px,
    url(../images/shape02.png) no-repeat left 30px #fff;
  padding-bottom: 65px;
}
.here-gone-head {
  text-align: center;
  padding: 0px 55px;
  margin-bottom: 50px;
}
.here-gone-head h2 {
  font-size: 90px;
  font-family: "Abuget";
  color: #005761;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: normal;
  margin-bottom: -10px;
}
.here-gone-head h2 span {
  font-size: 30px;
  font-family: "Cera-Pro-Bold";
  padding-right: 10px;
}
.here-gone-head p {
  font-size: 18px;
  color: #4a4a4a;
}
.here-gone-list .row .col-md-6 {
  display: flex;
  text-align: center;
  justify-content: center;
}
.here-gone-cat-box {
  width: 198px;
  text-align: center;
  position: relative;
  border-radius: 5px;
  min-height: 198px;
  margin-bottom: 15px;
}
.here-gone-cat-box-inner figure {
  width: 113px;
  height: 113px;
  margin: auto;
}
.here-gone-cat-box-inner figcaption {
  padding: 15px 0px;
}
.here-gone-cat-box-inner figcaption h3 {
  color: #78736e;
  font-size: 17px;
  font-family: "Cera-Pro-Medium";
  margin: 0;
}
.here-gone-cat-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #f3fafb;
  box-shadow: 0px 1px 6px #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  opacity: 0;
}
.here-gone-cat-hover-inner {
  width: 100%;
  padding: 15px;
}
.here-gone-cat-hover h3 {
  font-size: 24px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
  line-height: normal;
}
.here-gone-cat-hover p {
  font-size: 18px;
  color: #4a4a4a;
}
.here-gone-cat-box:hover .here-gone-cat-hover {
  opacity: 1;
}
.gone-content .here-gone-head h2 {
  color: #bd8266;
}
.gone-content .here-gone-cat-hover h3 {
  color: #bd8266;
}
.gone-content .here-gone-cat-hover {
  background: #f9f4f1;
}
.try-it-btn {
  text-align: center;
}
.who-is-wishkeeper-section {
  background: url(../images/shape03.png) no-repeat right 75px,
    url(../images/shape04.png) no-repeat left bottom #fff;
  padding-bottom: 140px;
}
.section-head {
  text-align: center;
}
.section-head-inner {
  margin: auto;
  max-width: 700px;
}
.section-head-inner h2 {
  font-size: 55px;
  color: #052130;
  font-family: "Cera-Pro-Bold";
  margin-bottom: 20px;
}
.section-head-inner p {
  font-size: 18px;
  color: #4a4a4a;
}
.who-is-wishkeeper-list {
  margin-top: 50px;
}
/* .who-is-wishkeeper-list .row .col-md-7,
.who-is-wishkeeper-list .row .col-md-5 {
  display: flex;
  align-items: center;
} */
.ipad-image-box {
  width: 100%;
}
.ipad-img-des {
  padding-left: 30px;
}
.ipad-img-des h3 {
  font-size: 30px;
  color: #bd8266;
  font-family: "Cera-Pro-Bold";
}
.ipad-img-des p {
  font-size: 14px;
  color: #4a4a4a;
}
.ipad-img-des p:last-child {
  margin-bottom: 0;
}
.wishkeeper-row2 {
  margin-top: 80px;
}
.wishkeeper-row2 .ipad-img-des {
  padding-left: 0;
  padding-right: 30px;
  text-align: right;
}

/*product-option-css-here*/

.product-option-head {
  background: url(../images/product-option-bg.png) no-repeat center bottom;
  min-height: 527px;
  background-size: cover;
}
.product-option-head h2 {
  font-size: 55px;
  color: #ffffff;
  font-family: "Cera-Pro-Bold";
  text-align: center;
  margin-top: 180px;
}
.price-each-one-time {
  background: #fff;
  padding-bottom: 100px;
}
.price-circle {
  /* border: solid 10px #707070; */
  width: 620px;
  height: 620px;
  margin: -125px auto auto auto;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, #005761, #f9fafa) border-box;
  border-radius: 50em;
  border: 20px solid transparent;
}
.price-row {
  display: flex;
}
.each-month {
  width: 364px;
  height: 280px;
  background: url(../images/price-bg1.png) no-repeat;
  text-align: center;
}
.price-box-bg {
  padding-top: 72px;
  margin-top: 145px;
  margin-left: -150px;
}
.price-box-bg h4 {
  font-size: 85px;
  color: #ffffff;
  font-family: "Cera-Pro-Bold";
  line-height: 110px;
  margin-left: -20px;
}
.price-box-bg h4 sup {
  font-size: 42px;
  right: -30px;
  top: -38px
}
.price-box-bg p {
  font-size: 20px;
  color: #ffffff;
  margin: -10px 0 0 0;
}
.one-month {
  margin-left: auto;
  width: 370px;
  height: 285px;
  background: url(../images/price-bg2.png) no-repeat;
  text-align: center;
  position: relative;
  right: -50px;
}
.or-box {
  font-size: 118px;
  color: #8d9aa1;
  font-family: "Abuget";
  margin-top: 228px;
  margin-left: 45px;
}
.price-message {
  margin: -80px auto 0 auto;
  max-width: 288px;
  text-align: center;
}
.price-message p {
  margin: 0;
  font-size: 14px;
  color: #a4aeb4;
}
.price-sign-in-form {
  text-align: center;
  margin-top: 50px;
}
.price-sign-form-inner {
  display: inline-block;
  width: 660px;
  border-radius: 20px;
  background: #e8f0f1;
  box-shadow: 0px 2px 4px #dfdfdf;
  padding: 30px;
  text-align: left;
}
.price-sign-content h2 {
  font-size: 24px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
}
.price-sign-content p {
  font-size: 14px;
  color: #4a4a4a;
}
.create-an-account-price a {
  font-size: 14px;
  color: #005761;
  font-family: "Cera-Pro-Medium";
}

.password-box {
  position: relative;
}
.show-hide {
  position: absolute;
  right: 15px;
  top: 8px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #2e767e;
  font-family: "Cera-Pro-Medium";
}
.remember-signin {
  display: flex;
  align-items: center;
}
.remember-signin-left {
  margin-right: auto;
}
.forgot-password a {
  font-size: 15px;
  color: #8d9aa1;
}
.sign-in-btn {
  margin-left: auto;
}

/*security-page-css-here*/

.security-head-bg {
  background: url(../images/security-head-bg.png) no-repeat;
  background-size: cover;
  min-height: 999px;
}
.security-head-content {
  max-width: 465px;
  margin-top: 190px;
}
.security-head-content h2 {
  font-size: 55px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
}
.security-head-content p {
  font-size: 18px;
  color: #4a4a4a;
}
.ultra-safe-security-section {
  background: url(../images/security-bg2.png) no-repeat center top;
  background-size: cover;
  min-height: 800px;
  margin-top: -435px;
  padding-bottom: 100px;
}
.security-video {
  display: flex;
  flex-wrap: wrap;
}
.security-head {
  background: url(../images/take-text.png) no-repeat;
  width: 285px;
  height: 244px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 40px;
}
.security-head h2 {
  font-size: 18px;
  color: #ffffff;
  font-family: "Cera-Pro-Medium";
  font-style: italic;
  max-width: 150px;
}
.security-video-box {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.security-video-box video {
  width: 100%;
}
.ultra-safe-security-title {
  padding: 50px 0px;
}
.ultra-safe-security-title h3 {
  font-size: 60px;
  color: #ffffff;
  font-family: "Cera-Pro-Bold";
}
.safe-as-houses-head h4 {
  font-size: 36px;
  color: #bd8266;
  font-family: "Cera-Pro-Bold";
  margin-bottom: 15px;
}
.safe-as-houses-head p {
  font-size: 14px;
  color: #ffffff;
}
.safe-as-houses-list {
  margin-top: 50px;
}
.safe-as-houses-box {
  margin-bottom: 50px;
}
.safe-as-houses-box figure {
  min-height: 115px;
}
.safe-as-houses-box figcaption h4 {
  font-size: 24px;
  color: #ffffff;
  font-family: "Cera-Pro-Bold";
  margin-bottom: 15px;
}
.safe-as-houses-box figcaption p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}
.privacy-principles-head {
  padding: 50px 0px;
  border-top: solid 1px #bd8266;
}
.privacy-principles-head h2 {
  font-size: 60px;
  color: #bd8266;
  font-family: "Cera-Pro-Bold";
  margin: 0;
  text-align: center;
}

/*why-wishkeeper-css-here*/

.why-wishkeeper-head {
  background: url(../images/why-wIshkeeper-head-bg.png) no-repeat bottom center;
  background-size: cover;
  min-height: 724px;
  position: relative;
  z-index: 1;
}
.why-wish-head-content {
  padding-top: 170px;
}
.why-wish-head-inner {
  max-width: 620px;
}
.why-wish-head-inner h1 {
  font-size: 66px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
  margin-bottom: 15px;
}
.why-wish-head-inner p {
  font-size: 18px;
  color: #4a4a4a;
}
.why-video-co-bg {
  background: url(../images/why-wish-bg.png) no-repeat bottom center;
  background-size: cover;
  min-height: 800px;
  margin-top: -310px;
  padding-top: 400px;
  padding-bottom: 130px;
}

.living-head {
  padding: 0px 84px;
}
.living-head .col-md-4,
.living-head .col-md-8 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.living-title {
  width: 100%;
}
.living-title h2 {
  font-size: 80px;
  color: #ffffff;
  font-family: "Abuget";
}
.living-des {
  width: 100%;
}
.living-des p {
  font-size: 18px;
  color: #ffffff;
}
.living-des p:last-child {
  margin-bottom: 0;
}
.why-video {
  text-align: center;
  margin: 50px 0px;
}
.why-video video {
  width: 100%;
  max-width: 940px;
  margin: auto;
}
.customer-list {
  padding: 0px 84px;
}
.customer-head {
  display: flex;
  align-items: center;
}
.customer-head figcaption {
  margin-right: auto;
}
.customer-head figcaption h3 {
  font-size: 30px;
  color: #bd8266;
  font-family: "Cera-Pro-Bold";
  margin: 0 0 10px 0;
}
.customer-head figcaption p {
  margin: 0;
  font-size: 20px;
  color: #dededb;
  font-family: "Cera-Pro-Bold";
}
.customer-head figure {
  margin-left: auto;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 0;
}
.customer-head figure img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}
.customer-des {
  padding-top: 30px;
}
.customer-des h5 {
  font-size: 20px;
  color: #bd8266;
  font-family: "Cera-Pro-Bold";
}
.customer-des p {
  font-size: 14px;
  color: #ffffff;
}
.why-chose-wishkeeper-section {
  padding: 110px 0px;
}
.why-chose-box {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: solid 1px #bd8266;
  width: 100%;
}
.why-chose-wishkeeper-head h2 {
  font-size: 58px;
  color: #052130;
  font-family: "Cera-Pro-Bold";
  text-align: center;
}
.why-chose-list {
  padding: 0px 84px;
  margin-top: 50px;
}
.why-chose-list .col-md-6 {
  display: flex;
}
.why-chose-content-head h3 {
  font-size: 24px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
}
.why-chose-content-head p {
  font-size: 18px;
  color: #4a4a4a;
}
.why-chose-des h5 {
  font-size: 18px;
  color: #4a4a4a;
  font-family: "Cera-Pro-Bold";
  font-style: italic;
  margin-bottom: 15px;
}
.why-chose-des p {
  font-size: 14px;
  color: #4a4a4a;
}
.why-chose-des p:last-child {
  margin-bottom: 0;
}
.get-started-btn {
  text-align: center;
  margin-top: 15px;
}
.get-started-btn .btn {
  display: inline-block;
  background: #005761;
}

/*Popup-css-here*/

.fa2-popup .modal-header {
  padding-bottom: 0;
  border: none;
}
.fa2-popup .modal-dialog {
  max-width: 515px;
}
.fa2-popup .modal-content {
  background: url(../images/popup-background.png) no-repeat center bottom #fff;
  background-size: 100% auto;
  border-radius: 24px;
}
.authentication-content h2 {
  font-size: 24px;
  color: #78736e;
  font-family: "Cera-Pro-Bold";
}
.authentication-content p {
  font-size: 18px;
  color: #78736e;
}
.unlock-device-bg {
  display: flex;
  align-items: flex-end;
}
.unlock-device-bg figure {
  flex: 0 0 175px;
  margin-left: auto;
}
.unlock-device-bg figcaption {
  width: 100%;
  padding-right: 30px;
  padding-bottom: 35px;
}
.unlock-device-bg figcaption h3 {
  font-size: 21px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
}
.unlock-device-bg figcaption p {
  font-size: 14px;
  color: #4a4a4a;
}
.skip-try-button {
  display: flex;
  align-items: center;
}
.skip-try-button .skip-btn {
  font-size: 16px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
}
.skip-try-button .try-it-btn {
  font-size: 16px;
  color: #fff;
  font-family: "Cera-Pro-Bold";
  background: #005761;
  border-radius: 50px;
  padding: 0px 15px;
  height: 45px;
  line-height: 45px;
  margin-left: 15px;
}

/*2fa-auth-css-here*/

.fa-auth-bg {
  background: url(../images/fa-auth-bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: grid;
  place-item: center;
}
.fa-auth-bg-inner {
  padding: 0px 15px;
  margin: auto;
}
.fa2-popup-mobile .modal-header {
  padding-bottom: 0;
  border: none;
}
.fa2-popup-mobile .modal-content {
  max-width: 378px;
  margin: 15px auto;
}
.fa2-popup-mobile .modal-content {
  background: url(../images/popup-background.png) no-repeat center bottom #fff;
  background-size: 100% auto;
  border-radius: 24px;
}
.authentication-content h2 {
  font-size: 24px;
  color: #78736e;
  font-family: "Cera-Pro-Bold";
}
.authentication-content p {
  font-size: 18px;
  color: #78736e;
}
.computer-location-time-list {
  margin-top: 70px;
}
.computer-location-time-list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.computer-location-time-list ul li figure {
  width: 45px;
  flex: 0 0 45px;
  max-width: 45px;
  margin: 0;
  text-align: center;
}
.computer-location-time-list ul li figcaption {
  font-size: 18px;
  color: #78736e;
  padding-left: 15px;
}

/*restricted-access-popup-css-here*/

.restricted-popup-content {
  text-align: center;
  padding-top: 25px;
}
.restricted-popup-content p {
  font-size: 24px;
  color: #78736e;
  font-family: "Cera-Pro-Bold";
}
.restricted-popup .modal-content {
  max-width: 512px;
  position: relative;
  border-radius: 3rem !important;
}
.restricted-popup .modal-header {
  border: none;
  padding: 0;
}
.restricted-popup .close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9;
}
.upgrade-btn {
  padding: 15px 0px;
}
.upgrade-btn .account-btn {
  background: #005761;
}

/****/

/*payment-settings-installments-css-here*/

#svg circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  stroke: #666;
  stroke-width: 1em;
}
#svg #bar {
  stroke: #ff9f1e;
}
#cont {
  position: relative;
}
.your-payments h3 {
  font-size: 20px;
  font-family: "Cera-Pro-Bold";
  margin-bottom: 20px;
  color: #005761;
}
.your-storage h3 {
  font-family: "Cera-Pro-Bold";
  margin-bottom: 20px;
  font-size: 20px;
  color: #005761;
}
.is-your-content-box h4 {
  font-size: 20px;
  color: #005761;
  font-family: "Cera-Pro-Bold";
}
.rangeslider,
.rangeslider__fill {
  display: block;
  border-radius: 10px;
}
.rangeslider {
  background: #ffede6;
  position: relative;
}
.rangeslider--horizontal {
  height: 10px;
  width: 100%;
}
.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}
.rangeslider--disabled {
  filter: alpha(opacity=40);
  opacity: 0.4;
}
.rangeslider__fill {
  background: #f63;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider__handle {
  background: white;
  border: 1px solid #f63;
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g");
  background-size: 100%;
  background-image: -webkit-gradient(
    linear,
    50% 0,
    50% 100%,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(0, 0, 0, 0.1))
  );
  background-image: -moz-linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.1)
  );
  background-image: -webkit-linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.1)
  );
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}
input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}
.rangeslider,
input[type="range"] {
  max-width: 400px;
}
.rangeslider__handle {
  border-radius: 22px;
  min-width: 20px;
  line-height: 27px;
  text-align: center;
  font-size: 10px;
  background: #ffede6;
  color: #979797;
}
.rangeslider__handle:after {
  background: 0;
}
.intallment .container {
  margin: auto;
  width: 100%;
  max-width: 1400px;
}
.is-your-content-box {
  margin-top: 50px;
}
.your-storage button.btn.waves-effect.waves-light.learn-more {
  background: #005761 !important;
}
.range-slider-bg {
  background: #ffffff;
  padding: 5px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px #dfdfdf;
}
.range-percent {
  width: 40%;
  height: 14px;
  border-radius: 30px;
  background: #80ccd1; /* Old browsers */
  background: -moz-linear-gradient(
    left,
    #80ccd1 0%,
    #005761 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    #80ccd1 0%,
    #005761 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    #80ccd1 0%,
    #005761 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ccd1', endColorstr='#005761',GradientType=1 ); /* IE6-9 */
}

.range-message {
  font-size: 20px;
  color: #77868e;
  font-family: "Cera-Pro-Bold";
  margin-top: 15px;
}

.here-gone-cat-box-inner figcaption h3,
.here-gone-cat-hover h3,
.here-gone-cat-hover p {
  word-break: break-word;
}

.blog-detail b,
.blog-detail strong {
  font-weight: bold !important;
}
