main.main {
	padding-bottom: 1.6rem;
}

header.header .logo svg {
	width: 220px;
	height: 100px;
	margin-top: -10px;
}

@media screen and (max-width: 460px){
	body {
		overflow-x: scroll !important; 
	}
}

div.wrapper {
	padding-top: 30px;
}

body {
	min-width: 445px;
}

.info-tooltip {
	cursor: pointer;
}

.tooltip-popup {
  top:-17px;
  width: 300px;
  right: 39px;
  padding: 20px 10px 0px 10px;
  border: 2px solid #ABC111;
  background-color:#F2F6DC;
  color:#191919;
  display: none;
  position:absolute;
  transition:  all 0.5s;
}

.tooltip-popup a {
	color: red;
}

.info-tooltip>svg:hover + .tooltip-popup,
.info-tooltip>svg:focus + .tooltip-popup,
.info-tooltip:focus > .tooltip-popup,
.tooltip-popup:hover {
    display: block;
}

.tooltip-popup::before {
  content: "";
	position: absolute;
  width: 0; 
  height: 0; 
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ABC111;
  right: -10px;
  top: 18px;
}

.tooltip-popup::after {
  content: "";
	position: absolute;
  width: 0; 
  height: 0; 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #F2F6DC;
  right: -8px;
  top: 20px;
}