body #matris {
  display: block;
}

body #app-loading {
  display: none;
}

body.loading #matris {
  display: none;
}

body.loading #app-loading {
  display: block;
}

/* Alignment */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.right {
  float: right;
}
.left {
  float: left;
}
.centered {
  float: none !important;
  margin: auto !important;
}
.text-light {
  font-weight: 300 !important;
}

/* Button */
.btn {
  border: none;
  background-color: white;
  padding: 12px 16px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 11pt;
  text-align: center;
  margin: 0px 4px;
}
.btn.btn-block {
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }
.btn:disabled {
    filter: grayscale(50%);
    opacity: 0.7;
  }

/* Color */
.bg-blue {
  background-color: #3498db !important;
}
.text-blue {
  color: #3498db !important;
}
.border-blue {
  border-color: #3498db !important;
}
.bg-dark-blue {
  background-color: #2980b9 !important;
}
.text-dark-blue {
  color: #2980b9 !important;
}
.border-dark-blue {
  border-color: #2980b9 !important;
}
.bg-tosca {
  background-color: #1abc9c !important;
}
.text-tosca {
  color: #1abc9c !important;
}
.border-tosca {
  border-color: #1abc9c !important;
}
.bg-dark-tosca {
  background-color: #16a085 !important;
}
.text-dark-tosca {
  color: #16a085 !important;
}
.border-dark-tosca {
  border-color: #16a085 !important;
}
.bg-green {
  background-color: #2ecc71 !important;
}
.text-green {
  color: #2ecc71 !important;
}
.border-green {
  border-color: #2ecc71 !important;
}
.bg-dark-green {
  background-color: #27ae60 !important;
}
.text-dark-green {
  color: #27ae60 !important;
}
.border-dark-green {
  border-color: #27ae60 !important;
}
.bg-violet {
  background-color: #9b59b6 !important;
}
.text-violet {
  color: #9b59b6 !important;
}
.border-violet {
  border-color: #9b59b6 !important;
}
.bg-dark-violet {
  background-color: #8e44ad !important;
}
.text-dark-violet {
  color: #8e44ad !important;
}
.border-dark-violet {
  border-color: #8e44ad !important;
}
.bg-blue-black {
  background-color: #34495e !important;
}
.text-blue-black {
  color: #34495e !important;
}
.border-blue-black {
  border-color: #34495e !important;
}
.bg-dark-blue-black {
  background-color: #2c3e50 !important;
}
.text-dark-blue-black {
  color: #2c3e50 !important;
}
.border-dark-blue-black {
  border-color: #2c3e50 !important;
}
.bg-yellow {
  background-color: #f1c40f !important;
}
.text-yellow {
  color: #f1c40f !important;
}
.border-yellow {
  border-color: #f1c40f !important;
}
.bg-dark-yellow {
  background-color: #f39c12 !important;
}
.text-dark-yellow {
  color: #f39c12 !important;
}
.border-dark-yellow {
  border-color: #f39c12 !important;
}
.bg-orange {
  background-color: #e67e22 !important;
}
.text-orange {
  color: #e67e22 !important;
}
.border-orange {
  border-color: #e67e22 !important;
}
.bg-dark-orange {
  background-color: #d35400 !important;
}
.text-dark-orange {
  color: #d35400 !important;
}
.border-dark-orange {
  border-color: #d35400 !important;
}
.bg-red {
  background-color: #e74c3c !important;
}
.text-red {
  color: #e74c3c !important;
}
.border-red {
  border-color: #e74c3c !important;
}
.bg-dark-red {
  background-color: #c0392b !important;
}
.text-dark-red {
  color: #c0392b !important;
}
.border-dark-red {
  border-color: #c0392b !important;
}
.bg-lighter-gray {
  background-color: #ecf0f1 !important;
}
.text-lighter-gray {
  color: #ecf0f1 !important;
}
.border-lighter-gray {
  border-color: #ecf0f1 !important;
}
.bg-light-gray {
  background-color: #bdc3c7 !important;
}
.text-light-gray {
  color: #bdc3c7 !important;
}
.border-light-gray {
  border-color: #bdc3c7 !important;
}
.bg-gray {
  background-color: #95a5a6 !important;
}
.text-gray {
  color: #95a5a6 !important;
}
.border-gray {
  border-color: #95a5a6 !important;
}
.bg-dark-gray {
  background-color: #7f8c8d !important;
}
.text-dark-gray {
  color: #7f8c8d !important;
}
.border-dark-gray {
  border-color: #7f8c8d !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.border-white {
  border-color: #ffffff !important;
}
.bg-black {
  background-color: #000000 !important;
}
.text-black {
  color: #000000 !important;
}
.border-black {
  border-color: #000000 !important;
}

/* Container */
.container {
  background-color: #ffffff;
  border: 1px solid #bdc3c7;
  border-radius: 5px;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.container.no-round-edges {
    border-radius: 0px;
    border-right: none;
    border-left: none;
  }
.container.no-margin {
    margin: 0px;
  }
.container.small-margin {
    margin-top: 5px;
    margin-bottom: 5px;
  }

/* Content */
.content {
  width: 100vw;
  overflow-x: hidden;
  max-width: 600px;
  float: none;
  margin: auto;
  /* overflow-x: hidden; */
  padding: 10px;
  padding-top: 65px;
 }
.content.no-padding {
    padding: 0px;
    padding-top: 50px;
  }
.content.has-subnav {
    padding-top: 101px;
  }
.content.has-subnav.no-padding {
      padding-top: 90px;
    }
.content .subnav {
    padding: 13.33333px 16px;
    font-size: 10pt;
    height: 40px;
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    position: fixed;
    z-index: 100;
    top: 50px;
    left: 0px;
    right: 0px;
    white-space: nowrap;
}
.content .roundtrip-toggle {
  line-height: 40px;
  margin: 0px;
}
.content .roundtrip-toggle .col-6 {
    margin: 0px;
    padding: 0px;
  }
.content .roundtrip-toggle .toggle {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
  }
.content .roundtrip-toggle .toggle.active {
      border-color: white;
    }
.content .search-form {
  padding: 8px;
}
.content .search-form .input {
    padding: 8px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
  }
.content .search-form .input:hover {
      background: rgba(0, 0, 0, 0.1);
    }
.content .airline-list {
  padding: 8px;
 }
.content .airline-list .airline .logo {
    display: inline-block;
    line-height: 50px;
    width: 50px;
    vertical-align: middle;
  }
.content .airline-list .airline .logo img {
      width: auto;
      height: auto;
      max-width: 50px;
      max-height: 50px;
      display: inline-block;
      vertical-align: middle;
    }
.content .airline-list .airline .title {
    display: inline-block;
    vertical-align: middle;
    font-size: 12pt;
    padding: 8px 12px;
  }
.content .airline-list .airline .status {
    line-height: 50px;
    padding: 8px;
    float: right;
  }
.content .airline-list .ariline.disabled {
    filter: grayscale(100%);
  }
.content .airline-list .airline:active {
    background: #f0f0f0;
  }
.content .selected-flight td {
  padding: 4px;
}
.content .passenger-container, .content .contact-container, .content .booking-result {
  padding: 8px;
}

/* Form */
.form-group {
  padding: 4px;
}
.form-group label, .form-group span {
    display: block;
    padding: 4px 0px;
  }
.form-group .form-control {
    display: block;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    background-color: #ffffff;
  }
.form-group .form-control:focus {
      border-color: #3498db;
    }
.form-group .input-group .input-group-addon {
    line-height: 31px;
    vertical-align: middle;
    padding: 0px 12px;
    float: left;
    white-space: nowrap;
    position: absolute;
    text-align: center;
    width: 30pt;
    box-sizing: border-box;
  }
.form-group .input-group .form-control {
    padding-left: 30pt;
  }
.form-group.fullsize {
    padding-left: 0px;
    padding-right: 0px;
  }
.form-group.fullsize span, .form-group.fullsize label {
      padding: 4px 12px;
    }
.form-group.fullsize .form-control {
      border-left: none;
      border-right: none;
      border-radius: 0px;
     }


/* Main */
.btn {
  border: none;
  background-color: white;
  padding: 12px 16px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 11pt;
  text-align: center;
  margin: 0px 4px;
}
.btn.btn-block {
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }
body {
  margin: 0px;
  padding: 0px;
  background: #ecf0f1;
  font-family: arial;
  font-size: 9pt;
  font-family: 'Roboto', sans-serif;
}
button {
  cursor: pointer;
}

/* Navbar */
.navbar-container {
  background-color: #f39c12;
  color: #ffffff;
  text-align: center;
  font-size: 12pt;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100vw;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 200;
}

.navbar-container .navbar {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-container .navbar .navbar-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbar-container .navbar .navbar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navbar-container .navbar .navbar-button {
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.navbar-container .navbar .navbar-title {
  text-transform: capitalize;
  text-align: left;
}

/* .sidebar-container .sidebar .body .menu.signout {
  position: fixed;
  bottom: 0px;
  width: 250px;
  background-color: #f39c12;
  color: white;
  border: none;
}

.sidebar-container .sidebar .body .menu.signout:hover {
  background: #2980b9;
} */

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
}
.switch .slider {
    border: 1px solid #f0f0f0;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 25px;
  }
.switch .slider:before {
      position: absolute;
      content: "";
      height: 25px;
      width: 25px;
      left: 0px;
      bottom: 0px;
      top: -4px;
      background-color: white;
      border: 1px solid #27ae60;
      -webkit-transition: .4s;
      transition: .4s;
      border-radius: 25px;
    }
.switch input {
    display: none;
  }
.switch input:checked + .slider {
      background-color: #27ae60;
    }
.switch input:focus + .slider {
      box-shadow: 0 0 1px #27ae60;
    }
.switch input:checked + .slider:before {
      -webkit-transform: translateX(25px);
      -ms-transform: translateX(25px);
      transform: translateX(25px);
    }

/* Text */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
template {
  display: none;
}

.menu-page-wrapper {
  display: none;
}

/* .zopim[__jx__id="___$_4 ___$_4"] {
  display: none !important;
} */
.floatwa {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.my-float{
  margin-top:16px;
}

@font-face {
  font-family: 'clear_sansregular';
  src: url('/static/fonts/ClearSans-Regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'clear_sans_lightregular';
  src: url('/static/fonts/ClearSans-Light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
