.vac-overview {
  margin: 3rem 0;
}

.vac-overview table {
  width: 100%;
  table-layout: fixed;
}

.vac-overview table thead, .vac-overview table thead th {
  color: #fff;
  background-color: #19506e;
}

.vac-overview table tbody tr td {
  font-size: 24px;
  color: #00af96;
  font-weight: bold;
}

.vac-overview table tbody td {
  background-color: #fff;
}

.vac-overview table tbody tr td:first-of-type {
  font-size: initial;
  font-weight: normal;
  color: initial;
}

.vac-overview td, .vac-overview th {
  width: 500px;
}

.vac-overview td+td, .vac-overview th+th {
  width: auto;
}

@media only screen and (max-width: 1200px) {
  .vac-overview td, .vac-overview th {
    width: auto;
    height: 3em;
  }
}

.vac-overview th, .vac-overview td {
  vertical-align: middle;
  text-align: center;
  border: 0.2px solid rgb(217, 217, 217);
  padding: 10px;
}

.vac-overview th {
  font-size: 14px;
  color: #444;
  padding: 10px;
}

.vac-selector-wrapper {
  display: flex;
  justify-content: space-between;
}

.vac-selector {
  background-color: #19506e;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  justify-content: space-between;
  width: 50%;
}

.vac-selector:first-of-type {
  margin-right: 5px;
}

.vac-selector:last-of-type {
  margin-left: 5px;
}

.vac-selector>div {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
  padding: 5px;
  margin: 5px;
  min-height: 74px;
}

.vac-selector>div.active, .vac-selector>div:hover {
  background-color: #00af96;
}

.vac-selector>div.disable {
  display: none;
}

.vac-name-elem, .vac-name-elem-first {
  color: #19506e;
}

.vac-compare-wrapper {
  display: flex;
  justify-content: space-between;
}

.vac-compare-wrapper .vac-compare {
  width: 100%;
  text-align: center;
}

.vac-compare-wrapper .vac-compare>div {
  margin: 5px;
}

.vac-compare-wrapper .vac-compare>.vac-compare-name {
  font-weight: bold;
  font-size: 22px;
  margin: 12px;
}

.vac-compare-elem {
  margin: 10px 0;
  position: relative;
  padding: 22px 10px;
  min-height: 180px;
  border: 1px solid #e2e2e2;
}

.vac-compare-question {
  font-weight: bold;
  margin-bottom: 24px;
  font-size: 18px;
}

.vac-compare-answer {
  margin: 6px 0;
}

.vac-compare-info {
  font-style: italic;
}

.vac-selector-mobile-wrapper {
  display: none;
  background-color: #19506e;
  padding: 15px;
  flex-direction: column;
}

.vac-selector-mobile-wrapper select.vac-selector-mobile {
  margin: 6px 0;
}

.vac-compare-wrapper .vac-compare:first-of-type>div {
  margin-left: 0px;
}

.vac-compare-wrapper .vac-compare:last-of-type>div {
  margin-right: 0px;
}

@media only screen and (max-width: 991px) {
  .vac-selector {
    width: 100%;
    margin: 12px 0 !important;
  }
  .vac-selector-wrapper {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 769px) {
  .vac-overview {
    display: none !important;
  }
  .vac-selector-wrapper {
    display: none !important;
  }
  .vac-compare-wrapper {
    flex-direction: column;
  }
  .vac-selector-mobile-wrapper {
    display: flex;
  }
  .vac-compare-wrapper .vac-compare:last-of-type {
    background-color: #19506e;
    color: #fff;
  }
  .vac-compare-elem {
    border: 1px solid #fff;
  }
  .vac-compare-wrapper .vac-compare:first-of-type>div {
    margin-left: 5px;
  }
  .vac-compare-wrapper .vac-compare:last-of-type>div {
    margin-right: 5px;
  }
  .vac-compare .vac-compare-elem {
    height: auto !important;
  }
}