#info-bar
{
	background-color: #1f3e49;
	
	color: white;
	text-align: center;
	
	width: 450px;
	height: 20px;
	
	padding: 10px;
	margin: 5px auto;
	
	box-shadow: 0px 3px 7px #000;
	
	position: fixed;
	left: calc(40% - 225px);
    top: 65px;
	z-index: 99;
	
	transition: height 0.3s, opacity 0.3s;

	cursor: pointer;
}

#info-bar #info-popup
{
	width: 470px;
	height: 100%;
	
	margin: -10px;
	
	background-color: #D7E3E7;
	
	overflow-y: scroll;
	
	transition: height 0.5s;	

	position: relative;
	top: 10px;

	padding: 0 20px;
	box-sizing: border-box;

	cursor: default;
}

#info-bar #info-popup .comp-image>img
{
	max-height:370px;
	max-width: 370px;
	
	height: auto;
	width: 100%;
	
	margin-top: 30px;
}

#info-bar .info-btn
{
	background: #750a0a url("../../images/template/info-icon.svg") right no-repeat;
    border-radius: 50px;
	float: right;
	height: 20px;
	width: 20px;
}

#info-bar #info-popup.hidden
{
	height: 0;
}

#info-bar.hidden
{
	visibility: hidden;
}

#info-bar #info-popup p
{
	color: #404041;
}

#info-bar .info-topbar
{
    position: relative;
}

#info-bar .info-topbar span
{
    position: relative;
    top: -2px;
    left: 10px;
}

@media (max-width: 800px)
{	
	#info-bar
	{
		width: calc(80% - 40px);
		left: 13%;
	}
	
	#info-bar #info-popup
	{
		width: calc(100% + 20px);
	}

    #info-bar .info-topbar span
    {
        top: 0px;
        left: 7px;
    }
}

@media (min-width: 768px) {
    #info-bar {
        height: 30px;
        font-size: 1.3em;
    }

    #info-bar .info-topbar span
    {
        top: 3px;
    }

    #info-bar .info-btn {
        height: 30px;
        width: 30px;
    }
}
