

/* Start:/local/components/emi/reference-new/templates/.default/style.css?17706398908928*/

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
} 
ul {
    list-style-type: none;
}
a {
    color: #737373;
}
.alert {
    position: relative;
    padding: 2rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.alert-info {
    color: #ffffff;
    background-color: #E58A9A;
}
.btn-dark{
    color: #fff;
    background-color: #000000;
    border-radius: 50px;
    border-color: #1d2124;
}
.btn-dark:hover {
    color: #fff;
    background-color: #E58A9A;
    border-radius: 50px;
    border-color: #E58A9A;
}

.header {
  padding: 12px 0;
  background: #181616;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .header {
    padding: 16px 0;
  }
}



.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
}

.header__logo img {
  width: 88px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .header__logo img {
    width: 144px;
    height: 39px;
  }
}

@media only screen and (min-width: 1920px) {
  .header__logo img {
    width: 175px;
    height: 48px;
  }
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 20px;
}

.header__btn svg path {
  transition: all 0.5s ease;
}

.header__btn.is-active svg path {
  stroke: #E58A9A;
}

@media only screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}

.header__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.header__call svg {
  width: 24px;
  height: 24px;
}


.header__contacts {
  display: none;
}

@media only screen and (min-width: 768px) {
  .header__contacts {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
  }

  .header__contacts a {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: color 0.5s ease;
  }

  .header__contacts a svg {
    width: 16px;
    height: 17px;
    margin-right: 5px;
  }

  .header__contacts a svg path {
    transition: stroke 0.5s ease;
  }

  .header__contacts a:nth-child(1) {
    font-weight: bold;
  }

  .header__contacts a:nth-child(2) {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 1366px) {
  .header__contacts {
    margin-left: 24px;
  }

  .header__contacts a:hover {
    color: #EE9EAD;
  }

  .header__contacts a:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__contacts {
    margin-left: 40px;
  }
}

.header__catalog {
  display: none;
}

@media only screen and (min-width: 768px) {
  .header__catalog {
    display: flex;
    flex-grow: 1;
    margin: 0 20px;
  }

  .header__catalog>button {
    display: none;
  }

  .header__catalog form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 200px;
    padding: 5px 12px;
    width: 100%;
  }

  .header__catalog form button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__catalog form button svg {
    width: 24px;
    height: 24px;
  }

  .header__catalog fieldset {
    display: flex;
    width: 100%;
  }

  .header__catalog label {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .header__catalog input {
    display: flex;
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    font-weight: 500;
    color: #ffffff;
  }

  .header__catalog input::-moz-placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
  }

  .header__catalog input::placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (min-width: 1366px) {
  .header__catalog {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 200px;
    padding: 5px 12px 5px 5px;
    align-items: center;
    margin: 0 32px;
  }

  .header__catalog>button {
    display: flex;
    width: 40px;
    height: 40px;
    background: #E58A9A;
    border-radius: 50%;
    position: relative;
    transition: background 0.5s ease;
    margin-right: 16px;
  }

  .header__catalog>button span {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    height: 2px;
    border-radius: 50%;
    transition: all 0.5s ease;
  }

  .header__catalog>button span:nth-child(1) {
    width: 10px;
    transform: translate(-50%, calc(-50% - 6px));
  }

  .header__catalog>button span:nth-child(2) {
    width: 16px;
    transform: translate(-50%, -50%);
  }

  .header__catalog>button span:nth-child(3) {
    width: 10px;
    transform: translate(-50%, calc(-50% + 6px));
  }

  .header__catalog>button.is-active {
    background: #C5C4C4;
  }

  .header__catalog>button.is-active span:nth-child(1) {
    width: 16px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .header__catalog>button.is-active span:nth-child(2) {
    width: 0;
  }

  .header__catalog>button.is-active span:nth-child(3) {
    width: 16px;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header__catalog>button:hover {
    background: #C5C4C4;
  }

  .header__catalog form {
    border: none;
    border-radius: 0;
    padding: 0;
    width: calc(100% - 40px - 16px);
  }

  .header__catalog form button svg path {
    transition: stroke 0.5s ease;
  }

  .header__catalog form button:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__catalog {
    margin-left: 110px;
    margin-right: 40px;
  }
}

.header__navigation {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .header__navigation {
    display: flex;
    max-width: 442px;
    margin-right: 32px;
  }

  .header__navigation ul {
    display: flex;
    flex-wrap: wrap;
  }

  .header__navigation li {
    margin-right: 20px;
  }

  .header__navigation li:last-child {
    margin-right: 0;
  }

  .header__navigation a {
    font-weight: 500;
    color: #ffffff;
    transition: color 0.5s ease;
  }

  .header__navigation a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__navigation {
    margin-right: 40px;
  }

  .header__navigation li {
    margin-right: 24px;
  }
}

.header__links {
  margin-left: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}


.header__links .header__lc a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__links .header__lc svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 1366px) {
  .header__links {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .header__links li:not(.header__lc) {
    display: flex;
  }

  .header__links li {
    margin-right: 20px;
  }

  .header__links li:last-child {
    margin-right: 0;
  }

  .header__links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .header__links a svg {
    width: 24px;
    height: 24px;
  }

  .header__links a svg path {
    transition: stroke 0.5s ease;
  }

  .header__links a span {
    position: absolute;
    width: 18px;
    height: 18px;
    bottom: -7px;
    right: -10px;
    background: #E58A9A;
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__links a:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__links a {
    width: 32px;
    height: 32px;
  }

  .header__links a svg {
    width: 32px;
    height: 32px;
  }

  .header__links a span {
    bottom: -3px;
    right: -5px;
  }

  .header__links li {
    margin-right: 24px;
  }

  .header__links .header__lc svg {
    width: 32px;
    height: 32px;
  }
}

footer {
    position: fixed;
    margin-bottom: auto !important;
    bottom: 0;
    width: 100%;
}

.hide {
    display: none;
}
.alert {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.emi-confirm-window{
  display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 720px) {
  .emi-confirm-window .tingle-modal-box{
    width:95%;
    padding: 20px;
  }
  
}
.modal-actions{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

/* End */


/* Start:/local/components/emi/reference-main-new/templates/.default/style.css?17707068844383*/
@font-face {
  font-family: "Futura Futuris C";
  src: url(/local/components/emi/reference-main-new/templates/.default/./fonts/FuturaFuturisC_0.otf);
  font-weight: 400;
}

@font-face {
  font-family: "Futura Futuris C";
  src: url(/local/components/emi/reference-main-new/templates/.default/./fonts/FuturaFuturisLightC_0.otf);
  font-weight: 100;
}

@font-face {
  font-family: "Gotham Pro";
  src: url(/local/components/emi/reference-main-new/templates/.default/./fonts/GothamLight.ttf);
  font-weight: 300;
}

@font-face {
  font-family: "Gotham Pro";
  src: url(/local/components/emi/reference-main-new/templates/.default/./fonts/GothamBold.ttf);
  font-weight: 600;
}

ul {
  list-style-type: none;
}

.main-info {

  min-height: 800px;
}

.masthead {
  min-height: 100px;
  max-height: 100px;
}

.deposit__info {
  background: #1d1d1b;
  width: 100%;
  height: auto;
  padding: 10px 20px;
  border-radius: 10px;
}

.deposit__info>span {
  color: #ffffff50;
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Futura Futuris C";
}

.deposit__info .deposit__cash {
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 27px;
  text-align: center;
  color: #fff;
}

.blogger__promo {
  color: #1d1d1b;
  padding: 12px 0px;
  display: flex;
  flex-direction: column;
}

.blogger__promo>span {
  font-size: .95rem;
  font-weight: 400;
  font-family: "Futura Futuris C";
}

.blogger__promo>p {
  font-size: 1.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0;
}

.blogger__statistic-card {
  background: #fad1ce;
  box-shadow: 0px 0px 20px rgba(115, 115, 115, 0.25);
  border-radius: 10px;
  padding: 14px 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 31%;
}

.blogger__statistic-card>span {
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 14px;
  margin-bottom: 0.875rem;
}

.blogger__statistic-card>p {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 32px;
  margin: 0;
}

.blogger__info {
  text-align: left;
  flex-direction: column;
  margin-bottom: 110px;
  margin-bottom: 2.2em;
}

.blogger__info>p {
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 27px;
  margin-bottom: 0.625rem;
}

.blogger__info>span {
  font-size: 1.125rem;
  line-height: normal;
  color: #1d1d1b;
  white-space: pre-wrap;
  margin-top: .5em;
  word-break: break-word;
}

.blogger__purchase-history {
  max-height: 25vh;
  overflow-y: scroll;
}

/* HISTORY */

.day-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.main-title {
  flex-grow: 1;
  font-family: "Futura Futuris C";
}

.payment {
  color: #1d1d1b;
  font-size: initial;
  font-family: "Gotham Pro";
  font-weight: 400;
}

.day-section .main-title {
  font-size: 0.875rem;
}

.payment .payment-info {
  display: flex;
  height: 70px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #00000020;
  padding: 12px;
}

.payment .payment-operations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.payment .payment-operations .operation-image {
  width: 30px;
}

.payment .price-end--green {
  font-weight: 600;
  color: #94c394;
}

.payment .price-end--red {
  font-weight: 600;
  color: #ff8989;
}

.payment-info-left {
  display: flex;
  align-items: center;
}

.payment .time-block {
  font-size: 0.75rem;
  opacity: 0.5;
  font-weight: 600;
}

.payment .type-block {
  opacity: 0.5;
  padding-left: 2em;
  font-size: 0.875rem;
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  border-radius: 8px
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #999;
  border: 2px solid #fff
}

#menu::-webkit-scrollbar-thumb:window-inactive {
  background: #999;
  border: 2px solid #fff
}

#payment-amount {
  width: 100%;
}

.masthead {
  margin-top: 2.5rem;
}

.btn-filter {
  font-size: 14px;
}

@media (max-width: 768px) {
  .blogger__info {
    margin-bottom: 40px;
  }

  .masthead {
    margin-top: 5rem;
  }

  .main-head h1 {
    font-size: 2.2rem;
  }

  main {
    margin-top: 80px;
  }

}

@media (max-width: 416px) {
  .blogger__info {
    margin-bottom: 24px;
  }

  .blogger__purchase-history {
    max-height: 30vh;
  }
}

@media (max-width: 330px) {
  .payment .type-block {
    font-size: 12px;
  }

  .payment .price-end--green,
  .payment .price-end--red {
    font-size: 12px;
  }

  .blogger__purchase-history {
    max-height: 40vh;
  }
}
/* End */


/* Start:/local/components/emi/reference.registration-blogger/templates/.default/style.css?177063989411590*/
/* body {
    margin-top: 20px;
    background: #eee;
    height: unset !important;
} */

/* Chrome, Safari, Edge, Opera */
a:hover,
a:focus,
a:active {
    border: none;
    outline: none;
}
.header {
  padding: 12px 0;
  background: #181616;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .header {
    padding: 16px 0;
  }
}



.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
}

.header__logo img {
  width: 88px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .header__logo img {
    width: 144px;
    height: 39px;
  }
}

@media only screen and (min-width: 1920px) {
  .header__logo img {
    width: 175px;
    height: 48px;
  }
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 20px;
}

.header__btn svg path {
  transition: all 0.5s ease;
}

.header__btn.is-active svg path {
  stroke: #E58A9A;
}

@media only screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}

.header__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.header__call svg {
  width: 24px;
  height: 24px;
}


.header__contacts {
  display: none;
}

@media only screen and (min-width: 768px) {
  .header__contacts {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
  }

  .header__contacts a {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: color 0.5s ease;
  }

  .header__contacts a svg {
    width: 16px;
    height: 17px;
    margin-right: 5px;
  }

  .header__contacts a svg path {
    transition: stroke 0.5s ease;
  }

  .header__contacts a:nth-child(1) {
    font-weight: bold;
  }

  .header__contacts a:nth-child(2) {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 1366px) {
  .header__contacts {
    margin-left: 24px;
  }

  .header__contacts a:hover {
    color: #EE9EAD;
  }

  .header__contacts a:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__contacts {
    margin-left: 40px;
  }
}

.header__catalog {
  display: none;
}

@media only screen and (min-width: 768px) {
  .header__catalog {
    display: flex;
    flex-grow: 1;
    margin: 0 20px;
  }

  .header__catalog>button {
    display: none;
  }

  .header__catalog form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 200px;
    padding: 5px 12px;
    width: 100%;
  }

  .header__catalog form button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__catalog form button svg {
    width: 24px;
    height: 24px;
  }

  .header__catalog fieldset {
    display: flex;
    width: 100%;
  }

  .header__catalog label {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .header__catalog input {
    display: flex;
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    font-weight: 500;
    color: #ffffff;
  }

  .header__catalog input::-moz-placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
  }

  .header__catalog input::placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (min-width: 1366px) {
  .header__catalog {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 200px;
    padding: 5px 12px 5px 5px;
    align-items: center;
    margin: 0 32px;
  }

  .header__catalog>button {
    display: flex;
    width: 40px;
    height: 40px;
    background: #E58A9A;
    border-radius: 50%;
    position: relative;
    transition: background 0.5s ease;
    margin-right: 16px;
  }

  .header__catalog>button span {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    height: 2px;
    border-radius: 50%;
    transition: all 0.5s ease;
  }

  .header__catalog>button span:nth-child(1) {
    width: 10px;
    transform: translate(-50%, calc(-50% - 6px));
  }

  .header__catalog>button span:nth-child(2) {
    width: 16px;
    transform: translate(-50%, -50%);
  }

  .header__catalog>button span:nth-child(3) {
    width: 10px;
    transform: translate(-50%, calc(-50% + 6px));
  }

  .header__catalog>button.is-active {
    background: #C5C4C4;
  }

  .header__catalog>button.is-active span:nth-child(1) {
    width: 16px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .header__catalog>button.is-active span:nth-child(2) {
    width: 0;
  }

  .header__catalog>button.is-active span:nth-child(3) {
    width: 16px;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header__catalog>button:hover {
    background: #C5C4C4;
  }

  .header__catalog form {
    border: none;
    border-radius: 0;
    padding: 0;
    width: calc(100% - 40px - 16px);
  }

  .header__catalog form button svg path {
    transition: stroke 0.5s ease;
  }

  .header__catalog form button:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__catalog {
    margin-left: 110px;
    margin-right: 40px;
  }
}

.header__navigation {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .header__navigation {
    display: flex;
    max-width: 442px;
    margin-right: 32px;
  }

  .header__navigation ul {
    display: flex;
    flex-wrap: wrap;
  }

  .header__navigation li {
    margin-right: 20px;
  }

  .header__navigation li:last-child {
    margin-right: 0;
  }

  .header__navigation a {
    font-weight: 500;
    color: #ffffff;
    transition: color 0.5s ease;
  }

  .header__navigation a:hover {
    color: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__navigation {
    margin-right: 40px;
  }

  .header__navigation li {
    margin-right: 24px;
  }
}

.header__links {
  margin-left: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}


.header__links .header__lc a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__links .header__lc svg {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 1366px) {
  .header__links {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .header__links li:not(.header__lc) {
    display: flex;
  }

  .header__links li {
    margin-right: 20px;
  }

  .header__links li:last-child {
    margin-right: 0;
  }

  .header__links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .header__links a svg {
    width: 24px;
    height: 24px;
  }

  .header__links a svg path {
    transition: stroke 0.5s ease;
  }

  .header__links a span {
    position: absolute;
    width: 18px;
    height: 18px;
    bottom: -7px;
    right: -10px;
    background: #E58A9A;
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__links a:hover svg path {
    stroke: #EE9EAD;
  }
}

@media only screen and (min-width: 1920px) {
  .header__links a {
    width: 32px;
    height: 32px;
  }

  .header__links a svg {
    width: 32px;
    height: 32px;
  }

  .header__links a span {
    bottom: -3px;
    right: -5px;
  }

  .header__links li {
    margin-right: 24px;
  }

  .header__links .header__lc svg {
    width: 32px;
    height: 32px;
  }
}
.main-info{
font-family: "TildaSans", "Arial", sans-serif;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.email-info{
    font-size: 14px;
}
/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

input[name="agreement-check"] {
    margin-right: 0.3em;
}

input[name="agreement-check"]~.main-user-consent-request-announce {
    font-size: 16px;
}

#user-consent {
    position: absolute;
    z-index: 1200;
    margin: 0;
    height: 70%;
    width: 70%;
}

#popup-window-content-user-consent {
    overflow: auto;
}

input[type="text"].code-valid {
    background-color: rgb(27 185 76 / 20%);

}

div input[type="text"].code-invalid {
    background-color: rgb(253 84 84 / 20%);
}

div input[type="text"].code-invalid:-internal-autofill-selected {
    background-color: rgb(253 84 84 / 20%);
}

@media only screen and (max-width: 768px) {
    #user-consent {
        width: 100%;
    }
}

div .dropdown-block {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control{
    display: flex;
    width: 100%;
    padding: 12px 16px;
    padding-right: 50px;
    border: 1px solid rgba(24, 22, 22, 0.4);
    font-size: 18px;
    line-height: 140%;
    color: #181616;
    border-radius: 40px;
    height: calc(1.5em + .8rem + 7px);
}

.btn-dark{
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: -moz-max-content;
    max-width: max-content;
    min-height: 36px;
}

h5{
    margin-bottom: 0px;
}

label{
    font-weight: 700;
}

.step-num{
    font-size: 20px;
    color:#ced4da;
}
.email-info{
    font-weight: 300;
}

.emi-step-body {
    display: none;
    margin-top: 1em;
}

.emi-step.active .emi-step-body {
    display: block;
}

.emi-step-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #D9D9D9;
    gap:5px;
    margin: 20px 0px;
}

.emi-step-toggle {
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    margin-left: auto;
}

.next-step {
    margin-top: 20px;
}
.emi-step-toggle{
    width: 32px;
    height: 32px;
    background: white;
    border: none;
}
.emi-step-toggle {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}

/* Стрелка */
.emi-step-toggle::after {
    content: "";
    position: absolute;
    /*top: 50%;
    right: 5px;*/
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .3s ease;
}

/* Когда открыто — поворачиваем */
.emi-step.active .emi-step-toggle::after {
    transform: translateY(-50%) rotate(-135deg);
}
.emi-step-toggle:hover,
.emi-step-toggle:focus,
.emi-step-toggle:active {
    border: none;
    outline: none;
}
/* End */
/* /local/components/emi/reference-new/templates/.default/style.css?17706398908928 */
/* /local/components/emi/reference-main-new/templates/.default/style.css?17707068844383 */
/* /local/components/emi/reference.registration-blogger/templates/.default/style.css?177063989411590 */
