
:root {--bnws-col-main:#40BFA1;}
:root {--bnws-col-secondary:#66CCB4;}
:root {--bnws-col-main-medium:#B3E5D9;}
:root {--bnws-col-main-light:#D9F2EC;}
:root {--bnws-col-accent:#276C5B;}
:root {--bnws-col-gray:#222222;}
:root {--bnws-col-gray2:#666666;}
:root {--bnws-col-gray3:#888888;}
:root {--bnws-col-gray4:#cccccc;}
:root {--bnws-col-gray5:#e1e1e1;}
:root {--bnws-col-gray6:#f1f1f1;}
:root {--bnws-col-gray7:#f9f9f9;}
:root {--bnws-rgb-error:226, 14, 21}
:root {--bnws-rgb-success:14, 174, 112}
:root {--bnws-rgb-attention:224, 107, 12}
:root {--bnws-rgb-info:232, 191, 47}
:root {--bnws-whitespace-l0:2px;}
:root {--bnws-whitespace-l1:4px;}
:root {--bnws-whitespace-l2:8px;}
:root {--bnws-whitespace-l3:12px;}
:root {--bnws-whitespace-l4:16px;}
:root {--bnws-whitespace-l5:20px;}
:root {--bnws-whitespace-l6:24px;}
:root {--bnws-whitespace-l7:28px;}
:root {--bnws-whitespace-l8:32px;}
:root {--bnws-transition: all 0.4s ease-in-out;}
:root {--bnws-max-input-width:350px;}

.bnws-tools-error,.bnws-tools-success,.bnws-tools-attention,.bnws-tools-info {
  color: rgba(var(--bnws-rgb-error),1);
  background: rgba(var(--bnws-rgb-error),0.2);
  font-size: 1em;
  padding: var(--bnws-whitespace-l2);
  margin: var(--bnws-whitespace-l2) 0px;
  border-radius: var(--bnws-whitespace-l1);
  line-height: 1.3;
}

.bnws-tools-success {
  color: rgba(var(--bnws-rgb-success),1);
  background: rgba(var(--bnws-rgb-success),0.2);
}

.bnws-tools-attention {
  color:  rgba(var(--bnws-rgb-attention),1);
  background: rgba(var(--bnws-rgb-attention),0.2);
}

.bnws-tools-info {
  color: rgba(var(--bnws-rgb-info),1);
  background: rgba(var(--bnws-rgb-info),0.2);
}

.bnws-tools-error-text {
  color: rgba(var(--bnws-rgb-error),1);
  font-size: 0.9em;
}

.bnws-tools-status {
  font-weight: 600;
}

.text-align-right {
  text-align: right;
}

.bnws-tools-status.error {
  color: rgba(var(--bnws-rgb-error),1);
  padding: 0;
  margin: 0;
  box-shadow: none;
  background: transparent;
  border: none;
}
.bnws-tools-status.success {
  color: rgba(var(--bnws-rgb-success),1);
}
.bnws-tools-status.attention {
  color: rgba(var(--bnws-rgb-attention),1);
}
.bnws-tools-status.info {
  color: rgba(var(--bnws-rgb-info),1);
}

.hide {display:none !important;}

/*** SWITCH ***/

 /* The switch - the box around the slider */
 .bnws-switch {
  position: relative;
  display: inline-block;
  height: 34px;
  width:100%;
}

.bnws-switch label {
  display: flex;
  align-items: center;
  height: 30px;
  font-weight: 600;
}

/* Hide default HTML checkbox */
.bnws-switch > label > input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.bnws-switch label > .switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bnws-col-gray4);
  -webkit-transition: var(--bnws-transition);
  transition: var(--bnws-transition);
  width: 60px;
}

.bnws-switch label > .switch-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: var(--bnws-transition);
  transition: var(--bnws-transition);
}

input:checked + .switch-slider {
  background-color: var(--bnws-col-success);
}

input:focus + .switch-slider {
  box-shadow: 0 0 1px var(--bnws-col-success);
}

input:checked + .switch-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.switch-slider.round {
  border-radius: 34px;
}

.switch-slider.round:before {
  border-radius: 50%;
} 

.bnws-switch label > span:not(.switch-slider) {
  margin-left: 60px;
}


.bnws-tools-submit {
  border:none;
  margin-top:20px;
  border-radius: 5px;
  padding: 15px 30px 15px 30px;
  background-color:var(--bnws-col-main);
  line-height:1em;
  transition: all 0.3s ease;
  color:#fff;
  cursor:pointer;
  margin-right:10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2em;
}
.bnws-icon-button {
  border: none;
  border-radius: 5px;
  padding: 7px 8px;
  background-color: var(--bnws-col-main);
  line-height: 1em;
  transition: all 0.3s ease;
  color: #fff;
  cursor: pointer;
  margin-bottom: 5px;
  margin-left: 5px;
}
.bnws-tools-submit.pale {
  background: transparent;
  color: var(--bnws-col-gray);
}
.bnws-tools-submit.save {
  background-color: var(--bnws-col-gray);
}
.bnws-tools-submit.accept {
  background-color:var(--bnws-col-secondary);
}

.bnws-tools-submit:disabled,
.bnws-tools-submit[disabled],
.bnws-tools-submit[disabled]:hover {
  background-color: #cccccc;
  cursor: not-allowed;
}

.bnws-tools-submit:hover {
  opacity: 0.8;
}
.bnws-tools-submit.submitting {
  background-color:var(--bnws-col-gray3);
  cursor: not-allowed;
}
  

/*** CHECKBOXES ***/
 /* Customize the label (the container) */
 label.bnws-cb-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 25px;
}


/* Hide the browser's default checkbox */
.bnws-cb-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.bnws-cb-container input[type="checkbox"]:disabled {
  opacity: 0; 
}

/* Create a custom checkbox */
.bnws-cb-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--bnws-col-gray4);
}

/* On mouse-over, add a grey background color */
.bnws-cb-container:hover input ~ .bnws-cb-checkmark {
  background-color: var(--bnws-col-gray3);
}

/* When the checkbox is checked, add a blue background */
.bnws-cb-container input:checked ~ .bnws-cb-checkmark {
  background-color: var(--bnws-col-success);
}

/* Create the checkmark/indicator (hidden when not checked) */
.bnws-cb-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.bnws-cb-container input:checked ~ .bnws-cb-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.bnws-cb-container .bnws-cb-checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 

/*** RADIO ***/
 /* Customize the label (the container) */
 .bnws-radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
}

/* Hide the browser's default radio button */
.bnws-radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.bnws-radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--bnws-col-gray4);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.bnws-radio-container:hover input ~ .bnws-radio-checkmark {
  background-color: var(--bnws-col-gray3);
}

/* When the radio button is checked, add a blue background */
.bnws-radio-container input:checked ~ .bnws-radio-checkmark {
  background-color: var(--bnws-col-main);
}

.radio-title {
  font-size: 16px;
}

.bnws-custom-label-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  max-width: 350px;
}

.bnws-custom-label-wrapper > .bnws-tools-input-inner-box {
  width: 100%;
}
.bnws-input-field.bnws-custom-label-select {
  margin: 0;
}

/*** TABS ***/
.tab_bar {width:100%;display: flex;position:relative;z-index:1;-webkit-user-select: none;-moz-user-select: none;user-select: none;}
.tab_bar_scroller {position:absolute;top:0px;height:3px;width:20px;background:var(--bnws-col-main);z-index:1;border-top-left-radius: var(--bnws-whitespace-l1);
  border-top-right-radius: var(--bnws-whitespace-l1);}
.tab_item {padding: var(--bnws-whitespace-l1) var(--bnws-whitespace-l2);
  background-color: var(--bnws-col-gray7);
  border: none;
  margin-right: var(--bnws-whitespace-l0);
  cursor: pointer;
  position: relative;
  border-top-left-radius: var(--bnws-whitespace-l1);
  border-top-right-radius: var(--bnws-whitespace-l1);
  min-width: max-content;}
.tab_bar .active {background-color:#fff;border-bottom:1px solid #fff;}
.tab_item_content {width:100%;min-height: var(--bnws-whitespace-l5);
  position: relative;
  border-radius: var(--bnws-whitespace-l1);
  border-top-left-radius: 0;
  background-color: #fff;
  box-shadow: 0 var(--bnws-whitespace-l0) 0 var(--bnws-col-gray5);
  box-sizing: border-box;
  max-width: calc(100% - var(--bnws-whitespace-l5));
  margin-bottom: var(--bnws-whitespace-l6);
  margin-top: 0;
  padding: var(--bnws-whitespace-l5);;z-index:1;display:none;}
.tab_content .tab_item_content.active {display:block;}

/*.nav-content .tabs {height: auto;line-height: 0;border-bottom: 1px solid var(--adm-col-secondary);}
.nav-content .tabs .tab {background: var(--adm-col-secondary);}
.nav-content .tabs .tab.active {background: var(--bnws-col-main);}
*/

.bnws-tools-admin-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 20px;
}

/*** FORM, INPUT  ***/

form.bnws-form input[type="text"], form.bnws-form input[type="password"], form.bnws-form input[type="email"], form.bnws-form input[type="url"], form.bnws-form input[type="date"], form.bnws-form input[type="month"], 
form.bnws-form input[type="time"], form.bnws-form input[type="datetime"], form.bnws-form input[type="datetime-local"], form.bnws-form input[type="week"], form.bnws-form input[type="number"], 
form.bnws-form input[type="search"], input[type="search"], form.bnws-form input[type="tel"], form.bnws-form input[type="color"], form.bnws-form select, form.bnws-form textarea, .forminator-input,.bnws-select {
  display: inline-block;
  min-height: 40.4px;
  width: 100%;
  font-size: 14px;
  line-height: 42px;
  height: 42px;
  vertical-align: middle;
  background-color:var(--bnws-col-gray5);
  padding:0 var(--bnws-whitespace-l2);
  border:none;
  outline:none;
  border-bottom: 2px solid var(--bnws-col-gray4);
  border-radius: 0;
  color: var(--bnws-col-gray);
  -webkit-transition: var(--bnws-transition);
  -moz-transition: var(--bnws-transition);
  -ms-transition: var(--bnws-transition);
  -o-transition: var(--bnws-transition);
  transition: var(--bnws-transition);
  max-width: var(--bnws-max-input-width);
  margin:0;
}

form.bnws-form textarea {
  height: auto;
  line-height: unset;
  width: 100%;
  max-width: unset;
  padding: var(--bnws-whitespace-l2);
}

form.bnws-form input[type="text"]:hover, form.bnws-form input[type="password"]:hover, form.bnws-form input[type="email"]:hover, form.bnws-form input[type="url"]:hover, form.bnws-form input[type="date"]:hover, form.bnws-form input[type="month"]:hover, 
form.bnws-form input[type="time"]:hover, form.bnws-form input[type="datetime"]:hover, form.bnws-form input[type="datetime-local"]:hover, form.bnws-form input[type="week"]:hover, form.bnws-form input[type="number"]:hover, 
form.bnws-form input[type="search"]:hover, input[type="search"]:hover, form.bnws-form input[type="tel"]:hover, form.bnws-form input[type="color"]:hover, form.bnws-form select:hover, form.bnws-form textarea:hover,.bnws-select:hover {
  border:none;
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid var(--bnws-col-main-medium);
}

form.bnws-form input[type="text"]:focus, form.bnws-form input[type="password"]:focus, form.bnws-form input[type="email"]:focus, form.bnws-form input[type="url"]:focus, form.bnws-form input[type="date"]:focus, form.bnws-form input[type="month"]:focus, 
form.bnws-form input[type="time"]:focus, form.bnws-form input[type="datetime"]:focus, form.bnws-form input[type="datetime-local"]:focus, form.bnws-form input[type="week"]:focus, form.bnws-form input[type="number"]:focus, 
form.bnws-form input[type="search"]:focus, input[type="search"]:focus, form.bnws-form input[type="tel"]:focus, form.bnws-form input[type="color"]:focus, form.bnws-form select:focus, form.bnws-form textarea:focus,.bnws-select:focus {
  border:none;
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid var(--bnws-col-main);
  background-color:var(--bnws-col-main-medium);
}

form.bnws-form input[type="password"] {
  padding-right: 40px;
}

form.bnws-form input[type="text"].disabled, form.bnws-form input[type="password"].disabled, form.bnws-form input[type="email"].disabled, form.bnws-form input[type="url"].disabled, form.bnws-form input[type="date"].disabled, form.bnws-form input[type="month"].disabled, 
form.bnws-form input[type="time"].disabled, form.bnws-form input[type="datetime"].disabled, form.bnws-form input[type="datetime-local"].disabled, form.bnws-form input[type="week"].disabled, form.bnws-form input[type="number"].disabled, 
form.bnws-form input[type="search"].disabled, input[type="search"].disabled, form.bnws-form input[type="tel"].disabled, form.bnws-form input[type="color"].disabled, form.bnws-form select.disabled, form.bnws-form textarea.disabled, .forminator-input.disabled,.bnws-select.disabled, form.bnws-form input.disabled,
form.bnws-form input[type="text"]:disabled, form.bnws-form input[type="password"]:disabled, form.bnws-form input[type="email"]:disabled, form.bnws-form input[type="url"]:disabled, form.bnws-form input[type="date"]:disabled, form.bnws-form input[type="month"]:disabled, 
form.bnws-form input[type="time"]:disabled, form.bnws-form input[type="datetime"]:disabled, form.bnws-form input[type="datetime-local"]:disabled, form.bnws-form input[type="week"]:disabled, form.bnws-form input[type="number"]:disabled, 
form.bnws-form input[type="search"]:disabled, input[type="search"]:disabled, form.bnws-form input[type="tel"]:disabled, form.bnws-form input[type="color"]:disabled, form.bnws-form select:disabled, form.bnws-form textarea:disabled, .forminator-input:disabled,.bnws-select.disabled, form.bnws-form input:disabled {
  background-color: #bbb;
  border-color: #aaa;
  user-select: none;
  cursor: not-allowed;
}

.bnws-tools-input-inner-box.disabled {
  filter: grayscale(1);
  opacity: 0.9;
}

.bnws-tools-max-input {
  max-width: var(--bnws-max-input-width);
}

.bnws-tools-input-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: var(--bnws-max-input-width);
}

form.bnws-form .bnws-input-field .field-suffix,form.bnws-form .bnws-input-field .field-prefix, form.bnws-form .bnws-input-field .bnws-tools-clear-input  {
  background: var(--bnws-col-accent);
  height: inherit;
  color: #fff;
  font-weight: 600;
  display: flex;
  line-height: 42px;
  text-align: center;
  min-width: 42px;
  max-width: 42px;
  padding: 0 var(--bnws-whitespace-l0);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}

form.bnws-form .bnws-input-field .bnws-tools-clear-input {
  background: transparent;
  cursor: pointer;
  color: var(--bnws-col-gray3);
  transition: var(--bnws-transition);
  position: absolute;
  height: 42px;
  right: 0px;
}

form.bnws-form .bnws-input-field .has-suffix + .bnws-tools-clear-input {
  right: 42px;
}

form.bnws-form .bnws-input-field .bnws-tools-clear-input:hover {
  color: rgba(var(--bnws-rgb-error),1);
}

form.bnws-form input.error , form.bnws-form select.error, form.bnws-form textarea.error ,.bnws-input-field input.error {
  border:none;
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid rgb(var(--bnws-rgb-error));
}

.bnws-input-field {
  margin:var(--bnws-whitespace-l1) 0px;
  position: relative;
}

form.bnws-form .form-field > label, .bnws-input-field > label, .bnws-tools-form-element > label{
  width: 100%;
  display: flex;
  font-weight: 600;
  margin-bottom: var(--bnws-whitespace-l0);
  align-items: center;
}

div.bnws-input-field.bnws-wp-editor > label {
  margin-bottom: -24px;
  margin-top: 24px;
}

.ui-sortable-handle {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.ui-sortable-handle:active,.ui-sortable-helper {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  opacity: 0.7;
  background: var(--bnws-col-accent) !important;
}

.form-field .input-wrapper {
  position: relative;
  display: inline;
}

.bnws-forms-helper-text {
  display: block;
  font-size: 12px;
  color: var(--bnws-col-gray3);
  margin-top: var(--bnws-whitespace-l1);
}

.bnws-toggle-password,.field-icon{position: absolute;right: 5px;top: calc(50% - 12px);opacity: 0.6;cursor:pointer;user-select: none;transition: var(--bnws-transition);}
.bnws-toggle-password:hover{opacity: 1;}

.bnws-tools-wp-mediathek-image {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
}

.bnws-tools-form-optional {
  margin-left: var(--bnws-whitespace-l1);
  color: var(--bnws-col-gray3);
  font-weight: 400;
}

.bnws-tools-file-upload-wrapper {
  padding: var(--bnws-whitespace-l2);
  background: var(--bnws-cumato-col-text-10);
}
.bnws-tools-file-upload-wrapper input[type=file] {
  display: none;;
}

.bnws-tools-upload-file-list {
  list-style: none;
  margin: 0;
}

.bnws-tools-upload-file-list .file-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--bnws-whitespace-l2);
}

.bnws-tools-file-upload-drop-zone {
  border: 2px dashed var(--bnws-col-gray4);
  text-align: center;
  min-height: 120px;
  position: relative;
  padding: var(--bnws-whitespace-l2);
  transition: var(--bnws-transition);
}

.bnws-tools-drop-hint {
  display: none;
}

.bnws-tools-file-upload-drop-zone.empty > .bnws-tools-drop-hint {
  display: flex;
  opacity: 0.5;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.2em;
}

.bnws-tools-file-upload-drop-zone.empty > .bnws-tools-drop-hint .material-icons {
  font-size: 3em;
}

.bnws-tools-file-upload-drop-zone.active {
  border: 2px dashed var(--bnws-col-gray2);
}

.bnws-tools-upload-file-list .file-icon {
  margin-right: 10px;
  padding: var(--bnws-whitespace-l1);
  margin-bottom: var(--bnws-whitespace-l1);
  background: var(--bnws-col-accent);
  border-radius: var(--bnws-whitespace-l0);
  margin-right: var(--bnws-whitespace-l0);
  display: inline-block;
  line-height: 1.3;
}
.bnws-tools-upload-file-list .progress-bar {
  width: 100px;
  height: 10px;
  background-color: var(--bnws-col-gray4);
  margin: 0 10px;
  display: none;
  position: relative;
  transition: var(--bnws-transition);
}

.bnws-tools-upload-file-list .progress-bar > .progress-inner {
  height: 100%;
  background-color: var(--bnws-col-main);
  width: 0;
  transition: var(--bnws-transition);
}

.bnws-tools-upload-file-list .upload-status em {
  display: none;
}

.bnws-tools-upload-file-list .upload-status.uploading em.uploading {
  display: inline-block;
  color:rgba(var(--bnws-rgb-attention),1);
  animation: load8 1.1s infinite linear;
  width: 24px;
  height: 24px;
}

.bnws-tools-upload-file-list .upload-status.success em.success {
  display: inline-block;
  color:rgba(var(--bnws-rgb-success),1);
}

.bnws-tools-upload-file-list .upload-status.error em.error {
  display: inline-block;
  color: rgba(var(--bnws-rgb-error),1);
}

/*** FLEX COL ***/
.bnws-tools-flex-col {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap:var(--bnws-whitespace-l4);
  width: 100%;
  box-sizing: border-box;
}
.bnws-tools-flex-col.stretch {
  align-items: stretch;
}
.bnws-tools-flex-col.center {
  align-items: center;
}
.bnws-tools-flex-col.jcenter {
  justify-content: center;
}
.bnws-tools-flex-col.end {
  align-items: flex-end;
}
.bnws-tools-flex-col.jend {
  justify-content: center;
}
.bnws-tools-flex-col.no-gap,.bnws-tools-flex-col.padding-gap {
  gap:0;
}
.bnws-tools-flex-col.col-2 > div {
  width: calc(50% - 13.33px);
}
.bnws-tools-flex-col.padding-gap > div {
  padding: 0 var(--bnws-whitespace-l1);
}
.bnws-tools-flex-col.padding-gap > div:nth-child(1) {
  padding-left: 0;
}
.bnws-tools-flex-col.padding-gap > div:last-child {
  padding-right: 0;
}
.bnws-tools-flex-col.col-2.padding-gap > div:nth-child(1) {
  padding-right: var(--bnws-whitespace-l2);
  width: 50%;
}
.bnws-tools-flex-col.col-2.padding-gap > div:nth-child(2) {
  padding-left: var(--bnws-whitespace-l2);
  width: 50%;
}

.bnws-tools-flex-col.col-3 > div {
  width: calc(33.33% - 13.33px);
}

.bnws-tools-flex-col.col-4 > div {
  width: calc(25% - 13.33px);
}

.bnws-tools-flex-col.col-5 > div {
  width: calc(20% - 13.33px);
}

.bnws-tools-flex-col.col-3.padding-gap > div {
  width: 33.33%;
}

.bnws-tools-flex-col.col-4.padding-gap > div {
  width: 25%;
}

.bnws-tools-flex-col.col-5.padding-gap > div {
  width: 20%;
}

.sidebar-form .bnws-tools-flex-col {
  gap:10px;
}

.sidebar-form .bnws-tools-flex-col.col-2 > div {
  width: calc(50% - 5px);
}

.sidebar-form .bnws-tools-flex-col.col-3 > div {
  width: calc(33.33% - 5px);
}

.sidebar-form .bnws-tools-flex-col.col-4 > div {
  width: calc(25% - 5px);
}

.sidebar-form .bnws-tools-flex-col.col-5 > div {
  width: calc(20% - 5px);
}


@media (max-width: 767px) {
	.bnws-tools-flex-col {
		gap:10px;
	}
  .bnws-tools-flex-col.col-2 > div,.bnws-tools-flex-col.col-3 > div {
    width: calc(50% - 5px);
  }
  
  .bnws-tools-flex-col.col-4 > div, .bnws-tools-flex-col.col-5 > div {
    width: calc(33.33% - 5px);
  }
}

@media (max-width: 480px) {
  .bnws-tools-flex-col.col-2 > div,.bnws-tools-flex-col.col-3 > div {
    width: 100%;
  }
  
  .bnws-tools-flex-col.col-4 > div, .bnws-tools-flex-col.col-5 > div {
    width: calc(50% - 5px);
  }
}

/*** RECAPTCHA ***/
.bnws-hrc-box {
  position: relative;
}
.bnws-hrc-box.active {
  padding: var(--bnws-whitespace-l3) var(--bnws-whitespace-l2);
  background: var(--bnws-col-gray7);
  border: 2px solid var(--bnws-col-main);
}
.bnws-hrc-box label,.bnws-hrc-box input,.bnws-hrc-box select,.bnws-hrc-box textarea {
  opacity: 0.01 !important;
  position: absolute;
  width: 1px !important;
  height: 1px !important;
}
.bnws-hrc-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.bnws-hrc-numbers div {
  margin:0 var(--bnws-whitespace-l0);
  padding:var(--bnws-whitespace-l2);
  cursor: pointer;
  transition: var(--bnws-transition);
  font-weight: 500;
  min-width: 42px;
  text-align: center;
  user-select: none;
}
.bnws-hrc-question {
  text-align: center;
}
.bnws-hrc-logo {
  position: absolute;
  right: 3px;
  bottom: 1px;
  font-size: 8px;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.bnws-hrc-logo img {
  width: 12px;
  margin-right: var(--bnws-whitespace-l1);
}
.bnws-hrc-numbers div:hover {
  background-color: var(--bnws-col-gray4);
}
.bnws-hrc-success {
  display: flex;
  align-items: center;
  justify-content: center;
  background:linear-gradient(45deg, var(--bnws-col-main) 25%, var(--bnws-col-secondary) 50%, var(--bnws-col-main) 75%);
  background-size: 1000px 640px;
  color: #fff;
  padding: var(--bnws-whitespace-l2);
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: background_shimmer;
  animation-timing-function: linear;
}
.bnws-hrc-success i {
  margin-right: var(--bnws-whitespace-l2);
  font-size: 2em;
}
.bnws-hrc-blue {
  color:#0c5b88;
}
.bnws-hrc-red {
  color:rgba(var(--bnws-rgb-error),1);
}
.bnws-hrc-green {
  color:#359233;
}
.bnws-hrc-black {
  color:#000000;
}
.bnws-hrc-yellow {
  color:#ddd224;
}
.bnws-hrc-orange {
  color:#dd9924;
}
/*** ANIMATIONS ***/
.bnws_fading_load {
  opacity: 0;
  transition: var(--bnws-transition);
}
.bnws_fading_load.loading {
  opacity: 0.5;
}
.bnws_fading_load.loading_complete {
  opacity: 1;
}
.bnws_fading_load.loading span, .bnws_fading_load.loading input:not([type="checkbox"]),.bnws_fading_load.loading .loading-element {
  color: transparent;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeholder_shimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, var(--bnws-col-gray5) 8%, var(--bnws-col-gray4) 38%, var(--bnws-col-gray5) 54%);
  background-size: 1000px 640px;
  border-radius: inherit;
  border: 1px solid #fff;
  overflow: hidden;
  filter: blur(0.6px);
}
.bnws_fading_load.loading span *,.bnws_fading_load.loading .loading-element * {
  display: none;
}

@keyframes placeholder_shimmer{
  0%{
      background-position: -468px 0
  }
  100%{
      background-position: 468px 0
  }
}

@keyframes background_shimmer{
  0%{
      background-position: -468px 0;
  }
  100%{
      background-position: 468px 0;
  }
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*** GOOGLE RECAPTCHA ***/
.grecaptcha-badge {visibility: hidden;} 
div.google-recaptcha-hint {font-size:0.80em;color:#cccccc/*FB*/;color:var(--bnws-col-gray3);width:100%;margin-top:20px/*FB*/;margin-top:var(--bnws-whitespace-l5);line-height: 1.3;}
div.google-recaptcha-hint a {color:#cccccc/*FB*/;color:var(--bnws-col-gray3);text-decoration:underline;font-weight:unset;font-family: inherit;line-height: 1.3;}

/*** SNACKBAR ***/
.bnws-tools-snackbar,.bnws-tools-snackbar.top {
  position: fixed;
  max-width: 100%;
  margin: 0 auto;
  z-index: 99999;
  top: -200px;
  left: 0;
  right: 0;
  bottom:unset;
  width: auto;
  background: #fff;
  padding: var(--bnws-whitespace-l4) 10%;
  text-align: center;
  box-shadow: 1px 0 8px 1px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  font-weight: 600;
  cursor:pointer;
}
.bnws-tools-snackbar::after {
  content: 'close';
  position: absolute;
  font-family: 'Material Icons';
  right: 10px;
  top: 50%;
  font-size: 2em;
  transform: translateY(-50%);
  color:var(--bnws-col-gray);
  font-weight: normal;
}

.bnws-tools-snackbar.bottom {
  top:unset;
  bottom: -200px;
}

.bnws-tools-snackbar.error {
  background-color: rgba(var(--bnws-rgb-error),1);
  color:#fff;
  margin: 0;
  border: 0;
}

.bnws-tools-snackbar.success {
  background-color: rgba(var(--bnws-rgb-success),1);
  color:#fff;
}

.bnws-tools-snackbar.attention {
  background-color: rgba(var(--bnws-rgb-attention),1);
  color:#fff;
}

.bnws-tools-snackbar.error::after,.bnws-tools-snackbar.success::after,.bnws-tools-snackbar.attention::after {
  color:rgba(255,255,255,0.8);
}

/*** LOADER ***/
.bnws-tools-site-loader {
  background-image: none;position: fixed;left: 0px;top: 0px;right: 0px;bottom: 0px;height: 100%;width: 100%;
  background-color: rgba(0,0,0,0.6);
  background: rgba(67,44,115,0.6);
  background: linear-gradient(315deg, rgba(67,44,115,0.6) 0%, rgba(228,52,95,0.6) 100%); 
  z-index: 99999;display: none;opacity: 1;}
.bnws-tools-site-loader.onload {display: block;}
/*** SPINNER ***/
.bnws-tools-site-loader:after {content:" ";position:absolute;width: 10em;height: 10em;border-radius: 50%;left: calc(50% - 30px);top: calc(50% - 30px);font-size: 8px;  
  border-top: 1.1em solid rgba(67,44,115,1);
  border-right: 1.1em solid rgba(67,44,115,1);
  border-bottom: 1.1em solid rgba(67,44,115,1);
  border-left: 1.1em solid rgba(228,52,95,1);
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  font-size: 10px;
}