@font-face {font-family: "Segoe UI";
  src: url("/fonts/SegoeUI/SegoeUI.eot"); /* IE9*/
  src: url("/fonts/SegoeUI/SegoeUI.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("/fonts/SegoeUI/SegoeUI.woff2") format("woff2"), /* chrome、firefox */
  url("/fonts/SegoeUI/SegoeUI.woff") format("woff"), /* chrome、firefox */
  url("/fonts/SegoeUI/SegoeUI.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("/fonts/SegoeUI/SegoeUI.svg#Segoe UI") format("svg"); /* iOS 4.1- */
}
* { box-sizing: border-box; }
html, body { }
body {
    margin: 0; padding: 0;
    color: #333;
    font-family: Segoe UI, sans-serif;
    font-size: 14px; line-height: 18px;
    position: relative;
    overflow-x: hidden;
}
a, a:link, a:visited { color: #333; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }

h1, h2, h3, h4, h5{ text-transform: none; font-weight: normal; padding: 0; margin: 0;}
p { margin: 0; padding: 0; color: #333; font-size: 14px; line-height: 18px;}
img { border: none; }
ul { margin: 0; padding: 0; list-style-type: none;}
ul li { margin: 0; padding: 0; }

.clear{ clear: both; height: 1px; }
.italic{ font-style: italic; }
.bold{ font-weight: bold; }
.underline{ text-decoration: underline; }
.ar{ text-align: right !important; }
.ac{ text-align: center !important; }
.al{ text-align: left !important; }
.inline-block{ display: inline-block; vertical-align: top; }
input, textarea{ font-family: Segoe UI, sans-serif; }
.fw{ width: 100%;}
@keyframes showing {
 0%{
  display:block;
  opacity:0;
 }
 100% {
  opacity:1;
 }
}
@-webkit-keyframes bounce-center { 
            0%, 20%, 50%, 80%, 100% {-webkit-transform: translateX(-50%) translateY(0);} 
            40% {-webkit-transform: translateX(-50%) translateY(-30px);} 
            60% {-webkit-transform: translateX(-50%) translateY(-15px);} 
}
@keyframes expand{
   0%{height:0px}
   100%{height:100%} 
}
@-webkit-keyframes expand{
    0%{height:0px}
    100%{height:100%}
}
@keyframes xexpand{
   0%{width:0px}
   100%{width:100%} 
}
@-webkit-keyframes xexpand{
    0%{width:0px}
    100%{width:100%}
}
@keyframes xexpand-custom{
   0%{width:0px}
   100%{width:calc( 100% - 42px )} 
}
@-webkit-keyframes xexpand-custom{
    0%{width:0px}
    100%{width:calc( 100% - 42px )}
}
@keyframes yexpand{
   0%{ height:0px; opacity:0; }
   100%{ height:100%; opacity:1; } 
}
@-webkit-keyframes yexpand{
    0%{ height:0px; opacity:0; }
    100%{ height:100%; opacity:0; }
}
@keyframes fading{
   0%{opacity:0}
   100%{opacity:1} 
}
@-webkit-keyframes fading{
    0%{opacity:0}
    100%{opacity:1}
}
@keyframes bounce-center { 
            0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 
            40% {transform: translateX(-50%) translateY(-30px);} 
            60% {transform: translateX(-50%) translateY(-15px);} 
}

@-webkit-keyframes bounce-left { 
            0%, 20%, 50%, 80%, 100% {transform: translateX(0);} 
            40% {transform: translateX(30px);} 
            60% {transform: translateX(15px);} 
}
@keyframes bounce-left { 
            0%, 20%, 50%, 80%, 100% {transform: translateX(0);} 
            40% {transform: translateX(30px);} 
            60% {transform: translateX(15px);} 
}

@-webkit-keyframes skew-center { 
            0% {transform: translateX(-50%) skew(0deg);} 
            100% {transform: translateX(-50%) skew(-45deg);}  
}
@keyframes skew-center { 
            0% {transform: translateX(-50%) skew(0deg);} 
            100% {transform: translateX(-50%) skew(-45deg);} 
}

@-webkit-keyframes rotate { 
            0% {transform: rotate(0deg);} 
            100% {transform: rotate(360deg);} 
}
@keyframes rotate { 
            0% {transform: rotate(0deg);} 
            100% {transform: rotate(360deg);} 
} 

@-webkit-keyframes rotate-vertical { 
            0% {transform: translateY(-50%) rotate(0deg);} 
            100% {transform: translateY(-50%) rotate(360deg);} 
}
@keyframes rotate-vertical { 
            0% {transform: translateY(-50%) rotate(0deg);} 
            100% {transform: translateY(-50%) rotate(360deg);} 
} 
@-webkit-keyframes zooming { 
            0% {transform: scale(0.75);} 
            50% {transform: scale(1);} 
            75% {transform: scale(1.25);}
            100% {transform: scale(1);} 
}
@keyframes zooming { 
            0% {transform: scale(0.75);} 
            50% {transform: scale(1);} 
            75% {transform: scale(1.25);}
            100% {transform: scale(1);}   
} 
@keyframes shake {
  30%, 70% {
    transform: translate3d(-1px, 0, 0);
  }
  
  40%, 60% {
    transform: translate3d(2px, 0, 0);
  }

  45%, 50%, 55% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
.mb20{
    margin-bottom: 20px;
}
.notification-custom{
    position: fixed;
    top: 0; right: 5px;
    animation-name: fading;
    animation-duration: 1s;
    z-index: 100000;
    background: rgba(68,68,68,0.7);
    width: 100%; height: 100%;
    display: none;
}
.notification-custom .html{
    padding: 20px;
    background: white;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    max-width: 620px;
    width: 100%;
}
.notification-custom .html h2{
    text-align: center;
    font-size: 25px;
    line-height: 30px;
    line-height: #333333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}
.notification-custom .html h2::before{
    content: "";
    left: -20px; bottom: 0;
    width: calc( 100% + 40px ); height: 2px;
    position: absolute;
    background: #EA2229;
}
.notification-custom .html h2 img{
    vertical-align: middle;
}
.notification-custom .html .half{
    display: inline-block;
    vertical-align: top;
    width: 50%;
}
.notification{
    position: fixed;
    top: 0; right: 5px;
    opacity: 0;
    animation-name: fading;
    animation-duration: 1s;
    z-index: 100000;
}
.notification.a{
    opacity: 1;
}
.notification.success{
    background: #00b200;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 5px 5px 10px #888888;
}
.notification.error{
    background: #b20000;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 5px 5px 10px #888888;
}
.dropdown-multiple select{
    border: 1px solid #444;
    width: 100%; height: 100px;
    padding: 10px;
    
}
.dropdown{
    position: relative;
    border: 1px solid #333;
    background: white;
}
.dropdown select{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: none;
    color: #333;
    background: transparent;
    position: relative;
    -webkit-appearance:none;
    appearance:none;
      -moz-appearance:none;
      z-index: 2;
}
.dropdown select option{
    color: #444;
}
.dropdown i{
    width: 40px; height: 100%; 
    color: #444;
    position: absolute;
    top: 0; right: 0; 
    padding: 7px 12px;
    box-sizing: border-box;
    font-size: 22px;
    z-index: 1;
}
.wrapper{
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}
.wrapper-half-left{
    max-width: 750px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}
.half-left{
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding-right: 70px;
}
.half-right{
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding-left: 70px;
}
body .bx-wrapper{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    margin-bottom: 0;
}
body .bx-wrapper .bx-controls-direction{
    display: none;
}
body .bx-wrapper .bx-pager {
    bottom: 40px;
    padding: 0;
    display: none;
}
body.home .bx-wrapper .bx-pager{
    display: block;
}
body #banner-slider .bx-wrapper .bx-controls-direction a{
    display: block;
    width: 31px;
    height: 70px;
}
body .bx-wrapper .bx-pager.bx-default-pager a{
    width: 16px; height: 16px;
    border-radius: 0;
    border: 2px solid #000000;
    background: transparent;
}
body .bx-wrapper .bx-pager.bx-default-pager a:hover, 
body .bx-wrapper .bx-pager.bx-default-pager a.active, 
body .bx-wrapper .bx-pager.bx-default-pager a:focus{
    background: url(/images/assets/box-li.png) no-repeat center center;
}
body #banner-slider .bx-wrapper .bx-prev{
    background: url(/images/assets/arrow-left-w.png) no-repeat center center;
    background-position: center center;
	-webkit-filter: opacity(100%); /* Safari */
    filter: opacity(100%);
    left: 50px;
}
body #banner-slider .bx-wrapper .bx-next{
    background: url(/images/assets/arrow-right-w.png) no-repeat center center;
    background-position: center center;
	-webkit-filter: opacity(100%); /* Safari */
    filter: opacity(100%);
    right: 50px;
}
body #banner-slider .bx-wrapper .bx-prev:hover{
    background-position: center center;
}
body #banner-slider .bx-wrapper .bx-next:hover{
    background-position: center center;
}
body .owl-prev{
    position: absolute;
    left: -50px; top: 50%;
    transform: translateY(-50%);
    font-size: 65px;
    color: #005CAA;
    cursor: pointer;
}
body .owl-next{
    position: absolute;
    right: -50px; top: 50%;
    transform: translateY(-50%);
    font-size: 65px;
    color: #005CAA;
    cursor: pointer;
}


body .ui-tooltip, .arrow:after {
    background: #ED1C24;
    border: 2px solid #ED1C24 !important;
    z-index: 100001;
  }
  body .ui-tooltip.tooltip-white, .arrow-white:after {
    background: white;
    border: 2px solid white !important;
  }
  body .ui-tooltip{
    padding: 13px 20px;
    color: white;
    font-size: 16px;
    text-transform: none;
    box-shadow: none;
  }
  body .ui-tooltip p{
    padding: 5px;
    color: white;
    font-size: 16px;
  }
  body .ui-tooltip.tooltip-white{
      padding: 5px 7px;
      text-transform: uppercase;
  }
  .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }
  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }
  
  .arrow-white {
    width: 16px;
    height: 30px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: -12px;
    margin-top: -8px;
  }
  .arrow-white.top {
    top: -16px;
    bottom: auto;
  }
  .arrow-white.left {
    left: 20%;
  }
  .arrow-white:after {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow-white.top:after {
    bottom: -20px;
    top: auto;
  }
  .owl-pager{
      text-align: center;
      font-size: 18px;
  }
  
  body .fancybox-opened {
    z-index: 999999;
  }
.video-slide.owl-carousel{
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
    width: calc( 100% - 100px );
}
.images-slider.owl-carousel{
    position: relative;
    margin-left: 35px;
    margin-right: 35px;
    width: calc( 100% - 70px );
    margin-top: 40px;
}
.images-slider .image-item,
.images-slider .item{
    width: 100px; height: 80px;
    margin: 0 auto;
    position: relative;
} 
.images-slider .image-item img,
.images-slider .item img{
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}  
    
#layout-border-top{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 25px;
    z-index: 10000;
    display: none;
}
#layout-border-bottom{
    position: fixed;
    bottom: 0; left: 0;
    width: 100%; height: 25px;
    z-index: 10000;
    display: none;
}
.trans #layout-border-top,
.trans #layout-border-bottom{
    display: block;
}

body #cookie-bar {
    background: #242F3D; 
    padding: 10px 0; 
    z-index: 10000;
    color: white;
    position:fixed; 
    bottom:0; left:0; 
    width: 100%;
}
#cookie-bar p{
    color: white;
}
#cookie-bar p a.link{
    color: #00AEEF;
    text-decoration: underline;
    margin-left: 0;
}
#cookie-bar .cb-enable{
    padding: 5px 10px;
}


.pagination{
    text-align: center;
    margin-bottom: 0;
}
.pagination li{
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    line-height: 0 !important;
    text-align: center;
}
.section .pagination li::before{
    content: none;
}
.pagination li.disabled span{
    display: inline-block;
    background: transparent;
    vertical-align: middle;
    padding: 0 7px;
    color: #221F1F;
    font-size: 30px;
    line-height: 15px;
    width: auto; height: auto;
    position: relative;
    top: -2px;
}
.pagination li a{
    width: 30px; height: 30px;
    display: inline-block;
    vertical-align: middle;
    padding: 8px 5px;
    background: #221F1F;
    color: white;
    font-size: 14px; 
    line-height: 14px;
    box-sizing: border-box;
}
.pagination li a:hover{
    background: #ea2229; 
}
.pagination li.active span{
    width: 30px; height: 30px;
    display: inline-block;
    vertical-align: middle;
    padding: 8px 5px;
    background: #ea2229;
    color: white;
    font-size: 14px;
    line-height: 14px;
    box-sizing: border-box;
}
.pagination li a[rel="prev"],
.pagination li a[rel="next"]{
    display: inline-block;
    background: transparent;
    vertical-align: middle;
    padding: 0 10px;
    color: #221F1F;
    font-size: 30px;
    line-height: 15px;
    width: auto; height: auto;
    position: relative;
    top: -2px;
}

#copyright{
    background: #0A1E2C;
    color: #F2F2F2;
    font-size: 14px;
    padding: 20px 0;
    text-align: right;
}
#copyright .copyright{
    float: left;
}
#copyright .copyright .devider{
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
}
#copyright .links a{
    padding-left: 3px;
    padding-right: 10px;
    color: #005CAA;
}
#copyright .links a:last-child{
    padding-right: 0;
}

/***** Auth *****/
#auth-group{
    max-width: 560px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}
#auth-group-head{
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
#auth-group-head .logo{
    padding-bottom: 60px;
}
#auth-group-head .logo img{
    max-width: 100%;
}
#auth-group-head h1{
    color: white;
    margin-bottom: 60px;
}
#auth-group .help-block{
    display: block;
    color: #b20000;
}
#auth-group .auth-header{
    color: white;
    text-align: center;
}
#auth-group .auth-header a{
    color: white;
}
#auth-group .auth-header .item{
    display: inline-block; 
    vertical-align: middle;
    text-align: center;
    padding: 7px 10px;
    width: 50%;
    font-size: 25px;
    line-height: 30px;
    text-decoration: underline;
}
#auth-group .auth-header .item.active{

}
#auth-group .auth-header .links{
    padding-top: 40px;
    font-size: 16px;
    color: white;
}
#auth-group .auth-form{
    padding: 20px;
    border: 1px solid #666;
    background: white;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-align: center;
}
#auth-group .auth-form h1{
    color: #444;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 25px;
    text-transform: uppercase;
}
#auth-group .auth-form h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc( 100% + 40px );
    height: 3px;
    background: #005CAA;
}
#auth-group .auth-form input[name="email"],
#auth-group .auth-form input[name="text"],
#auth-group .auth-form input[type="text"],
#auth-group .auth-form input[type="password"]{
    width: 100%;
    padding: 10px;
    border: 1px solid #005CAA;
    width: 100%;
}
#auth-group .auth-form .form-group{
    padding-bottom: 20px;
}
#auth-group .auth-form .form-group2{
    padding-bottom: 20px;
    display: inline-block;
    vertical-align: top;
    width: 48%;
}
#auth-group .auth-form h2{
    width: 300px;
    margin: 0 auto;
}
#auth-group .auth-form label{
    text-align: left;
    display: block;
    font-size: 16px;
}
#auth-group .auth-form label a{
    color: #005CAA;
    text-decoration: underline;
}
#auth-group .auth-form .checkbox label{
    width: auto;
}
#auth-group .auth-form button{
    min-width: 200px;
    text-align: center;
    font-size: 20px;
    padding: 10px 25px;
    color: white;
    border: none;
    background-color: #005CAA;
    background-repeat: no-repeat;
    background-position: 20px center;
    cursor: pointer;
}
#auth-group .auth-form button.lrg{
    width: 400px;
    max-width: 100%;
    font-size: 18px;
}
#auth-group .auth-form button:hover{
    background-color: #231F20;
}
#auth-group .auth-form .links{
    padding-top: 10px;
    text-align: left; 
}
#auth-group .auth-form .links a{
    color: #202020;
    font-size: 16px;
    text-decoration: underline;
}

a.green-button, button.green-button{
    display: inline-block;
    padding: 10px 20px;
    background: #00663a;
    color: white;
    margin-right: 30px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
}
a.red-button, button.red-button{
    display: inline-block;
    padding: 10px 20px;
    background: #DF0713;
    color: white;
    margin-right: 30px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 13px;
}
a.edit-button, button.edit-button{
    display: inline-block;
    padding: 10px 20px;
    background: #1A6600;
    color: white;
    margin-right: 30px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 13px;
}
.actions a.edit-button, .actions button.edit-button{
    margin-right: 20px;
}
a.green-button-right, button.green-button-right{
    display: inline-block;
    padding: 10px 20px;
    background: #00663A;
    color: white;
    margin-left: 30px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 13px;
}
a.red-button-right, button.red-button-right{
    display: inline-block;
    padding: 10px 20px;
    background: #DF0713;
    color: white;
    margin-left: 30px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 13px;
}
a.edit-button-right, button.edit-button-right{
    display: inline-block;
    padding: 10px 20px;
    background: #1A6600;
    color: white;
    margin-left: 30px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 13px;
}
.pagination-ajax{
    text-align: center;
    margin-top: 50px;
}
.pagination-ajax > span{
    display: inline-block; 
    vertical-align: middle;
    margin: 5px;
    font-size: 22px;
    color: #444;
}
.pagination-ajax > span span{
    display: block; 
    padding: 10px;
    cursor: pointer;
}
.pagination-ajax > span.active,
.pagination-ajax > span:hover{
    background: white;
}
.loader{
    position: absolute;
    top: -40px; left: 0;
    width: 100%; height: calc( 100% + 80px );
    background-color: rgba(0,0,0,0.4);
    background-image: url(/images/icons/bx_loader.gif);
    background-position: center center;
    background-repeat: no-repeat;
    display: none;  
}
.load .loader{
    display: block;
}
.checkbox,
.radio{
    padding-bottom: 10px;
    font-size: 22px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
}
.checkbox input,
.radio input{
    position: absolute;
    opacity: 0;
}
.checkbox label,
.radio label{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 21px;
    padding-bottom: 0;
    padding-left: 35px;
    position: relative;
}
.checkbox label::before{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 20px; height: 20px;
    background-color: #eee;
}
.radio label::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  height: 26px;
  width: 26px;
  background-color: #eee;
  border-radius: 50%;
}
.checkbox:hover input ~ label::before,
.radio:hover input ~ label::before{
  background-color: #ccc;
}
.checkbox input:checked ~ label::before,
.radio input:checked ~ label::before{
  background-color: #005CAA;
}
.checkbox input:checked ~ label::after,
.radio input:checked ~ label::after{
    content: "";
  display: block;
  position: absolute;
}
.checkbox input:checked ~ label::after{
    left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radio input:checked ~ label::after{
    top: 5px; left: 8px;
    width: 10px; height: 10px;
  border-radius: 50%;
  background: white;
}
.auth-form .success{
    color: #00b200;
    font-size: 18px;
}
.file-upload {
	position: relative;
	display: inline-block;
        vertical-align: middle;
}

.file-upload__label {
  display: block;
  padding: 1em 2em;
  color: #fff;
  background: #222;
  border-radius: .4em;
  transition: background .3s;
  cursor: pointer;
  &:hover {
     cursor: pointer;
     background: #000;
  }
}
.file-upload__input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 1;
    width:0;
    height: 100%;
    opacity: 0;
}
.file-upload-info{
    display: inline-block;
    vertical-align: middle;
    color: white;
    font-size: 16px;
    width: calc( 100% - 170px );
    padding-left: 10px;
}

/*** header max-width: 1500px ***/
#logo{
    display: inline-block;
    vertical-align: middle;
    width: 240px;
    padding: 15px 0;
}
.trans #logo{
    height: 65px;
    padding: 15px 0;
}
#logo img{
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
}
#top-menu{
    text-align: right;
    position: relative;
    display: block;
    vertical-align: middle;
    background: #005CAA;
    text-align: center;
}
.trans #top-menu{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 10000;
}
#top-menu .icon{
    display: none;
}
#top-menu .menu{
    width: calc( 100% - 240px - 90px );
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    padding-right: 20px;
}
#top-menu .menu > ul > li{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    color: white;
    padding: 15px;
}
.notification-icon{
    position: absolute;
    top: -4px; right: -8px;
    cursor: pointer;
}
.notification-icon > i{
    transform: translate3d(0, 0, 0);
}
.notification-icon.active > i{
    transform: translate3d(0, 0, 0);
    animation: shake 2s infinite;
    color: #8f0908;
}
#top-menu .menu > ul > li.active,
#top-menu .menu > ul > li:hover{
}
#top-menu .menu > ul > li.active::before,
#top-menu .menu > ul > li:hover::before{
    
}
#top-menu .menu > ul > li.active::after,
#top-menu .menu > ul > li:hover::after{
}
#top-menu .menu > ul > li a{
    color: white;
    display: block;
}
#top-menu .menu > ul > li.active a,
#top-menu .menu > ul > li:hover a{

}
#top-menu .menu > ul > li ul.submenu{
    position: absolute;
    top: 108px; left: 0;
    text-align: left;
    padding-top: 4px;
    border-bottom: 4px solid #072739;
    min-width: 250px;
    display: none;
}
#top-menu .menu > ul > li:hover ul.submenu{
    display: block;
}    
#top-menu .menu > ul > li ul.submenu li{
    background: rgba(255,255,255,0.8);
    padding: 8px 20px 5px;
    border-bottom: 1px solid #999;
}
#top-menu .menu > ul > li ul.submenu li:last-child{
    border-bottom: none;
}
#top-menu .menu > ul > li ul.submenu li a{
    color: #072739;
}
#top-menu .menu > ul > li ul.submenu li.active a,
#top-menu .menu > ul > li ul.submenu li:hover a{
    color: #3E9FB7;
}


#top-menu .langs-div{
    width: 90px;
    display: inline-block;
    vertical-align: middle;
    padding-top: 25px;
    padding-bottom: 25px; 
}
#top-menu .langs-div ul li{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    color: #EA2229;
    padding: 7px 5px;
    border-radius: 10px;
    text-align: center;
    
}
#top-menu .langs-div ul li.active,
#top-menu .langs-div ul li:hover{
    
}
#top-menu .langs-div ul li a{
    color: #202020;
}
#top-menu .langs-div ul li.active a,
#top-menu .langs-div ul li:hover a{
    color: #EA2229;
}

