/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.content_form_open_reach {
    margin-bottom: 40px;
    margin-top: 40px;
}
.item_step {
    display: none;
}
.item_step.active {
    display: block;
}

.item_step_inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.item_step input {
    /*height: 30px;
    border: 2px solid #000;
    border-radius: 5px;*/
    box-sizing: border-box;
    border-style: solid;
    border-width: var(--form_border_width-top) var(--form_border_width-right) var(--form_border_width-bottom) var(--form_border_width-left);
    border-color: var(--form_border_color);
    border-radius: var(--form_border_radius);
    background-color: var(--form_bg_color);
    font-size: var(--form_text_size);
    color: var(--form_text_color);
    height: 46px;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.item_step input, .item_step select {
    max-width: 100%;
}

.item_step select {
    height: 46px;
    -webkit-appearance: none;
      -moz-appearance: none;
      background: transparent;
      background-image: url("../img/arrow-drop-down.svg");
      background-repeat: no-repeat;
      background-position-x: 100%;
      background-position-y: center;
      padding-right: 24px;
      padding-left: 15px;
}

.item_step select:active {
   background-image: url("../img/arrow-drop-up.svg"); 
}

.item_step input:focus {
    border-color: var(--form_focus_border_color);
}
.item_step input.error {
    border-color: #f2545b;
    border-style: solid;
}
.error_input {
    color: #f2545b;
    font-size: 14px;
    font-weight: 400;
    margin-top: 2px;
    padding-left: 5px;
}

.item_step_title {
    text-align: center;
    font-size: 32px;
    line-height: 1.25;
    font-family: "GT-Walsheim-Bold";
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

.item_step_input_wrap {
    width: 320px;
    max-width: 100%;
    flex-grow: 0;
}

.item_step_inner .next_step_btn {
    border-radius: 2px;
    min-height: 46px;
    background-color: #d111c9;
    color: #fff;
    padding: 8px 24px!important;
    margin-left: 24px;
    flex-grow: 0;
    flex-shrink: 0;
    box-shadow: 0px 10px 33px -10px rgba(209, 17, 201, 0.6);
    display: flex;
    align-items: center;
}

.item_step_inner .next_step_btn:hover {
    background: #323435;
    box-shadow: 0px 20px 27px rgba(0, 0, 0, 0.15);
}

.item_step_inner .next_step_btn:active {
    background: #323435;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.15);
}

.item_step .next_step_btn span {
    font-weight: normal;
    font-family: GT-Walsheim-Medium;
    /*font-family: gt-walsheim-medium!important;*/
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}



.item_step_btn_wrap {
    text-align: center;
    margin-top: 25px;
}

.item_step .block {
    max-width: 320px;
    background: #fff9e5;
    border-radius: 4px;
    padding: 8px 16px 8px 48px;
    position: relative;
    margin-top: 10px;
}

.item_step .block:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("../img/warning-icon.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 8px;
    left: 16px;
}

.item_step .block_title {
    font-weight: normal;
    font-family: GT-Walsheim-Medium;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.15px;
}

.item_step .block_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

.item_step .block_text a {
    color: #d111c9;
}

.floating_label_wrap {
    position: relative;
}

.floating_label_input ~ .floating_label,
.floating_label_select ~ .floating_label {
    position: absolute;
    transition: all 0.3s ease-out;
    color: rgba(50, 52, 53, 0.38);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    left: 7px;
    top: 0;
    padding: 0 8px;
    transform-origin: left center;
    transform: translateY(14px) scale(1);
}

.floating_label_select ~ .floating_label {
    z-index: -1;
}

.floating_label_input:focus ~ .floating_label,
.floating_label_select:focus ~ .floating_label,
.floating_label.floating {
    transform: translateY(-50%) scale(0.8);
    background: #fff;
    z-index: 2;
}

.floating_label_input:focus ~ .floating_label,
.floating_label_select:focus ~ .floating_label {
    color: #d111c9;
}

.item_step_inner .next_step_btn.load{
    background: #969696;
    box-shadow: 0px 10px 33px -10px #969696;
    cursor: default;
}
.item_step_inner .next_step_btn .spinner {
    margin-right: 5px;
}
img.ga_link_hidden{
    display:none;
}