/* Slide div back and forward */
#content {
    position: relative;
    min-height: 100px;
}
.page {
    top:0;
    height: 100%;  
    width: 100%;
}

/*Forward*/
.page1 {
    left:-100%;
    -webkit-animation: page1-to-page2 0.5s linear forwards;
    animation: page1-to-page2 0.5s linear forwards;				
    position: relative;            
}

.page2 {      
    left:0;    
    -webkit-animation: page2-to-page3 0.5s linear forwards;
    animation: page2-to-page3 0.5s linear forwards;
    position: absolute; 
}

.page3 {      
    left:100%;    
    -webkit-animation: page3-to-page2 0.5s linear forwards;
    animation: page3-to-page2 0.5s linear forwards;
    position: absolute; 
}

.ipg-rounded-image {
    border-radius: 20px;          /* Controls corner roundness */
    
    background-clip: padding-box;  /* Keeps border transparent */
}

.ipg-image-wrapper {
    display: inline-block;
    border-radius: 20px;
    padding: 6px;                 /* Border thickness */
    background: transparent;      /* Transparent border effect */
}

.ipg-image-wrapper img {
    display: block;
    border-radius: 14px;          /* 20px - 6px padding */
    border: 6px solid #0000002d; /* Transparent border */
}

.ipg-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;        /* Ensures image stays inside circle */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ipg-avatar img {
    padding: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ipg-bounce {
    -webkit-animation: bounce 4s ease-in-out infinite;
    animation: bounce 4s ease-in-out infinite;
}

@-webkit-keyframes bounce {
    0%   { -webkit-transform: translateY(0); }
    50%  { -webkit-transform: translateY(-20px); }
    100% { -webkit-transform: translateY(0); }
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@-webkit-keyframes page1-to-page2{
    from{left:-100%}
    to{left:0}
}
@keyframes page1-to-page2{
    from{left:-100%}
    to{left:0}
}

@-webkit-keyframes page2-to-page1{
    from{left:0}
    to{left:100%}
}

@keyframes page2-to-page1{
    from{left:0}
    to{left:100%}
}

/*Back*/
.page1-back {
    left:-100%;
    -webkit-animation: page1-to-page2-back 0.5s linear forwards;
    animation: page1-to-page2-back 0.5s linear forwards;
    position: relative;            
}

.page2-back {      
    left:0;    
    -webkit-animation: page2-to-page1-back 0.5s linear forwards;
    animation: page2-to-page1-back 0.5s linear forwards;
    position: absolute;            
}

@-webkit-keyframes page1-to-page2-back{
    from{left:0}
    to{left:-100%}
}
@keyframes page1-to-page2-back{
    from{left:0}
    to{left:-100%}
}

@-webkit-keyframes page2-to-page1-back{
    from{left:100%}
    to{left:0}
}

@keyframes page2-to-page1-back{
    from{left:100%}
    to{left:0}
}

.wrapper {
    position: relative;
}

.wrapper .bottom {
    position: absolute;
    bottom: 0px;
    height: 50px;
}

.my-arrow {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    color:#fff;
}

.right-arrow {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left-arrow {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.checkout-parent-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: fixed;
    top:0%;
    left:0%;
}

.checkout-container {
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    min-height: 10%;

    width:90%;
    max-width:800px;
    min-width: 320px;
}

.hpp-container{
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    min-height: 10%;

    width:90%;
    max-width:800px;
    min-width: 320px;
}

.bg-gradient {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))!important;
}

.bg-secondary {
    --vz-bg-opacity: 1;
    background-color: rgba(71,136,255,1)!important;
}

h3, h5, h2, label, input, select, textarea{
    font-family: Saira,sans-serif;
}

label{
    text-align: left;
}

.absoluteCenter {
    /* Must manually set width/height */
    width:1024px;
    height:560px;

    /* The magic centering code */
    margin:auto;
    position:fixed;
    top:0;bottom:0; /* Aligns Vertically - Remove for Horizontal Only */
    left:0;right:0; /* Aligns Horizontally - Remove for Vertical Only  */

    /* Prevent div from overflowing main window */
    max-width:100%;
    max-height:100%;
    overflow:auto;
    z-index:2000;
}

.cardtypes_container{text-align:center;}
.cardtypes_container img{display:inline-block;}

.video-wrapper-parent{
    margin: 30px auto;
    max-width: 640px;
}

.ipg-product-detail-no-description > .video-wrapper-parent:first-child,
.ipg-product-detail-no-description > .tiktok-wrapper:first-child,
.ipg-product-detail-no-description > .facebook-reel-wrapper:first-child{
    margin-top: 8px!important;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 640px;
    border: 0;
}

.tiktok-wrapper {
  display: flex;
  justify-content: center;
}


/* IE 7 and Below */
:first-child+html .absoluteCenter,
* html .absoluteCenter {
/* Place code here to override all above values, and add IE friendly centering */
}
@media only screen and (max-width: 768px) {

    .mobile-hide{
        display: none;
    }
    .video-wrapper-parent{
        margin: 30px auto;
        width: 100%;
    }

 .absoluteCenter1 {
        min-height:100%;
   }
   .checkout-container1 {
        width:100%;
        min-height:100%;
    }

    .hpp-container{
        width:100%;
        min-height:100%;
    }
}

.text-danger {
    color: #A00!important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0rem;
    margin-bottom: 0.25rem;
    font-size: .875em;
    color: #ee6352;
}

.field-col{
    margin-bottom:5px;
}
.form-label {
    font-size:9pt;
    margin-bottom: 0.2rem;
}
.md-shadow{
    box-shadow: 8px 9px 17px -4px rgba(13,65,109,0.46);
    -webkit-box-shadow: 8px 9px 17px -4px rgba(13,65,109,0.46);
    -moz-box-shadow: 8px 9px 17px -4px rgba(13,65,109,0.46);
}
.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1100;
    opacity: 0;
    background: rgb(33 150 243 / 90%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.fiserv_test_card_link{
    color:#4656e7;
}

.form-control{
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    box-sizing: border-box;
    margin: 0;
    font: inherit;
    font-family: inherit;
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    height: 44px;
    border-radius: 25px;
    border: 1px solid #95befc!important;
}

.form-control-sm{
    line-height: 1.22857143;
    height: 36px;
}
.subcribe-form{
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    line-height: 1.42857143;
    font-family: 'Open Sans', sans-serif;
    color: #2a3b71;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.subcribe-form > input{
    border-radius: 50px!important;
}

.btn-btn-default {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    box-sizing: border-box;
    margin: 0;
    font: inherit;
    overflow: visible;
    -webkit-appearance: button;
    font-family: inherit;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.42857143!important;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    border-radius: 50px;
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s ease;
    padding: 10px 10px;
    min-width: 150px;
    font-size: 12px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    background: #1209bf;
    color: #fff;
    border-color: #1209bf;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.btn-btn-default:hover {
    background-color: #237dff;
}

.btn-btn-back {
    background: #646472!important;
}

.btn.btn-btn-back:hover {
    background-color: #939393!important;
}

.btn.btn-primary {
    background-color: #1209bf!important;
}

.btn.btn-primary:hover:not([disabled]) {
    background-color: #237dff!important;
}

.btn {
    color: white;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 17px;
    line-height: 0!important;
    min-height: 40px!important;
}

.btn:hover {
    background-color: #2f73e2;
}

.btn-primary:disabled,
.btn-primary[disabled],
.btn:disabled,
.btn[disabled]{
  border: 1px solid #999999!important;
  background-color: #cccccc!important;
  color: #666666;
}

.disable-button{
  border: 1px solid #999999!important;
  background-color: #cccccc!important;
  color: #666666;
}

.col-25,
.col-50,
.col-75 {
    padding: 0 0px;
    margin: 0 0px;
}

.bm-container {
    background-color: #f2f2f2;
    padding: 5px 20px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 3px;
}

.bm-row {
    --vz-gutter-x: 1.5rem;
    --vz-gutter-y: 0;
    margin-right: calc(0.5 * var(--vz-gutter-x));
    margin-left: calc(0.5 * var(--vz-gutter-x));
    max-width:1024px;
    margin: 0 auto;
}

.form-control-sm input[type=text], .form-control-sm input[type=email], .form-control-sm input[type=tel], .form-control-sm select {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

label {
    margin-bottom: 10px;
    display: block;
}

.icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
}

span.price {
    float: right;
    color: grey;
}

/* Floating column for labels: 25% width */
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}
.col-50 {
    float: left;
    width: 48%;
    margin-top: 6px;
    margin-left:1%;
    margin-right:1%;
}

/* Floating column for inputs: 75% width */
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

.col-100 {
    float: left;
    width: 100%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.checkrow:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-50, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
        margin-bottom: 10px;
        margin-left:0%;
        margin-right:0%;
    }
    .col-25 {
        margin-bottom: 20px;
    }

    .bm-row {
        --vz-gutter-x: 0.0rem;
        margin-right: calc(0.5 * var(--vz-gutter-x));
        margin-left: calc(0.5 * var(--vz-gutter-x));
    }
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.ribbon {
    padding: 5px 12px;
    -webkit-box-shadow: 2px 5px 10px rgba(33,37,41,.15);
    box-shadow: 2px 5px 10px rgba(33,37,41,.15);
    color: #fff;
    font-size: .8512rem;
    font-weight: 600;
    position: absolute;
    left: -1px;
    top: 5px;
}

.ribbon-box{
    border-radius: 5px;
    position: relative;
    padding: 5px 12px;
    -webkit-box-shadow: 2px 5px 10px rgba(33,37,41,.15);
    box-shadow: 2px 5px 10px rgba(33,37,41,.15);
    
    font-size: .8512rem;            
    left: -1px;
    top: 5px;
}

.round-shape {
    border-radius: 0 30px 30px 0;
}

.ribbon-primary {
    background: #8c68cd;
}

.ribbon-box.ribbon-success {
    border: 1px solid #308c62;
}

.ribbon-success .ribbon{
    background: #308c62;
}

.ribbon-box, .ribbon-content {
    clear: both;
}

.box{            
    border-radius: 0px;
    border: 1px solid #d4d4d4;;
}

.box-top{
    margin: 10px 10px 0px 10px;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.menu-scroll-y-only {
    max-height: 400px!important;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 70vh;
}

.menu-scroll-y-only::-webkit-scrollbar {
    width: 6px;
}

.menu-scroll-y-only::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.box-header-top{
    border-radius:10px 10px 0px 0px;
    border-radius:0px 0px 0px 0px;
}

.alert{            
    border-radius: 10px;
}

.alert-body {
    padding: 0.2rem 1rem;
}

.alert-warning {
    border: 1px solid #bf9844;
    background-color:#fff7e6;;
}

.alert-success {
    border: 1px solid #308c62;
    background-color:#e2f5ec;
}

.alert-heading {
    font-weight:bold;
}

.alert-warning .alert-heading {
    color: #bf9844;
    font-weight:bold;
}
.alert-warning .alert-content {
    color: #bf9844;
}

.alert-success .alert-heading {
    color: #308c62;
    font-weight:bold;
}
.alert-success .alert-content {
    color: #005f4b;
}

#company_bottom_links{
    border-top:1px solid #ccc;
    background-color:#eee;
}

.company_slogan_text{
    font-size:11pt;
}

.company_image_size{
    width:80px
}

.avatar-lg {
    height: 6rem;
    width: 6rem;
}

.box{            
    border: none;
}

.box-top{
    margin: 0px 0px 0px 0px !important;
    border: 0px;
    border-radius: 0px;
    padding: 0px !important;
}

.ipg-topbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 60px;
    background: #222;
    color: white;
    align-items: center;
    justify-content: center;
    transform-origin: top;

    transition: 
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;

    z-index: 1000;
    /* A transform hint makes fixed dropdown descendants use the header as their
       containing block, which can push the mobile cart outside the viewport. */
    will-change: opacity;
    backface-visibility: hidden;

    border-bottom: rgba(0, 0, 0, 0.25);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#wpadminbar .ipg-topbar {
    top: 32px;
}

/* Hidden state (fold up) */
.ipg-topbar.hidden {
    transform: translateY(-100%) scaleY(0.95);
    opacity: 0;
}

.ipg-content {
    padding-top: 0px; /* prevent content jump */
}	

/* Desktop: always visible & sticky */
@media (min-width: 768px) {
    .ipg-topbar {
        position: fixed;   /* or fixed if preferred */
        top: 0;
        transform: none !important;
        opacity: 1 !important;
    }

    #wpadminbar .ipg-topbar {
        top: 46px;
    }

    .ipg-content2 {
        padding-top: 0px; /* prevent content jump */
    }
}



@media only screen and (max-width: 768px) {
    .box-header-top{
        border-radius:0px 0px 0px 0px;
    }

    .company_name_text{
        font-size:12pt;
    }
    .company_slogan_text{
        font-size:10pt;
    }
    .company_image_size{
        width:65px
    }

    .alert-body {
        padding: 0.2rem 0rem;
    }

    .alert-content.h6{
        font-size: 0.9rem;
    }
}


/**** MEssages Classes **************/

.yellow-message-simple-1{
    border:1px solid #9f5f00!important;
    background-color: #fdfadc!important;
}

.yellow-message-simple-1 .alert-heading{
    color:#ff9800!important;
    font-weight: bold!important;
}

.yellow-message-simple-1 .alert-content{
    color:#9f5f00;
}
/**/
.red-message-simple-1{
    border:1px solid #9f0000!important;
    background-color: #fddedc!important;
}

.red-message-simple-1 .alert-heading{
    color:#9f0000!important;
    font-weight: bold!important;
}

.red-message-simple-1 .alert-content{
    color:#6e2c22;
}

/**/
.orange-message-simple-1{
    border:1px solid #9f0000!important;
    background-color: #ffe1b5!important;
}

.orange-message-simple-1 .alert-heading{
    color:#9f0000!important;
    font-weight: bold!important;
}

.orange-message-simple-1 .alert-content{
    color:#6e2c22;
}

/**/
.blue-message-simple-1{
    border:1px solid #2446d0!important;
    background-color: #d8eaff!important;
}

.blue-message-simple-1 .alert-heading{
    color:#2446d0!important;
    font-weight: bold!important;
}

.blue-message-simple-1 .alert-content{
    color:#2446d0;
}



/**** Buttons Classes **************/

.blue-gradient-animi-1{
    font-family: Roboto, sans-serif;
    font-weight: 0;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(90deg, #0066CC 0%, #c500cc 100%);
    padding: 10px 30px;
    border: 2px solid #0066cc;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
    border-radius: 50px;
    transition : 1000ms;
    transform: translateY(0);
    align-items: center;
    cursor: pointer;
}

.blue-gradient-animi-1:hover{
    transition : 1000ms;
    padding: 10px 30px;
    transform : translateY(-0px);
    background: linear-gradient(90deg, #0066CC 0%, #c500cc 100%);
    color: #0066cc;
    border: solid 2px #0066cc;
}


.blue-gradient-2 {
    font-size:15px;
    font-family:Arial;
    padding: 10px 30px;
    border-width:1px;
    color:#fff!important;
    border-color:#4e6096!important;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
    box-shadow: 0px 0px 0px 2px #9fb4f2;
    text-shadow: 0px 1px 0px #283966;
    background:linear-gradient(rgb(120, 146, 194), #476e9e);
  }
  
  .blue-gradient-2:hover {
    background: linear-gradient(#476e9e, rgb(120, 146, 194));
  }

  
.light-green-flat-rounded-1 {
    font-size:15px;
    font-family:Arial;
    padding: 10px 30px;
    border-width:1px;
    color:#fff!important;
    border-color:#18ab29!important;
    border-top-left-radius:28px;
    border-top-right-radius:28px;
    border-bottom-left-radius:28px;
    border-bottom-right-radius:28px;
    text-shadow: 1px 1px 0px #2f6627;
    background:#44c767;
  }
  
  .light-green-flat-rounded-1:hover {
    background: #5cbf2a
  }

  
.yellow-flat-1 {
    font-size:15px;
    font-family:Arial;
    padding: 10px 30px;
    border-width:1px;
    color: #333 !important;
    border-color:#ffaa22!important;
    font-weight:bold;
    border-top-left-radius:6px;
    border-top-right-radius:6px;
    border-bottom-left-radius:6px;
    border-bottom-right-radius:6px;
    box-shadow: 0px 1px 0px 0px #fff6af;
    text-shadow: 0px 1px 0px #ffee66;
    background:linear-gradient(#ffec64, #ffab23);
  }
  
  .yellow-flat-1:hover {
    background: linear-gradient(#ffab23, #ffec64);
  }

  
.brown-rectangle-1 {
    font-size:15px;
    font-family:Arial;
    padding: 10px 30px;
    border-width:1px;
    color:#ffffff!important;
    border-color:#54381e!important;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
    border-bottom-left-radius:3px;
    border-bottom-right-radius:3px;
    box-shadow:inset 0px 1px 0px 0px #a6827e;
    text-shadow:inset 0px 1px 0px #54381e;
    background:linear-gradient(#7d5d3b, #634b30);
  }
  
  .brown-rectangle-1:hover {
    background: linear-gradient(#634b30, #7d5d3b);
  }

  .product_callapse {
        overflow: hidden;
        cursor: pointer;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    .product_callapse_panel {
        overflow: hidden;
        height: 0;
        transition: height 0.4s ease;
    }

    .arrow {
        display: inline-block;
        transition: transform 0.35s ease;
    }

    /* rotated arrow when open */
    .arrow.open {
        transform: rotate(180deg);
    }

  /*************/
.bm-1c{
    float:left;
    width:100%;
    margin-bottom:10px;
    text-align:center;
}
.bm-2c{
    float:left;
    width:50%;
    margin-bottom:10px;
    text-align:center;
}
@media only screen and (max-width: 768px) {
    .bm-2c{
        float:left;
        width:100%;
        text-align:center;
    }
}

.bm-payment-selection{
    border: 1px solid #ccc;
}

.my-radio-label {										
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    margin-top: 5px;
    vertical-align: middle;
}

.my-radio-panel {
    float:left;
    width: 50.0%;
    min-height: 80px;
}

.my-radio-panel-3 {
    float:left;
    width: 33.3333%;
    min-height: 80px;
}

.my-radio-panel-4 {
    float:left;
    width: 25.0%;
    min-height: 80px;
}

.my-radio-panel-6 {
    float:left;
    width: 33.3333%;
    min-height: 80px;
}

.my-wrap-pre {
    white-space: pre-wrap; /* Preserves whitespace but wraps lines as needed */
    /* word-break: break-all; Breaks long words to fit the container */
    word-wrap:break-word;
    overflow: hidden; /* Explicitly hides any potential scrollbar */
}

/*  My Calendar */
.calendar-table{font-size:10pt;}
.my-calendar-wrapper { max-width: 800px; margin: auto; }
.calendar-month { display: none; }
.calendar-month.active { display: block; }

table { width: 100%; border-collapse: collapse; }
.calendar-table th, .calendar-table td { 
    border: 1px solid #ccc; padding: 4px; text-align: center; 
}

.data-date{ color:#00A; }
.other-month { color: #aaa; }
.disabled { background: #eee; color: #999; cursor: not-allowed; }
.booked { background: #edf4ff; color: #999; cursor: not-allowed; }
.today { outline: 2px solid #007cba; }
.selected { background: #007cba; color: #fff; }
.range { background: #b6dbff; }
.event { color:#0A0; }
.booking-session-radio{color: #1725e1;}
.booking-session-radio-disabled{color: #c5c6d4;}

.calendar-footer { width:100% }
.calendar-status { color:#00A; font-size:9pt; margin:5px 0px; }
.calendar-message { color:#A00; }
.calendarclear { color:#0A0; }

.calendar-controls {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 5px;
    border: 1px solid #eee;
}
.calendar-month-middle {
    flex: 1;
    text-align: center;
}

.delivery-session-radio{color: #1725e1;}

/* Item count selection*/
.item-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    width: 140px;
  }

  .item-selector button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
  }

  .item-selector button:hover {
    background: #e0e0e0;
  }

  .item-selector input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
  }

  .item-selector input:focus {
    outline: none;
  }

  .star,
    .rating-star {
        font-size: 24px;
        color: #ccc;
        cursor: pointer;
    }

    .star.filled,
    .rating-star.selected {
        color: #ffc107;
    }

    .rating-star:hover,
    .rating-star:hover ~ .rating-star {
        color: #ccc;
    }

    .rating-star.hovered,
    .rating-star.hovered ~ .rating-star {
        color: #ffc107;
    }

#statusMessage .text-success,
#statusMessage .text-danger{
	font-size:48px;
}

.admin-reply{
	border-left:3px solid #007bff;
	background-color:#f0f8ff;
}

@media only screen and (max-width: 576px) {
    .my-radio-panel {
        width: 100%;
        height: auto;
    }

    .my-radio-panel-3 {
        width: 100%;
        height: auto;
    }
    .my-radio-panel-4 {
        width: 50%;
        height: auto;
    }

    .my-radio-panel-6 {
        width: 50%;
        height: auto;
    }
}

/********** CART CSS **********************/
#cart_panel {   
    position: relative;
}

#cart_panel .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 420px;
    max-width: 540px;
    margin-top: 6px;
}

.cart-panel {
    max-width: 540px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
    min-width: 0;
}

.cart-header {
    padding: 5px 20px;
    background: #ffffff;
}

.cart-message{
    color: #0f5132;
    padding: 0px 20px;
    font-size: 0.95rem;
}

.cart-message.error {
    color: #842029;
}

.cart-body {
    border-top: 1px solid #eef1f4;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;						
    min-width: 0;
}

.cart-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 5px 0px;
}

.cart-item {
    padding: 5px 10px;
    border-bottom: 1px solid #eef1f4;
    min-width: 0;
}

.cart-item > .d-flex {
    display: flex !important;
    align-items: flex-start;
    gap: 8px !important;
    width: 100%;
    min-width: 0;
}

.cart-panel .cart-item > .d-flex {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) 34px;
}

.cart-item .flex-grow-1 {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    background: #f3f3f3;
    border: 1px solid #ececec;
    flex-shrink: 0;
}

.cart-product-title {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.35;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

.cart-product-title a {
    display: inline;
    text-decoration: none;
    color: #00A;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

.cart-panel .cart-product-title a {
    display: block;
    max-width: 100%;
}

.cart-product-title a:hover {
    text-decoration: underline;
}

.cart-amount {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 4px;
    overflow-wrap: anywhere;
}

.cart-price {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
}

.btn-remove {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    justify-self: end;
    align-self: start;
    line-height: 34px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.btn-remove:hover {
    background: #f8d7da;
    border-color: #f1aeb5;
    color: #842029;
}

.cart-footer {
    padding: 18px 20px;
    background: #fcfcfd;
    border-top: 1px solid #eef1f4;
}

.cart-total-label {
    color: #6c757d;
    font-size: 0.95rem;
}

.cart-total-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -6px;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    line-height: 1;
}

.cart-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    width:100%;
    height:100%;
    border-radius: 18px;
    background-color: #0000008f;
    z-index: 50;
}

.cart-page-wrap {
    padding: 30px 0;
}

.view-cart-panel {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}


.cart-unit-price {
    font-size: 0.92rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.cart-line-price {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-top: 8px;
}

.cart-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cart-qty-wrap .qty-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 10px;
    border: 1px solid #ced4da;
    background: #fff;
    color: #212529;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
}

.cart-qty-wrap .qty-btn:hover,
.cart-qty-wrap .qty-btn:focus {
    background: #f8f9fa;
    color: #212529;
}

.qty-input {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    flex: 0 0 70px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ced4da;
    height: 34px;
    padding: 4px 8px;
}

.cart-actions-bar {
    padding: 16px 20px;
    border-top: 1px solid #eef1f4;
    background: #fcfcfd;
}

.summary-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    padding: 22px 20px;
    position: sticky;
    top: 120px;
}

.summary-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.98rem;
}

.summary-row.total {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eef1f4;
    font-weight: 700;
    font-size: 1.1rem;
}

.update-cart-btn.d-none,
.empty-cart-note.d-none {
    display: none !important;
}

.proceed-btn {
    margin-top: 18px;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
}

.cart-empty {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.cart-continue-shopping{
    text-align: right!important;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    #cart_panel .dropdown-menu {
        position: fixed !important;
        box-sizing: border-box !important;
        left: 8px !important;
        right: 8px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        transform: none !important;
    }

    .cart-panel .cart-item > .d-flex {
        grid-template-columns: 58px minmax(0, 1fr) 32px;
    }

    .cart-img {
        width: 58px;
        height: 58px;
    }

    .btn-remove {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        justify-self: end;
    }

    .summary-card {
        position: static;
    }
}

.ipg-cart-convert-vt {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eef1f4;
}

.ipg-cart-convert-vt-label {
    margin-bottom: 7px;
    color: #5c6670;
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
}

.ipg-cart-convert-vt-status {
    display: none;
    margin-top: 14px;
    padding: 9px 10px;
    border: 1px solid #badbcc;
    background: #d1e7dd;
    color: #0f5132;
    font-weight: 700;
    text-align: center;
}

.ipg-cart-convert-vt-status.is-error {
    border-color: #f5c2c7;
    background: #f8d7da;
    color: #842029;
}

.ipg-question-option-visual {
    display: grid;
    gap: 8px;
}

.ipg-question-option-full {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .ipg-question-option-half {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ipg-question-option-choice {
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    margin: 0;
    min-height: 46px;
    padding: 8px 10px;
}

.ipg-question-option-choice input {
    flex: 0 0 auto;
    margin: 0;
    position: static;
    vertical-align: middle;
}

.ipg-question-option-choice > span:last-child {
    display: block;
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: anywhere;
}

.ipg-question-option-image {
    border-radius: 4px;
    height: 42px;
    object-fit: cover;
    width: 42px;
}

.ipg-question-option-swatch {
    border: 1px solid #94a3b8;
    border-radius: 4px;
    display: inline-block;
    flex: 0 0 auto;
    height: 32px;
    width: 32px;
}
.ipg-plan-list{
	display:grid;
	grid-template-columns:minmax(0, 1fr);
	gap:18px;
	align-items:stretch;
	margin-top:20px;
	padding-inline:var(--ipg-card-mobile-side-gap, 8px);
	box-sizing:border-box;
}
.ipg-product-detail-card{
	width:100%;
	overflow:hidden;
}
.ipg-product-detail-price-row{
	overflow:hidden;
}
.ipg-product-detail-edit{
	float:left;
	width:50%;
}
.ipg-product-detail-price{
	float:right;
	width:50%;
	padding-left:10px;
	text-align:right;
	font-size:16pt;
	font-weight:bold;
}
.ipg-product-whatsapp{
	font-size:9pt;
	text-align:center;
	margin-top:25px;
	margin-bottom:8px;
}
.ipg-product-whatsapp img{
	height:48px;
}
.ipg-product-whatsapp div{
	font-weight:bold;
	color:#308c62;
	margin-top:3px;
}
.ipg-product-detail-sale-alert{
	text-align:center;
	margin-top:25px;
	border-top:1px solid #dee2e6;
	margin-bottom:8px;
}
.ipg-product-detail-security{
	text-align:center;
	margin-top:40px;
}
.ipg-product-detail-security div{
	font-weight:bold;
}
.ipg-product-detail-security img{
	max-height:30px;
}
.ipg-product-full-description{
	padding:10px 15px;
}
.ipg-product-benefits{
	border:1px solid #d7dfe7;
	border-radius:6px;
	overflow:hidden;
	background:#fff;
}
.ipg-product-benefits .accordion-item{
	border:0;
	border-bottom:1px solid #d7dfe7;
	background:#fff;
}
.ipg-product-benefits .accordion-item:last-child{
	border-bottom:0;
}
.ipg-product-benefits .accordion-header{
	margin:0;
	line-height:1.2;
}
.ipg-product-benefits .accordion-button{
	position:relative;
	display:flex;
	align-items:center;
	width:100%;
	min-height:72px;
	margin:0;
	padding:18px 62px 18px 30px;
	border:0;
	border-radius:0;
	background:#fff;
	color:#111827;
	text-align:left;
	font-family:inherit;
	font-size:22px;
	font-weight:700;
	line-height:1.25;
	box-shadow:none;
	cursor:pointer;
}
.ipg-product-benefits .accordion-button b{
	font-weight:700;
}
.ipg-product-benefits .accordion-button:not(.collapsed){
	box-shadow:none!important;
	background-color:var(--ipg-benefit-active-bg)!important;
	color:#00336f;
}
.ipg-product-benefits .accordion-button:focus{
	z-index:1;
	outline:0;
	box-shadow:none!important;
}
.ipg-product-benefits .accordion-button::after{
	content:"";
	position:absolute;
	right:30px;
	top:50%;
	width:16px;
	height:16px;
	border-right:2px solid currentColor;
	border-bottom:2px solid currentColor;
	transform:translateY(-65%) rotate(45deg);
	transition:transform .2s ease-in-out;
}
.ipg-product-benefits .accordion-button:not(.collapsed)::after{
	transform:translateY(-35%) rotate(225deg);
}
.ipg-product-benefits .accordion-collapse{
	display:grid;
	grid-template-rows:0fr;
	transition:grid-template-rows .28s ease;
}
.ipg-product-benefits .accordion-collapse.show{
	grid-template-rows:1fr;
}
.ipg-product-benefits .accordion-body{
	min-height:0;
	overflow:hidden;
	padding:0 30px 0 54px;
	transition:padding .28s ease;
}
.ipg-product-benefits .accordion-collapse.show .accordion-body{
	padding:20px 30px 30px 54px;
}
.ipg-product-benefits .accordion-body pre{
	margin-top:0;
	margin-bottom:0;
	white-space:pre-wrap;
	font-family:inherit;
	font-size:17px;
	line-height:1.45;
	color:#111827;
}
@media only screen and (max-width: 576px){
	.ipg-product-benefits .accordion-button{
		min-height:64px;
		padding:16px 50px 16px 22px;
		font-size:22px;
		line-height:1.2;
	}
	.ipg-product-benefits .accordion-button::after{
		right:24px;
		width:14px;
		height:14px;
	}
	.ipg-product-benefits .accordion-body{
		padding:0 18px 0 24px;
	}
	.ipg-product-benefits .accordion-collapse.show .accordion-body{
		padding:18px 18px 24px 24px;
	}
	.ipg-product-benefits .accordion-body pre{
		font-size:18px;
		line-height:1.45;
	}
	.ipg-product-benefits .accordion-body ul,
	.ipg-product-benefits .accordion-body ol{
		padding-left:1.2em;
		margin-left:0;
	}
}
.ipg-plan-card{
	min-width:0;
	height:100%;
	border:1px solid #d9e1e8;
	border-radius:var(--ipg-card-top-radius, 8px) var(--ipg-card-top-radius, 8px) var(--ipg-card-bottom-radius, 0) var(--ipg-card-bottom-radius, 0);
	background:#fff;
	box-shadow:0 8px 24px rgba(20, 33, 61, 0.08);
	display:flex;
	flex-direction:column;
	overflow:hidden;
}
.ipg-plan-card-header{
	padding:20px 18px 12px 18px;
	text-align:center;
	border-bottom:1px solid #edf1f5;
}
.ipg-plan-card-image{
	width:100%;
	aspect-ratio:16 / 10;
	overflow:hidden;
	background:#f4f6f8;
	border-bottom:1px solid #edf1f5;
}
.ipg-plan-card-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	border-radius:var(--ipg-card-top-radius, 8px) var(--ipg-card-top-radius, 8px) 0 0!important;
}
.ipg-plan-card-title{
	font-size:16pt;
	font-weight:bold;
	line-height:1.25;
	margin-bottom:10px;
}
.ipg-plan-card-price{
	font-size:15pt;
	font-weight:bold;
	line-height:1.25;
}
.ipg-price-display-placeholder{
	visibility:hidden;
}
.ipg-plan-card-body{
	padding:16px 18px 18px 18px;
	display:flex;
	flex-direction:column;
	flex:1;
}
.ipg-plan-subscription,
.ipg-plan-booking{
	text-align:center;
	color:#198754;
	font-weight:bold;
	font-size:10.5pt;
	line-height:1.35;
	margin:0 0 14px 0;
}
.ipg-plan-subscription-comment{
	color:#0d6efd;
	font-weight:normal;
	margin-top:4px;
}
.ipg-plan-description{
	font-size:10.5pt;
	line-height:1.55;
	margin-bottom:18px;
	flex:1;
}
.ipg-plan-description ul,
.ipg-plan-description ol{
	margin:0 0 0 20px;
	padding:0;
}
.ipg-plan-description li{
	margin-bottom:8px;
}
.ipg-plan-card-actions{
	margin-top:auto;
}
.ipg-plan-card-action{
	text-align:center;
	margin-top:0;
}
.ipg-plan-card-action .btn{
	width:100%;
	max-width:260px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	line-height:1.2!important;
	font-family:inherit;
	vertical-align:middle;
	text-decoration:none;
}
.ipg-product-card-second-row{
	display:grid;
	grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
	align-items:center;
	gap:8px;
	width:100%;
	margin-top:9px;
}
.ipg-product-card-second-row-left,
.ipg-product-card-second-row-right{
	min-width:0;
}
.ipg-product-card-second-row-left{
	text-align:left;
}
.ipg-product-card-second-row-right{
	text-align:right;
}
.ipg-product-card-second-row .btn{
	display:inline-flex!important;
	align-items:center;
	justify-content:center;
	min-height:30px;
	max-width:100%;
	padding:4px 8px!important;
	font-size:8.5pt!important;
	line-height:1.2!important;
	white-space:nowrap;
}
.ipg-product-card-second-row .assisted-ordering-card-highlight-action .btn{
	border:1px solid #0d6efd!important;
	background:#fff!important;
	color:#0d6efd!important;
	box-shadow:none!important;
}
.ipg-product-card-second-row .assisted-ordering-card-highlight-action .btn:hover,
.ipg-product-card-second-row .assisted-ordering-card-highlight-action .btn:focus{
	border-color:#0a58ca!important;
	background:#eef5ff!important;
	color:#084298!important;
}
.ipg-product-card-second-row-right .btn{
	margin-left:auto;
}
.ipg-product-card-second-row .assisted-ordering-highlight-action{
	justify-content:flex-start;
	margin:0;
}
.ipg-product-card-second-row span[role="status"]{
	display:block;
	font-size:8.5pt;
	font-weight:700;
	line-height:1.2;
}
.ipg-product-card-second-row span[hidden]{
	display:none!important;
}
.ipg-product-card-second-row button[hidden]{
	display:none!important;
}
.ipg-plan-card-image,
.ipg-normal-product-image{
	position:relative;
}
.ipg-product-card-image-actions{
	position:absolute;
	left:6px;
	right:6px;
	bottom:6px;
	z-index:3;
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	gap:6px;
	pointer-events:none;
}
.ipg-product-card-image-actions > div{
	display:flex;
	align-items:flex-end;
	flex:0 1 48%;
	min-width:0;
	pointer-events:auto;
}
.ipg-product-card-image-actions > div:last-child{
	justify-content:flex-end;
}
.ipg-product-card-image-actions .assisted-ordering-card-cart-action{
	justify-content:flex-end;
}
.ipg-product-card-image-actions .assisted-ordering-highlight-action{
	justify-content:flex-start;
	margin:0;
}
.ipg-product-card-image-actions .btn{
	display:inline-flex!important;
	align-items:center;
	justify-content:center;
	min-height:30px;
	padding:4px 9px!important;
	border:1px solid rgba(255,255,255,.72)!important;
	border-radius:6px!important;
	background:rgba(15,20,27,.62)!important;
	color:#fff!important;
	font-size:8.5pt!important;
	line-height:1.1!important;
	box-shadow:0 2px 7px rgba(0,0,0,.2)!important;
	backdrop-filter:blur(2px);
}
.ipg-product-card-image-actions .btn:hover,
.ipg-product-card-image-actions .btn:focus{
	background:rgba(15,20,27,.82)!important;
}
.ipg-product-card-image-actions span[role="status"]{
	display:block;
	max-width:170px;
	padding:4px 7px;
	border-radius:5px;
	background:rgba(15,20,27,.7);
	color:#fff;
	font-size:8pt;
	font-weight:700;
	line-height:1.15;
}
.ipg-product-card-image-actions [hidden]{display:none!important;}
@media(max-width:560px){
	.ipg-product-card-image-actions{left:4px;right:4px;bottom:4px;gap:4px;}
	.ipg-product-card-image-actions .btn{min-height:26px;padding:3px 6px!important;font-size:7.5pt!important;}
	.ipg-product-card-image-actions span[role="status"]{max-width:120px;padding:3px 5px;font-size:7pt;}
}
.ipg-normal-product-grid{
	display:grid;
	grid-template-columns:minmax(0, 1fr);
	gap:20px;
	align-items:stretch;
	margin-top:20px;
	overflow:visible;
	padding-inline:var(--ipg-card-mobile-side-gap, 8px);
	box-sizing:border-box;
}
.ipg-normal-product-card{
	min-width:0;
	height:100%;
	border:1px solid #d9e1e8;
	border-radius:var(--ipg-card-top-radius, 8px) var(--ipg-card-top-radius, 8px) var(--ipg-card-bottom-radius, 0) var(--ipg-card-bottom-radius, 0);
	background:#eeeeee9e;
	box-shadow:0 8px 24px rgba(20, 33, 61, 0.08);
	display:flex;
	flex-direction:column;
	overflow:hidden;
}
.ipg-normal-product-image{
	width:100%;
	aspect-ratio:16 / 10;
	overflow:hidden;
	background:#f4f6f8;
	border-bottom:1px solid #ddd;
}
.ipg-normal-product-image a{
	display:block;
	width:100%;
	height:100%;
}
.ipg-normal-product-image img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:var(--ipg-card-top-radius, 8px) var(--ipg-card-top-radius, 8px) 0 0!important;
}
.ipg-normal-product-content{
	display:flex;
	flex:1;
	flex-direction:column;
	gap:8px;
	padding:12px;
}
.ipg-normal-product-content .ipg-normal-product-title{
	min-height:0;
	margin:0;
	padding:0;
	font-weight:700;
}
.ipg-normal-product-title a,
.ipg-normal-product-title a:hover,
.ipg-normal-product-title a:focus,
.ipg-normal-product-title a:active{
	color:inherit;
	font-weight:700;
	text-decoration:none!important;
}
.ipg-normal-product-reviews{
	margin:0;
	padding:0;
}
.ipg-normal-product-description{
	font-size:10.5pt;
	line-height:1.5;
	margin:0;
}
.ipg-normal-product-description ul,
.ipg-normal-product-description ol{
	margin:0 0 0 20px;
	padding:0;
}
.ipg-normal-product-footer{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:8px;
	margin-top:auto;
	padding:0;
}
.ipg-normal-product-price{
	width:50%;
	font-weight:bold;
	line-height:1.25;
}
.ipg-normal-product-action{
	width:50%;
	display:flex;
	align-items:center;
	justify-content:flex-end;
	text-align:right;
}
.ipg-normal-product-action .ipg-normal-product-button{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	line-height:1.2!important;
	vertical-align:middle;
	text-decoration:none;
	white-space:normal;
	text-align:center;
}
@media only screen and (max-width:767px){
	.ipg-card-mobile-columns-1{
		grid-template-columns:minmax(0, 1fr)!important;
	}
	.ipg-card-mobile-columns-2{
		grid-template-columns:repeat(2, minmax(0, 1fr))!important;
	}
	.ipg-card-mobile-columns-3{
		grid-template-columns:repeat(3, minmax(0, 1fr))!important;
	}
	.ipg-normal-product-grid.ipg-card-mobile-columns-2 .ipg-normal-product-reviews,
	.ipg-normal-product-grid.ipg-card-mobile-columns-3 .ipg-normal-product-reviews{
		display:none;
	}
}

@media only screen and (min-width:768px){
	.ipg-plan-list,
	.ipg-normal-product-grid{
		display:flex;
		flex-wrap:wrap;
		justify-content:center;
		gap:18px;
		padding-inline:0;
	}
	.ipg-card-desktop-columns-1 > .ipg-plan-card,
	.ipg-card-desktop-columns-1 > .ipg-normal-product-card{
		flex:0 0 100%;
	}
	.ipg-card-desktop-columns-2 > .ipg-plan-card,
	.ipg-card-desktop-columns-2 > .ipg-normal-product-card{
		flex:0 0 calc(50% - 9px);
	}
	.ipg-card-desktop-columns-3 > .ipg-plan-card,
	.ipg-card-desktop-columns-3 > .ipg-normal-product-card{
		flex:0 0 calc(33.333333% - 12px);
	}
	.ipg-card-desktop-columns-4 > .ipg-plan-card,
	.ipg-card-desktop-columns-4 > .ipg-normal-product-card{
		flex:0 0 calc(25% - 13.5px);
	}
	.ipg-card-desktop-columns-5 > .ipg-plan-card,
	.ipg-card-desktop-columns-5 > .ipg-normal-product-card{
		flex:0 0 calc(20% - 14.4px);
	}
	.ipg-card-desktop-columns-6 > .ipg-plan-card,
	.ipg-card-desktop-columns-6 > .ipg-normal-product-card{
		flex:0 0 calc(16.666667% - 15px);
	}
}
.ipg-full-booking-info{
	margin:18px 0;
	padding:14px;
	border:1px solid #d8dee9;
	border-radius:8px;
	background:#fff;
}
.ipg-full-info-panel{
	margin:18px 0;
	padding:14px;
	border:1px solid #d8dee9;
	border-radius:8px;
	background:#fff;
}
.ipg-full-info-title{
	font-weight:bold;
	font-size:14pt;
	color:#172033;
	margin-bottom:10px;
}
.ipg-full-booking-info-grid{
	display:grid;
	grid-template-columns:repeat(4, minmax(0, 1fr));
	gap:8px;
}
.ipg-full-booking-info-item{
	min-width:0;
	padding:8px;
	border:1px solid #edf0f5;
	border-radius:6px;
	background:#fafbfc;
}
.ipg-full-booking-info-item-wide{
	grid-column:span 2;
}
.ipg-full-info-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(145px, 1fr));
	gap:8px;
}
.ipg-full-info-grid-with-map{
	margin-bottom:12px;
}
.ipg-full-info-item{
	min-width:0;
	padding:8px;
	border:1px solid #edf0f5;
	border-radius:6px;
	background:#fafbfc;
}
.ipg-product-trip-map .trip-map-info{
	display:none;
}
.ipg-question-group-spaced{
	margin-top:14px;
}
.ipg-question-group-title{
	font-weight:bold;
	color:#172033;
	margin-bottom:8px;
}
.ipg-question-list{
	display:grid;
	grid-template-columns:1fr;
	gap:10px;
}
.ipg-question-card{
	min-width:0;
	padding:10px;
	border:1px solid #edf0f5;
	border-radius:6px;
	background:#fafbfc;
}
.ipg-question-title{
	font-size:10.5pt;
	font-weight:bold;
	color:#172033;
	overflow-wrap:anywhere;
}
.ipg-question-rule{
	font-size:9pt;
	color:#687386;
	margin-top:2px;
}
.ipg-question-answer-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
	gap:8px;
	margin-top:8px;
}
.ipg-question-answer{
	display:flex;
	align-items:center;
	gap:8px;
	min-width:0;
	padding:8px;
	border:1px solid #e5e7eb;
	border-radius:6px;
	background:#fff;
}
.ipg-question-answer-image{
	width:44px;
	height:44px;
	border-radius:4px;
	object-fit:cover;
}
.ipg-question-answer-color{
	display:inline-block;
	flex:0 0 auto;
	width:34px;
	height:34px;
	border-radius:4px;
	border:1px solid #94a3b8;
}
.ipg-question-answer-content{
	min-width:0;
}
.ipg-checkout-known-location,
.ipg-checkout-trip-summary{
	width:100%;
	padding:8px 10px;
	background:#f7f9fc;
	border:1px solid #d8dee9;
	border-radius:4px;
}
.ipg-checkout-known-location{
	text-align:left;
	margin-bottom:10px;
}
.ipg-checkout-known-location > div:first-child{
	font-weight:bold;
}
.ipg-checkout-trip-summary{
	text-align:center;
	margin-top:10px;
}
.ipg-checkout-trip-summary #checkout_trip_rate{
	font-weight:bold;
	color:#172033;
	font-size:10pt;
	line-height:1.4;
	margin-bottom:4px;
}
.ipg-checkout-weight-summary{
	text-align:center;
	margin-bottom:10px;
}
.ipg-checkout-weight-summary #checkout_weight_rate{
	font-weight:bold;
	color:#172033;
	font-size:10pt;
	line-height:1.4;
	margin-bottom:4px;
}
.ipg-checkout-weight-summary #checkout_weight_summary{
	color:#555;
	font-size:10pt;
	line-height:1.4;
}
.ipg-checkout-weight-total{
	font-weight:bold;
	color:#0A0;
}
.ipg-checkout-feedback{
	float:left;
	text-align:left;
	display:none;
	width:100%;
	margin:0;
	font-size:9pt;
}
.ipg-checkout-back-panel{
	text-align:left;
	width:39%;
	float:left;
}
.ipg-checkout-next-panel{
	text-align:right;
	width:59%;
	float:right;
	max-width:240px;
}
.ipg-checkout-nav-button{
	border:none;
	font-size:12pt;
	padding:10px;
	min-width:80px;
}
#Back_Checkout_Btn{
	color:#fff;
	max-width:40px;
	margin-left:5px;
}
#Next_Checkout_Btn{
	margin-right:5px;
}
.ipg-full-info-label{
	font-size:9pt;
	color:#687386;
}
.ipg-full-info-value{
	font-size:10pt;
	font-weight:bold;
	color:#172033;
	overflow-wrap:anywhere;
}
@media only screen and (max-width: 767px){
	.ipg-plan-card{
		margin:0;
	}
	.ipg-full-booking-info-grid{
		grid-template-columns:repeat(2, minmax(0, 1fr));
	}
	.ipg-full-booking-info-item-wide{
		grid-column:span 2;
	}
}

#_MyBMCheckoutMessageBox,
#_MyBMCheckoutMessageBox.ipg-checkout-closed,
#_MyBMCheckoutMessageBox[hidden]{
	box-sizing:border-box!important;
	position:fixed!important;
	inset:0!important;
	width:100%!important;
	height:100vh!important;
	height:100svh!important;
	display:none!important;
	align-items:center!important;
	justify-content:center!important;
	padding:10px!important;
	z-index:2000!important;
	overflow:hidden!important;
}
#_MyBMCheckoutMessageBox.ipg-checkout-open{
	display:flex!important;
}
#_MyBMCheckoutMessageBox *,
#_MyBMCheckoutMessageBox *::before,
#_MyBMCheckoutMessageBox *::after{
	box-sizing:border-box;
}
#_MyBMCheckoutMessagePanel{
	position:relative!important;
	top:auto!important;
	left:auto!important;
	transform:none!important;
	width:min(800px, 100%)!important;
	min-width:0!important;
	max-width:800px!important;
	max-height:calc(100vh - 20px)!important;
	max-height:calc(100svh - 20px)!important;
	min-height:0!important;
	overflow:hidden!important;
	display:flex!important;
	flex-direction:column!important;
	padding:0!important;
	background:#E3EAF8!important;
	border:1px solid #fff!important;
	border-radius:4px!important;
	margin:0!important;
}
#_MyBMCheckoutMessageHeader{
	flex:0 0 auto!important;
	position:relative!important;
	max-width:100%!important;
	min-height:40px!important;
	padding:0 74px 0 10px!important;
	display:flex!important;
	align-items:center!important;
	line-height:normal!important;
}
#_MyBMCheckoutMessageHeaderTitle{
	min-width:0!important;
	color:#fff!important;
	text-align:left!important;
	font-weight:bold!important;
	overflow:hidden!important;
	text-overflow:ellipsis!important;
	white-space:nowrap!important;
}
#_MyBMCheckoutMessageBox #checkout_total_so_far{
	position:absolute!important;
	top:0!important;
	right:38px!important;
	max-width:45%!important;
	height:40px!important;
	line-height:40px!important;
	overflow:hidden!important;
	text-overflow:ellipsis!important;
	white-space:nowrap!important;
	text-align:right!important;
	font-size:10pt!important;
	font-weight:bold!important;
}
#_MyBMCheckoutMessageBox .bm-checkout-close{
	width:32px!important;
	height:32px!important;
	position:absolute!important;
	top:4px!important;
	right:3px!important;
	cursor:pointer!important;
	z-index:2!important;
}
#_MyBMCheckoutMessageBox #content1{
	flex:1 1 auto!important;
	min-height:0!important;
	overflow:auto!important;
	-webkit-overflow-scrolling:touch!important;
}
#_MyBMCheckoutMessageBox .appformsection > div[id^="checkout_section_"]{
	width:auto!important;
	min-width:0!important;
	max-width:none!important;
	margin:5px!important;
	padding:10px!important;
	background:#fff!important;
	border:1px solid #bbb!important;
	border-radius:0!important;
	box-shadow:none!important;
}
#_MyBMCheckoutMessageBox .checkrow{
	width:100%!important;
	margin:0!important;
	padding:0!important;
}
#_MyBMCheckoutMessageBox .field-col{
	min-width:0!important;
	box-sizing:border-box!important;
}
#_MyBMCheckoutMessageBox label,
#_MyBMCheckoutMessageBox .form-label{
	display:block!important;
	width:100%!important;
	margin:0 0 4px!important;
	padding:0!important;
	line-height:1.25!important;
	font-size:10pt!important;
	color:#111827!important;
	text-align:left!important;
}
#_MyBMCheckoutMessageBox .ipg-question-option-choice{
	align-items:center!important;
	display:flex!important;
	gap:10px!important;
	margin:0!important;
	min-height:42px!important;
	padding:6px 10px!important;
	width:auto!important;
}
#_MyBMCheckoutMessageBox .ipg-question-option-choice input[type="radio"],
#_MyBMCheckoutMessageBox .ipg-question-option-choice input[type="checkbox"]{
	flex:0 0 auto!important;
	margin:0!important;
	width:auto!important;
}
#_MyBMCheckoutMessageBox input.form-control,
#_MyBMCheckoutMessageBox select.form-control,
#_MyBMCheckoutMessageBox textarea.form-control,
#_MyBMCheckoutMessageBox .array-select-control input{
	display:block!important;
	width:100%!important;
	max-width:100%!important;
	min-height:34px!important;
	height:auto!important;
	margin:0!important;
	padding:6px 10px!important;
	border:1px solid #9ca3af!important;
	border-radius:4px!important;
	background:#fff!important;
	color:#111827!important;
	font-size:11pt!important;
	line-height:1.35!important;
	box-shadow:none!important;
}
#_MyBMCheckoutMessageBox select.form-control{
	appearance:auto!important;
	-webkit-appearance:menulist!important;
}
#_MyBMCheckoutMessageBox .invalid-feedback{
	float:none!important;
	display:none;
	width:auto!important;
	margin:0 0 0 4px!important;
	font-size:9pt!important;
	line-height:1.2!important;
}
#_MyBMCheckoutMessageBox .my-radio-panel{
	width:100%!important;
	max-width:100%!important;
	margin:0!important;
	padding:0!important;
	float:none!important;
}
#_MyBMCheckoutMessageBox .my-radio-panel > div{
	margin:8px 0!important;
	padding:10px!important;
	background:#fff!important;
	border-radius:5px!important;
}
#_MyBMCheckoutMessageBox .my-radio-panel label{
	margin:0!important;
	font-size:11pt!important;
	line-height:1.25!important;
}
#_MyBMCheckoutMessageBox #bm_donation_section .ipg-donation-option-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:12px;
}
#_MyBMCheckoutMessageBox #bm_donation_section .ipg-donation-option-grid .my-radio-panel{
	width:auto!important;
	max-width:none!important;
	float:none!important;
	box-sizing:border-box!important;
}
#_MyBMCheckoutMessageBox #bm_donation_section .ipg-donation-option-grid .my-radio-panel > div{
	height:100%;
	margin:0!important;
	box-sizing:border-box;
}
@media only screen and (max-width:576px){
	#_MyBMCheckoutMessageBox #bm_donation_section .ipg-donation-option-grid{
		grid-template-columns:1fr;
	}
}
#_MyBMCheckoutMessageBox .my-booking-session-wrapper label{
	display:grid!important;
	grid-template-columns:1.15em minmax(0, auto)!important;
	align-items:center!important;
	gap:8px!important;
	width:100%!important;
	margin:0!important;
}
#_MyBMCheckoutMessageBox .my-booking-session-wrapper label .my-radio-label{
	margin:0!important;
}
#_MyBMCheckoutMessageBox .checkout-bottom button,
#_MyBMCheckoutMessageBox .ipg-checkout-nav-button{
	display:inline-flex!important;
	align-items:center!important;
	justify-content:center!important;
	min-height:40px!important;
	height:auto!important;
	margin:0!important;
	padding:8px 12px!important;
	border-radius:4px!important;
	font-size:12pt!important;
	font-weight:600!important;
	line-height:1.2!important;
	text-align:center!important;
	white-space:nowrap!important;
}
#_MyBMCheckoutMessageBox .checkout-bottom{
	flex:0 0 auto!important;
	margin:2px 8px 8px!important;
	padding-bottom:4px!important;
	overflow:hidden!important;
}
.ipg-checkout-active-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 5px 10px;
	border-bottom: 1px solid #d7d7d7;
	background: #f5f5f5;
	font-size: 10pt;
	line-height: 1.25;
}

.ipg-checkout-active-item strong {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ipg-checkout-active-item span {
	flex: 0 0 auto;
	color: #555;
	font-size: 9pt;
}

@media (max-width: 520px) {
	.ipg-checkout-active-item {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}
}

.ipg-share-qr-modal .modal-dialog {
	max-width: 460px;
}

.ipg-share-qr-modal .modal-header,
.ipg-share-qr-modal .modal-footer {
	padding: 8px 12px;
}

.ipg-share-qr-modal .modal-body {
	padding: 10px 12px;
}

.ipg-share-qr-modal .modal-body h3 {
	margin: 0 0 4px;
	font-size: 18pt;
	line-height: 1.2;
}

.ipg-share-qr-modal .modal-body img {
	max-width: 270px!important;
}

.ipg-share-qr-modal .modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}

.ipg-share-qr-modal .modal-footer .btn {
	margin: 0!important;
}

@media (max-height: 650px) {
	.ipg-share-qr-modal .modal-body img {
		max-width: 220px!important;
	}
}
.ipg-checkout-contact-choice {
	margin: 2px 0 0;
	color: #c65900;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
}

.ipg-checkout-clear-info-row {
	margin-top: 3px;
	color: #59636e;
	font-size: 12px;
	font-weight: 400;
}

.ipg-checkout-clear-info-row button {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none !important;
	color: #0d6efd !important;
	font: inherit;
	font-weight: 700;
	line-height: inherit;
	text-decoration: underline;
	cursor: pointer;
}

.ipg-checkout-clear-info-row button:hover,
.ipg-checkout-clear-info-row button:focus {
	background: transparent !important;
	box-shadow: none !important;
	color: #084298 !important;
	transform: none !important;
}

.ipg-checkout-clear-info-status:not(:empty) {
	margin-left: 4px;
	color: #146c43;
	font-weight: 600;
}

.ipg-checkout-question-date {
	position: relative;
	display: block;
	width: 100%;
}

.ipg-checkout-question-date-display {
	padding-right: 42px !important;
	cursor: pointer;
}

.ipg-checkout-question-date-native {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.ipg-checkout-question-date::after {
	content: "\1F4C5";
	position: absolute;
	z-index: 1;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	line-height: 1;
	pointer-events: none;
}

.ipg-checkout-question-date:focus-within {
	border-radius: 4px;
	outline: 2px solid rgba(13, 110, 253, .35);
	outline-offset: 1px;
}

.ipg-checkout-question-timezone {
	margin: 0 0 8px;
	color: #59636e;
	font-size: 12px;
	line-height: 1.35;
}
