* {box-sizing: border-box}
body {font-family: "Lato", sans-serif;}

/* Style the tab */
.tabs-wrap {
  /* float: left; */
  /* border: 1px solid #ccc;
  background-color: #f1f1f1; */
  width: 100%;
  max-width: 350px;
  /* height: 300px; */
  background: #003b79;
}

/* Style the buttons inside the tab */
.tabs-wrap button {
  display: block;
  background-color: inherit;
  color: #fff;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  position: relative;
}
.tabs-wrap button .tabs-icons{position: absolute;
    right: 32px;
    display: block;
    top: 26px;
    font-size: 30px;}

/* Change background color of buttons on hover */
.tabs-wrap button:hover {
  background-color: #ddd;
  color: #003b79;
}

/* Create an active/current "tab button" class */
.tabs-wrap button.active {
  background-color: #ccc;
  color: #003b79;
}

/* Style the tab content */
.tabcontent {
  /* float: left; */
  padding: 0px 12px;
  /* border: 1px solid #ccc; */
 width: 100%;
  border-left: none;
  /* height: 300px; */
}
.tab-content-wrap{
    width: 100%;
    max-width: clac(100% - 350px);
}