@charset "utf-8";
/* CUSTOM CSS ------------------------------------- */
@font-face {
  font-family: 'Yanone';
  src: url('../img/yanonekaffeesatz-regular-webfont.eot');
  src: url('../img/yanonekaffeesatz-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../img/yanonekaffeesatz-regular-webfont.woff') format('woff'), url('../img/yanonekaffeesatz-regular-webfont.ttf') format('truetype'), url('../img/yanonekaffeesatz-regular-webfont.svg#yanone_kaffeesatzregular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Yanone';
  src: url('../img/yanonekaffeesatz-bold-webfont.eot');
  src: url('../img/yanonekaffeesatz-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../img/yanonekaffeesatz-bold-webfont.woff') format('woff'), url('../img/yanonekaffeesatz-bold-webfont.ttf') format('truetype'), url('../img/yanonekaffeesatz-bold-webfont.svg#yanone_kaffeesatzbold') format('svg');
  font-weight: 700;
  font-style: normal;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  background-color: #4e217b;
  background-image: none;
  /*background-position: center top;*/
  /*margin-top: 86px;*/
}

.container_wide {
    width: 90%;
    margin:auto;
}

/* baner za lokacije */

/*--- Banner Container ---*/
.banner-container {
  margin-bottom: 20px;
}

/*--- Banner ---*/
.banner {
  background-color: #fff;
  padding-top: 4px;
  padding-bottom: 6px;
  text-align: center;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  -webkit-transition: all .25s;
     -moz-transition: all .25s;
      -ms-transition: all .25s;
       -o-transition: all .25s;
          transition: all .25s;
  font-family: Yanone, Arial, Helvetica, sans-serif; /*ovo je font originalne stranice */
}

.banner:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/*  MAP MARKER
 ---------------------------------------*/

/*--- Map Marker ---*/
.banner .map-marker {
  text-align: center;
  position: relative;
  height: 56px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  padding-right: 10px;
}

/*--- Map Marker Icon ---*/
.banner .map-marker i {
  color:  #FF7F00;
  font-size: 45px;
  -webkit-animation: levitate 0.7s alternate ease-in-out infinite;
     -moz-animation: levitate 0.7s alternate ease-in-out infinite;
       -o-animation: levitate 0.7s alternate ease-in-out infinite;
          animation: levitate 0.7s alternate ease-in-out infinite;
}

/*--- Pulse ---*/
.banner .map-marker .pulse {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  height: 12px;
  width: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  margin-left: -6px;
  transform: rotateX(55deg);
  z-index: 1;
}

.banner .map-marker .pulse::after {
  content: "";
  border-radius: 50%;
  height: 20px;
  width: 20px;
  position: absolute;
  margin: -4px 0 0 -10px;
  -webkit-animation: pulsate 1.4s ease-in-out infinite;
     -moz-animation: pulsate 1.4s ease-in-out infinite;
       -o-animation: pulsate 1.4s ease-in-out infinite;
          animation: pulsate 1.4s ease-in-out infinite;
  opacity: 0;
  box-shadow: 0 0 1px 2px #C65CAB;
  animation-delay: 0.1s;
}

/*  BANNER TEXT
 ---------------------------------------*/

/*--- Banner Text ---*/
.banner .banner-text {
  text-align: center;
  margin-top: 0px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 6px;
}

.banner .banner-text p {
  color: #565656;
  font-size: 17px;
  margin: 0;
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
}

.banner .banner-text p #novo {
  font-weight: 700;
  text-transform: uppercase;
  color: #C65CAB;
  letter-spacing: 1px;
}

/*  ANIMATIONS
 ---------------------------------------*/

/*--- Levitate ---*/
@-webkit-keyframes levitate {
  0% {
    -webkit-transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 5px);
  }
}
@-moz-keyframes levitate {
  0% {
    -moz-transform: translate(0, 0);
  }
  100% {
    -moz-transform: translate(0, 5px);
  }
}
@-o-keyframes levitate {
  0% {
    -o-transform: translate(0, 0);
  }
  100% {
    -o-transform: translate(0, 5px);
  }
}
@keyframes levitate {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 5px);
  }
}

/*--- Pulsate ---*/
@-webkit-keyframes pulsate {
   0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
   0% {
    -moz-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@-o-keyframes pulsate {
   0% {
    -o-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -o-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

/*  MENU FILTER
 ---------------------------------------*/
 .travel-filter .star-box {
  display: flex;
  align-items: center;
  display: block !important;
 }

.list-cats {
  display: inline-block;
  float: left;
  width: 525px;
}

.list-cats li {
  margin-bottom: 7px;
}

.side-menu li {
  margin-left: 0;
  list-style: none;
  border-radius: 10px!important;
}

.list-cats__areaItems-container {
  display: inline-block;
  /*max-width: 325px;*/
  vertical-align: top;
}

.menu-filter__date-filter-container {
  position: relative;
  /*top: 5px;*/
}

.menu-filter__date-filter-container label {
  font-size: 17px;
  color: #fff;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
}

.pull-right li:last-child {
  border-radius: 10px;
  background-color: #3a1e53;
}


.menu-filter__date-filter {
  margin-bottom: 0 !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: none !important;
  text-align: center;
  color: #fff !important;
  margin-left: 5px;
  margin-right: 5px;
}

#search_vacation {
  background: #FF7F00;
  box-shadow: none;
  border: 0;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #fff;
  padding: 0.35em 1.1em;
  border-radius: 3px;
}

input#search_vacation:focus {
  outline: 0 !important;
}

#travelDateError {
  color: #fff !important;
}

/* This wil affect all datepickers */
.datepicker .table-condensed td.day.active {
  background: #FF7F00 !important;
}

.navbar .nav.pull-right {
  float: right;
  margin-top:5px;
  margin-right: -17px!important;
}


/*===================================
  MEDIA QUERY: SMALL
 ==================================*/

@media screen and (min-width: 768px) {
  /*--- Banner ---*/
  .banner {
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
  }

  /*  MAP MARKER
   ---------------------------------------*/

  /*--- Map Marker ---*/
  .banner .map-marker {
    height: 81px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /*--- Map Marker Icon ---*/
  .banner .map-marker i {
    font-size: 65px !important;
    vertical-align: mddle;
  }

  /*--- Pulse ---*/
  .banner .map-marker .pulse {
    height: 20px;
    width: 20px;
    margin-left: -10px;
  }

  .banner .map-marker .pulse::after {
    height: 30px;
    width: 30px;
    margin: -5px 0 0 -15px;
  }

  /*  BANNER TEXT
   ---------------------------------------*/

  /*--- Banner Text ---*/
  .banner .banner-text {
    margin-top: 3px;
  }

  .banner .banner-text p {
    font-size: 22px;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner .banner-text p:nth-child(2) {
    margin-top: 10px;
  }

  /*  MENU FILTER - min-width: 768px
   ---------------------------------------*/

  .menu-filter__date-filter-container {
    display: inline-block;
    display: block;
    text-align: left;
    clear: left;
  }

  .menu-filter__date-filter {
    width: 90px !important;
  }

  #search_vacation {
    display: inline-block;
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.3em 1em;
  }


}

/*===================================
  MEDIA QUERY: MEDIUM
 ==================================*/

/*===================================
  MEDIA QUERY: LARGE
 ==================================*/

@media screen and (min-width: 1200px) {
  /*--- Banner ---*/
  .banner {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  /*  MAP MARKER
   ---------------------------------------*/

  /*--- Map Marker ---*/
  .banner .map-marker {
    height: 111px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /*--- Map Marker Icon ---*/
  .banner .map-marker i {
    font-size: 90px !important;
  }

  /*--- Pulse ---*/
  .banner .map-marker .pulse {
    height: 30px;
    width: 30px;
    margin-left: -15px;
    margin-right: -1px;
  }

  .banner .map-marker .pulse::after {
    height: 45px;
    width: 45px;
    margin: -8px 0 0 -22px;
  }

  /*  BANNER TEXT
   ---------------------------------------*/

  /*--- Banner Text ---*/
  .banner .banner-text {
    margin-top: 5px;
  }

  .banner .banner-text p {
    font-size: 28px;
    font-weight: 700;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner .banner-text p:nth-child(2) {
    margin-top: 15px;
  }

   /*  MENU FILTER - min-width: 1200px
   ---------------------------------------*/

  .menu-filter__date-filter-container {
    display: inline-block;
    clear: none;
    left: 0;
    width: 646px;
  }
}

/* --------------- */


/*--- Download Mobile App Modal ---*/

.download-mobile-app {
  height: 75px;
  background: #fff;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.download-mobile-app .close {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  position: absolute;
  right: 0;
  left: auto;
}

.download-mobile-app .close i {
  line-height: 35px;
  color: #565656;
  font-size: 20px;
}

.download-mobile-app .main-text {
  text-align: center;
  line-height: 75px;
  color: #565656;
  font-weight: 700;
  font-size: 14px;
}

.download-mobile-app .main-text .mobile-app-badge {
  display: inline-block;
  max-width: 115px;
}

.download-mobile-app .main-text i {
  margin-right: 11px;
}

/*.download-mobile-app--dim {
  position: absolute;
  left: 0;
  right: 0;
  top: 75px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999999999;
}*/
/*--- //end ---*/

img {
    width: 100%;
}
/*.other img {
  width: 100px;
}*/
body.print {
  background-color: #FFF;
  background-image: none;
}
.support {
  text-align: center;
  background-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  display: none;
  position: relative;
  width: 100%;
  top: 0px;
}
.support p {
  margin: 0px;
  padding: 0px;
}
.support .btn-close {
  background-image: url(../img/icon-close.png);
  background-repeat: no-repeat;
  display: block;
  height: 0px;
  width: 16px;
  padding-top: 16px;
  overflow: hidden;
  float: right;
  margin-right: 15px;
}
.icon-phone {
  background-image: url(../img/icon-close.png);
  background-repeat: no-repeat;
  background-position: -16px 0px;
  display: inline-block;
  height: 13px;
  width: 13px;
  margin-right: 5px;
}
.navbar .nav>.active>a, .navbar .nav>.active>a:hover, .navbar .nav>.active>a:focus {
  background-color: #6D3763;
  color: #fff;
}
.navbar {
  background-color: transparent;
  background-image: none;
}
.navbar .nav>li.active {
  color:#4e217b;
  background:none;
  font-weight: bolder;
}

.navbar .nav > li {
  margin-right: 3px;
}

form[name=search_form]{
  margin:0px;
}


.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
  background-color:rgba(55,28,50,0.65);
  transition: .2s all;
  opacity: 0;
  visibility: hidden;
}

.navbar-inner {
  background-color: transparent;
  background-image: none;
  border: none;
  webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border-right-style: none;
  border-left-style: none;
  height: 30px;
  border-top-style: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.navbar-inner .nav li a, .navbar-inner .nav li a.active {
  font-size: 12px;
  font-weight: bold;
  padding-right: 8px;
  padding-left: 8px;
  color: rgba(255,255,255,.8);
  text-shadow: none;
  transition: .2s all;
}
.navbar-inner .nav li a:hover {
  color: #FFF;
  background-color: transparent;
}
.navbar .btn-navbar {
  float: left;
  background-color: #333;
  background-image: -moz-linear-gradient(50% 0% -90deg, rgb(22, 22, 22) 0%, rgb(54, 54, 54) 100%);
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgb(22, 22, 22)), color-stop(1, rgb(54, 54, 54)));
  background-image: -webkit-linear-gradient(-90deg, rgb(22, 22, 22) 0%, rgb(54, 54, 54) 100%);
  background-image: -o-linear-gradient(-90deg, rgb(22, 22, 22) 0%, rgb(54, 54, 54) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(22, 22, 22) 0%, rgb(54, 54, 54) 100%);
  background-image: linear-gradient(-90deg, rgb(22, 22, 22) 0%, rgb(54, 54, 54) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff161616, endColorstr=#ff363636, GradientType=0)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff161616, endColorstr=#ff363636, GradientType=0);
}
.navbar .btn-navbar:hover {
  background-color: #000;
  background-image: none;
}
.navbar .nav .btn-highlight {
  color: #FFF;
  background-color: #3f1a64;
  text-shadow: -1px -1px 0px rgba(0,0,0,.25);
  background-image: url(../img/icon-myecoupon.png);
  background-repeat: no-repeat;
  background-position: 10px 13px;
  padding-left: 32px;
  border-radius: 10px;
}
.navbar .nav .btn-highlight:hover {
  color: #fff;
  background-color: #fa8500;
  text-shadow: none;
  border-radius: 10px;
}

.nav-collapse, .nav-collapse.collapse {
  background-color: transparent;
  z-index: 100;
}


.btn-mobilemenu {
  width: 50px;
  height: 50px;
  background-color: #FF7F00;
  position: fixed;
  /* top: 11px; */
  border-radius: 3px;
  top: 5px;
  /* margin-right: 8px; */
  right: 0!important;
  z-index: 500;
  text-align: center;
  color: #fff;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1em;
  padding-top: 8px;
  box-sizing: border-box;
  transition: .2s all;
  display: none;
  /* top: 86px; */
}
.btn-mobilemenu span:not(.title) {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  vertical-align: top;
  transition: .2s all;
}
.btn-mobilemenu:hover {
  background-color: #fff;
  color: #863771;
  text-decoration: none;
}
.btn-mobilemenu:hover span:not(.title) {
  background-color: #fff;
}

.logoplace {
  width: 280px;
  float: left;
}
div.logoplace > a > img {
  width: 90%;

}
.menuplace {
  padding-left: 260px;
  text-align: right;
  padding-top: 15px;
  padding-bottom: 25px;
}
.menuplace .holder {
  display: inline-block;
  padding-right: 0;
  margin-right: -30px;
}

.navbar .nav {
  margin: 59px 10px 0 0!important;
}

.navbar-main {
  margin-bottom: 8px;
  margin-top: -34px;
}
.navbar-main .navbar-inner {
  border-bottom: none;
  padding-left: 0;
}
.navbar-main .nav {
  float: none;
}
.navbar-main .navbar-inner .nav li.sec {
  display: none;
}
.navbar-main .nav li a {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #fff;
  /*background-color: rgba(255,255,255,.15);*/
  margin-left: 1px;
  text-align: left;
  /*line-height: 22px;*/
  /*min-height: 25px;*/
  text-transform: uppercase;
  font-weight: normal;
  /*border-radius: 5px;*/
  /*margin-right: 0px;*/
  padding-bottom: 7px;
  align-self: center;
}
.dropdown-menu.other-dropdown a {
  font-size: 13px;
  display: block;
  width: 100%;
  line-height: 14px;
  color: #4E217B!important;
  background-color: transparent;
  padding: 0!important;
}

.dropdown-menu.other-dropdown a:hover {
  width: 100%;
  background-color: #f1f1f1;
}

.dropdown.profil .dropdown-menu.other-dropdown {
  border-radius: 0;
  border: none;
  margin-top: 1px;
  padding: 8px 12px;
  margin-left: 1px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-top-right-radius: 0px;
  border-top-left-radius: 7px;
  margin-right: 100px!important;
  margin-left: -153px;
}

.bars-right {
  color: white;
  font-size: 15px;
  background-color: rgba(255,255,255,.15);
  border-radius: 5px!important;
  height: 20px;
}
.navbar-main .nav .dropdown.profil {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 14px;
  color: #fff;
  background-color: rgba(255,255,255,.15);
  margin-left: 1px;
  text-align: left;
  line-height: 40px;
  height: 42px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 5px;
  margin-right: 3px;
  padding: 0px 16px;
}
.navbar-main .nav li a:hover {
  background-color: #fff;
  color: #863771;
}
.navbar-main .nav li a:hover .badge,
.navbar-main .nav li.dropdown.open>.dropdown-toggle .badge {
  opacity: 0;
  visibility: hidden;
}
.navbar-main .nav li.dropdown.open>.dropdown-toggle,
.navbar-main .nav li.dropdown.active>.dropdown-toggle,
.navbar-main .nav li.dropdown.open.active>.dropdown-toggle {
  background-color: #fff;
  color: rgba(0,0,0,.65);
}
.navbar-main .dropdown-mobile {
  display: none;
}
.navbar-main [class^="eicon-"] {
  margin-right: 6px;
  position: relative;
  top: 1px;
}
.navbar-main .eicon-home {
  margin-right: 0;
}
.navbar-main .badge {
  background-color: transparent;
  /*border: 1px solid rgba(255,255,255,.35);*/
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0;
  line-height: 20px;
  text-align: center;
  margin: 0 6px;
  position: relative;
  top: -2px;
}
.navbar-main .nav li.dropdown>a .caret {
  border-top-color: rgba(255,255,255,.45);
  border-bottom-color: rgba(255,255,255,.45);
}

.top-offer .thumbnail:hover {
  -webkit-box-shadow: none!important;
  -moz-box-shadow: none!important;
   box-shadow: none!important;
  border: none!important;
}

.navbar-main .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: -4px;
  padding: 8px 12px;
  margin-left: 1px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-top-right-radius: 7px;
}
.navbar-main .dropdown-menu > li > a {
  color: #444;
  border-top:1px solid rgba(0,0,0,.1);
  transition: .2s all;
  font-weight: normal;
  font-size: 16px;
  padding: 6px 8px;
  background-image: none;
  text-align: left;
  min-height: inherit;
  background-color:#fff;
}
.navbar-main .dropdown-menu > li:first-child > a {
  border-top: none;
}
.navbar-main .dropdown-menu > li > a:hover {
  background-color: rgba(0,0,0,.05);
  color: #853771;
}
.navbar-main .nav>li>.dropdown-menu:before {
  display: none;
}


.list-cats {
  display: block;
  clear: both;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  position: relative;
  top: 5px;
  color: #fff;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  padding:8px 0;
}
.list-cats li {
  display: inline-block;
  /* display: block !important; */
}
.list-cats li a {
  display: block;
  padding: 0 7px;
  font-size: 17px;
  color:#fff;
  position: relative;
  top: 2px;
  text-decoration: none;
  transition: .2s all;
  z-index: 999;
}
.list-cats li a [class^="eicon-"] {
  margin-right: 4px;
}
.list-cats li a:hover {
  color: rgba(255,255,255,.55);
}
.list-cats li a.active {
  color: #ff7f00;
}
.list-cats li a.active .eicon-checkcircle:before {
  content: "\e902";
}
.list-cats li a input {
  display: none;
}

.footer .social-links a i.fa-facebooklogin {
  height: 20px;
}
.logo {
  margin-top: 25px;
}
.bignum {
  margin: 0px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 38px;
  color: #D565C0;
  font-weight: 700;
  text-align: right;
  float: left;
  text-shadow: -2px -1px 0px rgba(0, 0, 0, 0.2);
  display: block;
}
.bignum-info {
  font-size: 13px;
  float: left;
  color: #D766C3;
  line-height: normal;
  display: block;
  margin-top: -2px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-left: 5px;
  padding-right: 30px;
}
.btn-previous {
  clear: both;
  color: #D263BB;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  float: left;
  margin-top: 5px;
  line-height: 20px;
  background-image: url(../img/btn-oldoffers.png);
  background-repeat: no-repeat;
  text-align: center;
  height: 20px;
  width: 139px;
  padding-right: 15px;
}
.btn-previous:hover {
  color: #FFF;
  text-decoration: none;
}
.stats {
  padding-top: 20px;
}
.stat1, .stat2 {
  float: left;
}
.nletter {
  float: right;
  width: 250px;
  position: relative;
  padding-bottom: 15px;
}
.nletter form {
  margin: 0px;
  padding: 0px;
}
.nletter .inputfield {
  color: #6A3861;
  background-color: #B47EA5;
  background-image: url(../img/icon-newsletter.png);
  background-repeat: no-repeat;
  background-position: 8px 12px;
  padding-left: 35px;
  border-top-color: #6C3862;
  border-right-color: #6C3862;
  border-bottom-color: #6C3862;
  border-left-color: #6C3862;
  width: 70%;
  height: 40px;
  margin: 0px;
  padding-top: 5px;
  float: left;
}
.nletter .inputfield:focus {
  color: #FFF;
}
.nletter .btn {
  float: left;
  width: 25%;
  padding-right: 3px;
  padding-left: 3px;
  font-size: 12px;
  padding-top: 9px;
  padding-bottom: 6px;
}
.nletter .btn.btn-ecoupon {
  width: 98%;
  font-weight: bold;
  color: #E39AD6;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 8px;
}
.nletter .ic-check {
  background-image: url(../img/btn-check.png);
  background-repeat: no-repeat;
  height: 18px;
  width: 23px;
  display: inline-block;
}

.icon-ecoupon {
  background-image: url(../img/icon-ecoupon-small.png);
  background-repeat: no-repeat;
  display: inline-block;
  height: 24px;
  width: 21px;
  vertical-align: middle;
  margin-right: 10px;
  background-position: 0px 0px;
}
.nletter p {
  font-size: 12px;
  color: #C566A9;
  line-height: normal;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  clear: both;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 0px;
}
.mainmenu {
  float: left !important;
}
.maincontent {
  float: left !important;
}

.share {
  height: 95px;
  margin-bottom: 10px;
  margin-top: 15px;
  width: 100%;
}
.share .social_share {
  float: left;
  width: 38px;
  height: 95px;
}
.share .social_count {
  float: left;
  width: 38px;
  height: 95px;
}

.share .social_share .fbshare_link,.share .social_share .twshare_link {
  float: left;
  height: 38px;
  width: 38px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.share .social_share .fbshare_link:hover,.share .social_share .twshare_link:hover {
  opacity: 0.7;
}
.share .social_count .fb_count,.share .social_count .tw_count {
  float: left;
  height: 38px;
  width: 38px;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
}
.share .social_count .fb_count {
  margin-bottom: 5px;
}
.share .social_share .fbshare_link {
  background: url(../img/fb_share_btn.png) no-repeat left top transparent;
  margin-bottom: 5px;
}

.share .social_share .twshare_link {
  background: url(../img/tw_share_btn.png) no-repeat left top transparent;
}

.top-box {
  background-color: #FFF;
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  border-radius: 10px;
  /* [disabled]overflow:  hidden;
  */
}
.top-box.alt {
  background-color: rgba(0,0,0,.2);
  padding: 25px 50px;
}
.ads-box {
  text-align: center;
}
.priceslider .rate {
  color: #fff;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}
.priceslider .rate .lighter {
  color: rgba(255,255,255,.7);
  font-weight: 400;
}
.rangeslider {
  margin: 0 17px;
}

#top3slider {
  width: 100%;
  height: 360px;
  margin-bottom: 20px;
  float: left;
}

.top-offer {
  padding: 0px;
  position: relative;
  border-radius: 10px;
}

.top-offer .thumbnail img {

  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
.top-box h1 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 29px!important;
  font-weight: 700;
  line-height: 34px;
  padding: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
}

.top-box h1 a{
  color: #000;
  text-decoration: none;
  font-family: Yanone, Arial, Helvetica, sans-serif;
}

.top-box h1 a:hover{
  color: #565656;
  text-decoration: none;
}
.top-box .intro {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 21px;
  line-height: 1.3em;
  font-weight: 400;
  color: #666;
  padding-left: 10px;
  color: #000;
}

.navbar-inner .nav li:last-child {
  background-color: ##3f1a64;
  border-radius: 10px;
}

.row-fluid .span3 {
  width: 0px!important;
}
.top-offer .thumbnail {
  height: 388px;
  border-bottom-right-radius: 10px;
}
.top-box .pricebox .price {
  font-size: 25px;
  padding: 0 8px;
  height: 43px;
  line-height: 41px;
  margin-right: 10px;

}
.top-box .pricebox .pricedisc {
  font-size: 15px;
  line-height: 1.1em;
}

.actionbox {
  /*padding-top: 8px;*/
}
.actionbox .buy-box {
  display: none;

}

.no-price-buy-box {
    display: flex;
    justify-content: center;
}

.btn-no-price-multioffer-offer-availability-modal {
    width: 50%;
    margin-left: 0px;
    text-align: center;
}

/*MONRI*/
.monri-card-select-row {
  display: flex;
  justify-content: space-between;
}

.btn-monri-new-card {
  background-image: none;
  background-color: #663399;
  color: white;
  border-radius: 10px;
}

.monri-pan-token-select {
  margin-bottom: 0px!important;
}

.btn-monri-confirm-payment {
  background-image: none;
  background-color: #663399;
  color: white;
  border-radius: 10px;
  width: 100%;
}

.actionbox .btn-buy {
  margin-bottom: 2px;
  /*margin-left: 10px;*/
  float: left;
  margin-right: 5px;
}
.actionbox .btn-buy:hover {
  background-position: right -102px;
  color: white;
  background-color: rgb(218, 110, 2);
}
.actionbox .btn-more {
  background-color: #444;
  color: #fff;
  display: inline;
  /*padding: 5px 10px;*/
  position: relative;
  border-radius: 10px;
  margin-bottom: 5px;
  line-height: 40px;
}
.actionbox .btn-more:hover {
  color: #fff;
  background-color: #222;
  text-decoration: none;
}
.actionbox .btn-gift {
  position: relative;
  height: 38px;
}
.actionbox .btn-gift:after {
  content: "";
  display: block;
  position: absolute;
  right: -9px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-left: 9px solid #444;
  border-bottom: 18px solid transparent;
}
.actionbox .btn-gift:hover:after {
  border-left: 9px solid #222;
}
.pricebox .price {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 35px;
  font-weight: 700;
  margin: 0px;
  float: left;
  padding-right: 8px;
  line-height: 51px;
  height: 51px;
}
.pricebox .pricedisc {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  float: left;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 6px;
}
.pricebox .pricedisc span {
  color: #FF7F00;
}
.sections {
  list-style-type: none;
  /* [disabled]border-top-width: 1px;
  */
  /* [disabled]border-top-style: solid;
  */
  /* [disabled]border-top-color: #A93F89;
  */
  margin: 0px;
  padding: 0px;
  position: relative;
  z-index: 200;
}
.sections li a {
  background-image: url(../img/section-icons.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  display: block;
  height: 45px;
  width: 45px;
  position: relative;
}
.sections li:hover span {
  visibility: visible;
  opacity: 1;
}
.sections li a span {
  display: block;
  background-color: #FFF;
  height: 51px;
  width: 165px;
  position: absolute;
  padding-left: 55px;
  z-index: -1;
  font-size: 26px;
  line-height: 51px;
  color: #8D3674;
  text-decoration: none;
  -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.45);
  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.45);
  box-shadow: 1px 1px 4px rgba(0,0,0,0.45);
  left: -3px;
  visibility: hidden;
  opacity: 0;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-weight: 700;
  top: -3px;
}
.sections .badge {
  font-style: normal;
  font-size: 15px;
  margin-top: 18px;
  display: inline-block;
  margin-left: 6px;
  position: absolute;
}
.newbadge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #FF7000;
  padding-left: 6px;
  padding-right: 6px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.sections .newbadge {
  font-style: normal;
  font-size: 15px;
  margin-top: -5px;
  display: inline-block;
  margin-left: 40px;
  position: absolute;
}
.sections .home:hover {
  background-position: -45px 0px;
}
.sections .food {
  background-position: 0px -45px;
}
.sections .food:hover {
  background-position: -45px -45px;
}
.sections .travel {
  background-position: 0px -90px;
}
.sections .travel:hover {
  background-position: -45px -90px;
}

.sections .dan {
  background-position: 0px -535px;
}
.sections .dan:hover {
  background-position: -45px -535px;
}

.sections .edu  {
  background-position: 0px -135px;
}
.sections .edu:hover {
  background-position: -45px -135px;
}
.sections .prod {
  background-position: 0px -180px;
}
.sections  .prod:hover{
  background-position: -45px -180px;
}
.sections .sport {
  background-position: 0px -225px;
}
.sections .sport:hover {
  background-position: -45px -225px;
}
.sections .other {
  background-position: 0px -270px;
}
.sections .other:hover {
  background-position: -45px -270px;
}
.sections .beauty {
  background-position: 0px -315px;
}
.sections .beauty:hover {
  background-position: -45px -315px;
}
.sections .min {
  background-position: 0px -360px;
}
.sections .min:hover {
  background-position: -45px -360px;
}
.sections .super {
  background-position: 0px -405px;
}
.sections .super:hover {
  background-position: -45px -405px;
}
.sections .reg {
  background-position: 0px -445px;
}
.sections .reg:hover {
  background-position: -45px -445px;
}
.sections .ng {
  background-position: 0px -490px;
}
.sections .ng:hover {
  background-position: -45px -490px;
}
.sections .mar {
  background-position: 0px -579px;
}
.sections .mar:hover {
  background-position: -45px -579px;
}
.sections .maj {
  background-position: 0px -625px;
}
.sections .maj:hover {
  background-position: -45px -625px;
}
.sections .gift {
  background-position: 0px -670px;
}
.sections .gift:hover {
  background-position: -45px -670px;
}

.sections .zdrav {
  background-position: 0px -715px;
}
.sections .zdrav:hover {
  background-position: -45px -715px;
}
.sections .drz {
  background-position: 0px -760px;
}
.sections .drz:hover {
  background-position: -45px -760px;
}


.sections li {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #A93F89;
  padding-top: 8px;
  padding-bottom: 8px;
}
.thumbnails li {
  background-color: #FFF;
  -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  /* [disabled]position:  relative;
  */
}
.offers {
  margin-left: -1.5%;
}
.offer-box {
  background-color: #FFF;
-webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
-moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);  width: 31.6%;
  float: none;
  display: inline-block;
  margin-left: 1.5%;
  margin-bottom: 20px;
  min-height: 435px;
border-radius: 10px;
}
.offer-box .pricebox {
  background-color: #fa8500;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
  font-size: 24px;
  padding: 5px 10px 5px 10px;
  color: white;
  margin-left: -11px;
}
.offer-box.super .pricebox {
  background-color:#fa8500;
}


.offer-box.super .price .orange {
  color: white;
  background-color: #3f1a64;
  padding-top: 5px;
  padding-right: 7px;
  padding-bottom: 5px;
  padding-left: 7px;
  margin-left: 4px;
  border-radius: 7px;
  font-weight: bolder;
}

.offer-box article {
  padding: 0px;
  position: relative;
}
.offer-box h2 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  padding: 0px;
  margin-top: 8px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}
.offer-box h2 a {
  color: #000;
  text-decoration: none;
  font-size: 25px;
}

.offer-box h2 a:hover{
  color: #333;
  text-decoration: none;
}

.offer-box.empty {
  border: 4px dashed #fa8500;
  background-color: transparent;
  height: 435px;
  line-height: 435px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0px!important;
  padding-bottom: 0px!important;
}
.offer-box.empty.bigempty {
  width: 100%;
  margin-top: 15px;
  height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-box.empty.bigempty p {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 45px;
  text-align: center;
  color: #fa8500;
  text-shadow: 2px 2px 0px rgba(255,255,255,0.15);
  line-height: normal;
}
.offer-box.empty.bigempty .smiley {
  font-size: 80px;
  margin-top: 45px;
  margin-bottom: 20px;
}
.offer-box.empty.bigempty .other {
  font-size: 30px;
}

.top-box:hover .top-offer{
  opacity: 0.9;
  position: relative;
  z-index: 1;
}



.top-box .thumbnail .instant {
  width: 68.5%;
  margin-left: 374px;
  border-bottom-right-radius: 10px;
}

.offerside .offer-box {
  width: 98.5%;
}
.offer .instant, .thumbnail .instant{
  position: absolute;
  bottom: 0px;
  height: 40px;
  width: 100%;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 40px;
  background-color: #FF7F00;
  text-align: center;
  background-image: none;
  color: #fff;
}
.thumbnail .instant{
  left: 0px;
}
.thumbnail .instant.multi {
  background-image: none;
  background-color: #4e217b;
}
.icn-multi {
  height: 24px;
  width: 39px;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../img/icon-multi.png);
  background-repeat: no-repeat;
  margin-right: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}


.offer-box .price {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 15px;
}
.offer-box .price span {
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 10px;
  font-weight: bold;
}
.offer-box .price .orange {
  color: #FF7F00;
  padding-left: 12px;
}
.instant-sub  {
  text-align: center;
  padding-right: 8px;
  padding-left: 8px;
}
.offerpage  .instant-sub p{
  height: 40px;
  width: 100%;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 40px;
  color: #FFF;
  text-align: center;
  background-color: #FF7F00;
  display: block;
}
.offercont .offerpage .thumbnail .instant {
  position: absolute;
  bottom: 0px;
  height: 40px;
  width: 100%;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 40px;
  background-color: #FF7F00;
  text-align: center;
  background-image: none;
  color: #fff;
  max-width: 42.6%!important;
  margin-left: 358px!important;
  bottom: 273px!important;
}


background-color: #FFF;
-webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
-moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);  width: 31.8%;
  float: left;
  margin-left: 1.5%;
  margin-bottom: 20px;
  min-height: 435px;
border-radius: 10px;
}

.thumbnail>img {
    width: 100%;
}
.novo {
  position: absolute;
  margin-left: 0px;
  padding: 15px;
  background: #FF7F00;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 6px;
  color: #FFF;
  width: 35px;
  border-bottom-right-radius: 10px;
}
.thumbnail:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
}
.thumbnail .shade {
  background-color: #4e217b;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.svg-icons {
  height: 23px;
  width: 30px;
  margin-right: 4px;
}
.thumbnail:hover .shade {
  visibility: visible;
  opacity: .7;
}
.thumbnail:hover .action-btns {
  visibility: visible;
  top: 78px;
  opacity: 1;
}
.offer-box.soldout .shade {
  opacity: .85;
  visibility: visible;
}

.offer-box:hover {
  -moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.55);
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.55);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.55);
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.offer-box.soldout .sold {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #FFF;
  background-color: #6A3861;
  margin-bottom: 4px;
  padding-top: 2px;
  padding-right: 6px;
  padding-bottom: 2px;
  padding-left: 6px;
}

.offer-box.soldout .thumbnail .action-btns {
  visibility: visible;
  top: 78px;
  opacity: 1;
  padding-top: 13px;
}

.counter {
  background-color: #FFF;
  height: 43px;
  width: 135px;
  position: absolute;
  top: 0px;
  right: 0px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  z-index: 10;
  background-image: url(../img/icon-stopwatch.png);
  background-repeat: no-repeat;
  background-position: 7px 10px;
  display: block;
  padding-right: 1px;
}
.modal-body .counter {
  height: 43px;
  width: 135px;
  position: relative;
  top: auto;
  right: auto;
}
.counter p {
  line-height: 37px;
  text-align: right;
}
.counter .progress {
  background-color: #EEEEEE;
  height: 7px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  display: block;
}
.counter .indicator {
  background-color: #FF7F00;
  height: 7px;
  width: 33%;
  display: block;
}
.counter .success {
  background-color: #52B715;
  color: #FFF;
  background-image: url(../img/icon-success.png);
  background-repeat: no-repeat;
  height: 40px;
  background-position: 8px 7px;
  position: absolute;
  top: 42px;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.counter .success p {
  line-height: 45px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 45px;
  margin-top: -2px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}
.counter .success .morecoupons {
  padding-left: 12px;
}
.counter .soldout {
  background-color: #666666;
  color: #FFF;
  height: 40px;
  position: absolute;
  top: 42px;
  width: 100%;
}
.counter .soldout p {
  line-height: 45px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 45px;
  margin-top: -2px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  letter-spacing: 3px;
}
.counter .still {
  font-size: 32px;
  display: inline-block;
  margin-top: -7px;
  vertical-align: middle;
  padding-left: 3px;
  padding-right: 3px;
}
.counter.success .indicator {
  background-color: #6DD900;
  width: 100%;
}
.counter.success {
  background-position: 8px -34px;
}
.counter.succeeded {
  min-height: 80px;
}
.counter.waiting {
  min-height: 80px;
}
.counter .zero {
  background-image: unset !important;
  background-color: #ff7f00 !important;
}
.counter .zero p {
    padding-left: 0 !important;
}

.counter .zero p .morecoupons{
    padding-left: 0 !important;
}


.counter .stilltobuy {
  background-color: #CCC;
  color: #000;
  background-image: url(../img/icon-success.png);
  background-repeat: no-repeat;
  height: 40px;
  background-position: 8px 7px;
  position: absolute;
  top: 42px;
  width: 100%;
}
.offerpage {
  background-color: #FFF;
  -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  /* [disabled]position:  relative;
  */
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: auto;
}
.offerpage article {
  padding: 10px;
}
.offerpage h1 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 32px;
  margin: 0px;
  padding-bottom: 8px;
  line-height: normal;
}
.offerpage h3 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 26px;
  color: #FF7F00;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}
.offerpage .multi-name {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin: 0px;
  padding-top: 6px;
  line-height: normal;
  clear:both;
}
.offerpage p {
  font-size: 15px;
  display: inline;
  font-weight: bold;
}
.offerpage .intro {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 24px;
  margin: 0px;
  padding-bottom: 8px;
  line-height: normal;
  font-weight: 300;
  color: #464646;
}

.offercont .thumbnail.instant.multi {
  width: 42.5%!important;
  margin-left:0px!important;
  bottom: 280px;
}
.offerpage .offerblock {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
}
.offerpage .offergrey {
  background-color: #fff;
}
.offerpage .offergrey h3 {
  padding-left: 8px;
}
/*.offerpage .actionbox {*/
/*  min-height: 50px;*/
/*  overflow: hidden;*/
/*  padding-top: 0px;*/
/*  margin-top: 30px;*/
/*}*/

.offerpage .offer-action-price-container {
  display: flex;
  flex-direction: column-reverse;
}

.offerpage .counter {
  background-color: #EEE;
  z-index: 20;
  position: relative;
  margin-top: 10px;
  width: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}
.offerpage .progress {
  background-color: #FFF;
}
.offerpage .counter p {
  padding-right: 10px;
  font-size: 17px;
  text-align: left;
  padding-left: 35px;
}
.offerpage .counter .remaining {
  color: #FF7F00;
  padding-left: 10px;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, .6);
}
.offerpage .counter .shortremain {
  display: none;
}
.offerpage .badge {
  font-size: 22px;
  display: inline-block;
  padding-top: 4px;
  padding-bottom: 6px;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 3px;
  margin-right: 3px;
}
.offerpage .gal {
  width: 100%;
  position: relative;
}
.offer-terms {
  padding-right: 8px;
}
.modal-body .offerpage {
  background-color: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0px;
  min-height:inherit;
}
.modal-body .offerpage .offerblock {
  padding-top:0px;
  border-top:none;
  border-bottom:1px solid #EEE;
}
.modal-body .offerpage .counter p {
  font-size: 15px;
}
.modal-body .multi-name {
  display:block;
}
.modal#multiOffer {
  width: 760px;
  margin-left: -380px;
}
.modal#multiOffer .modal-body {
  min-height:420px;
}
.modal#multiOffer .row-fluid .span8 {
  width:48%;
}

.terms {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.terms li {
  margin-bottom: 5px;
  background-image: url(../img/bullet.png);
  background-repeat: no-repeat;
  padding-left: 15px;
  background-position: 0px 8px;
  font-size: 15px;
  list-style : none;
}
.btn-moreinfo {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  background-color: #FF7F00;
  display: block;
  font-size: 18px;
  text-align: center;
  color: #fff;
  padding-top: 6px;
  padding-bottom: 6px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 6px;
  margin-bottom: 12px;
  border-radius: 5px;
}
.btn-moreinfo:hover {
  color: #FFF;
  background-color: #6A3861;
  text-decoration: none;
}
.loc-btn {
  background-image: url(../img/icons-contact.png);
  background-repeat: no-repeat;
  height: 35px;
  width: 35px;
  margin-right: 2px;
  display: inline-block;
  background-color: #AEAEAE;
}
.loc-btn:hover {
  background-color: #FF7F00;
}
.loc-btn.email {
  background-position: -35px 0px;
}
.loc-btn.fbook {
  background-position: -70px 0px;
}
.icon-caret {
  background-image: url(../img/icon-carret.png);
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  height: 6px;
  width: 10px;
  margin-right: 10px;
  float: left;
  z-index: 10;
}
.collapsed {
  display: none;
}
.box-recommend {
  padding-top: 12px;
}
.geobox {
  background-color: #EEE;
  height: 260px;
  margin-bottom: 10px;
  position: relative;
}
.address {
  background-color: #FFF;
}
.address li {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 13px;
  line-height: 1.2em;
}
.icon.section {
  height: 36px;
  width: 36px;
  position: absolute;
  background-image: url(../img/section-icons-orange.png);
  background-repeat: no-repeat;
  background-color: #FFF;
  z-index: 10;
}
.food .icon.section {
}
.travel .icon.section {
  background-position: 0px -36px;
}
.edu .icon.section {
  background-position: 0px -72px;
}
.prod .icon.section {
  background-position: 0px -108px;
}
.sport .icon.section {
  background-position: 0px -144px;
}
.other .icon.section {
  background-position: 0px -180px;
}
.beauty .icon.section {
  background-position: 0px -216px;
}
.min .icon.section {
  background-position: 0px -252px;
}
.super .icon.section {
  background-position: 0px -288px;
}
.reg .icon.section {
  background-position: 0px -324px;
}
.ng .icon.section {
  background-position: 0px -360px;
}
.dan .icon.section {
  background-position: 0px -396px;
}
.mar .icon.section {
  background-position: 0px -432px;
}
.pres .icon.section {
  background-position: 0px -504px;
}

.action-btns {
  position: absolute;
  top: 60px;
  width: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
}
.action-btns .btn {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  background: none;
  background-color: #fff;
  border-radius: 0;
  border: none;
  color: #FF7F00;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 8px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  margin-top: 8px;
  border-radius: 10px;
}
.action-btns .btn:hover {
  background-color: #FF7F00;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
}
.page-inner {
  padding: 7px;
}
#upload_avatar_link {
  display: block;
}
.profhead .imgbox:hover #upload_avatar_link {
  display: block;
}
.registration {
  background-color: #EEE;
}
.registration.or {
  background-image: url(../img/registration-or.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.text .registration h2 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  line-height: normal;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
}
.text .registration p {
  margin: 0px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.text .registration .input {
  height: 40px;
  min-width: 100%;
}
.text .registration .box-form {
  padding-right: 50px;
  padding-left: 50px;
}
.myoffers {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #DDD;
}
.myoffers .company {
  margin: 0px;
  font-size: 12px;
  color: #666;
}
.myoffers h4 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 1.1em;
}
.myoffers .date {
  line-height: normal;
  text-align: center;
}
.myoffers .date span {
  font-size: 26px;
}
.myoffers .imgbox {
  height: 100px;
  width: 100px;
  -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.myoffers .imgbox img {
  height: 100px;
  width: 157px;
  min-width: 157px;
  margin-left: -34px;
  max-width: 157px;
}
.myoffers a {
  color: #000;
}
.myoffers a:hover {
  color: #412064;
  text-decoration: none;
}
.myoffers .btn {
  color: #F4E3EF;
  text-decoration: none;
  margin-bottom: 3px;
}
.myoffers .btn:hover {
  color: #FFF;
  text-decoration: none;
}
.myoffers .btn-action{
  background-color: #FF7E01;
  background-image: url(../img/profile-buttons.png);
  background-repeat: no-repeat;
  height: 30px;
  border-radius: 5px;
  width: 30px;
  display: block;
  float: left;
  margin-right: 2px;
  margin-bottom: 2px;
  margin-top: 5px;
}
.myoffers .btn-action:hover {
  background-color: #A33D84;
}

.myoffers .btn-print {
  background-position: -30px 0px;
}
.myoffers .btn-present {
  background-position: -60px 0px;
}
.myoffers .btn-archive {
  background-position: -90px 0px;
}
.form-delivery {
  margin: 0;
  margin-top: 10px;
}
.form-delivery label {
  font-size: 13px;
  font-weight: bold;
  color: #777;
  margin-bottom: 1px;
}
.form-delivery select {
  margin-bottom: 0;
}



.profhead {
  background-color: #EFEDEF;
  height: 90px;
  border-top-left-radius: 10px;
  padding-top: 7px;
  padding-right: 7px;
  padding-bottom: 7px;
  padding-left: 7px;
  min-height: 80px;
  box-shadow: inset 0px 1px 5px 0px rgba(0,0,0,0.29);
  border-top-right-radius: 10px;
}
.profhead.alt {
  text-align: center;
  padding: 10px;
  height: auto;
}
.profhead .imgbox {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 2px solid #FFF;
  position: absolute;
  -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  margin-left: 5px;
  margin-top: 5px;
}
.list-giftsteps {
  max-width: 700px;
  margin: 0 auto !important;
}
.list-giftsteps li {
  display: inline-block;
  width: 33.33333%;
  margin-right: -4px;
  padding-left: 80px;
  position: relative;
  min-height: 80px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px;
  text-align: left;
  padding-top: 20px;
  box-sizing: border-box;
  vertical-align: top;
}
.list-giftsteps .picto {
  position: absolute;
  left: 0;
  top: 0;
}
.prodata {
  padding-left: 95px;
}
.prodata h3 {
  color: #000;
  font-size: 28px;
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
}
.btn-avatar {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 30px;
  color: #00283A;
  background-color: #fff;
  padding-right: 8px;
  background-image: url(../img/icon-photo.png);
  background-repeat: no-repeat;
  background-position: 8px 6px;
  margin-left: 0px;
  border-radius: 5px;
  width: fit-content;
}
.btn-avatar:hover {
  color: #913676;
  text-decoration: none;
  background-color: #FFF;
}
.ekredbox {
  background: transparent!important;
  float: right;
  padding-top: 38px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  margin-top: 0px;
  background-image: url(../img/icon-ecoupon-small.png);
  background-repeat: no-repeat;
  background-position: 10px 9px;
  border-right: 1px solid white;
}

.ekredbox:first-child {
  border-right: none; 
}
.btn-charge {
    margin-left:0px!important;
    background-color: #FF7E01;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 5px;
    font-size: 18px;
    padding-right: 20px;
    padding-left: 8px;
    color: #FFFFFF;
    text-decoration: none;
   display: block;
    margin-top: -2px;
    background-image: url(../img/icon-arrow-right.png);
    background-repeat: no-repeat;
    background-position: right center;
}
.ekredbox p {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 19px;
  color: #00283A;
  margin: 0px;
  padding: 0px;
  font-weight: 400;
}
.ekredbox p span {
  font-weight: 700;
  color: #ff9900;
}
.btn-charge {
  margin-left: 12px;
  background-color: #FF7E01;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 5px;
  font-size: 18px;
  padding-right: 20px;
  padding-left: 8px;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  background-image: url(../img/icon-arrow-right.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.btn-charge:hover {
  color: #FFF;
  text-decoration: none;
  background-color: #A93F89;
}







.side-menu a {
  display: block;
  padding-top: 12px;
  padding-right: 15px;
  padding-bottom: 12px;
  padding-left: 15px;
  margin-bottom: 3px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 18px;
  background-color: #4F267A;
  border-radius: 5px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
}
.side-menu a:hover {
  background-color: #00283A;
}
.side-menu .selected, .side-menu .selected:hover {
  background-color: #002437;
}
.profile-content {
  padding-top: 20px;
}
.chkoutpage .profhead h2 {
  text-align: center;
  font-family: Yanone, Arial, Helvetica, sans-serif;
}
.steps {
  text-align: center;
  font-size: 13px;
  color: #999;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EEE;
}
.steps .active {
  color: #8F3675;
  position: relative;
  background: #FFF;
  padding-bottom: 23px;
}
.steps .active .stepno {
  background-color: #3f1a64;
  color: #FFF;
  border-radius: 5px;
}
.steps .active:after, .steps .active:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.steps .active:after {
  border-color: rgba(213, 213, 213, 0);
  border-top-color: #FFF;
  border-width: 10px;
  left: 50%;
  margin-left: -10px;
}
.steps .active:before {
  border-color: rgba(238, 238, 238, 0);
  border-top-color: #EEE;
  border-width: 11px;
  left: 50%;
  margin-left: -11px;
}
.steps p {
  margin: 0px;
  padding: 0px;
}
.steps .stepno {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  display: inline-block;
  height: 36px;
  width: 36px;
  line-height: 34px;
  text-align: center;
  font-size: 28px;
  background-color: #F8F8F8;
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -2px;
  margin-bottom: 2px;
}
.steps .step {
  padding-right: 20px;
  padding-left: 10px;
  background-image: url(../img/icon-steps-arrow.png);
  background-repeat: no-repeat;
  background-position: right 4px;
  color: #3f1a64;
}
.steps .step.laststep {
  background-image: none;
  padding-right: 8px;
}

.chktable th {
  text-align: left;
  font-size: 12px;
  color: #3f1a64;
  padding-top: 3px;
  padding-right: 10px;
  padding-bottom: 3px;
  padding-left: 10px;
}
.chktable td {
  background-color: #F5F5F5;
  padding-top: 15px;
  padding-right: 10px;
  padding-bottom: 15px;
  padding-left: 10px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #FFF;
  vertical-align: top;
}
.chktable h1 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 24px;
  padding: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}
.chktable p {
  margin: 0px;
  padding: 0px;
}
.chktable .imgbox {
  height: 80px;
  width: 80px;
  margin-bottom: 0px;
}
.chktable .imgbox img {
  max-width: none;
}
.chkprivacy {
  padding-top: 32px;
}
.namecoupon {
  padding-top: 15px;
  padding-bottom: 15px;
  /*border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #F5F5F5;*/
}
.chkaction {
  padding-top: 20px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  min-height: 30px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #F5F5F5;
}
.chkaction p {
  margin: 0px;
  padding: 0px;
}
.chkaction .btn {
  float: right;
  margin-top: -5px;
}
.offerpage h3.thanks{
  text-align: center;
  color: #B47EA5;
  font-size: 28px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.alert.large {
  font-size: 18px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #333;
}

.ecredit {
  padding-top: 17px;
  padding-bottom: 17px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #F5F5F5;
  background-color: #F8F8F8;
}
.ecreditbox {
  background-image: url(../img/icon-ecredit.png);
  background-repeat: no-repeat;
  padding-left: 65px;
  background-position: 18px 0px;
  padding-right: 35px;
  min-height: 60px;
}
.ecredpadding {
  padding-right: 30px;
}

.small {
  font-size: 11px !important;
}
.thumbnail .btn-buy {
  font-size: 19px;
}
.btn-buy {
  background-image: none;
  background-color: #FF7F00;
  background-repeat: no-repeat;
  display: block;
  height: 38px;
  width: 73px;
  margin-right: auto;
  /*margin-left: auto;*/
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 37px;
  color: #FFF;
  text-decoration: none;
  padding-right: 0;
  margin-bottom: 8px;
  text-align: center;
  background-position: right 0px;
  border-radius: 10px;
}

.btn-buy:hover {
  color: #FF7F00;
  text-decoration: none;
  background-position: right -51px;
}
.inst .btn-buy {
  font-size: 22px;
  background-repeat: no-repeat;
  background-position: right 0px;
  width: 140px;
}
.inst .btn-buy:hover {
  color: #FF7F00;
  text-decoration: none;
  background-position: right -51px;
}

.btn-open-offer-availability-modal {
  height: 28px;
  background: #FF7F00;
  border-radius: 10px;
  margin-left: 5px;
  color: #fff;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 33px;
  padding: 5px;
}

.btn-open-offer-availability-modal:hover {
  background: rgb(218, 110, 2);
  color: #fff;
  text-decoration: none;
}

.btn-no-price-offer-availability-modal {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    height: 72px;
}

.btn-more {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  padding: 0 4px;
}
.btn-more:hover {
  color: #FFF;
  text-decoration: underline;
}
.modal-header {
  padding: 16px 15px;
  border-bottom: 1px solid #eee;
}
.modal-header h3 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #A93F89;
}
.btn-primary {
  background-color: #4F267A!important;
  background-image: none;
  box-shadow: none;
}

.btn-large {
  font-size: 14px!important;
}
.facebookLogin {
  background-color: #3D5A97;
  border-radius: 4px;
  padding: 5px;
}
.btn-primary:hover {
  background-color: #412064!important;
  background-image: none;
}

.footer .row-fluid img {
  width: 50%!important;
  margin-top: 15px;
}
.numero {
  line-height: 30px;
  color: #666;
  background-color: #F5F5F5;
  height: 30px;
  width: 30px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}
.form-block {
  width: 100%;
}
.coupons-info {
  background-image: url(../img/icon-coupons.png);
  background-repeat: no-repeat;
  padding-left: 65px;
  background-position: 0px 3px;
}
.howblock {
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EEE;
}
.howblock.first {
  margin-top: 25px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #EEE;
}
.text.howitworks h3 {
  color: #C567A9;
  font-size: 32px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EEE;
  margin-bottom: 12px;
  padding-bottom: 10px;
  margin-top: 13px;
}
.text .howblock p {
  font-size: 17px;
}
.howblock img {
  width: 95%;
  margin-bottom: 15px;
}
.mapbox-all {
  background-color: #EEE;
  height: 450px;
}
.offerpage .contact h3 {
  margin-top: 0px;
  padding-top: 0px;
}
.contact .mapbox-all {
  height: 270px;
  margin-top: 0px!important;
}
.contact .form-horizontal .control-label {
  width: 100px;
}
.contact .form-horizontal .controls {
  margin-left: 120px;
}
.highbox {
  border: 3px solid #EEEEEE;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  min-height: 375px;
}
.text .highbox h4{
  margin-top: 0px;
  margin-right: -15px;
  margin-bottom: 15px;
  margin-left: -15px;
  padding-right: 15px;
  padding-left: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EEE;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  padding-bottom: 15px;
  color: #D465BF;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.1em;
}
.highbox .btn-buy {
  margin-top:50px;
  width: auto;
  font-size:24px;
  color:#FFF;
}
.highbox .btn-buy:hover {
  background-position:right -102px;
  text-decoration:none;
  color:#FFF;
}

.text.loyalty h2 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 1.1em;
  color: #D364BD;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: normal;
}

.poffer {
  background-color: #EEE;
  margin-bottom: 5px;
  position: relative;
  padding-left: 170px;
  padding-top: 7px;
  padding-right: 7px;
  padding-bottom: 7px;
  min-height: 110px;
}
.poffer:hover {
  background-color: #F5F5F5;
}
.discount {
  background-color: #D364BD;
  text-align: center;
  height: 100px;
  width: 110px;
  float: right;
  margin-left: 10px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  color: #FFF;
  /* [disabled]margin-top: -7px; */
  padding-top: 10px;
}
.text .discount p {
  line-height: 1.1em;
  margin-top: 0px;
  margin-bottom: 4px;
}
.text .discount .lrg {
  font-size:45px;
}
.poffer .imgbox {
  height: 110px;
  width: 150px;
  position: absolute;
  left: 10px;
  top: 10px;
}

.line {
  background-color: #FFF;
  height: 1px;
  width: 24px;
  margin-right: 6px;
  margin-left: 6px;
  display: inline-block;
  margin-bottom: 5px;
}
.text .poffer h4 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 4px;
  margin-left: 0px;
  font-weight: normal;
  line-height: 1.05em;
}
.text .poffer p {
  margin-bottom:0px;
}
.text .poffer a {
  color:#333333;
}
.text .poffer a:hover {
  color:#333333;
  text-decoration:none;
}
.text .nav-tabs {
  margin: 0px;
  list-style-type: none;
  padding: 0px;
  height: 42px;
  margin-bottom: 15px;
}
.text .nav-tabs a {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 24px;
  background-color: #EEEEEE;
  border-top-width: 2px;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-color: #EEE;
  border-right-color: #EEE;
  border-bottom-color: #EEE;
  border-left-color: #EEE;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #999999;
}
.text .nav-tabs a:hover {
  border-top-width: 2px;
  border-left-width: 2px;
  border-right-width: 2px;
  color: #333;
}
.text .nav-tabs .active a, .text .nav-tabs .active a:hover {
  background-color: #FFF;
  border-top-color: #999;
  border-right-color: #999;
  border-bottom-color: #FFF;
  border-left-color: #999;
  color: #333;
}
.ans {
  display: none;
  padding-bottom: 15px;
}
.text .faq h4{
  margin-top: 12px;
  margin-bottom: 0px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  color: #666666;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.1em;
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EEE;
}
.text .faq h4:hover {
  color: #111;
}
.text .faq h4.active {
  color:#D364BD;
  border-bottom-color:#FFF;
}

.giftcard {
  width: 491px;
  height: 456px;
  margin: 0px auto;
  border-radius: 0px;
  background-color:#fff;
  position: relative;
  overflow: hidden;
  -webkit-print-color-adjust: exact;
  color: #000;
  border-radius: 10px;
  padding-top: 50px;

}


@media print {
  .giftcard {
    -webkit-print-color-adjust: exact !important;
  }
  .giftcard p,
  .giftcard h2,
  .giftcard strong,
  .giftcard .card-valid span,
  .card-url {
    color: #313131 !important;
  }
}
.card-logo {
  position: absolute;
  width: 160px;
  height: auto;
  left: 33%;
  top: 35px;
}
.giftcard p {
  color: #000;
  margin: 0;
  font-size: 13px;
  line-height: 1.2em;
}
.giftcard .card-recipient .head,
.giftcard .card-offer .head {
  font-size: 8px;
  color: #D8B8CF;
  margin-bottom: 3px;
}
.card-id {
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 40px;
}

.coupon-card-id {
  position: absolute;
    bottom: 20px;
    right: 20px;
}
.small-print {
  font-size: 12px!important;
}
.giftcard .card-no {
  font-size: 10px;
}
.giftcard .card-valid {
  font-size: 11px;
  margin-top: 5px;
}
.giftcard .card-valid span {
  color: #313131;
}
.giftcard h2 {
  color: #747474;
  font-size: 17px;
  margin: 0;
  line-height: 1.1em;
  font-weight: normal;
  font-style: italic;
}
.card-recipient {
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
}
.giftcard .card-recipient p,
.giftcard .card-offer p {
  font-family: Amaranth, Helvetica, sans-serif;
  font-size: 17px;
  margin-bottom: 7px;
  font-weight: normal;
  color: #313131;
  font-style: italic;
  text-align: center;
  margin-top: 20px;
}

.giftcard .card-recipient strong,
.giftcard .card-offer strong {
  color: #313131;
}



.giftcard .card-recipient p:first-child {

  margin-top: 20px;
  font-size: 23px;
}

.giftcard .card-offer p:first-child {
  font-size: 17px;
  margin-top: 50px!important;
}
.giftcard .card-offer .mt-0 {
  margin-top: 0px!important;
}
.card-offer {
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
  max-width: 80%;
}
.card-url {
  font-size: 9px;
  font-size: 17px;
  width: fit-content;
  margin: auto;
  color: #313131;
  display: block;
  font-style: italic;
}
.card-url:hover {
  opacity: 1;
  color: #785C9A;
}


@font-face {
  font-family: 'icomoon';
  src:url('../webfonts/icomoon.eot?mfvsxb');
  src:url('../webfonts/icomoon.eot?#iefixmfvsxb') format('embedded-opentype'),
    url('../webfonts/icomoon.woff?mfvsxb') format('woff'),
    url('../webfonts/icomoon.ttf?mfvsxb') format('truetype'),
    url('../webfonts/icomoon.svg?mfvsxb#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="eicon-"], [class*=" eicon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.eicon-beauty:before {
  content: "\e900";
}
.eicon-checkcircle:before {
  content: "\e901";
}
.eicon-checkcircle-full:before {
  content: "\e902";
}
.eicon-checkmark:before {
  content: "\e903";
}
.eicon-dots:before {
  content: "\e904";
}
.eicon-gastro:before {
  content: "\e905";
}
.eicon-home:before {
  content: "\e906";
}
.eicon-top:before {
  content: "\e907";
}
.eicon-travel:before {
  content: "\e908";
}
.eicon-x:before {
  content: "\e909";
}
.navbar .nav>.active>a, .navbar .nav>.active>a:hover, .navbar .nav>.active>a:focus {
  background: white!important;
  color: #3A1E53;
}

.footer {
  background-color: #3A1E53;
  padding-top: 30px;
  margin-top: 20px;
  -moz-box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.35);
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.35);
  color: #F4EAF2;
  padding-bottom: 0px;
}
.footer .span5 {
  height: 270px;
}

.footer .span8 {
  width: 585px;
  border-right: 1px solid #4E217B;
}
.footer .span3 {
  width: 200px!important;
  padding-left: 9px;
}
.footer #copy-row .span12 {
  width: 1200px;
}
.footer .copyrights {
  height: 50px;
  width: fit-content;
  margin: auto;
  margin-top: 30px;
  border-top: 1px solid #4E217B;
  padding-top: 10px;
}
.social-links-bottom {
  margin-top: 80px;
  width: 80px;
  display: inline-block;
}
.footer .android {
  width: 119px;
  height: 50px;
  float: right;
  display: inline-block;
  margin-top: 70px;
  margin-right: 158px;
}
.footmenu li:hover {
  background-color: #4E217B;
  padding-left: 10px;
  transition: 0.4s all ease;
  border-radius: 5px;
}
.footmenu a {
  display: block;
  font-size: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.social-links-bottom a {
  font-size: 30px;
  margin-top: 20px;
}
.social-links-bottom a:first-child {
  margin-right: 15px;
}
.footer h3 {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: normal;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
}
.footer h3.rightTitles {
  margin-bottom: 0px;
}
.footer h3.rightTitles.last {
  margin-top: 40px;
}
.footer a {
  color: #F3EAF2;
}
.footer a:hover {
  color: #FFF;
  text-decoration: none;
}
.footmenu {
  margin-right: 20px;
}
.footmenu a {
  display: block;
  font-size: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.footer .telnumber {
  font-size: 14px;
}
.logo-small {
  width:150px;
  margin-bottom: 12px;
  margin-left: -5px;
}
.noUi-target {
  border-radius: 10px;
  border: none;
  box-shadow: none;
}
.noUi-background {
  background: #3F2639;
  border-radius: 10px;
  box-shadow: none;
}
.noUi-connect {
  background: #FF7F00;
  box-shadow: none;
  border-radius: 10px;
  margin-right: 5px;
}
.noUi-handle {
  border: none;
  border-radius: 100%;
  background-color: #fff;
}
.noUi-horizontal .noUi-handle {
  box-shadow: 0 0 0 4px rgba(0,0,0,.2);
  width: 34px;
  height: 34px;
  top: -9px;
}
.noUi-handle:after, .noUi-handle:before {
  top: 9px;
}


.nletter input::-webkit-input-placeholder {
  color:  #6A3861;
}

:-moz-placeholder {
  color:  #6A3861;
}

::-moz-placeholder {
  color:  #6A3861;
}

:-ms-input-placeholder {
  color:  #6A3861;
}
.center {
  text-align: center;
}
.pikpay {
  float: right;
}
.clear {
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.inner {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img.align-left {
  float: left;
  margin-right: 10px;
  margin-top: 5px;
}
img.align-right {
  float: right;
  margin-left: 10px;
  margin-top: 5px;
}
img.full-width {
  clear: both;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.rsFullscreen .rsSlide, .rsFullscreen .rsThumbs {
  background-color: #000 !important;
}
.imgbox {
  display: block;
  width: 10px;
  height: 10px;
  overflow: hidden;
}
.info {
  border: 1px solid gold;
  background: lightyellow;
  padding: 10px 20px 10px 10px;
  margin: 10px 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #DEAE00;
  line-height: 120%;
  vertical-align: center;
  text-shadow: 0px 1px rgba(255, 255, 255, 0.5);
  position: relative;
  top: 0;
  left: 0;
  clear: both;
}
.info.warning {
}
.info.error {
  border: 1px solid red;
  background: pink;
  color: red;
}
.info.success {
  border: 1px solid green;
  background: lightgreen;
  color: green;
}
.info .icon {
  color: inherit;
  margin-right: 10px;
  margin-bottom: -5px;
  *margin-top: -5px;
}
.info a.icon.close, .info a.icon.close:active, .info a.icon.close:visited {
  font-size: 12px;
  position: absolute;
  top: 5px;
  right: -5px;
  left: auto;
  color: inherit;
}
.menu {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.menu li {
  display: inline-block;
  float: left;
}
.middle {
  width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.transition {
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.transition2 {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.shadow {
  -webkit-box-shadow: 1px 1px 3px 0px #666;
  -moz-box-shadow: 1px 1px 3px 0px #666;
  box-shadow: 1px 1px 3px 0px #666;
}
.corners {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.clear {
  overflow: hidden;
  clear: both;
  height: 1px;
}
/*----------------------*/.text p {
  line-height: 1.4em;
    font-size: 16px;
    margin: 0px;
    padding-bottom: 8px;
    line-height: normal;
    font-weight: 300;
    color: #464646;
    padding-left: 10px;
    display: block;
}
.text .intro {
  margin-bottom: 15px;
  font-weight: bold;
}
.text h1 {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.1em;
  padding-bottom: 16px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EEE;
  padding: 10px;
  margin-bottom: 20px;
}
.text h2 {
  font-size: 18px;
  margin-top: 1.5em;
  margin-bottom: 0em;
}
.text h3 {
  font-size: 24px;
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  color: #FF7F00;
  padding-left: 10px;
}
.text h4 {
  font-size: 14px;
  margin-top: 1.2em;
}
.text table {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.text th {
  font-size: 13px;
  text-transform: uppercase;
  background-color: #666;
  text-align: left;
  padding-top: 6px;
  padding-right: 8px;
  padding-bottom: 6px;
  padding-left: 8px;
  color: #FFF;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #CCC;
}
.text td {
  padding-top: 6px;
  padding-right: 8px;
  padding-bottom: 6px;
  padding-left: 8px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #DDD;
}
.text tr:hover {
  background-color: #EEE;
}
.text ul {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 2em;
  list-style-type: square;
}
.text ul li {
  line-height: 1.4em;
  margin-bottom: 6px;
}
.text ul.checks {
  padding: 0;
  margin: 0 0 20px 0;
}
.text ul.checks li {
  list-style-type: none;
  margin: 0;
  background: url(pix/icon-check.png) no-repeat 5px 0.5em;
  padding-left: 30px;
}
.text ul.alt {
  padding: 0;
  margin: 0 0 20px 0;
}
.text ul.alt li {
  list-style-type: none;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 -1px 0;
  background: url(pix/icon-arrow-right.png) no-repeat 5px 0.7em;
  padding-left: 20px;
}
.text a {
  color: #09C;
  text-decoration: none;
}
.text a:hover {
  color: #069;
  text-decoration: underline;
}
.text .tabs, .tabs {
  list-style-type: none;
  margin-left: 0px;
  padding-left: 0px;
  height: 30px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #CCC;
}
.text .tabs li, .tabs li {
  display: inline-block;
  float: left;
  margin-right: 2px;
}
.text .tabs li a, .tabs li a {
  display: block;
  background-color: #666;
  color: #FFF;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 5px;
  height: 25px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-left-style: solid;
  border-top-color: #666;
  border-right-color: #666;
  border-left-color: #666;
}
.text .tabs li a:hover, .tabs li a:hover {
  text-decoration: none;
  background-color: #7C7C7C;
}
.text .tabs li a.selected, .tabs li a.selected {
  color: #000;
  background-color: #FFF;
}
.text .grid, .grid {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  overflow: hidden;
}
.text .grid li, .grid li {
  float: left;
  width: 220px;
  margin-right: 10px;
  margin-left: 10px;
  min-height: 350px;
}
.text .grid .imgbox, .grid .imgbox {
  height: 160px;
  width: 220px;
  margin-bottom: 10px;
}
.text .grid li h1, .grid li h1 {
  font-size: 17px;
  line-height: 1.2em;
  min-height: 2em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
.text .grid li p, .grid li p {
  font-size: 13px;
  margin-top: 8px;
}
.tabcontent {
  padding-top: 15px;
}
.box-form {
  /* [disabled]background-color:  #EEE;
  */
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
}
.box-form.nopadding {
  padding-right: 0px;
  padding-left: 0px;
}
.box-form .error {
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #FFB0B0;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
}
.eicntlink {
  display: inline-block;
  position: absolute;
  margin-top: 15px;
  margin-left: -5px;
}
.misijaweb {
  background-image: url(../img/mw-logo.png);
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 4px;
  display: block;
  cursor: pointer;
  padding-top: 45px;
  overflow: hidden;
  padding-right: 8px;
  padding-bottom: 0px;
  padding-left: 8px;
  background-position: 6px 10px;
  height: 0px;
  width: 115px;
}

.profil-reg {
  background-image: url(../img/user-ikona.png);
  background-repeat: no-repeat;
  background-color: none;
  height: 19px;
  width: 19px;
  margin-top: -10px;
  background-color: #;
  background-color: #3a1e53;
  padding: 10px;
  background-position: center;
  border-radius: 5px;
  float: right;
  margin-left: 10px;
}

.mwlink {
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .offer-box h2 {
   /*height: 133px!important;*/
    margin: 0px;
    padding-left: 10px;
    overflow: hidden;
    padding-right: 10px;
}
}
.bars-right {
    cursor: pointer;
}

@media (min-width:980px) and (max-width:1024px) {
  .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
    width: 95%;
  }
  .bignum-info {
    padding-right: 15px;
  }
  .thumbnail {
    height: auto;
  }
  .offer-box h2 {
    font-size: 28px;
  }
  .logoplace {
    width: 200px;
  }
  .logoplace img {
    width: 100%;
    height: auto;
  }
  .menuplace {
    padding-left: 200px;
    padding-top: 8px;
  }
  .navbar .navbar-inner .nav li a,
  .navbar .navbar-inner .nav li a.active {
    font-size: 11px;
    padding-right: 5px;
    padding-left: 5px;
  }
  .navbar-main .navbar-inner .nav li a {
    font-size: 17px;
  }
  .navbar-main [class^="eicon-"] {
    font-size: 15px;
  }

}

@media (min-width: 980px) {
  .navbar-main .nav li.dropdown:hover .dropdown-menu {
    display: block;
  }
  .navbar-main .nav li.dropdown:hover > a {
    background-color: #fff;
    color: #863771;
  }
  .navbar-main .nav li.dropdown:hover > a .badge {
    visibility: hidden;
  }

  /*  MENU FILTER - min-width: 980px
   ---------------------------------------*/

  .menu-filter__date-filter-container {
    /*top: 10px;*/
  }

}

@media (max-width:979px) {

  .navbar .btn-navbar {
    display: none !important;
  }
  .navbar-inner .nav li a {
    padding-left: 8px;
    padding-right: 8px;
  }
  .btn-mobilemenu {
    display: block;
  }
  .showmenu .navbar-main {
    right: 0;
  }
  .showmenu .overlay {
    opacity: 1;
    visibility: visible;
  }
  .navbar-main {
    position: fixed;
    right: -240px;
    top: 0;
    bottom: 0;
    width: 240px;
    z-index: 510;
    display: block;
    background-color: #fff;
    margin: 0;
    -webkit-transition: all 400ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
    -moz-transition: all 400ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
    -o-transition: all 400ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
    transition: all 400ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  }
  .navbar-main .nav li a {
    color: #222;
    border-radius: 0;
  }
  .navbar-main .badge {
    color: rgba(0,0,0,.35);
    border-color: rgba(0,0,0,.25);
  }
  .navbar-main .nav-collapse {
    overflow: visible;
  }
  .navbar-main .nav-collapse.collapse {
    margin-left: -15px;
    margin-right: -15px;
  }
  .navbar-main .navbar-inner {
    height: auto;
    display: block;
    padding: 0 15px;
    margin: 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    left: 0;
    right: 0;
  }
  .navbar-main .navbar-inner .nav li a {
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 8px 16px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.1);
  }
  .navbar-main .navbar-inner .nav li.sec {
    display: block;
  }
  .navbar-main .navbar-inner .nav li.sec a {
    font-size: 16px;
    color: rgba(0,0,0,.55);
    padding: 7px 16px;
  }
  .navbar-main .nav li.dropdown>a:not(.dropdown-toggle) .caret {
    display: none;
  }
  .navbar-main .dropdown-mobile {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar-main .dropdown-menu {
    max-width: inherit;
    padding: 0;
    margin: 0;
  }
  .navbar-main .dropdown-menu > li {
    margin: 0 !important;
    border: none;
  }
  .navbar-main .dropdown-menu > li > a {
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 6px 28px !important;
  }

  .logoplace {
    float: none;
    width: auto;
  }
  .menuplace {
    display: block;
    text-align: left;
    padding: 0;
    padding-bottom: 16px;
  }
  .list-cats {
    top: 0;
  }
}
@media (min-width:768px) and (max-width:979px) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }
  .navbar-main .nav .dropdown.profil {
    background: #f1f1f1;
    width: fit-content;
    margin-left: 10px;
    margin-top: 0px;
    max-width: 78%;
  }
  .navbar .nav>.active>a, .navbar .nav>.active>a:hover, .navbar .nav>.active>a:focus {
      box-shadow: none!important;
  }
  .ostali {
      padding: 0px;
      margin: 0px;
      margin-top: 15px;

  }
  .ostali li {
      list-style: none;
      margin: 15px 0!important;
  }

  .ostali li a {
    border-bottom: none!important;
  }

  .ostali p {
      font-family: Yanone, Arial, Helvetica, sans-serif;
      font-size: 16px;
  }

  .ostali li a {
      width: 100%;
  }
  .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
    width: 95%;
  }
  .modal#multiOffer .row-fluid .span8 {
    width:100%;
  }
  .logo {
    width: 280px!important;
  }

  .offer-box {
    min-height: 387px!important;
  }
  .offers .thumbnail {
    height: 190px!important;
  }
  .stat1, .stat2 {
    display: none;
  }
  .navbar .nav.pull-right {
    margin-right: 10px;
  }
  .nav-collapse, .nav-collapse.collapse {
    margin-left: -20px;
    margin-right: -20px;
  }
  .offer-box#putovanja-offer-box {
    width: 48.5%!important;
  }
  .bars-right .dropdown-menu {
      display: block;
  }
  .bars-right .dropdown-menu a {
    margin: 15px 10px;
}
  .travel-filter {
      height: 150px!important;
      border-radius: 0px!important;
  }
  .navbar-main .nav .dropdown.profil {
    font-family: 'Encode Sans Condensed', sans-serif;
    font-size: 14px;
    color: #000;
    background-color: rgba(255,255,255,.15);
    margin-left: 1px;
    text-align: left;
    line-height: 40px;
    height: 42px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    margin-right: 3px;
    padding: 0px 16px;
}
.navbar .nav {
    margin: 10px 10px 0 0!important;
  }
.dropdown.profil .dropdown-menu.other-dropdown {
    border-radius: 0;
    border: none;
    margin-top: 1px;
    /* padding: 8px 12px; */
    margin-left: 1px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 0px;
    border-top-left-radius: 7px;
    margin-left: 0!important;
}

.bars-right {
    color: #000;
    font-size: 15px;
    padding: 11px 14px;
    background-color: rgba(255,255,255,.15);
    border-radius: 5px!important;
    height: initial;
}
.navbar-main .nav li a {
    color: black!important;
}
  .inner-travel {
    /*height: 120px;*/
    width: 94%!important;
    margin: auto;
    padding: 0 15px!important;
}
  .top-box .thumbnail .instant {
    margin-left: 270px!important;
  }

  .top-box {
    min-height: 263px;
  }
  .top-offer .thumbnail {
    height: 265px;
    border-bottom-right-radius: 10px;

}

.footer .span8 .span5 {
  width: 30%;
}
.footer .span5 {
  width: 100%;
  height: 70px;
}

.btn-mobilemenu {
  width: 50px;
  height: 50px;
  background-color: #FF7F00;
  position: fixed;
  /* top: 11px; */
  border-radius: 3px;
  top: 145px;
  /* margin-right: 8px; */
  right: 0!important;
  z-index: 500;
  text-align: center;
  color: #fff;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1em;
  padding-top: 8px;
  box-sizing: border-box;
  transition: .2s all;
  display: block;
  /* top: 86px; */
}
.search-icon {
  display: block;
  width: 50px;
  height: 41px;
  background-color: #FF7F00;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: fixed;
  right: 0px;
  top: 167px!important;
  text-align: center;
  z-index: 100;
  -moz-transition: top 0.7s;
  -o-transition: top 0.7s;
  -webkit-transition: top 0.7s;
  transition: top 0.7s;
}
.footer #copy-row .span12 {
  width: 100%;
}
.footer .android {
  display: none;
}

.footer .social-links-bottom {
  display: none;
}
.span5 .logo-small {
  display: block; margin: auto;
}
.span5 .about-text {
  display: none;
}
.offer-box .price {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 15px;
  position: absolute;
  bottom: 0;
  top: 326px;
  left: 6px;
}
.offer-box .price .orange {
  color: #FF7F00;
  padding-left: 0px;
}
.offer-box .price span {
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 10px;
  font-weight: bold;
}
.top-box .intro {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.1em;
  font-weight: 400;
  color: #666;
  padding-left: 10px;
  color: #000;
}
.offer .instant, .thumbnail .instant {
  font-size: 17px;
}
.top-box h1 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px!important;
  font-weight: 700;
  line-height: 25px;
  padding: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
}
.actionbox {
  padding-top: 1px;
}
.offer-box h2 {
  font-size: 20px!important;
  padding: 0px 10px;
  line-height: 25px;
}
  .offer-box h2 a {
    color: #000;
    text-decoration: none;
    font-size: 21px;
}
  .thumbnail img {
    width: 100%;
    height: auto;
  }
  .offerside .thumbnail {
    height: 200px;
  }
  .offerside .offer-box h2 {
    font-size: 22px;
    line-height: 24px;
  }
  .offerside .thumbnail img {
    width: auto;
    height: 100%;
  }
  .offerside .offer-box {
    min-height: 290px;
  }
  .offer-box.empty {
    display: none;
  }
  .offerpage .counter .remaining {
    display: none;
  }
  .offerpage .counter .shortremain {
    display: inline;
  }
}
@media (max-width: 767px) {
    .bars-right {
        height: initial;
    }
  .modal#multiOffer {
    margin-left: 0px;
    width:auto;
  }
  .modal#multiOffer .row-fluid .span8 {
    width:100%;
  }
  .logobox {
    float: left !important;
    width: 35% !important;
  }
  .logo {
  }
  .statsbox {
    float: left !important;
    width: 63% !important;
  }
  .stat1, .stat2 {
    display: none;
  }
  .navbar-inner {
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    z-index: 300;
  }
  .support {
    margin-left:-20px;
    margin-right:-20px;
  }
  .navbar-inner .nav li a {
    padding-left: 25px;
    padding-right: 25px;
  }
  .navbar .nav.pull-right {
    margin-right: 20px;
  }
  .nav-collapse, .nav-collapse.collapse {
    margin-left: -20px;
    margin-right: -20px;
  }
  .mainmenu {
    width: 10% !important;
  }
  .maincontent {
    width: 100% !important;
  }
  .top-offer .thumbnail {
    clear: both;
    height: 300px;
  }
  .top-offer .thumbnail img {
    margin-top: 0%;
    position: absolute;
    bottom: 0px;
    max-width: 100%;
    height: 200px;
    right: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0px;
}

.top-box .thumbnail .instant {
  width: 100%;
  margin-left: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius:10px;
}

.top-offer .span11 {
  height: 230px;
}

  .thumbnail img {
    width: 100%;
    height: auto;
    margin-top: 0%;
  }
  .offer-box {
    width: 99%!important;
  }
  .footer {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .footer h3 {
    margin-top: 35px;
  }
  .footmenu {
    margin-right: 0px;
  }
  .footmenu li a {
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .offer-box.empty {
    display: none;
  }
  .contact .form-horizontal .controls {
    margin-left: 0px;
  }
  .contact .form-horizontal .control-label {
    text-align: left;
    width: 100%;
  }
  .registration.or {
    background-image:none;
  }
  .steps p {
    font-size: 12px;
    padding-right:4px;
  }
  .steps .stepno {
    font-size:17px;
    width:24px;
    height:24px;
    line-height:24px;
  }
  .steps .active {
    padding-bottom:18px;
  }
  .ekredbox {
    margin-top:20px;
    margin-left:-7px;
    margin-right:-7px;
    margin-bottom:-7px;
    min-height:27px;
  }
  .pricebox {
    overflow: hidden;
  }

  /*  MENU FILTER - max-width: 767px
   ---------------------------------------*/

  .menu-filter__date-filter-container {
    display: block;
    padding: 10px 10px 0px 10px !important;
  }

  .menu-filter__date-filter {
    /*width: 100px !important;*/
  }

  #search_vacation {
    display: block;
    margin-top: 20px;
    margin-bottom: 15px;
  }

}
@media (max-width: 480px) {
  html {
    overflow-x: hidden;
  }
  .logoplace {
    margin-top: 60px;
  }
  .showmenu .navbar-main {
    right: 0;
    margin-top: 49px;
    z-index: 111;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.4);

}
  .navbar .nav {
    margin: 0px 10px 0 0!important;
}
.list-giftsteps li {
  width: 100%!important;
}

  .profhead {
    background-color: #EFEDEF;
    height: 170px;
    border-top-left-radius: 10px;
    padding-top: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
    padding-left: 7px;
    min-height: 140px;
    box-shadow: inset 0px 1px 5px 0px rgba(0,0,0,0.29);
    border-top-right-radius: 10px;
}
.ekredbox p {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #00283A;
  margin: 0px;
  padding: 0px;
  font-weight: 400;
}
.ekredbox {
    width: 26%;
    display: inline-block;
    margin: 0px;
    font-size: 13px;
    padding-top: 0px!important;
    margin-top: 30px;
}
.profil-reg {
  border-bottom: 1px solid rgba(0,0,0,.1);
  padding: 8px 16px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
  color:black!important;
}
.navbar-main .nav .dropdown.profil {
  color: black!important;
  border-bottom: 1px solid rgba(0,0,0,.1);
  height: initial;
}

.navbar-main .nav .dropdown.profil a {
border-bottom: none!important;
}
.navbar-main .nav .dropdown.profil {
  background: #f1f1f1;
  width: fit-content;
  margin-left: 10px;
  margin-top: 0px;
  max-width: 78%;
}
.navbar .nav>.active>a, .navbar .nav>.active>a:hover, .navbar .nav>.active>a:focus {
    box-shadow: none!important;
}
.ostali {
    padding: 0px;
    margin: 0px;
    margin-top: 0px;

}
.ostali li {
    list-style: none;
    margin: 15px 0!important;
    border-bottom: 1px solid rgba(0,0,0,.1)!important;
    padding-bottom: 10px;

}

.ostali p {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding-left: 10px;
  background: #f1f1f1;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
}

.ostali li a {
    width: 100%;
    border-bottom: none!important;
}
.btn-charge {
margin-left: 0!important;
}
.social-links-bottom {
  margin-top: 80px;
  width: 100%;
  display: inline-block;
  margin: auto;
}

.dropdown.profil .dropdown-menu.other-dropdown {
  margin-left: 0!important;
  border-bottom: 0!important;
  padding: 0!important;
}
.footer .android {
  width: 119px;
  height: 50px;
  float: right;
  display: inline-block;
  margin-top: -40px;
  margin-right: 0px;
}
.navbar-inner .nav .bars-right {
  color: black!important;
}

.bars-right {
  height: auto!important;
}
.dropdown-menu.other-dropdown a {
  border-bottom: none!important;
  padding: 3px 7px;
}
.footer .span8 {
  width: 100%;
  border-right:none;
  text-align: center;
}
.footer .span3 {
  width: 100%!important;
  padding-left: 0px;
  text-align: center;
}
.misijaweb {
  background-image: url(../img/mw-logo.png);
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 4px;
  display: block;
  cursor: pointer;
  padding-top: 45px;
  overflow: hidden;
  padding-right: 8px;
  padding-bottom: 0px;
  padding-left: 8px;
  background-position: 6px 10px;
  height: 0px;
  width: 115px;
  margin: auto;
  margin-top: 30px;
}
.foot-logo {
  display: block;
  margin: auto;
  width: 100%;
  text-align: center;
}
.navbar .nav.pull-right {
  margin-right: 100px;
  position: absolute;
  right: 0px;
  left: inherit;
}
  .navbar .nav.pull-right {
    margin-right: 100px;
    float: left;
  }
  .top-offer .thumbnail {
    height: 300px;
  }
  .thumbnail img {
    margin-top: 0%;
    width: 120%;
    max-width: 120%;
    margin-left: -10%;
    margin-top: -10%;
  }
  .thumbnail {
    height: 180px;
  }
  .offer-box h2 {
    font-size: 23px;
    line-height: 25px;
  }
  .action-btns {
    top: 40px;
  }
  .thumbnail:hover .action-btns {
    top: 58px;
  }
  .stats {
    display: none;
  }
  .top-box h1 {
    font-size: 28px;
    line-height: 28px;
  }
  .top-box .intro {
    font-size: 20px;
    line-height: 22px;
  }
  .offer-box {
    min-height: 300px;
  }
  .offer-box.empty {
    display: none;
  }
  .mainmenu {
    display: none !important;
  }
  .maincontent {
    width: 100% !important;
  }
  table.responsive td:before {
    width: 25%;
    text-align: left;
    font-size: 11px;
    font-weight: bold;
    color: #8F3675;
  }
  table.responsive td {
    padding-left: 25%;
  }
  .steps .step {
    font-family: Yanone, Arial, Helvetica, sans-serif;
  }
  .form-block-full {
    display: block !important;
    box-sizing: border-box;
    height: 34px !important;
  }
  .pricebox .price {
    margin: 0px;
    float: none;
    padding: 0px;
    line-height: inherit;
    height: auto;
  }
  .pricebox .price+.price {
    margin-bottom: 15px;
  }
  .top-box.alt {
    padding: 15px 20px;
  }
  .priceslider .rate {
    text-align: center;
    font-size: 18px;
  }
  .logo {
    margin-top: 0;
  }

}

@media (max-width: 320px) {
  .top-box.alt {
    padding: 15px;
  }
  .priceslider .rate {
    font-size: 16px;
  }
  .logo {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
    .hidden-md,
    .hidden-lg {
        display: none !important;
    }
}

@media (min-width: 320px) and (max-width: 991px) {
    .hidden-xs,
    .hidden-sm {
        display: none !important;
    }
}

/* v1.0.2 *//* Core RS CSS file. 95% of time you shouldn't change anything here. */.royalSlider {
  /* [disabled]width:  744px;
  */
  /* [disabled]height:  400px;
  */
  position: relative;
  direction: ltr;
}
.royalSlider2 {
  /* [disabled]width:  744px;
  */
  /* [disabled]height:  400px;
  */
  position: relative;
  direction: ltr;
}
.rsWebkit3d .rsSlide, .rsWebkit3d .rsContainer, .rsWebkit3d .rsThumbs, .rsWebkit3d .rsPreloader, .rsWebkit3d img, .rsWebkit3d .rsOverflow, .rsWebkit3d .rsBtnCenterer, .rsWebkit3d .rsAbsoluteEl {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}
.rsFade.rsWebkit3d .rsSlide, .rsFade.rsWebkit3d img, .rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none;
}
.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rsArrow, .rsThumbsArrow {
  cursor: pointer;
}
.rsThumb {
  float: left;
  position: relative;
}
.rsArrow, .rsNav, .rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  -moz-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  -o-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}
.rsGCaption {
  width: 100%;
  float: left;
  text-align: center;
}
/* Fullscreen options,  very important ^^ */.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}
.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none;
}
.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.royalSlider.rsAutoHeight, .rsAutoHeight .rsSlide {
  height: auto;
}
.rsContent {
  width: 100%;
  height: 100%;
  position: relative;
}
.rsPreloader {
  position: absolute;
  z-index: 0;
}
.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
}
.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
}
.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22;
}
.rsTabs {
  float: left;
}
.rsTabs, .rsThumbs {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rsVideoContainer {
  /*left:  0;
  top:  0;
  position:  absolute;
  */    /*width:  100%;
  height:  100%;
  position:  absolute;
  left:  0;
  top:  0;
  float:  left;
  */    width: auto;
  height: auto;
  line-height: 0;
  position: relative;
}
.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: .3s;
}
.rsVideoFrameHolder.rsVideoActive {
  opacity: 1;
}
.rsVideoContainer iframe, .rsVideoContainer video, .rsVideoContainer embed, .rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* ios controls over video bug,  shifting video */.rsVideoContainer.rsIOSVideo iframe, .rsVideoContainer.rsIOSVideo video, .rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px;
}
.rsABlock {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 15;
  -webkit-backface-visibility: hidden;
}
.grab-cursor {
  cursor: url(../img/grab.png) 8 8, move;
}
.grabbing-cursor {
  cursor: url(grabbing.png) 8 8, move;
}
.rsNoDrag {
  cursor: auto;
}
.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
  background: url(blank.gif);
  -webkit-backface-visibility: hidden;
}
/********************************  RoyalSlider Default Skin **    1. Arrows *    2. Bullets*    3. Thumbnails*    4. Tabs*    5. Fullscreen button*    6. Play/close video button*    7. Preloader*    *  Sprite: '../img/rs-default.png'*  Feel free to edit anything*  If you don't some part - just delete it* ******************************//* Background */.rsDefault .rsOverflow, .rsDefault .rsSlide, .rsDefault .rsVideoFrameHolder, .rsDefault .rsThumbs {
  background: #FFF;
  border-radius: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
/*****************  1. Arrows*****************/.rsDefault .rsArrow {
  height: 100%;
  width: 44px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 999;
}

.rsSlide .top-offer .thumbnail {
  height: 360px;
  border-bottom-right-radius: 10px;
}
.rsDefault.rsVer .rsArrow {
  width: 100%;
  height: 44px;
}
.rsDefault.rsVer .rsArrowLeft {
  top: 0;
  left: 0;
}
.rsDefault.rsVer .rsArrowRight {
  bottom: 0;
  left: 0;
}
.rsDefault.rsHor .rsArrowLeft {
  left: 0;
  top: 0;
}
.rsDefault.rsHor .rsArrowRight {
  right: 0;
  top: 0;
}
.rsDefault .rsArrowIcn {
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  position: absolute;
  cursor: pointer;
  background: url('../img/rs-default.png');
  background-color: rgba(0, 0, 0, 0.75);
  *background-color:  #111;
  border-radius: 2px;
}
.rsDefault .rsArrowIcn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
  background-position: -64px -32px;
}
.rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  background-position: -64px -64px;
}
.rsDefault.rsVer .rsArrowLeft .rsArrowIcn {
  background-position: -96px -32px;
}
.rsDefault.rsVer .rsArrowRight .rsArrowIcn {
  background-position: -96px -64px;
}
.rsDefault .rsArrowDisabled .rsArrowIcn {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: .4;
  *display:  none;
}
/*****************  2. Bullets*****************/.rsDefault .rsBullets {
  position: absolute;
  z-index: 35;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  line-height: 18px;
  overflow: hidden;
}
.rsDefault .rsBullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 5px 1px;
  border-radius: 50%;
  background: #777;
  background: rgba(255, 255, 255, 0.5);
}
.rsDefault .rsBullet.rsNavSelected {
  background-color: #FFF;
}
/*****************  3. Thumbnails*****************/.rsDefault .rsThumbsHor {
  padding-bottom: 4px;
  width: 100%;
  height: 72px;
}
.rsDefault .rsThumbsVer {
  padding-right: 4px;
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%;
}
.rsDefault.rsWithThumbsVer .rsThumbsContainer {
  position: relative;
  width: 100%;
}
.rsDefault .rsThumb {
  float: left;
  overflow: hidden;
  width: 96px;
  height: 72px;
}
.rsDefault .rsThumb img {
  width: 100%;
  height: 100%;
}
.rsDefault .rsThumb.rsNavSelected {
  background-color: #FF7F00;
}
.rsDefault .rsThumb.rsNavSelected img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.rsDefault .rsTmb {
  display: block;
}
/* Thumbnails arrow icons */.rsDefault .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
}
.rsDefault .rsThumbsArrow:hover {
  background: rgba(0, 0, 0, 0.9);
}
.rsDefault.rsWithThumbsVer .rsThumbsArrow {
  width: 100%;
  height: 20px;
}
.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
  top: 0;
  left: 0;
}
.rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
  bottom: 0;
  left: 0;
}
.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0;
}
.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0;
}
.rsDefault .rsThumbsArrowIcn {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  cursor: pointer;
  background: url('../img/rs-default.png');
}
.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -128px -32px;
}
.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -128px -48px;
}
.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -144px -32px;
}
.rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -144px -48px;
}
.rsDefault .rsThumbsArrowDisabled {
  display: none !important;
}
/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px;
  }
  .rsDefault .rsThumbsHor {
    height: 44px;
  }
  .rsDefault .rsThumbsVer {
    width: 59px;
  }
}

/*****************  4. Tabs*****************/.rsDefault .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 12px;
  position: relative;
}
.rsDefault .rsTab {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: auto;
  width: auto;
  color: #333;
  padding: 5px 13px 6px;
  min-width: 72px;
  border: 1px solid #D9D9DD;
  border-right: 1px solid #f5f5f5;
  text-decoration: none;
  background-color: #FFF;
  background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  *display: inline;
  *zoom: 1;
}
.rsDefault .rsTab:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.rsDefault .rsTab:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #cfcfcf;
}
.rsDefault .rsTab:active {
  border: 1px solid #D9D9DD;
  background-color: #f4f4f4;
  -webkit-box-shadow: 0 1px 4px rgba(0,  0,  0,  0.2) inset;
  box-shadow: 0 1px 4px rgba(0,  0,  0,  0.2) inset;
}
.rsDefault .rsTab.rsNavSelected {
  color: white;
  border: 1px solid #999;
  text-shadow: 1px 1px #838383;
  -webkit-box-shadow: 0 1px 9px rgba(102,  102,  102,  0.65) inset;
  box-shadow: 0 1px 9px rgba(102,  102,  102,  0.65) inset;
  background: #ACACAC;
  background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
  background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
  background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}
/*****************  5. Fullscreen button*****************/
.rsDefault .rsFullscreenBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 22;
  display: block;
  position: absolute;
  cursor: pointer;
}
.rsDefault .rsFullscreenIcn {
  display: block;
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url('../img/rs-default.png') 0 0;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color:  #000;
  border-radius: 2px;
}
.rsDefault .rsFullscreenIcn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.rsDefault.rsFullscreen .rsFullscreenIcn {
  background-position: -32px 0;
}
/*****************  6. Play/close video button*****************/.rsDefault .rsPlayBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  cursor: pointer;
}
.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: url(../img/rs-default.png) no-repeat 0 -32px;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  *background-color:  #000;
}
.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
  background-color: rgba(0, 0, 0, 0.9);
}
.rsDefault .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
}
.rsDefault .rsCloseVideoBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 500;
  position: absolute;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}
.rsDefault .rsCloseVideoBtn.rsiOSBtn {
  top: -38px;
  right: -6px;/*top:  -6px;
  right:  -38px;
  */
}
.rsDefault .rsCloseVideoIcn {
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url('../img/rs-default.png') -64px 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}
.rsDefault .rsCloseVideoIcn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
/*****************  7. Preloader*****************/
.rsDefault .rsPreloader {
  width: 20px;
  height: 20px;
  background-image: url(../img/preloader.gif);
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
/***** E ADDED *****/
.ajax-form-msg {
  /*    text-align:  center;
  margin:  10px 10px 0px 10px;
  padding:  8px 10px 8px 10px;
  */}
.ajax-form-msg p {
  margin: 0px;
}
.box-form.box-ajax-form .control-group {
  /*margin-bottom:  6px;
  */}
.box-form.box-ajax-form .error {
  background-color: transparent;
  padding: 0px;
  margin: 0px 0px 10px 0px;
}
.box-ajax-form .help-inline {
  display: inline;
  padding-left: 0px;
  vertical-align: auto;
}
.input-recaptcha, .text .registration .input-recaptcha {
  height: 30px;
}
#profilePageLoader {
  background: url(../img/image_400018.gif) no-repeat center center transparent;
  opacity: 0.9;
  width: 56px;
  height: 56px;
  float: right;
  margin-top: -86px;
  display: block;
  margin-right: 49%;
}
#ajaxProfilRespons {
  overflow: hidden;
}
.ajax-form-msg .ajax-form-msg-close {
  right: -21px;
  top: -2px;
  line-height: 20px;
  position: relative;
  color: #000000;
  float: right;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.2;
  text-shadow: 0 1px 0 #FFFFFF;
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  cursor: pointer;
  padding: 0;
}



/* iCheck plugin Flat skin, red
----------------------------------- */
.icheckbox_flat-red,
.iradio_flat-red {
  display: block;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  background: url(../img/red.png) no-repeat;
  border: none;
  cursor: pointer;
}

.iradio_flat-red {
  background-position: 0 0;
  float: left;
  margin-top: 15px;
  margin-right: 15px;
  margin-left: 10px;
}
.iradio_flat-red.checked {
  background-position: -22px 0;
}
.iradio_flat-red.disabled {
  background-position: -44px 0;
  cursor: default;
}
.iradio_flat-red.checked.disabled {
  background-position: -66px 0;
}

.footer .social-links {
  display: inline-block;
  width: 103px;
  float: left;
}

.footer .social-links i {
  height: 44px;
  width: 44px;
  text-align: center;
  line-height: 44px;
  display: inline-block;
  font-size: 26px;
  position: absolute;
  top: 0;
  left: 0;
}

.footer .social-links a {
  display: inline-block;
  line-height: 44px;
  position: relative;
  padding: 0 0 0 44px;
  margin: 0;
}

.footer .social-links a:hover i.fa-instagram {
 background: #cd486b;
 color: #FFF;
 border-radius: 10px;
 transition: all ease-in 300ms;
 -moz-transition: all ease-in 300ms;
 -ms-transition: all ease-in 300ms;
 -o-transition: all ease-in 300ms;
 -webkit-transition: all ease-in 300ms;
}

.footer .social-links a i.fa-facebook { background: none; color:#fff; font-size: 22px;}
.footer .social-links a:hover i.fa-facebook { background: #3b5998; color: #FFF; border-radius: 10px; transition: all ease-in 300ms; -moz-transition: all ease-in 300ms; -ms-transition: all ease-in 300ms; -o-transition: all ease-in 300ms; -webkit-transition: all ease-in 300ms;}
.footer .social-links a i.fa-twitter { background: #fff; color: #55ACEE; }
.footer .social-links a:hover i.fa-twitter { background: #55ACEE; color: #FFF; transition: all ease-in 300ms; -moz-transition: all ease-in 300ms; -ms-transition: all ease-in 300ms; -o-transition: all ease-in 300ms; -webkit-transition: all ease-in 300ms;}

.uniqa {
    border-top: 1px solid #0066B3;
    border-bottom: 1px solid #0066B3;
    /*padding-top: 45px;*/
    padding-bottom: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
}


.uniqa__main-content {
    padding-top: 45px;
}

/*--- Uniqa Custom Checkbox ---*/

.custom-checkbox--uniqa {
    position: relative;
}

.custom-checkbox--uniqa input[type="checkbox"] {
    position: relative;
    margin-top: 0;
}

.custom-checkbox--uniqa input[type="checkbox"]::after {
    content: "";
    display: block;
    height: 30px;
    width: 30px;
    background: #fff;
    border: 1px solid #0066B3;
    position: absolute;
    /*left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
    transition: 0.15s ease;
    box-sizing: border-box;
}

.custom-checkbox--uniqa input[type="checkbox"]::before {
    width: 6px;
    height: 10px;
    border: 1px solid #fff;
    border-top: 0;
    border-left: 0;
    content: '';
    display: block;
    margin: -1px 0 0 0px;
    position: absolute;
    /*top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);*/
    transform: rotate(45deg) scale(1);
    z-index: 1;
    left: 12px;
    top: 9px;
}

.custom-checkbox--uniqa input[type="checkbox"]:checked::before {
    border-color: #0066B3
}

.custom-checkbox--uniqa__text {
    width: 190px;
    position: absolute;
    left: 40px;
    top: 11px;
    font-size: 14px;
    color: dimgrey;
}

/*------------------------------------------------------------------*/

/*--- Custom checkbox - toggle switch ---*/

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    display:none;
}

.toggle-switch__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3f1a64;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 5px;
}

.toggle-switch__slider::before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    border-radius: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .toggle-switch__slider {
    background-color: #0066B3;
}

input:focus + .toggle-switch__slider {
    box-shadow: 0 0 1px #0066B3;
}

input:checked + .toggle-switch__slider::before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.toggle-switch--uniqa {
    margin-top: 8px;
}

.toggle-switch__text-uniqa {
    width: 190px;
    position: absolute;
    left: 65px;
    top: -2px;
    font-size: 14px;
    color: dimgrey;
}

/*------------------------------------------------------------------*/

.uniqa-warning {
    padding-top: 15px;
    float: none !important;
    margin-left: 0 !important;
    padding-left: 65px;
}

.uniqa-warning__text {
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px !important;
}

/* "Zelite li kupovati na rate?" block */
.kupovina--style-2 {
    padding-left: 65px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.kupovina--float-none {
    float: none;
}

.kupovina-input {
    max-width: 90%;
}

.kupovina-input-number {
    min-width: 30px;
}

.kupovina-djeca-osiguranje {
    margin-top: 35px;
    padding-left: 35px;
    display:none;
}

@media screen and (min-width: 767px) {
  .download-mobile-app .main-text {
    font-size: 18px;
  }

  .download-mobile-app .main-text .mobile-app-badge {
    max-width: 150px;
  }

  .uniqa-container {
    padding-left: 65px;
  }

  .toggle-switch--uniqa {
    left: -6px;
  }
}

@media screen and (min-width: 992px) {
  body {
    margin-top: 0;
  }

  .download-mobile-app,
  .download-mobile-app--dim {
    display: none;
  }
}

/*@media screen and (max-width: 768px) {
 ins.iCheck-helper {
   left: 100% !important;
 }
}*/

.offers .thumbnail {
  height: 240px;
  padding: 0px;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.offer-box h3 a {
  color: rgb(43, 43, 43);
}

.offer-box h3:hover > a {
  text-decoration: none;
}
.offer h2 i {
  font-size: 17px;
  color: #FF9900;
}

.navbar .nav {
  position: relative;
  left: 0;
  display: block;

}

.travel-filter {
  width: 100%;
  background-color: #3A1E53;
  /*border-radius: 10px;*/
  /*margin-bottom: 15px;*/
}

#search_vacation {
  color: #4e217b;
  background: white;
  box-shadow: none;
  border: 0;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #fff;
  padding: 0.35em 1.1em;
  border-radius: 3px;
  border-radius: 7px;

}
}

.offerpage .gal. rsContainer .rsImg{
  visibility: visible;
  opacity: 1;
  transition: opacity 400ms ease-in-out 0s;
  width: 99.4%;
  height: 100%;
  /* margin-left: 28px; */
  /* margin-top: 6px; */
}

.travel-filter {
  display: flex;
  width: 100%;
  background-color: #3A1E53;
  justify-content: center;
}

.inner-travel {
  height: 80px;2
  width: 90%;
  margin: auto;
}
.travel-filter ul {
  /*width: 100%;*/
  padding: 0px;
  margin: 0px;
}

@media (max-width: 667px) and (min-width: 320px) {

  .btn-open-offer-availability-modal {
    background-image: none;
    background-color: #FF7F00;
    background-repeat: no-repeat;
    display: block;
    height: 45px!important;
    width: fit-content;
    font-family: Yanone, Arial, Helvetica, sans-serif;
    font-size: 23px;
    line-height: 42px!important;
    color: #FFF;
    text-decoration: none;
    padding-right: 0;
    margin-bottom: 0px;
    text-align: center;
    background-position: right 0px;
    border-radius: 10px;
    padding: 0 10px;
  
  }

    .btn-no-price-offer-availability-modal {
        max-width: unset!important;
        width: 100%!important;
        margin-left: 0px;

    }
    .btn-no-price-multioffer-offer-availability-modal {
        width: 100%!important;
        max-width: unset!important;
        display: flex;
        justify-content: center;
    }

.top-box .actionbox {
  padding-top: 8px;
  display: flex;
}

.top-box .actionbox .buy-box {
  flex: 1;
}

.top-box .pricebox .pricedisc {
  white-space: nowrap;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  float: left;
  16px: ;
  margin-bottom: 0px;
  /* margin-left: 0px; */
  padding: 6px 4px!important;
  background: #f1f1f1;
  border-radius: 10px;
  margin-left: 10px;
}

.top-box .pricebox .pricedisc span {
  color: #FF7F00;
  /* display: inline-grid; */
  white-space: nowrap;
  /* font-size: 13px; */
}

.top-box .actionbox .pricebox {
  overflow: hidden;
  display: inline;
  display: inline;
  line-height: 38px!important;
  display: flex;
  justify-content: space-between;
  flex: 2;
  height: 46px;
  padding: 0 8px;
}

.top-box .actionbox .pricebox .price {
  padding: 0 10px!important;
  margin-left:0px;
  flex: none;
}

.offer-box .price {
  display: flex;
  line-height: 51px;
}

.offer-box .pricebox {
  margin: 0px;
  float: none;
  padding: 0px 15px!important;
  line-height: 44px;
  height: auto;
  color: black;
  font-size: 20px;
  background-color: #EEEEEE!important;
  border-radius: 10px;
  margin-right: 0px;
  /* margin-left: 10px; */
  margin-left: 10px;
}
.offer-box .price {
  padding-left: 0!important;
}
.offer-box .price span {
  padding-bottom: 0!important;
}

.filter-details {
  width: auto;
  margin: 0px;
  padding: 0px;
  margin-top: -18px;
  display: block!important;
}

.filter-details li {
  display: block!important;
}

#putovanja-offer-box .offer-details li {
  font-size: 13px;
}

.offerpage .actionbox {
  min-height: 50px;
  overflow: hidden;
  padding-top: 0px;
  margin-top: 0px!important;
}

.motitle {
  margin-top: 20px!important;
  display: block;
  font-size: 16px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  color: #666666;
  font-weight: normal!important;

}
#putovanja-offer-box .pricebox {
  overflow: hidden;
  display: inline;
  vertical-align: middle;
  margin-top: 10px!important;
  display: inline;
  /* margin-left: 10px; */
  line-height: 19px;
  width: 26%;
}
.mosub {
  margin-top: 20px!important;
  display: block;
  font-size: 16px;
  font-weight: bold;
  font-family: Yanone, Arial, Helvetica, sans-serif;

}

.top-box h1 {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 26px!important;
  font-weight: 700;
  line-height: 24px!important;
  padding: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
}

#top3slider {
  min-height: 460px!important;
  height: auto!important;
}
.pricebox {
  overflow: hidden;
  display: inline;
  vertical-align: middle;
  /* margin-top: 10px!important; */
  display: inline;
  /* margin-left: 10px; */
  line-height: 46px;
  /* width: 50%; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.top-offer .span11 {
  height: 210px!important;
}

#top3slider .span5 {
  height: 250px!important;
}

.actionbox .buy-box {
  display: inline-block!important;
  vertical-align: middle;
  width: 100%;
  margin-top: 5px;
  display: flex!important;
}

.top-box .pricebox .price {
  margin: 0px;
  float: none;
  padding: 5px 10;
  line-height: 44px;
  height: auto;
  font-size: 20px;
  background-color: #EEEEEE;
  padding: 10px 57px;
  border-radius: 10px;
  margin-left: 0;
  margin-right: 0px;
  display: inline;
  margin-left: 10px;
}

.top-box .btn-buy {
  margin-left: 10px!important;
}
.top-box .pricebox .pricedisc {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  float: left;
  /* margin-top: 0px; */
  /* margin-right: 0px; */
  margin-bottom: 0px;
  /* margin-left: 0px; */
  padding: 6px 47px;
  background: #f1f1f1;
  border-radius: 10px;
  margin-left: 10px;
}

.top-box .btn-buy {
  margin-bottom: 2px;
  margin-left: 0;
  float: left;
  margin-right: 9px;
  width: 45%;
}
.navbar .nav {
  margin: 0px 0px 0 0!important;
}
.navbar-main .dropdown-menu {
  margin-top: 20px!important;
}
.navbar-main .navbar-inner .nav li a {
  border-bottom: 1px solid rgba(0,0,0,.1)!important;
  padding: 8px 16px;
  border: none;
  color: #222!important;
}
.navbar-main .bars-right .ostali li a {
  border-bottom: none!important;
}
.inner-travel {
 /*height: 120px;*/
width: 100%!important;
margin: auto;
}

.filter-details .persons-box {
  /* width: 100%!important; */
  /* text-align: left!important; */
  display: block !important;
  text-align: left !important;
}

.filter-details textarea, input[type="text"],input[type="number"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  /*max-width: 50px;*/
  width: 100%;
}

.kupovina-input {
	max-width: 100px !important;
}

.list-cats li a:hover {
  color: white;
}
.list-cats li a.active {
  color: #ff7f00;
}
.filter-details li {
  /* display: block!important; */
  /* max-width: 100%!important; */
  display: block !important;
  margin-top: 20px!important;
}

.support {
  position: fixed;
  min-width: 100%;
  top: 49px;
  height: 21px;
  width: 110%;
}

.visible-phone {
  margin-left: 30px!important;
}

.visible-phone li:first-child {
  margin-left: -33px!important;
}

.visible-phone li {
  margin-left: 0px;
  margin-top: 10px;
  font-size: 14px;
}

.navbar .nav .btn-highlight:fisrt-child {
  margin-left: 50px!important;
}

.navbar .nav .btn-highlight {
  margin-left: 0px!important;
}

.footer .social-links {
  display: inline-block;
  width: 103px;
  float: left;
  margin-top: 12px;
}
.pricebox .price {
  margin: 0px;
  float: none;
  padding: 5px 10;
  line-height: 44px;
  height: auto;
  font-size: 20px;
  background-color: #EEEEEE;
  /* padding: 10px 37px; */
  border-radius: 10px;
  margin-left: 0;
  margin-right: 6px;
  flex: 1;
  text-align: center;
}

.navbar .nav .btn-highlight {
  color: #FFF;
  background-color: #3f1a64;
  text-shadow: -1px -1px 0px rgba(0,0,0,.25);
  background-image: url(../img/icon-myecoupon.png);
  background-repeat: no-repeat;
  background-position: 10px 13px;
  padding-left: 32px;
  border-radius: 10px;
  margin-left: 30px;
}
.offer-box h2 {
  padding: 6px;
}

.offer-box .price {
  padding-left: 18px;
}
.offercont .offerpage .thumbnail .instant {
  position: absolute;
  bottom: 0px;
  height: 40px;
  width: 100%;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 40px;
  background-color: #FF7F00;
  text-align: center;
  background-image: none;
  color: #fff;
  max-width: 90%!important;
  margin-left: 167px!important;
  bottom: 262px!important;
  left: -146px;
}
.travel-filter ul {
  width: 100%;
  padding: 0px;
  margin: 0px;
  padding-left: 20px;
}
.list-cats li a {
  display: block;
  padding: 0 7px;
  font-size: 17px;
  color: #fff;
  position: relative;
  top: 2px;
  text-decoration: none;
  transition: .2s all;
  z-index: 7;
}


.list-cats li a:first-child {
  margin-left: 1px;
}
.travel-filter ul li {
  /* display: inline-block; */
  /* max-width: 100px; */
  /* padding-left: 5px!important; */
  /* padding-top: 10px; */
  /* width: unset !important; */
  /* text-align: left !important; */
  /* margin-top: 10px; */
}
.inner-travel {
  /*height: 120px;*/
  height: unset;
  width: 1200px;
  margin: auto;
  /* padding-left: 10px; */
}
.travel-filter {
  height: 275px;
  width: 100%;
  /*background-color: #FF7F00;*/
  border-radius: 10px;
  /*margin-bottom: 15px;*/
}
#search_vacation {
  color: #023654;
  background: white;
  box-shadow: none;
  border: 0;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 15px;
  color: #fff;
  padding: 0.35em 1.1em;
  border-radius: 3px;
  border-radius: 7px;
  /*float: right;*/
  /*position: absolute;*/
  /*bottom: -112px;*/
  /*right: 20px;*/
}

.actionbox .btn-buy {
  margin-bottom: 2px;
  margin-left: 0;
  float: left;
  flex: 2!important;
}

.btn-buy {
background-image: none;
background-color: #FF7F00;
background-repeat: no-repeat;
display: block;
height: 45px;
/* width: 62px; */
margin-right: auto;
margin-left: auto;
font-family: Yanone, Arial, Helvetica, sans-serif;
font-size: 20px;
line-height: 47px;
color: #FFF;
text-decoration: none;
padding-right: 0;
margin-bottom: 8px;
text-align: center;
background-position: right 0px;
border-radius: 10px;
}

.actionbox .btn-more {
  background-color: #444;
  color: #fff;
  display: inline;
  position: relative;
  border-radius: 10px;
  /* margin-top: 10px!important; */
  line-height: 36px;
  padding: 9px 5px!important;
  flex: 2;
  font-weight: 100;
  font-size: 24px;
  height: 27px!important;
  text-align: center;
}
.btn-more {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #FFF;
  padding: 0 4px;
}
.pricebox .pricedisc {
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  float: right;
  /* margin-top: 0px; */
  /* margin-right: 0px; */
  margin-bottom: 0px;
  /* margin-left: 0px; */
  /* padding: 6px 47px; */
  background: #f1f1f1;
  border-radius: 10px;
  margin-left: 0;
  flex: 1;
  text-align: center;
}
.offer-details li {
  font-size: 13px;
}
}

.actionbox .btn-gift:after {
  content: "";
  display: none;
  position: absolute;
  right: -9px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-left: 9px solid #444;
  border-bottom: 18px solid transparent;
}




.list-cats {
  display: block;
  /*clear: both;*/
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  position: relative;
  /*top: 5px;*/
  color: #fff;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  z-index: 2;
}

.list-cats__areaItems-container {
  display: flex;
  align-items: center;
  vertical-align: top;
  flex-wrap: wrap;
}

.menu-filter__date-filter-container {
  /* top: 6px; */
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  /* clear: none; */
  width: 100%;
  /* flex: 1 1 auto; */
}
@media (max-width: 667px) and (min-width: 320px) {
  .menu-filter__date-filter-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 40px; */
    padding-top: 0px;
    padding-left: 0px;
    box-sizing: border-box;
  }
}


.travel-filter ul {
  width: 90%;
  padding: 0px;
  margin: 0px;
  display: flex;
  /*margin-top: 8px;*/
}

.filter-details input[type="text"] {
  margin-bottom: 0px !important;
}

.filter-details {
  margin: 0px;
  padding: 0px;
  display: flex !important;
  justify-content: space-between;
}

.filter-details .svg-icons {
  height: 23px;
  width: 26px;
  margin-right: 4px;
}
.filter-details .persons-box {
    display: flex;
    text-align: center;
    align-items: center;
}

.filter-details .date-box {
  display: flex;
  align-items: center;
}

.filter-details #person_count {
  display: inline-block;
  width: 50px;
  margin-right: 10px;
  margin-bottom: 0px;
}
#search_vacation:hover {
  background-color: #FF7F00;
  color: #fff!important;
  font-weight: bold;
}

#search_vacation {
  color: #023654!important;
  background: white;
  box-shadow: none;
  font-weight: bold;
  border: 0;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 15px;
  color: #fff;
  padding: 0.35em 1.1em;
  border-radius: 3px;
  border-radius: 7px;
}

#person_count {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: none !important;
  text-align: center;
  color: #fff !important;
}

.filter-details #children_count {
  display: inline-block;
  width: 50px!important;
  margin-bottom: 0px;
}

#children_count {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: none !important;
  text-align: center;
  color: #fff !important;
}
.filter-details li {
  display: flex;
  list-style: none!important;
  margin: 0px;
  padding: 0px;
  align-self: center;
}
.travel-filter ul li {
  /* width: auto; */
  /* flex: 2 2 auto; */
  /* align-items: center; */
}

.offer-box {
  background-color: #FFF;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
  width: 31.8%;
  float: left;
  margin-left: 1.5%;
  margin-bottom: 20px;
  min-height: 439px;
  border-radius: 10px;
}

.offer-box h3 {
  font-size: 24.5px;
  height: 80px;
  overflow: hidden;
  padding: 0 10px 10px 10px;
  line-height: 31px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.offer-details {
  display: block;
  width: 97.1%;
  height: 57px;
  margin: 0px;
  padding: 0px;
  padding-left: 10px;
  margin-top: 0px;
  background-color: #ebe8ebcc;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0,0,0,0.29);
  -moz-box-shadow: inset 0px 1px 5px 0px rgba(0,0,0,0.29);
  box-shadow: inset 0px 1px 5px 0px rgba(0,0,0,0.29);
}

.offer-details li {
  display: inline-block;
  list-style: none;
  width: fit-content;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 6px;
  margin-top: 2px;
  width: fit-content;
  text-align: center;
  margin-bottom: 5px;
}

.offer-details li:first-child {
  padding-left: 0px;
}

.offer-details .pricebox {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #ff9900!important;
  border: none;
  font-size: 16px;
  padding: 8px;
  font-family: 'Encode Sans Condensed', sans-serif;
  border-radius: 10px;
}
.rating-container .filled-stars {
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  color: #ff7f00!important;
  white-space: nowrap;
  overflow: hidden;
}


.offer-box.empty span {
  color: darkviolet;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  font-size: large;
}

.actionbox .buy-box {
  display: flex;
  justify-content: flex-start;
  max-width: 100%;
}

.fa-bars#dropdownMenuButton {
  min-height: 30px;
  width: 30px;
  padding: 8px;
  margin-top: 6px;
  padding-right: 22px;
}


.bars-right {
  height: 42px;
}


.odjavaBtn {
  width: fit-content;
  border-radius: 4px;
  background-color: #4E217B;
  border: none;
  color: white;
  margin-top: -12px;
  margin-left: 10px;
}

.odjavaBtn .fas {
  display: inline;
  margin-right: 5px;
}

.odjavaBtn label {
  display: inline;
  font-size: 11px; 
  font-weight: bold;
}

.search-icon-mobile {
  display: block;
  width: 50px;
  height: 41px;
  background-color: #FF7F00;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: fixed;
  right: 0px;
  top: 167px!important;
  text-align: center;
  z-index: 100;
  -moz-transition: top 0.7s;
  -o-transition: top 0.7s;
  -webkit-transition: top 0.7s;
  transition: top 0.7s;
}

.mobile-header {
  position: fixed;
  height: 49px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 509;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.4);
box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.4);
display: flex;
}


.mobile-header .btn-mobilemenu {
  display: inline-block;
  width: 33.33%;
  height: 49px;
  background-color: #FF7F00;
  position: unset;
  top: 0px;
  text-align: center;
  z-index: 100;
  -moz-transition: top 0.7s;
  -o-transition: top 0.7s;
  -webkit-transition: top 0.7s;
  transition: top 0.7s;
  border-radius: 0px!important;
}

.mobile-header .search-icon {
  display: inline-block;
  width: 33.05%;
  height: 49px;
  background-color: #FF7F00;
  position: unset;
  top: 0px;
  text-align: center;
  z-index: 100;
  -moz-transition: top 0.7s;
  -o-transition: top 0.7s;
  -webkit-transition: top 0.7s;
  border-radius: 0px!important;
  transition: top 0.7s;
  border-right: 1px solid rgb(194, 98, 3);
  flex: 1;
  }

.mobile-header .profil {
  display: inline-block;
  width: 33%;
  height: 49px;
  background-color: #FF7F00;
  position: unset;
  top: 0px;
  text-align: center;
  z-index: 100;
  -moz-transition: top 0.7s;
  -o-transition: top 0.7s;
  -webkit-transition: top 0.7s;
  transition: top 0.7s;
  line-height: 50px;
  border-radius: 0px!important;
  color: white;
  border-right: 1px solid rgb(194, 98, 3);
}

.mobile-header .profil .fas {
  color: white;
  font-size: 17px;
}


.btn-mobilemenu.closeMobileMenu span:first-child {
  transform: translate(1px, 7px) rotate(45deg);
  margin-top: 9px;
  width: 22px;
  background: white;
}

.btn-mobilemenu.closeMobileMenu span:nth-child(even) {
  transform: translate(1px, -1px) rotate(-45deg);
  width: 22px;
  background: white;
}

.btn-mobilemenu.closeMobileMenu span:last-child {
  display: none;
}

#putovanja-offer-box h2 {
  height: 70px!important;
}

.motitle {
  margin-top: 20px!important;
  display: block;
  font-size: 16px;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  color: #666666;
  font-weight: normal!important;

}

.mosub {
  margin-top: 20px!important;
  display: block;
  font-size: 16px;
  font-weight: bold;
  font-family: Yanone, Arial, Helvetica, sans-serif;

}

.howblock.giftBlock strong {
  padding-top: 10px;
  display: block;
}

@media (max-width: 667px) and (min-width: 320px) { 
  .filter-details {
    width: auto;
    margin: 0px;
    padding: 0px;
    margin-top: -18px;
    display: block!important;
}
.filter-details li {
  display: block!important;
}
.travel-filter .list-cats {
/*  margin-bottom: 20px;*/
/*}*/
.list-cats li:first-child {
  margin-left: 10px;
}
#search_vacation {
  color: #023654;
  background: white;
  box-shadow: none;
  border: 0;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 15px;
  color: #fff;
  padding: 0.35em 1.1em;
  border-radius: 3px;
  border-radius: 7px;
  position: relative!important;
  bottom: 0!important;
  right: 0!important;
  float: left;
  margin: 0px!important;
}
}

.datepicker,
.table-condensed {
    width: 254px;
    font-size: large; 	
}

.btn-open-offer-availability-modal {
  background-image: none;
  background-color: #FF7F00;
  background-repeat: no-repeat;
  display: flex;
  height: 38px;
  width: fit-content;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 37px;
  color: #FFF;
  padding-right: 0;
  margin-bottom: 8px;
  text-align: center;
  background-position: right 0px;
  border-radius: 10px;
  padding: 0 10px;
  max-width: 200px;
  min-width: fit-content;
  text-transform: uppercase;
  text-decoration: none !important;
}

.btn-open-offer-availability-modal:hover {
  color: #fff;
  background-color: rgb(218, 110, 2);
} 

.row-fluid.offerblock.offer .actionbox .buy-box {
	display: flex;
	justify-content: flex-start;
}

.row-fluid.offerblock.offer .actionbox .buy-box .btn-buy {
	margin-left: 0!important;
	margin-right: 5px !important;
}

.row-fluid.offerblock.offer .actionbox .buy-box .btn-more {
	height: 27px !important;
	line-height: 30px !important;
	margin-right: 6px;
}

.row-fluid.offerblock .actionbox .buy-box .btn-more {
  height: 27px !important;
  line-height: 28px !important;
  margin-right: 6px;
  font-weight: 100;
  font-size: 22px;
}



.actionbox.multioffer .buy-box {
	display: flex;
	justify-content: flex-start;
}

..actionbox.multioffer .buy-box .btn-buy {
	margin-left: 0!important;
	margin-right: 5px !important;
}

..actionbox.multioffer .buy-box .btn-more {
	height: 27px !important;
	line-height: 30px !important;
	margin-right: 6px;
}

.actionbox.multioffer .buy-box .btn-more {
	height: 27px !important;
	line-height: 30px !important;
	margin-right: 6px;
}

.actionbox.multioffer .btn-buy {
  margin-left: 0px!important;
}



.actionbox .btn-more {
  background-color: #444;
  color: #fff;
  display: flex !important;
  padding: 5px 10px;
  position: relative;
  border-radius: 10px;
  height: 27px!important;
  line-height: 30px !important;
}

.btn-buy {
  background-image: none;
  background-color: #FF7F00;
  background-repeat: no-repeat;
  display: block;
  height: 38px;
  width: 73px;
  margin-right: auto;
  margin-left: 0 !important;
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 37px;
  color: #FFF;
  text-decoration: none;
  padding-right: 0;
  margin-bottom: 8px;
  text-align: center;
  background-position: right 0px;
  border-radius: 10px;
}

.actionbox .btn-buy {
  margin-bottom: 2px;
  margin-left: 10px !important;
  float: left;
  margin-right: 5px;
}

@media (max-width: 667px) and (min-width: 320px) {
  .row-fluid.offerblock.offer .actionbox .buy-box .btn-more {
    font-size: 17px !important;
    line-height: 27px !important;
    justify-content: center;
  }

  .btn-buy {
    height: 45px !important;
    font-size: 17px !important;
    line-height: 48px !important;
  }

  .btn-open-offer-availability-modal {
    font-size: 17px !important;
  }

  .row-fluid.offerblock .actionbox.multioffer .buy-box .btn-more {
    height: 27px !important;
    line-height: 27px !important;
    margin-right: 6px;
    font-size: 17px;
    justify-content: center; 
}
.actionbox.multioffer .btn-open-offer-availability-modal {
  font-size: 17px !important;
  line-height: 45px !important;
}
.modal-body .user_info_wrapper .control-group input {
  min-width: 90%;
}
}

.smartbanner.smartbanner--android {
  position: fixed;
  z-index: 10000;
}


.ui-datepicker-trigger{cursor:pointer}
.day:hover{cursor:pointer}

