/* Atcore custom css */


/* Load FontAwesome to create a pure CSS checkbox */

@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

/* Load open sans google font */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');


#mktoForm_1658, #mktoForm_9079  {
    width: 100% !important;
    max-width: 1200px!important;
    /*margin: auto!important;*/
}

#mktoForm_8872 {
    width: 100% !important;
    max-width: 1200px!important;
    /*margin: auto!important;*/
}

/*Make sure values are saved as NULL if no boxes are checked*/
INPUT[type="checkbox"][value="NULL"],
OPTION[value="NULL"],
INPUT[type="checkbox"][value="NULL"] + LABEL {
	display: none !important;
}

#mktoForm_1202 {
    width: 100% !important;
    max-width: 1200px!important;
    /*margin: auto!important;*/
}

.mktoForm {}

.mktoForm * {
    font-family: 'Open Sans', arial, sans-serif !important;
    font-size: 16px!important;
}

.mktoForm .mktoLabel {
    font-family: 'Open Sans', arial, sans-serif !important;
    padding-bottom: 2px !important;
    padding-top: 10px !important;
    font-weight: bold!important;
}

.mktoForm .mktoField {
    font-size: 16px!important;
}

.mktoCheckboxList input {
    opacity: 0;
    position: absolute;
}

.mktoHtmlText {
    width: 100%!important;
}
#header-text {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.mktoFieldWrap.mktoRequiredField {
    margin-bottom: 20px !important
}

.mktoForm ::placeholder {
    color: #333333 !important;
    font-size:12px;
}

.mktoForm fieldset {
    border: 0;
}


.mktoCheckboxList input, .mktoCheckboxList label {
padding-bottom: 10px!important;
}

div[style="width: 157px;"] {
column-count: 2 !important;
column-width: 410px !important;
column-gap: 180px !important;
}

/*Error Message handling */

.mktoErrorMsg,
.mktoError {
    display: none!important;
}

#error_message {
    display: none;
    color: #fff!important;
    margin-top: 15px!important;
    background-color: #8b0000!important;
    padding-left: 10px!important;
}

.show_error {
    display: block!important;
}

.mktoAsterix {
    display: none!important;
}

.mktoForm fieldset legend {
    margin: 0 0 2px!important;
    font-weight: 700!important;
    font-size: 18px!important;
    padding-top: 15px!important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.form_header {
    font-size: 22px!important;
    font-weight: 700!important;
}


/* Responsive form fields*/

.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm textarea.mktoField,
.mktoForm select.mktoField {
    width: 550px !important;
    padding: 0.5rem 0.5rem 0.5rem 9px !important;
    color: #333333 !important;
    border: none;
    border-bottom: 1px solid #D0D0CE!important;
    -webkit-appearance: none!important;
    border-radius: 0!important;
  background-color: #ffffff;
}

.mktoForm input[type=text]:focus,
.mktoForm input[type=url]:focus,
.mktoForm input[type=email]:focus,
.mktoForm input[type=tel]:focus,
.mktoForm input[type=number]:focus,
.mktoForm input[type=date]:focus,
.mktoForm textarea.mktoField:focus,
.mktoForm select.mktoField:focus {
    outline: none!important;
    box-shadow: -7px 10px 0px -7px #26890D, 7px 10px 0px -7px #26890D!important;
    transition: 0.2s ease all!important;
    -moz-transition: 0.2s ease all!important;
    -webkit-transition: 0.2s ease all!important;
    border-bottom: 1px solid #26890D!important;
}


/* mktoOffset space above fields*/

.mktoForm .mktoOffset {
    float: left;
    height: 0 !important;
    width: 40px !important;
}


/* Width Button*/

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    width: 300px;
}


/* color Button*/

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    background: #26890d !important;
}


/* hover color Button*/

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
    background-color: #47b02a !important;
    /*color: #000 !important;*/
}


/* padding Button*/

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    padding: 15px 15px 15px !important;
}


/* remove border Button*/

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    border: 0 !important;
    border-radius: 2px;
}


/* size Button*/

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    font-size: 16px !important;
    font-weight: bold !important;
}


/* center Button*/

.mktoButtonWrap {
    margin-left: 0 !important;
}

.mktoButtonRow {
    width: 100% !important;
    text-align: center;
    margin-top: 15px !important;
}


/* style checkbox fontawesome*/

.mktoCheckboxList input,
.mktoCheckboxList label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.mktoCheckboxList label {
    position: relative;
}

.mktoForm .mktoCheckboxList {
    width: 100%!important;
    min-width: 550px!important;
}


/* Edit the properties below to change the colors of the un-checked checkbox */

.mktoCheckboxList input+label:before {
    content: ''!important;
    background: #fff!important;
    border: 2px solid #ddd!important;
    display: inline-block!important;
    vertical-align: middle!important;
    width: 25px!important;
    height: 25px!important;
    padding: 2px!important;
    margin-right: 10px!important;
    text-align: center!important;
}

.mktoCheckboxListError input+label:before {
    border: 2px solid #8b0000!important;
    background: #FFB2B2!important;
}

/* Edit the properties below to change the colors of the checked checkbox */

.mktoCheckboxList input:checked+label:before {
    content: "\f00c"!important;
    font-family: 'FontAwesome'!important;
    background: #26890D!important;
    color: #fff!important;
    border-color: #26890D!important;
}

/*Privacy text*/
#LblmktoCheckbox_66741_0{
    max-width: 1100px;
}
#privacy-text{
    max-width: 1100px;
}

hr{
    padding: 0px!important;
}

body .mktoForm .mktoCheckboxList>label {
    margin-left: 0;
}

input.input-error[type="text"],
input.input-error[type=url],
input.input-error[type=email],
input.input-error[type=tel],
input.input-error[type=number],
input.input-error[type=date],
.mktoForm select.mktoField.input-error {
    border-bottom: 2px solid #8b0000!important;
}

.show-error-box {
    display: block!important;
}
/*Company field styling*/
.k-widget {
    width: 100%!important;
}
#LblCM_companyForm{
  width: 420px !important;
}
#company_field_wrapper{
    width: 100%!important;
    clear: both!important;
    display: block!important;
}

.company_button {
  border: 2px solid transparent;
  padding: 5px !important;
  width: 180px !important;
  font-size: 10px !important;
  text-align: center !important;
  display: inline-block;
  margin-top: 5px !important;
  background-color: buttonface;
  cursor: pointer;
  margin-right: 2px!important;
  line-height: 16px!important;
}

.company_button_image {
  width: 16px !important;
  height: 16px !important;
  display: none;
  float: right!important;
  margin: 1px;
  padding: 0px;
}

.cf_active {
  background-color: #26890d;
  color: #fff!important;
}

@media screen and (max-width: 1200px) {
    .mktoForm input[type=text],
    .mktoForm input[type=url],
    .mktoForm input[type=email],
    .mktoForm input[type=tel],
    .mktoForm input[type=number],
    .mktoForm input[type=date],
    .mktoForm textarea.mktoField,
    .mktoForm select.mktoField {
        width: 420px !important;
    }
    .mktoForm .mktoCheckboxList {
        min-width: 420px!important;
    }
    /*Privacy text*/
    #LblmktoCheckbox_66741_0{
        max-width: 850px;
    }
    #privacy-text{
        max-width: 850px;
    }
}
div[style="width: 157px;"] {
column-count: 2;
column-width: 410px;
column-gap: 50px;
}

@media screen and (max-width: 960px) {
div[style="width: 157px;"] {
    column-count: 1;
  }
  /*Privacy text*/
    #LblmktoCheckbox_66741_0{
        max-width: 420px;
        font-size: 14px!important;
    }
    #privacy-text{
        max-width: 420px;
    }
}


@media screen and (max-width: 680px) {
    .mktoForm {
        width: 100% !important;
    }
    #mktoForm_1202 {
        width: 100%!important;
        margin: auto!important;
    }

    #mktoForm_1658, #mktoForm_9079   {
        width: 100%!important;
        margin: auto!important;
    }
    /* Responsive form fields*/
    .mktoForm input[type=text],
    .mktoForm input[type=url],
    .mktoForm input[type=email],
    .mktoForm input[type=tel],
    .mktoForm input[type=number],
    .mktoForm input[type=date],
    .mktoForm textarea.mktoField,
    .mktoForm select.mktoField {
        width: 100% !important;
        /*padding:0.5rem 0.5rem 0.5rem 9px !important;
    color: #666 !important;
   border-width: 1px!important;
      border-color: #cccccc!important;
    border-style: solid!important;*/
    }
    .mktoFormCol,
    .mktoFieldWrap {
        width: 100% !important;
        clear: both!important;
        min-height: 0em !important;
    }
    /* mktoOffset space above fields*/
    .mktoForm .mktoOffset {
        float: left;
        height: 0 !important;
        width: 10px;
    }
    /* Full Width Button*/
    .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
        width: 100%;
    }
    #LblCM_companyForm {
      width: 100% !important;
    }

}

@media screen and (max-width: 480px) {
    .mktoForm {
        width: 100% !important;
        padding: 10px!important;
    }
    #mktoForm_1202 {
        width: 100%!important;
        margin: auto!important;
    }

    ./*mktoForm * {
        padding: 0px!important;
    }*/

    #mktoForm_1658, #mktoForm_9079   {
        width: 100%!important;
        margin: auto!important;
    }
    /* Responsive form fields*/
    .mktoForm input[type=text],
    .mktoForm input[type=url],
    .mktoForm input[type=email],
    .mktoForm input[type=tel],
    .mktoForm input[type=number],
    .mktoForm input[type=date],
    .mktoForm textarea.mktoField {
        width: 100% !important;
        padding: 1rem 1rem 1rem 9px !important;
    }
    .mktoForm select.mktoField {
        width: 100% !important;
    }

    .mktoForm .mktoCheckboxList {
        min-width: 120px!important;
    }
    .mktoFormCol,
    .mktoFieldWrap {
        width: 100% !important;
    }
    /* mktoOffset space above fields*/
    .mktoForm .mktoOffset {
        float: left;
        height: 0 !important;
        width: 10px;
    }
    /* Full Width Button*/
    .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
        width: 100%;
    }
}