

/*** New Loader #Start ***/
.loader-main {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(20, 61, 76,0.5);
	z-index: 99999;
	width: 100%;
	height: 100%;
}

#floatingBarsG{
	position:relative;
	width:60px;
	height:75px;
	margin:auto;
	top:50%;
	transform: translateY(-50%);
}

.blockG{
	position:absolute;
	background-color:rgb(223,243,252);
	width:10px;
	height:23px;
	border-radius:8px 8px 0 0;
		-o-border-radius:8px 8px 0 0;
		-ms-border-radius:8px 8px 0 0;
		-webkit-border-radius:8px 8px 0 0;
		-moz-border-radius:8px 8px 0 0;
	transform:scale(0.4);
		-o-transform:scale(0.4);
		-ms-transform:scale(0.4);
		-webkit-transform:scale(0.4);
		-moz-transform:scale(0.4);
	animation-name:fadeG;
		-o-animation-name:fadeG;
		-ms-animation-name:fadeG;
		-webkit-animation-name:fadeG;
		-moz-animation-name:fadeG;
	animation-duration:1.2s;
		-o-animation-duration:1.2s;
		-ms-animation-duration:1.2s;
		-webkit-animation-duration:1.2s;
		-moz-animation-duration:1.2s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
}

#rotateG_01{
	left:0;
	top:27px;
	animation-delay:0.45s;
		-o-animation-delay:0.45s;
		-ms-animation-delay:0.45s;
		-webkit-animation-delay:0.45s;
		-moz-animation-delay:0.45s;
	transform:rotate(-90deg);
		-o-transform:rotate(-90deg);
		-ms-transform:rotate(-90deg);
		-webkit-transform:rotate(-90deg);
		-moz-transform:rotate(-90deg);
}

#rotateG_02{
	left:8px;
	top:10px;
	animation-delay:0.6s;
		-o-animation-delay:0.6s;
		-ms-animation-delay:0.6s;
		-webkit-animation-delay:0.6s;
		-moz-animation-delay:0.6s;
	transform:rotate(-45deg);
		-o-transform:rotate(-45deg);
		-ms-transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		-moz-transform:rotate(-45deg);
}

#rotateG_03{
	left:25px;
	top:3px;
	animation-delay:0.75s;
		-o-animation-delay:0.75s;
		-ms-animation-delay:0.75s;
		-webkit-animation-delay:0.75s;
		-moz-animation-delay:0.75s;
	transform:rotate(0deg);
		-o-transform:rotate(0deg);
		-ms-transform:rotate(0deg);
		-webkit-transform:rotate(0deg);
		-moz-transform:rotate(0deg);
}

#rotateG_04{
	right:8px;
	top:10px;
	animation-delay:0.9s;
		-o-animation-delay:0.9s;
		-ms-animation-delay:0.9s;
		-webkit-animation-delay:0.9s;
		-moz-animation-delay:0.9s;
	transform:rotate(45deg);
		-o-transform:rotate(45deg);
		-ms-transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		-moz-transform:rotate(45deg);
}

#rotateG_05{
	right:0;
	top:27px;
	animation-delay:1.05s;
		-o-animation-delay:1.05s;
		-ms-animation-delay:1.05s;
		-webkit-animation-delay:1.05s;
		-moz-animation-delay:1.05s;
	transform:rotate(90deg);
		-o-transform:rotate(90deg);
		-ms-transform:rotate(90deg);
		-webkit-transform:rotate(90deg);
		-moz-transform:rotate(90deg);
}

#rotateG_06{
	right:8px;
	bottom:7px;
	animation-delay:1.2s;
		-o-animation-delay:1.2s;
		-ms-animation-delay:1.2s;
		-webkit-animation-delay:1.2s;
		-moz-animation-delay:1.2s;
	transform:rotate(135deg);
		-o-transform:rotate(135deg);
		-ms-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		-moz-transform:rotate(135deg);
}

#rotateG_07{
	bottom:0;
	left:25px;
	animation-delay:1.35s;
		-o-animation-delay:1.35s;
		-ms-animation-delay:1.35s;
		-webkit-animation-delay:1.35s;
		-moz-animation-delay:1.35s;
	transform:rotate(180deg);
		-o-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		-webkit-transform:rotate(180deg);
		-moz-transform:rotate(180deg);
}

#rotateG_08{
	left:8px;
	bottom:7px;
	animation-delay:1.5s;
		-o-animation-delay:1.5s;
		-ms-animation-delay:1.5s;
		-webkit-animation-delay:1.5s;
		-moz-animation-delay:1.5s;
	transform:rotate(-135deg);
		-o-transform:rotate(-135deg);
		-ms-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		-moz-transform:rotate(-135deg);
}

@keyframes fadeG{
	0%{
		background-color:rgba(39,98,132,0.98);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-o-keyframes fadeG{
	0%{
		background-color:rgba(39,98,132,0.98);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-ms-keyframes fadeG{
	0%{
		background-color:rgba(39,98,132,0.98);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-webkit-keyframes fadeG{
	0%{
		background-color:rgba(39,98,132,0.98);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-moz-keyframes fadeG{
	0%{
		background-color:rgba(39,98,132,0.98);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}
/*** New Loader End ***/

:root {
	--primary: #276284 !important;
	--muted: #6c757d !important;
}

.text-primary,
.primary-text {
	color: var(--primary) !important;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.mh-auto {
	max-height: none;
}

.step .step-icon {
	color: var(--muted);
}

.step .step-icon-active {
	color: var(--primary);
}

.step-section .step-section-heading {
	color: var(--muted);
}

.step-section .step-section-data {
	display: none;
}

.step-section-active .step-section-heading {
	color: var(--primary);
}

.step-section-active .step-section-data {
	display: block;
}

/** SLICK CUSTOMS **/
/* Arrows */
.slick-prev, .slick-next {
    z-index:9999;
}
.ext-itm-dv.slick-slide {
	margin-left:15px;
}

.img-cart-spn {
	position:relative;
	overflow:hidden;
}

.img-cart-spn .extra-itm-rbn-spn {
	background: #276284;
	color: #dff3fc;
	font-size: 16px;
	position: absolute;
	left: -25px;
	top: 15px;
	transform: rotate(-45deg);
	display: list-item;
	width: 100px;
	text-align: center;
	list-style: none;
	font-weight: bold;

}

.extra-itm-rbn-spn.presnt-cart {
  top: unset;
  bottom: 0;
  transform: unset;
  left: 0;
  width: auto;
  padding: 0 10px;
  border-radius: 0 10px 10px 0;
}

.prsntincrt{
	display:none;
}

.actv-cart{
	display:list-item;
}

.extra-itm-rbn-spn.prsntincrt.actv {
	display:list-item;
}
/** SLICK CUSTOMS END **/

.slick-prev::before, .slick-next::before {
	font-family: 'Material Design Icons';
	font-size: 27px;
	color: #fff;
	background: #333;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 50%;
}

.slick-next::before {
	content: "\F0142";
}

.slick-prev::before {
	content: "\F0141";
}

.minus-btn,.item-number-counter,.plus-btn{
	font-size: 18px;
}

/* card customization */
.card-img-top {
    height: 250px;
    object-fit: cover;
}

.location-card-body {
    /* padding-left: 0; */
    /* padding-right: 0; */
    /* padding-bottom: 0; */
    float: left;
    padding: 5px !important;
}
.location-card-body p:not(.extra-con) {
    font-size: 12px;
    margin: 0;
    text-align: center;
}

.location-card-body ul p,  .location-card-body .extra-con{
    text-align: left !important;
    font-size: 12px;
}

.location-card-body ul{
    margin: 0;
    padding: 0 0 5px;
}

.location-card-body ul p{
	font-family: 'Helvetica Neue';
}

.card-dot-line{
    position: relative;
    border-bottom: #276284 1px dotted;
}

.with-icon::after {
	content: "";
	width: 30px;
	height: 30px;
	background: url("../images/card-loc-icon.png");
	position: absolute;
	display: inline-block;
	left: 45%;
	top: -15px;
	background-position: center center;
	background-size: cover;
}

.card-btn {
	width: 100%;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	background: #276284;
	border: none;
}

.drnks_pkg_wrap {
	display: block; 
	flex-wrap: wrap; 
}

.terms-conditions-dv {
	max-height: 210px;
	overflow: hidden;
	overflow-y: scroll;
	margin-bottom: 12px;
	background: #fff;
	padding: 10px 12px;
	border-radius: 25px;
	scrollbar-width: none;
}

.terms-conditions-dv .tnc-content {
	/*max-height: 150px;
	overflow-y: scroll;
	scrollbar-color: var(--primary) #000;*/
}

.custom-scroll-dv::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #f5f5f5;
}

.custom-scroll-dv::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}

.custom-scroll-dv::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--primary);
}

.terms-conditions-dv2 {
	margin-bottom: 12px;
	background: #fff;
	padding: 10px 12px;
	border-radius: 25px;
}

.tr-border-up-dotted {
	border-top: 1px dotted var(--muted);
}

.sq-card-iframe-container{
	height: 48px !important;
}

.skna_logo_txt {
    font-size: 28px;
    margin-bottom: 0;
    padding-top: 18px;
}

.skna_cmn_btn {
	width: 150px;
	height: 35px;
	font-size: 16px;
}

.ckin_cmn_p {

	font-size: 16px;
	line-height: 26px;
	margin-bottom: 16px;
}

.ckin_cmn_ul {
    color: #276284;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
}

input {
	font-size: 13px;
}

.extras-slider .slick-slide{
    height: auto !important;
}

/* Accordion Style CSS Start */

.accordion-button {
	background-color: #b3d1df4f !important;
	color: var(--primary) !important;
	outline: none !important;
	box-shadow: unset !important;
	border-radius: 15px !important;
	padding: 10px;
}

.accordion-item {
	border: none !important;
	overflow: hidden !important;
}
.accord_card{
	margin-bottom: 10px !important;
}
.accord_card:last-child{
	margin-bottom: 0 !important;
}
.accord_card:last-child .tnc-content .ckin_cmn_p:last-child{
	margin-bottom: 0 !important;
}

/* Accordion Style CSS Start */


/* Responsive styles #Start */
@media only screen and (max-width: 991px) {
	.step .skna_col_lefticon.step-icon {
		position: absolute !important;
		left: 0;
	}
}
@media only screen and (min-width:991px){
			
	.card-body{
		padding:5px;
		padding-left:0;
		padding-right:0;
		padding-bottom:0;
	
	}
	.card-title{
		padding-bottom: 0 !important;
	}
	
	.card-dot-line{
		margin-bottom: 0;
	}
	.card-img-top {
		height: 150px;
	
	}
	
	.card-btn {
		font-size: 12px;
	}
}
/**** 575px ****/
@media only screen and (max-width:575px){

	.ext-itm-dv.slick-slide {
	  margin-left: initial;
	}
	.card-img-top {
		height: 150px;		
	}
}

@media only screen and (max-width:574px){
	.slick-prev, .slick-next{
		top:160px;
	}
	
	.extra-slide .slick-prev::before, .extra-slide .slick-next::before {
		font-size: 20px !important;
	}
	.slick-next {
		left: calc(100% - 48px);
	}
	.slick-prev{
		left: 28px;
	}

	table.invoice_header tr {
		display: flex;
		flex-direction: column;
	}

	.invoice_details {
		width: 100%;
		max-width: 100% !important;
		text-align: left !important;
	}
	.invoice_details td {
		text-align: center;
	}
	.item_table {
		table-layout: fixed;
	}

	.item_table td, .item_table th {
		word-wrap: break-word;
		width: auto !important;
	}

	#checkfront-invoice .item_table tr.sum-row td,
	#checkfront-invoice .item_table tr.sum-row th {
		white-space: normal !important;
	}

}
 
 @media screen and (min-width: 767px){
      .slick-prev::before, .slick-next::before {
         font-size: 18px;
         width: 20px;
         height: 20px;
      }
      .slick-next {
         right: -22px;
      }
      .slick-prev {
         left: -10px;
      }

      .slick-prev, .slick-next {
         width: 16px;
         height: 16px;
      }
   }

 @media screen and (min-width: 767px) and (max-width: 991px){
      .slick-prev::before, .slick-next::before {
         line-height: 19px;
      }
   }

 @media only screen and (max-width: 767px) {
     .slick-next {
       left: calc(100% - 8px);
     }
     .slick-prev {
        left: -8px;
     }

    
	.skna_logo_txt {
	    font-size: 22px;
	    margin-bottom: 0;
	    padding-top: 22px;
	}


	.skna_cmn_btn {
		width: 140px;
		height: 30px;
		font-size: 14px;
	}


	.ckin_cmn_p {
	
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 14px;
	}

	.ckin_cmn_ul {
	    color: #276284;
	    font-size: 14px;
	    line-height: 22px;
	    margin-bottom: 14px;
	}

	.sq-card-message {
		margin-top: 35px !important;
	}
		
 }