.desktop-logo {
    display: block;
    position: relative;
    text-align: center;
    width: 178px;
    height: 89px;
    margin: 0 auto;
}

.desktop-logo .inner-logo{
    position: relative;
    display: inline-block;
    width: 178px;
    height: 89px;
    margin: 0;
    margin-left: -17px;
    background: url(/img/logo.png) center top no-repeat;
    background-size: 100%;
    max-width: 210px;
}
.desktop-logo i.iBtn{
	display: block;
	position: absolute;
	right: -21px;
	top: -6px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}
.desktop-logo i.iBtn:after {
	content: "";
	background: url("/img/svg/iiconlogo.svg") no-repeat 0 0;
	-moz-background-size: 24px 24px;
	-o-background-size: 24px 24px;
	-webkit-background-size: 24px 24px;
	background-size: 24px 24px;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.desktop-logo .i{
    display: block;
    position: absolute;
    right: -21px;
    top: -6px;
    width: 24px;
    height: 24px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    background: url(/img/svg/iiconlogo.svg) center center no-repeat;
}

.desktop-logo .inner-logo .i:hover{
    opacity: 1;
}

.logo-popupBg {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.logo-popup {
    position: absolute;
    z-index: 10000;
    top: 29px;
    right: 1px;
    width: 320px;
    box-shadow: 4px 4px 5px #e4e3e3;
    border: 1px solid #e4e3e3;
    background: #fff;
    border-radius: 5px;
}

.logo-popup:after {
    content: "";
    position: absolute;
    top: -12px;
    right: 136px;
    display: block;
    width: 21px;
    height: 13px;
    background: url(/img/ico_arrow_popup.png);
}

.logo-popup .item{
    position: relative;
    display: block;
    padding-left: 80px;
    line-height: 65px;
    height: 65px;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 18px;
    /*color: #21a8ef; */
    border-bottom: 1px solid #e4e3e3;
}

.logo-popup .item .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 60px;
    background-position: center center;
    background-repeat: no-repeat;
	background-size: contain;
}


@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    /* Retina-specific stuff here */

    .b-wrapper .b-logo .i{
        width: 26px;
        height: 26px;
        background: url(/img/info_2x.png) center center no-repeat;
        background-size: 24px;
    }

}

@media only screen and (max-width: 980px) {
    .desktop-logo {
        display: none !important;
    }

    .nondesktop-logo {
        display: inline-block !important;
    }
}

@media only screen and (min-width: 981px) {
    .desktop-logo {
        display: block !important;
    }

    .nondesktop-logo {
        display: none !important;
    }
}