.w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-checkbox::before {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

.w-checkbox::after {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  clear: both;
}

.w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}



/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-left: 8px;
  /* margin-bottom: 12px; */
  cursor: pointer;
  font-size: 12px;
  margin-top: 20px;
  /* margin-left: 20px; */
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 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;
  background-color: #eee;
}

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

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

/* 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: 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);
}


.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 85vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/solar_header.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: repeat-y;
  background-attachment: fixed;
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #263547;
}

.footer_link {
  display: block;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.marken {
  margin-bottom: 5px;
  margin-left: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  color: #9b9b9b;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.marken_logo {
  height: 30px;
  margin: 15px;
}

.marken_section {
  position: relative;
  padding-top: 20px;
  background-color: #fff;
}

.coop_logo {
  width: 200px;
  margin: 20px;
}

.coop_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.coop_claim {
  margin-bottom: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

.logo {
  margin-left: 0px;
}

.logo_img {
  position: static;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 999;
  height: 50px;
  margin: 8px;
}

.logo_img.slider {
  height: 33px;
}

.coop_logo_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.logo_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #263547;
}

.simple_mega_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: 30px 60px;
  padding: 40px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 2px 2px 53px 0 rgba(0, 0, 0, 0.2);
}

.simple_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px;
  max-width: 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.simple_text {
  height: 60px;
  max-width: 350px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.partner_section {
  padding-top: 120px; 
}

.pdevider {
  width: 150px;
  height: 4px;
  margin-bottom: 20px;
  background-color: #f23400;
  margin-top: 20px;
}

.bpartner_wrapper {
  display: flex;
  max-width: 450px;
  justify-content: flex-start;
  align-items: end;
  padding: 15px;
}

.pro_text {
  max-width: 350px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.pro_img {
  width: 40px;
  margin-right: 20px;
}

.pro_benefit {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.simple_wrapper_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  margin-left: 20px;
}

.simple_subtitle {
  margin-right: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.simple_title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 700;
}

.simple_title.no_margin_top {
  margin-top: 0px;
  margin-bottom: 10px;
}


.support_mega_wrapper {
  display: flex;
  width: 80%;
  margin: 30px 60px;
  padding-bottom: 0px;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 2px 2px 53px 0 rgba(0, 0, 0, 0.2);
}

.support_button {
  display: flex;
  padding: 15px 20px;
  background-color: transparent;
  border: 1px solid white;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  border-radius: 0px;
  color: white;
  height: 50px;
  white-space: nowrap;
}

.support_button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.support_button:active {
  background-color: #f23400;
}

.support_button:visited {
  background-color: #f23400;
}

.recall_button {
  padding: 15px 20px;
  background-color: transparent;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  border-radius: 0px;
  border: 1px solid white;
  color: white;
}


.recall_button_header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.support_link {
  color: white;
  text-decoration: none;
  font-family: Roboto;
  font-size: 20px;
  margin-left: 12px;
}

.number_wrapper {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  margin-bottom: -15px;
}

.phone_input_field {
  height: 50px !important;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}


.support_image_wrapper {
  max-width: 50%;
  height: 100%;
  background-image: url('../images/goangebot_contact_photos.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.support_image {
  max-width: 50%;
}

.rueckruf_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid white;
  padding: 15px 20px;
}

.support_text_wrapper {
  display: flex;
  flex-direction: column;
}

.support_title {
  margin-right: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.support_text_section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding-right: 20px;
  padding-left: 30px;
  background-color: #263547;

}

.header_button {
  padding: 15px 20px;
  background-color: #f23400;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
}

.header_button:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.header_button.margin40 {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f23400;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.header_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
}

.tick_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #263547;
}

.claim_text {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 13px;
  line-height: 17px;
  font-weight: 300;
  text-decoration: none;
}

.claim_text.slider {
  color: #263547;
}

.tick_icon {
  margin-top: 20px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.tick_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  margin-left: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Roboto;
  color: #fff;
  font-weight: 500;
}

.tick_wrapper.hidden {
  margin-right: 40px;
  margin-left: 40px;
  padding-left: 20px;
}

.tick_wrapper.hidden_mobile {
  margin-left: 40px;
}


.imprint_card_fw {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 66rem;
  min-height: 600px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding: 20px;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.imprint_h1 {
  font-family: Roboto;
  font-size: 30px;
}

.imprint_section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-right: 30px;
  padding-left: 30px;
}

.imprint_p {
  font-family: Roboto;
}

.imprint_p.bold {
  font-weight: 700;
}

.body {
  font-family: Roboto;
}

.imprint_link {
  color: #333;
  text-decoration: none;
}

.imprint_link:hover {
  text-decoration: underline;
}

.marken_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.devider {
  width: 150px;
  height: 4px;
  margin-bottom: 20px;
  background-color: #f23400;
}

.devider.margin_bottom {
  margin-bottom: 40px;
}

.simple_desc {
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
}



.heading {
  margin-top: 10px;
  font-family: 'Libre Franklin', sans-serif;
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  letter-spacing: -1px;
}

.heading-2 {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
}

.fake_nav {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
  background-color: rgba(40, 54, 70, 0.53);
}

.tick_wrapper_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.main_section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tick_mega_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.benefit_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.benefit_img_left {
  width: 50%;
}

.benefit_wrapper {
  width: 80%;
  margin: 30px 60px;
  padding-top: 40px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  box-shadow: 2px 2px 53px 0 rgba(0, 0, 0, 0.2);
}

.benefit_text_section {
  width: 50%;
  padding-right: 20px;
  padding-left: 30px;
}

.benefit_mini_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.benefit_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.benefit_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.div-block-3 {
  width: 80%;
}


.outro_wrapper_wrapper{
  display: flex;
      width: 40rem;
      padding-top: 0rem;
      padding-right: 1rem;
      padding-left: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outro_wrapper {
  width: 100%;
}

.card_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.card_mega_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 800px;
  margin: 15px;
  padding-top: 0px;
  padding-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 2px 2px 53px 0 rgba(0, 0, 0, 0.2);
  font-family: 'Open Sans', sans-serif;
}

.card_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 180px;
  box-shadow: 1.5px 1.5px 1.5px 1.5px #dfdedea3;
  border-color: #DFDEDE;
  margin: 10px;
  padding: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  color: #666;
  text-decoration: none;
}

.card_box:hover {
  border-color: #f23400;
  background-color: hsla(0, 0%, 60.8%, 0.08);
  box-shadow: none;
}

.card_box:active {
  border-width: 2px;
  border-color: #f23400;
}

.card_box:focus {
  border-width: 2px;
  border-color: #f23400;
}

.icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.card_box_title {
  margin-top: 10px;
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
}

.card_box_title_br {
  margin-top: 10px;
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
}

.final_p {
  font-size: 18px;
  margin-top: 20px;
}

.final_pp {
  font-size: 22px;
}

.final_tick_wrapper {
  display: flex;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  justify-content: center;
}

.final_tick {
}

.dot {
  margin-right: 25px;
  margin-top: 25px;
}

.final_text_wrapper {
  padding: 20px;
}

.final_card_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 40rem;
  padding: 20px;
  /*
  padding-top: 0rem;
  padding-right: 10px;
  padding-left: 10px;
  */
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-style: solid;
  border-width: 1px;
  box-shadow: 1.5px 1.5px 1.5px 1.5px #dfdedea3;
  border-color: #DFDEDE;
}

.padding {
  padding: 40px;
}


.gb {
  padding-left: 0px;
  color: #666;
  font-size: 18px;
  padding: 20px;
  line-height: 1.4rem;
}

.gbi {
  /*
  margin-bottom: 20px;
  */
}
.wrap_up_text_wrapper {

}

.final_ticks_wrapper {
  display: flex;
  margin: 10px;
  justify-content: space-around;
  width: 100%;
}

.final_tick_text {
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 0px;
}

.final_tick {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.wrap_up_text_wrapper {
  padding-left: 0px;
  color: #666;
  font-size: 18px;
  line-height: 1.4rem;
}

.wrap_up_text {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}

.wrap_up_info {
  color: #9b9b9b;
  font-size: 14px;
}

.card_wrapper_vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40rem;
  padding-top: 0rem;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.next_btn {
  margin-top: 30px;
  margin-right: 30px;
  margin-left: 40px;
  padding: 15px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
}


.card_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40rem;
  padding-top: 0rem;
  padding-right: 1rem;
  padding-left: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.card_nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.card_nav_space {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.final_nav {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.next_button {
  margin-top: 30px;
  margin-right: 30px;
  margin-left: 40px;
  padding: 15px 20px;
  background-color: #f23400;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.next_button:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}


.send_button {
  margin: 20px;
  padding: 15px 20px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 1.5px 1.5px 1.5px 1.5px #dfdedea3;
  border-color: #f23400;
  background-color: #f23400;
  font-family: 'Open Sans', sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.send_button:hover {
  background-color: rgba(240);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  box-shadow: none;
  background-color: rgba(240, 52, 0, 0.9);
}


.previous_button {
  margin-top: 10px;
  padding: 15px 20px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 1.5px 1.5px 1.5px 1.5px #dfdedea3;
  border-color: #DFDEDE;
  background-color: transparent;
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: 18px;
  font-weight: 400;
}

.previous_button:hover {
  background-color: hsla(0, 0%, 60.8%, 0.08);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  box-shadow: none;
}

.card_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100px;
  margin: 0px;
  padding: 20px 30px 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #263547;
}
.card_title {
  margin: 0px;
  color: #fff;
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
}

.progress_bar_wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}

.progress_bar {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 15px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: #DFDEDE;
}

.progress {
  height: 100%;
  width: 50%;
  background-color: #263547;
}


#progress1{
  height: 100%;
  width: 6.66%;
  background-color: #263547;
}

#progress2{
  height: 100%;
  width: 13.32%;
  background-color: #263547;
}
#progress3{
  height: 100%;
  width: 19.98%;
  background-color: #263547;
}
#progress4{
  height: 100%;
  width: 26.64%;
  background-color: #263547;
}
#progress5{
  height: 100%;
  width: 33.3%;
  background-color: #263547;
}
#progress6{
  height: 100%;
  width: 39.96%;
  background-color: #263547;
}
#progress7{
  height: 100%;
  width: 46.62%;
  background-color: #263547;
}
#progress8{
  height: 100%;
  width: 53.28%;
  background-color: #263547;
}
#progress9{
  height: 100%;
  width: 59.64%;
  background-color: #263547;
}
#progress10{
  height: 100%;
  width: 66.6%;
  background-color: #263547;
}
#progress11{
  height: 100%;
  width: 73.26%;
  background-color: #263547;
}
#progress12{
  height: 100%;
  width: 79.92%;
  background-color: #263547;
}
#progress13{
  height: 100%;
  width: 86.58%;
  background-color: #263547;
}
#progress14{
  height: 100%;
  width: 93.24%;
  background-color: #263547;
}
#progress15 {
  height: 100%;
  width: 100%;
  background-color: #263547;
}


#progress_1{
  height: 100%;
  width: 12.5%;
  background-color: #263547;
}
#progress_2{
  height: 100%;
  width: 25%;
  background-color: #263547;
}

#progress_3{
  height: 100%;
  width: 37.5%;
  background-color: #263547;
}
#progress_4{
  height: 100%;
  width: 50%;
  background-color: #263547;
}
#progress_5{
  height: 100%;
  width: 62.5%;
  background-color: #263547;
}
#progress_6{
  height: 100%;
  width: 75%;
  background-color: #263547;
}
#progress_7{
  height: 100%;
  width: 87.5%;
  background-color: #263547;
}
#progress_8{
  height: 100%;
  width: 100%;
  background-color: #263547;
}
#progress_9{
  height: 100%;
  width: 40.5%;
  background-color: #263547;
}
#progress_10{
  height: 100%;
  width: 45%;
  background-color: #263547;
}
#progress_11{
  height: 100%;
  width: 49.5%;
  background-color: #263547;
}
#progress_12{
  height: 100%;
  width: 54%;
  background-color: #263547;
}
#progress_13{
  height: 100%;
  width: 59.5%;
  background-color: #263547;
}
#progress_14{
  height: 100%;
  width: 64%;
  background-color: #263547;
}
#progress_15{
  height: 100%;
  width: 68.5%;
  background-color: #263547;
}
#progress_16{
  height: 100%;
  width: 73%;
  background-color: #263547;
}
#progress_17{
  height: 100%;
  width: 77.5%;
  background-color: #263547;
}
#progress_18{
  height: 100%;
  width: 82%;
  background-color: #263547;
}
#progress_19{
  height: 100%;
  width: 86.5%;
  background-color: #263547;
}
#progress_20{
  height: 100%;
  width: 91%;
  background-color: #263547;
}
#progress_21{
  height: 100%;
  width: 95.5%;
  background-color: #263547;
}
#progress_22{
  height: 100%;
  width: 100%;
  background-color: #263547;
}

.card_page_nav {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.card_page_wrapper {
  position: static;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 66rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav_claim_title {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-weight: 600;
}

.more_info_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.arrow_icon {
  width: 12px;
  height: 30px;
  margin-top: 9px;
  margin-left: 8px;
}

.heading-3 {
  height: 30px;
  color: #f23400;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.simple_benefit_title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.sub_footer_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

.location_footer_p {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.partner_logo_footer {
  height: 31px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.footer_title {
  display: block;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.back_to_top_button {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #394759;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.footer_content_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
}

.phone_input_field {
  height: 40px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.phone_input_field_right {
  height: 40px;
  margin-bottom: 20px;
}

.submit-button {
  height: 40px;
  background-color: #f23400;
}

.support_call_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.success_message {
  margin-top: 14px;
  margin-bottom: 14px;
  background-color: #f23400;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

.error_message {
  margin-top: 19px;
  margin-bottom: 19px;
  background-color: #fd7c7c;
}

.coop_logo_footer {
  width: 110px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.div-block-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(40, 54, 70, 0.53);
}

.claim_text_light {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.claim_text_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.bold-text {
  font-size: 14px;
}

.icon_text_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.card_section_fw {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #f2f2f2;
}

.card_mega_box_fw {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 66rem;
  min-height: 600px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.card_header_grey {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-height: 100px;
  margin-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #636c76;
}

.list_item {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  margin-bottom: 10px;
}

.marken_section_fw {
  padding-top: 20px;
}

.marken_logo_fw {
  height: 20px;
  margin: 15px;
}

.marken_fw {
  margin-bottom: 5px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.div-block-5 {
  width: 100%;
  padding: 5px 10px;
  background-color: #9b9b9b;
}

.copy_fw {
  margin-bottom: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.copy_section_fw {
  width: 100%;
  padding: 5px 10px;
}

.body-2 {
  background-color: #f2f2f2;
}

.marken_wrapper_fw {
  margin-top: 30px;
}

.simple_desc_subtitle {
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
}

.simple_image_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.simple_num {
  width: 80px;
  margin: 14px;
}

.full_width_text_area {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.text-field {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.zip-field {
  height: 50px;
  max-width: 250px;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.textarea {
  width: 90%;
  min-height: 300px;
  margin-right: 20px;
  margin-left: 20px;
  padding-left: 12px;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.form-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.input_field {
  width: 100%;
  height: 50px;
  /*
  margin-right: 20px;
  margin-left: 20px;
  */
  border-style: solid;
  border-width: 1px;
  border-color: #9b9b9b;
  font-size: 18px;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
}

.form-3 {
  padding-right: 20px;
  padding-left: 20px;
}

.select-field {
  width: 100%;
  height: 50px;
  /* margin-left: 20px; */
  border-style: solid;
  border-width: 1px;
  border-color: #9b9b9b;
  background-color: #fff;
  color: #9b9b9b;
  font-size: 18px;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.checkbox {
  width: 20px;
  height: 20px;
  margin-right: 20px;
  margin-left: 20px;
  border-color: #9b9b9b;
  border-radius: 0px;
}

.checkbox_wrapper {
  display: inline-block;

}

.checkbox-field {
  display: flex;
  height: auto;
  width: 100%;
}

.text-block {
  text-align: center;
}

.icon_wide {
  height: 60px;
  margin-bottom: 10px;
}

.icon_high {
  width: 60px;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .simple_text {
    height: 130px;
  }
  .tick_wrapper {
    overflow: visible;
  }
  .tick_wrapper.hidden {
    display: none;
  }
  .tick_wrapper.hidden_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .marken_wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .benefit_img_left {
    width: 100%;
  }
  .benefit_text_section {
    width: 100%;
  }
  .benefit_mini_section {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .benefit_mini_section.wrap_reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }

  .support_text_section {
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center;

  }

  .card_section {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .next_button {
    margin-top: 25px;
  }
  .previous_button {
    margin-top: 25px;
  }
  .footer_content_wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .card_section_fw {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .card_mega_box_fw {
    width: 100%;
    min-width: auto;
  }
}

@media screen and (max-width: 767px) {

  .container {
    margin-left: 0px;
  }

  .logo {
    margin-left: 10px;
  }
  .logo_img.slider {
    margin-left: 0px;
  }
  .simple_mega_wrapper {
    width: 80%;
    height: 100%;
  }
  .simple_text {
    height: auto;
  }
  .simple_wrapper_container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .support_image_wrapper {
    display: none;
  }
  .support_text_wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0px;
  }
  .tick_section {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tick_wrapper.hidden_mobile {
    margin-right: 10px;
  }
  .support_mega_wrapper {
    height: 100%;
  }
  .heading {
    font-size: 54px;
  }
  .tick_wrapper_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .benefit_img_left {
    display: block;
  }
  .benefit_wrapper {
    height: 100%;
  }
  .benefit_text_section {
    width: 100%;
  }
  .card_box {
    width: 140px;
    height: 140px;
  }
  .icon {
    width: 40px;
    margin: 10px;
  }

  .card_box_title {
    margin: 0px;
    text-align: center;
  }

  .card_box_title_br {
    margin: 0px;
    text-align: center;
  }

  .card_wrapper {
    width: 100%;
  }
  .card_header {
  }
  .card_header_grey {
    height: 100%;
  }
  .bold-text-2 {
    display: none;
  }
  .input_field {
    margin-left: 0px;
  }
  .select-field {
    margin-left: 0px;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
  }

  .checkbox-field {
    padding-left: 0px;
  }
  .icon_wide {
    width: 40px;
  }
  .icon_high {
    width: 40px;
  }
}

@media screen and (max-width: 479px) {

  .number_wrapper {
    flex-wrap: wrap;
  }



  .final_tick_wrapper {
    display: flex;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    justify-content: center;
  }

  .padding {
    padding: 10px;
  }

  .gb {
    padding: 20px 20px 20px -20px;
    color: #666;
    font-size: 18px;
    line-height: 1.4rem;
  }

  .final_tick {
    margin: 0px;
  }

  .final_ticks_wrapper {
    display: flex;
    flex-direction: column;
    margin: 20px;
    justify-content: flex-start;
    width: 100%;
  }

  .final_card_wrapper {
    width: 100%;
  }

  .container {
    margin-left: 0px;
  }

  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  .marken_logo {
    height: 20px;
  }
  .logo {
    margin-left: 5px;
  }
  .coop_logo_wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .simple_mega_wrapper {
    margin-right: 10px;
    margin-left: 10px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .simple_wrapper_container {
    margin-right: 10px;
    margin-left: 10px;
  }
  .simple_title {
    text-align: center;
  }
  .header_button.margin40 {
    margin-right: 14px;
    margin-left: 14px;
    font-size: 16px;
    text-align: center;
  }
  .header_wrapper {
    margin-left: 0px;
  }
  .tick_section {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .tick_wrapper.hidden_mobile {
    display: none;
  }
  .support_mega_wrapper {
    margin-right: 10px;
    margin-left: 10px;
  }
  .heading {
    font-size: 36px;
  }
  .heading-2 {
    text-align: center;
  }
  .benefit_wrapper {
    margin-right: 10px;
    margin-left: 10px;
  }
  .card_box {
    width: 100%;
    height: auto;
    padding: 5px 15px 5px 5px;
  }
  .icon {
    width: 40px;
    height: 40px;
    margin-right: 40px;
    margin-left: 20px;
  }
  .card_box_title {
    text-align: left;
  }

  .card_box_title_br {
    text-align: left;
    margin-bottom: -24px;
  }

  .card_wrapper {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }

  li:before {
    content: "•"; color: red;
    display: inline-block; width: 1em;
    margin-left: -1em
  }

  .card_header {
    width: 100%;
  }
  .simple_benefit_title {
    text-align: left;
  }
  .form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .icon_text_wrapper {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card_header_grey {
    width: 100%;
    height: 100%;
  }
  .marken_logo_fw {
    height: 20px;
  }
  .simple_desc_subtitle {
    text-align: center;
  }
  .input_field {
    margin-right: 0px;
    margin-left: 0px;
  }
  .form-3 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .select-field {
    margin-left: 0px;
    -webkit-appearance: none;
-webkit-border-radius: 0px;
  }
  .icon_wide {
    width: 40px;
    height: 40px;
    margin-right: 40px;
    margin-left: 20px;
  }
  .icon_high {
    width: 40px;
    height: 40px;
    margin-right: 40px;
    margin-left: 20px;
  }
}
