fieldset {
  padding: 0;
  margin: 0;
  border: 0; }
  
.field {
  background: transparent;
  font-weight: 400;
  color:#495057;
  outline: none;
  cursor: text;
}

.field::-webkit-input-placeholder {
  color: #aab7c4;
}
.field::-moz-placeholder {
  color: #aab7c4;
}
.field:-ms-input-placeholder {
  color: #aab7c4;
}
  
fieldset .select::after {
  content: '';
  position: absolute;
  width: 9px ;
  height: 5px;
  right: 20px;
  top: 20px;
  margin-top: -2px;
  background-image: url(/sitepkg/img/dropdown.svg);
  pointer-events: none;
  color: black;
}

fieldset input:disabled {
  border-style: none;
  outline: none ;
  color: #313b3f ;
  border: none !important;
  background: transparent !important;
}

fieldset select {
  border-style: none ;
  outline: none ;
  -webkit-appearance: none ;
  -moz-appearance: none ;
  appearance: none ;
  outline: none;
  cursor: pointer ;
  outline:0;
}

fieldset select:disabled {
  border-style: none ;
  outline: none ;
  -webkit-appearance: none ;
  -moz-appearance: none ;
  appearance: none ;
  outline: none;
  color: #313b3f;
  cursor: pointer ;
  background: none !important;
  background: transparent !important;
  outline:0;
}

fieldset select:focus {
  color: #495057;
}

::-webkit-input-placeholder {
  color: #cfd7e0 ;
}
::-moz-placeholder {
  color: #cfd7e0 ;
  opacity: 1 ;
}
:-ms-input-placeholder {
  color: #cfd7e0 ;
}

fieldset input:-webkit-autofill,
fieldset select:-webkit-autofill {
  -webkit-text-fill-color:#495057;
  transition: background-color 100000000s;
  -webkit-animation: 1ms void-animation-out 1s ;
  animation: 1ms void-animation-out 1s;
}

fieldset select::-ms-value {
    background: none;
}

fieldset select:invalid,
fieldset select:disabled:invalid { 
  color: #313b3f; 
}


fieldset select:required:invalid,
fieldset select:invalid
{
  color: #313b3f;
}

fieldset option[value=""][disabled] {
  display: none;
}

fieldset input:not([disabled]) {
  background-color: #F5F5F5;
}

fieldset select:not([disabled]):not(.iscountry) {
  background-color: #F5F5F5;
}

fieldset input:disabled, 
fieldset select:disabled {
  background-color: transparent;
}

#country {
display: flex;
align-items: center;
background-color: #F5F5F5;
}


#country select {
margin: 0 -15px 0 -35px;
padding: 0 15px 0 30px;
}

#country select:focus {
  background: transparent;
}


#country::before {
display: inline-flex;
content: '';
width: 25px;
height: 15px;
background-position: 5px 0px;
background-repeat: no-repeat;
margin-right: 10px;
background-size: contain;
}


fieldset textarea {
/* border: none; */
overflow: auto ;
outline: none ;
-webkit-box-shadow: none ;
-moz-box-shadow: none ;
box-shadow: none ;
resize: none ;
}

fieldset textarea:not([disabled]) {
background-color: #F5F5F5 ;
}

fieldset textarea:disabled {
background-color: transparent !important;
}

button.vanity {
display: block;
background: #078494;
color: #fff;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
border-radius: 4px;
border: 0;
font-weight: 500;
width: 200px;
height: 30px;
outline: none;
cursor: pointer;
transition: all 0.15s ease;

}

button.vanity:focus {
background: #078494;
}

button.vanity:hover {
transform: translateY(-1px);
box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1),
0 3px 6px 0 rgba(0, 0, 0, 0.08);
}

button.vanity:active {
background: #078494;
}

.col-form-label {
display: flex;
margin: auto;
align-items:center;
/* justify-content:center; */
}





/* CUSTOM CHECKMARK */
.custom-check {
  margin: 0px;
  display: block ;
  position: relative ;
  padding-left: 35px ;
  /* min-height: 20px; */
  margin-bottom: 8px;
  cursor: pointer ;
  font-size: 14px ;
  -webkit-user-select: none ;
  -moz-user-select: none ;
  -ms-user-select: none ;
  user-select: none ;
}

.custom-check input {
  position: absolute ;
  opacity: 0 ;
  cursor: pointer ;
  height: 0 ;
  width: 0 ;
  box-sizing: border-box;
  
}

.checkmark {
  position: absolute ;
  top: 0 ;
  left: 0 ;
  height: 20px ;
  width: 20px ;
  background-color: #eee ;
}

.custom-check:hover input ~ .checkmark {
  background-color: #ccc ;
}

.custom-check input:checked ~ .checkmark {
  background-color: #2196F3 ;
}

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

.custom-check input:checked ~ .checkmark:after {
  display: block ;
}

.custom-check .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) ;
}

/* ========================== */


/* NEW CUSTOM SELECT */

select.custom_select_eckles {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
  min-height: 20px;
  color:#000000;
}
select.custom_select_eckles::-ms-expand {
  display: none;
}

.select_eckles {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  border: 1px solid #777;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}

.select_eckles.with_max_min {
  min-width: 15ch;
  max-width: 30ch;
}


.select_eckles select.custom_select_eckles, .select_eckles::after {
  grid-area: select;
}
.select_eckles:not(.select_eckles--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color:  #777;
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
          clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select.custom_select_eckles:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid lightgray;
  border-radius: inherit;
}

select.custom_select_eckles[multiple] {
  padding-right: 0;
  /*
   * Safari will not reveal an option
   * unless the select height has room to 
   * show all of it
   * Firefox and Chrome allow showing 
   * a partial option
   */
  height: 6rem;
  /* 
   * Experimental - styling of selected options
   * in the multiselect
   * Not supported crossbrowser
   */
}

select.custom_select_eckles[multiple] option {
  white-space: normal;
  outline-color: lightgray;
}

.select_ekles--disabled {
  cursor: not-allowed;
  background-color: #eee;
  background-image: linear-gradient(to top, #ddd, #eee 33%);
}

label.eckles {
  font-size: 1.125rem;
  font-weight: 500;
}

.select_eckles + label {
  margin-top: 2rem;
}



/* 
https://moderncss.dev/custom-select-styles-with-pure-css/
<label class="eckles" for="standard-select">Standard Select</label>
<div class="select_eckles">
  <select class="custom_select_eckles" id="standard-select">
    <option value="Option 1">Option 1</option>
    <option value="Option 2">Option 2</option>
    <option value="Option 3">Option 3</option>
    <option value="Option 4">Option 4</option>
    <option value="Option 5">Option 5</option>
    <option value="Option length">Option that has too long of a value to fit</option>
  </select>
  <span class="focus"></span>
</div>

<label for="multi-select">Multiple Select</label>
<div class="select select--multiple">
  <select id="multi-select" multiple>
    <option value="Option 1">Option 1</option>
    <option value="Option 2">Option 2</option>
    <option value="Option 3">Option 3</option>
    <option value="Option 4">Option 4</option>
    <option value="Option 5">Option 5</option>
    <option value="Option length">Option that has too long of a value to fit</option>
  </select>
  <span class="focus"></span>
</div> */


.select_double_arrow {
  background-color: white;
  border: thin solid grey;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.2em 2.0em 0.2em 0.7em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.9rem;
}
.select_double_arrow {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA3klEQVRIS+3VMU9CMRTF8d8zBL+aizoQFhx0kUk33RzdYMNFXUFnYeGrYYyaJiUxJHDLSxodbNKpfeffc9/pbaPyaCrr+3OA++z4rtT5Pg5GuMnCY9yWQEoBE1xhlUUP8YDrCBIB0vojLvGO0yz4hm4JJAKcYYoPHGOZAUdYoIMBXrc5iQAHeMlzviFygj7O8dkWEJU4XI8chALRhn9AVKHf70VRTHu4wFfbmKZLNKt50dLBnna0imcMd/2I0phWa3Y/D1e1Xa9BCZJG0VuQNpaWKMx72xS1Fl5/WN3BN+AgJhnZQlq4AAAAAElFTkSuQmCC');
  background-position: calc(100% - .5rem), 100% 0;
  background-size:  1.5em 1.5em;
  background-repeat: no-repeat;
}

.select_double_arrow:focus {
  /* border-color: blue; */
  outline: 0;
}





/* Switch Slider */

/* <label class="switch">
  <input type="checkbox">
  <span class="slider round"></span>
</label> */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #005f69;
}

input:focus + .slider {
  box-shadow: 0 0 1px #005f69;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* SLIDER WITH ONOFF INDICATOR */

.switch.withOnOff {
  width: 90px;
}

.switch.withOnOff input {
  display:none;
}

.switch.withOnOff .slider {
  background-color: #ca2222;
   border-radius: 34px;
}

.switch.withOnOff .slider:before {
  border-radius: 50%;
}

.switch.withOnOff input:checked + .slider {
  background-color: #2ab934;
}

.switch.withOnOff input:focus + .slider {
  box-shadow: 0 0 1px #005f69;
}

.switch.withOnOff input:checked + .slider:before {
  transform: translateX(55px);
}

/*------ ADDED CSS ---------*/
.switch.withOnOff .slider:after {
 content:'OFF';
 color: white;
 display: block;
 position: absolute;
 transform: translate(-50%,-50%);
 top: 50%;
 left: 50%;
 font-size: 10px;
 font-family: Verdana, sans-serif;
}

.switch.withOnOff input:checked + .slider:after {  
  content:'ON';
}

.slider_label {
  display: flex;
  align-items: center;
}

.slider_label > span {
  display: inline-block;
  padding: 2px 4px;
}

.ml-auto {
  margin-left: auto;
}

/* qwhwwjwhjwhwjkqkop */



/* RADIO BUTTON */

.radio {
  margin: 0.5rem;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #3197EE;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #3197EE;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}


/* 
<div class="container">
  <div class="radio">
    <input id="radio-1" name="radio" type="radio" checked>
    <label for="radio-1" class="radio-label">Checked</label>
  </div>

  <div class="radio">
    <input id="radio-2" name="radio" type="radio">
    <label  for="radio-2" class="radio-label">Unchecked</label>
  </div>

  <div class="radio">
    <input id="radio-3" name="radio" type="radio" disabled>
    <label for="radio-3" class="radio-label">Disabled</label>
  </div>
</div> */




/* ENHANCED NO BOOSTRAP */
.text_box_editor,
.text_box_editor_regular {
  margin: auto;
  display:block;
  padding:3px;
  border-radius: 4px;
  position: relative;
}

.text_box_editor label,
.text_box_editor input {
  display:block;
}

.text_box_editor label {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  padding: 4px;
}

.text_box_editor input[type=text],
.text_box_editor input[type=email],
.text_box_editor textarea {
  margin:0;
  padding:0;
  width: 100%;
  margin-bottom: 10px;
  padding: 2px;
  border: 1px solid transparent;
  background-color:  #ffffff!important;
  color: #000000;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgb(184, 207, 236);
}

.text_box_editor_regular .telephone-input_container {
  border-radius: 4px !important;
  border: 1px solid transparent !important;
  border: 1px solid rgb(184, 207, 236)!important;
  height: 30px !important;
  padding: 2px !important;
  background-color:  #ffffff!important;
  color: #000000 !important;
  margin-bottom: 10px;
}

.text_box_editor input[type=text],
.text_box_editor input[type=email] {
  height: 30px;
}


.text_box_editor input[type=text]:focus,
.text_box_editor input[type=email]:focus,
.text_box_editor textarea:focus {
  border: 1px solid #555;
}

.text_box_editor input[type=button], 
.text_box_editor button {
background-color: #000000;
border: none;
color: white;
padding: 4px;
width: 100%;
text-decoration: none;
cursor: pointer;
border-radius: 4px;
font-size: 17px;
height: 40px;
}

.text_box_editor .custom-check {
  text-align: left;
}

.text_box_editor .custom-check {
  padding-left: 30px;
}

.text_box_editor .custom-check .checkmark::after  {
  position:absolute;
  top: 2px;
  left: 5px;
}

.text_box_editor .form-check {
  display: inline-block;
}


/* SEARCHBOX WITH CLEAR BUTTON */
.search-box,
.search-wrapper .close-icon,
.search-wrapper {
    position: relative;
    padding: 5px;
}
.search-wrapper {
    width: 100%;
    margin: auto;
}
.search-box {
    width: 100%;
    border: 1px solid #ccc;
    outline: 0;
    border-radius: 10px;
}
.search-box:focus {
  border-color: rgba(82, 122, 79, 0.88) !important;
  -webkit-box-shadow: 0 0 5px rgba(109, 207, 246, .5) !important;
  -moz-box-shadow: 0 0 5px rgba(109, 207, 246, .5) !important;
  box-shadow: 0 0 5px rgba(109, 207, 246, .5) !important;
}

.close-icon-b {
    background-color: #000000;
    vertical-align: middle;
    outline: 0;
    position:absolute;
    
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    bottom: 0;
    z-index:10;
    box-shadow: 0 0 2px #a7a4a4;
  
    font-size: 16px;
    margin: 1px;
    border-radius: 50%;
    -webkit-border-radius:50%;
    color: #fff!important;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 0px;
}

.search-box:not(:valid) ~ .close-icon-b {
    display: none !important;
}




.search-wrapper-1.cf:before,
.search-wrapper-1.cf:after {
  content: "";
  display: table;
}

.search-wrapper-1.cf:after {
  clear: both;
}

.search-wrapper-1.cf {
  zoom: 1;
}

/* Form wrapper styling */
.search-wrapper-1 {
  width: 100%;
  margin: 10px auto 10px auto;
  /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px 0 rgba(255, 255, 255, 0.2); */
}

/* Form text input */

.search-wrapper-1 input {
  width: calc(100% - 72px);
  height: 40px;
  float: left;
  font: bold 15px "lucida sans", "trebuchet MS", "Tahoma";
  border: 0;
  background: #eee;
  border-radius: 3px 0 0 3px;
}

.search-wrapper-1 input:focus {
  outline: 0;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8) inset;
}

.search-wrapper-1 input::-webkit-input-placeholder {
  color: #999;
  font-weight: normal;
  font-style: italic;
}

.search-wrapper-1 input:-moz-placeholder {
  color: #999;
  font-weight: normal;
  font-style: italic;
}

.search-wrapper-1 input:-ms-input-placeholder {
  color: #999;
  font-weight: normal;
  font-style: italic;
}

/* Form submit button */
.search-wrapper-1 button {
  overflow: visible;
  position: relative;
  float: right;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 40px;
  width: 72px;
  font: bold 15px/40px "lucida sans", "trebuchet MS", "Tahoma";
  color: white;
  text-transform: uppercase;
  background: #d83c3c;
  border-radius: 0 3px 3px 0;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.search-wrapper-1 button:hover {
  background: #e54040;
}

.search-wrapper-1 button:active,
.search-wrapper-1 button:focus {
  background: #c42f2f;
  outline: 0;
}

.search-wrapper-1 button:before {
  /* left arrow */
  content: "";
  position: absolute;
  border-width: 8px 8px 8px 0;
  border-style: solid solid solid none;
  border-color: transparent #d83c3c transparent;
  top: 12px;
  left: -6px;
}

.search-wrapper-1 button:hover:before {
  border-right-color: #e54040;
}

.search-wrapper-1 button:focus:before,
.search-wrapper-1 button:active:before {
  border-right-color: #c42f2f;
}

.search-wrapper-1 button::-moz-focus-inner {
  /* remove extra button spacing for Mozilla Firefox */
  border: 0;
  padding: 0;
}




/* ==================================== */


textarea.custom_docen {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
  border-color: -moz-use-text-color #FFFFFF #FFFFFF -moz-use-text-color;
  border-image: none;
  border-radius: 6px 6px 6px 6px;
  border-style: solid;
  border-width: 1px;
  color: #555555;
  font-family: 'Merriweather',Helvetica,Arial,sans-serif;
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px 8px;
  transition: background-color 0.2s ease 0s;
  box-sizing: border-box;
}

textarea.custom_docen:focus {
    background: none repeat scroll 0 0 #FFFFFF;
    outline-width: 0;
}


.was-validated .no-selection {
  border-color: #dc3545;
}

.was-validated .yes-selection {
  border-color: #28a745;
}






 /* CUSTOM SELECT STYLES */
 .custom-select-editorv {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 35px;
  padding: 5px 8px 5px 7px;
  background: #fff url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>") no-repeat right 8px center;
  background-size: 10px;
  transition: border-color .1s ease-in-out,box-shadow .1s ease-in-out;
  border: 1px solid #ddd;
  border-radius: 3px;
  width:200px;
}
.custom-select-editorv:hover {
  border: 1px solid #999;
}
.custom-select-editorv:focus {
  border: 1px solid #999;
  /* box-shadow: 0 3px 5px 0 rgba(0,0,0,.2); */
  outline: none;
}
select.custom-select-editorv::-ms-expand {
  display:none;
}

.custom-select-editorv {
  font-family: Merriweather, serif;
  font-size: 0.9rem;
}

.custom-select-editorv:disabled {
  font-size: 0.9rem;
  opacity: 1;
  color: #495057;
}


/* CUSTOM SELECT WITH COUNTRY */

.custom-select-country-editorv {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 35px;
  padding: 5px 8px 5px 7px;
  transition: border-color .1s ease-in-out,box-shadow .1s ease-in-out;
  border: 1px solid #ddd;
  border-radius: 3px;
  width:100%;
  background: transparent;
  font-weight: 400;
  outline: none;
}

 
.custom_country::after {
  content: '';
  position: absolute;
  width: 15px ;
  height: 15px;
  right: 8px;
  top: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='15' height='15' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>");
  pointer-events: none;
  color: black;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


.custom-select-country-editorv:hover {
  border: 1px solid #999;
}
.custom-select-country-editorv:focus {
  border: 1px solid #999;
  /* box-shadow: 0 3px 5px 0 rgba(0,0,0,.2); */
  outline: none;
}
select.custom-select-country-editorv::-ms-expand {
  display:none;
}

.custom-select-country-editorv {
  font-family: Merriweather, serif;
  font-size: 0.9rem;
}

.custom_country {
  display: flex;
  align-items: center;
  width: 100% !important;
  position: relative;
}
  
  
.custom_country select {
  margin: 0 -15px 0 -35px;
  padding: 0 15px 0 30px;
}
  
.custom_country select:focus {
    background: transparent;
  }
  
  
.custom_country::before {
  display: inline-flex;
  content: '';
  width: 25px;
  height: 15px;
  background-position: 5px 0px;
  background-repeat: no-repeat;
  margin-right: 10px;
  background-size: contain;
  z-index: 100;
}


.custom-select-country-editorv:disabled {
  font-size: 0.9rem;
  opacity: 1;
  color: #495057;
}






/* CUSTOM INPUT STYLES */


.custom-input-editorv {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 35px;
  padding: 5px 8px 5px 7px;
  transition: border-color .1s ease-in-out,box-shadow .1s ease-in-out;
  border: 1px solid #ddd;
  border-radius: 3px;
  width:200px;
  box-sizing: border-box;
}
.custom-input-editorv:hover {
  border: 0.8px solid #999;
}
.custom-input-editorv:focus {
  border: 0.8px solid #999;
  outline: none;
}

.custom-input-editorv::-moz-placeholder,
.custom-input-editorv:-ms-input-placeholder,
.custom-input-editorv:-moz-placeholder,
.custom-input-editorv::-webkit-input-placeholder { /* Firefox 19+ */
  font-size: 0.8rem;
}





.center-item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
}


/* custom checkbox */

/* STYLE A */

.checkbox.style-a {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-a input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-a input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-a input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-a:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-a:hover input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-a .checkbox__checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #333;
  transition: background-color 0.25s ease;
  border-radius: 3px;
}
.checkbox.style-a .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-a .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
}

/* STYLE B */

.checkbox.style-b {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-b input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-b:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-b:hover input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-b .checkbox__checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #333;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-b .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-b .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
}

/* STYLE C */


/* <label class="checkbox style-e">
    <input type="checkbox"/>
      <div class="checkbox__checkmark"></div>
      <div class="checkbox__body">Style E</div>
</label> */

.checkbox.style-c {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-c:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-c:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c .checkbox__checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-c .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-c .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 14px;
}

/* STYLE D */

.checkbox.style-d {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-d input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-d:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-d:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-d:hover input ~ .checkbox__body {
  color: #f7cb15;
}
.checkbox.style-d .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-d .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-d .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}

/* STYLE E */

.checkbox.style-e {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-e input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark:after {
  left: 21px;
}
.checkbox.style-e:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-e:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-e .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 40px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-e .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  transition: left 0.25s ease;
}
.checkbox.style-e .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}

/* STYLE F */

.checkbox.style-f {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-f input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-f input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f input:checked ~ .checkbox__checkmark:after {
  transform: scale(1);
}
.checkbox.style-f input:checked ~ .checkbox__body {
  font-weight: bold;
}
.checkbox.style-f:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f:hover input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-f .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 22px;
  height: 22px;
  display: block;
  background-color: #f7cb15;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.25s ease;
}
.checkbox.style-f .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
}



/* MULTI SELECT DROPDOWN */

.multi-select-dropdown {
  width: 100%;
  min-height:31px; 
  position:relative;
  padding: 0px;
}

.menu-btn {
  height: 100%;
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  margin: 0px;
}

.menu-btn:focus {
  border-color: rgba(126, 239, 104, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
  outline: 0 none;
}

.menu-btn::after {
  content: "\2335";
  position: absolute;
  font-weight: normal;
  font-size: 23px;
  right: 10px;
  top: calc(50% - 20px);
}


.msd-menu {
  padding-top: 10px;
  z-index: 200;
  margin-top: 4px;
  position: absolute;
  width:100%;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  /* max-height: 160px; */
  max-height: 250px;
  overflow-y: scroll;
}

.msd-menu-option {
  width: 100%;
  padding: 6px 10px 6px;
}

.msd-menu span:hover {background-color: #F5F5F5;}
.msd-menu span label,
.msd-menu span label input {cursor: pointer;}

.was-validated .no-selection {
  border-color: #dc3545;
}


/* COPIED FROM SIGN-UP PAGE */

.embedded_notification {
  position: relative;
}

.embedded_notification span.pswd  {
  border-radius: 5px;
  display: block;
  font-size: 1.3em;
  text-align: center;
  position: absolute;
  background: #2F558E;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  width: 160px;
  padding: 7px 10px;
  color: #fff;
  font-size: 10px;
  z-index: 5;
  }
  
  .embedded_notification span.pswd:after {
  right: 50%;
  top: -5px;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #2F558E;
  }