.elementor-225 .elementor-element.elementor-element-b919d5b{--display:flex;--min-height:60vh;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:40px;--padding-left:0px;--padding-right:0px;}.elementor-225 .elementor-element.elementor-element-b919d5b:not(.elementor-motion-effects-element-type-background), .elementor-225 .elementor-element.elementor-element-b919d5b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#015941;}.elementor-225 .elementor-element.elementor-element-07dad0b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:60px;--padding-bottom:60px;--padding-left:20px;--padding-right:20px;--z-index:3;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-225 .elementor-element.elementor-element-d436c6d{text-align:center;}.elementor-225 .elementor-element.elementor-element-d436c6d .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:54px;font-weight:600;line-height:51px;color:#EDEC42;}.elementor-225 .elementor-element.elementor-element-d2e6381{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(min-width:768px){.elementor-225 .elementor-element.elementor-element-07dad0b{--width:100%;}.elementor-225 .elementor-element.elementor-element-d2e6381{--content-width:500px;}}@media(max-width:767px){.elementor-225 .elementor-element.elementor-element-b919d5b{--padding-top:40px;--padding-bottom:40px;--padding-left:0px;--padding-right:0px;}.elementor-225 .elementor-element.elementor-element-d436c6d .elementor-heading-title{font-size:30px;line-height:1.1em;}}/* Start custom CSS for container, class: .elementor-element-d2e6381 */label{
    font-size: 16px;
    color: #fff;
    font-family: poppins, Sans-serif;
    margin-bottom:6px;
    margin-top:20px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.dropdown-selected {
    background-color: #1f7358;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #0e5941;
    border-radius: 100px;
    width: 100%;
    color:#fff;
    margin-bottom:10px;
}

.dropdown-options {
    position: absolute;
    background-color: #1f7358;
    border: 1px solid #1f7359;
    width: 100%;
    z-index: 99;
    max-height: 200px;
    color: #fff;
    border-radius: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
}

select{
    background-color: #1f7358;
    border: 1px solid #1f7359;
    width: 100%;
    color: #fff;
    border-radius: 10px;
}

select option{
    padding:10px;
}

.dropdown-options.show {
    display: block;
}
.dropdown-option {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.dropdown-option:hover {
    background-color: #0e5941;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #0e5941; 
  border-radius:10px
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #003023; 
}

#quoteSubmitButton {
   font-family: poppins, Sans-serif;
    font-weight: 600;
    fill: #015941;
    color: #015941;
    background-color: #edec42;
    border-style: solid;
    border-width: 2px;
    border-color: #edec42;
    border-radius: 100px 100px 100px 100px;
    padding: 14px 26px; border: none; cursor: pointer;
}



/* The container */
.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;
  margin-top:0px;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    background-color: #1f7359;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #043023;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #eeed43;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid #0e5941;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#categoryCheckboxes{
    padding-top:10px;
    padding-bottom:10px;
}/* End custom CSS */