.sign-in-box__popup-trigger {
  cursor: pointer;
}
.choose-plan-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: transparent;
  z-index: 99999;
  transition: all .25s;
  display: none;
}
.choose-plan-modal_active {
  display: block;
}
.choose-plan-modal__hide-scroll-bar {
  overflow: hidden;
  position: fixed;
  top: 0px;
  width: 100%;
  padding-right: 16px;
}
.choose-plan-modal__bg {
  background-color: #fff;
  width: 100%;
  height: calc(100% - 60px);
  overflow-y: scroll;
}
.choose-plan-modal__bg::-webkit-scrollbar {
  display: block;
  width: 4px;
  background-color: #D9D9D9;
  opacity: 0;
}
.choose-plan-modal__bg::-webkit-scrollbar-thumb {
  display: block;
  background: #9F9494;
  border-radius: 7px;
  cursor: pointer;
}
.choose-plan-modal__back-drop {
  width: 100%;
  height: 60px;
  background: transparent;
}
.choose-plan-modal__container {
  width: 100%;
  padding: 0 20px;
}
@media only screen and (min-width: 760px) {
  .choose-plan-modal__container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__container {
    max-width: 1160px;
  }
}
.choose-plan-modal-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.choose-plan-modal__header {
  padding-bottom: 65px;
  padding-top: 20px;
  margin-bottom: 65px;
  position: relative;
}
.choose-plan-modal__header:after {
  width: 100%;
  height: 1px;
  border-radius: 100px;
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  background: #251E35;
  opacity: .1;
}
@media only screen and (min-width: 760px) {
  .choose-plan-modal__header {
    padding-top: 40px;
  }
}
.choose-plan-modal__title {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 31px;
  color: #282828;
  margin-bottom: 6px;
}
.choose-plan-modal__subtitle {
  font-family: 'TT Commons', sans-serif;
  font-weight: normal;
  font-size: 15px;
  line-height: 17px;
  text-align: center;
  color: #555555;
  width: 200px;
}
.choose-plan-modal__sign-in-button {
  margin-top: 40px;
  width: 200px;
}
.choose-plan-modal__card-wrapper {
  margin-top: 30px;
}
@media only screen and (min-width: 760px) {
  .choose-plan-modal__card-wrapper {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__card-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.choose-plan-modal__card {
  width: 100%;
  border: 1.5px solid #FFF;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(12,12,12,0.15);
  margin-bottom: 11px;
  transition: all .25s;
  cursor: pointer;
}
.choose-plan-modal__card_active {
  border-color: #FC654C;
  transition: all .25s;
}
.choose-plan-modal__card_active .choose-plan-modal__card-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.choose-plan-modal__card_active .choose-plan-modal__card-header:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-radius: 100px;
  background: #F1F1F1;
}
.choose-plan-modal__card_active .choose-plan-modal__card-body {
  pointer-events: all;
  opacity: 1;
  max-height: 500px;
}
.choose-plan-modal__card:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 760px) {
  .choose-plan-modal__card {
    padding: 35px 20px;
  }
  .choose-plan-modal__card_active {
    padding: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__card {
    margin-bottom: 0;
    width: calc(33% - 6.6px);
    position: relative;
    cursor: initial;
  }
  .choose-plan-modal__card_active {
    height: 475.5px;
    border-color: #FFF;
  }
}
.choose-plan-modal__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all .25s;
}
.choose-plan-modal__card-body {
  max-height: 0px;
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
}
.choose-plan-modal__card-title {
  font-family: 'Quiza Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #8C3848;
  transform: translate(-3px,-2px);
}
.choose-plan-modal__card-title_popular {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.choose-plan-modal__popular {
  font-family: 'TT Commons', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FC654C;
  background: #F7F4F0;
  border-radius: 100px;
  padding: 12px 15px 9px 15px;
  margin-top: 5px;
  transform: translateY(3px);
}
.choose-plan-modal__card-price {
  font-family: 'TT Commons', sans-serif;
  font-weight: normal;
  font-size: 55px;
  line-height: 63px;
  color: #8C3848;
  transform: translate(-3px,2px);
}
.choose-plan-modal__card-price span {
  font-size: 25px;
  line-height: 30px;
  color: #8C3848;
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__card-price {
    transform: translate(-7px,1px);
  }
  .choose-plan-modal__card-price span {
    margin-left: 6px;
    margin-right: -10px;
  }
}
.choose-plan-modal__card-total {
  font-family: 'TT Commons', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #898989;
}
.choose-plan-modal__card-description {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.choose-plan-modal__card-icon {
  display: block;
  width: 8px;
  height: 10px;
  margin: 6px 17px 0 2px;
}
.choose-plan-modal__card-icon_green path {
  stroke: #00937E;
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__card-icon {
    margin: 4px 14px 0 -2px;
  }
}
.choose-plan-modal__card-text {
  font-family: 'TT Commons', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #555555;
}
.choose-plan-modal__card-text_green {
  color: #00937E;
}
.choose-plan-modal__card-button {
  width: 100%;
  margin-top: 20px;
}
@media only screen and (min-width: 760px) {
  .choose-plan-modal__card-button {
    width: 300px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__card-button {
    width: calc(100% - 40px);
    margin-top: 20px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 20px;
  }
}
.choose-plan-modal__button-wrapper {
  margin-top: 65px;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__button-wrapper {
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.choose-plan-modal__button {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 18px 0 15px;
  margin-bottom: 15px;
  transition: all .25s;
}
.choose-plan-modal__button:last-child {
  margin-bottom: 0;
}
.choose-plan-modal__button:hover,
.choose-plan-modal__button:focus,
.choose-plan-modal__button:active {
  text-decoration: none;
}
.choose-plan-modal__button:hover .choose-plan-modal__button-icon svg {
  transform: translateX(4px);
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__button {
    width: calc(33% - 10px);
    margin-bottom: 0;
  }
}
.choose-plan-modal__button-text {
  width: 100%;
  font-family: 'TT Commons', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #FC654C;
  transform: translate(-5px,3px);
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__button-text {
    transform: translate(-7px,2px);
  }
}
.choose-plan-modal__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 19px;
}
.choose-plan-modal__button-icon svg {
  transition: all .25s;
}
.choose-plan-modal__button-icon:before {
  content: '';
  width: 1px;
  height: 30px;
  background: #CCCCCC;
  display: flex;
  margin-right: 19px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
}
.choose-plan-modal__security-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 67px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 1280px) {
  .choose-plan-modal__security-wrapper {
    margin: 0 auto;
    margin-top: 65px;
    max-width: 500px;
    padding-bottom: 15px;
  }
}
.choose-plan-modal__security-icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-plan-modal__security-content {
  width: calc(100% - 50px);
}
.choose-plan-modal__security-title {
  font-family: 'TT Commons', sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: #898989;
}
.choose-plan-modal__security-text {
  font-family: 'TT Commons', sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #BABABA;
}
.choose-plan-modal__security-text a {
  font-family: 'TT Commons', sans-serif;
  color: #BABABA;
  text-decoration-line: underline;
}
.modal-dialog {
  padding: 0;
  margin: 0;
  overflow: scroll !important;
  height: calc(100vh - 60px);
  width: 100%;
  background: #fff;
}
.modal-dialog textarea {
  border: 1px solid;
}
.modal-dialog.modal-xl {
  width: 100vw;
  height: 100vh;
  overflow: auto !important;
}
@media only screen and (min-width: 950px) {
  .modal-dialog.modal-xl {
    width: 920px !important;
    height: auto;
  }
  .modal-dialog.modal-xl .modal-content {
    width: 900px !important;
  }
}
.modal-dialog.modal-global .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-dialog.modal-global {
  width: 100vw;
  height: 100vh;
  overflow: auto !important;
}
@media only screen and (min-width: 700px) {
  .modal-dialog.modal-global {
    width: 720px;
    height: auto;
  }
  .modal-dialog.modal-global .modal-body {
    max-width: initial;
  }
  .modal-dialog.modal-global .modal-body {
    width: 100%;
  }
  .modal-dialog.modal-global .modal-content {
    width: 700px;
  }
}
@media only screen and (min-width: 1200px) {
  .modal-dialog.modal-global {
    width: 1160px;
  }
}
.modal-dialog.save-addon-modal {
  width: 100vw;
  height: 100vh;
  overflow: auto !important;
}
@media only screen and (min-width: 700px) {
  .modal-dialog.save-addon-modal {
    width: 720px;
    height: auto;
  }
  .modal-dialog.save-addon-modal .modal-body.save-modal-body {
    max-width: initial;
  }
  .modal-dialog.save-addon-modal .modal-content {
    width: 700px;
  }
}
@media only screen and (min-width: 1200px) {
  .modal-dialog.save-addon-modal {
    width: 1160px;
  }
}
@media only screen and (min-width: 700px) {
  .modal-dialog {
    background: transparent;
    width: auto;
    padding-bottom: 30px;
    overflow: auto !important;
    height: auto;
    top: 70px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1600px) {
  .modal-dialog {
    top: 50px;
  }
}
@media only screen and (min-width: 1800px) {
  .modal-dialog {
    top: 10px;
  }
}
.modal-backdrop {
  height: 60px !important;
  opacity: 0;
  top: 0;
}
.modal-backdrop.in {
  opacity: 0;
}
@media only screen and (min-width: 700px) {
  .modal-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    height: 100% !important;
  }
  .modal-backdrop.in {
    opacity: .5;
  }
}
.header-solid {
  margin: 0 !important;
}
.modal-content {
  height: auto;
  position: relative;
  border-radius: 0;
  border: none;
  background: #FFF;
  box-shadow: none;
}
@media only screen and (min-width: 700px) {
  .modal-content {
    transform: translateX(-50%);
    left: 50%;
    width: 425px;
    top: 0;
    box-shadow: 0 40px 90px rgba(12,12,12,0.15);
    border-radius: 20px;
  }
}
.modal-body {
  padding: 20px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
@media only screen and (min-width: 700px) {
  .modal-body {
    padding: 40px;
    max-width: 425px;
  }
}
.wrap-input {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.wrap-input.last .common-input {
  margin-bottom: 8px;
}
.wrap-input.last .error-txt .error {
  margin-bottom: 8px;
}
.wrap-input.hidden {
  display: none;
}
.warning {
  width: 50px;
  height: 50px;
  position: absolute;
  transform: translateY(-50%);
  top: calc(50% - 7px);
  right: 0;
  align-items: center;
  justify-content: center;
  display: none;
}
.warning.error {
  display: flex;
}
.label-style {
  position: absolute;
  left: 13px;
  top: -9px;
  padding: 0 7px;
  background: #FFF;
  margin: 0 !important;
  font-family: 'TT Commons', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #898989;
}
.label-style.error {
  color: #FC654C;
}
.common-input {
  width: 100%;
  border: 1px solid #898989;
  border-radius: 4px;
  height: 50px;
  outline: none;
  padding: 18px 20px;
  margin-bottom: 18px;
  font-family: 'TT Commons', sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: #555555;
}
.common-input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #fff !important;
  -webkit-text-fill-color: #555555 !important;
  color: #555555 !important;
  background-color: transparent !important;
  filter: none;
}
.common-input:focus,
.common-input:active,
.common-input:target {
  border-color: #D8D8D8;
  -webkit-box-shadow: 0 0 1pt 3pt #F5F5F5;
  box-shadow: 0 0 1pt 3pt #F5F5F5;
}
.common-input.error {
  margin-bottom: 10px;
  border-color: #EC1B1B;
}
.common-input.error:focus,
.common-input.error:active,
.common-input.error:target {
  border-color: #FC654C;
  -webkit-box-shadow: 0 0 1pt 3pt #F5F5F5;
  box-shadow: 0 0 1pt 3pt #F5F5F5;
}
.common-input[type="password"] {
  font-family: Verdana, sans-serif;
  letter-spacing: 4px;
  font-size: 18px;
  line-height: 0;
  font-weight: 900;
  color: #282828;
}
.toggle-password {
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
.toggle-password::before {
  display: none;
}
.toggle-password .eye__show-password {
  display: block;
}
.toggle-password.fa-eye-slash .eye__show-password {
  display: none;
}
.toggle-password.fa-eye-slash .eye__hide-password {
  display: block;
}
.eye__hide-password {
  display: none;
}
.eye__show-password {
  display: none;
}
.error-txt {
  display: none;
}
.error-txt.error {
  font-family: 'TT Commons', sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #FC654C;
  display: block;
  margin-bottom: 18px;
  width: 100%;
  max-width: 380px;
}
.modal-authorization {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999 !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.modal-authorization:before {
  display: none !important;
}
.modal-authorization.visible {
  display: block !important;
}
.modal-authorization .modal-backdrop {
  height: 100% !important;
  opacity: 1 !important;
  background: #fff !important;
  pointer-events: none;
}
.modal-authorization .modal-dialog {
  width: 100% !important;
  height: 100% !important;
  background: #fff !important;
  overflow: auto !important;
  top: 0;
  padding: 0 !important;
}
.modal-authorization .modal-content {
  width: 100%;
  max-width: 380px;
  padding: 0 14px;
  box-shadow: none;
}
.modal-authorization .modal-content .modal-sign-in-close {
  display: none;
}
.modal-content_restore {
  height: 100%;
}
.modal-content_mail {
  width: 100%;
  border-radius: 0;
  top: 0;
  height: 100%;
}
.modal-body_mail {
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  top: 0;
}
@media only screen and (min-width: 700px) {
  .modal-body_mail {
    padding: 40px;
    max-width: initial;
  }
}
.modal-body_restore {
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  padding: 45px 20px 45px 20px;
}
@media only screen and (min-width: 700px) {
  .modal-body_restore {
    padding: 40px;
    max-width: initial;
  }
}
.auth-modal-dialog {
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: center;
  padding: 0;
  top: 0 !important;
}
.auth-modal-content {
  height: 100%;
  top: unset;
  left: unset;
  transform: none;
}
.auth-modal-body {
  width: 100%;
  min-height: 100%;
  padding: 40px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-modal-body-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth-modal-logo {
  display: block;
  width: 110px;
  margin-bottom: 46px;
}
.auth-modal-logo svg {
  display: block;
  width: 100%;
  height: auto;
}
.auth-modal-title {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #282828;
  margin-bottom: 30px;
}
.auth-modal-additional-text {
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #282828;
  margin-bottom: 20px;
}
.auth-modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.auth-modal-buttons-wrap {
  width: 100%;
}
.auth-modal-button {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  height: 50px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FC654C;
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s;
  padding-top: 3px;
}
.auth-modal-button:hover {
  background: #fb3a1a;
  color: #fff;
}
.auth-modal-button.disabled {
  background: #BABABA;
  pointer-events: none;
}
.auth-modal-button.disabled:hover {
  background: #a1a1a1;
}
.auth-modal-button.hidden {
  display: none;
}
.auth-modal-reset-password-link {
  margin: 20px auto 0;
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  color: #FC654C;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.auth-modal-reset-password-link:hover {
  color: #fb4729;
}
.auth-modal-socials-login {
  width: 100%;
  display: none;
  margin-top: 20px;
}
.auth-modal-socials-login.visible {
  display: flex;
  flex-direction: column;
}
.horizontal-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.horizontal-separator:before {
  width: 100%;
  height: 1px;
  content: '';
  border-radius: 100px;
  background: #CCCCCC;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.horizontal-separator-text {
  background: #fff;
  padding: 0 6px;
  font-family: 'TT Commons', sans-serif;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #898989;
  position: relative;
}
.auth-modal-social-buttons-wrap {
  width: 100%;
}
.auth-modal-social-button {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  text-decoration: none !important;
}
.auth-modal-social-button svg {
  display: block;
  width: 28px;
  height: auto;
  margin-right: 8px;
  flex-shrink: 0;
}
.auth-modal-social-button span {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  margin-bottom: -5px;
}
.auth-modal-privacy-warning {
  width: 100%;
  margin: 20px 0;
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #BABABA;
  padding-bottom: 19px;
  border-bottom: 1px solid #CCCCCC;
}
.auth-modal-privacy-warning a {
  color: #BABABA;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.auth-modal-privacy-warning a:hover {
  color: #FC654C;
}
.auth-modal-body-bottom {
  width: 100%;
  margin-top: 50px;
}
.auth-modal-copyright-and-privacy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal-copyright-and-privacy__link {
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #898989;
  margin: 2px 10px 0;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.auth-modal-copyright-and-privacy__link:hover {
  color: #FC654C;
}
.auth-modal-copyright-and-privacy__separator {
  width: 1px;
  height: 20px;
  background: #ccc;
}
.auth-modal-switch-block {
  width: 100%;
  display: flex;
  font-family: 'TT Commons', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
}
.auth-modal-switch-block__title {
  color: #282828;
  margin-right: 10px;
}
.auth-modal-switch-block__link {
  color: #FC654C;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.auth-modal-switch-block__link:hover {
  color: #fb4729;
}
.auth-modal-mail-sending-warning {
  width: 100%;
  margin-top: 20px;
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #BABABA;
}
.auth-modal-mail-sending-warning a {
  color: #BABABA;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.auth-modal-mail-sending-warning a:hover {
  color: #FC654C;
}
@font-face {
  font-family: 'Quiza Pro';
  src: url('/css/fonts/fonts/Quiza_Pro/QuizaPro-SemiBold.woff2') format('woff2'), url('/css/fonts/fonts/Quiza_Pro/QuizaPro-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quiza Pro';
  src: url('/css/fonts/fonts/Quiza_Pro/QuizaPro-Bold.woff2') format('woff2'), url('/css/fonts/fonts/Quiza_Pro/QuizaPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quiza Pro';
  src: url('/css/fonts/fonts/Quiza_Pro/QuizaPro-Medium.woff2') format('woff2'), url('/css/fonts/fonts/Quiza_Pro/QuizaPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quiza Pro';
  src: url('/css/fonts/fonts/Quiza_Pro/QuizaPro-Regular.woff2') format('woff2'), url('/css/fonts/fonts/Quiza_Pro/QuizaPro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.eot');
  src: local('TT Commons Regular'), local('TTCommons-Regular'), url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.eot?#iefix') format('embedded-opentype'), url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.woff') format('woff'), url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'TT Commons';
  src: url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.eot');
  src: local('TT Commons Regular'), local('TTCommons-Regular'), url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.eot?#iefix') format('embedded-opentype'), url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.woff') format('woff'), url('/css/fonts/checkout_redesign_v3/TTCommons-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'TT Commons';
  src: url('/css/fonts/checkout_redesign_v3/TTCommons-Light.eot');
  src: local('TT Commons Light'), local('TTCommons-Light'), url('/css/fonts/checkout_redesign_v3/TTCommons-Light.eot?#iefix') format('embedded-opentype'), url('/css/fonts/checkout_redesign_v3/TTCommons-Light.woff') format('woff'), url('/css/fonts/checkout_redesign_v3/TTCommons-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('/bekitzur/htdocs/css/fonts/proximanova_regular/ProximaNova-Reg-webfont.eot');
  src: url('/bekitzur/htdocs/css/fonts/proximanova_regular/ProximaNova-Reg-webfont.eot?#iefix') format('embedded-opentype'), url('/bekitzur/htdocs/css/fonts/proximanova_regular/ProximaNova-Reg-webfont.woff') format('woff'), url('/bekitzur/htdocs/css/fonts/proximanova_regular/ProximaNova-Reg-webfont.ttf') format('truetype'), url('/bekitzur/htdocs/css/fonts/proximanova_regular/ProximaNova-Reg-webfont.svg#webfont') format('svg');
  font-display: fallback;
}
@font-face {
  font-family: 'Proxima Nova Soft';
  src: url('/bekitzur/htdocs/css/fonts/proxima-nova-soft-basic-set-web/ProximaNovaSoft-RegularWeb.eot');
  src: url('/bekitzur/htdocs/css/fonts/proxima-nova-soft-basic-set-web/ProximaNovaSoft-RegularWeb.eot?#iefix') format('embedded-opentype'), url('/bekitzur/htdocs/css/fonts/proxima-nova-soft-basic-set-web/ProximaNovaSoft-RegularWeb.woff') format('woff');
  font-display: fallback;
}
@font-face {
  font-family: 'Proxima Nova Soft Bold';
  src: url('/bekitzur/htdocs/css/fonts/proxima-nova-soft-basic-set-web/ProximaNovaSoft-BoldWeb.eot');
  src: url('/bekitzur/htdocs/css/fonts/proxima-nova-soft-basic-set-web/ProximaNovaSoft-BoldWeb.eot?#iefix') format('embedded-opentype'), url('/bekitzur/htdocs/css/fonts/proxima-nova-soft-basic-set-web/ProximaNovaSoft-BoldWeb.woff') format('woff');
  font-display: fallback;
}
@font-face {
  font-family: 'Stevie Sans Book';
  src: url('/bekitzur/htdocs/css/fonts/stevie-sans-web/StevieSans_BookWeb.eot');
  src: url('/bekitzur/htdocs/css/fonts/stevie-sans-web/StevieSans_BookWeb.eot?#iefix') format('embedded-opentype'), url('/bekitzur/htdocs/css/fonts/stevie-sans-web/StevieSans_BookWeb.woff') format('woff');
  font-display: fallback;
}
@font-face {
  font-family: 'Stevie Sans';
  src: url('/bekitzur/htdocs/css/fonts/stevie-sans-web/StevieSans_RegularWeb.eot');
  src: url('/bekitzur/htdocs/css/fonts/stevie-sans-web/StevieSans_RegularWeb.eot?#iefix') format('embedded-opentype'), url('/bekitzur/htdocs/css/fonts/stevie-sans-web/StevieSans_RegularWeb.woff') format('woff');
  font-display: fallback;
}
@font-face {
  font-family: "Poppins";
  src: url('/bekitzur/htdocs/css/fonts/poppins/Poppins-Regular.otf') format("opentype");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url('/bekitzur/htdocs/css/fonts/poppins/Poppins-SemiBold.otf') format("opentype");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url('/bekitzur/htdocs/css/fonts/poppins/Poppins-Medium.otf') format("opentype");
}
.main-shadow {
  -webkit-box-shadow: 3px 3px 3px 0px rgba(50,50,50,0.5);
  -moz-box-shadow: 3px 3px 3px 0px rgba(50,50,50,0.5);
  box-shadow: 3px 3px 3px 0px rgba(50,50,50,0.5);
}
.bg-image-pattern {
  background: url('https://d2b7jy54l1ub1p.cloudfront.net/images/main/bg.png') repeat;
}
.btn-primary {
  background-color: #00aaee;
  color: #fff;
}
.btn-success,
.btn-primary {
  background-image: none;
  border: none;
  text-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus {
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position .1s linear;
  -moz-transition: background-position .1s linear;
  -o-transition: background-position .1s linear;
  transition: background-position .1s linear;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #0086bb;
}
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:hover {
  background-color: #0098d5;
  border-color: #0086bb;
}
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active,
.btn-primary[disabled] .btn-primary:hover,
.btn-primary[disabled] .btn-primary:focus,
.btn-primary[disabled] .btn-primary:active,
.btn-primary[disabled] .btn-primary.active {
  background-color: #00aaee;
  border-color: #00aaee;
}
.like-it {
  color: #1d1d1d;
  cursor: pointer;
  font-size: 18px;
}
.like-it.liked,
.like-it:hover {
  color: #da210b;
}
.glyphicon-menu {
  display: block;
  width: 23px;
  height: 23px;
  float: left;
  position: relative;
  top: 6px;
}
.glyphicon-menu.menu-profile {
  background-position: center 0;
}
.glyphicon-menu.menu-usd {
  background-position: center -32px;
}
.glyphicon-menu.menu-items {
  background-position: center -65px;
}
.glyphicon-menu.menu-sales {
  background-position: center -100px;
}
.glyphicon-menu.menu-artisans {
  background-position: center -134px;
}
.glyphicon-menu.menu-messages {
  background-position: center -168px;
}
.glyphicon-menu.menu-cog {
  background-position: center -198px;
}
.glyphicon-menu.menu-log-out {
  background-position: center -248px;
}
.g-container {
  padding: 0 20px;
  position: relative;
}
@media only screen and (min-width: 700px) {
  .g-container {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .g-container {
    width: 1160px;
    padding: 0;
    margin: 0 auto;
  }
}
.g-btn {
  text-decoration: none !important;
  max-width: 100%;
  padding: 3px 20px 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #FC654C;
  border-radius: 10px;
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  transition: all, .25s;
  -webkit-tap-highlight-color: transparent;
}
.g-btn:hover,
.g-btn:focus {
  color: #FFFFFF;
  background: #fb4729;
}
.g-section-ttl {
  width: 100%;
  font-family: 'Quiza Pro', sans-serif !important;
  font-weight: 500 !important;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.015em;
  color: #282828;
}
@media only screen and (min-width: 700px) {
  .g-section-ttl {
    font-size: 40px;
    line-height: 47px;
  }
}
@media only screen and (min-width: 1200px) {
  .g-section-ttl {
    font-size: 45px;
    line-height: 53px;
  }
}
.g-swiper-pagination {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  position: relative;
  margin: 0 7px;
  width: 6px;
  height: 6px;
  background: #E2DAD5;
  border-radius: 50%;
  opacity: 1;
}
.g-swiper-pagination .swiper-pagination-bullet:focus {
  outline: none;
}
.g-swiper-pagination .swiper-pagination-bullet-active {
  width: 9px;
  height: 9px;
  background: #3F2323;
}
.g-swiper-button-next,
.g-swiper-button-prev {
  cursor: pointer;
  z-index: 111;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0 20px 35px rgba(12,12,12,0.15);
  border-radius: 100px;
  position: absolute;
  outline: none;
}
.g-swiper-button-next:before,
.g-swiper-button-prev:before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.g-swiper-button-next svg,
.g-swiper-button-prev svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.g-swiper-button-next:after,
.g-swiper-button-prev:after {
  display: none;
}
#toast-container {
  width: calc(100% - 20px);
  padding: 0;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 4px;
}
@media only screen and (min-width: 1200px) {
  #toast-container {
    width: calc(100% - 40px);
    top: 20px;
    right: 20px;
    justify-content: center;
  }
}
#toast-container .toast {
  width: 100%;
  min-height: 80px;
  background-image: none;
  padding: 20px 20px 20px 65px;
  background-size: 30px;
  background-position: top 25px left 20px;
  background-repeat: no-repeat;
  opacity: 1;
  box-shadow: none;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  cursor: default;
  margin-bottom: 10px !important;
}
@media only screen and (min-width: 1200px) {
  #toast-container .toast {
    padding: 20px 40px 20px 80px;
    background-position: top 25px left 30px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
#toast-container .toast-title {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media only screen and (min-width: 760px) {
  #toast-container .toast-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  #toast-container .toast-title {
    margin: 0 5px 0 0;
  }
}
#toast-container .toast-message {
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0;
  text-align: left;
}
@media only screen and (min-width: 760px) {
  #toast-container .toast-message {
    font-size: 20px;
  }
}
#toast-container .toast-close-button {
  content: '';
  width: 16px;
  height: 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 5;
}
#toast-container .toast-close-button:before,
#toast-container .toast-close-button:after {
  content: '';
  display: block;
  height: 16px;
  width: 2px;
  border-radius: 1px;
  background-color: rgba(255,255,255,0.5);
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
#toast-container .toast-close-button:before {
  transform: rotate(45deg);
  margin-right: -1px;
}
#toast-container .toast-close-button:after {
  transform: rotate(-45deg);
  margin-left: -1px;
}
#toast-container .toast-close-button:hover:before,
#toast-container .toast-close-button:hover:after {
  background-color: #282828;
}
@media only screen and (min-width: 760px) {
  #toast-container .toast-close-button {
    width: 17px;
    height: 17px;
    top: 16px;
    right: 17px;
  }
  #toast-container .toast-close-button:before,
  #toast-container .toast-close-button:after {
    height: 17px;
  }
}
#toast-container .toast-error {
  background-image: url('../../images/toastr-notification/toastr-icon-error.svg') !important;
  background-color: #FC654C;
}
#toast-container .toast-success {
  background-image: url('../../images/toastr-notification/toastr-icon-success.svg') !important;
  background-color: #12BD9D;
}
.password-settings-page {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
}
.password-settings-page__container {
  width: 100%;
  max-width: 340px;
  padding: 78px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 760px) {
  .password-settings-page__container {
    padding: 98px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .password-settings-page__container {
    padding: 107px 0;
  }
}
.password-settings-page__title {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 31px;
  text-align: center;
  color: #282828;
  margin-bottom: 15px;
}
.password-settings-page__image-secure {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
}
.password-settings-page__sub-title {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #282828;
  margin-bottom: 10px;
}
.password-settings-page__description {
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  color: #555555;
  margin-bottom: 15px;
}
.password-settings-page__form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.password-settings__input-block {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 4px;
}
.password-settings__input {
  width: 100%;
  height: 50px;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  outline: none;
  padding: 0 20px;
}
.password-settings__input[type="password"] {
  font: large Verdana, sans-serif;
  letter-spacing: 4px;
}
.password-settings__input[type="text"] {
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #282828;
  letter-spacing: 1px;
}
.password-settings__input.error {
  border: 1px solid #F93F3F;
}
.password-settings__input.correct {
  border: 1px solid #00937E;
}
.password-settings__input-label {
  position: absolute;
  left: 13px;
  padding: 2px 7px 0;
  z-index: 11;
  top: -8px;
  background: #FFFFFF;
  border-radius: 100px;
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #898989;
}
.password-settings__input-label.error {
  color: #F93F3F;
}
.password-settings__input-label.correct {
  color: #00937E;
}
.password-settings__input-toggle {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.password-settings__input-toggle svg {
  display: block;
  position: relative;
  z-index: 1;
}
.password-settings__input-toggle svg path {
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.password-settings__input-toggle:after {
  content: '';
  display: none;
  width: 20px;
  height: 2px;
  background: #555555;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.password-settings__input-toggle.text:after {
  display: block;
}
.password-settings__input-toggle:hover svg path {
  fill: #FC654C;
}
.password-settings__input-toggle:hover:after {
  background: #FC654C;
}
.password-settings__input-error {
  position: relative !important;
  font-family: 'TT Commons', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #F93F3F;
  margin-top: 10px;
  display: none;
}
.password-settings-page__button {
  width: 100%;
  height: 52px;
  background: #FC654C;
  border: none !important;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.password-settings-page__button:hover {
  background: #fb4729;
  color: #fff;
}
.password-settings-page__button.disabled {
  pointer-events: none;
  filter: grayscale(1);
}
.contact-us-modal-open-button {
  width: 60px;
  height: 60px;
  z-index: 9999;
  position: fixed;
  right: 10px;
  bottom: 10px;
  box-shadow: 0 5px 4px 0 rgba(0,0,0,0.26);
  background: #2f688e;
  border-radius: 34px 8px 34px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all, 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.contact-us-modal-open-button:hover {
  background: #265473;
}
.contact-us-modal-open-button .icon {
  width: 23px;
  height: 17px;
  border-radius: 6px 6px 6px 2px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 4px;
}
.contact-us-modal-open-button .icon::before,
.contact-us-modal-open-button .icon::after {
  display: block;
  content: '';
  height: 2px;
  background: #2f688e;
  border-radius: 2px;
}
.contact-us-modal-open-button .icon::before {
  width: 15px;
  margin-bottom: 2px;
}
.contact-us-modal-open-button .icon::after {
  width: 10px;
}
.contact-us-modal {
  width: calc(100vw - 20px);
  max-height: calc(100vh - 20px);
  max-width: 400px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 5px 4px 0 rgba(0,0,0,0.26);
  position: fixed;
  z-index: 10000;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  transform: translateX(500px);
  transition: all, .5s;
  -webkit-tap-highlight-color: transparent;
}
.contact-us-modal.visible {
  transform: translateX(0px);
}
.contact-us-modal-close-button {
  align-self: flex-end;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.contact-us-modal-close-button::before,
.contact-us-modal-close-button::after {
  position: absolute;
  left: 15px;
  content: '';
  height: 100%;
  width: 2px;
  border-radius: 2px;
  background-color: #333;
  transition: all, .25s;
  -webkit-tap-highlight-color: transparent;
}
.contact-us-modal-close-button::before {
  transform: rotate(45deg);
}
.contact-us-modal-close-button::after {
  transform: rotate(-45deg);
}
.contact-us-modal-close-button:hover::before,
.contact-us-modal-close-button:hover::after {
  background-color: #FC654C;
}
.contact-us-modal-text {
  font-size: 16px;
}
.contact-us-modal-button {
  text-decoration: none !important;
  max-width: 100%;
  padding: 3px 20px 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: #FC654C;
  border-radius: 10px;
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF !important;
  transition: all, .25s;
  -webkit-tap-highlight-color: transparent;
}
.contact-us-modal-button:hover {
  background: #fb4729;
}
body {
  padding-right: 0 !important;
}
body .bg-loader {
  background-image: none !important;
}
body .bg-loader::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #fff !important;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
body .bg-loader svg.tea {
  opacity: 1;
  z-index: 2;
}
body .bg-loader.hide svg.tea {
  opacity: 0;
}
body {
  overflow-x: hidden !important;
}
svg.tea {
  display: block;
  width: 55px;
  height: 55px;
  transform: translate(-50%,-50%);
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1000;
}
svg.tea path {
  stroke: #9e9e9e;
  fill: transparent !important;
}
svg.tea #teabag {
  transform-origin: top center;
  transform: rotate(3deg);
  animation: swing 2s infinite;
}
svg.tea #steamL {
  stroke-dasharray: 13;
  stroke-dashoffset: 13;
  animation: steamLarge 2s infinite;
}
svg.tea #steamR {
  stroke-dasharray: 9;
  stroke-dashoffset: 9;
  animation: steamSmall 2s infinite;
}
@keyframes swing {
  50% {
    transform: rotate(-3deg);
  }
}
@keyframes steamLarge {
  0% {
    stroke-dashoffset: 13;
    opacity: .6;
  }
  100% {
    stroke-dashoffset: 39;
    opacity: 0;
  }
}
@keyframes steamSmall {
  10% {
    stroke-dashoffset: 9;
    opacity: .6;
  }
  80% {
    stroke-dashoffset: 27;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 27;
    opacity: 0;
  }
}
body {
  color: #1d1d1d;
  font-family: 'Poppins', Fallback, sans-serif;
  min-width: 320px;
  background: url('https://d2b7jy54l1ub1p.cloudfront.net/images/main/bg.png') repeat;
}
body .hidden-item {
  width: 0;
  overflow: hidden;
  opacity: 0;
}
body.modal-open {
  overflow: auto;
}
body a {
  color: #FC654C;
}
body a:hover {
  color: #1d1d1d;
}
body a.inverted {
  color: #1d1d1d;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: 'Poppins', Fallback, sans-serif;
  font-weight: 300 !important;
}
body h1 {
  font-style: normal;
  font-size: 80px;
  letter-spacing: 0.01em;
  line-height: 1.4em;
  text-transform: none;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  body h1 {
    font-size: 40px !important;
  }
}
body p {
  font-family: 'Poppins', Fallback, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  letter-spacing: .06em;
  line-height: 1.8em;
  text-transform: none;
  color: rgba(29,29,29,0.7);
}
body li {
  font-family: 'Poppins', Fallback, sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: .06em;
  line-height: 1.8em;
  text-align: left;
  color: rgba(29,29,29,0.7);
}
body .panel {
  border-radius: 0;
}
body .vertical-fix {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
body .divider {
  height: 1px;
  background-color: #dddddd;
  margin: 10px 0;
}
body .bg-loader {
  position: fixed;
  z-index: 10000000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
body .social .fb_iframe_widget {
  min-width: 90px !important;
  text-align: left;
}
body .social .fb_iframe_widget span:first-child {
  margin-bottom: 4px;
}
body .social .twitter-share-button {
  width: 90px !important;
}
body .social div[id*="plusone"] {
  width: 72px !important;
}
body .pin-it-button {
  display: inline-block;
  vertical-align: top;
}
body .add-to-cart-form {
  margin: 0;
  padding: 0;
  display: inline-block;
}
body .add-to-cart,
body .add-to-cart-danger {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 60px;
}
body .add-to-cart-danger {
  border: 2px solid #ff0000;
  color: #ff0000 !important;
  display: inline-block;
  line-height: 18px;
  text-decoration: none;
  border-radius: 3px;
}
body .favorite-link {
  vertical-align: -20% !important;
  margin-left: 15px;
}
body .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
}
body .swiper-container .left-arrow,
body .swiper-container .right-arrow {
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
}
body .swiper-container .left-arrow img,
body .swiper-container .right-arrow img {
  position: absolute;
  top: calc(50% - 26px);
}
body .swiper-container .left-arrow img {
  left: 20px;
}
body .swiper-container .right-arrow {
  right: 0;
}
body .swiper-container .right-arrow img {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 20px;
}
body .swiper-container .navigation {
  position: absolute;
  width: 100%;
  top: calc(50% - 26px);
  height: 0;
}
body .swiper-container .navigation .left-arrow,
body .swiper-container .navigation .right-arrow {
  margin: 0 20px;
  cursor: pointer;
}
body .swiper-container .navigation .right-arrow {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
body .swiper-container .paging {
  text-align: center;
  position: absolute;
  bottom: 30px;
  width: 100%;
  height: 0;
}
body .swiper-container .paging .swiper-pagination-switch {
  margin: 0 6px;
  color: #cccccc;
  vertical-align: middle;
  cursor: pointer;
}
body .swiper-container .paging .swiper-pagination-switch i {
  font-size: 13px;
}
body .swiper-container .paging .swiper-pagination-switch.swiper-active-switch i {
  font-size: 17px;
}
body .server-error {
  font-size: 80px;
}
body .server-error .code {
  color: red;
  font-size: 100px;
}
body nav.mobile-view-main-menu {
  width: 250px;
  height: calc(100% - 60px);
  position: fixed;
  top: 60px;
  bottom: 0;
  z-index: 5001;
  font-size: 16px;
  opacity: 1;
  transition: .3s all;
  overflow: auto;
  background-color: white;
  overflow-x: hidden;
  padding-bottom: 20px;
}
body nav.mobile-view-main-menu.hidden-item {
  width: 0;
  overflow: hidden;
  opacity: 0;
}
body nav.mobile-view-main-menu > div {
  margin: 25px;
  width: 250px;
}
body nav.mobile-view-main-menu .user-actions {
  margin: 0;
  color: white;
}
body nav.mobile-view-main-menu .user-actions a.user-button {
  border: solid 1px white;
  padding: 5px 10px;
  margin: 0px 5px;
}
body nav.mobile-view-main-menu h4 {
  margin: 0;
  font-weight: 500;
  color: #fff;
  font-size: inherit;
  padding-bottom: 12px;
}
body nav.mobile-view-main-menu h4 a {
  color: #fff;
}
body nav.mobile-view-main-menu h4 a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
body nav.mobile-view-main-menu .menu-dropdown > ul {
  padding-left: 0px;
}
body nav.mobile-view-main-menu .menu-dropdown > ul li {
  display: block;
  padding: 5px 0;
}
body nav.mobile-view-main-menu .menu-dropdown > ul li a {
  color: white;
}
body nav.mobile-view-main-menu .menu-items-link {
  list-style: none;
  padding: 5px 0 0 0;
  border-top: 1px solid #8B8B8B;
  margin-bottom: 20px;
}
body nav.mobile-view-main-menu .menu-items-link li a {
  line-height: 2;
  color: #fff;
  font-weight: 500;
}
body nav.mobile-view-main-menu .menu-items-link li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
body nav.mobile-view-main-menu .get-ios-app h6 {
  color: #fff;
  font-weight: 500;
}
body nav.mobile-view-main-menu .get-ios-app a.badge-appstore-image {
  background: url("/bekitzur/htdocs/images/main/badge_appstore-lrg.png") no-repeat;
  background-size: 170px 50px;
  display: block;
  height: 50px;
  overflow: hidden;
  padding: 0;
  width: 170px;
}
body content {
  max-width: 992px;
  padding: 75px 20px 20px 20px;
}
body .is-cms {
  max-width: 100% !important;
  padding: 60px 0 0 0 !important;
}
body .admin-giftbox-edit-form .giftbox-shipping {
  margin-bottom: 15px;
}
body .admin-giftbox-edit-form .checkbox-inline {
  font-size: 12px;
  text-align: right;
}
body content {
  min-height: calc(100vh - 415px);
}
body content .row {
  width: 100% !important;
}
@media only screen and (min-width: 710px) {
  body content {
    min-height: calc(100vh - 420px);
  }
}
@media only screen and (min-width: 1200px) {
  body content {
    min-height: calc(100vh - 467px);
  }
}
@media only screen and (min-width: 1720px) {
  body content {
    min-height: calc(100vh - 496px);
  }
}
#addons-table-panel {
  padding: 5px;
}
#addon-filter-form {
  padding-left: 20px;
  padding-top: 20px;
}
#addon-filter-form #filter-by-type {
  width: 180px;
}
#addon-filter-form label {
  margin-right: 7px;
}
.addon-image-column img {
  width: 100px !important;
  max-width: 100px;
}
#new-addon-container {
  text-align: right;
  padding-top: 20px;
  padding-right: 15px;
}
.modal {
  text-align: center;
}
#user_creates_sub_in_last_24_h_modal {
  z-index: 100 !important;
}
.modal-dialog_purchase-overflow {
  overflow: hidden !important;
}
@media screen and (min-width: 768px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  overflow-y: initial !important;
}
.save-modal-body {
  height: 350px;
  overflow-y: auto;
}
.addon-pull-button {
  margin-top: 25px;
  margin-left: -26px;
  width: 95px;
}
.addon-action-container i {
  cursor: pointer;
}
.delete-actions-container {
  text-align: center;
}
.addon-fetch-error {
  color: indianred;
  margin-top: 5px;
}
.globein-btn-thin {
  padding: 5px 20px;
  font-size: 1em;
  margin: 2px;
  margin-left: 0px;
  width: 100%;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff !important;
}
@media only screen and (max-width: 768px) {
  .globein-btn-thin {
    width: 70%;
    margin: 2px;
  }
}
.globein-btn-thin.btn-style-ghost-dark {
  border-width: 1px;
}
.globein-btn {
  padding: 15px 20px;
  font-size: 1.5em;
  margin: 40px;
  margin-left: 0px;
  width: 100%;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff !important;
}
@media only screen and (max-width: 768px) {
  .globein-btn {
    width: 70%;
    margin: 10px;
  }
}
.btn-style-solid {
  border: solid #317D81 2px;
  background-color: #317D81;
}
.btn-style-solid:hover {
  background-color: #ffffff;
  color: #317D81 !important;
}
.btn-style-solid-pink {
  border: solid #e75D6B 2px;
  background-color: #e75D6B;
}
.btn-style-solid-pink:hover {
  background-color: #ffffff;
  color: #e75D6B !important;
}
.btn-style-ghost {
  border: solid white 2px;
  background-color: transparent;
}
.btn-style-ghost:hover {
  background-color: #FC654C;
  color: white !important;
}
.btn-style-ghost-dark {
  border: solid #1d1d1d 2px;
  background-color: transparent;
  color: #1d1d1d !important;
}
.btn-style-ghost-dark:hover {
  background-color: #1d1d1d;
  color: white !important;
}
#overlay_shopify_iframe {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 9999;
  overflow: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}
#overlay_shopify_iframe iframe {
  width: 50%;
  height: 70%;
  overflow: scroll;
}
a.anchor {
  display: block;
  position: relative;
  top: -170px;
  visibility: hidden;
}
a.anchor.anchor_with_header {
  display: block;
  position: static;
  top: 0;
  height: 200px;
  margin-top: -200px;
  visibility: hidden;
  z-index: -1;
}
@media (max-width: 550px) {
  a.anchor.anchor_with_header {
    height: 240px;
    margin-top: -240px;
  }
}
@media (max-width: 400px) {
  a.anchor.anchor_with_header {
    height: 270px;
    margin-top: -270px;
  }
}
.async-hide {
  opacity: 0 !important;
}
html {
  overflow-x: hidden;
}
#addon-preview-images ul.flex-direction-nav li > a {
  height: 65px;
  width: 60px;
}
#addon-preview-images ul.flex-direction-nav li > a:before {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
#addon-preview-images ul.flex-direction-nav li.flex-nav-next > a:before {
  text-align: right;
}
.categories-menu > a {
  font-size: 12px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.edit-button-group.btn-group {
  float: right;
  margin-bottom: -30px;
  z-index: 599 !important;
}
.global-menu-sidebar-wrap {
  width: 200px;
  margin-right: 20px;
  margin-top: 20px;
  height: auto;
  background: #fff;
  padding-bottom: 20px;
}
.global-menu-sidebar-header {
  width: 100%;
  height: auto;
  text-align: left;
  color: black;
  font-size: 12px;
  padding-left: 25px;
}
.global-menu-sidebar-header-title {
  max-width: 133px;
  display: block;
  text-align: left;
}
.global-menu-sidebar-item {
  width: 100%;
  height: auto;
  text-align: left;
  padding: 0 0;
  margin-top: 10px;
  padding-left: 25px;
}
.global-menu-info-item-title,
.global-menu-sidebar-item-title {
  color: #000;
  margin: 0;
  font-family: Poppins-SemiBold !important;
  font-size: 14px;
  font-weight: 600 !important;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: right;
}
.global-menu-sidebar-item-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 10px;
}
.global-menu-sidebar-item-list-last {
  border-bottom: none;
}
.global-menu-sidebar-item-list-item {
  color: #000 !important;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  background-color: transparent !important;
  padding: 0 0 !important;
  margin: 0 !important;
}
.global-menu-sidebar-item-list-item.selected {
  font-weight: bold;
}
.global-menu-sidebar-item-list-item:last-child {
  margin-bottom: 0;
}
.global-menu-sidebar-item-list-item a {
  color: #000;
  text-decoration: none !important;
}
.global-menu-sidebar-item-list-item a:hover {
  text-decoration: underline !important;
}
.global-menu-sidebar-wrap-mobile {
  display: none !important;
  position: fixed;
  width: 100%;
  left: 0;
  top: 74px;
  height: auto;
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
  z-index: 4999;
}
.global-menu-sidebar-wrap-mobile.with_gift_message {
  top: 90px;
}
.global-menu-sidebar-wrap-mobile-header {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
  padding: 8px 0;
}
.global-menu-sidebar-wrap-mobile-header-title {
  color: #000;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.global-menu-sidebar-wrap-mobile-item-list {
  width: 100%;
  height: auto;
  text-align: center;
  display: none;
  border-top: 1px solid #dddddd;
}
.global-menu-sidebar-wrap-mobile-item-list.active {
  display: block;
}
.global-menu-sidebar-wrap-mobile-item:last-child {
  border-bottom: none;
}
.global-menu-sidebar-wrap-mobile-item {
  width: 100%;
  height: auto;
  text-align: center;
  border-bottom: 1px solid #dddddd;
  padding: 8px 0;
}
.global-menu-sidebar-wrap-mobile-item a {
  color: #000;
  text-decoration: none !important;
  display: block;
}
.global-menu-sidebar-wrap-mobile-item a:hover {
  color: #000;
  text-decoration: underline !important;
}
.global-menu-sidebar-wrap-mobile-header-title-icon {
  font-size: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .global-menu-sidebar-wrap-mobile-header-title-icon .global-menu-sidebar-wrap-mobile {
    display: none;
  }
  .global-menu-sidebar-wrap-mobile-header-title-icon .global-menu-sidebar-wrap {
    display: none;
  }
}
#global-menu-sidebar-wrap-main {
  text-align: left !important;
  padding: 20px;
}
b.global-menu-sidebar-item-title {
  border-bottom: 1px solid #979797;
  display: block;
  text-align: left;
  padding-bottom: 5px;
}
#global-menu-sidebar-wrap-main {
  margin-top: 0;
}
body.body_header_with_gift_message content {
  padding: 94px 20px 20px 20px;
}
.fb_iframe_widget span:first-child {
  margin-bottom: 4px;
}
.sidebar-item-list-item.highlighted-menu-item,
.global-menu-sidebar-item-list-item.highlighted-menu-item,
.global-menu-sidebar-item-list-item.highlighted-menu-item a {
  color: #e75D6B !important;
}
.new_header .cont .navigations>div .navigation a.nav-link {
  color: white;
  font-family: 'TT Commons', sans-serif;
  padding: 17px 39px !important;
  margin-right: 40px !important;
  text-align: center;
  letter-spacing: normal;
}
.new_header .cont .navigations>div .navigation a.nav-link:last-child {
  margin-right: 0 !important;
}
@media (max-width: 850px) {
  .new_header .cont .navigations>div .navigation a.nav-link {
    font-size: 18px !important;
  }
}
@media (max-width: 768px) {
  .new_header .cont .navigations>div .navigation a.nav-link {
    margin-right: 15px !important;
  }
}
@media (max-width: 514px) {
  .new_header {
    box-shadow: 0px 4px 25px rgba(0,0,0,0.08);
  }
}
@media screen and (max-width: 940px) and (min-width: 768px) {
  body .new_header .cont .logo img {
    height: 40px !important;
  }
}
.new_header .cont {
  max-width: 100% !important;
  width: 100%;
}
.new_header .center-block.cont.main-menu {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  body header.new_header .cont .logo {
    padding-top: 21px !important;
    padding-left: 0;
  }
  body header.new_header .cont .logo img {
    height: 30px !important;
  }
}
.new_header .pull-right .navigation a {
  width: 165.69px;
  height: 52px;
  background: #FF9994;
  font-size: 18px !important;
  border-radius: 100px !important;
  margin-right: 16px !important;
  margin-left: 16px !important;
  font-family: 'TT Commons', sans-serif !important;
}
.new_header .pull-right .navigation .link {
  font-size: 18px;
  color: #BABABA;
  font-family: 'TT Commons', sans-serif;
  background-color: transparent;
}
.new_header .cont .profile .profile-cont .nick img {
  border-radius: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .center-block.cont.main-menu {
    display: flex;
    justify-content: space-between;
  }
  .center-block.cont.main-menu .clearfix {
    display: none;
  }
}
@media (max-width: 768px) {
  body .new_header .cont .pull-right {
    display: none;
  }
}
body .new_header .cont .pull-right.navigations {
  display: flex !important;
  align-items: center;
}
body .new_header .cont .pull-right.navigations .navigation {
  vertical-align: middle;
}
@media (max-width: 686px) {
  body .new_header .cont .pull-right.navigations .navigation .subscription-btn {
    display: block;
    max-width: 165px;
    width: 100%;
    padding: 17px !important;
    margin-right: 0px !important;
    font-size: 12px !important;
    text-align: center !important;
    color: #A4A4A4 !important;
    background: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  body .new_header .cont .pull-right.navigations .navigation a.link {
    display: none;
  }
}
.new_header .cont .profile .profile-cont .fa-circle {
  top: 38%;
  left: 55%;
}
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-header,
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-item {
  font-family: 'TT Commons';
  font-size: 18px;
  color: #282828;
}
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-header .global-menu-sidebar-item-list-item,
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-item .global-menu-sidebar-item-list-item {
  font-family: 'TT Commons';
  color: #282828;
}
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-header .global-menu-sidebar-item-list-item a,
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-item .global-menu-sidebar-item-list-item a {
  color: #282828;
}
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-header .global-menu-sidebar-item-title,
.new_header .cont .profile .menu-dropdown .global-menu-sidebar-wrap .global-menu-sidebar-item .global-menu-sidebar-item-title {
  color: #282828;
}
@media (max-width: 1299px) {
  body header.new_header .pull-left.logo div {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  body header.new_header .pull-left.logo div {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  body header.new_header .cont .mobile-menu {
    display: table-cell !important;
    float: none !important;
    padding: 26px 15px 0 17px;
    position: relative;
    width: 93px;
  }
  body header.new_header .cont {
    padding: 0 !important;
    display: table;
    height: 100%;
    margin: 0;
    width: 100%;
  }
  body header.new_header .cont .mobile-menu a {
    display: block;
    width: 28px;
    height: 24px;
    margin-top: 2px;
    background: url(/images/checkout/gamburger-icon-mobile.svg) no-repeat;
  }
  body header.new_header .cont .mobile-menu #mobile-main-menu-btn {
    width: 36px !important;
  }
  body header.new_header .cont.categories-menu {
    display: none;
  }
  body header.new_header .cont .logo {
    display: table-cell;
    padding-top: 10px;
    float: none !important;
    vertical-align: middle;
    text-align: center;
  }
  body header.new_header .cont .logo > div {
    display: inline-block;
  }
  body header.new_header .cont .navigations {
    display: none !important;
  }
  body header.new_header .navigations .navigation .nav-link {
    font-size: 18px !important;
  }
}
.sub-choose-mobile-container {
  width: 100%;
  height: auto;
  margin-bottom: 35px;
}
.sub-choose-mobile-container.open .sub-choose-mobile-cont-header .scmch-top .scmch-top-right .scmch-top-right-img {
  transform: rotate(180deg);
}
.sub-choose-mobile-container.open .sub-choose-mobile-cont-header .scmch-bottom {
  border-radius: 0;
}
.sub-choose-mobile-container.open .sub-choose-mobile-cont-body {
  display: flex;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header {
  width: 100%;
  height: auto;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-top {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 4px 4px 0px 0px;
  display: flex;
  justify-content: flex-start;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-top .scmch-top-left {
  width: 75%;
  height: auto;
  border-right: 1px dashed #D2D2D2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-top .scmch-top-left .scmch-title {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #282828;
  display: block;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-top .scmch-top-left .scmch-value {
  font-family: 'TT Commons';
  color: #282828;
  font-size: 14px;
  display: block;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-top .scmch-top-right {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-bottom {
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0px 0px 4px 4px;
  position: relative;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-bottom.most-popular {
  background: #FFC1C1;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-bottom.most-popular .scmch-bottom-text .scmch-bottom-val {
  color: #fff;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-bottom .scmch-bottom-text {
  font-family: 'TT Commons', sans-serif;
  font-size: 14px;
  color: #432E37;
  display: flex;
  align-items: center;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-bottom .scmch-bottom-text .scmch-bottom-val {
  font-family: 'TT Commons', sans-serif;
  font-size: 36px;
  color: #FF9994;
  margin: 0 6px;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-header .scmch-bottom .scmch-bottom-most-popular-text {
  position: absolute;
  right: 0;
  top: 0;
  text-transform: uppercase;
  color: #fff;
  margin: 10px;
  font-family: 'TT Commons';
  font-size: 10px;
  letter-spacing: 0.03em;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body {
  width: 100%;
  height: 95px;
  background: #fff;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  display: none;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body.most-popular {
  background: #FFC1C1;
  position: relative;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body.most-popular .scmc-body-left .scmc-body-left-title {
  color: #fff;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body.most-popular .scmc-body-left .scmc-body-left-value .scmc-body-left-val {
  color: #fff;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body.most-popular .scmc-body-right .scmc-body-right-content .scmc-body-right-content-circle-wrap {
  background: #F2BABA;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body.most-popular .scmc-body-right .scmc-body-right-content .scmc-body-right-content-circle-wrap .scmc-body-right-content-circle-wrap {
  background: #FF9994;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .sub-choose-mobile-cont-body-most-popular-text {
  position: absolute;
  right: 0;
  top: 0;
  text-transform: uppercase;
  color: #fff;
  margin: 10px;
  font-family: 'TT Commons';
  font-size: 10px;
  letter-spacing: 0.03em;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-left {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-left .scmc-body-left-title {
  font-family: 'TT Commons', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #282828;
  display: block;
  line-height: 1;
  text-transform: capitalize;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-left .scmc-body-left-value {
  font-family: 'TT Commons', sans-serif;
  font-size: 11px;
  color: #432E37;
  display: flex;
  align-items: center;
  line-height: 1;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-left .scmc-body-left-value .scmc-body-left-val {
  font-family: 'TT Commons', sans-serif;
  font-size: 28px;
  color: #FF9994;
  margin: 0 6px;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-right {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-right .scmc-body-right-content {
  display: flex;
  align-items: center;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-right .scmc-body-right-content .scmc-body-right-content-text {
  font-family: 'TT Commons';
  font-size: 12px;
  color: #282828;
  line-height: 1;
  margin-right: 15px;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-right .scmc-body-right-content .scmc-body-right-content-circle-wrap {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EEF4F2;
  margin-right: 15px;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-right .scmc-body-right-content .scmc-body-right-content-circle-wrap.active .scmc-body-right-content-circle-wrap {
  display: block;
}
.sub-choose-mobile-container .sub-choose-mobile-cont-body .scmc-body-right .scmc-body-right-content .scmc-body-right-content-circle-wrap .scmc-body-right-content-circle-wrap {
  width: 16px;
  height: 16px;
  background: #FF9994;
  margin: 0;
  display: none;
}
#subscription-page .row .input-container input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}
#subscription-page .row .input-container input:focus {
  outline: none !important;
}
body .hide_header {
  padding-top: 0 !important;
}
.modal-authorization.new-password .security-wrap {
  margin: 0 auto 25px;
  max-width: 380px;
  opacity: 1 !important;
}
.modal-authorization.new-password .security-wrap .line .progress-line {
  height: 3px;
  -webkit-tap-highlight-color: transparent;
  transition: all, .25s;
}
.modal-authorization.new-password .errors-wrap {
  margin: 0 auto;
  max-width: 380px;
}
.simplified-header {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simplified-header .simplified-header-logo {
  display: block;
  width: 84px;
  height: auto;
}
