.DatePickerContainer
{
    width: auto;
    height: fit-content;
    position: relative;
}

.SearchFilterTopIcon
{
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
}

.CheckInOutInput{
    background-color: transparent;
    border: 0;
    outline: none;
    width: 100%;
    height: fit-content;
    position: relative;
    color: #000000;
    cursor: pointer;
}

.DateDayCheckInOut
{
    width: fit-content;
    height: fit-content;
    position: relative;
    color: #000000;
    cursor: pointer;
}

.DatePickerClickHandler
{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    background: #F2F4F7;
    overflow: hidden;
    cursor: pointer;
}

.WhitePanelContentContainer
{
    width: fit-content;
    height: fit-content;
    background-color: rgb(255, 255, 255);
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 99;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.DatePickerDateTable
{
    width: fit-content;
    height: fit-content;
    position: relative;
}

.DatePickerHeader
{
    width: auto;
    height: fit-content;
    position: relative;
    overflow: hidden;
    display: flex;
    user-select: none;
}

.MonthButtonContainer
{
    width: fit-content;
    height: fit-content;
    position: relative;
    margin: auto;
    display: flex;
}

.PreviousMonthButton
{
    position: relative;
    margin-right: auto;
    object-fit: contain;
    object-position: center;
    transform: rotate(90deg);
}

.NextMonthButton
{
    position: relative;
    margin-left: auto;
    object-fit: contain;
    object-position: center;
    transform: rotate(-90deg);
}

.CurrentMonthandYear
{
    border: 0;
    outline: none;
    width: fit-content;
    height: fit-content;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    color: #2b2b2b;
}
.CurrentMonthTable
{
	width: fit-content;
    table-layout: fixed;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.HeaderDays
{
    height: fit-content;
	text-align: center;
	border: 0;
    user-select: none;
    display: table-cell;
}
.HeaderDaysHoliday
{
    height: fit-content;
	text-align: center;
	border: 0;
    user-select: none;
    color: #F36A6A;
    display: table-cell;
}
.DateButton
{
    background-color: white;
    text-align: center;
    font-family: 'Inter Medium';
    user-select: none;
}
.ThisCurrentDate
{
    color: #2494D9;
}

.DateButton.ThisDateIsUnavailable
{
    background: #ed6868;
    color: white;
}

.CurrentSelectedDate
{
    background: #2494D9;
    color: white;
}

.CurrentSelectedDate.ThisDateIsUnavailable
{
    background: #aa0c0c;
    color: white;
}

.DateButtonInvalid
{
    opacity: 30%;
    pointer-events: none;
}

.DateNotAvailable
{
    background: #ff9595;
    color: white;
}

.DateUnselectable
{
    background-color: transparent;
    pointer-events: none;
    border: 0;
}

.InputFieldSelectable:hover, .InputFieldSelectable:active
{
    -webkit-filter: brightness(70%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ApplyButtonContainer
{
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;
}

.ApplyMonthButton
{
    background: #2494D9;
    border: 0;
    width: fit-content;
    height: fit-content;
    margin-left: auto;
    position: relative;
    color: white;
}
.TrCalendarHeader th
{
    font-family: 'Inter Medium';
}

@media screen and (max-width: 560px)
{
    /* .WhitePanelContentContainer
    {
        border-radius: 1vw;
    } */
    .SearchFilterTopIcon
    {
        width: 4vw;
        margin-left: 2vw;
        margin-right: 1.2vw;
    }

    .CheckInOutInput{
        font-size: 2.3vw;
        margin-top: 2vw;
    }

    .DateDayCheckInOut
    {
        font-size: 2.1vw;
        margin-top: 0.2vw;
        margin-bottom: 2vw;
    }

    .DatePickerContainer
    {
        border-radius: 1vw;
    }

    .DatePickerClickHandler
    {
        border-radius: 1vw;
    }
    
    .DatePickerDateTable
    {
        /* margin-bottom: 2vw; */
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .DatePickerHeader
    {
        margin-top: 3vw;
        margin-bottom: 1vw;
        margin-left: 0.5vw;
        margin-right: 0.5vw;
        /* border-radius: 1vw; */
    }
    .MonthButtonContainer
    {
        margin-right: 2vw;
    }
    .PreviousMonthButton, .NextMonthButton
    {
        width: 2.3vw;
        height: 2.3vw;
        margin-top: auto;
        margin-bottom: auto;
    }
    .NextMonthButton
    {
        margin-left: 1vw;
    }
    .CurrentMonthandYear
    {
        font-size: 2.9vw;
        margin-left: 3.7vw !important;
    }
    .CurrentMonthTable
    {
        font-size: 2.5vw;
        margin-top: 1vw;
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .HeaderDays
    {
        width: 6vw;
        padding: 1vw 0px;
    }
    .HeaderDaysHoliday
    {
        width: 6vw;
        padding: 1vw 0px;
    }
    
    .DateButton
    {
        width: 6vw;
        height: 6vw;
        border-radius: 0.8vw;
    }
    .DateButton p
    {
        width: fit-content;
        margin: auto;
        font-size: 2.3vw;
    }
    .ApplyButtonContainer
    {
        margin-top: 2vw;
        margin-bottom: 3vw;
    }
    .ApplyMonthButton
    {
        padding: 1.8vw 4vw;
        margin-right: 4vw;
        font-size: 2.5vw;
    }
    .DateUnselectable
    {
        border-radius: 0.8vw;
    }
    
}

@media screen and (max-width: 1200px)  and (min-width: 561px)
{
    /* .WhitePanelContentContainer
    {
        border-radius: 0.8vw;
    } */
    .SearchFilterTopIcon
    {
        width: calc(21px + 0.5vw);
        margin-left: calc(10px + 0.5vw);
        margin-right: calc(8px + 0.5vw);
    }

    .CheckInOutInput
    {
        font-size: calc(9px + 0.5vw);
        margin-top: 2vw;
    }

    .DateDayCheckInOut
    {
        font-size: calc(8px + 0.5vw);
        margin-top: 0.2vw;
        margin-bottom: 2vw;
    }

    .DatePickerContainer
    {
        border-radius: 1vw;
    }

    .DatePickerClickHandler
    {
        border-radius: 1vw;
    }
    
    .DatePickerDateTable
    {
        margin-bottom: calc(1px + 0.5vw);
        padding-left: calc(1px + 0.5vw);
        padding-right: calc(1px + 0.5vw);
    }

    .DatePickerHeader
    {
        margin-top: calc(10px + 0.5vw);
        /* margin-bottom: calc(0px + 0.5vw); */
        margin-left: calc(0.5vw);
        margin-right: calc(0.5vw);
        /* border-radius: calc(1px + 0.5vw); */
    }
    .MonthButtonContainer
    {
        margin-right: calc(0.5vw);
    }
    .PreviousMonthButton, .NextMonthButton
    {
        width: calc(9px + 0.5vw);
        height: calc(9px + 0.5vw);
        margin-top: auto;
        margin-bottom: auto;
    }
    .NextMonthButton
    {
        margin-left: 0.5vw;
    }
    .CurrentMonthandYear
    {
        font-size: calc(10px + 0.5vw);
        margin-left: calc(5px + 0.5vw) !important;
    }
    .CurrentMonthTable
    {
        font-size: calc(8px + 0.5vw);
        margin-top: calc(2px + 0.5vw);
        padding-left: calc(0.5vw);
        padding-right: calc(0.5vw);
    }
    .HeaderDays
    {
        width: calc(30px + 0.5vw);
        padding: 1vw 0;
    }
    .HeaderDaysHoliday
    {
        width: calc(30px + 0.5vw);
        padding: 1vw 0;
    }
    
    .DateButton
    {
        width: calc(30px + 0.5vw);
        height: calc(30px + 0.5vw);
        /* padding: calc(2px + 0.5vw) 0px; */
        border-radius: calc(1px + 0.3vw);
    }
    .DateButton p
    {
        width: fit-content;
        margin: auto;
        font-size: calc(8px + 0.5vw);
    }
    .ApplyButtonContainer
    {
        margin-bottom: calc(6px + 0.5vw);
        margin-top: calc(0px + 0.5vw);
    }
    .ApplyMonthButton
    {
        padding: calc(4px + 0.5vw) calc(10px + 0.5vw);
        margin-right: calc(5px + 0.5vw);
        font-size: calc(9px + 0.5vw);
    }
    .DateUnselectable
    {
        border-radius: 2px;
    }    
}

@media screen and (min-width: 1201px)
{
    /* .WhitePanelContentContainer
    {
        border-radius: 10px;
    } */
    .SearchFilterTopIcon
    {
        width: 30px;
        margin-left: 12px;
        margin-right: 15px;
    }

    .CheckInOutInput
    {
        font-size: 17px;
        margin-top: 15px;
    }

    .DateDayCheckInOut
    {
        font-size: 14px;
        margin-top: 5px;
        margin-bottom: 15px;
    }

    .DatePickerContainer
    {
        border-radius: 10px;
    }
    .DatePickerClickHandler
    {
        border-radius: 10px;
    }

    .DatePickerDateTable
    {
        /* margin-bottom: 10px; */
        padding-left: 0px;
        padding-right: 0px;
    }

    .DatePickerHeader
    {
        margin-top: 12px;
        margin-bottom: 8px;
        margin-left: 1px;
        margin-right: 1px;
    }

    .MonthButtonContainer
    {
        margin-right: 15px;
    }

    .PreviousMonthButton, .NextMonthButton
    {
        width: 12px;
        height: 12px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .NextMonthButton
    {
        margin-left: 5px;
    }
    .CurrentMonthandYear
    {
        font-size: 15.5px;
        margin-left: 15px !important;
    }
    .CurrentMonthTable
    {
        font-size: 12px;
        margin-top: 1px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .HeaderDays
    {
        width: 35px;
        padding: 5px 0px;
    }
    .HeaderDaysHoliday
    {
        width: 35px;
        padding: 5px 0px;
    }
    
    .DateButton
    {
        width: 35px;
        height: 35px;
        border-radius: 3px;
    }
    .DateButton p
    {
        width: fit-content;
        margin: auto;
        font-size: 13px;
    }
    .ApplyButtonContainer
    {
        margin-bottom: 12px;
        margin-top: 10px;
    }
    .ApplyMonthButton
    {
        padding: 8px 18px;
        margin-right: 15px;
        font-size: 13px;
    }
    .DateUnselectable
    {
        border-radius: 2px;
    }
}

/* ---------------------------------------- Transfer Time ---------------------------------------- */

.PaymentTransferTimeSelectionContainer, .PaymentTransferTypeHeaderContainer
{
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;
}
.PaymentTransferTypeHeaderText
{
    width: fit-content;
    height: fit-content;
    margin: auto;
    
    position: relative;
    color: #a8a8a8;
}
.PaymentTransferTypeHeaderTextSelected
{
    color: #141414;
}
.PaymentTransferTimeHourMinutesScrolParent
{
    position: relative;
    overflow: hidden;
    -webkit-mask-box-image: linear-gradient(to top, transparent, rgb(255, 255, 255),rgba(255, 255, 255, 0.8),transparent);
    cursor: pointer;
}
.PaymentTransferTimeHourMinutesScrolWrapper
{
    width: 100%;
    -webkit-mask-box-image: linear-gradient(to top, transparent, rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255),  rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255),rgb(255, 255, 255),rgb(255, 255, 255),rgba(255, 255, 255, 0.8),transparent);
}
.PaymentTimeScrollable
{
    width: 90%;
    position: relative;
    display: flex;
}
.PaymentTimeText
{
    width: fit-content;
    height: fit-content;
    text-align: center;
    color: rgb(39, 39, 39);
    position: relative;
    margin: auto;
}
.SelectedTimeBorder
{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    top: 0;
    flex-direction: column;
    pointer-events: none;
}
.SelectedTimeUpSide
{
    width: 100%;
    height: 40%;
    position: relative;
    margin-bottom: auto;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(237,237,237,0.4) 100%);
}

.ThisTypeTimeSelected .SelectedTimeUpSide
{
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(213,213,213,0.2) 0%, rgba(237,237,237,0.4) 100%);
}

.SelectedTimeDownSide
{
    width: 100%;
    height: 40%;
    position: relative;
    margin-top: auto;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0.2) 0%, rgba(237,237,237,0.5) 100%);
}

.ThisTypeTimeSelected .SelectedTimeUpSide
{
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(213,213,213,0.2) 0%, rgba(237,237,237,0.5) 100%);
}
.PaymentHourAndMinutesDividerWrapper
{
    width: fit-content;
    position: relative;
    overflow: hidden;
    display: flex;
}
.PaymentTransferTimeHourMinutesScrollAllContentWrapper
{
    width: fit-content;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
}
.TransferTimeAMPMScroll
{
    width: fit-content;
    height: 20%;
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
}
@media screen and (max-width: 560px)
{
    .PaymentTransferTimeSelectionContainer
    {
        margin-top: 0.5vw;
    }
    .PaymentTransferTypeHeaderContainer
    {
        padding: 1.5vw 0;
        border-bottom: 0.5vw solid rgba(206, 206, 206, 0.3);
    }
    .PaymentTransferTypeHeaderText
    {
        font-size: 2.5vw;
    }
    .PaymentTimeText
    {
        font-size: 2.5vw;
        margin-right: 1.8vw;
    }
    .PaymentTransferTimeHourMinutesScrolParent
    {
        width: 9vw;
        height: 30vw;
        padding-top: 1vw;
        padding-bottom: 1vw;
    }
    .SelectedTimeUpSide
    {
        border-bottom: 0.5vw solid rgb(232, 232, 232);
    }
    .SelectedTimeDownSide
    {
        border-top: 0.5vw solid rgb(232, 232, 232);
    }
    .PaymentHourAndMinutesDividerWrapper
    {
        height: 30vw;
        padding-top: 1vw;
        padding-bottom: 1vw;
    }
    .TransferTimeAMPMScroll
    {
        margin-right: 1vw;
    }
}

@media screen and (max-width: 1200px)  and (min-width: 561px)
{
    .PaymentTransferTimeSelectionContainer
    {
        margin-top: calc(0.5vw);
    }
    .PaymentTransferTypeHeaderContainer
    {
        padding-top: calc(2px + 00.5vw);
        padding-bottom: calc(2px + 00.5vw);
        border-bottom: 2px solid rgba(206, 206, 206, 0.3);
    }
    .PaymentTransferTypeHeaderText
    {
        font-size: calc(7px + 00.5vw);
    }
    .PaymentTimeText
    {
        font-size: calc(8px + 00.5vw);
        margin-right: calc(2px + 00.5vw);
    }
    .PaymentTransferTimeHourMinutesScrolParent
    {
        width: calc(42px + 00.5vw);
        height: calc(140px + 00.5vw);
        padding-top: calc(5px + 00.5vw);
        padding-bottom: calc(5px + 00.5vw);
    }
    .SelectedTimeUpSide
    {
        border-bottom: 2px solid rgb(232, 232, 232);
    }
    .SelectedTimeDownSide
    {
        border-top: 2px solid rgb(232, 232, 232);
    }
    .PaymentHourAndMinutesDividerWrapper
    {
        height: calc(140px + 00.5vw);
        padding-top: calc(5px + 00.5vw);
        padding-bottom: calc(5px + 00.5vw);
    }
    .TransferTimeAMPMScroll
    {
        margin-right: calc(1px + 00.5vw);
    }
}

@media screen and (min-width: 1201px)
{
    /* .PaymentTransferTimeSelectionContainer
    {
        margin-top: 10px;
    } */
    .PaymentTransferTypeHeaderContainer
    {
        padding-top: 5px;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(206, 206, 206, 0.3);
    }
    .PaymentTransferTypeHeaderText
    {
        font-size: 13px;
    }
    .PaymentTimeText
    {
        font-size: 13px;
        margin-right: 5px;
    }
    .PaymentTransferTimeHourMinutesScrolParent
    {
        width: 50px;
        height: 150px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .SelectedTimeUpSide
    {
        border-bottom: 1.2px solid rgb(232, 232, 232);
    }
    .SelectedTimeDownSide
    {
        border-top: 1.2px solid rgb(232, 232, 232);
    }
    .PaymentHourAndMinutesDividerWrapper
    {
        height: 150px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .TransferTimeAMPMScroll
    {
        margin-right: 5px;
    }
}
