@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..700;1,300..700&display=swap');

/* Common CSS */
.mktoForm, 
.mktoForm.mktoLayoutAbove .mktoRadioList, 
.mktoForm.mktoLayoutAbove .mktoCheckboxList{
    font-family: "Rubik", serif!important; 
}

.mktoForm * a{padding:0px!important}

form.mktoForm{
    background: transparent;
    max-width: 980px;
    margin: 0 auto;
    margin-top: 30px;
	margin-bottom:30px;
}

.mktoForm .mktoFormCol,
.mktoForm, .mktoForm .mktoFieldWrap,
.mktoForm .mktoRequiredField label.mktoLabel,
.mktoForm.mktoLayoutAbove .mktoRadioList, 
.mktoForm.mktoLayoutAbove .mktoCheckboxList{
  width:100%!important 
}

.mktoForm label.mktoLabel{
  font-family: "Rubik", serif !important;
  color: #1f1f1f;
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 5px;
  width:100%!important;
}

/* Input 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{
  border:1px solid #a5a9ae;
  border-radius: .75rem;
  color: #696969;
  font-size: .75rem!important;
  font-weight: 400;
  line-height: 18px!important;
  padding: 0.813rem 0.938rem!important;
  width: 100%!important;
  height:42px!important;
  outline:none!important
}

.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{
 border-color: #1f1f1f!important;
    box-shadow: none !important;
    color: #1f1f1f; 
}

/* Textarea */
textarea#Enquiry__c, .mktoForm textarea.mktoField{
 height:220px!important; 
  padding:13.5px 1.5rem!important;
  resize:auto!important;
  min-height:calc(1em + 1.626rem + 1px*2)
}


/* Select */
.mktoForm select.mktoField{
    border: 1px solid #a5a9ae;
    padding-bottom: 1.1115em;
    padding-top: 1.1115em;
    background: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('https://connect.collaw.edu.au/rs/185-AOC-444/images/down-arrow.png?version=0');
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 15px 14px;
    border-radius: .75rem;
    color: #696969;
    display: block;
    font-size: .75rem;
    font-weight: 400;
    line-height: 18px!important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.mktoForm select.mktoField:focus-visible {
 outline:none!important 
}


/* CHECKBOX */
.mktoForm .mktoCheckboxList > label{
	font-family: "Rubik", serif !important;
	line-height: 22px!important;
    margin-top: 0px!important;
    font-size: .875rem;
    font-weight: 400;
    margin-bottom: .5rem!important;
	margin-left: 1.4em!important;
	color:#33475b;
	position:relative;
	top:4px
}
 
.mktoForm .mktoCheckboxList > input{
 margin-top: 3px;
    border: 1px solid #dee2e6;
    width: 24px;
    height: 24px;
   margin-right: 8px;
    border-radius: .75rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mktoForm input[type=checkbox]:checked{
  background-image: url(https://connect.collaw.edu.au/rs/185-AOC-444/images/check-mark.png?version=0);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 65%;
    background-color: #1b1ba4;
  border-color:#1b1ba4
}

.mktoForm input[type=checkbox]:focus{
   border-color: #696969!important;
}

/* RADIO BUTTON */
.mktoForm .mktoRadioList > label{
	font-family: "Rubik", serif!important; 
	line-height: 25px!important;
    margin-top: 0px!important;
    font-size: 14px;
    margin-bottom: 5px!important;
	color:#33475b;
	display:flex!important;
}
.mktoForm .mktoRadioList > input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #696969;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  margin-right:8px;
}

.mktoForm .mktoRadioList > input[type="radio"]:checked {
  background-color: #fff;   
 border-color: #696969;      
}

.mktoForm .mktoRadioList > input[type="radio"]:active{
    background:#e9ecef
}

.mktoForm .mktoRadioList > input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #696969; 
}

/* ERROR MSG */
.mktoForm .mktoError .mktoErrorMsg {
    background: transparent!important;
    border: 0!important;
    box-shadow: none!important;
    color: #dc4937!important;
    text-shadow: none!important;
    background-image: none!important;
    margin: 0!important;
    padding: 8px 0 0 !important;
    display: inline !important;
    font-family: Rubik;
    font-size: .75rem;
    font-weight: 400 !important;
}

.mktoForm .mktoError .mktoErrorArrowWrap{
	display:none 
}

.mktoForm .mktoError{
	position:initial!important; 
	display:none!important;
}

.mktoForm .mktoRequiredField .mktoAsterix {
	float:right!important;
} 


/* BUTTON */
.mktoButtonRow{
 margin-top:25px !important
}

span.mktoButtonWrap.mktoRound{
  margin-left:0px!important;
  padding:10px 0;
}

.mktoForm .mktoButtonWrap.mktoRound .mktoButton{
  display: inline-block;
  width: auto !important;
  padding: .75rem 1.5rem!important;
  border:2px solid #00adee!important;
  border-radius: 6.25rem!important;
  background: #00adee!important;
  color: #000!important;
  font-family: Rubik!important;
  line-height: 1.5!important;
  font-size: .75rem!important;
  font-weight: 700!important;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.mktoForm .mktoButtonWrap.mktoRound .mktoButton:hover{
  background-color: #1b1ba4!important;
  border-color: #1b1ba4!important;
  color: #fff!important; 
}

/* RICH TEXT */
.mktoHtmlText {
  color: #000000;
  font-family:"Rubik",sans-serif; 
  font-size:0.875rem;
  line-height:1.5;
  width:100%!important;
}
 
.form_richText a, .mktoCaptchaDisclaimer a{
color:#00adee;
  text-decoration:underline;
}
 
.form_richText a:hover, .mktoCaptchaDisclaimer a:hover{
  text-decoration:none;
  color:#00adee;
}
 
.form_richText .privacy_policy a, .mktoCaptchaDisclaimer a{
  padding:0 !important;
}

/* Asterix */
.mktoForm.mktoLayoutAbove .mktoRequiredField .mktoAsterix{
 display:none; 
}
.mktoField.mktoInvalid{
 border:1px solid #a5a9ae!important 
}
.mktoAsterix1{
  color: #F00;
}


/* Footer Disclaimer context Color changes */ 
.introWithForm-content-col-inner .form_richText.privacy_policy,
.introWithForm-content-col-inner .mktoCaptchaDisclaimer{
	color:#696969
	}

.introWithForm-content-col-inner .form_richText a, 
.introWithForm-content-col-inner .mktoCaptchaDisclaimer a{
	color: #0000ee;
	}

.introWithForm-content-col-inner .form_richText a:hover, 
.introWithForm-content-col-inner .mktoCaptchaDisclaimer a:hover{
	color:#0000ee;
}

/* THANK YOU MESSAGE */
.thank-you-message{
    padding: 0;
    max-width: 980px;
    margin: 50px auto 30px;
    font-family: 'Rubik', sans-serif;
	color:#000000;
}

.thank-you-message p{
	font-size:14px;
}

@media only screen and (max-width: 480px) {
    .mktoForm .mktoGutter, .mktoForm .mktoOffset{
		display:block!important;
		float:none!important;
	}
}

@media screen and (max-width:992px) and (min-width:587px){
form.mktoForm, .thank-you-message{
   width:auto!important; 
   padding:15px 20px;
  }
}

@media only screen and (max-width: 586px) {
  .mktoForm, .mktoForm * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        padding: 10px;
    }
  
  form.mktoForm, .thank-you-message{
   width:auto!important; 
  }
  .mktoForm .mktoFormCol{
   padding:0; 
  }

}