input:not([type="range"]):not([id^="s-"]),
textarea,
select {
    border: 0px solid #000000;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding: 11px 12px;
    background-color: #F9F9F9;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

input:not([type="range"]):not([id^="s-"]):focus,
textarea:focus,
select:focus {
    border: 0px solid #000000;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}


/* Radio button styling. */

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

@-moz-keyframes ripple {
    0% {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

@-o-keyframes ripple {
    0% {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

.frm_scale:not(:last-of-type),
.frm_radio:not(:last-of-type) {
    margin-left: 0;
    margin-bottom: 15px !important;
}

.frm_scale label,
.frm_radio label {
    height: 25px;
    position: relative;
    padding: 0;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.frm_scale input[type=radio],
.frm_radio input[type=radio] {
    position: absolute !important;
    margin-left: -9999px;
    visibility: hidden;
}

.frm_scale input[type=radio] + span,
.frm_radio input[type=radio] + span {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
    width: 35px;
    height: 25px;
    vertical-align: middle;
}

.frm_scale input[type=radio] + span::before,
.frm_scale input[type=radio] + span::after,
.frm_radio input[type=radio] + span::before,
.frm_radio input[type=radio] + span::after {
    position: absolute;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-property: transform, border-color;
    -moz-transition-property: transform, border-color;
    -o-transition-property: transform, border-color;
    transition-property: transform, border-color;
}

.frm_scale input[type=radio]:checked + span::before,
.frm_radio input[type=radio]:checked + span::before {
    border-color: #A86BAA;
    animation: ripple 0.2s linear forwards;
}

.frm_scale input[type=radio] + span::before,
.frm_radio input[type=radio] + span::before {
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.54);
}

.frm_scale input[type=radio] + span::after,
.frm_radio input[type=radio] + span::after {
    top: 7px;
    left: 5px;
    width: 10px;
    height: 10px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    background-color: #A86BAA;
}

.frm_scale input[type=radio]:checked + span::after,
.frm_radio input[type=radio]:checked + span::after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/* Checkbox styling. */

.frm_checkbox:not(:last-of-type) {
    margin-left: 0;
    margin-bottom: 15px !important;
}

.frm_checkbox label {
    height: 25px;
    position: relative;
    padding: 0 0 0 35px;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.frm_checkbox input[type=checkbox] {
    position: absolute !important;
    margin-left: -9999px;
    visibility: hidden;
}

.frm_checkbox label input[type=checkbox],
.frm_radio label input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.frm_checkbox span {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #EEEEEE;
}

.frm_checkbox label:hover input[type=checkbox] ~ span {
    background-color: #CCCCCC;
}

.frm_checkbox label input[type=checkbox]:checked ~ span {
    background-color: #A86BAA;
}

.frm_checkbox span::after {
    content: "";
    position: absolute;
    display: none;
}

.frm_checkbox label input[type=checkbox]:checked ~ span::after {
    display: block;
}

.frm_checkbox label span::after {
    left: 9px;
    top: 5px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Custom Formidable styling. */

.frm_forms > * {
    max-width: 100%;
    font-size: 14px;
}

.frm_required {
    color: var(--red);
}

.frm_form_field {
    margin: 15px 0;
    clear: both;
}

.frm_opt_container {
    margin: 15px 0;
}

.frm_error {
    color: var(--red);
    font-weight: 400;
    margin: 5px 0;
    position: absolute;
}

.frm_top_container .frm_primary_label, .frm_hidden_container .frm_primary_label, .frm_pos_top {
    display: block;
    float: none;
    width: auto;
}

.frm_primary_label {
    font-weight: 400;
    font-size: 20px;
    font-family: "IBM Plex Sans", sans-serif;
    text-align: left;
    padding: 0 0 3px 0;
    margin: 0;
    width: auto;
    display: block;
}

.frm_form_field input:not(.ed_button),
.frm_form_field textarea,
.frm_form_field select {
    width: 100%;
    padding: 18px 30px;
    font-size: 18px;
}

.frm_dropzone.frm_single_upload {
    max-width: 100%;
}

.frm_dropzone .dz-message {
    border-color: #858796;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.frm_style_formidable-style .frm_icon_font,
.frm_dropzone .frm_upload_icon::before, .frm_dropzone .dz-remove {
    color: #333333;
}

.frm-star-group {
    position: relative;
}

.frm-star-group .star-rating, .frm-star-group input + label {
    margin-right: 0 !important;
    width: 30px !important;
}

.frm_slider {
    background-color: #DDDDDD !important;
}

input:checked + .frm_switch .frm_slider {
    background-color: #A86BAA !important;
}

.frm_scale {
    margin-right: 15px;
    text-align: center;
    float: left;
}

.frm_time_wrap {
    white-space: nowrap;
}

select.frm_time_select {
    white-space: pre;
    display: inline;
}

.auto_width #loginform input, .auto_width input, input.auto_width, select.auto_width, textarea.auto_width {
    width: auto;
}

.ui-datepicker th {
    background-color: #005C90;
}


/* Editors */

.wp-editor-wrap {
    position: relative;
}

.wp-editor-tools {
    position: relative;
    z-index: 1;
}

.wp-editor-tools:after {
    clear: both;
    content: "";
    display: table;
}

.wp-editor-container {
    clear: both;
    border: 1px solid #E5E5E5;
}

.wp-editor-area {
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
    padding: 10px;
    margin: 1px 0 0;
    line-height: 150%;
    border: 0;
    outline: none;
    display: block;
    resize: vertical;
    box-sizing: border-box;
}

.rtl .wp-editor-area {
    font-family: Tahoma, Monaco, monospace;
}

.locale-he-il .wp-editor-area {
    font-family: Arial, Monaco, monospace;
}

.wp-editor-container textarea.wp-editor-area {
    width: 100%;
    margin: 0;
    box-shadow: none;
}

.wp-editor-tabs {
    float: right;
}

.wp-switch-editor {
    float: left;
    box-sizing: content-box;
    position: relative;
    top: 1px;
    background: #EBEBEB;
    color: #666666;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.46153846;
    height: 20px;
    margin: 5px 0 0 5px;
    padding: 3px 8px 4px;
    border: 1px solid #E5E5E5;
}

.wp-switch-editor:focus {
    box-shadow: 0 0 0 1px #5B9DD9,
    0 0 2px 1px rgba(30, 140, 190, 0.8);
    outline: none;
    color: #23282D;
}

.wp-switch-editor:active,
.html-active .switch-html:focus,
.tmce-active .switch-tmce:focus {
    box-shadow: none;
}

.wp-switch-editor:active {
    background-color: #F5F5F5;
    box-shadow: none;
}

.js .tmce-active .wp-editor-area {
    color: #FFFFFF;
}

.tmce-active .quicktags-toolbar {
    display: none;
}

.tmce-active .switch-tmce,
.html-active .switch-html {
    background: #F5F5F5;
    color: #555555;
    border-bottom-color: #F5F5F5;
}

.wp-media-buttons {
    float: left;
}

.wp-media-buttons .button {
    margin-right: 5px;
    margin-bottom: 4px;
    padding-left: 7px;
    padding-right: 7px;
}

.wp-media-buttons .button:active {
    position: relative;
    top: 1px;
    margin-top: -1px;
    margin-bottom: 1px;
}

.wp-media-buttons .insert-media {
    padding-left: 5px;
}

.wp-media-buttons a {
    text-decoration: none;
    color: #444444;
    font-size: 12px;
}

.wp-media-buttons img {
    padding: 0 4px;
    vertical-align: middle;
}

.wp-media-buttons span.wp-media-buttons-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 1;
    vertical-align: middle;
    margin: 0 2px;
}

.wp-media-buttons .add_media span.wp-media-buttons-icon {
    background: none;
}

.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
    font: normal 18px/1 dashicons;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
    content: "\f104";
}

.mce-content-body dl.wp-caption {
    max-width: 100%;
}

.wp-editor-wrap textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
}