/*
 Theme Name:   Easy Booker Child
 Theme URI:    https://mojtop.it/
 Description:  Easy Booker Child Theme
 Author:       Easy Booker
 Author URI:   https://mojtop.it/
 Template:     easybooker
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, right-sidebar, responsive-layout
 Text Domain:  easybooker-child

 START YOUR CHILD THEME CSS HERE
*/
.container {
  position: relative;
  overflow: hidden;
}

.container .slides {
  position: relative;
  height: 450px;
  margin-top: 0;
}

.container .slides .slide {
  position: absolute;
  height: 450px;
  width: 100%;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-display: flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  letter-spacing: 3px;
}

.container .slides .slide::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.container .slides .slide .captions {
  position: relative;
  z-index: 99;
  text-align: center;
  color: #fff;
  font-size: 18px;
  max-width: 70%;
  text-shadow: 1px 1px #000;
  font-family: "DM Sans", sans-serif;
}

.container .slides .slide .captions a {
  margin-top: 15px;
  display: inline-block;
  background-color: #1e73be;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  padding: 15px 25px;
  transition: all 0.2s linear;
  text-shadow: none;
}
.container .slides .slide .captions a:hover {
  background-color: #fff;
  color: #000;
}

.container .slides .slide:nth-child(1) {
  -webkit-animation: slide1 55s linear infinite;
  animation: slide1 55s linear infinite;
}
.container .slides .slide:nth-child(2) {
  -webkit-animation: slide2 55s linear infinite;
  animation: slide2 55s linear infinite;
}

.container .slides .slide:nth-child(3) {
  -webkit-animation: slide3 55s linear infinite;
  animation: slide3 55s linear infinite;
}
.container .slides .slide:nth-child(4) {
  -webkit-animation: slide4 55s linear infinite;
  animation: slide4 55s linear infinite;
}
.container .slides .slide:nth-child(5) {
  -webkit-animation: slide5 55s linear infinite;
  animation: slide5 55s linear infinite;
}

@keyframes slide1 {
  12% {
    opacity: 1;
    z-index: 1;
  }
  16% {
    opacity: 0;
    z-index: 0;
  }
  17% {
    opacity: 0;
    z-index: 0;
  }
  87% {
    opacity: 0;
    z-index: 0;
  }
  92% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    z-index: 1;
    opacity: 1;
  }
}
@keyframes slide2 {
  0% {
    opacity: 0;
    z-index: 0;
  }
  12% {
    opacity: 0;
    z-index: 0;
  }
  16% {
    opacity: 1;
    z-index: 1;
  }
  20% {
    opacity: 1;
    z-index: 1;
  }
  32% {
    opacity: 1;
    z-index: 1;
  }
  36% {
    opacity: 0;
    z-index: 0;
  }
  37% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
@keyframes slide3 {
  0% {
    opacity: 0;
    z-index: 0;
  }
  32% {
    opacity: 0;
    z-index: 0;
  }
  36% {
    opacity: 1;
    z-index: 1;
  }
  40% {
    opacity: 1;
    z-index: 1;
  }
  52% {
    opacity: 1;
    z-index: 1;
  }
  56% {
    opacity: 0;
    z-index: 0;
  }
  57% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
@keyframes slide4 {
  0% {
    opacity: 0;
    z-index: 0;
  }
  52% {
    opacity: 0;
    z-index: 0;
  }
  56% {
    opacity: 1;
    z-index: 1;
  }
  60% {
    opacity: 1;
    z-index: 1;
  }
  72% {
    opacity: 1;
    z-index: 1;
  }
  76% {
    opacity: 0;
    z-index: 0;
  }
  77% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
@keyframes slide5 {
  0% {
    opacity: 0;
    z-index: 0;
  }
  72% {
    opacity: 0;
    z-index: 0;
  }
  76% {
    opacity: 1;
    z-index: 1;
  }
  80% {
    opacity: 1;
    z-index: 1;
  }
  92% {
    opacity: 1;
    z-index: 1;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 1px;
  background: #ff6600;
  -webkit-animation: processbar 25s ease infinite;
  animation: processbar 25s ease infinite;
}

@keyframes processbar {
  0%,
  16%,
  36%,
  56%,
  76%,
  100% {
    width: 0%;
    opacity: 0;
  }
  0%,
  20%,
  40%,
  60%,
  80% {
    width: 0%;
    opacity: 0.4;
  }
  12%,
  32%,
  52%,
  72%,
  92% {
    width: 100%;
    opacity: 1;
  }
  13%,
  33%,
  53%,
  73%,
  93% {
    width: 100%;
    opacity: 0.4;
  }
  14%,
  34%,
  54%,
  74%,
  94% {
    width: 100%;
    opacity: 0;
  }
}

@media only screen and (max-width: 768px) {
  .container .slides .slide .captions {
    max-width: 90%;
  }
}
.gdlr-core-item-pdb {
    padding-bottom: 0!important;
}

.captions h1{
	color: #ffffff;
}

.captions p{
	font-family: "Poppins", sans-serif;
    font-size: 16px;
    display: block;
}

.traveltour-body h1 {
    font-size: 36px!important;
}
.traveltour-body, .traveltour-body span.wpcf7-not-valid-tip {
    color: #222!important;
	font-size: 16px;
}
.gdlr-core-price-table.gdlr-core-active .gdlr-core-price-table-head {
    padding: 33px 20px;
}
.gdlr-core-price-table.gdlr-core-active .gdlr-core-price-table-price {
    padding: 25px 20px 15px;
}
.traveltour-sidebar-area {
    padding-top: 240px!important;
}
.partners-pages {
    font-size: 0;
    border-top: 1px solid #c7c7c7
}

.partners-pages .partner-logo-item {
    position: relative;
    display: inline-block;
    width: 25%;
    height: 250px;
    font-size: inherit;
    border: 1px solid #c7c7c7;
    overflow: hidden
}

.partners-pages .partner-logo-item .partner-badge {
    position: absolute;
    color: #424342;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 20px;
    right: 0;
    top: 10px;
    z-index: 2;
    text-align: center;
    text-transform: uppercase
}

@media screen and (max-width: 1270px) {
    .partners-pages .partner-logo-item {
        height:200px;
        width: 33%
    }
}

@media screen and (max-width: 767px) {
    .partners-pages .partner-logo-item {
        width:50%;
        height: 180px
    }
}

@media screen and (max-width: 480px) {
    .partners-pages .partner-logo-item {
        width:100%;
        height: 150px
    }
}

.partners-pages .partner-logo-item:hover .partner-logo-item-inner {
    transform: scale(.9)
}

.partners-pages .partner-logo-item .partner-logo-item-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    transition: all .3s ease-in-out;
    background-repeat: no-repeat;
    background-position: 50%
}

@media screen and (max-width: 1200px) and (min-width:480px) {
    .partners-pages .partner-logo-item .partner-logo-item-inner {
        background-size:200px
    }
}

@media screen and (max-width: 480px) {
    .partners-pages .partner-logo-item .partner-logo-item-inner {
        background-size:40%
    }
}

.partners-pages .partner-logo-item a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    z-index: 1
}

.partners-pages .partner-logo-item a:hover {
    background: rgba(0,0,0,.03)
}

[hidden][style="display: block;"] {
    display: block!important
}
.traveltour-copyright-wrapper {
    background-color: #101010!important
}
.gdlr-core-price-table-item .gdlr-core-price-table {
    text-align: center;
    margin: 0px 5px;
}
.wpcf7-form-control-wrap {
    border: 1px solid #ccc;
}


@media screen and (max-width: 767px) {
    .captions h1 {
    font-size: 26px !important;
	    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.captions h1 {
	line-height: 1.1!important;
    font-weight: 600!important;
  }
  
  /* *****========= All Keyframes  ===============****** */
@keyframes angle-move {
  0%, 100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}
@keyframes up-down {
  0%, 100% {
    transform: translateY(-20px) translateX(15px);
  }
  50% {
    transform: translateY(0);
  }
}
@keyframes up_down_2 {
  0%, 100% {
    transform: translateY(15px) translateX(15px);
  }
  50% {
    transform: translateY(0);
  }
}
@keyframes up_down_3 {
  0%, 100% {
    transform: translateY(-10px) translateX(1px);
  }
  50% {
    transform: translateY(0);
  }
}
@keyframes zoom {
  0%, 100% {
    transform: scale(0.9) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(30deg);
  }
  80% {
    transform: rotate(-30deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes rotate-rev {
  100% {
    transform: rotateZ(-360deg) translate(-50%, -50%);
  }
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ripple {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes rotate-2 {
  100% {
    transform: rotate(150deg);
  }
}
@keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: alpha(opacity=50);
  }
  80% {
    transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
  100% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
}
@-webkit-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}
@-moz-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  90% {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    -ms-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2);
    -ms-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}
@-webkit-keyframes circle-2 {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle-2 {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.hmls-view-slide .slick-prev, .hmls-view-slide .slick-next {
    height: 20px;
    width: 20px;
}

.gdlr-core-icon-list-icon {
    color: #ea5318;
    font-size: 25px!important;
    width: 25px!important;
}
.wpcf7 .wpcf7-form-control .wpcf7-list-item {
    display: inline!important;
    margin-bottom: 0!important;
}
.wpcf7 .wpcf7-form-control .wpcf7-list-item {
    margin-left: 10px;
}
.wpcf7-radio {
  display: block;
  background: #fff;
  padding: 8px 9px;
  margin-bottom: 18px;
  font-size: 15px;
}
.wpcf7-radio .wpcf7-list-item {
  position: relative;
  margin: 0 20px 0 0;
  padding: 0 0 0 24px;
}
.wpcf7-radio .wpcf7-list-item label {
  margin: 0;
  padding: 0;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  position: absolute;
  left: 0;
  top: 2px;
  background: #000;
  width: 16px;
  height: 16px;
  content: "";
  z-index: 0;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  font: normal normal normal 14px/1 FontAwesome, serif;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 2px;
  font-size: 14px;
  top: 3px;
  z-index: 1;
  color: #fff;
}
.wpcf7-radio input {
  position: absolute;
  visibility: hidden;
}
.wpcf7-radio input:checked + .wpcf7-list-item-label::after {
  content: "\f00c";
}
.adjust {
    margin-left: 20px;
}
span[data-name="radio-782"]{
    border: none;
}
.traveltour-footer-wrapper {
    background-color: #060B1D!important;
}
.traveltour-copyright-wrapper {
    background-color: #ea5318!important;
	color:#ffffff;
}
.traveltour-copyright-container {
    padding-bottom: 18px;
}
.traveltour-copyright-container {
    padding-top: 18px;
}
.gdlr-core-price-table .gdlr-core-price-table-price-number {
    font-size: 80px;
    font-weight: 600;
    margin: 0;
    vertical-align: middle;
}
.gdlr-core-price-table.gdlr-core-active .gdlr-core-price-table-price-number {
    font-size: 80px;
    font-weight: 600;
    margin: 0;
    vertical-align: middle;
}
.gdlr-core-price-table .gdlr-core-price-table-price {
    line-height: 1;
    padding: 25px 20px 15px;
}
.traveltour-page-title-wrap {
    padding: 30px;
}
.gdlr-core-price-table .gdlr-core-price-table-head {
    padding: 38px 20px;
}
.gdlr-core-price-table.gdlr-core-active .gdlr-core-price-table-head {
    padding: 38px 20px;
}
@media screen and (max-width: 767px) {
.gdlr-core-price-table.gdlr-core-active .gdlr-core-price-table-head {
    padding: 43px 20px;
}
}