    /*--- custom ---*/
    .rl_form_container *{
        margin: 0;
    }

    .rl_form_container {
        position: relative;
        background: #FFF;
        padding: calc(0.625vw + 18px); /*30-20*/
        width: auto;
        max-width: 1100px;
        margin: 20px auto;
    }

    .rl_form_container ._validator {
        display: none;
    }
    .rl_form_container .errorMessage {
        color: #e74c3c;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 300;
        margin-top: 5px;
    }
    .rl_form_container ._validator.rl-show {
        display: block;
    }

    /*--- form ---*/
    .rl_form_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        font-family: 'Roboto', sans-serif;
        min-height: 200px;
    }
    .rl_form_container .required-mark {
        color: red;
    }
    .rl_form_container .form-description {
        color: #666;
        margin-bottom: 20px;
        width: 100%;
    }
    .rl_form_container .form-description .form-title {
        font-size: calc( 26.4px + 0.5vw); /*36-*/
        font-weight: 500;
        text-transform: uppercase;
    }

    .rl_form_container .rl_form input,
    .rl_form_container .rl_form textarea {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        font-family: 'Roboto', sans-serif;
    }

    .rl_form_container .rl_form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
    }
    .rl_form_container .rl_form .form-wrapper {
        width: calc(50% - 15px);
    }

    .rl_form_container .rl_form ._formfield {
        margin-bottom: 15px;
    }
    .rl_form_container .rl_form .form-input-title {
        color: #333;
        font-size: calc(13.6px + 0.125vw); /*16-*/
        line-height: 1.5;
    }
    .rl_form_container .rl_form .form-input-checkbox {
        color: #666;
        display: inline-block;
        line-height: 30px;
        margin-right: 40px;
    }

    .rl_form_container .rl_form .form-input {
        color: #6d6d6d;
        font-size: calc(13.6px + 0.125vw); /*16-*/
        font-weight: 300;
        line-height: 1.5;
        outline: none;
        padding: 0 10px 0 10px;
        height: 30px;

        border: 1px solid #ccc;
        background-color: #f9f9f9;
        border-radius: 0px;
        -webkit-appearance: none;
    }

    .rl_form_container .rl_form .form-input:disabled {
        border: none;
        background-color: gray;
    }
    .rl_form_container .rl_form .form-input.invalid {
        border: 2px solid #e74c3c;
    }

    .rl_form_container .rl_form .form-input.wide {
        width: 100%;
    }

    .rl_form_container .rl_form .form-textarea {
        min-height: 170px;
        padding: 10px 10px;
        width: 100% !important;
        max-width: 100%;
    }

    .rl_form_container .subscribe {
        color: #666;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .rl_form_container input[name="submit"] {
        background-color: #0c999b;
        border: 2px solid #0c999b;
        color: #fff;
        cursor: pointer;
        display: block;
        font-weight: 300;
        font-size: 16px;
        margin-left: auto;
        margin-right: 0;
        min-width: 150px;
        min-height: 45px;
    }
    .rl_form_container input[name="submit"]:disabled {
        background-color: #aaa;
        border: 2px solid #aaa;
        cursor: no-drop;
    }

    /* checkbox */
    .rl_form_container [type="checkbox"]:not(:checked),
    .rl_form_container [type="checkbox"]:checked {
        position: absolute;
        left: -9999px;
    }

    .rl_form_container [type="checkbox"]:not(:checked) + label,
    .rl_form_container [type="checkbox"]:checked + label {
        line-height: 1.2;
        position: relative;
        padding-left: 20px;
        cursor: pointer;
        font-size: calc(13.6px + 0.125vw); /*16-*/
        font-weight: 300;
    }

    .rl_form_container [type="checkbox"]:not(:checked) + label:before,
    .rl_form_container [type="checkbox"]:checked + label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 2px;
        width: 15px;
        height: 15px;
        border: 1px solid gray;
        border-radius: 0px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
    .rl_form_container [type="checkbox"]:not(:checked) + label:before {
        background: #fff;
    }
    .rl_form_container [type="checkbox"]:checked + label:before {
        background: gray;
    }

    .rl_form_container [type="checkbox"]:not(:checked) + label:after,
    .rl_form_container [type="checkbox"]:checked + label:after {
        content: "";
        position: absolute;
        left: 5px;
        top: 2px;
        width: 6px;
        height: 11px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .rl_form_container [type="checkbox"]:indeterminate + label:after {
        border: none;
        content: "\2014";
        color: gray;
        font-size: 18px;
        font-weight: 300;
        line-height: 1;
        left: 1px;
        position: absolute;
        top: -1px;
        -webkit-transition: all 0.1s;
        -o-transition: all 0.1s;
        transition: all 0.1s;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    /* checked mark aspect changes */
    .rl_form_container [type="checkbox"]:not(:checked) + label:after {
        opacity: 0;
    }
    .rl_form_container [type="checkbox"]:checked + label:after,
    .rl_form_container [type="checkbox"]:indeterminate + label:after {
        opacity: 1;
    }

    /* disabled checkbox */
    .rl_form_container [type="checkbox"]:disabled:not(:checked) + label:before,
    .rl_form_container [type="checkbox"]:disabled:checked + label:before {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #bbb;
        background-color: #ddd;
    }

    .rl_form_container [type="checkbox"]:disabled:checked + label:after {
        color: #555;
    }

    .rl_form_container [type="checkbox"]:disabled + label {
        color: #aaa;
    }

    /* popup style */
    .white-popup {
        position: relative;
        background: #FFF;
        padding: 20px;
        width: auto;
        max-width: 500px;
        margin: 20px auto;
        min-height: 250px;
        color: #666;
        display: flex;
        font-size: calc(0.125vw + 17.6px);
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        justify-content: center;
        line-height: 1.5;
        text-align: center;
    }

    @media screen and (max-width: 767px) {
        .rl_form_container {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .rl_form_container .form-description .form-title {
            text-align: center;
        }
        
        .rl_form_container .rl_form .form-wrapper {
            width: 100%;
        }

        .rl_form_container .rl_form .form-wrapper .form-element-wrapper {
            margin-bottom: 0;
        }
        .rl_form_container .rl_form .form-wrapper .form-element-wrapper ._formfield {
            margin-bottom: 15px;
            width: 100%;
        }

        .rl_form_container input[name="submit"] {
            margin: 0 auto;
        }

        .rl_form_container .rl_form .form-textarea {
            min-height: 100px;
        }
    }