.modal
{
    position: fixed;
    bottom: 0;
    padding: 20px;
    display: grid;
    gap: 20px;
    left: 0;
    background: white;
    right: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    min-height: 30%;
    display: flex;
    transition: 0.5s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);
    transform: translateY(1000px);
    flex-direction: column;
    z-index: 150;
    box-shadow: 0px -7px 15px 0px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 85%;
}
#locationWidget
{
    
}
.modalOverlay
{
    position: fixed;
    inset: 0;
    opacity: 0;
    background-color: var(--blackOp);
    z-index: 149;
    transition: 0.35s;
    transform: translateY(1000px);
    backdrop-filter: blur(5px);
}
.modalTitle
{
    margin: 0;
    font-weight: 500;
}
.items
{
    display: grid;
    align-items: end;
    align-content: center;
    border-radius: 5px;
    background-color: white;
    overflow: hidden;
}
.item
{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
    transform: scale(0);
  }
  
  @keyframes ripple-effect {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }
  #calendar
  {
    display: none;
  }
.item.show {
    opacity: 1;
    transform: translateY(0);
}
.item span
{
    font-size: 12px;
}
.inputArea
{
    border-radius: var(--maxRadius);
    background-color: white;
    padding-left: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--primaryShadow);

}
.inputArea input
{
    padding: 10px;
    padding-block: 15px;
    padding-left: 15px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: var(--maxRadius);
    font-size:14px
}
.place
{
    display: grid;
    width: 100%;
}
.placeTitle {
    font-weight: 500;
    font-size: 17px;
}
.placeText {
    font-weight: 300;
    font-size: 14px;
    opacity: 0.55;
    max-width: 100%;
}
.flatpickr-calendar, .flatpickr-rContainer, .flatpickr-weekdays, .flatpickr-weekdaycontainer,.dayContainer,.flatpickr-days {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .litepicker .container__main {
    width: 100% !important;
  }
  .container__days
  {
    justify-content: end !important;
  }
  .litepicker .container__days,.container__months,.month-item {
    
    width: 100% !important;
  }
  .litepicker-day {
    aspect-ratio: 1 / 1; /* Kare */
  }
  .month-item-weekdays-row 
  {
    width: 100%;
  }
  .day-item,.month-item-weekdays-row div
  {
    width: calc(100% / 7) !important;
    height: calc(100vw / 11);
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: 500;
  }
  .flatpickr-months .flatpickr-month,.flatpickr-current-month .flatpickr-monthDropdown-months,.flatpickr-weekdays,.flatpickr-weekday
  {
    background: var(--primaryColor) !important;
  }
  .flatpickr-weekday
  {
    color: white !important;
    font-weight: 400 !important;
    opacity: 0.75 !important;
  }
  .flatpickr-monthDropdown-months, .numInput
  {
    font-size: 14px !important;
  }
  .flatpickr-current-month
  {
    margin-top: 5px;
  }
  .flatpickr-day.selected
  {
    background: var(--primaryColor) !important;
    border: none !important;
  }
  .flatpickr-weekdays
  {
    height: 45px !important;
  }
.carType
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: var(--primaryRadius);
}
.carType img
{
    width: 40%;
    height: auto;
}
.carDetails
{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.carType h4
{
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.phoneError
{
    border: 1px Solid #ff50507d;
}
.maxPerson
{
    display: flex;
    align-items: center;
    gap: 4px;
}
.maxPerson span
{
    font-weight: 400;
    font-size: 14px;
}
.maxPersonText
{
    margin-right: 7px;
}
.carFeatures
{
    display: flex;
    align-items: center;
}
.carPrice
{
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
}
.carRight
{
    display: grid;
    gap: 10px;
}
.carPrice span
{
    font-size: 12px;
    font-weight: 300;
    opacity: 0.50;
}
.carPrice h4
{
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}
#reservationWidget
{
    gap: 0;
}
#reservationWidget h4
{
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
}
#reservationWidget button
{
    margin-top: 20px;
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: var(--primaryShadow);
}
.r1
{
    display: flex;
    align-items: center;
}
.r1 div 
{
    display: grid;
    min-width: 230px;
}
.r1 img 
{
    height: 140px;
    transform: translateX(-40px);
}
.r1 div span:first-child
{
    font-weight: 600;
    opacity: 0.35;
}
.r1 div span:last-child
{
    font-weight: 800;
    font-size: 20px;
}
.blackFlexBlock
{
    background-color: var(--primaryColor);
    padding: 10px;
    padding-block:15px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.blackFlexBlock svg
{
    min-width: 20px;
    min-height: 20px;
}
.modalSectionColumn
{
    display: grid;
}
.modalSectionTitle
{
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}
.modalSectionText
{
    opacity: 0.75;
    font-size: 14px;
}
.r2
{
    background-color: #f8f8f8;
    /* box-shadow: var(--primaryShadow); */
    border-radius: var(--primaryRadius);
    padding: 20px;
    display: grid;
    gap: 20px;
}
.r2DateAndPersons
{
    border-radius: var(--primaryRadius);
    overflow: hidden;
    display: grid;
    gap: 7px;
}
.modalSectionFlex
{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.r2DateAndPersons .whiteFlexBlock
{
    width: 50%;
}
.r2Locations
{
    border-radius: var(--primaryRadius);
    overflow: hidden;
    display: flex;
    gap: 20px;
}
.locationPointWidgets
{
    display: grid;
    justify-items: center;
    gap: 5px;
    padding-bottom: 10px;
}
.resLocations
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.locationPointWidgets div
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrivalWidget {
    position: relative;
    height: 40px;
    width: 6px;
    background: var(--primaryColor);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .arrivalWidget::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #696969 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmerAnim 1.5s linear infinite;
  }
  
  @keyframes shimmerAnim {
    0% {
      top: -100%;
    }
    100% {
      top: 100%;
    }
  }
.whiteFlexBlock
{
    background-color: white;
    padding: 10px;
    padding-block:15px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.flexBlock
{
    display: flex;
    gap: 10px;
    align-items: center;
}
.r2DashedLine
{
    border-bottom: 1px dashed black;
    margin-left: 10px;
    margin-right: 10px;
    background-color: white;
}
#paymentDetailCashPaymentService
{
    display: none;
}
.label
{
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 5px;
    overflow: hidden;
    padding-inline: 15px;
}
.labelColumn
{
    display: grid;
    width: 100%;
}
.labelInput
{
    padding: 15px;
    border: none;
    outline: none;
    width: calc(100% - 20px);
    font-size: 14px;
    background-color: transparent;
}
.personalInformations
{
    display: grid;
    gap: 10px;
}
.twoLabel
{
    display: flex;
    gap: 10px;
}
.paymentTotal
{
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: var(--primaryRadius);
}
.flexjcb
{
    display: flex;
    justify-content: space-between;
}
.priceItem
{
    font-size: 13px;
    opacity: 0.75;
}
.smallPrice
{
    font-size: 13px;
    font-weight: 500;
    opacity: 0.75;
}
.paymentTotal hr 
{
    opacity: 0.15;
}
.flexjcb
{

}
.subTotalText
{
    font-weight: 600;
}
.bigPrice
{
    font-weight: 600;
}
.paymentMethod
{
    padding: 10px;
    border-radius: var(--primaryRadius);
    background-color: #f8f8f8;
    display: grid;
    position: relative;
}
.paymentMethodTitle
{
    font-weight: 600;
    font-size: 14px;
}
.paymentMethodText
{
    font-weight: 400;
    font-size: 12px;
}
.paymentTypeCheck {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .paymentTypeCheck input[type="checkbox"] {
    display: none;
  }
  
  .custom-checkbox {
    display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid rgb(10 10 10);
        background-color: white;
        color: transparent;
        font-size: 16px;
        transition: all 0.2s ease;
  }
  
  .paymentTypeCheck input[type="checkbox"]:checked + .custom-checkbox {
    background-color: var(--primaryColor);
    color: white;
  }
  .r1 img {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.r1 img.fade-out {
    opacity: 0;
    transform: translateX(20px);
}

.r1 img.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-left {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.fade-left-hide {
    opacity: 0;
    transform: translateX(40px);
}

.fade-left-show{
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateX(0) translateY(-15px);
    position: relative;
}

.fade-right-hide {
    opacity: 0;
    transform: translateX(-40px) translateY(-15px);
}

.fade-right-show{
    opacity: 1;
    transform: translateX(0) translateY(-15px);
}
.paymentSubText span
{
    font-size: 13px;
}
.paymentDetailsArea
{
    font-weight: 600;
    font-size: 17px;
    opacity: 0.75;
}
.paymentDetailsArea span:first-child
{
    font-weight: 600;
    font-size: 18px;
}
.creditCardArea
{
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: var(--primaryRadius);
    position: relative;
    display: grid;
    background: #ededed;
    margin-top: 20px;
    background: linear-gradient(146deg, rgba(237, 237, 237, 1) 0%, rgba(207, 207, 207, 1) 100%);
}
.cardNumberText
{
    display: flex;
    gap: 10px;
    font-size: 25px;
    align-items: center;
}
.cardCenter
{
    margin-top: 20px;
}
.cardChip
{
    position: absolute;
    width: 40px;
    height: 50px;
    right: 20px;
    top: 20px;
    opacity: 0.5;
}
.cardNumberText span
{
    display: flex;
    height: 28px;
}
#cardNumberEndText.filled
{
    font-size: 18px;
    height: auto !important;
}
.creditCardLogo1
{
    position: absolute;
    left: 20px;
    top: 20px;
}
.withTitle
{
    padding-block: 10px;
    min-height: 45px;
}
.withTitle input
{
    padding: 0px;
    padding-top: 3px;
    font-size: 12px;
    opacity: 0.75;
}
.withTitle .labelColumn
{
    padding-left: 15px;
}
.labelTitle
{
    font-size: 13px;
    font-weight: 500;
}
.cardHolder,.cardCvv
{
    display: grid;
    margin-top: 20px;
}
.cardHolder span, .cardCvv span
{
    font-size: 13px;
}
.cardHolder span:first-child, .cardCvv span:first-child
{
    font-weight: 500;
}
#cardHolderText,#cvvText
{
    font-weight: 600;
    font-size: 14px;
}
#thru
{
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
#creditCardWidget
{
}