.section-callback .form-sidebar-wrap {
    max-width: 250px;
}

.section-callback .form-sidebar .form-layout {
    overflow: hidden;
}

.section-callback .form-sidebar {
    padding: 16px 8px;
    text-align: center;
    background-color: #ECA60F;
    border-radius: 0;
}

.section-callback .form-sidebar input {
    box-sizing: border-box;
    font-size: 14px;
    padding: 8px;
    color: #000;
    background-color: #fff;
    border: none;
}

.section-callback .form-sidebar input::placeholder {
    color: #444444; 
} 

.section-callback .form-sidebar input:-ms-input-placeholder {
    color: #444444; 
} 

.section-callback .form-sidebar input:focus {
    outline: 2px solid #48A7B2;
}

.section-callback .form-layout .layout-item {
    margin-bottom: 20px;
}

.section-callback .form-layout .item-info {
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 16px;
    text-align: center;
    color: #FFFFFF;
}

.section-callback .form-layout .item-info p {
    padding: 0;
}

.section-callback .layout-item .message-error {
    font-size: 12px;
    color: red;
}

.section-callback .form-layout .item-captcha {
    margin-bottom: 8px;
}

.section-callback .form-layout .item-captcha .g-recaptcha {
    transform-origin: left top;
  -webkit-transform-origin: left top;
}

.section-callback .form-layout .item-acceptance {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 16px;
}

.section-callback .form-layout .item-acceptance p {
    font-family: Roboto Condensed;
    margin: 0 0 0 8px;
    padding: 0;
    font-size: 11px;
    text-align: left;
    line-height: 14px;
}

.section-callback .form-sidebar input:not([type=checkbox]) {
    width: 100%;
}

.section-callback .form-sidebar input[type="checkbox"] {
    border: 1px solid #fff;
    display: inline-block;
    height: 6px;
    width: 6px;
    overflow: hidden;
    margin-top: 0px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 50% 50%;
    cursor: pointer;
    padding: 6px;
    margin: 0;
}

.section-callback .form-sidebar input[type="checkbox"]:focus {
    outline: none;
}

.section-callback .form-sidebar input[type="checkbox"]:checked,
.section-callback .form-sidebar input[type="checkbox"]:indeterminate {
  background-color: #48A7B2;
  border-color: #48A7B2;
}

.section-callback .form-layout .item-submit {
    margin: 0;
}

.section-callback .item-submit input.disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.section-callback .form-sidebar input[type=submit] {
    font-family: Roboto Condensed;
    width: auto;
    cursor: pointer;
    color: #fff;
    background-color: #48A7B2;
    padding: 8px 14px;
    font-size: 16px;
    border: none;
    width: 100%;
    font-style: normal;
    font-weight: bold;
}

.section-callback .form-sidebar-success {
    display: none;
    position: fixed;
    min-width: 300px;
    max-width: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;

    padding: 2rem 1rem;
    text-align: center;

    background-color: #fff;
    border-radius: 4px;
}

.section-callback .form-sidebar-success p {
    padding: 0;
}

.section-callback .btn-form-sidebar-close {
    position: absolute;
    right: 8px;
    top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.section-callback .btn-form-sidebar-close:before,
.section-callback .btn-form-sidebar-close:after {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #000;
}

.section-callback .btn-form-sidebar-close:before {
    transform:rotate(45deg);
}

.section-callback .btn-form-sidebar-close:after {
    transform:rotate(-45deg);
}

.section-callback .form-sidebar-overlay {
    background-color: rgba(0,0,0,0.5);
}

.section-callback .form-sidebar-overlay.overlay-show {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.section-callback .form-sidebar-text {
    margin-top: 30px;
}

.section-callback .form-sidebar-text .layout-item {
    margin-bottom: 20px;
}

.section-callback .form-sidebar-text .item-title {
    font-family: Tinos;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #34737B;
}

.section-callback .form-sidebar-text li {
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #444444;
    background: none;
    position: relative;
    padding: 0 0 0 8px;
    margin-bottom: 5px;
}

.section-callback .form-sidebar-text li:before {
    content: "";
    display: inline-block;
    height: 4px;
    width: 4px;
    background-color: #ECA60F;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 6px;
}

@media screen and (max-width: 1000px) {
    .section-callback .form-sidebar-wrap {
        display: flex;
        flex-direction: column;
    }

    .section-callback .form-sidebar {
        order: 1;
        margin-top: 20px;
    }

    .section-callback .form-sidebar-text {
        order: 0;
        margin-top: 0;
    }

}