@media only screen and (max-width: 10000px) {
  h1, h2, h3, h4, h5 {
    font-family: 'sans';
    color: #fff;
    text-shadow:#000000 2px 2px 7px;
  }

  main {
    text-align: center;
  }

  main p {
    font-family: SourceSans;
    font-size: 20px;
    text-align: justify;
    color: #fff;
  }

  main a, footer a {
    text-decoration: none;
    font-family: SourceSans;
    font-size: 20px;
    color: var(--green);
    transition: 0.4s;
  }

  main a:hover, footer a:hover {
    color: #fff;
  }

  #seo-info, #title {
    display: none;
  }

  #not-found-page-wrapper {
    display: flex;
    justify-content: center;
  }

  .flex-centered {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }

  #login-form {
    font-family: SourceSans;
    font-size: 20px;
    max-width: 200px;
  }

  #login-message-wrapper {
    background: rgba(75, 75, 75, 0.6);
    color: var(--green);
    padding: 0.5em;
    border-radius: 5px;
    margin: 0.75em 0;
  }

  .login-error {
    color: #f00;
  }

  .login-error::selection {
    color: #000000;
    background: #f00;
  }

  .login-text-box {
    font-family: SourceSans;
    font-size: 1em;
    padding: 10px;
    margin-bottom: 0.75em;
    border-radius: 5px;
    border: 0;
    color: var(--green);
    background: rgba(75, 75, 75, 0.8);
  }

  .login-text-box::selection {
    color: #000000;
    background: var(--green);
  }

  #login-submit {
    font-family: SourceSans;
    font-size: 1em;
    display: flex;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 0;
    color: var(--green);
    background: rgba(75, 75, 75, 0.8);
    cursor: pointer;
    transition: 0.4s;
  }

  #login-submit:hover {
    color: #fff;
    background: rgba(75, 75, 75, 0.6);
  }

  #submit-button {
    font-family: SourceSans;
    font-size: 20px;
    display: flex;
    background: rgba(75, 75, 75, 0.8);
    border: none;
    color: var(--green);
    transition: 0.4s;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  #submit-button:hover {
    background: rgba(75, 75, 75, 0.6);
    color: #fff;
  }

  .dividing-line {
    width: 100%;
    height: 10px;
    background: var(--green);
    margin: 15px 0 15px;
  }

  .new-not-allowed {
    background: rgba(75, 75, 75, 0.8) !important;
    color: #555555 !important;
    cursor: not-allowed !important;
  }

  .new-not-allowed:hover {
    background: rgba(75, 75, 75, 0.8) !important;
    color: #555555 !important;
  }

  #new-product {
    max-width: 100%;
  }

  input, textarea {
    font-family: SourceSans;
    font-size: 20px;
    padding: 15px;
    margin: 5px 0 15px;
    border: none;
    border-radius: 5px;
    background: rgba(75, 75, 75, 0.8);
    color: var(--green);
    max-width: 100%;
    box-sizing: border-box;
  }

  input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
    text-align: center;
  }

  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input::selection, textarea::selection {
    color: #000000;
    background: var(--green);
  }

  label {
    font-family: SourceSans;
    font-size: 24px;
    color: var(--green);
    user-select: none;
  }

  .new-select-wrapper {
    position: relative;
    margin: 5px 0 15px;
    background: rgba(75, 75, 75, 0.8);
    border-radius: 5px;
  }

  .new-select-wrapper:before {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    height: 8px;
    width: 8px;
    transform: rotateZ(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .new-select {
    font-family: SourceSans;
    font-size: 20px;
    position: relative;
    color: var(--green);
    border: 3px solid transparent;
    border-radius: 3px;
    background: transparent;
    padding: 9px 30px 9px 9px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .new-select option {
    color: var(--green);
    background: rgba(75, 75, 75, 0.8);
  }

  .new-select:hover {
    background: rgba(75, 75, 75, 0.5);
  }

  #new-upload-drop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 175px;
    height: 100px;
    padding: 10px;
    background: rgba(75, 75, 75, 0.8);
    border: 3px dashed rgb(150, 150, 150);
    transition: 0.4s;
    cursor: pointer;
    user-select: none;
  }

  #new-upload-drop:hover {
    background: rgba(75, 75, 75, 0.6);
  }

  input[type="file"] {
    display: none;
  }

  .new-upload-preview {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    max-width: 100%;
  }

  .new-upload-image {
    position: relative;
    width: 125px;
    height: 125px;
    margin: 15px;
    user-select: none;
  }

  .new-upload-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
  }

  .new-upload-image-delete {
    font-family: Halo3;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--green);
    background: rgba(75, 75, 75, 0.8);
    transition: 0.4s;
    cursor: pointer;
  }

  .new-upload-image-delete:hover {
    color: #fff;
    background: rgba(75, 75, 75, 0.6);
  }

  #new-upload-progress-wrapper {
    display: none;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 102;
  }

  #new-upload-progress {
    width: 90%;
    height: 15px;
    background: rgb(50, 50, 50);
    border-radius: 5px;
  }

  #new-upload-progress-bar {
    position: relative;
    height: 100%;
    width: 1%;
    background: #06f linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 0 25%, transparent 25% 50%, rgba(255, 255, 255, 0.3) 50% 75%, transparent 75% 100%) 0 0/30px 30px;
    animation: background-move 1.5s linear infinite;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
  }

  @keyframes background-move {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 30px 30px;
    }
  }

  .new-product-link {
    display: flex;
    padding: 10px;
    margin-bottom: 20px;
    background: rgba(75, 75, 75, 0.8);
    border-radius: 5px;
  }

  .new-product-link:hover {
    background: rgba(75, 75, 75, 0.6);
  }

  .admin-product-link {
    display: flex;
    padding: 10px;
    background: rgba(75, 75, 75, 0.8);
  }

  .admin-product-link:hover {
    background: rgba(75, 75, 75, 0.6);
  }

  #new-success-wrapper p {
    margin: 10px 0;
  }

  #admin-product-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .admin-product {
    position: relative;
    box-shadow: 0 0 5px 10px var(--green);
    margin: 25px;
    overflow: hidden;
  }

  .admin-product-unavailable {
    position: absolute;
    transform: rotate(40deg);
    right: -85px;
    top: 30px;
    padding: 0 75px;
    background: rgba(50, 50, 50, 0.7);
  }

  .admin-product-delete {
    font-family: Halo3;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--green);
    background: rgba(75, 75, 75, 0.7);
    transition: 0.4s;
    cursor: pointer;
  }

  .admin-product-delete:hover {
    color: #fff;
    background: rgba(75, 75, 75, 0.9);
  }

  .admin-product a {
    display: block;
    height: 100%;
  }

  .admin-product img {
    max-height: 250px;
    max-width: 250px;
  }

  .admin-product h4 {
    margin: 0.5em 0;
  }

  #admin-contacts-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
  }

  .admin-contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25%;
    position: relative;
    box-shadow: 0 0 5px 10px var(--green);
    margin: 30px;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .edit-images-image {
    position: relative;
    width: 125px;
    height: 125px;
    margin: 15px;
    user-select: none;
  }

  .edit-images-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
  }

  .content-box-holder {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .content-box-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    max-width: 50%;
  }

  .content-box {
    background: none;
    padding: 20px;
    margin: 30px;
    background-color: rgba(35, 35, 35, 0.7);
    border-radius: 20px;
    box-shadow: 0 0 5px 10px var(--green);
    max-width: 600px;
  }

  .image-content-box {
    display: flex;
    align-items: center;
    padding: 0;
  }

  .content-box-image {
    max-width: 100%;
    width: 500px;
    border-radius: 15px;
  }

  #home-page-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #home-page-cta-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 1em;
    margin: 0 2em 3em;
    background-color: rgba(35, 35, 35, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 5px 10px var(--green);
  }

  #home-page-logo {
    max-height: 250px;
    max-width: 250px;
    border-radius: 15px;
    padding: 20px;
  }

  #home-page-tagline-box {
    max-height: 100%;
    width: 55%;
    padding-left: 5%;
  }

  #home-page-cta-button {
    display: inline-block;
    font-size: 25px;
    padding: 0.5em;
    border-radius: 5px;
    background: rgba(75, 75, 75, 0.6);
    transition: 0.4s;
  }

  #home-page-cta-button:hover {
    background: rgba(75, 75, 75, 0.8);
  }

  #home-page-cta-button i {
    font-size: 0.75em;
  }

  #products-page-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #products-page-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  #products-page-no-results-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .products-page-button {
    font-family: SourceSans;
    font-size: 30px;
    border: none;
    outline: 0;
    padding: 20px;
    background: rgba(5, 5, 5, 0.5);
    color: var(--green);
    cursor: pointer;
    transition: 0.4s;
    margin-bottom: 20px;
  }

  .products-page-button:hover {
    background: rgba(5, 5, 5, 0.8)
  }

  .products-page-content-box-wrapper {
    flex: 25%;
    max-width: 25%
  }

  .products-page-content-box {
    background: #0000003b;
    margin: 3em 1.5em;
    max-width: 400px;
    font-size: 0.66667em;
  }
  
  .products-page-content-box a {
      font-size: 13px;
  }

  .products-page-product-info-wrapper {
    position: relative;
    overflow: hidden;
  }

  .products-page-product-info-wrapper img {
    width: 100%;
  }

  .products-page-unavailable {
    position: absolute;
    transform: rotate(40deg);
    right: -85px;
    top: 30px;
    padding: 0 75px;
    background: rgba(50, 50, 50, 0.7);
  }

  .products-page-product-info-wrapper h1 {
    margin: 0.6em 0;
  }

  .products-page-product-info-wrapper p {
    margin: 0.5em 5%;
  }

  .products-page-product-info-wrapper p:nth-of-type(1) {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
  }

  .products-page-content-box button {
    font-family: SourceSans;
    font-size: 2.125em;
    border: none;
    outline: 0;
    padding: 0.75em;
    background: rgba(0, 0, 0, 0.3);
    color: var(--green);
    width: 100%;
    cursor: pointer;
    transition: 0.4s
  }

  .products-page-content-box button:hover {
    background: rgba(0, 0, 0, 0.7)
  }

  .products-page-content-box i {
    font-size: 0.75em;
  }

  #loader-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
  }
  #dot-wrapper {
    width: 100px;
    height: 100px;
    position: relative;
    animation: rotate 4s infinite linear;
  }
  .dot {
    width: 1px;
    height: 1px;
    position: absolute;
    top: calc(50% - 0.5px);
    left: calc(50% - 0.5px);
    border-radius: 50%;
    background: var(--green);
    animation: scale 1s infinite linear;
  }
  #dot1 {
    transform: rotate(36deg) translate(0px, 50px);
    animation-delay: -0.9s;
  }
  #dot2 {
    transform: rotate(72deg) translate(0px, 50px);
    animation-delay: -0.8s;
  }
  #dot3 {
    transform: rotate(108deg) translate(0px, 50px);
    animation-delay: -0.7s;
  }
  #dot4 {
    transform: rotate(144deg) translate(0px, 50px);
    animation-delay: -0.6s;
  }
  #dot5 {
    transform: rotate(180deg) translate(0px, 50px);
    animation-delay: -0.5s;
  }
  #dot6 {
    transform: rotate(216deg) translate(0px, 50px);
    animation-delay: -0.4s;
  }
  #dot7 {
    transform: rotate(252deg) translate(0px, 50px);
    animation-delay: -0.3s;
  }
  #dot8 {
    transform: rotate(288deg) translate(0px, 50px);
    animation-delay: -0.2s;
  }
  #dot9 {
    transform: rotate(324deg) translate(0px, 50px);
    animation-delay: -0.1s;
  }
  #dot10 {
    transform: rotate(360deg) translate(0px, 50px);
    animation-delay: -1s;
  }
  @keyframes rotate {
    100% {transform: rotate(360deg);}
  }
  @keyframes scale {
    0% {
      width: 20px;
      height: 20px;
      top: calc(50% - 10px);
      left: calc(50% - 10px);
    }
    100% {width: 1px; height: 1px;}
  }

  #product-page-product-wrapper {
    display: flex;
    flex-flow: row wrap;
  }

  #product-page-product-wrapper h1 {
    width: 100%;
    margin-top: 0;
  }

  #product-page-pagination-button-wrapper {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    height: 3.5em;
  }

  #product-page-pagination-button-wrapper i {
    font-size: 0.66667em;
  }

  #product-page-pagination-button-wrapper a {
    display: inline-block;
    width: 8em;
    min-width: 5em;
    padding: 0.4em;
    margin: 0.25em 0;
    color: var(--green);
    background: rgba(75, 75, 75, 0.6);
    border-radius: 5px;
  }

  #product-page-pagination-button-wrapper a:hover {
    color: #fff;
    background: rgba(75, 75, 75, 0.4);
  }

  #product-page-product-buttons-wrapper {
    align-self: flex-end;
  }

  #product-page-image-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    flex: 60%;
    max-width: 60%;
  }

  #product-page-image-row-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    height: min-content;
    flex: 25%;
    max-width: 25%;
    padding: 1.5em 1em 1em;
  }

  #product-page-image-row-wrapper img {
    box-sizing: border-box;
    max-height: 64px;
    max-width: 64px;
    padding: 0.1em;
    margin: auto;
    border-radius: 5px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.4s;
  }

  #product-page-image-row-wrapper img:hover {
    opacity: 1;
    padding: 0;
    box-shadow: 0 0 3px 2px #fff;
    z-index: 1;
  }

  .active-image {
    opacity: 1 !important;
    padding: 0 !important;
    background: #0000003b;
    z-index: 1;
  }

  #product-page-main-image-wrapper {
    flex: 75%;
    max-width: 75%;
    margin: 1.5em 1em 2em 0;
  }

  #product-page-main-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 100%;
    max-height: calc(100vw - 12vw);
  }

  #product-page-main-image-container img {
    border-radius: 5px;
    max-height: 100%;
    max-width: 100%;
  }

  #product-page-previous-image {
    position: absolute;
    left: 0;
    font-size: 30px;
    width: 30px;
    padding: 7px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    color: #fff;
  }

  #product-page-next-image {
    position: absolute;
    right: 0;
    font-size: 30px;
    width: 30px;
    padding: 7px;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    color: #fff;
  }

  #product-page-product-text-wrapper {
    display: flex;
    flex-flow: column wrap;
    flex: 40%;
    max-width: 40%;
    padding-bottom: 20px;
  }

  .product-page-product-info-wrapper {
    display: grid;
    align-self: center;
    width: 20em;
    max-width: 100%;
  }

  .product-page-product-info-name {
    font-weight: bold;
    margin: 0.5em 0;
    justify-self: flex-start;
    grid-row: 1;
  }

  .product-page-product-info-text {
    font-weight: bold;
    margin: 0.5em 0;
    justify-self: flex-end;
    grid-row: 1;
  }

  #review-wrapper {
    max-width: 100%;
    background-color: rgba(35, 35, 35, 0.75);
    margin: 40px 0 50px;
    border-radius: 20px;
    box-shadow: 0 0 5px 10px var(--green);
    margin: 30px;
  }

  #review-box {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .review-item {
    width: 250px;
    padding: 20px;
    margin: 10px 20px 40px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
  }

  .review-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-photo {
    width: 50px;
  }

  .review-author {
    padding: 15px;
  }

  .review-stars-wrapper {
    padding-top: 15px;
    text-align: center;
  }

  .review-star {
    display: inline-block;
    font-size: 30px;
    color: #ddd;
  }

  .review-star.filled {
    color: gold;
  }

  .tint-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .vehicle-preview {
    position: relative;
    width: 600px;
    height: auto;
    flex-shrink: 0;
  }

  .vehicle-preview img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .overlay {
    pointer-events: none;
  }

  .controls {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
  }

  .section {
    margin-bottom: 20px;
  }

  .button-group, .tint-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
  }

  .button, .tint-button {
    background: #ddd;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
  }

  .button:hover, .tint-button:hover {
    background: #bbb;
  }

  .button.active, .tint-button.active {
    background: #333;
    color: white;
  }

  .pricing {
    margin-top: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
  }

  .pricing ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
  }

  .pricing li {
    margin-bottom: 4px;
  }

  #about-page-content-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(35, 35, 35, 0.75);
    border-radius: 20px;
    box-shadow: 0 0 5px 10px var(--green);
  }

  .faq-item {
    margin-bottom: 10px;
  }

  .faq-question {
    width: 100%;
    padding: 15px;
    background-color: var(--green);
    color: #fff;
    border: none;
    text-align: left;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }

  .faq-question:hover {
    background-color: #70a12a;
  }

  .faq-answer {
    padding: 15px;
    background-color: #5d8525;
    border-left: 4px solid #fff;
    display: none;
    margin-top: 5px;
    font-size: 15px;
  }

  .faq-answer p {
    margin: 0;
  }

  #contact-page-content-wrapper {
    text-align: center;
  }

  .contact-info {
    display: inline-block;
    max-width: 600px;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 40px;
    background-color: rgba(35, 35, 35, 0.75);
    box-shadow: 0 0 5px 10px var(--green);
  }
  
  .contact-info p {
    text-align: center;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 20px;
    background-color: rgba(35, 35, 35, 0.75);
    border-radius: 20px;
    box-shadow: 0 0 5px 10px var(--green);
  }
  
  .contact-form .form-group {
    margin-bottom: 30px;
  }
  
  .contact-form label {
    display: block;
    font-size: 20px;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .contact-form button {
    display: inline-block;
    padding: 0.5em;
    color: #fff;
    border: none;
    font-size: 20px;
    border-radius: 5px;
    font-family: SourceSans;
    background: rgba(75, 75, 75, 0.6);
    transition: 0.4s;
    cursor: pointer;
  }

  .contact-form button:hover {
    background: rgba(75, 75, 75, 0.8);
  }

  #gallery-box {
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
  }

  .tile {
    display: block;
    position: absolute;
    box-sizing: border-box;
  }

  #images-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .current-images {
    position: relative;
    width: 125px;
    height: 125px;
    user-select: none;
  }

  .current-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
  }

  .new-images {
    position: relative;
    width: 125px;
    height: 125px;
    margin: 5px;
    user-select: none;
  }

  .new-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
  }

  .image-delete {
    font-family: Halo3;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--green);
    background: rgba(75, 75, 75, 0.75);
    transition: 0.4s;
    cursor: pointer;
  }

  .image-delete:hover {
    color: #fff;
    background: rgba(75, 75, 75, 0.9);
  }

  .image-add {
    font-family: Halo3;
    font-size: 90px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--green);
    background: rgba(75, 75, 75, 0);
    transition: 0.4s;
    cursor: pointer;
  }

  .image-add:hover {
    color: #fff;
    background: rgba(75, 75, 75, 0.5)
  }

  #gallery-page-gallery-wrapper {
    display: flex;
    width: 100%;
    padding-bottom: 20px;
  }

  #gallery-page-gallery-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width: 100%;
    overflow: hidden;
  }

  .gallery-page-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    max-width: 250px;
    overflow: hidden;
    margin: 5px;
    border-radius: 8px;
  }

  .gallery-page-image-box img {
    height: 100%;
    cursor: pointer;
  }

  #gallery-page-modal-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 102;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  #gallery-page-modal-close {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  #gallery-page-modal-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1421px;
    max-height: 1064px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }

  #gallery-page-modal-image {
    max-width: 100%;
    max-height: 100%;
    transition:
      opacity 0.25s ease-in-out,
      transform 0.25s ease-in-out;
    transform-origin: center center;
    cursor: zoom-in;
    user-select: none;
  }

  #gallery-previous-image {
    position: absolute;
    left: 0;
    font-size: 30px;
    width: 30px;
    padding: 7px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    color: var(--green);
  }

  #gallery-next-image {
    position: absolute;
    right: 0;
    font-size: 30px;
    width: 30px;
    padding: 7px;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    color: var(--green);
  }

  #services-page-content-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  #services-page-content-wrapper li {
    text-align: left;
    font-family: SourceSans;
    font-size: 20px;
    color: #fff;
  }
}

/* 1000px and down */
@media only screen and (max-width: 1000px) {
  .content-box-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .content-box {
    margin: 0 0.5em 3em;
  }

  #home-page-cta-wrapper {
    flex-flow: column nowrap;
    margin: 0 0.5em 3em;
  }

  #home-page-tagline-box {
    width: 100%;
    padding: 0;
  }

  .admin-contact-wrapper {
    width: 40%;
  }

  .products-page-content-box-wrapper {
    flex: 33%;
    max-width: 33%;
  }

  #product-page-product-wrapper {
    flex-flow: column nowrap;
  }

  #product-page-image-wrapper {
    flex: 100%;
    max-width: 100%;
  }

  #product-page-product-text-wrapper {
    flex: 100%;
    max-width: 100%;
  }
}

/* 850px and down */
@media only screen and (max-width: 850px) {
  #home-page-logo {
    max-height: 225px;
    max-width: 100%;
  }
}

/* 750px and down */
@media only screen and (max-width: 750px) {
  .admin-contact-wrapper {
    width: 100%;
  }

  .products-page-content-box-wrapper {
    flex: 50%;
    max-width: 50%;
  }

  #product-page-pagination-button-wrapper {
    height: auto;
    align-items: center;
  }

  #product-page-product-buttons-wrapper {
    align-self: center;
  }
}

/* 650px and down */
@media only screen and (max-width: 650px) {
  #product-page-image-wrapper {
    flex-flow: column-reverse nowrap;
    align-items: center;
  }

  #product-page-main-image-wrapper {
    flex: 100%;
    max-width: 100%;
    margin: 1.5em 0 2em;
  }

  #product-page-image-row-wrapper {
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    flex: 100%;
    max-width: 100%;
    padding: 0 0.5em;
  }
}

/* 475px and down */
@media only screen and (max-width: 475px) {
  .products-page-content-box-wrapper {
    flex: 100%;
    max-width: 100%;
  }
}