@import "gridsystem.css";
@import "buttons.css";
@import "fonts.css";
@import "modals.css";
@import "forms.css";
/* Default Classes */
*{
  padding: 0;
  margin: 0;
  font-family: 'Gravity','Roboto','Helvetica',sans-serif;
}
/* Padding */
.pad-4{padding: 4px!important;}
.pad-8{padding: 8px!important;}
.pad-12{padding: 12px!important;}
.pad-16{padding: 16px!important;}
.pad-20{padding: 20px!important;}
.pad-24{padding: 24px!important;}
.pad-28{padding: 28px!important;}
.pad-32{padding: 32px!important;}
.pad-36{padding: 36px!important;}
.pad-40{padding: 40px!important;}
/* Text */
.t-center{text-align: center;}
.t-left{text-align: left;}
.t-right{text-align: right;}
.f-clear{clear: both;}
.f-left{float: left;}
.f-right{float: right;}
.f-bold{font-weight: bold;}
.f-normal{font-weight: normal;}
.f-lighter{font-weight: lighter;}
.color-white{color: #ffffff;}
.color-black{color: #00060e;}
.color-red{color: #e74966;}
.color-redbeige{color: #fde8db;}
.color-beige{color: #fffbec;}
.color-grey{color: rgba(0,0,0,0.6);}
/* Borderradius */
.br-4{border-radius: 4px!important;}
.br-8{border-radius: 8px!important;}
.br-16{border-radius: 16px!important;}
.br-24{border-radius: 24px!important;}
.br-32{border-radius: 32px!important;}
/* Content / Grid */
.content-500{width: 100%;max-width: 500px;margin: 0 auto;}
.content-600{width: 100%;max-width: 600px;margin: 0 auto;}
.content-800{width: 100%;max-width: 800px;margin: 0 auto;}
.content-1000{width: 100%;max-width: 1000px;margin: 0 auto;}
.content-1200{width: 100%;max-width: 1200px;margin: 0 auto;}
.content-1400{width: 100%;max-width: 1400px;margin: 0 auto;}
.h-100{height: 100%;}
.bgcolor-white{background-color: #ffffff;}
.bgcolor-black{background-color: #000000;}
.bgcolor-red{background-color: #E66E6E;}
/* Media Querys */
.display-Dektop{display: block;}
.display-Mobile{display: none;}
.display-Dektop-inline{display: inline-block;}
.display-Mobile-inline{display: none;}
@media (max-width: 992px) {
  .display-Dektop {display: none;}
  .display-Mobile {display: block;}
  .display-Dektop-inline {display: none;}
  .display-Mobile-inline {display: inline-block;}
}
/* Backgrounds */
.bgcolor-white{background-color: #ffffff;}
.bgcolor-black{background-color: #000000;}
.bgcolor-lightgrey{background-color: #f9f9f9;}
.bgcolor-red{background-color: #e74966;}
.bgcolor-redbeige{background-color: #fde8db;}
.bgcolor-beige{background-color: #fffbec;}
/* Images */
img.responsive-img{max-width: 100%; width: 100%;}
img.centered{display: block; margin: 0 auto;}
img.circular{border-radius: 90%;}
img.width-16{width: 100%; max-width: 16px;}
img.width-24{width: 100%; max-width: 16px;}
img.width-32{width: 100%; max-width: 32px;}
img.width-40{width: 100%; max-width: 40px;}
img.width-48{width: 100%; max-width: 48px;}
img.width-56{width: 100%; max-width: 56px;}
img.width-64{width: 100%; max-width: 64px;}
img.width-72{width: 100%; max-width: 72px;}
img.width-80{width: 100%; max-width: 80px;}
img.width-100{width: 100%; max-width: 100px;}
img.width-150{width: 100%; max-width: 150px;}
img.width-200{width: 100%; max-width: 200px;}
img.width-250{width: 100%; max-width: 250px;}
img.width-300{width: 100%; max-width: 300px;}
img.width-350{width: 100%; max-width: 350px;}
img.width-400{width: 100%; max-width: 400px;}
img.width-450{width: 100%; max-width: 450px;}
img.width-500{width: 100%; max-width: 500px;}
img.is-square{aspect-ratio: 1/1;}
main{
  min-height: calc(100vh - 64px);
  position: relative;
  padding-bottom: 0;
  padding-top: 60px;
}
body{
  overflow-x: hidden;
  background-color: #fde8db;
}
.vueModalOuter{
  height: 100%;
}


