:root {
  --main-red: #d81116;
  --main-hover-red: #eb2229;
  --main-active-red: #b00e13;
}

html {
  -moz-osx-font-smoothing: grayscale; /*(For Firefox)*/
  -webkit-font-smoothing: antialiased; /*(For Chrome and Safari)*/
  text-rendering: optimizeLegibility;
  font-family: "Open Sans", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(242, 242, 242);
  /* background-color: white; */
}

/* SVGS */
.search, .menu, .login, .user {
filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(604%) hue-rotate(284deg) brightness(106%) contrast(101%);
  width: 28px;
  padding-left: 5px;
  padding-right: 5px;
}

.close {
  filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(604%) hue-rotate(284deg) brightness(106%) contrast(101%);
  width: 35px;
  padding: 10px;
}

.admin-gear, .logout {
  filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(604%) hue-rotate(284deg) brightness(106%) contrast(101%);
  width: 30px;
  padding-left: 5px;
  padding-right: 5px;
}

/* hovers */
.search:hover {
  filter: brightness(0) saturate(100%) invert(20%) sepia(58%) saturate(4751%) hue-rotate(346deg) brightness(96%) contrast(92%);
}

.menu:hover {
  filter: brightness(0) saturate(100%) invert(20%) sepia(58%) saturate(4751%) hue-rotate(346deg) brightness(96%) contrast(92%);
}

.admin-gear:hover {
  filter: brightness(0) saturate(100%) invert(20%) sepia(58%) saturate(4751%) hue-rotate(346deg) brightness(96%) contrast(92%);
}
.login:hover {
  filter: brightness(0) saturate(100%) invert(20%) sepia(58%) saturate(4751%) hue-rotate(346deg) brightness(96%) contrast(92%);
}
.logout:hover {
  filter: brightness(0) saturate(100%) invert(20%) sepia(58%) saturate(4751%) hue-rotate(346deg) brightness(96%) contrast(92%);
}
.user:hover {
  filter: brightness(0) saturate(100%) invert(20%) sepia(58%) saturate(4751%) hue-rotate(346deg) brightness(96%) contrast(92%);
}
/* hovers end */

a {
  height: auto;
  display: inline-block;
}

/* Removes Border from selected inputs */
textarea:focus,
input:focus {
  outline: none;
}

.margin_page_content {
  margin-top: 30px;
  margin-bottom: 100px;
}

/* navbar */
#navbar_holder {
  position: relative;
height: 65px;
}

#navbar {
  display: flex;
  position: absolute;
  justify-content: center;
  background-color: black;
  height: 65px;
  width: 100%;
  z-index: 999;
  align-items: center;
}

#nav_logo {
  display: none;
  width: 120px;
  padding-right: 5%;
}

#nav_logo:hover {
  opacity: 80%;
}

/* Top LOGO */
#top-logo-box {
  height: 190px;
  background-color: white;
  /* background-color: rgb(242, 242, 242); */
}

#top-logo {
  margin-top: 30px;
  width: 380px;
  transition: all 0.3s;
}

#top-logo:hover {
  opacity: 80%;
  width: 390px;
}

/* Nav MENU */
#nav-menu {
  margin-top: 6px;
  display: flex;
  height: 30px;
}

#nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  transition: all 0.1s;
}

#nav-menu a:hover {
  color: var(--main-hover-red);
}

#nav-menu a:active {
  color: var(--main-hover-red);
}

/* 20deg line */
.nav-menu-vertical-line {
  border: 1px solid white;
  rotate: 20deg;
  height: 25px;
  margin-right: 8px;
  margin-left: 10px;
}

/* Nav SIGNUP */
#signup_menu {
  display: flex;
  color: white;
  padding-left: 5%;
  /* padding-top: 10px; */
  align-items: center;
}

#signup_menu i {
  display: flex;
  align-items: center;
}

#signup_menu a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  padding-right: 5px;
  padding-left: 5px;
  transition: all 0.1s;
}

#signup_menu a:hover {
  color: var(--main-hover-red);
}

#signup_menu a:active {
  color: var(--main-active-red);
}

/* Menu Button */
#mobile-menu-btn {
  display: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  padding: 0px !important;
}

/* Login Button */
#nav-signup-btn {
  display: flex;
  border: 2px solid white;
  height: 38px;
  border-radius: 10px;
  align-items: center;
}

#mobile-nav-sigunp-btn {
  display: none;
}

#nav-signup-btn:hover {
  border: 2px solid var(--main-hover-red);
}

#nav-signup-btn:active {
  border: 2px solid var(--main-active-red);
}

/* Search Form */
#search_form {
  display: none;
  background-color: black;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  height: 50px;
  width: 415px;
  text-align: center;
  border-radius: 10px;
  padding: 5px;
  z-index: 998;
  box-shadow: 5px 1px 5px rgb(32, 32, 32);
  animation: fadeIn 0.3s;
}

#search_form input#search {
  cursor: text;
  border: 0px;
  background-color: white;
  color: black;
  font-size: 18px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-weight: 500;
}

#search_form input {
  cursor: pointer;
  border: 0px;
  background-color: var(--main-red);
  border-radius: 5px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  font-size: 18px;
  font-weight: 700;
}

#search-icon {
  cursor: pointer;
  color: white;
  padding: 0px !important;
}


#search-btn {
  color: white;
}

#search_form input:hover {
  background-color: var(--main-hover-red);
}

#search_form a {
  color: white;
  margin-top: 1px;
  border-radius: 5px;
}

#search_form a:hover {
  color: var(--main-hover-red);
  background-color: rgb(49, 49, 49);
}

.clicked {
  color: var(--main-red);
}

/* Mobile Menu */
#mobile-nav-menu {
  display: none;
  position: absolute;
  flex-direction: column;
  background-color: black;
  width: 100%;
  z-index: 999;
  box-shadow: 5px 1px 5px rgb(32, 32, 32);
  animation: fadeIn 0.3s;
}

#mobile-nav-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  height: 45px;
  /* padding-top: 8px; */
  transition: all 0.1s;
}

#mobile-nav-menu a:hover {
  color: var(--main-hover-red);
  background-color: rgb(215, 215, 215);
}

#mobile-nav-menu a:active {
  color: var(--main-active-red);
}

#company_image {
  position: relative;
  background-image: url("/images/other/company_outside_edited.webp");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 950px;
  background-position: center;
  z-index: 1;
  filter: brightness(50%);
}

/* Text Over Image */
.company-img-container {
  position: relative;
  text-align: center;
  color: white;
}

#diesel-text {
  color: var(--main-hover-red);
}

.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.centered-text div {
  animation: fadeIn 2s;
}

.centered-text h1 {
  text-shadow: 2px 2px #000000;
}

.centered-text h4 {
  font-weight: bold;
  font-size: 22px;
}

.centered-text span {
  font-size: 60px;
}

.centered-text li {
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  width: 250px;
  list-style: disc;
}

#see_products_btn {
  display: block;
  text-decoration: none;
  background-color: var(--main-red);
  color: white;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 300px;
  transition: all 0.5s;
}

#see_products_btn:hover {
  background-color: var(--main-hover-red);
  font-size: 21px;
}

#see_products_btn:active {
  background-color: var(--main-active-red);
}

/* Signup/Login Forms */
.signup_forms form {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: black;
  width: 400px;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
  box-shadow: 5px 5px 5px rgb(32, 32, 32);
}

.signup_forms h1 {
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

.signup_forms h2 {
  color: white;
  font-size: 16px;
  text-align: center;
}

.signup_forms input {
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 6px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  margin-bottom: 20px;
}

.signup_forms label {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
}

.signup_forms .signup_button {
  cursor: pointer;
  background-color: var(--main-red);
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: white;
}

.signup_forms .signup_button:hover {
  background-color: var(--main-hover-red);
}

.signup_forms .signup_button:active {
  background-color: var(--main-active-red);
}

.login_signup_link {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

/* FORGOT PASSWORD */
#forgot_password {
  color: white;
  margin-top: -17px;
  margin-bottom: 20px;
  text-align: right;
  text-decoration: none;
  width: 100%;
  font-size: 14px;
}

#forgot_password:hover {
  color: var(--main-hover-red);
}

.login_signup_link:hover {
  color: var(--main-hover-red);
}

.login_signup_link:active {
  color: var(--main-active-red);
}

/* Error Message */
#error_message p {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: red;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.account_info_panel {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  background-color: black;
  max-width: 650px;
  height: fit-content;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 5px 5px 5px rgb(32, 32, 32);
}

.account_info_panel h1 {
  color: var(--main-red);
  text-align: center;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
}

.account_info_panel span {
  color: white;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.account_info_panel h3 {
  margin-bottom: 0px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
}

/* Product Admin */
#product_administration_btn {
  background-color: rgb(240, 240, 240);
  width: fit-content;
  color: black;
  padding: 8px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

#product_administration_btn:hover {
  background-color: white;
}

#product_administration_btn:active {
  background-color: rgb(221, 221, 221);
}

/* User Admin */
#user_administration_btn {
  background-color: rgb(240, 240, 240);
  width: fit-content;
  color: black;
  padding: 8px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

#user_administration_btn:hover {
  background-color: white;
}

#user_administration_btn:active {
  background-color: rgb(221, 221, 221);
}

/* SPONSORED CONTENT */
#sponsored_content {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

#sponsored_content h4 {
  text-align: center;
  font-weight: bold;
  color: #969696;
  font-size: 15px;
}

#sponsored_img_holder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#sponsored_img_holder a {
  display: flex;
  justify-content: center;
  align-items: center;
}

#sponsored_content img {
  width: 150px;
  margin-bottom: 50px;
  transition: all 0.1s;
}

#sponsored_content img:hover {
  width: 160px;
}

/* FOOTER */
#footer_holder {
  width: 100%;
  background-color: black;
}

#footer_content {
  display: flex;
  flex-wrap: wrap;
  background-color: black;
  max-width: 1370px;
  /* justify-content: center; */
  padding: 60px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: auto;
}

.social-svg-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0px !important;
  width: 45px !important;
  height: 45px !important;
}

.social-svg-bg:hover {
  opacity: 80%;
}

.facebook {
filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(604%) hue-rotate(284deg) brightness(106%) contrast(101%);
  width: 15px;
}

.instagram {
filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(604%) hue-rotate(284deg) brightness(106%) contrast(101%);
  width: 20px;
}

#footer_content div {
  width: fit-content;
  height: fit-content;
  padding: 20px;
}

#footer_content div h4 {
  font-size: 17px;
  color: white;
  font-family: "Open Sans", sans-serif;
  margin-top: 3px;
  height: fit-content;
  margin-bottom: 0px;
}

#footer_content div h5 {
  font-size: 15px;
  color: white;
  font-weight: bold;
}

#footer_content div p {
  font-size: 15px;
  color: white;
}

#footer_content .mail {
  transition: all 0.1s;
  text-decoration: none;
}

#footer_content .mail a {
  text-decoration: none;
}

#footer_content .mail:hover {
  font-size: 17px;
}

#privacy-policy {
  margin-top: 16px;
}

#privacy-policy a {
  text-decoration: none;
  font-weight: 600;
}

#privacy-policy a:hover {
  color: var(--main-hover-red);
}

#privacy-policy a:active {
  color: var(--main-active-red);
}

#footer_logo {
  width: 350px;
  transition: all 0.3s;
  margin-bottom: 7px;
}

#footer_logo:hover {
  opacity: 80%;
  width: 360px;
}

.social {
  color: white;
  text-decoration: none;
  border-radius: 25px;
  margin-bottom: 5px;
}

.social:hover {
  opacity: 80%;
}

.fa-facebook {
  background: #1877f2;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.fa-instagram {
  background: #c13584;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#copyright {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  background-color: black;
  text-align: center;
  padding: 15px;
}

#copyright h5 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: white;
}

.social_icon {
  width: 35px;
}

.social_icon:hover {
  opacity: 80%;
}

/* ERROR PAGES */
.error {
  margin-top: 150px;
  padding: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.error h1 {
  margin: 0;
  padding: 0;
  color: black;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 145px;
}

.error p {
  margin: 0;
  padding: 0;
  color: black;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
}

.error a {
  display: block;
  color: black;
  text-align: center;
  margin-top: 10px;
}

.info-page {
  display: block;
  margin: 20px;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  animation: fadeIn 0.8s;
}

.info-page img {
  margin: 0;
  margin-bottom: 20px;
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 5px 1px 5px rgb(32, 32, 32);
}

.info-page h1 {
  display: flex;
  color: black;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 43px;
}

.info-page p {
  color: rgb(46, 46, 46);
}

#contact-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#contact-form form {
  width: 100%;
}

#contact-form input {
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 5px;
  width: 100%;
  font-size: 17px;
  padding: 6px;
}

#contact-form textarea {
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 5px;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  font-size: 17px;
  padding: 6px;
  height: 200px;
}

#contact-form button {
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  padding: 10px;
  color: white;
  background-color: var(--main-red);
  font-weight: 700;
  width: 100%;
}

#contact-form button:hover {
  background-color: var(--main-hover-red);
}

#contact-form button:active {
  background-color: var(--main-active-red);
}

#contact-form h2 {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 25px;
  font-weight: 600;
}

#contact-form i {
  font-size: 30px;
}

#contact-form p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgb(46, 46, 46);
  margin-bottom: 10px;
}

#contact-form a {
  text-decoration: none;
  margin-bottom: 5px;
  margin-left: 10px;
  text-align: center;
}

#contact-form a:hover {
  text-decoration: underline;
}

/** PRODUCTS */
#products-page-holder {
  display: block;
  position: relative;
  margin: auto;
  max-width: 1500px;
}

#products-page {
  display: flex;
  flex-basis: 100%;
  margin: 20px;
  animation: fadeIn 0.8s;
}

#products-page div {
  border-radius: 10px;
  flex-grow: 1;
  padding: 10px;
}

#products-page div h1 {
  color: black;
}

#cat-x-button {
  color: rgb(54, 54, 54);
  cursor: pointer;
  font-size: 25px;
  margin-right: 15px;
  margin-top: 12px;
  display: none;
}

#cat-x-button:hover {
  opacity: 80%;
}

#products-categories-titlebar {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.popup-bg {
display: block;
z-index: 1000;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
background-color: rgba(0, 0, 0, 0.395);
height: 100vh;
width: 100vw;
}

#products-categories {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  flex-basis: 350px; 
  flex-shrink: 0;
  border: 2px solid black;
  border-radius: 10px;
  background-color: rgb(242, 242, 242);
  margin-right: 5px;
  overflow-y:scroll;
}

#products-categories ul {
  list-style-type:none;
  margin-left: 10px;
  padding-left: 10px;
}

#products-categories a {
  text-decoration: none;
}

.products-cat {
  color: black;
}

.products-sub-cat a {
  color: rgb(94, 94, 94);
}

.products-sub-cat a:hover {
  color: var(--main-hover-red);
  font-weight: 500;
}

#products-holder {
  border: 2px solid black;
  border-radius: 10px;
  background-color: rgb(242, 242, 242);
}

div #cat-button-holder {
  margin: 0;
  padding: 0;
}

#products-holder #cat-button {
  display: none;
  cursor: pointer;
  background-color: var(--main-red);
  color: white;
  border: 0px;
  border-radius: 10px;
  padding: 10px;
}

#products-holder #cat-button:hover {
  background-color: var(--main-hover-red);
}

#products-holder #cat-button:active {
  background-color: var(--main-active-red);
}

#products {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}

#products div {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  background-color: black;
  border-radius: 10px;
  padding: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
}

#products div:hover {
  opacity: 80%;
}

#products div h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

#products div h3 {
  margin: 0;
  font-size: 13px;
  color: #a0a0a0;
}

#products div a {
  text-decoration: none;
}

#products div img {
  border-radius: 10px;
  max-width: 100%;
}


/** PRODUCT */
#product-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#product-info {
  display: flex;
  flex-direction: row;
}

#product-info img {
  border-radius: 10px;
  max-width: 400px;
}

#product-info #product-properties {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}


/* Animations */
@keyframes fadeIn {
  from {opacity: 0%;}
  to {opacity: 100%;}
}

/* ------------------------------ MOBILE ------------------------------ */
@media only screen and (max-width: 1050px) {
  #products div {
    flex-basis: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

    #products a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #products h2 {
    padding-left: 10px;
    margin-left: 10px;
  }

  #products h3 {
    padding-left: 10px;
    margin-left: 10px;
  }

  #products img {
    display: flex;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 1024px) {
  #nav_logo {
    width: 90px;
  }
}


@media only screen and (max-width: 850px) {
  #products-page {
    display: flex;
    flex-basis: 100%;
    margin: 20px;
  }
  
  #products-categories {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    z-index: 2000;
    /* box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.625); */
    border-radius: 0px !important;
  }

  #products-holder #cat-button {
    display: block;
  }

  #cat-x-button {
    display: flex;

  }
}
@media only screen and (max-width: 780px) {
  #top-logo {
    padding-top: 15px;
    width: 320px;
  }

  #top-logo:hover {
  width: 330px;
  }

  #nav_logo {
    width: 0px;
  }

  #search-icon {
    position: absolute;
    right: 0;
  }
  
  #nav-menu a {
    display: none;
  }

  .nav-menu-vertical-line {
    display: none;
  }

  #nav-signup-btn {
    border: 0px;
  }

  #nav-signup-btn:hover {
    border: 0px;
  }

  #nav-signup-btn {
    display: none;
  }

  #mobile-nav-sigunp-btn {
    display: block;
  }

  /* Menu Button */
  #mobile-menu-btn {
    display: block;
  }

  #signup_menu {
    padding-left: 0px;
  }

  .mobile-nav-menu-horizontal-line {
    margin: 0;
    padding: 0;
    border: 1px solid rgb(215, 215, 215);
    rotate: 0deg;
    height: 1px;
  }

  /* Search */
  #search_form {
    flex-direction: column;
    height: 180px;
    width: 85%;
  }

  #search_form input {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
  }

  #search_form input#search {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  #close_search_button {
    height: 45px;
    padding-top: 5px;
  }

  .account_info_panel {
    width: 90%;
  }

  .account_info_panel h1 {
    font-size: 30px;
  }

  .account_info_panel h3 {
    font-size: 22px;
  }

  .account_info_panel span {
    font-size: 16px;
  }

  #products_administration_btn {
    font-size: 17px;
  }

  #user_administration_btn {
    font-size: 17px;
  }

  /* Centered */
  .centered-text span {
    font-size: 45px;
  }

  .centered-text h4 {
    font-size: 19px;
  }

  .centered-text li {
    font-size: 16px;
    width: 200px;
  }

  .signup_forms h1 {
    font-size: 28px;
  }

  .signup_forms h2 {
    font-size: 14px;
  }

  .menu {
  margin-left: 20px;
  }

  .search {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 430px) {
  .signup_forms form {
    width: 90%;
  }

  .signup_forms h1 {
    font-size: 26px;
  }

  .signup_forms h2 {
    font-size: 12px;
  }

  #contact-form p {
    font-size: 15px;
  }

  .info-page h1 {
    font-size: 30px;
  }

  #contact-form h2 {
    font-size: 18px;
  }

  #sponsored_content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  #sponsored_img_holder {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #sponsored_content h4 {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 380px) {
  #top-logo {
    padding-top: 25px;
    width: 280px;
  }

  #top-logo:hover {
  width: 290px;
  }

  .account_info_panel h1 {
    font-size: 23px;
  }

  .account_info_panel h3 {
    font-size: 17px;
  }

  .account_info_panel span {
    font-size: 13px;
  }

  /* Centered */
  .centered-text span {
    font-size: 42px;
  }

  .centered-text h4 {
    font-size: 17px;
  }

  .centered-text li {
    font-size: 14px;
    width: 150px;
  }

  /* SEE PRODUCTS BUTTON */
  #see_products_btn {
    font-size: 18px;
    width: 260px;
  }

  .signup_forms h1 {
    font-size: 23px;
  }

  #footer_logo {
    width: 250px;
  }

  #footer_logo:hover {
  width: 260px;
}

  .error h1 {
    font-size: 120px;
  }

  .error p {
    font-size: 18px;
  }

  #products-page {
    margin: 5px;
  }
}

@media only screen and (max-width: 280px) {
  #top_logo_area {
    height: 160px;
  }

  #top-logo {
    padding-top: 25px;
    width: 220px;
  }

  #top-logo:hover {
  width: 230px;
  }

  .account_info_panel h1 {
    font-size: 20px;
  }

  .account_info_panel h3 {
    font-size: 15px;
  }

  .account_info_panel span {
    font-size: 11px;
  }

  /* Centered */
  .centered-text span {
    font-size: 35px;
  }

  .centered-text h4 {
    font-size: 15px;
  }

  .centered-text li {
    font-size: 12px;
    width: 120px;
  }

  /* SEE PRODUCTS BUTTON */
  #see_products_btn {
    font-size: 14px;
    width: 210px;
  }

  .signup_forms h1 {
    font-size: 19px;
  }

  #footer_logo {
    width: 200px;
  }

  #footer_logo:hover {
  opacity: 80%;
  width: 210px;
  }

  .error h1 {
    font-size: 100px;
  }

  .error p {
    font-size: 16px;
  }
}