@charset "UTF-8";

.interesting-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;	
}

.interesting-tabs .interesting-tab {
  display: flex;
	height: 42px;
	align-items: center;
  margin: 0;
  padding: 4px 16px 0;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
	color: var(--blue);
	border-radius: 100px;
	line-height: auto;
}

.interesting-tabs .interesting-tab:hover,
.interesting-tabs .interesting-tab--active {
  border: 1px solid var(--blue);
	background-color: var(--blue);
	color: var(--white);  
  position: relative;
}

@media (max-width: 500px) {
  .interesting-tabs .interesting-tab {
    padding: 2px 10px 0;
    font-size: 14px;
    height: 32px;
  }
}
