.topBar{
    position: fixed;
    top: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    left: 0px;
    z-index: 11;
    -webkit-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
    /* background: #f5f6fa; */
    background: #fff;
}

.topBar > div:first-child{
    max-width: 1350px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.topBar.withBackground{
    background: #fff;
}

.topBar.withShadow{
    /* box-shadow: 10px 10px 10px #eef1f6; */
    box-shadow: 0px 0px 5px #e2e7ef;
}

.topBar .topButton{
    float: right;
    margin-right: 40px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    color: #545874;
}

.topBar .topButton > a,
.topBar .topButtonContent > div > a{
    text-decoration: none;
    color: #545874;
    display: block;
}

.topBar > div > .hrefButton{
    line-height: 35px !important;
}

.topBar .topButton > span:first-of-type, .topBar .topButton > a:first-of-type, .topBar .topButtonContent > div > div, .topBar .topButtonContent > div > a{
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topButtonNew{
    background: #ea2727;
    position: absolute;
    top: -5px;
    right: -14px;
    color: #fff;
    line-height: normal;
    font-size: 8px;
    padding: 3px;
    border-radius: 4px;
    transform: rotate(20deg);
}

.hamburgerContent button > span,
.hamburgerContent a.hrefButton > span{
    position: relative;
}

.hamburgerContent button > span .topButtonNew,
.hamburgerContent a.hrefButton > span .topButtonNew{
    top: -15px;
    right: -15px;
}

.topBar .topButtonContent{
    position: absolute;
    padding-top: 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
    width: auto;
    left: 50%;
    margin-left: -84px;
}

.topBar .topButtonContent > div{
    position: relative;
    background: #fff;
    top: -1px;
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    width: -o-calc(100% - 40px);
    width: calc(100% - 40px);
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    border: 1px solid #edeff3;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 18px;
}

.topBar.withShadow .topButtonContent > div{
    border: 1px solid #fff;
    box-shadow: 0px 5px 5px #e2e7ef;
}

.topBar .topButtonContent > div > div,
.topBar .topButtonContent > div > a{
    border-bottom: 1px solid #edeff3;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.topBar .topButtonContent > div > div:last-of-type{
    border-bottom: 0px;
}

.topBar button,
.topBar a.hrefButton{
    float: right;
    margin-right: 20px;
}

.topBar .topButton > span:first-of-type{
    display: block;
    height: 100%;
}

.topBar .topButton:hover > span:first-of-type, .topBar .topButton:hover > a:first-of-type, .topBar .activeTopButton > span:first-of-type,
.topBar .topButton > .topButtonContent > div > div:hover,
.topBar .topButton > .topButtonContent > div > a:hover{
    color: #36beca;
}

.topBar .topButton:hover > .topButtonContent{
    visibility: visible;
    opacity: 1;
}

.topBar > div button:first-child,
.topBar > div a.hrefButton:first-child{
    margin-right: 0px;
}

.hamburger{
    display: none;
    position: absolute;
    top: 1px;
    right: 0px;
}

.hamburger .line{
    width: 30px;
    height: 3px;
    background-color: #445056;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 6px auto;
}

.hamburger.is-active .line{
    margin: 10px auto;
    margin-top: 2px;
}

.hamburger.is-active .line:nth-child(2){
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

.hamburgerContent{
    position: fixed;
    top: 74px;
    padding-top: 1px;
    width: 35%;
    height: -moz-calc(100% - 75px);
    height: -webkit-calc(100% - 75px);
    height: -o-calc(100% - 75px);
    height: calc(100% - 75px);
    z-index: 2147483647;
    background: #fff;
    right: -100%;
    display: none;
    text-align: center;
    overflow-y: auto;
    min-width: 300px;
}

.hamburgerContent.withShadow{
    /* box-shadow: 0px 10px 10px #eef1f6; */
    box-shadow: 0px 5px 5px #e2e7ef;
}

.hamburgerContent > div{
    opacity: 0;
}

.hamburgerContentActive{
    display: block;
}

.hamburgerContent button,
.hamburgerContent a.hrefButton{
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    width: -o-calc(100% - 40px);
    width: calc(100% - 40px);
    margin-bottom: 20px;
}

.hamburgerContent button#postButton, .hamburgerContent button#panelButton,
.hamburgerContent a.hrefButton#postButton, .hamburgerContent a.hrefButton#panelButton{
    margin: 20px;
    margin-top: 1px;
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: -o-calc(50% - 30px);
    width: calc(50% - 30px);
}

.hamburgerContent a.hrefButton#postButton{
    float: left; 
    padding-left: 20px; 
    padding-right: 20px; 
    margin-right: 0px;
}

.hamburgerContent a.hrefButton#panelButton{
    float: left; 
    padding-left: 20px; 
    padding-right: 20px;
}

.hamburgerContent button, .hamburgerContent .hrefButton{
    height: 50px !important;
    line-height: 50px !important;
}

.hamburgerLine{
    background: #ddd;
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    width: -o-calc(100% - 40px);
    width: calc(100% - 40px);
    height: 1px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hamburgerContent .helpTitle{
    opacity: 0.6;
    padding: 20px;
}

.hamburgerContent .helpPhone, .hamburgerContent .helpEmail{
    padding: 20px;
    padding-top: 0px;
}

.hamburgerContent .helpPhone a, .hamburgerContent .helpEmail a{
    color: #36beca;
    text-decoration: none;
}