// width and height
// ––––––––––––––––––––––––––––––––––––––––––––––––––

.full-height {
  height: 100%;
}

.full-visual-height {
  height: 100vh;
}

.full-width {
  box-sizing: border-box;
  width: 100%;
}

.max-full-width {
  box-sizing: border-box;
  max-width: 100%;
}
