
.claim-form-box {
  position: relative;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 30px 0;
  padding: 30px;
  border-radius: 5px;
}

.form-content-wrapper .step-title {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
}

.form-content-wrapper .form-group > label {
  margin-bottom: 2px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.inner-label-title {
  font-family: "Cabin", sans-serif;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.form-content-wrapper .form-group > label > span {
  color: red;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
}

.form-content-wrapper .form-control {
  border: 1px solid #d8d8d8;
  height: auto;
  outline: none !important;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  border-radius: 5px;
  padding: 7px 14px;
  line-height: 1.5;
}

.form-content-wrapper .form-control:focus {
  border-color: #000;
}

.error-field {
  color: red;
  font-size: 14px;
  display: block;
  margin-top: 2px;
  font-weight: 400;
}

.custom-cb-inline {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
}

.custom-cb-inline:last-child {
    margin-right: 0;
}

.checkbox-custom {
  display: block;
  position: relative;
  padding-left: 25px;
  margin: 5px 0;
  cursor: pointer;
  font-size: 15px;
  color: #000;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  margin-top: -2px;
}

.checkbox-custom:hover input ~ .checkmark {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}

.checkbox-custom input:checked ~ .checkmark {
  background-color: #00d258;
  border-color: #00d258;
}

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

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

.checkbox-custom .checkmark:after {
    left: 5px;
    top: 0px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.switch {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 70px;
	height: 26px;
	padding: 3px;
	margin: 0 10px 10px 0;
	border-radius: 18px;
	cursor: pointer;
	box-sizing:content-box;
}
.switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	box-sizing:content-box;
}
.switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 14px;
	text-transform: uppercase;
	background: #e5e5e5;
	border-radius: inherit;
	box-sizing:content-box;
}
.switch-label:before, .switch-label:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	box-sizing:content-box;
}
.switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #000;
}
.switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #FFFFFF;
	opacity: 0;
}
.switch-input:checked ~ .switch-label {
	background: #00d258;
}
.switch-input:checked ~ .switch-label:before {
	opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
	opacity: 1;
}
.switch-handle {
	position: absolute;
	top: 3px;
	left: 0px;
	width: 26px;
	height: 26px;
	background: #000;
	/* background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0); */
	border-radius: 100%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
	border-radius: 6px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
	left: 48px;
}
 
.switch-label, .switch-handle {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.btn.more-add-btn {
  background-color: #00d258;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 44px;
  font-size: 18px;
  border: 0;
  padding: 0;
}

.btn.more-add-btn:hover {
  background-color: #000;
}

.input-group-text {
  font-size: 14px;
  text-transform: capitalize;
  background-color: #e5e5e5;
  color: #000;
  font-weight: 400;
}

.form-control.sm-control {
  font-size: 14px;
  padding: 4px 8px;
  display: inline-block;
  margin: 0 3px;
  vertical-align: middle;
  width: auto;
}

.declaration-card {
  border-color: #e5e5e5;
  margin-bottom: 30px;
}

.declaration-card .card-title {
  font-size: 18px;
  font-weight: 600;
}

.declaration-card p, .declaration-card ul > li {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.declaration-card ul {
  padding-left: 15px;
}

.submit-btn {
  display: block;
  font-size: 16px;
  padding: 5px 18px;
  color: #fff !important;
  border: 1px solid transparent;
  border-radius: 5px;
  background: #00d258 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.submit-btn:hover {
  background-color: #000 !important;
  color: #fff;
}
.themegoods-navigation-wrapper .nav li:first-child > a, .themegoods-navigation-wrapper .nav li ul li:first-child > a, .themegoods-navigation-wrapper .nav li.current-menu-parent ul li:first-child > a {
    margin-top: 0px;
}
#success_div,#error_div{
  display: none;
}