@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@300;400;500&display=swap"); :root {
--ca-navy:    #0d1f3c;
--ca-blue:    #1a3a5c;
--ca-ocean:   #2176ae;
--ca-sky:     #5bb8f5;
--ca-gold:    #c9a84c;
--ca-white:   #f8f9fc;
--ca-card-bg: #ffffff;
--ca-text:    #1a1e2e;
--ca-muted:   #5a6278;
--ca-border:  #e4e9f2;
--ca-radius:  12px;
--ca-shadow:  0 4px 24px rgba(13,31,60,.10);
--ca-shadow-hover: 0 12px 40px rgba(13,31,60,.18);
--ca-font-display: 'Cormorant Garamond', Georgia, serif;
--ca-font-body:    'DM Sans', system-ui, sans-serif;
--ca-transition: .32s cubic-bezier(.34,1.1,.64,1);
} .cruise-deals-wrap {
font-family: var(--ca-font-body);
padding: 1rem 0 2rem;
}
.cruise-grid {
display: grid;
gap: 1.5rem;
}
.cruise-grid--3col { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.cruise-grid--2col { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.cruise-grid--1col { grid-template-columns: 1fr; } .cruise-card {
background: var(--ca-card-bg);
border: 1px solid var(--ca-border);
border-radius: var(--ca-radius);
overflow: hidden;
display: flex;
flex-direction: column;
box-shadow: var(--ca-shadow);
transition: transform var(--ca-transition), box-shadow var(--ca-transition);
}
.cruise-card:hover {
transform: translateY(-6px) scale(1.005);
box-shadow: var(--ca-shadow-hover);
} .cruise-card__img-wrap {
position: relative;
display: block;
overflow: hidden;
aspect-ratio: 16/9;
background: var(--ca-navy);
text-decoration: none;
}
.cruise-card__img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .5s ease;
display: block;
}
.cruise-card:hover .cruise-card__img { transform: scale(1.05); }
.cruise-card__img-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--ca-navy) 0%, var(--ca-blue) 100%);
font-size: 3rem;
} .cruise-card__badge {
position: absolute;
top: 12px; left: 12px;
color: #fff;
font-family: var(--ca-font-body);
font-size: 11px;
font-weight: 500;
letter-spacing: .06em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 20px;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
} .cruise-card__body {
flex: 1;
display: flex;
flex-direction: column;
padding: 1.1rem 1.2rem 1.2rem;
gap: .4rem;
}
.cruise-card__route {
font-family: var(--ca-font-display);
font-size: 1.25rem;
font-weight: 600;
color: var(--ca-navy);
line-height: 1.25;
margin: 0;
}
.cruise-card__ship {
font-size: .8rem;
color: var(--ca-ocean);
font-weight: 500;
margin: 0;
}
.cruise-card__meta {
display: flex;
flex-wrap: wrap;
gap: .4rem .9rem;
margin-top: .2rem;
}
.cruise-card__meta span {
font-size: .76rem;
color: var(--ca-muted);
} .cruise-card__highlights {
list-style: none;
padding: 0; margin: .4rem 0 0;
display: flex;
flex-direction: column;
gap: .2rem;
}
.cruise-card__highlights li {
font-size: .78rem;
color: var(--ca-muted);
padding-left: 1.1rem;
position: relative;
}
.cruise-card__highlights li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--ca-ocean);
font-weight: 700;
} .cruise-card__footer {
margin-top: auto;
padding-top: .9rem;
border-top: 1px solid var(--ca-border);
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: .5rem;
}
.cruise-card__price-wrap { display: flex; flex-direction: column; gap: 1px; }
.cruise-card__price-old {
font-size: .75rem;
color: var(--ca-muted);
text-decoration: line-through;
}
.cruise-card__price {
font-family: var(--ca-font-display);
font-size: 1.4rem;
font-weight: 700;
color: var(--ca-navy);
line-height: 1;
}
.cruise-card__expires {
font-size: .7rem;
color: #e63946;
font-weight: 500;
} .cruise-card__cta {
display: inline-flex;
align-items: center;
background: #31AE86;
color: #ffffff;
font-family: var(--ca-font-body);
font-size: .8rem;
font-weight: 600;
padding: .55rem 1.2rem;
border-radius: 5px 0 20px 0;
text-decoration: none;
white-space: nowrap;
transition: background .22s ease, transform .18s ease, box-shadow .22s ease;
letter-spacing: .02em;
box-shadow: 0 3px 12px rgba(49,174,134,.35);
}
.cruise-card__cta:hover {
background: #28976f;
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(49,174,134,.35);
color: #ffffff;
text-decoration: none;
} .cruise-hero-banner {
position: relative;
border-radius: 14px;
overflow: hidden;
background: var(--ca-navy);
height: 160px;
width: 100%;
display: flex;
align-items: center;
box-sizing: border-box;
box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.cruise-hero-banner__img-col {
position: absolute; inset: 0; z-index: 0;
}
.cruise-hero-banner__img {
width: 100%; height: 100%; object-fit: cover; display: block;
transition: transform .6s ease;
}
.cruise-hero-banner:hover .cruise-hero-banner__img { transform: scale(1.03); }
.cruise-hero-banner__img-placeholder {
width: 100%; height: 100%;
display: flex; align-items: center; justify-content: center; font-size: 3rem;
} .cruise-hero-banner__gradient {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(
90deg,
rgba(8,18,40,.72) 0%,
rgba(8,18,40,.62) 30%,
rgba(8,18,40,.75) 65%,
rgba(8,18,40,.88) 100%
);
} .cruise-hero-banner__badge {
position: absolute; top: 13px; left: 14px; z-index: 4;
color: #fff; font-size: 9px; font-weight: 700;
letter-spacing: .1em; text-transform: uppercase;
padding: 4px 12px; border-radius: 20px;
} .cruise-hero-banner__panel {
position: relative; z-index: 3;
width: 100%; padding: 0 1.3rem;
display: flex; align-items: center; gap: .8rem;
box-sizing: border-box;
} .cruise-hero-banner__title-block { flex-shrink: 0; max-width: 200px; }
.cruise-hero-banner__route {
font-family: var(--ca-font-display);
font-size: 1.05rem; font-weight: 700; color: #fff;
margin: 0; line-height: 1.2;
text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.cruise-hero-banner__ship {
font-size: .7rem; color: rgba(255,255,255,.55); margin: .18rem 0 0;
} .cruise-hero-banner__vdivider {
width: 1px; height: 72px;
background: rgba(255,255,255,.18); flex-shrink: 0;
} .cruise-hero-banner__chips {
display: flex; align-items: center; gap: .5rem;
flex: 1; min-width: 0; flex-wrap: nowrap;
} .cruise-hero-banner__chip {
background: rgba(255,255,255,.12);
border: 1px solid rgba(255,255,255,.22);
border-radius: 11px;
padding: .5rem .8rem;
display: flex; flex-direction: column;
align-items: center; gap: .06rem;
flex-shrink: 0; white-space: nowrap;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
transition: background .2s, border-color .2s;
}
.cruise-hero-banner__chip:hover {
background: rgba(255,255,255,.2);
border-color: rgba(255,255,255,.35);
}
.cruise-hero-banner__chip-label {
font-size: .57rem; font-weight: 700;
text-transform: uppercase; letter-spacing: .09em;
color: rgba(255,255,255,.5);
}
.cruise-hero-banner__chip-val {
font-size: .88rem; font-weight: 600; color: #fff;
} .cruise-hero-banner__chip--dur {
background: rgba(255,255,255,.15);
border-color: rgba(255,255,255,.28);
}
.cruise-hero-banner__chip--dur .cruise-hero-banner__chip-val {
font-family: var(--ca-font-display);
font-size: 1.25rem; font-weight: 700; color: #fff;
} .cruise-hero-banner__chip--price {
background: rgba(201,168,76,.15);
border-color: rgba(201,168,76,.4);
}
.cruise-hero-banner__chip--price .cruise-hero-banner__chip-label { color: rgba(201,168,76,.75); }
.cruise-hero-banner__chip--price .cruise-hero-banner__chip-val {
font-family: var(--ca-font-display);
font-size: 1.3rem; font-weight: 700; color: var(--ca-gold);
line-height: 1;
}
.cruise-hero-banner__chip-old {
font-size: .62rem; color: rgba(255,255,255,.3);
text-decoration: line-through; margin-bottom: 1px;
}
.cruise-hero-banner__chip-saving {
font-size: .6rem; font-weight: 700;
color: var(--ca-gold);
background: rgba(201,168,76,.18);
border: 1px solid rgba(201,168,76,.35);
border-radius: 4px; padding: 1px 5px; margin-top: 2px;
} .cruise-hero-banner__chip--expires {
background: rgba(220,50,50,.2);
border-color: rgba(220,50,50,.55);
animation: caExpire 2.2s ease-in-out infinite;
}
.cruise-hero-banner__chip--expires .cruise-hero-banner__chip-label { color: rgba(255,130,130,.85); }
.cruise-hero-banner__chip--expires .cruise-hero-banner__chip-val {
color: #ff7070; font-weight: 700; font-size: .92rem;
}
@keyframes caExpire {
0%,100% { border-color:rgba(220,50,50,.45); background:rgba(220,50,50,.16); }
50%      { border-color:rgba(220,50,50,.85); background:rgba(220,50,50,.3); }
} .cruise-hero-banner__cta {
flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
background: #31AE86;
color: #ffffff; font-weight: 700; font-size: .84rem;
padding: .7rem 1.3rem; border-radius: 5px 0 20px 0;
text-decoration: none; letter-spacing: .03em;
box-shadow: 0 3px 12px rgba(49,174,134,.35);
border-radius: 5px 0 20px 0;
transition: transform .18s, box-shadow .18s;
white-space: nowrap;
}
.cruise-hero-banner__cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(49,174,134,.35);
color: #ffffff; text-decoration: none;
background: #28976f;
} @media (max-width: 640px) {
.cruise-hero-banner { height: auto; min-height: 200px; }
.cruise-hero-banner__gradient {
background: linear-gradient(180deg, rgba(8,18,40,.4) 0%, rgba(8,18,40,.92) 45%);
}
.cruise-hero-banner__panel {
flex-wrap: wrap; padding: 7rem .9rem .9rem; align-items: flex-start;
}
.cruise-hero-banner__title-block { max-width: 100%; }
.cruise-hero-banner__vdivider { display: none; }
.cruise-hero-banner__chips { flex-wrap: wrap; }
.cruise-hero-banner__cta { width: 100%; margin-top: .3rem; }
} .cruise-empty {
font-family: var(--ca-font-body);
color: var(--ca-muted);
font-style: italic;
padding: 1.5rem;
text-align: center;
border: 1px dashed var(--ca-border);
border-radius: var(--ca-radius);
} @media (max-width: 640px) {
.cruise-grid--3col,
.cruise-grid--2col { grid-template-columns: 1fr; }
.cruise-card__footer { flex-direction: column; align-items: flex-start; }
.cruise-card__cta { width: 100%; justify-content: center; }
}#powerTip{cursor:default;background-color:#333;background-color:rgba(0,0,0,.8);border-radius:6px;color:#fff;display:none;padding:10px;position:absolute;white-space:nowrap;z-index:2147483647}#powerTip:before{content:"";position:absolute}#powerTip.n:before,#powerTip.s:before{border-right:5px solid transparent;border-left:5px solid transparent;left:50%;margin-left:-5px}#powerTip.e:before,#powerTip.w:before{border-bottom:5px solid transparent;border-top:5px solid transparent;margin-top:-5px;top:50%}#powerTip.n:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px}#powerTip.e:before{border-right:10px solid #333;border-right:10px solid rgba(0,0,0,.8);left:-10px}#powerTip.s:before{border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);top:-10px}#powerTip.w:before{border-left:10px solid #333;border-left:10px solid rgba(0,0,0,.8);right:-10px}#powerTip.ne:before,#powerTip.se:before{border-right:10px solid transparent;border-left:0;left:10px}#powerTip.nw:before,#powerTip.sw:before{border-left:10px solid transparent;border-right:0;right:10px}#powerTip.ne:before,#powerTip.nw:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px}#powerTip.se:before,#powerTip.sw:before{border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);top:-10px}#powerTip.ne-alt:before,#powerTip.nw-alt:before,#powerTip.se-alt:before,#powerTip.sw-alt:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;left:10px}#powerTip.ne-alt:before,#powerTip.se-alt:before{left:auto;right:10px}#powerTip.se-alt:before,#powerTip.sw-alt:before{border-top:none;border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);bottom:auto;top:-10px}body{
position: inherit !important;
}
@-moz-keyframes Ani {
0% {
box-shadow: 0 0 0 rgba(255,255,255,0);
border: 1px solid rgba(255,255,255,0);
-webkit-transform: scale(0);
transform: scale(0)
}
70% {
box-shadow: 0 0 50px #fff;
border: 1px solid #fff;
-webkit-transform: scale(1);
transform: scale(1)
}
100% {
box-shadow: 0 0 60px rgba(255,255,255,0);
border: 0 solid rgba(255,255,255,0);
-webkit-transform: scale(1.5);
transform: scale(1.5)
}
}
@-webkit-keyframes Ani {
0% {
box-shadow: 0 0 0 rgba(255,255,255,0);
border: 1px solid rgba(255,255,255,0);
-webkit-transform: scale(0);
transform: scale(0)
}
70% {
box-shadow: 0 0 50px #fff;
border: 1px solid #fff;
-webkit-transform: scale(1);
transform: scale(1)
}
100% {
box-shadow: 0 0 60px rgba(255,255,255,0);
border: 0 solid rgba(255,255,255,0);
-webkit-transform: scale(1.5);
transform: scale(1.5)
}
}
@keyframes Ani {
0% {
box-shadow: 0 0 0 rgba(255,255,255,0);
border: 1px solid rgba(255,255,255,0);
-webkit-transform: scale(0);
transform: scale(0)
}
70% {
box-shadow: 0 0 50px #fff;
border: 1px solid #fff;
-webkit-transform: scale(1);
transform: scale(1)
}
100% {
box-shadow: 0 0 60px rgba(255,255,255,0);
border: 0 solid rgba(255,255,255,0);
-webkit-transform: scale(1.5);
transform: scale(1.5)
}
}
#powerTip {
background-color: #000;
}
#powerTip.n:before {
border-top: 10px solid rgba(0,0,0,1);
}
#powerTip.s:before {
border-bottom: 10px solid #000;
}
#powerTip.e:before {
border-right: 10px solid #000;
}
#powerTip.w:before {
border-left: 10px solid #000;
right: -10px
}
#powerTip.ne:before,#powerTip.nw:before {
border-top: 10px solid #000;
border-top: 10px solid rgba(0,0,0,1);
}
#powerTip.se:before,#powerTip.sw:before {
border-bottom: 10px solid #000;
border-bottom: 10px solid rgba(0,0,0,1);
}
#powerTip.nw-alt:before,#powerTip.ne-alt:before,#powerTip.sw-alt:before,#powerTip.se-alt:before {
border-top: 10px solid #000;
border-top: 10px solid rgba(0,0,0,1);
}
#powerTip.sw-alt:before,#powerTip.se-alt:before {
border-bottom: 10px solid #000;
border-bottom: 10px solid rgba(0,0,0,1);
}
.wrap_svl {
position: relative;
float: left;
margin: 0 auto;    
max-width: 100%;
}
.wrap_svl:after{
content: "";
display: table;
clear: both;
}
.images_wrap img {
width: 100%;
height: auto;
display: block;
}
.drag_element {
position: absolute;
top: 0;
left: 0;
min-width: 1px;
min-height: 1px;
}
.point_style{
position: relative;
z-index: 10;
display: block;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
box-sizing: border-box;
text-align: center;
}
.point_style img{
position: absolute;
top: 0;
left: 0;
width: inherit;
max-width: inherit;
}
body .wrap_svl img.pins_image_hover,
body .wrap_svl .point_style.has-hover:hover img.pins_image {
display: none !important;
}
body .wrap_svl .point_style.has-hover:hover img.pins_image_hover {
display: block !important;
}
.tolltip_points{
text-align: center;
}
.tolltip_points img{
width: 130px;
height: 130px;
border: 1px solid #fff;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
}
.tolltip_points .points_name{
display: block;
font-size: 16px;
}
.tolltip_points .points_desc{
display: block;
font-size: 14px;
}
.mobile_points_wrap{
display: none;
}
.mobile_points_box {
width: 50%;
float: left;
padding: 0 5px 15px 5px;
text-align: center;
}
.img_points_box {
display: inline-block;
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
border: 1px solid #fff;
}
.img_points_box img {
width: 100%;
height: 100%;
}
.mobile_points_box:nth-child(2n+1) {
clear: both;
}
ul.list_content_point {
list-style: none;
margin: 0 0 10px;
padding: 0;
}
ul.list_content_point li {
position: relative;
padding: 3px 0 0 20px;
margin: 0 0 5px 0;
}
ul.list_content_point li:before {
content: "";
font-family: FontAwesome;  
position: absolute;
top: 0;
left: 0;
font-size: 20px;  
}
ul.list_content_point li.address_point:before {
content: "\f041";    
}
ul.list_content_point li.person_point:before {
content: "\f183";    
}
ul.list_content_point li.tel_point:before {
content: "\f095";    
}
ul.list_content_point li.fax_point:before {
content: "\f1ac";    
font-size: 15px;
top: 4px;
}
ul.list_content_point li.mail_point:before {
content: "\f0e0";    
font-size: 15px;
top: 4px;
}
.box_view_html {
color: #fff;
font-weight: 300;
max-width: 530px;
white-space: normal;
overflow: hidden;
position: relative;
}
.thumb_point {
float: left;
width: 30%;
}
.has-thumb .content_point {
width: 70%;
float: left;
padding: 0 0 0 15px;
}
.has-thumb .content_point h3 {
font-size: 19px;
}
.linkto_point {
text-align: right;
margin: 20px 0 0 0;
}
.wrap_svl_center {
text-align: center;
}
.wrap_svl_center_box {
display: inline-block;
}
body .point_style a img,
body .point_style img {
max-width: inherit !important;
vertical-align: inherit;
border-radius: 0 !important;;
-moz-border-radius: 0 !important;;
-webkit-border-radius: 0 !important;;
box-shadow: none !important;;
-moz-box-shadow: none !important;;
-webkit-box-shadow: none !important;;
}
.pins_animation{
border: 3px solid rgba(255,255,255,.5);
width: 30px;
height: 30px;
position: absolute;
left: 0;
top: 0;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
box-shadow: 0 0 20px rgba(255,255,255,.5);
pointer-events: none;
}
.pins_animation.ihotspot_pulse{
-moz-animation: Ani 2s infinite;
-webkit-animation: Ani 2s infinite;
animation: Ani 2s infinite;
}
span.close_ihp {
display: none;
}
body .point_style a:hover img {
background: transparent !important;
}
span.close_ihp svg {
width: 25px;
height: 25px;
}
@media (max-width: 500px){
.ihp_popup_full div#powerTip {
position: fixed;
top: 0 !important;
left: 0 !important;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
.ihp_popup_full span.close_ihp {
display: block;
float: right;
width: 25px;
height: 25px;
}
.ihp_popup_full span.close_ihp svg {
fill: #fff;
}
}