 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --light-orange: #FCD0B4;
  --orange: #E34914;
  --orange-darker: #C83807;
  --orange-darkest: #AB2C00;
  --grey: #A3A3A3;
}

html, body {
  background-color: white;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;

  width: 100%;
}

h1 {
  margin-bottom: 1em;
  font-weight: normal;
  font-size: 2em;
  color: var(--orange);
}
h2 {
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 0.2em;
  color: var(--orange);
}

em {
  color: var(--orange);
  font-weight: 700;
  font-style: normal;
}

p {
  margin: 1em 0;
}

header {
  position: relative;
  z-index: 1;

  width: 100%;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  padding: 3em 5em 0 5em;
}

header::before {
  content: '';
  background-color: var(--orange);
  width: 100%;
  height: 2em;

  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + 0.5em);
  z-index: -1;
}

header .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  background-color: white;
  border: 4px solid var(--orange);
  border-radius: 10px;
  padding: 3.5em 2em;
  margin-right: 1em;

  height: 72px;
  width: 272px;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: auto;
}

header .left span {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

section {
  margin: 3em 0;
  padding: 0 5em;
}

.delivery-details, .product-details {
  background-color: var(--light-orange);
  padding: 1em;
  text-align: center;
  max-width: 1025px;
}

 form .delivery-details {
  padding: 1em 1em 1em 1em;
}

.product-details {
    display: flex;
    justify-content: space-around;
    padding: 2em 1em;
    text-align: center;
}

.columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow-x: hidden;
}
.columns .column {
  flex: 1;
  padding: 0 1em;
}

.banner-section {
  display: flex;
  flex-direction: row;
}
.banner-section .banner {
  background-color: var(--orange);
  flex: 1;
  padding: 1em;
  border-radius: 10px;
  font-weight: inherit;
  color: inherit;

  display: flex;
  flex-direction: row;
  align-items: center;
}
.banner-section .banner .logo {
  border-color: white;
  margin-right: 2em;
}
.banner-section .banner .text {
  font-size: 3em;
}
.banner-section .banner .text span {
  color: white;
}
.banner-section .buttons {
  width: 300px;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 1em;
}
.banner-section .buttons a {
  width: 100%;
}
.banner-section .buttons a:last-child {
  margin-top: 1em;
}

form .field {
  display: flex;
  align-items: center;
  margin: 1em 0;
}
form .right.field {
  padding: 0 1em;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

form .field label {
  margin-right: 1em;
  font-weight: 700;
  width: 25%;
  text-align: right;
}
form .field input {
  padding: 1em;
  flex: 1;
  border: 2px solid var(--orange);
}

form .field button, a:not(.plain) {
  padding: 1em 1.5em;
  border: 0;
  background-color: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
}
form .field button:hover,
a:not(.plain):hover {
  background-color: var(--orange-darker);
}
form .field button:active,
a:not(.plain):active {
  background-color: var(--orange-darkest);
}
form .field button:disabled,
a:not(.plain):disabled {
  background-color: var(--grey);
  cursor: not-allowed;
  opacity: .65;
}

a.plain {
color: var(--orange);
text-decoration: none;
}

a.plain:hover {
color: var(--orange);
text-decoration: underline;
}

ul li {
    margin-left: 20px;
    font-size: 13px;
}

ul li::marker {
    color: var(--orange);
    font-size: 18px;
}

.images {
    display: flex;
    justify-content: space-around;
    align-self: center;
}

.images img {
    max-width: 360px;
}


@media (min-width: 1100px) {
    .images img {
        border: 6px solid var(--orange);
        border-radius: 45px;
        width: 45%;
    }
}

@media (max-width: 1099px) {
    .images {
        display: none;
    }
}

hr {
    display: block; height: 3px;
    border: 0; border-top: 3px solid var(--orange);
    margin: 20px 0; padding: 0;
}

.delivery-details .terms {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1em;

  font-size: 0.8em;
  text-align: left;
}

.tdc {
	float: right;
	margin: -20px 15px 15px 15px;
	width: 100px;	  
}

.tdc a {
  padding: 0;
  border: 0;
  background-color: transparent;;
  color: white;
  text-decoration: none;
  border-radius: 0;
}

.product-details label {
    max-width: 300px;
    padding: 20px;
    display: block;
    margin: auto;
    cursor: pointer;
}

.product-details label img {
      border: 4px solid var(--orange); 
    /* border: 4px solid rgba(227, 73, 20, 0.5); */
  border-radius: 10px;
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.product-details label input[type="radio"] {
    
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
opacity: 0;
pointer-events: none;
}
[type="radio"]:checked + div,
[type="radio"]:not(:checked) + div
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    margin-left: -25px;
}
[type="radio"]:checked + div:before,
[type="radio"]:not(:checked) + div:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--orange);
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + div:after,
[type="radio"]:not(:checked) + div:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--orange);
    position: absolute;
    top: 16px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + div:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + div:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.product-details h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.product-details h5 {
    font-size: 18px;
    color: var(--orange);
}

.strike {
    text-decoration: line-through;
    color: black;
}

@media (max-width: 900px) {
  header {
    background-color: var(--orange);
    padding-top: 1em;
  }
  header, header .left {
    justify-content: center;
  }
  header .left {
    margin-bottom: 1em;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  header .left .logo {
    margin-bottom: 1em;
  }
  header #energy-savings-trust {
    display: none;
  }
  .columns .column {
    flex: auto;
    width: 100%;
  }
  form .field {
    flex-wrap: wrap;
  }
  form .field label,
  form .field input {
    width: 100%;
  }
  form .field label {
    text-align: left;
    margin-bottom: 0.5em;
  }

  .banner-section {
    flex-wrap: wrap;
  }
  .banner-section .banner {
    display: none;
  }
  .banner-section .buttons, .banner-section .buttons a {
    width: 100%;
  }
  
  .tdc {
	text-align: center;
	float: none;
  }
}
@media (max-width: 790px) {
    .product-details {
        display: block;
    }
  section {
	margin: 1em 0;
    padding: 1em;
  }

	h1, .columns .column {
  padding: 0 20px;
}
	
}