/*.aui body #bottero .form_section {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    visibility: hidden;
    overflow: auto;
    width: 50%;
    height: 100vh;
    max-width: 600px;
    min-width: 400px;
    padding: 15px;
    background-color: #e6e6e6;
    opacity: 0;
    transition: opacity 200ms ease 0s;
}
.aui body #bottero .form_section.open_form{
    visibility: visible;
    transition: opacity 200ms ease 0s;
    opacity: 1;
}
@media (max-width: 479px){
    .aui body #bottero .form_section {
        width: 100%;
        min-width: 100%;
    }
}
.aui body #bottero .close_form {
    text-align:right;
    color: #383838;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    line-height: 24px;
    cursor:pointer;
    float:right;
}
.aui body #bottero .close_form span{
    font-size: 18px;
    padding-left: 5px;
    line-height: 24px;
}
.aui body #bottero .form-box{
    margin: 30px 0 15px;
}*/