.beyond_form_container {
/*    --background: radial-gradient(at top left, #2e2e2e, #474747);*/
    --background: radial-gradient(at top left, #2e2e2e, #474747);
    --color: floralwhite;
    --toggleColorCheck: #03A9F4;
    --toggleColorNoCheck: #F44336;
    --toggleTextTrue: 'YES';
    --toggleTextFalse: 'NO';
    --submitBtnBackground: transparent;
    --submitBtnHover: radial-gradient(at top left, #3a649c, #163c6e);
    --boxShadow: none;
    --popupOverlay: transparent;
}
/*NEED A WAY TO SET BROWSER ICONS WITH VARIABLE UNTIL THEN SET FILL COLOR MANUALLY*/
.beyond_form_input_container.beyond_form_input_date input::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="floralwhite" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}
.beyond_form_input_container input::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="floralwhite" class="bi bi-clock" viewBox="0 0 16 16"> <path d="M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71V3.5z"/> <path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0z"/> </svg>');
}

/* MAIN */
/* //// */
.beyond_form_container {
    display: none;
    position: relative;
    width: 100%;
    justify-content: center;
}
.beyond_form_container.beyond_visible { 
    display: inline-flex; 
}
.beyond_form_container.beyond_form_popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: var(--popupOverlay);
/*    background-color: red;*/
}
.beyond_form_container.beyond_form_popup.beyond_visible {
    display: flex;
}
.beyond_form_container form {
    position: relative;
/*    width: 100%;*/
    max-width: 1000px;
    font-size: 18px;
    font-family: sans-serif;
    padding: 30px;
    border-radius: 5px;
    background: var(--background);
    color: var(--color);
    box-shadow: var(--boxShadow);
}
.beyond_form_close {
    position: absolute;
/*
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    border-radius: 999px;
    border: solid 1px;
*/
    top: 15px;
    right: 15px;
    cursor: pointer;    
}
.beyond_form_close:hover {
    opacity: 0.5;
}
/* //// */
/* MAIN */

/* INPUTS */
/* ////// */
/* GROUPS */
/* ////// */
.beyond_form_inputs_group {
    margin: 20px 0px;
}
.beyond_form_inputs_group:first-child {
    margin-top: 0;
}
.beyond_form_inputs_group:last-child {
    margin-bottom: 0;
}
.beyond_form_inputs_group_header {
    display: flex;
    font-size: 20px;
}
.beyond_form_inputs_group_inputs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
/*    justify-content: center;*/
}
.beyond_form_container button {
    border: solid 1px gray;
    background: var(--submitBtnBackground);
    color: var(--color);
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
}
.beyond_form_container button:hover {
    background: var(--submitBtnHover);
}
/* GROUPS TOGGLE */
/* ///////////// */
.beyond_form_group_toggle {
    margin: 0px 10px;
}
.beyond_form_group_toggle .knobs:before {
    content: 'HIDE' !important;
}
.beyond_form_group_toggle .knobs:after {
    content: 'SHOW' !important;
}
.beyond_form_group_toggle .knobs span {
    background-color: #858585 !important;
}
.beyond_form_group_toggle input:checked + .knobs span {
    background-color: #858585 !important;
}
/* ///////////// */
/* GROUPS TOGGLE */
/* ////// */
/* GROUPS */
.beyond_form_input_parent {
    display: flex;
    border-color: inherit;
}
.beyond_form_input_parent.auto, .beyond_form_inputs_group.auto { width: 250px; }
.beyond_form_input_parent.full, .beyond_form_inputs_group.full { width: 100%; }
.beyond_form_input_parent.three_quarter, .beyond_form_inputs_group.three_quarter { width: 75%; }
.beyond_form_input_parent.half, .beyond_form_inputs_group.half { width: 50%; }
.beyond_form_input_parent.quarter, .beyond_form_inputs_group.quarter { width: 25%; }
.beyond_form_input_parent.two_third, .beyond_form_inputs_group.two_third { width: 66.6%; }
.beyond_form_input_parent.one_third, .beyond_form_inputs_group.one_third { width: 33.3%; }
.beyond_form_input_parent.min, .beyond_form_inputs_group.min { width: auto; }
.beyond_form_input_parent.none, .beyond_form_inputs_group.none { display: none; }

.beyond_form_input_container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
    width: 100%;
    max-width: 100%;
    justify-content: flex-end;
}
.beyond_form_input_container label {
    font-size: 12px;
    font-style: italic;
    opacity: 0.8;
    margin: 4px 0px;
}
.beyond_form_input_container input, .beyond_form_input_container select, .beyond_form_input_container textarea {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    width: calc(100% - 10px);
    padding: 5px 5px 0px 5px;
/*    background-color: rgba(255, 255, 255, 0.1);*/
    background-color: transparent;
    border: none;
    border-bottom: solid 2px;
/*    border-radius: 5px;*/
}
.beyond_form_input_container.beyond_form_input_date {
    width: calc(100% - 40px);
}
.beyond_form_input_container select {
    width: 100%; 
}
.beyond_form_input_container select option {
    color: black;
}
.beyond_form_input_container textarea {
    border: solid gray 1px;
    resize: vertical;
    height: 150px;
}

.beyond_form_input_container input::placeholder {
    opacity: 0.4;
    color: inherit;
}
.beyond_form_input_container input:focus-visible {
    outline: none;
}
.beyond_form_container .submitContainer {
    text-align: right;
    margin-top: 30px;
}
.beyond_form_container .submitContainer button {
    margin: 0px 5px;
}
/* PASSWORD */
/* //////// */
.beyond_form_input_container .beyond_form_input_icon {
/*    display: none;*/
    position: absolute;
    align-self: flex-end;
    right: 5px;
    cursor: pointer;
}
.beyond_form_input_container input[type="password"] {
    padding-right: 30px;
    width: calc(100% - 35px);
}
.beyond_form_input_container input:hover+.beyond_form_input_icon, .beyond_form_input_icon:hover {
    display: block;
}
/* //////// */
/* PASSWORD */

/* IMAGE */
/* ///// */
.beyond_form_image_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.beyond_form_image_container .beyond_form_image_btn {
    height: 100%;
    flex: auto;
    align-items: center;
    border: solid 1px gray;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
}
.beyond_form_image_container .beyond_form_image_btn>div {
    display: flex;
    content: "Select File";
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.beyond_form_image_container .beyond_form_image_preview {
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
/*    margin: 0px 5px; */
}
.beyond_form_image_container .beyond_form_image_preview img {
    height: 100%;
}
.beyond_form_image_container .beyond_form_image_text {
/*    display: block;*/
}
.beyond_form_image_container .beyond_form_image_remove {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    color: blue;
    text-shadow: 1px 1px white;
    width: 20px;
    height: 20px;
    background-color: red;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.beyond_form_image_container:hover .beyond_form_image_remove {
    display: flex;
}
.beyond_form_image_container input[type="file"] {
    display: none;
}
/* ///// */
/* IMAGE */

/* RADIO */
/* ///// */
.radio_container {
    
}
.radio_option_container {
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 5px;
}
/* ///// */
/* RADIO */

/* TOGGLE */
/* ////// */
.beyond_form_toggle_container {
    display: flex;
    justify-content: flex-start;
}
.beyond_form_toggle {
    position: relative;
    width: 75px;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    color: white;
    border: solid 1px gray;
    border-radius: 2px;
    font-family: sans-serif;
    cursor: pointer;
    pointer-events: inherit;
}

.beyond_form_toggle input {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}
.beyond_form_toggle .knobs:before, .beyond_form_toggle .knobs:after, .beyond_form_toggle .knobs span {
    position: absolute;
    margin: 2px;
    top: 0px;
    width: calc(50% - 4px);
    height: calc(100% - 4px);
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    border-radius: 2px;
    transition: 0.3s ease all;
    color: #4e4e4e;
    z-index: 1;
    color: gray;
}
.beyond_form_toggle .knobs:before {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 4px);
    content: var(--toggleTextTrue);
    left: 0;
}
.beyond_form_toggle .knobs:after {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 4px);
    content: var(--toggleTextFalse);
    right: 0;
}
.beyond_form_toggle .knobs span {
    left: 0;
    right: auto;
    background-color: var(--toggleColorNoCheck);
    z-index: 2;
}
.beyond_form_toggle input:checked + .knobs span {
    right: 0px;
    left: auto;
    background-color: var(--toggleColorCheck);
}
.beyond_form_toggle input:checked ~ .layer {
    background-color: #fcebeb;
}
/* ////// */
/* TOGGLE */
/* ////// */
/* INPUTS */

/* SET SPECIFIC FOR SITE BECUASE OF SIDEBAR WOULD BE SMALLER WITH NO SIDEBAR */
@media(max-width: 1000px) {
    .beyond_form_input_parent.quarter {
        width: 50%;
    }
}
@media(max-width: 850px) {
    .beyond_form_input_parent.one_third {
        width: 50%;
    }
}
@media(max-width: 700px) {
    .beyond_form_input_parent.auto,
    .beyond_form_input_parent.full,
    .beyond_form_input_parent.three_quarter,
    .beyond_form_input_parent.half,
    .beyond_form_input_parent.quarter,
    .beyond_form_input_parent.two_third,
    .beyond_form_input_parent.one_third {
        width: 100%;
    }
}
/*
@media(max-width: 800px) {
    .beyond_form_input_parent.quarter {
        width: 50%;
    }
}
@media(max-width: 650px) {
    .beyond_form_input_parent.one_third {
        width: 50%;
    }
}
@media(max-width: 500px) {
    .beyond_form_input_parent.auto,
    .beyond_form_input_parent.full,
    .beyond_form_input_parent.half,
    .beyond_form_input_parent.quarter,
    .beyond_form_input_parent.two_third,
    .beyond_form_input_parent.one_third {
        width: 100%;
    }
}
*/
