.leftGrid {
    grid-column: 1;
  }
  .rightGrid {
    grid-column: 2;
  }
  input[type="submit"] {
    margin: 28px 0 0 0;
  }
  form span {
    position: relative;
  }
  
  /* ------------------------------------------------------------------------------------------ */
  /* Form Topics ------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------ */
  
  .form_paragraph{
    font-size: 14px;
    color: #314a63;
    margin-top: 12px;
  }
  .form_warning_big{
    display: flex;
    max-width: 764px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #000;
    padding: 16px;
    grid-column: 1 / span 2;
    pointer-events: none;
    gap: 8px;
  }
  .form_warning_big *{
    color: #000 !important;
  }
  .form_topic {
    display: flex;
    width: 100%;
    font-size: 16px;
    grid-column: 1 / span 2;
    color: #774949;
    font-weight: 600;
    align-items: center;
    gap: 8px;
  }
  .form_topic_big {
    width: 100%;
    font-size: 20px;
    grid-column: 1 / span 2;
    color: #314a63;
  }
  body.darkmode .form_topic,
  body.darkmode .form_topic_big {
    color: #cec2c2;
  }
  form .form_topic,
  form .form_topic_big {
    margin-top: 16px;
  }
  form .form_topic:first-of-type,
  form .form_topic_big:first-of-type {
    margin-top: 0;
  }
  form {
    display: flex;
    flex-direction: column;
  }
  form .form_row {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 16px;
  }
  form .form_row {
    grid-template-rows: auto auto auto;
  }
  .form_row input,
  .form_row select {
    grid-column: 1 / span 2;
  }
  
  /* ------------------------------------------------------------------------------------------ */
  /* Custom Radio Button ---------------------------------------------------------------------- */
  /* ------------------------------------------------------------------------------------------ */
  
  .radio-toolbar {
    display: flex;
    width: 100%;
    grid-column: 1 / span 2;
    flex-wrap: wrap;
    gap: 16px;
  }
  .radio-toolbar.left {
    flex-direction: row;
    justify-content: flex-start;
  }
  .radio-toolbar input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }
  .radio-toolbar label {
    position: relative;
    display: flex;
    min-height: 44px;
    width: fit-content;
    padding: 0px 14px 0px 32px;
    align-items: center;
    background-color: rgba(31, 99, 150, 0);
    border: 12px solid rgba(31, 99, 150, 0);
    border-radius: 4px;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
  }
  .radio-toolbar label::after{
    position: absolute;
    content: '';
    height: 24px;
    width: 24px;
    left: 0;
    opacity: 0.24;
    background-image: url("../assets/icons/inputs/radio_button_unchecked.svg");
    background-repeat: no-repeat;
  }
  body.darkmode .radio-toolbar label::after{
    filter: invert(88%) sepia(19%) saturate(1148%) hue-rotate(181deg) brightness(100%) contrast(108%);
  }
  .radio-toolbar label:hover {
    background-color: #cbc3c3;
  }
  body.darkmode .radio-toolbar label:hover {
    background-color: #cbc3c3;
  }
  .radio-toolbar label:hover::after {
    opacity: 0.32;
  }
  .radio-toolbar input[type="radio"]:focus + label {
    background-color: #615555;
  }
  .radio-toolbar input[type="radio"]:checked + label {
    background-color: #615555;
    color: #fff;
  }
  body.darkmode .radio-toolbar input[type="radio"]:checked + label {
    background-color: #b4acac;
    color: #343131;
  }
  .radio-toolbar input[type="radio"]:checked + label::after{
    opacity: 1;
    filter: invert(1);
    background-image: url("../assets/icons/inputs/radio_button_checked.svg");
  }
  body.darkmode .radio-toolbar input[type="radio"]:checked + label::after{
    opacity: 1;
    filter: invert(15%) sepia(79%) saturate(27%) hue-rotate(314deg) brightness(99%) contrast(93%);
    background-image: url("../assets/icons/inputs/radio_button_checked.svg");
  }
  #radio1 {
    grid-column: 1;
  }
  #radio2 {
    grid-column: 2;
  }
  
  /* ------------------------------------------------------------------------------------------ */
  /* Inputs ----------------------------------------------------------------------------------- */
  /* ------------------------------------------------------------------------------------------ */
  
  .form-input{
    flex-direction: column;
  }
  .form-input,.form-textarea,.form-dropdown, .form-search, .form-message,
  .form-password span{
    position: relative;
    height: fit-content;
    display: flex;
  }
  .form-search,
  .form-message{
    align-items: center;
  }
  .form-textarea:hover textarea,
  .form-search:hover input,
  .form-message:hover input,
  .form-input:hover input{
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.12);
  }
  .form-password span{
    width: 100%;
  }
  .form-dropdown{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }
  .form-item{
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 4px;
    border: 1px solid #EEE;
    padding: 0 16px;
    color: #444444;
    background: #FFF;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.04);
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    caret-color: auto;
  }
  body.darkmode .form-item{
    color: #fff;
    background-color: var(--box-bg);
    border: 1px solid var(--box-border);
  }
  body.darkmode box .form-item{
    background-color: var(--box-input-bg);
    border: 1px solid var(--box-input-border);
  }
  .form-textarea textarea{
    min-height: 124px;
    font-size: 14px;
    width: 100%;
    padding: 16px 24px;
  }
  .form-dropdown:hover select{
    cursor: pointer;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.12);
  }
  .form-item + label,
  .form-dropdown label{
    position: absolute;
    font-size: 14px;
    padding: 0px 16px;
    top: 13px;
    border-radius: 4px;
    pointer-events: none;
    text-align: left;
    white-space: nowrap;
    z-index: 3;
  }
  .form-textarea label{
    top: 16px;
  }
  body.darkmode .form-item + label,
  body.darkmode .form-dropdown label{
    color: #fff;
  }
  .form-item + label.active,
  .form-dropdown label{
    top: -8px;
    left: 0px !important;
    font-size: 12px;
    padding: 0px 10px;
    margin: 0 6px;
    color: #6D6D6D;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 52%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%);
  }
  body.darkmode .form-item + label.active,
  body.darkmode .form-dropdown label{
    color: #fff;
    background: rgb(62, 90, 135);
    background: linear-gradient(0deg, var(--box-bg) 0%, var(--box-bg) 52%, rgba(62, 90, 135,0) 76%, rgba(62, 90, 135,0) 100%);
  }
  body.darkmode .modal .form-item + label.active,
  body.darkmode .modal .form-dropdown label{
    color: #fff;
    background: #4b4141;
    background: linear-gradient(0deg, #403838 0%, #403838 35%, var(--box-bg) 76%, var(--box-bg) 100%);
  }
  .form-dropdown options,
  .form-input options{
    position: absolute;
    display: flex;
    flex-direction: row;
    top: 8px;
    right: 8px;
    gap: 8px;
  }
  body.darkmode .modal .form-item{
    background-color: #403838;
    border: 1px solid #504646;
  }
  .form-item + label.centered{
    left: 50% !important;
    width: fit-content;
    transform: translate(-50%, 0%);
    text-align: center;
    margin: 0 !important;
  }
  .form-textarea .input_icon{
    top: 14px;
    left: 14px;
  }
  .input_icon{
    position: absolute;
    content: '';
    height: 24px;
    left: 10px;
    top: 10px;
    aspect-ratio: 1 / 1;
    opacity: 0.32;
    pointer-events: none;
    z-index: 2;
  }
  body.darkmode .input_icon{
    filter: invert(1);
    opacity: 0.5;
  }
  .form-input.error input,
  .form-password.error input{
    border: 1px solid #C65959;
  }
  .form-input.error label,
  .form-password.error label{
    color: #C65959;
  }
  .form-input.warning input,
  .form-password.warning input{
    border: 1px solid #EF943F;
  }
  .form-input.warning label,
  .form-password.warning label{
    color: #EF943F;
  }
  .form-password i{
    position: absolute;
    box-sizing: content-box;
    height: 44px;
    width: 24px;
    right: 10px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  .visibility,
  .visibility_off{
    filter: invert(29%) sepia(5%) saturate(6630%) hue-rotate(169deg) brightness(66%) contrast(73%);
    opacity: 0.64;
  }
  body.darkmode .visibility,
  body.darkmode .visibility_off{
    filter: invert(1);
  }
  .visibility {
    background: url("../assets/icons/inputs/visibility.svg") no-repeat;
  }
  .visibility_off {
    background: url("../assets/icons/inputs/visibility_off.svg") no-repeat;
  }
  .form-search .input_buttons,
  .form-message .input_buttons,
  .form-textarea .input_buttons{
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: inherit;
    border-radius: 6px;
    right: 8px;
    background-color: #fff;
    padding-left: 8px;
    z-index: 2;
  }
  .form-textarea .input_buttons{
    right: 10px;
    top: 10px;
  }
  body.darkmode .form-search .input_buttons,
  body.darkmode .form-message .input_buttons,
  body.darkmode .form-textarea .input_buttons{
    background-color: var(--box-bg);
  }
  .form-search .input_buttons button,
  .form-message .input_buttons button,
  .form-textarea .input_buttons button{
    justify-content: center;
    align-items: center;
    height: 32px;
    aspect-ratio: 1 / 1;
    background-color: rgba(0, 0, 0, 0);
    filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(201deg) brightness(92%) contrast(87%);
    box-shadow: none;
    padding: 0;
    border: none;
  }
  body.darkmode .form-search .input_buttons button,
  body.darkmode .form-message .input_buttons button,
  body.darkmode .form-textarea .input_buttons button{
    background-color: transparent;
    filter: invert(1);
  }
  .form-search .input_buttons button:hover,
  .form-message .input_buttons button:hover,
  .form-textarea .input_buttons button:hover{
    background-color: rgba(0, 0, 0, 0.044);
  }
  body.darkmode .form-search .input_buttons button:hover,
  body.darkmode .form-message .input_buttons button:hover,
  body.darkmode .form-textarea .input_buttons button:hover{
    background-color: rgba(255,255,255, 0.044);
  }
  .form-message .btn_input_attachment,
  .form-textarea .btn_input_attachment{
    background: url('../assets/icons/attach_file.svg') no-repeat center;
  }
  .form-message .btn_input_screencast,
  .form-textarea .btn_input_screencast{
    background: url('../assets/icons/videocam.svg') no-repeat center;
  }
  .form-search .btn_input_search{
    background: url('../assets/icons/search.svg') no-repeat center;
  }
  .form-search .btn_input_clear{
    background: url('../assets/icons/clear_all.svg') no-repeat center;
  }
  .form-dropdown::after{
    position: absolute;
    content: '';
    height: 32px;
    width: 32px;
    top: 6px;
    right: 7px;
    background: url('../assets/icons/expand_more.svg') no-repeat center;
    background-color: #fff;
    opacity: 0.85;
    pointer-events: none;
  }
  .form-dropdown.multiValue::after{
    position: absolute;
    content: '';
    height: 32px;
    width: 32px;
    top: 6px;
    right: 95px;
    background: url('../assets/icons/expand_more.svg') no-repeat center;
    background-color: #fff;
    opacity: 0.85;
    pointer-events: none;
  }
 .form-input .form-dropdown::after{
    right: 95px;
  }
  body.darkmode .form-dropdown::after{
    filter: invert(1);
    background-color: transparent;
  }
  .dropdown_icon{
    position: absolute;
    height: 24px;
    width: 24px;
    left:10px;
    top:50%;
    transform:translateY(-50%);
  }
  
  .form-dropdown select{
    width: 100%;
    -webkit-appearance: none;
  }

  
.iconPreview{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  aspect-ratio: 1 / 1;
  border: 0.5px solid #EEE;
  color: #444444;
  flex-shrink: 0;
  background: #FFF;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
}
.iconPreview::after{
  position: absolute;
  content: 'PREVIEW';
  font-size: 7px;
  color: #314a63;
  top: -5px;
  background-color: #fff;
  padding: 0 4px;
}
body.darkmode .iconPreview{
  background-color: #403838;
  border: 1px solid #504646;
}
body.darkmode .iconPreview::after{
  color: #fff;
  background: linear-gradient(0deg, #403838 0%, #403838 35%, var(--box-bg) 76%, var(--box-bg) 100%);
}
.iconPreview img{
  height: 70%;
}
body.darkmode .iconPreview img{
  filter: invert(1);
}
  
  /* ------------------------------------------------------------------------------------------ */
  /* Custom Checkbox Button ------------------------------------------------------------------- */
  /* ------------------------------------------------------------------------------------------ */
  
  .checkboxToolbar {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }
  .checkboxToolbar.centered {
    justify-content: center;
  }
  label[name="checkbox"] {
    display: flex;
    align-items: center;
  }
  input[type="checkbox"] {
    width: 24px;
    height: 24px;
    background: url("../assets/icons/inputs/check_box_outline_blank.svg") no-repeat;
    margin: 0 12px 0 0;
    display: inline-block;
  }
  input[type="checkbox"]:checked {
    background: url("../assets/icons/inputs/check_box.svg") no-repeat;
    display: inline-block;
  }
  .checkboxToolbar input[type="checkbox"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }
  .checkboxToolbar label {
    position: relative;
    display: inline;
    min-height: 25px;
    width: fit-content;
    padding: 4px 0px 0px 32px;
    font-size: 14px;
    margin: 0;
    color: #6D6D6D;
    border-left: none;
    border-right: none;
    background-origin: padding-box;
    border-radius: 6px;
    cursor: pointer;
  }
  .checkboxToolbar label:hover::after {
    background-image: url("../assets/icons/inputs/check_box_outline_blank.svg");
    background-repeat: no-repeat;
  }
  .checkboxToolbar .checkboxToolbar input[type="checkbox"]:checked label:hover {
    opacity: 0.72;
  }
  .checkboxToolbar input[type="checkbox"]:checked + label {
    color: #774949 !important;
  }
  body.darkmode .checkboxToolbar input[type="checkbox"] + label {
    color: #ffffffca !important;
    opacity: 0.72;
  }
  body.darkmode .checkboxToolbar input[type="checkbox"]:checked + label {
    color: #fff !important;
    opacity: 1;
  }
  .checkboxToolbar label::after {
    position: absolute;
    content: '';
    height: 24px;
    width: 24px;
    top: 0;
    left: 0;
    transition: 0.24s;
    background-image: url("../assets/icons/inputs/check_box_outline_blank.svg");
    filter: invert(28%) sepia(5%) saturate(4834%) hue-rotate(314deg) brightness(95%) contrast(75%);
    background-repeat: no-repeat;
    opacity: 1;
  }
  body.darkmode .checkboxToolbar label::after{
    filter: invert(1);
    opacity: 0.5;
  }
  .checkboxToolbar input[type="checkbox"]:checked + label:hover::after {
    opacity: 0.64;
  }
  .checkboxToolbar input[type="checkbox"]:checked + label::after {
    background-image: url("../assets/icons/inputs/check_box.svg");
    background-position: center;
    opacity: 1;
  }