@import url('https://fonts.googleapis.com/css?family=Rubik+One|Rubik:300,400,700&subset=cyrillic');

/*
  Navbar
*/

.navbar {
  margin-bottom: 0;

  background: #fff;

  border-radius: 0;
  z-index: 888;
}
.navbar-brand {
  width: 120px;
}

.text-header {
  margin-bottom: 10px;

  font-family: 'Rubik One', Tahoma, sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;

  color: #9b6bcc;
}
.text-title {
  margin-bottom: 10px;

  font-family: 'Rubik', Tahoma, sans-serif;
  font-weight: 300;
  font-size: 24px;

  color: #424242;
}
.text-content-h {
  margin-bottom: 5px;
  font-family: 'Rubik', Tahoma, sans-serif;
  font-weight: 400;
  font-size: 20px;

  color: #616161;
}
.text-content-h2 {
  margin-bottom: 5px;
  font-family: 'Rubik', Tahoma, sans-serif;
  font-weight: 400;
  font-size: 18px;

  color: #616161;
}
.text-content {
  margin-bottom: 5px;
  font-family: 'Rubik', Tahoma, sans-serif;
  font-weight: 300;
  font-size: 16px;

  color: #424242;
}
.text-content-s {
  margin-bottom: 5px;
  font-family: 'Rubik', Tahoma, sans-serif;
  font-weight: 300;
  font-size: 14px;

  color: #424242;
}

.color-accent {
  color: #9b6bcc;
}

.samo-input {
  padding: 6px 0;
  font-family: 'Rubik', Tahoma, sans-serif;
  font-weight: 300;
  font-size: 16px;
  background: transparent;
  color: #424242;
  border: 0;
  border-bottom: 1px solid #9b6bcc;
  border-radius: 0;
  box-shadow: 0 0 transparent;
}
.samo-input:focus {
  border-bottom: 2px solid #9b6bcc;
  box-shadow: 0 0 transparent;
}

.btn-action-box {
  margin-top: 20px;
}
.btn-action {
  border-radius: 28px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
  font-family: 'Rubik', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  background: #9b6bcc;
  padding: 10px 60px;
  text-decoration: none;
  transition-duration: 0.3s;
}
.btn-action:hover {
  color: #fff;
  background: #3ca0ff;
  text-decoration: none;
}
.btn-action:focus {
  color: #fff;
  background: #9b6bcc;
}

.inline {
  float: left;
  margin-right: 20px;
}
.hotel-title {
  margin-right: 10px;
}
.transfer-date {
  padding-top: 5px;
}

.item-box {
  overflow: hidden;
  padding: 20px;
  margin-bottom: 10px;

  background: #fff;

  border: 0;
  border-radius: 2px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
}
.item-content {
  width: 90%;
}
.item-row {
  overflow: hidden;
  margin-bottom: 10px;
}
.item-row:last-child {
  margin-bottom: 0;
}
.note-row {
  margin-top: 20px;
}

.accent-box {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 5px;

  background: #eee;
  border-radius: 2px;
}
.accent-box p {
  margin: 0 auto;
  white-space: nowrap;
}
.departure-box {
  background: #9b6bcc;
}
.departure-box p {
  color: #fff;
}

/*
  Main Box
*/

.main-box {
  background: url('../customization/bg.jpg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 50%;
  /*background-size: cover;
  background-position: center;*/
}
.main-box-cover {
  padding-top: 80px;
  padding-bottom: 80px;

  background: linear-gradient(to right, #fff 0%, #fff 50%, rgba(255, 255, 255, 0.8) 80%, transparent 100%);
}

.departure-form {
  margin-top: 20px;
}

/*
  Transfer Box
*/

.transfer-box {
  /*margin-top: 40px;*/
  padding: 40px 0;

  background: #f5f5f5;
}

.ico-transfer-type {
  width: 40px;
  height: 40px;

  font-size: 20px;

  color: #fff;
  background: #bdbdbd;

  border-radius: 50%;
}
.ico-transfer-type .ico-grp {
  padding: 10px 12px;
}
.ico-transfer-type .ico-ind {
  padding: 10px 9px;
}

.ico-star {
  padding-top: 5px;

  color: #FFC107;
  font-size: 16px;
}

.ico-small {
  color: #757575;
  font-size: 14px;
}

.ico-arrow {
  margin: 0 10px;
}

footer {
  padding: 20px 0;
}
footer a {
  color: #9b6bcc;
}
footer .ico-heart {
  font-size: 13px;
  color: #E65D6E;
  animation: heart 1s infinite ease-in-out;
}

@keyframes heart {
  from, to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .navbar-right {
    float: right;
    padding-right: 15px;
  }
  .nav>li {
    display: inline-block;
  }

  .main-box {
    background: #fff;
  }
  .main-box-cover {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .departure-form {
    margin-top: 40px;
  }
  .departure-form .form-group {
    margin-bottom: 20px;
  }

  .text-header {
    font-size: 32px;
  }
  .text-title {
    font-size: 20px;
  }

  .btn-action-box {
    margin-top: 40px;
    text-align: center;
  }
  .btn-action {
    /*padding: 10px 60px;*/
    font-size: 18px;
  }

  .ico-transfer-type {
    margin-bottom: 15px;
  }
}
