@import "~material-design-icons/iconfont/material-icons.css";

:root {
  --primary-red: #ed0000;
  --primary-gray: #374649;
  --background-gray-light: #f7f9fa;
  --white: #ffffff;
  --warning-yellow: #ffe74f;
  --main-width: 900px;
  --block-radius: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  background-color: var(--background-gray-light);
  color: var(--primary-gray);
  margin: 0;
  padding: 0;
  height: 100vh;
}

*.primary {
  color: var(--primary-red);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Nunito", sans-serif;
  font-size: 30px;
  line-height: 40px;
}

h2 {
  font-family: "Nunito", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 133.333% */
  letter-spacing: 0.1px;
}

h2.variant {
  font-size: 26px;
  line-height: 32px; /* 123.077% */
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.1px;
}

h3.variant {
  font-size: 20px;
  line-height: 24px; /* 120% */
}

h4 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
  letter-spacing: 0.1px;
}

.paragraph {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
  letter-spacing: 0.1px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: var(--white);
}

header .logo,
header .help-icon-button-img {
  cursor: pointer;
}

header .logo-container {
  width: 7rem;
}

header .help-icon-button {
  width: 7rem;
  display: flex;
  justify-content: flex-end;
}

.notification {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  background-color: var(--background-gray-light);
  border-radius: var(--block-radius);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
    0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.notification.helpdesk {
  width: 100%;
}

.notification.warning {
  background-color: var(--warning-yellow);
}

.notification .v-spacer {
  height: 1.25rem;
}

.lpg-card {
  background-color: var(--white);
  border-radius: var(--block-radius);
  padding: 1.5rem;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 3rem 0;
  gap: 1rem;
  width: var(--main-width);
}

.split-container {
  display: flex;
  justify-content: center;
  gap: 0 1rem;
  width: 100%;
}

.app-promotion-block,
.cylinder-block {
  width: 442px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.app-promotion-block .phone-link {
  text-decoration: none;
}
.app-promotion-block .phone-link:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

.cylinders-icon {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}

.store-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  width: 100%;
}

.image-container img {
  border-radius: var(--block-radius);
  max-width: var(--main-width);
  height: auto;
}

/* Keep this at the end of the file to override any display property on multiclass element */
@media only screen and (min-device-width: 901px) {
  *.mobile {
    display: none;
  }
}
