﻿/*shadow*/
/*@mixin flextype($type) {
    @if $type == 'center' {
        @include flex;
    }
    @else if $type == 'column' {
        @include flex(12px,column);
    }
    @else {
        @include flex(12px,column,center,center,wrap);
    }
}*/
html {
  box-sizing: border-box;
}

* {
  outline: none;
  text-decoration: none;
  font-family: Arial;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
}

.card {
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-radius: 18px 18px 6px 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .card {
    height: 100%;
    min-height: 0;
  }
}
.card .card-header {
  padding: 9px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .card-header nav {
  display: flex;
  align-items: center;
  gap: 9px;
}
.card .card-body {
  flex: 1;
  padding: 9px;
}
@media (min-width: 768px) {
  .card .card-body {
    overflow-y: auto;
  }
}
