/* GENERAL */
#wrapper {
  padding-bottom: 60px; padding-top: 77px;
}

.default-button {
  display: inline-block;
  height: 34px;
  margin-right: 15px; padding: 0 20px;
  font-size: 14px; line-height: 32px; font-weight: 400; text-transform: uppercase; color: #FFF;
  background-color: #34495E;
  border: 1px solid #34495E;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.default-button:hover {
  background-color: #537AAE;
  border-color: #537AAE;
}
/* /GENERAL */

/* HEADER */
header {
  position: fixed; top: 0; left: 0; z-index: 5;
  width: 100%; height: 32px;
  padding: 0 20px;
  color: #FFF; line-height: 32px;
  background-color: #2E3D50;
}

header .about {
  float: left;
  font-size: 14px; font-weight: 700;
}

header .links {
  display: none;
  float: right;
  padding-left: 14px;
  border-left: 1px solid #5C6B7E;
}
header .links a {
  margin: 0 8px;
  color: #FFF;
}
header .links a:hover {
  border-bottom: 1px dotted #FFF;
}

header .funds {
  padding-right: 14px;
  text-transform: uppercase; font-weight: 700;
  background-color: #435265;
}

header .quick-links {
  float: right;
  width: 70px;
  margin-right: 20px;
  text-align: center;
  background: #1D669C;
  background: -moz-linear-gradient(top, #1D669C 0%, #5896C9 100%);
  background: -webkit-linear-gradient(top, #1D669C 0%,#5896C9 100%);
  background: linear-gradient(to bottom, #1D669C 0%,#5896C9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1D669C', endColorstr='#5896C9',GradientType=0 );
  transition: all 0.3s ease;
}
header .quick-links > a {
  display: block;
  width: 70px;
  border: 0;
}
header .quick-links:hover {
  background: #5896C9;
  background: -moz-linear-gradient(top, #5896C9 0%, #1D669C 100%);
  background: -webkit-linear-gradient(top, #5896C9 0%,#1D669C 100%);
  background: linear-gradient(to bottom, #5896C9 0%,#1D669C 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5896C9', endColorstr='#1D669C',GradientType=0 );
}
header .quick-links .ql-inner {
  display: none;
  top: 0; left: -155px;
  width: 280px;
  padding: 10px;
  background-color: #5896C9;
}
header .quick-links a {
  color: #FFF;
}
header .quick-links .ql-inner a {
  display: block;
  float: left; width: 33.3333333%;
  overflow: hidden;
  white-space: nowrap; text-overflow: ellipsis;
  padding: 10px 7px;
  transition: all 0.3s ease;
  border: 0;
}
header .quick-links .ql-inner a i {
  display: block;
  margin: 0;
  font-size: 30px;
}
header .quick-links .ql-inner a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
}

header .quick-tickets {
  display: none; float: right;
  padding: 4px 6px;
  border-left: 1px solid #5C6B7E;
}
header .quick-tickets input {
  display: block;
  width: 200px; height: 24px;
  padding: 0 10px;
  color: #FFF; font-size: 14px; font-weight: 300;
  background-color: #435265;
  border: 1px solid #5C6B7E;
  border-radius: 100px;
}

header .refreshed {
  color: green;
  background-color: lightgreen;
}

header .header-mm {
  display: block; float: right;
  margin-top: 2px;
  color: #FFF;
}
header .header-mm i {
  margin-right: 0;
  font-size: 18px;
}

.header-mobile-menu {
  display: none;
  position: fixed; top: 32px; left: 0; z-index: 5;
  width: 100%;
  background-color: #2E3D50;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.header-mobile-menu .hmm-inner {
  max-width: 450px; width: 95%;
  margin: auto; padding: 15px 0;
}
.header-mobile-menu .hmm-inner a {
  display: block;
  margin: 6px 0; padding: 5px 10px;
  color: #FFF; font-weight: 700; font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.header-mobile-menu .hmm-inner a:hover {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header-mobile-menu .hmm-inner .hmm-funds {
  padding: 12px 15px; margin-bottom: 20px;
  text-transform: uppercase; font-weight: 700; color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}
.header-mobile-menu .hmm-inner .hmm-funds strong {
  float: right;
}

.hmm-show {
  display: block;
}

@media screen and (min-width: 768px) {
  header .links {
    display: block;
  }
  
  header .header-mm {
    display: none;
  }
  
  .hmm-show {
    display: none;
  }
  
  header .quick-links {
    margin-right: 0;
    border-left: 1px solid #5C6B7E;
  }
}
@media screen and (min-width: 900px) {
  header .quick-tickets {
    display: block;
  }
}
/* /HEADER */

/* FOOTER */
footer {
  position: absolute; right: 0; bottom: 0; left: 0;
  height: 30px;
  padding: 6px 0; margin-top: 25px;
  font-size: 12px; text-align: center; font-weight: 600;
  background-color: #DEE4E7;
  border-top: 1px solid #DDD;
}

@media screen and (min-width: 640px) {
  footer {
    padding-right: 150px;
  }
}
/* /FOOTER */

/* STRUCTURE */
.site {
  padding: 0 10px;
}

.site h1 {
  display: block;
  margin-bottom: 15px;
  font-weight: 700; font-size: 18px;
}

@media screen and (min-width: 1024px) {
  .site {
    padding: 0 245px 0 25px;
  }
}
/* /STRUCTURE */

/* COLUMN RIGHT */
.column-right {
  display: none;
  position: fixed; right: 0; top: 32px; z-index: 1;
  width: 220px; height: 100%;
  padding: 10px; padding-bottom: 40px;
  background-color: #F9FAFC;
  border-left: 1px solid #DDD;
}

.column-right h5 {
  display: block;
  margin-bottom: 14px;
  font-weight: 700; text-align: center; text-transform: uppercase; font-size: 13px;
}

.column-right .cr-new {
  padding-top: 8px; padding-bottom: 20px; margin-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #DDD;
}
.column-right .cr-new a {
  display: inline-block;
  width: 80px;
  margin: 0 4px; padding: 8px 0;
  font-weight: 300; text-align: center; color: #537AAE;
  border: 1px solid #DDD;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.column-right .cr-new a:hover {
  color: #FFF;
  background-color: #537AAE;
  border-color: #537AAE;
}
.column-right .cr-new a i {
  display: block;
  margin: 0; margin-bottom: 5px;
  font-size: 40px;
}

.column-right .statistics {
  position: fixed; right: 0; bottom: 0; z-index: 2;
  width: 219px;
  padding: 10px;
  border-top: 1px solid #DDDDDD;
  background-color: #FFF;
}
.column-right .statistics .stat-item {
  float: left;
  width: 33.333333%; height: 66px;
  text-align: center; font-size: 10px; font-weight: 700;
}
.column-right .statistics .stat-item span {
  display: block;
  width: 58px; height: 26px;
  margin: auto; margin-bottom: 6px;
  line-height: 24px; color: #FFF; font-size: 13px;
  background-color: #437FC1;
  border-radius: 10px;
}
.column-right .statistics .stat-no-item {
  height: 66px;
  text-align: center; font-size: 10px; font-weight: 700; line-height: 60px;
}

#latest-news {
  overflow-y: auto;
  padding-top: 15px;

}
#latest-news .trans-item {
  padding: 8px 0;
  border-top: 1px solid #DDD;
}

#latest-news .trans-item .users {
  margin-bottom: 4px;
  font-weight: 700; color: #2E3D50
}
#latest-news .trans-item .users div {
  margin: 3px 0;
}
#latest-news .trans-item .locations {
  padding: 0 2px;
  text-align: center;
  background-color: #FFF;
  border-top: 1px dotted #DDD;
}
#latest-news .trans-item .locations div {
  padding: 4px 0;
  color: #333; font-weight: 700;
}
#latest-news .trans-item .t-type {
  padding: 4px 0;
  padding-top: 5px;
  font-weight: 700;
  border-top: 1px dotted #DDD;
}
#latest-news .trans-item .prices {
  padding: 5px 0; padding-right: 5px;
  border-top: 1px dotted #DDD;
}
#latest-news .trans-item .prices div {
  line-height: 18px;
}
#latest-news .trans-item .prices div strong {
  float: right;
}
#latest-news .trans-item .status {
  margin-top: 4px; padding: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  background-color: #EEE;
}
#latest-news .trans-item .date {
  margin-top: 4px;
  font-size: 10px; font-weight: 700;
}

.cr-expecting {
  margin-bottom: 20px;
  font-size: 11px; text-align: center;
}

.cr-img {
  height: 35px;
  padding-bottom: 8px;
  text-align: center;
  border-bottom: 1px solid #DDD;
}
.cr-img a {
  display: inline-block;
  height: 100%;
  margin: 0 auto;
}
.cr-img a:hover {
  border-bottom-color: transparent !important;
}
.cr-img img {
  max-width: 100%; height: 100%;
}

@media screen and (min-width: 1024px) {
  .column-right {
    display: block;
  }
}
/* /COLUMN RIGHT */

/* COLUMN RIGHT MOBILE */
.cr-mobile {
  position: absolute; top: 32px; left: 0;
  width: 100%; height: 32px;
  padding: 8px 8px 0;
  background-color: #DDD;
  border-bottom: 1px solid #CCC;
}

.cr-mobile .cr-left {
  float: left;
}
.cr-mobile .cr-right {
  float: right;
}

.cr-mobile a {
  margin-left: 12px;
  color: #2E3D50;
}
.cr-mobile .cr-left a {
  margin-left: 0;
}
.cr-mobile a:hover {
  border-color: #2E3D50 !important;
}

@media screen and (min-width: 1024px) {
  #wrapper {
    padding-top: 57px;
  }
  .cr-mobile {
    display: none;
  }
}
/* /COLUMN RIGHT MOBILE */

.nothing-found {
  padding: 50px 0;
  font-size: 13px;
}

/* LANGUAGE */
.change-language {
  display: block; float: left;
  width: 30px; height: 23px;
  margin-left: 5px; margin-top: -3px; padding-left: 5px;
  overflow: hidden;
  text-align: center; color: #333; line-height: 22px;
  background-color: #DEDEDE;
  border: 1px solid #CCC;
  transition: all 0.3s ease;
}
.change-language i {
  font-size: 14px;
}
.change-language:hover {
  color: #FFF;
  background-color: #14BF9D;
  border: 1px solid #14BF9D;
}

.more-languages {
  display: none;
  bottom: 3px; left: 5px;
  width: 200px;
  background-color: #FFF;
  border: 1px solid #CCC;
}
.more-languages a {
  display: block;
  padding: 6px 10px;
  text-align: left; font-size: 13px; font-weight: 300; color: #333;
  transition: all 0.3s ease;
}
.more-languages a i {
  display: inline;
}
.more-languages a:hover {
  background-color: #F2F2F2;
  border-bottom: 1px solid transparent;
}

@media screen and (min-width: 640px) {
  .change-language {
    width: 150px;
    padding: 0;
    text-align: center;
  }
}
/* /LANGUAGE */