/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.tabcontent {
  animation: fadeEffect 1s;
  /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#left {
  display: table-cell;
  min-width: 180px;
  padding-bottom: 0.5rem;
  position: relative;
  left: -5px;
}

#right {
  display: table-cell;
  width: 100%;
  vertical-align: top;
  text-align: right;
  position: relative;
  right: -5px;
}

body {
  padding: 0 1rem;
  font-family: 'Roboto', sans-serif;
}

.center {
  margin: auto;
  width: 90%;
  min-width: 460px;
  padding: 10px;
}

.base {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h1.base {
  font-weight: normal;
}

.buttons-title--strong {
  font-weight: bold;
}

.buttons-subtitle {
  margin: 60px 0 0 0;
  text-decoration: underline;
  color: #7b6a6a;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  line-height: 36px;
}

.buttons-subtitle--type {
  margin: 15px 0 0 0;
  color: #976969;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  line-height: 36px;
}

textarea {
  width: 99%;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}

.mb-40 {
  margin-bottom: 40px;
}
