/*fonts*/
/*fonts-weight*/
/*fonts-size*/
/*line-height*/
/*colors*/
/*transition*/
/*border-radius*/
/*import global styles */
/*----------------------------------------------------------------------------------*/
/*------------------------------RESET DEFAULT STYLES--------------------------------*/
/*----------------------------------------------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  font: 500 18px "Gotham Pro", Arial, sans-serif;
  line-height: 1.6;
  background: #99DAE8;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

div, p, a, span, em, strong, img, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, td, tr, form, fieldset, label, select, input, textarea {
  padding: 0;
  margin: 0;
  outline: none;
  list-style: none;
}

select, input, textarea {
  font-size: 16px;
  vertical-align: middle;
  color: #000000;
}

textarea {
  vertical-align: top;
}

:focus {
  outline: none;
}

input[type=submit], button {
  cursor: pointer;
}

img, fieldset {
  border: 0;
}

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

a:link, a:visited {
  font-family: "Gotham Pro", Arial, sans-serif;
  color: #000000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/*----------------------------------------------------------------------------------*/
/*-------------------------------------DEFAULT CLASSES------------------------------*/
/*----------------------------------------------------------------------------------*/
.float-r {
  float: right !important;
}

.float-l {
  float: left !important;
}

.no-float {
  float: none !important;
}

.no-border {
  border: 0 !important;
}

.no-bg {
  background: none !important;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-display {
  display: none !important;
}

.display {
  display: block !important;
}

.inline {
  display: inline !important;
}

.overflow {
  overflow: hidden !important;
}

.align-r {
  text-align: right !important;
}

.align-l {
  text-align: left !important;
}

.align-c {
  text-align: center !important;
}

.clear {
  clear: both;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: 700;
}

a, .btn {
  -webkit-transition: 0.2s;
  -khtml-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media all and (max-width: 767px) {
  .container {
    max-width: 460px;
    padding: 0 15px;
  }
}

.centered-img {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 72.5%;
  background-color: #00BBDD;
}
.centered-img img {
  position: absolute;
  z-index: 3;
  width: auto;
  height: auto;
  top: -9999px;
  left: -9999px;
  right: -9999px;
  bottom: -9999px;
  margin: auto;
  -webkit-transform-origin: 50% 50%;
  -khtml-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}

@media all and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
/*----------------------------------------------------------------------------------*/
/*-------------------------------------WRAPPER--------------------------------------*/
/*----------------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  min-height: 100%;
  margin-bottom: -75px;
  background-color: #99DAE8;
  background-image: url(../../img/main-bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.wrapper:after {
  content: "";
  display: block;
  width: 100%;
  height: 130px;
}
@media all and (max-width: 767px) {
  .wrapper {
    background-position: 52% 0;
    margin-bottom: 0;
  }
  .wrapper:after {
    content: none;
  }
}

#main-content {
  margin-top: 0;
  margin-bottom: -14px;
}
#main-content > .container {
  overflow: hidden;
  padding-top: 10px;
}
@media all and (max-width: 767px) {
  #main-content {
    margin-top: 28px;
    padding-bottom: 100px;
  }
  #main-content > .container {
    padding-top: 0;
  }
}

a.btn,
.btn {
  position: relative;
  display: inline-block;
  padding: 20px 25px;
  font: 700 16px "Gotham Pro", Arial, sans-serif;
  line-height: 1.25;
  color: #494b58;
  border: 2px solid #ffffff;
  -webkit-border-radius: 20rem;
  -khtml-border-radius: 20rem;
  -moz-border-radius: 20rem;
  -ms-border-radius: 20rem;
  -o-border-radius: 20rem;
  border-radius: 20rem;
  background: #ffffff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
a.btn [class^=bm_icon_], a.btn [class*=" bm_icon_"],
.btn [class^=bm_icon_],
.btn [class*=" bm_icon_"] {
  position: relative;
  top: -1px;
  left: -3px;
  margin-right: 10px;
  font-size: 19px;
  line-height: 16px;
  vertical-align: middle;
}
a.btn .bm_icon_camera,
.btn .bm_icon_camera {
  top: -1px;
  left: 0;
  margin-right: 14px;
  font-size: 18px;
}
a.btn .bm_icon_apple,
.btn .bm_icon_apple {
  top: -2px;
  left: -2px;
  margin-right: 10px;
}
a.btn .bm_icon_google-play,
.btn .bm_icon_google-play {
  top: -1px;
  left: 1px;
  margin-right: 14px;
  font-size: 21px;
}
a.btn .bm_icon_credit-card-1,
.btn .bm_icon_credit-card-1 {
  top: 0;
  left: 1px;
  margin-right: 14px;
  font-size: 28px;
}
a.btn .bm_icon_folder,
.btn .bm_icon_folder {
  top: -2px;
  left: 2px;
  margin-right: 14px;
  font-size: 20px;
}
a.btn .bm_icon_share,
.btn .bm_icon_share {
  top: -4px;
  left: -2px;
  margin-right: 10px;
  font-size: 21px;
}
@media all and (min-width: 769px) {
  a.btn:hover, a.btn:focus,
  .btn:hover,
  .btn:focus {
    background-color: transparent;
    opacity: 1;
  }
  .drop-area.loaded a.btn:hover, .drop-area.loaded a.btn:focus,
  .drop-area.loaded .btn:hover,
  .drop-area.loaded .btn:focus {
    color: #ffffff;
  }
}
a.btn.inverse,
.btn.inverse {
  color: #ffffff;
  background-color: transparent;
}
@media all and (min-width: 769px) {
  a.btn.inverse:hover, a.btn.inverse:focus,
  .btn.inverse:hover,
  .btn.inverse:focus {
    color: #494b58;
    background-color: #ffffff;
  }
}
a.btn.dark,
.btn.dark {
  color: #ffffff;
  border-color: #6D7082;
  background-color: #6D7082;
}
@media all and (min-width: 769px) {
  a.btn.dark:hover, a.btn.dark:focus,
  .btn.dark:hover,
  .btn.dark:focus {
    background-color: #7d8198;
    border-color: #7d8198;
    opacity: 1;
  }
}
a.btn.btn-jump-to-content,
.btn.btn-jump-to-content {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  padding: 10px 35px;
  z-index: -9999;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 0 0 20rem 20rem;
  -khtml-border-radius: 0 0 20rem 20rem;
  -moz-border-radius: 0 0 20rem 20rem;
  -ms-border-radius: 0 0 20rem 20rem;
  -o-border-radius: 0 0 20rem 20rem;
  border-radius: 0 0 20rem 20rem;
}
a.btn.btn-jump-to-content:focus,
.btn.btn-jump-to-content:focus {
  z-index: 9999;
  opacity: 1;
  color: #494b58;
  background-color: #ffffff;
}
@media all and (max-width: 1180px) {
  a.btn,
  .btn {
    padding: 20px 10px;
  }
  a.btn .bm_icon_user,
  .btn .bm_icon_user {
    margin-right: 0;
  }
}
@media all and (max-width: 1024px) {
  a.btn,
  .btn {
    padding: 14px 8px;
    font-size: 14px;
  }
  a.btn [class^=bm_icon_], a.btn [class*=" bm_icon_"],
  .btn [class^=bm_icon_],
  .btn [class*=" bm_icon_"] {
    line-height: 14px;
  }
}
@media all and (max-width: 767px) {
  a.btn,
  .btn {
    font-size: 11px;
    padding: 11px 5px;
    line-height: 1.3;
  }
  a.btn.btn-jump-to-content,
  .btn.btn-jump-to-content {
    display: none;
  }
  a.btn [class^=bm_icon_], a.btn [class*=" bm_icon_"],
  .btn [class^=bm_icon_],
  .btn [class*=" bm_icon_"] {
    line-height: 11px;
  }
  a.btn .bm_icon_folder,
  .btn .bm_icon_folder {
    top: 0;
    left: 0;
    margin-right: 10px;
    font-size: 16px;
  }
  a.btn .bm_icon_share,
  .btn .bm_icon_share {
    top: -3px;
    left: -1px;
    font-size: 14px;
  }
  .btn-list a.btn .bm_icon_apple,
  .btn-list .btn .bm_icon_apple {
    top: -2px;
    left: -1px;
    margin-right: 7px;
    font-size: 16px;
  }
  .btn-list a.btn .bm_icon_google-play,
  .btn-list .btn .bm_icon_google-play {
    top: -2px;
    left: -1px;
    margin-right: 9px;
    font-size: 16px;
  }
}

.search-style,
.input-style {
  display: block;
  width: 100%;
  min-height: 60px;
  height: auto;
  margin: 0;
  padding: 15px 28px;
  font: 500 20px "Gotham Pro", Arial, sans-serif;
  line-height: 1.25;
  color: #050505;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.search-style.not-valid,
.input-style.not-valid {
  border-color: red;
}
@media all and (max-width: 1024px) {
  .search-style,
  .input-style {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .search-style,
  .input-style {
    padding: 8px 15px;
    font-size: 16px;
    min-height: 40px;
  }
}

.input-style.not-empty {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.search-style {
  min-height: 48px;
  padding: 9px 0;
  border-color: transparent;
  border-bottom-color: #E8E8E8;
  box-shadow: none;
  letter-spacing: 0.02em;
}

input::-webkit-input-placeholder {
  font-family: "Gotham Pro", Arial, sans-serif;
  font-weight: 400;
  color: #bbc5ca;
  opacity: 1;
}

input::-moz-placeholder {
  font-family: "Gotham Pro", Arial, sans-serif;
  font-weight: 400;
  color: #bbc5ca;
  opacity: 1;
}

input:-ms-input-placeholder {
  font-family: "Gotham Pro", Arial, sans-serif;
  font-weight: 400;
  color: #bbc5ca;
  opacity: 1;
}

input:-moz-placeholder {
  font-family: "Gotham Pro", Arial, sans-serif;
  font-weight: 400;
  color: #bbc5ca;
  opacity: 1;
}

input.search-style::-webkit-input-placeholder {
  color: #9DAFB8;
  letter-spacing: 0.02em;
}

input.search-style::-moz-placeholder {
  color: #9DAFB8;
  letter-spacing: 0.02em;
}

input.search-style:-ms-input-placeholder {
  color: #9DAFB8;
  letter-spacing: 0.02em;
}

input.search-style:-moz-placeholder {
  color: #9DAFB8;
  letter-spacing: 0.02em;
}

.header {
  position: relative;
  padding: 9px 0 0;
}
.header .logo {
  overflow: hidden;
  display: inline-block;
  max-width: 186px;
  margin-top: 3px;
  margin-right: 23px;
  vertical-align: top;
  -webkit-transition: 0s;
  -khtml-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.header .logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.header .site-desc {
  position: relative;
  display: inline-block;
  max-width: 180px;
  margin-top: 5px;
  padding-left: 27px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.75;
  color: #ffffff;
  vertical-align: top;
}
.header .site-desc:after {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 1px;
  background-color: #ffffff;
  height: 100%;
  height: -webkit-calc(100% - 2px);
  height: calc(100% - 2px);
}
@media all and (max-width: 1024px) {
  .header .logo {
    margin-right: 16px;
  }
  .header .site-desc {
    max-width: 150px;
    padding-left: 22px;
  }
}
@media all and (max-width: 767px) {
  .header {
    position: sticky;
    z-index: 99;
    top: 0;
    padding: 10px 0;
    height: 54px;
    -webkit-transition: top .35s, background-color .35s;
    -khtml-transition: top .35s, background-color .35s;
    -moz-transition: top .35s, background-color .35s;
    -ms-transition: top .35s, background-color .35s;
    -o-transition: top .35s, background-color .35s;
    transition: top .35s, background-color .35s;
  }
  .overflow .header {
    background-color: #99DAE8;
  }
  .header.scrolling {
    background-color: #99DAE8;
    -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
    -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
    box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  }
  .direction-down .header {
    top: -54px;
    -webkit-box-shadow: "none";
    -moz-box-shadow: "none";
    box-shadow: "none";
  }
  .direction-up .header {
    top: 0;
  }
  .header .container {
    max-width: 100%;
  }
  .header .logo {
    max-width: 105px;
    margin-right: 11px;
  }
  .header .site-desc {
    font-size: 10px;
    margin-top: -5px;
    max-width: 120px;
    padding-left: 0;
    line-height: 1.5;
  }
  .header .site-desc:after {
    content: none;
  }
}

.mobile-menu-wrap {
  display: none;
  position: fixed;
  overflow-y: auto;
  z-index: 999;
  right: -110%;
  text-align: left;
  height: 100%;
  width: 0;
  max-width: 100%;
  top: 54px;
  background-color: #99DAE8;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.mobile-menu-wrap.showing {
  right: 0;
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  z-index: 9999;
  right: 5px;
  top: 5px;
  height: 42px;
  width: 42px;
  vertical-align: middle;
  cursor: pointer;
}
.mobile-menu-toggle span {
  position: absolute;
  z-index: 999999;
  left: 50%;
  top: 50%;
  display: block;
  height: 2px;
  width: 30px;
  -webkit-transform:  translate(-50%,-50%);
  -khtml-transform:  translate(-50%,-50%);
  -moz-transform:  translate(-50%,-50%);
  -ms-transform:  translate(-50%,-50%);
  -o-transform:  translate(-50%,-50%);
  transform:  translate(-50%,-50%);
}
.mobile-menu-toggle span:before, .mobile-menu-toggle span:after {
  position: absolute;
  display: block;
  right: 5px;
  content: "";
  cursor: pointer;
  height: 2px;
  width: 30px;
  background-color: #ffffff;
  -webkit-transition: all 0.35s;
  -khtml-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
.mobile-menu-toggle span:before {
  top: -5px;
  width: 23px;
}
.mobile-menu-toggle span:after {
  bottom: -5px;
  width: 18px;
}
.mobile-menu-toggle.active span {
  height: 3px;
  width: 24px;
}
.mobile-menu-toggle.active span:before, .mobile-menu-toggle.active span:after {
  right: 0;
  width: 24px;
  height: 3px;
}
.mobile-menu-toggle.active span:before {
  top: 0;
  -webkit-transform:  rotate(-45deg);
  -khtml-transform:  rotate(-45deg);
  -moz-transform:  rotate(-45deg);
  -ms-transform:  rotate(-45deg);
  -o-transform:  rotate(-45deg);
  transform:  rotate(-45deg);
}
.mobile-menu-toggle.active span:after {
  bottom: 0;
  -webkit-transform:  rotate(45deg);
  -khtml-transform:  rotate(45deg);
  -moz-transform:  rotate(45deg);
  -ms-transform:  rotate(45deg);
  -o-transform:  rotate(45deg);
  transform:  rotate(45deg);
}

.mobile-menu-box {
  padding: 0;
  width: 100%;
  height: 90%;
  height: -webkit-calc(100% - 54px);
  height: calc(100% - 54px);
  min-height: 1100px;
}
@media (max-width: 500px) {
  .mobile-menu-box {
    min-height: 1165px;
  }
}
.mobile-menu-box .mobile-menu-body {
  display: table-cell;
  width: 100%;
  padding: 25px 15px;
}
.mobile-menu-box .mobile-menu-body > :last-child {
  margin-bottom: 0;
}
.mobile-menu-box .mobile-menu-footer {
  display: table-footer-group;
  width: 100%;
  margin-top: 0 auto;
}
.mobile-menu-box .mobile-menu-footer .copyright {
  display: block;
  padding: 21px 15px 27px;
  font-size: 12px;
  border-top: 1px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.33);
}

@media all and (max-width: 767px) {
  .mobile-menu-wrap,
  .mobile-menu-toggle {
    display: block;
  }
}
.app-nav {
  float: right;
}
.app-nav.mobile {
  float: none;
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .app-nav {
    display: none;
  }
  .app-nav.mobile {
    display: block;
  }
}

@media all and (max-width: 500px) {
  .app-menu li:last-child {
    margin: 70px 0px;
  }
}
.app-menu li {
  display: inline-block;
  vertical-align: top;
  margin-left: 13px;
}
.app-menu li a.btn, .app-menu li .btn {
  padding: 11px 18px 11px 56px;
  border-width: 1px;
  min-width: 162px;
  font-size: 14px;
  text-align: left;
  text-transform: initial;
}
.app-menu li a.btn .small, .app-menu li .btn .small {
  display: block;
  font-size: 9px;
  margin-bottom: -2px;
}
.app-menu li a.btn.apple, .app-menu li .btn.apple {
  padding-left: 54px;
  min-width: 164px;
}
.app-menu li a.btn.with-icon [class^=bm_icon_], .app-menu li a.btn.with-icon [class*=" bm_icon_"], .app-menu li .btn.with-icon [class^=bm_icon_], .app-menu li .btn.with-icon [class*=" bm_icon_"] {
  position: absolute;
  top: 50%;
  left: 30px;
  font-size: 20px;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.app-menu li a.btn.with-icon .bm_icon_google-play, .app-menu li .btn.with-icon .bm_icon_google-play {
  left: 31px;
  margin-top: -2px;
}
@media all and (min-width: 769px) {
  .app-menu li a.btn:hover, .app-menu li a.btn:focus, .app-menu li .btn:hover, .app-menu li .btn:focus {
    color: #494b58;
    background-color: #ffffff;
  }
}
.mobile .app-menu {
  text-align: left;
}
.mobile .app-menu li {
  display: block;
  margin-left: 0;
}
.mobile .app-menu li:not(:last-child) {
  margin-bottom: 18px;
}
@media all and (max-width: 1024px) {
  .app-menu li {
    margin-left: 5px;
  }
}

.mobile-menu {
  margin-bottom: 72px;
}
.mobile-menu ul > li a {
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
  font-size: 16px;
  text-decoration: none;
}
.mobile-menu ul > li:not(:last-child) {
  margin-bottom: 35px;
}

.content {
  color: rgba(15, 15, 15, 0.8);
  font-weight: 500;
}
.content * {
  margin-bottom: 18px;
}
.content *:last-child {
  margin-bottom: 0;
}
.content a {
  color: #000000;
}
.content a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.content p + ul,
.content p + ol {
  margin-top: 22px;
}
.content ul > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 21px;
}
.content ul > li:after {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 3px solid rgba(15, 15, 15, 0.8);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.page-step-4 .content ul > li {
  margin-bottom: 13px;
}
.page-step-4 .content ul > li:after {
  top: 8px;
}
@media all and (max-width: 767px) {
  .content {
    line-height: 1.9;
  }
  .content * {
    margin-bottom: 9px;
  }
  .content *:last-child {
    margin-bottom: 0;
  }
  .content p + ul,
  .content p + ol {
    margin-top: 9px;
  }
  .content ul > li {
    padding-left: 20px;
    margin-bottom: 14px;
  }
  .content ul > li:after {
    left: 1px;
    width: 5px;
    height: 5px;
    border-width: 2px;
  }
  .page-step-4 .content ul > li {
    margin-bottom: 7px;
  }
}

.timeline {
  margin-bottom: 15px;
  background-color: #ffffff;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 -2px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 -2px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 -2px 9px 1px rgba(18, 41, 63, 0.1);
}
.timeline ul {
  display: table;
  width: 100%;
  table-layout: fixed;
  text-align: center;
}
.timeline ul > li {
  display: table-cell;
  vertical-align: top;
  padding: 0 5px;
}
.timeline ul > li:first-child {
  width: 155px;
  text-align: left;
  padding-left: 0;
}
.timeline ul > li:last-child {
  width: 195px;
  padding-right: 0;
  text-align: right;
}
.timeline ul > li:nth-child(2) {
  width: 226px;
}
.timeline ul > li:nth-child(3) {
  width: 170px;
}
.timeline ul > li:nth-child(4) {
  width: 225px;
}
.timeline ul > li a {
  display: inline-block;
  padding: 0 10px 0 10px;
  max-width: 145px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  min-height: 60px;
  line-height: 60px;
  text-align: left;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.timeline ul > li a.active {
  color: #ffffff;
  background-color: #0ECE8C;
  cursor: default;
}
.timeline ul > li a.active .icon-box {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
}
.timeline ul > li a.disable {
  cursor: default;
}
.timeline ul > li a.nav-btn {
  max-width: 150px;
  width: 100%;
  font-size: 16px;
  line-height: 58px;
  text-align: center;
  color: #ffffff;
  background-color: #6D7082;
}
.timeline ul > li a.nav-btn [class^=bm_icon_], .timeline ul > li a.nav-btn [class*=" bm_icon_"] {
  font-size: 18px;
  position: relative;
  top: 1px;
}
.timeline ul > li a.nav-btn.prev {
  padding-left: 4px;
  color: #7795a2;
  background-color: #D4EAF4;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.timeline ul > li a.nav-btn.prev .bm_icon_arrow {
  padding-right: 10px;
}
.timeline ul > li a.nav-btn.prev.disable {
  color: rgba(119, 149, 162, 0.4);
  cursor: default;
}
.timeline ul > li a.nav-btn.next {
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.timeline ul > li a.nav-btn.next .bm_icon_arrows {
  padding-left: 9px;
  top: 2px;
}
.timeline ul > li a.nav-btn.next.disable {
  background-color: #a3a5b2;
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
}
@media all and (min-width: 769px) {
  .timeline ul > li a.prev:hover, .timeline ul > li a.prev:focus {
    background-color: rgba(212, 234, 244, 0.6);
  }
  .timeline ul > li a.prev.disable:hover, .timeline ul > li a.prev.disable:focus {
    background-color: #D4EAF4;
  }
  .timeline ul > li a.next:hover, .timeline ul > li a.next:focus {
    background-color: #7d8198;
  }
  .timeline ul > li a.next.disable:hover, .timeline ul > li a.next.disable:focus {
    background-color: #6D7082;
  }
}
.timeline .icon-box {
  position: relative;
  display: inline-block;
  top: -2px;
  width: 43px;
  height: 43px;
  margin-right: 15px;
  color: #7F98A3;
  background-color: #D4EAF4;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  vertical-align: middle;
}
.timeline .icon-box [class^=bm_icon_], .timeline .icon-box [class*=" bm_icon_"] {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 18px;
  -webkit-transform-origin: 50% 50%;
  -khtml-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.timeline .done .icon-box [class^=bm_icon_], .timeline .done .icon-box [class*=" bm_icon_"] {
  margin-left: -1px;
}
.timeline .done .icon-box [class^=bm_icon_]:before, .timeline .done .icon-box [class*=" bm_icon_"]:before {
  content: "\e911";
}
@media all and (max-width: 1180px) {
  .timeline ul > li:last-child {
    width: 155px;
  }
  .timeline ul > li:nth-child(2), .timeline ul > li:nth-child(3), .timeline ul > li:nth-child(4) {
    width: auto;
  }
}
@media all and (max-width: 1024px) {
  .timeline ul > li:first-child {
    width: 125px;
  }
  .timeline ul > li:last-child {
    width: 125px;
  }
  .timeline ul > li a {
    font-size: 12px;
  }
  .timeline ul > li a.nav-btn {
    font-size: 14px;
  }
  .timeline ul > li a.nav-btn [class^=bm_icon_], .timeline ul > li a.nav-btn [class*=" bm_icon_"] {
    font-size: 16px;
  }
  .timeline ul > li a.nav-btn.prev .bm_icon_arrow {
    padding-right: 5px;
  }
  .timeline ul > li a.nav-btn.next .bm_icon_arrows {
    padding-left: 5px;
  }
  .timeline ul > li .icon-box {
    width: 36px;
    height: 36px;
    margin-right: 5px;
  }
}
@media all and (max-width: 767px) {
  .timeline {
    display: none;
  }
}

.mobile-timeline {
  display: none;
  visibility: hidden;
  position: fixed;
  z-index: 25;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  padding: 10px 10px 20px;
}
.mobile-timeline ul {
  font-size: 0;
}
.mobile-timeline ul > li {
  display: inline-block;
  vertical-align: top;
}
.mobile-timeline ul > li:first-child {
  width: 50px;
}
.mobile-timeline ul > li:nth-child(2) {
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
  padding-left: 7px;
}
.mobile-timeline a.prev-step,
.mobile-timeline .prev-step {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: #7795A2;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  background-color: #D4EAF4;
  -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -webkit-border-radius: 50rem;
  -khtml-border-radius: 50rem;
  -moz-border-radius: 50rem;
  -ms-border-radius: 50rem;
  -o-border-radius: 50rem;
  border-radius: 50rem;
  text-decoration: none;
}
.mobile-timeline a.prev-step.disable,
.mobile-timeline .prev-step.disable {
  color: rgba(119, 149, 162, 0.4);
  cursor: default;
}
.mobile-timeline a.next-step,
.mobile-timeline .next-step {
  position: relative;
  display: block;
  width: 100%;
  padding: 8px 28px;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  vertical-align: top;
  background-color: #6D7082;
  -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -webkit-border-radius: 50rem;
  -khtml-border-radius: 50rem;
  -moz-border-radius: 50rem;
  -ms-border-radius: 50rem;
  -o-border-radius: 50rem;
  border-radius: 50rem;
}
.mobile-timeline a.next-step .next-step-text-box,
.mobile-timeline .next-step .next-step-text-box {
  display: block;
}
.mobile-timeline a.next-step .next-step-text-box span,
.mobile-timeline .next-step .next-step-text-box span {
  display: block;
  font-size: 10px;
  margin-top: -1px;
}
.mobile-timeline a.next-step .bm_icon_arrows,
.mobile-timeline .next-step .bm_icon_arrows {
  position: absolute;
  top: 50%;
  right: 7px;
  font-size: 18px;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mobile-timeline a.next-step.disable,
.mobile-timeline .next-step.disable {
  background-color: #a3a5b2;
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
}
.mobile-timeline.default-btn {
  height: 70px;
  padding: 15px;
}
.mobile-timeline.default-btn a.btn, .mobile-timeline.default-btn .btn {
  padding: 10px 5px;
}
@media all and (max-width: 767px) {
  .mobile-timeline {
    display: block;
    visibility: visible;
  }
}

.mobile-timeline-expirement a.next-step .bm_icon_arrows,
.mobile-timeline-expirement .next-step .bm_icon_arrows {
  position: absolute;
  top: 50%;
  right: 7px;
  font-size: 25px;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.footer {
  position: relative;
  z-index: 5;
  height: 75px;
  border-top: 1px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.6);
}
.footer .container {
  overflow: hidden;
}
.footer .left-box,
.footer .right-box {
  float: left;
  width: 50%;
  padding: 0 10px;
}
.footer .left-box {
  padding-top: 6px;
  padding-left: 0;
}
.footer .right-box {
  padding-right: 0;
  text-align: right;
}
@media all and (max-width: 767px) {
  .footer {
    display: none;
  }
}

.footer-menu > li {
  display: inline-block;
  vertical-align: top;
}
.footer-menu > li:not(:last-child) {
  margin-right: 59px;
}
@media all and (max-width: 1024px) {
  .footer-menu > li:not(:last-child) {
    margin-right: 26px;
  }
}
.footer-menu > li a {
  display: inline-block;
  padding: 8px 0;
  line-height: 1.25;
  color: #2E2E2E;
  opacity: 0.8;
  text-decoration: none;
}
@media all and (min-width: 769px) {
  .footer-menu > li a:hover, .footer-menu > li a:focus {
    opacity: 1;
  }
}

.copyright {
  color: #2E2E2E;
  opacity: 0.6;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.white-popup-block {
  position: relative;
  padding: 0;
  text-align: left;
  max-width: 844px;
  min-width: 844px;
  height: 80vh;
  max-height: 775px;
  min-height: 660px;
  margin: 40px auto;
  background-color: #F7F7F7;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.08);
}
.white-popup-block .mfp-close {
  font-size: 60px;
  color: #ffffff;
  top: -36px;
  right: -63px;
  opacity: 1;
  font-weight: 400;
}

.popup-container {
  padding: 164px 0 127px;
  max-height: 100%;
  overflow-y: auto;
}
#choose-frame-form .popup-container {
  padding-top: 96px;
}

.popup-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  padding: 28px 40px 22px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -webkit-border-radius: 6px 6px 0 0;
  -khtml-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -ms-border-radius: 6px 6px 0 0;
  -o-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.popup-header > :last-child {
  margin-bottom: 0;
}
#choose-frame-form .popup-header {
  padding-bottom: 15px;
}

.popup-title {
  margin-bottom: 15px;
  font-size: 34px;
  font-weight: 700;
  color: rgba(15, 15, 15, 0.8);
}

.popup-search-box {
  position: relative;
}
.popup-search-box .bm_icon_magnifying-glass {
  position: absolute;
  top: 1px;
  right: 0;
  width: 46px;
  height: 46px;
  font-size: 23px;
  line-height: 46px;
  text-align: center;
  color: #9DAFB8;
  background-color: #ffffff;
}
.popup-search-box .bm_icon_magnifying-glass:before {
  position: relative;
  right: -6px;
  top: 1px;
}

.popup-body {
  max-height: 488px;
}

.popup-body-inner {
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 31px 40px 60px;
}
.is-mobile .popup-body-inner {
  padding-bottom: 160px;
}

.popup-footer {
  position: absolute;
  display: block;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 32px 40px 35px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -webkit-border-radius: 0 0 6px 6px;
  -khtml-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -ms-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.popup-footer a.btn, .popup-footer .btn {
  display: block;
  width: 100%;
  padding: 18px 25px;
}

.celebrity-list {
  font-size: 0;
  margin: 0 -7px 42px;
}
.celebrity-list > li {
  display: inline-block;
  width: 20%;
  padding: 0 7px;
  margin-bottom: 29px;
  vertical-align: top;
}
.celebrity-list > li label {
  position: relative;
  display: block;
  cursor: pointer;
}
.celebrity-list > li label input {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  opacity: 0;
}
.celebrity-list > li label input:checked + .celebrity-box {
  border: 1px solid #6D7082;
}
@media all and (min-width: 769px) {
  .celebrity-list > li label input:focus + .celebrity-box {
    border: 1px solid #6D7082;
    -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
  }
}
.celebrity-list.frames {
  margin-bottom: -14px;
}
.celebrity-list.frames > li {
  width: 33.333%;
  margin-bottom: 14px;
}

.celebrity-box {
  overflow: hidden;
  display: block;
  background-color: #ffffff;
  text-align: center;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
@media all and (min-width: 769px) {
  .celebrity-box:hover {
    -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
  }
}
.celebrity-box > :last-child {
  margin-bottom: 0;
}

.celebrity-photo-box {
  overflow: hidden;
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.celebrity-photo-box img {
  position: absolute;
  z-index: 3;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  top: -9999px;
  left: -9999px;
  right: -9999px;
  bottom: -9999px;
  margin: auto;
  -webkit-transform-origin: 50% 50%;
  -khtml-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.celebrity-photo-box .bm_icon_no-waiting {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  font-size: 84px;
  color: #7F98A3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
  -khtml-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.frames .celebrity-photo-box {
  padding-bottom: 94%;
}

.celebrity-name {
  display: block;
  padding: 13px 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (max-width: 1024px) {
  .white-popup-block .mfp-close {
    top: 0;
    right: 0;
    color: rgba(15, 15, 15, 0.8);
  }
  .popup-title {
    font-size: 32px;
  }
  .popup-footer a.btn, .popup-footer .btn {
    padding: 14px 8px;
  }
  .popup-container {
    padding-bottom: 116px;
  }
}
@media all and (max-width: 767px) {
  .popup-container {
    padding: 111px 0 80px;
  }
  #choose-frame-form .popup-container {
    padding-top: 80px;
  }
  .popup-header {
    padding-top: 10px;
    padding-bottom: 15px;
  }
  #choose-frame-form .popup-header {
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .popup-header,
  .popup-body-inner,
  .popup-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .popup-footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .popup-footer a.btn, .popup-footer .btn {
    padding: 11px 5px;
  }
  .popup-title {
    margin-bottom: 6px;
    font-size: 20px;
  }
  .celebrity-list {
    margin-bottom: -14px;
  }
  .celebrity-list > li {
    width: 25%;
    margin-bottom: 14px;
  }
  .white-popup-block .mfp-close {
    font-size: 42px;
  }
}
@media all and (max-width: 580px) {
  .celebrity-list > li {
    width: 33.333%;
  }
  .celebrity-photo-box .bm_icon_no-waiting {
    font-size: 40px;
  }
}
@media all and (max-width: 380px) {
  .celebrity-list.frames > li,
  .celebrity-list > li {
    width: 50%;
  }
}
.is-mobile .mfp-container {
  padding: 0;
}
.is-mobile .white-popup-block {
  margin: 0 auto;
  height: 100%;
  max-width: 100%;
  max-height: 100vh;
  min-width: 90vw;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.tos ol.lst-kix_v62vo4ycu9u2-2 {
  list-style-type: none;
}
.tos ol.lst-kix_v62vo4ycu9u2-1 {
  list-style-type: none;
}
.tos ol.lst-kix_v62vo4ycu9u2-1.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-1 0;
}
.tos ol.lst-kix_v62vo4ycu9u2-0 {
  list-style-type: none;
}
.tos .lst-kix_v62vo4ycu9u2-2 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-2;
}
.tos .lst-kix_v62vo4ycu9u2-5 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-5;
}
.tos ol.lst-kix_v62vo4ycu9u2-6.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-6 0;
}
.tos ol.lst-kix_v62vo4ycu9u2-8.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-8 0;
}
.tos ol.lst-kix_v62vo4ycu9u2-3.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-3 0;
}
.tos .lst-kix_v62vo4ycu9u2-4 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-4;
}
.tos .lst-kix_v62vo4ycu9u2-1 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-1;
}
.tos .lst-kix_v62vo4ycu9u2-2 > li:before {
  content: "" counter(lst-ctn-kix_v62vo4ycu9u2-2, lower-roman) ") ";
}
.tos .lst-kix_v62vo4ycu9u2-8 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-8;
}
.tos ol.lst-kix_v62vo4ycu9u2-5.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-5 0;
}
.tos ol.lst-kix_v62vo4ycu9u2-8 {
  list-style-type: none;
}
.tos ol.lst-kix_v62vo4ycu9u2-7 {
  list-style-type: none;
}
.tos .lst-kix_v62vo4ycu9u2-0 > li:before {
  content: "" counter(lst-ctn-kix_v62vo4ycu9u2-0, decimal) ") ";
}
.tos ol.lst-kix_v62vo4ycu9u2-0.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-0 0;
}
.tos ol.lst-kix_v62vo4ycu9u2-6 {
  list-style-type: none;
}
.tos ol.lst-kix_v62vo4ycu9u2-5 {
  list-style-type: none;
}
.tos .lst-kix_v62vo4ycu9u2-1 > li:before {
  content: "" counter(lst-ctn-kix_v62vo4ycu9u2-1, lower-latin) ") ";
}
.tos ol.lst-kix_v62vo4ycu9u2-4 {
  list-style-type: none;
}
.tos ol.lst-kix_v62vo4ycu9u2-3 {
  list-style-type: none;
}
.tos .lst-kix_v62vo4ycu9u2-6 > li:before {
  content: "" counter(lst-ctn-kix_v62vo4ycu9u2-6, decimal) ". ";
}
.tos ol.lst-kix_v62vo4ycu9u2-7.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-7 0;
}
.tos .lst-kix_v62vo4ycu9u2-6 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-6;
}
.tos .lst-kix_v62vo4ycu9u2-3 > li:before {
  content: "(" counter(lst-ctn-kix_v62vo4ycu9u2-3, decimal) ") ";
}
.tos .lst-kix_v62vo4ycu9u2-7 > li:before {
  content: "" counter(lst-ctn-kix_v62vo4ycu9u2-7, lower-latin) ". ";
}
.tos ol.lst-kix_v62vo4ycu9u2-2.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-2 0;
}
.tos .lst-kix_v62vo4ycu9u2-4 > li:before {
  content: "(" counter(lst-ctn-kix_v62vo4ycu9u2-4, lower-latin) ") ";
}
.tos li.li-bullet-0:before {
  margin-left: -18pt;
  white-space: nowrap;
  display: inline-block;
  min-width: 18pt;
}
.tos .lst-kix_v62vo4ycu9u2-5 > li:before {
  content: "(" counter(lst-ctn-kix_v62vo4ycu9u2-5, lower-roman) ") ";
}
.tos .lst-kix_v62vo4ycu9u2-7 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-7;
}
.tos ol.lst-kix_v62vo4ycu9u2-4.start {
  counter-reset: lst-ctn-kix_v62vo4ycu9u2-4 0;
}
.tos .lst-kix_v62vo4ycu9u2-0 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-0;
}
.tos .lst-kix_v62vo4ycu9u2-3 > li {
  counter-increment: lst-ctn-kix_v62vo4ycu9u2-3;
}
.tos .lst-kix_v62vo4ycu9u2-8 > li:before {
  content: "" counter(lst-ctn-kix_v62vo4ycu9u2-8, lower-roman) ". ";
}
.tos ol {
  margin: 0;
  padding: 0;
}
.tos table td,
.tos table th {
  padding: 0;
}
.tos .c7 {
  margin-left: 36pt;
  padding-top: 6pt;
  padding-left: 0pt;
  padding-bottom: 6pt;
  line-height: 1;
  orphans: 2;
  widows: 2;
}
.tos .c6 {
  margin-left: 18pt;
  padding-top: 6pt;
  padding-left: 0pt;
  padding-bottom: 6pt;
  line-height: 1;
  orphans: 2;
  widows: 2;
}
.tos .c16 {
  margin-left: 36pt;
  padding-top: 6pt;
  padding-bottom: 0pt;
  line-height: 1;
  orphans: 2;
  widows: 2;
}
.tos .c11 {
  margin-left: 36pt;
  padding-top: 0pt;
  padding-bottom: 0pt;
  line-height: 1;
  orphans: 2;
  widows: 2;
}
.tos .c0 {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-size: 11.5pt;
  font-family: "Arial";
  font-style: normal;
}
.tos .c18 {
  padding-top: 0pt;
  padding-bottom: 6pt;
  line-height: 1;
  orphans: 2;
  widows: 2;
  height: 11pt;
}
.tos .c10 {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-size: 11pt;
  font-family: "Arial";
  font-style: normal;
}
.tos .c8 {
  padding-top: 0pt;
  padding-bottom: 0pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left;
  height: 11pt;
}
.tos .c3 {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-size: 12pt;
  font-family: "Arial";
  font-style: normal;
}
.tos .c4 {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  vertical-align: baseline;
  font-family: "Arial";
  font-style: normal;
}
.tos .c12 {
  padding-top: 6pt;
  padding-bottom: 6pt;
  line-height: 1;
  orphans: 2;
  widows: 2;
}
.tos .c14 {
  padding-top: 6pt;
  padding-bottom: 6pt;
  line-height: 1;
  orphans: 2;
  widows: 2;
  text-align: center;
}
.tos .c9 {
  text-decoration-skip-ink: none;
  -webkit-text-decoration-skip: none;
  color: #1155cc;
  text-decoration: underline;
}
.tos .c13 {
  background-color: #ffffff;
  max-width: 451.4pt;
  padding: 72pt 72pt 72pt 72pt;
}
.tos .c17 {
  color: inherit;
  text-decoration: inherit;
}
.tos .c2 {
  padding: 0;
  margin: 0;
}
.tos .c1 {
  font-size: 11.5pt;
}
.tos .c5 {
  font-weight: 700;
}
.tos .title {
  padding-top: 0pt;
  color: #000000;
  font-size: 26pt;
  padding-bottom: 3pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left;
}
.tos .subtitle {
  padding-top: 0pt;
  color: #666666;
  font-size: 15pt;
  padding-bottom: 16pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left;
}
.tos li {
  color: #000000;
  font-size: 11pt;
  font-family: "Arial";
}
.tos p {
  margin: 0;
  color: #000000;
  font-size: 11pt;
  font-family: "Arial";
}
.tos h1 {
  padding-top: 20pt;
  color: #000000;
  font-size: 20pt;
  padding-bottom: 6pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left;
}
.tos h2 {
  padding-top: 18pt;
  color: #000000;
  font-size: 16pt;
  padding-bottom: 6pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left;
}
.tos h3 {
  padding-top: 16pt;
  color: #434343;
  font-size: 14pt;
  padding-bottom: 4pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left;
}
.tos h4 {
  padding-top: 14pt;
  color: #666666;
  font-size: 12pt;
  padding-bottom: 4pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left;
}
.tos h5 {
  padding-top: 12pt;
  color: #666666;
  font-size: 11pt;
  padding-bottom: 4pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left;
}
.tos h6 {
  padding-top: 12pt;
  color: #666666;
  font-size: 11pt;
  padding-bottom: 4pt;
  font-family: "Arial";
  line-height: 1.15;
  page-break-after: avoid;
  font-style: italic;
  orphans: 2;
  widows: 2;
  text-align: left;
}

/* styles used throughout site */
.drag-drop-box {
  margin-top: 20px;
  margin-bottom: 25px;
}
.page-step-4 .drag-drop-box {
  margin-bottom: 38px;
}
@media all and (max-width: 767px) {
  .drag-drop-box {
    margin: 0 -5px 20px;
  }
}

.drop-area {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  text-align: center;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px dashed #ffffff;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.drop-area:after {
  visibility: hidden;
  opacity: 0;
  z-index: -10;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.drop-area.loaded .drag-drop-form {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in;
  -khtml-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  transition: all 0.35s ease-in;
}
.drop-area.loaded .drag-drop-note,
.drop-area.loaded .drag-drop-desc {
  color: #ffffff;
}
.drop-area.loaded a.btn-remove,
.drop-area.loaded .btn-remove {
  visibility: visible;
  opacity: 1;
}
.drop-area.loaded:hover .drag-drop-form {
  visibility: visible;
  opacity: 1;
}
.drop-area.loaded:hover:after {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.drop-area.loaded:hover .drag-drop-note {
  z-index: 7;
}
.page-step-4 .drop-area {
  background-color: #ffffff;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  padding-bottom: 99%;
  border: none;
}
.drop-area > :last-child {
  margin-bottom: 0;
}
.drop-area .drag-drop-form {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 5;
}
.drop-area .drag-drop-form-inner-wrap {
  display: table;
  width: 100%;
  height: 100%;
  padding: 35px 0 20px;
}
.page-step-4 .drop-area .drag-drop-form-inner-wrap {
  padding-top: 60px;
}
.drop-area .drag-drop-form-inner-box {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.drop-area .bm_icon_upload-to-cloud {
  display: block;
  margin-bottom: 27px;
  color: #ffffff;
  font-size: 82px;
}
.drop-area .drag-drop-desc {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: #000000;
}
.drop-area .drag-drop-desc.mobile {
  display: none;
}
.drop-area a.btn, .drop-area .btn {
  display: block;
  max-width: 280px;
  margin: 33px auto 68px;
  color: #494b58;
}
.drop-area .drag-drop-note {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 20px 9.7%;
  font-weight: 400;
  font-size: 12px;
  color: #0F0F0F;
  opacity: 0.4;
}
.drop-area #progress-bar {
  display: inline-block;
  position: absolute;
  z-index: 9999;
  margin: 0 auto;
  left: 0;
  top: 0;
  right: 0;
}
.drop-area .drag-drop-gallery {
  overflow: hidden;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  background-color: transparent;
}
.drop-area .drag-drop-gallery img {
  display: block;
  min-height: 100%;
  max-height: initial;
}
.page-step-4 .drop-area .drag-drop-gallery {
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.drop-area #fileElem {
  display: none;
}
.drop-area a.btn-remove,
.drop-area .btn-remove {
  display: none;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: 10;
  top: 5px;
  right: 5px;
  width: 42px;
  height: 42px;
  background-color: transparent;
  background-position: center;
  background-size: 38px;
  background-repeat: no-repeat;
  background-image: url(../../img/icon-close@2x.png);
  border: none;
  font-size: 0;
  color: transparent;
  -webkit-box-shadow: "none";
  -moz-box-shadow: "none";
  box-shadow: "none";
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-border-radius: 20rem;
  -khtml-border-radius: 20rem;
  -moz-border-radius: 20rem;
  -ms-border-radius: 20rem;
  -o-border-radius: 20rem;
  border-radius: 20rem;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
@media all and (max-width: 1024px) {
  .drop-area .bm_icon_upload-to-cloud {
    margin-bottom: 8px;
  }
  .drop-area .drag-drop-desc {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .drop-area .drag-drop-form-inner-wrap {
    padding: 0;
  }
  .page-step-4 .drop-area .drag-drop-form-inner-wrap {
    padding-top: 0;
  }
  .drop-area a.btn, .drop-area .btn {
    max-width: 235px;
    margin: 12px auto 60px;
  }
  .drop-area .drag-drop-note {
    font-size: 10px;
    max-width: 200px;
    left: 50%;
    padding-bottom: 7%;
    -webkit-transform: translate(-50%, 0);
    -khtml-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media all and (max-width: 767px) {
  .drop-area {
    padding-bottom: 100%;
  }
  .drop-area .drag-drop-form-inner-wrap {
    padding-top: 5px;
  }
  .page-step-4 .drop-area .drag-drop-form-inner-wrap {
    padding-top: 15px;
  }
  .drop-area .drag-drop-form-inner-wrap.new {
    padding-top: 0px;
  }
  .drop-area .bm_icon_upload-to-cloud {
    margin-bottom: 13px;
    font-size: 50px;
  }
  .drop-area .drag-drop-desc {
    display: none;
    margin-bottom: 12px;
    font-size: 14px;
  }
  .drop-area .drag-drop-desc.mobile {
    display: block;
  }
  .drop-area a.btn, .drop-area .btn {
    margin-top: 30px;
    max-width: 170px;
  }
  .drop-area .drag-drop-note {
    padding-bottom: 10%;
  }
}

.drag-drop-warning {
  max-width: 360px;
  margin: 0 auto;
  color: #ffffff;
}
.drag-drop-warning p {
  margin-bottom: 21px;
  font-weight: 400;
}
.drag-drop-warning p strong, .drag-drop-warning p b {
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .drag-drop-warning {
    max-width: 240px;
    line-height: 1.4;
  }
  .drag-drop-warning p {
    margin-bottom: 12px;
  }
}

.warning-icon-box {
  margin-bottom: 52px;
}
.warning-icon-box .bm_icon_warning-1 {
  opacity: 0.6;
  font-size: 46px;
}

.section-main.page-size-experiment .drop-area {
  border: 2px dashed rgb(48, 60, 66);
}
.section-main.page-size-experiment .drop-area .drag-drop-gallery img {
  display: block;
  width: 100%;
}
.section-main.page-size-experiment .btn-file-elem {
  background-color: #11b814;
  border-color: #11b814;
  color: #fff !important;
}

.section-main {
  margin-bottom: -12px;
}
.section-main .left-box,
.section-main .right-box {
  float: left;
  width: 50%;
  padding: 0 20px;
}
.section-main .left-box {
  padding: 2px 0 0 0;
  width: 48%;
}
.section-main .left-box .inner-wrap > :last-child:not(.btn-list) {
  margin-bottom: 0;
}
.page-step-3 .section-main .left-box {
  width: 39.6%;
}
.page-step-4 .section-main .left-box {
  padding-top: 2px;
  width: 52.8%;
}
.section-main .right-box {
  width: 52%;
  padding-right: 0;
}
.page-step-3 .section-main .right-box {
  width: 60.4%;
}
.page-step-4 .section-main .right-box {
  width: 47.2%;
}
.section-main .two-third .left-box {
  width: 47%;
}
.section-main .two-third .right-box {
  width: 47%;
}
@media screen and (min-width: 767px) {
  .section-main .two-third .right-box__desktop {
    margin: 0 0 0 6%;
  }
}
@media all and (max-width: 767px) {
  .section-main .two-third .left-box, .section-main .two-third .right-box {
    width: auto;
  }
}
.section-main .content {
  margin-bottom: 38px;
}
.section-main .content + .btn-list {
  margin-top: 51px;
}
.page-step-3 .section-main .content {
  max-width: 370px;
}
.section-main .content + .facebook-btn {
  margin-top: 58px;
}
@media all and (max-width: 910px) {
  .page-step-3 .section-main .left-box {
    width: 45%;
  }
  .page-step-3 .section-main .right-box {
    width: 55%;
  }
}
@media all and (max-width: 767px) {
  .page-step-3 .section-main .left-box, .page-step-3 .section-main .right-box, .page-step-4 .section-main .left-box, .page-step-4 .section-main .right-box,
  .section-main .left-box,
  .section-main .right-box {
    float: none;
    width: 100%;
    padding: 0;
  }
  .section-main .left-box {
    margin-bottom: 52px;
  }
  .section-main .left-box.new {
    margin-bottom: 30px;
  }
  .page-step-4 .section-main .left-box {
    margin-bottom: 27px;
  }
  .page-step-3 .section-main .left-box {
    margin-bottom: 20px;
  }
  .section-main .content + .facebook-btn {
    margin-top: -21px;
  }
  .section-main .content + .btn-list {
    margin-top: 20px;
    margin-bottom: -16px;
  }
}

.page-icon-box {
  margin-bottom: 21px;
}
.page-icon-box .box-title {
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 10px;
  line-height: 60px;
}
@media all and (max-width: 767px) {
  .page-icon-box .box-title {
    margin-top: 0;
    line-height: 30px;
  }
}
.page-icon-box .icon-img {
  vertical-align: top;
  max-width: 60px;
  height: auto;
  width: auto;
}
.page-icon-box [class^=bm_icon_], .page-icon-box [class*=" bm_icon_"] {
  margin-bottom: 8px;
  display: inline-block;
  color: #ffffff;
  font-size: 59px;
  vertical-align: top;
}
.page-icon-box .bm_icon_technical-support {
  margin-bottom: 13px;
  font-size: 56px;
}
.page-icon-box .bm_icon_photos {
  margin-top: -2px;
  margin-bottom: 10px;
  font-size: 60px;
}
@media all and (max-width: 767px) {
  .page-icon-box {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 18px;
  }
  .page-icon-box .icon-img {
    max-width: 30px;
  }
  .page-icon-box [class^=bm_icon_], .page-icon-box [class*=" bm_icon_"] {
    font-size: 30px;
  }
}

.box-title {
  margin-bottom: 31px;
  margin-left: -2px;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
}
.box-title + .example-photo-list-wrap {
  margin-top: 38px;
}
@media all and (max-width: 1024px) {
  .box-title {
    font-size: 32px;
  }
}
@media all and (max-width: 767px) {
  .box-title {
    margin-bottom: 28px;
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
    font-size: 16px;
  }
  .page-step-4 .box-title + .content {
    margin-top: -15px;
    margin-bottom: 20px;
  }
  .page-step-3 .box-title + .content {
    margin-top: -20px;
    margin-bottom: 27px;
  }
  .box-title + .example-photo-list-wrap {
    margin-top: 0;
  }
}

.example-photo-list-wrap {
  margin-bottom: 41px;
}
@media all and (max-width: 767px) {
  .example-photo-list-wrap {
    margin-bottom: 31px;
  }
}

.example-photo-list {
  max-width: 442px;
  font-size: 0;
  margin: 0 -16px -32px;
}
.example-photo-list > li {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 0 16px;
  margin-bottom: 32px;
}
.example-photo-list > li:after {
  position: absolute;
  z-index: 5;
  content: "";
  width: 38px;
  height: 38px;
  left: 50%;
  bottom: -16px;
  margin-left: -1px;
  background-image: url(../../img/icon-check@2x.png);
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-border-radius: 20rem;
  -khtml-border-radius: 20rem;
  -moz-border-radius: 20rem;
  -ms-border-radius: 20rem;
  -o-border-radius: 20rem;
  border-radius: 20rem;
  -webkit-transform: translate(-50%, 0);
  -khtml-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.example-photo-list > li.bad:after {
  background-image: url(../../img/icon-close@2x.png);
}
.example-photo-list .centered-img {
  padding-bottom: 100%;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.example-photo-list .centered-img img {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
@media all and (max-width: 1024px) {
  .example-photo-list {
    margin: 0 -10px -20px;
  }
  .example-photo-list > li {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 767px) {
  .example-photo-list {
    margin: 0 -7px -20px;
  }
  .example-photo-list > li {
    padding: 0 7px;
    margin-bottom: 20px;
  }
  .example-photo-list > li:after {
    width: 28px;
    height: 28px;
    bottom: -10px;
    margin-left: 0;
  }
}

.facebook-btn {
  display: block;
  width: 99px;
  height: 28px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../img/facebook_widget.png);
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
  cursor: pointer;
}
@media all and (min-width: 769px) {
  .facebook-btn:hover, .facebook-btn:focus {
    opacity: 0.8;
  }
}

.btn-list {
  font-size: 0;
}
.btn-list .single-btn-box {
  display: inline-block;
  width: 100%;
  padding: 0 6px;
  margin-bottom: 30px;
  vertical-align: top;
  max-width: 250px;
}
.btn-list .single-btn-box.full-width {
  width: 100%;
  max-width: 100%;
}
.btn-list .single-btn-box.half-width {
  max-width: 50%;
}
.btn-list .single-btn-box a.btn, .btn-list .single-btn-box .btn {
  display: block;
  width: 100%;
}
.left-box .btn-list {
  margin-bottom: -25px;
}
.left-box .btn-list .single-btn-box {
  margin-bottom: 12px;
}
.left-box .btn-list .single-btn-box.half-width {
  max-width: 50%;
}
.btn-list.mobile {
  visibility: hidden;
  display: none;
}
@media all and (max-width: 910px) {
  .btn-list {
    margin-bottom: -20px;
  }
  .btn-list .single-btn-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .btn-list .single-btn-box.half-width {
    max-width: 50%;
  }
}
@media all and (max-width: 767px) {
  .btn-list {
    margin: 0 -10px -12px;
  }
  .btn-list.desktop {
    display: none;
    visibility: hidden;
  }
  .btn-list.mobile {
    visibility: visible;
    display: block;
  }
  .btn-list.mobile + .drag-drop-box {
    margin-top: 21px;
  }
  .left-box .btn-list a.btn, .left-box .btn-list .btn {
    font-size: 12px;
  }
  .btn-list .single-btn-box {
    width: 100%;
    padding: 0 5px;
    margin-bottom: 12px;
  }
  .btn-list .single-btn-box.half-width {
    max-width: 50%;
  }
}

/**EXPERIMENT PAGE SIZE SHORT**/
@media all and (max-width: 767px) {
  .section-main.page-size-experiment .left-box {
    margin-bottom: 0px;
  }
  .section-main.page-size-experiment .content {
    margin-bottom: 0px;
  }
}
.section-main.page-size-experiment .page-icon-box .box-title {
  margin-left: initial;
}
.section-main.page-size-experiment .example-photo-list-wrap {
  display: flex;
}
@media all and (max-width: 767px) {
  .section-main.page-size-experiment .example-photo-list-wrap {
    margin-bottom: 2vh;
  }
}
@media all and (max-width: 767px) {
  .section-main.page-size-experiment .example-photo-list > li:after {
    width: 24px;
    height: 24px;
  }
}
.section-main.page-size-experiment .mobile-description {
  display: none;
  visibility: hidden;
}
@media all and (max-width: 767px) {
  .section-main.page-size-experiment .mobile-description {
    display: block;
    visibility: inherit;
    width: 70%;
  }
  .section-main.page-size-experiment .desktop-description {
    display: none;
    visibility: hidden;
  }
}

/**EXPERIMENT PAGE SIZE SHORT END**/
.photo-list-wrap {
  margin-bottom: 41px;
}
@media all and (max-width: 767px) {
  .photo-list-wrap {
    display: none;
  }
}

.photo-list {
  max-width: 402px;
  font-size: 0;
  margin: 0 -6px -12px;
}
.photo-list > li {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 0 6px;
  margin-bottom: 12px;
  vertical-align: top;
}
.photo-list .centered-img {
  margin-bottom: 10px;
  padding-bottom: 100%;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.photo-list .centered-img img {
  max-width: 100%;
  max-height: 100%;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.photo-list .photo-desc {
  display: block;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

.baby-form {
  margin-top: -5px;
}
.baby-form a.btn, .baby-form .btn {
  padding-top: 19px;
  padding-bottom: 19px;
}
@media all and (max-width: 767px) {
  .baby-form {
    margin: 0 -5px 0;
  }
}

.baby-form-box {
  margin-bottom: 58px;
}
.baby-form-box > :last-child {
  margin-bottom: 0;
}

.form-row {
  margin-bottom: 37px;
  font-size: 0;
}
.form-row .form-col {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
}
.form-row .form-col.col-4 {
  width: -webkit-calc(80% - 2px);
  width: calc(80% - 2px);
}
.form-row .form-col.col-1 {
  width: -webkit-calc(20% + 2px);
  width: calc(20% + 2px);
  padding-left: 10px;
}
@media all and (max-width: 1024px) {
  .form-row .form-col.col-4 {
    width: 100%;
    margin-bottom: 36px;
  }
  .form-row .form-col.col-1 {
    width: 100%;
    padding-left: 0;
  }
}
@media all and (max-width: 767px) {
  .form-row {
    margin-bottom: 16px;
  }
  .form-row .form-col.col-4 {
    margin-bottom: 16px;
  }
}

.inner-form-row {
  margin: 0 -5px -10px;
}

.form-label {
  display: block;
  margin-left: -2px;
  margin-bottom: 15px;
  font: 500 18px "Gotham Pro", Arial, sans-serif;
  line-height: 1.6;
  color: rgba(15, 15, 15, 0.8);
  color: rgba(15, 15, 15, 0.6);
}
@media all and (max-width: 1024px) {
  .form-label {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .form-label {
    margin-bottom: 8px;
    margin-left: 7px;
    font-size: 12px;
  }
}

.baby-box {
  position: relative;
  display: inline-block;
  width: 20%;
  font-size: 0;
  padding: 0 5px;
  margin-bottom: 10px;
  vertical-align: top;
}
.col-4 .baby-box {
  width: 25%;
}
.col-1 .baby-box {
  width: 100%;
}
@media all and (min-width: 769px) {
  .baby-box .popup-with-form:focus .input-box {
    -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
  }
}
.baby-box .popup-with-form .checked + .input-box {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.baby-box label {
  position: absolute;
  z-index: 10;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: transparent;
}
@media all and (min-width: 769px) {
  .baby-box label:hover ~ .checked ~ .input-box, .baby-box label:hover ~ .input-box {
    -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
    box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.4);
  }
}
.baby-box .baby-inner-box {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 111.2%;
}
.baby-box .input-box {
  overflow: hidden;
  position: absolute;
  display: block;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #ffffff;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  -moz-box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  box-shadow: 0 4px 9px 1px rgba(18, 41, 63, 0.1);
  cursor: pointer;
  -webkit-transition: 0.35s;
  -khtml-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.baby-box .input-inner-box {
  display: table;
  width: 100%;
  height: 100%;
  padding: 5px 5px 2px;
}
.baby-box .input-inner-box .input-inner-cell {
  display: table-cell;
  width: 100%;
  vertical-align: bottom;
}
.baby-box input {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 0;
  font-size: 0;
  opacity: 0;
}
.baby-box input:checked + .input-box {
  color: #ffffff;
  background-color: #6D7082;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.baby-box input:checked + .input-box [class^=bm_icon_], .baby-box input:checked + .input-box [class*=" bm_icon_"] {
  color: #ffffff;
}
.baby-box input:checked + .input-box .icon-color {
  margin: 2px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
@media all and (max-width: 380px) {
  .baby-box input:checked + .input-box .icon-color {
    border: none;
    margin: 0;
  }
}
@media all and (min-width: 769px) {
  .baby-box input:focus + .input-box {
    color: #ffffff;
    background-color: #6D7082;
  }
  .baby-box input:focus + .input-box [class^=bm_icon_], .baby-box input:focus + .input-box [class*=" bm_icon_"] {
    color: #ffffff;
  }
  .baby-box input:focus + .input-box .icon-color {
    margin: 2px;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
}
@media all and (min-width: 769px) and (max-width: 380px) {
  .baby-box input:focus + .input-box .icon-color {
    border: none;
    margin: 0;
  }
}
.baby-box.selected .input-box {
  color: #ffffff;
  background-color: #6D7082;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.baby-box.selected .input-box [class^=bm_icon_], .baby-box.selected .input-box [class*=" bm_icon_"] {
  color: #ffffff;
}
.baby-box.selected .input-box .icon-color {
  margin: 2px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
@media all and (max-width: 380px) {
  .baby-box.selected .input-box .icon-color {
    border: none;
    margin: 0;
  }
}
.baby-box .frame-input {
  visibility: hidden;
}
.baby-box .input-icon-box {
  position: absolute;
  top: 42%;
  left: 50%;
  display: block;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.baby-box .input-icon-box img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.baby-box .input-icon-box [class^=bm_icon_], .baby-box .input-icon-box [class*=" bm_icon_"] {
  position: relative;
  font-size: 40px;
  color: #7F98A3;
}
.baby-box .input-icon-box .bm_icon_baby {
  left: -1px;
  top: 1px;
}
.baby-box .input-icon-box .bm_icon_baby-1 {
  top: 2px;
}
.baby-box .input-icon-box .bm_icon_pacifier {
  top: 1px;
}
.baby-box .input-icon-box .bm_icon_no-waiting {
  left: 1px;
}
.baby-box .input-icon-box .bm_icon_reload-1 {
  top: -1px;
  font-size: 34px;
}
.baby-box .input-title {
  display: block;
  max-width: 100%;
  min-height: 33px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.baby-box .input-title.inverse {
  min-height: auto;
  color: #ffffff;
  padding: 5px;
  margin: 0 5px 9px;
  background-color: #6D7082;
}
.baby-box .input-title.inverse .small {
  color: #ffffff;
}
.baby-box .input-title .small {
  display: block;
  margin-top: -3px;
  font-size: 10px;
  opacity: 0.8;
}
@media all and (max-width: 1180px) {
  .baby-box .input-icon-box {
    margin-bottom: 16%;
  }
  .baby-box .input-title {
    font-size: 12px;
  }
}
@media all and (max-width: 1024px) {
  .baby-box {
    width: 25%;
  }
  .col-1 .baby-box, .col-4 .baby-box {
    width: 25%;
  }
}
@media all and (max-width: 910px) {
  .baby-box {
    width: 33.333%;
  }
  .col-1 .baby-box, .col-4 .baby-box {
    width: 33.333%;
  }
}
@media all and (max-width: 380px) {
  .baby-box .baby-inner-box {
    padding-bottom: 85%;
  }
  .baby-box .input-title {
    min-height: 30px;
    font-size: 10px;
  }
  .baby-box .input-title .small {
    font-size: 9px;
  }
  .baby-box .input-title.inverse {
    padding: 3px 0 2px;
    margin: 0 3px 8px;
  }
  .baby-box .input-icon-box {
    top: 30%;
  }
  .baby-box .input-icon-box [class^=bm_icon_], .baby-box .input-icon-box [class*=" bm_icon_"] {
    font-size: 22px;
  }
}

.icon-color {
  display: inline-block;
  border: 4px solid transparent;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  vertical-align: bottom;
  -webkit-transition-delay: 0s;
  -khtml-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition: border 0s;
  -khtml-transition: border 0s;
  -moz-transition: border 0s;
  -ms-transition: border 0s;
  -o-transition: border 0s;
  transition: border 0s;
}
.icon-color span {
  display: inline-block;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(37deg, rgb(245, 221, 207) 0%, rgb(244, 217, 192) 54%, rgb(242, 212, 177) 100%);
  background-image: -webkit-linear-gradient(37deg, rgb(245, 221, 207) 0%, rgb(244, 217, 192) 54%, rgb(242, 212, 177) 100%);
  background-image: -ms-linear-gradient(37deg, rgb(245, 221, 207) 0%, rgb(244, 217, 192) 54%, rgb(242, 212, 177) 100%);
}
.icon-color.dark span {
  background-image: -moz-linear-gradient(37deg, rgb(149, 101, 73) 0%, rgb(142, 92, 62) 54%, rgb(135, 82, 51) 100%);
  background-image: -webkit-linear-gradient(37deg, rgb(149, 101, 73) 0%, rgb(142, 92, 62) 54%, rgb(135, 82, 51) 100%);
  background-image: -ms-linear-gradient(37deg, rgb(149, 101, 73) 0%, rgb(142, 92, 62) 54%, rgb(135, 82, 51) 100%);
}
.icon-color.very-dark span {
  background-image: -moz-linear-gradient(-90deg, rgb(70, 46, 31) 0%, rgb(80, 49, 31) 54%, rgb(89, 52, 30) 100%);
  background-image: -webkit-linear-gradient(-90deg, rgb(70, 46, 31) 0%, rgb(80, 49, 31) 54%, rgb(89, 52, 30) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(70, 46, 31) 0%, rgb(80, 49, 31) 54%, rgb(89, 52, 30) 100%);
}
.icon-color.asian span {
  background-image: -moz-linear-gradient(37deg, rgb(242, 168, 101) 0%, rgb(239, 183, 125) 54%, rgb(235, 197, 148) 100%);
  background-image: -webkit-linear-gradient(37deg, rgb(242, 168, 101) 0%, rgb(239, 183, 125) 54%, rgb(235, 197, 148) 100%);
  background-image: -ms-linear-gradient(37deg, rgb(242, 168, 101) 0%, rgb(239, 183, 125) 54%, rgb(235, 197, 148) 100%);
}
@media all and (max-width: 380px) {
  .icon-color {
    border: none;
  }
  .icon-color span {
    width: 22px;
    height: 22px;
  }
}

@media screen and (min-width: 767px) {
  .baby-form-box__desktop {
    width: 90%;
    margin-left: 49px;
    margin-top: 26px;
  }
}
.warning {
  background-color: #d85050;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #d85050;
  border-radius: 25px;
  text-align: center;
  position: relative;
  color: white;
}
.warning .close {
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 25px;
  cursor: hand;
  cursor: pointer;
}

#app {
  width: 100%;
  height: 100%;
}

.inline-share-block {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

#share-toolbox {
  border-radius: 20rem 20rem 20rem 0;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button {
    display: inline-block;
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: plain; /* also: check-out, book, or subscribe */
  }
  .apple-pay-button-black {
    -apple-pay-button-style: black;
  }
  .apple-pay-button-white {
    -apple-pay-button-style: white;
  }
  .apple-pay-button-white-with-line {
    -apple-pay-button-style: white-outline;
  }
}
@supports not (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button {
    display: inline-block;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 5px;
    padding: 0px;
    box-sizing: border-box;
    min-width: 200px;
    min-height: 32px;
    max-height: 64px;
  }
  .apple-pay-button-black {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: black;
  }
  .apple-pay-button-white {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
  }
  .apple-pay-button-white-with-line {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
    border: 0.5px solid black;
  }
}
.btn.pay-btn {
  padding: 0;
  height: 40px;
}

#baby-pic {
  max-width: 100%;
}

.wrapper {
  background-image: url(../../img/main-bg.png);
  margin-bottom: -100px;
}

#contact-us, #about-us, #feedback {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 10px;
  border-radius: 20px;
}
#contact-us h1, #contact-us p, #about-us h1, #about-us p, #feedback h1, #feedback p {
  display: inline-block;
  margin-bottom: 10px;
}
#contact-us p, #about-us p, #feedback p {
  text-align: justify;
  font-weight: 100;
}

#feedback .form div {
  margin-bottom: 5px;
}
#feedback input, #feedback textarea {
  display: inline-block;
  resize: none;
  width: 100%;
  max-width: 500px;
  font-family: "Gotham Pro", Arial, sans-serif;
}

.example-photo-list {
  text-align: center;
}
.example-photo-list > li {
  width: 33%;
}
.example-photo-list .centered-img img {
  max-width: 100%;
}

.mobile-timeline .trial-button .next-step {
  background-color: #11B814;
}
.mobile-timeline .next-step.enabled-green {
  background-color: #11B814;
}
.mobile-timeline .next-step.enabled-orange {
  background-color: #E99616;
}

.small-print {
  display: inline-block;
  margin-top: 30px;
  font-weight: lighter;
  color: grey;
}
.small-print li {
  list-style: disc;
  margin-left: 10px;
}
.small-print a {
  color: #4d4d4d;
}

.drag-drop-warning {
  position: relative;
}
.drag-drop-warning > p {
  margin-bottom: 0px;
}
.drag-drop-warning > .big-text {
  margin-bottom: 21px;
}

.btn-list {
  text-align: center;
}
.btn-list.mobile-list {
  margin-top: 35px;
}

.try-arrow {
  width: 40%;
  position: absolute;
  left: -16%;
  top: -14%;
}

.section-main {
  margin-bottom: 0;
}

.read-more {
  cursor: pointer;
  text-decoration: underline;
}

.unsub-link {
  text-decoration: underline;
  cursor: pointer;
}
.unsub-link.pointer {
  text-decoration: none;
}

.spacer {
  margin-bottom: 200px;
  width: 100%;
  float: left;
}

p.big-text {
  font-size: 18px;
}

.footer-menu > li:not(:last-child) {
  margin-right: 19px;
}

.celebrity-photo-box img {
  min-width: initial;
}

.width-50 {
  width: 50%;
}

.width-100 {
  width: 100%;
}

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

.error-text {
  color: red;
}

.success-text {
  color: #11B814;
}

.btn-green {
  background-color: #0ECE8C;
  border-color: #0ECE8C;
  color: white;
}
.btn-green:hover {
  color: black;
}

.btn-green.disabled {
  background-color: #94d5b8;
  border-color: #0ECE8C;
  color: white;
}
.btn-green.disabled:hover {
  color: black;
}

.pointer-wrapper {
  margin: 5px 0;
}

.pointer {
  cursor: pointer;
}
@media (max-width: 767px) {
  .pointer {
    font-size: 14px;
  }
}

.pointer-description {
  color: white;
  font-size: 18px;
}
.pointer-description-block {
  margin: 0 0 10px 0;
}

a:link.pointer, a:visited.pointer {
  text-decoration: none;
}

.footer-menu > li:not(:last-child) {
  margin-right: 12px;
}

.box-title .title-icon {
  margin-right: 10px;
  margin-left: -10px;
  margin-bottom: 0;
}

.mobile-tools-title {
  text-align: center;
  width: 100%;
}

.mobile-tools-title__tools {
  margin-bottom: 20px;
  font-size: 18px;
}

.radio-btn-conteiner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.radio-btn-conteiner__desc {
  width: 65%;
  margin: 0px auto 0px 0px;
}

.radio-btn-gender {
  font-size: 14px;
  margin: 0 10px;
}

.baby-name-generate {
  font-size: 14px;
}

.generate-name {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0 20px 0;
}

.baby-generate-name__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: rgba(22, 22, 22, 0.0941176471);
  /* margin: 41px; */
  width: 77%;
  margin: 10px;
  border-radius: 10px;
  height: 87px;
}

.professions__area {
  margin: 10px 0 25px 0;
  height: 65px;
}

.section-main .left-box.pr-20 {
  padding-right: 20px;
}

.drop-area .drag-drop-note {
  max-width: 100%;
  padding: 0 2% 5%;
}

.footer {
  height: 180px;
}
.footer .language {
  color: #2e2e2e;
  opacity: 0.6;
}

.wrapper::after {
  margin-top: 18px;
  height: 210px;
}

.wrapper {
  margin-bottom: -180px;
}

.baby-box .input-inner-box {
  padding: 5px 0 2px;
}

.hidden {
  display: none;
}

.main-page-pic {
  max-width: 25%;
  padding: 10px;
  float: left;
}
.main-page-pic img {
  width: 100%;
  border-radius: 20px;
}

#header .site-desc {
  text-transform: capitalize;
}

.right-box {
  position: relative;
}

.pay-parents {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
.pay-parents img {
  width: 100px;
  border-radius: 20px;
  border: 2px solid white;
}
.pay-parents.first-parent {
  transform: rotate(5deg);
  right: 75px;
}
.pay-parents.second-parent {
  transform: rotate(30deg);
  top: 25px;
}

.header .logo img {
  height: 50px;
  width: 186px;
}

.page-icon-box .icon-img {
  width: 60px;
  height: 60px;
}

@media all and (max-width: 767px) {
  .header .logo img {
    height: 28px;
    width: 105px;
  }
  .page-icon-box .icon-img {
    width: 30px;
    height: 30px;
  }
}
.landing {
  font-size: 12px;
  line-height: 1.8;
}

.CardField-number {
  width: 100%;
}

.btn-list.outer .single-btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn-list.outer .single-btn-box .btn {
  width: 77%;
  margin: 0 auto;
}

.btn.squared {
  border-radius: 5px;
}
.btn.blue {
  background-color: #3b5998;
  border-color: white;
  color: white;
}
.btn.mobile_share {
  margin: auto !important;
  width: 77% !important;
}
.btn.green {
  background-color: #11B814;
  border-color: #11B814;
  color: white;
}
.btn.green.wb {
  border-color: white;
}
.btn.green:hover {
  background-color: #3FA428;
  border-color: #3FA428;
}

.mobile-menu ul li:not(:last-child) {
  margin-bottom: 14px;
}
.mobile-menu ul li a {
  color: white;
  font-size: 14px;
}

.profile .header-text {
  font-size: 20px;
  color: white;
  text-align: center;
}
.profile .email {
  font-size: 16px;
  color: white;
  text-align: center;
}
.profile .baby-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 10px;
}
.profile .baby-pic {
  max-width: 200px;
  float: left;
  margin: 15px;
}
.profile .baby-pic-name {
  width: 100%;
  color: white;
  font-size: 15px;
  text-align: center;
}
.profile .notice {
  text-align: center;
  font-size: 12px;
  color: grey;
}

.store-links {
  display: flex;
  justify-content: center;
}
.store-links-link {
  max-width: 160px;
  margin: 15px 15px;
  width: 100%;
}

@media all and (max-width: 767px) {
  .profile .baby-pic {
    max-width: 100%;
    margin: 0;
    margin-bottom: 15px;
    float: none;
  }
}
.app-desctiption {
  display: inline-block;
  margin: 15px 0;
  font-size: 18px;
  color: white;
  line-height: 1.5;
}
.app-desctiption > b {
  text-decoration: underline;
}

.profile-unsub:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media all and (max-width: 767px) {
  .btn-list.mobile.new {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .single-btn-box.new {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .single-btn-box.new > .btn {
    margin: 0px !important;
  }
  .drag-drop-form-inner-box.new {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: center !important;
    padding-bottom: 15px;
  }
  .btn.upload-button-super.new {
    width: 100%;
  }
}
.mobile-tools-title__guides {
  font-size: 16px !important;
  color: black !important;
  margin: 5px 0 15px 0;
}

.mobile-tools-title__generates {
  width: 78%;
  text-align: center;
  color: black !important;
  margin: 5px 0 15px 0;
  font-size: 16px;
}

.desc-tools-title__generates {
  width: 65%;
  text-align: center;
  color: black !important;
  margin: 5px auto 15px 2px;
  font-size: 16px;
}

.margen-desc-fix {
  width: 65% !important;
  margin: 5px auto 15px 2px !important;
}

.area__result-generate {
  width: 65%;
  margin: 10px auto 10px 0px;
}

.mobile-tools-title__guide {
  margin: 5px !important;
}

.radio-button-box {
  display: flex;
  align-items: center;
}

.mobile-timeline-expirement .trial-button .next-step {
  background-color: #11B814;
}
.mobile-timeline-expirement .trial-button .next-step > .bm_icon_arrows {
  animation: back-and-forth alternate 0.7s infinite ease-in-out;
}
@keyframes back-and-forth {
  from {
    transform: translate(-10px, -50%);
  }
  to {
    transform: translate(-5px, -50%);
  }
}
.mobile-timeline-expirement .next-step.enabled-green {
  background-color: #11B814;
}
.mobile-timeline-expirement .next-step.enabled-green > .bm_icon_arrows {
  animation: back-and-forth alternate 0.7s infinite ease-in-out;
}
@keyframes back-and-forth {
  from {
    transform: translate(-10px, -50%);
    opacity: 0.4;
  }
  to {
    transform: translate(-5px, -50%);
    opacity: 1;
  }
}
.mobile-timeline-expirement .next-step.enabled-orange {
  background-color: #E99616;
}

.disclaimer {
  font-size: 8px !important;
  width: 77%;
  text-align: center;
}

.disclaimer__desc {
  font-size: 8px !important;
  width: 52%;
  text-align: center;
}

.title-list__result-menu {
  width: 100%;
  text-align: center;
  color: black;
  font-size: 16px;
  margin: 12px 0 12px 0;
}

.hr-line {
  width: 75%;
  height: 1px;
  background: gray;
  border: none;
  margin: 20px auto 15px;
}

.hr-line__desc {
  width: 65%;
  margin: 20px auto 15px 2px;
}

.generate-result__title {
  color: white;
}

.btn__desktop-list {
  width: 65% !important;
  margin: 0 auto 0 0 !important;
}

.btn__desktop-list_wiki {
  margin: 10px auto 10px 0 !important;
  line-height: 17.5px !important;
}

.desc-tools-title__tools {
  margin-bottom: 20px;
  font-size: 18px !important;
  margin-left: 0px !important;
  width: 52%;
}

@media all and (max-width: 910px) {
  .desc-tools-title__tools {
    font-size: 17px !important;
  }
}
@media all and (max-width: 768px) {
  .desc-tools-title__tools {
    font-size: 16px !important;
  }
}
.desc__visible {
  visibility: visible !important;
  display: block !important;
  margin: 10px 10px 20px;
  line-height: 35px !important;
  max-width: 1180px;
  left: inherit !important;
}

.desc__container-btn {
  width: 100%;
  max-width: 1180px;
}

.desc__visible-btn {
  cursor: pointer;
}

@media all and (max-width: 767px) {
  .desc__container-btn {
    visibility: hidden;
    display: none;
  }
}
.profile__receipts {
  font-size: 13px;
  font-weight: 100;
  color: #535353;
  text-decoration: underline;
  cursor: pointer;
}
.profile__receipts-block {
  padding: 0 0 0 10px !important;
}

body > #app > div {
  height: 100%;
}

/**EXPERIMENT PAGE SIZE SHORT**/
.section-main.page-size-experiment .example-photo-list {
  width: 100%;
}
.section-main.page-size-experiment .example-photo-list > li {
  width: 33%;
}
.section-main.page-size-experiment .upload-image {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-main.page-size-experiment .upload-image__invisible {
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.section-main.page-size-experiment .upload-image__invisible:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.section-main.page-size-experiment .upload-image > div:nth-child(10) {
  grid-column: span 2;
}
.section-main.page-size-experiment .upload-image > div:nth-child(17) {
  grid-column: span 2;
}
.section-main.page-size-experiment .big-bottom-space > .left-box {
  margin-bottom: 32px;
}

@media all and (max-width: 767px) {
  .section-main.page-size-experiment .example-photo-list {
    width: 32%;
    padding-top: 6px;
  }
  .section-main.page-size-experiment .example-photo-list > li {
    width: 90%;
    margin: 0 10px 40px;
  }
}
@media screen and (max-width: 767px) {
  .section-main.page-size-experiment .first-example-photo {
    margin-bottom: 32px !important;
  }
  .section-main.page-size-experiment .big-bottom-space > .right-box > .drag-drop-box > .drop-area {
    border: 2px dashed #FFFFFF !important;
  }
  .section-main.page-size-experiment .kid-config-content {
    margin-bottom: 38px !important;
  }
}
/**EXPERIMENT PAGE SIZE SHORT END**/
label.form-label {
  color: black;
  margin: 0;
  padding: 0;
}

input.form-cancellation-feedback {
  width: 500px;
  max-width: 90%;
  padding: 5px;
  margin: 0 0 15px;
}

input.form-cancellation-submit {
  border: 0;
  border-radius: 5px;
  background-color: #11B814;
  color: white;
  padding: 14px 24px;
}

span.form-error {
  color: red;
}

span.form-success {
  color: green;
}