

:root {
    --timeline-start-width-desktop: 100px;
    --timeline-start-width-mobile: 80px;
    --timeline-normal-width-desktop: 200px;
    --timeline-normal-width-mobile: 160px;
}



.custom-scrollbar2 {
    --scrollbar-size: 48px;
    
    overflow-y: auto;
    overflow-x: auto;
    scrollbar-width: thick; /* Make scrollbar fat in Firefox */
}

/* For WebKit browsers (Chrome, Safari) */
.custom-scrollbar2::-webkit-scrollbar {
    width: var(--scrollbar-size); /* Fat scrollbar width */
    height: var(--scrollbar-size); /* Fat scrollbar height for horizontal */
    margin: 0;
}
.custom-scrollbar2::-webkit-scrollbar-thumb {
    background-color: transparent; /* Gray thumb */
    border-radius: 4px; /* Optional: rounded corners */
}

.custom-scrollbar2::-webkit-scrollbar-track {
    background-color: transparent; /* Light gray track */
}

.custom-scrollbar2::-webkit-scrollbar-button:hover {
    border-radius: 50%;
    background-color: #43A4D7;
}

.custom-scrollbar2::-webkit-scrollbar-button:active {
    border-radius: 50%;
    background-color: white;
}

/* Horizontal scrollbar buttons */
.custom-scrollbar2::-webkit-scrollbar-button:horizontal:decrement {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='%23666' viewBox='0 0 16 16'%3e%3cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0m3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: var(--scrollbar-size) var(--scrollbar-size);
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

.custom-scrollbar2::-webkit-scrollbar-button:horizontal:increment {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='%23666' viewBox='0 0 16 16'%3e%3cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: var(--scrollbar-size) var(--scrollbar-size);
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

/* Disabled states using classes that will be toggled by JavaScript */
.custom-scrollbar2.scroll-at-start::-webkit-scrollbar-button:horizontal:decrement {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='%23ccc' viewBox='0 0 16 16'%3e%3cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0m3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z'/%3e%3c/svg%3e");
    cursor: not-allowed;
}

.custom-scrollbar2.scroll-at-end::-webkit-scrollbar-button:horizontal:increment {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='%23ccc' viewBox='0 0 16 16'%3e%3cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z'/%3e%3c/svg%3e");
    cursor: not-allowed;
}

/* Hover effects */
.custom-scrollbar2::-webkit-scrollbar-button:hover {
    cursor: pointer;
}


.breadcrumb-top {
    margin-left: 10px;
    margin-right: 10px;

    top: 15vh;
}

.back-next button {
    position: static;
}

.back-next button:nth-child(1) {
    left: 5vw;
    margin-right: 10px;
}

.back-next button:nth-child(2) {
    right: 5vw;
    margin-left: 10px;

}

/* Add this CSS to your existing stylesheet */


.grid,
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
    justify-content: space-between;
}

.grid-2 {
    gap: 20px;
}


button:after {
    position: static;
}


.grid-2-columns,
.grid-3-columns {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
}






.swiper-container {
    display: none;
    width: 800px;
    max-width: 80vw;
    /* border: 1px solid black; */
    margin: auto;
    overflow-y: auto;
}

.swiper-wrapper {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: visible;
    height: 70px;
    justify-content: center;
}

.swiper-slide {
    width: var(--timeline-normal-width-mobile);
    height: 100%;
    position: relative;
}

.swiper-slide__left {
    width: var(--timeline-start-width-mobile) !important;
}

.time-line-box {
    height: 0px;
    padding: 10px;
    width: 100%;
}

.time-line-box .timeline {
    list-style-type: none;
    display: flex;
    padding: 0;
    text-align: center;
}

.timestamp:hover{
    cursor: pointer;
}

.time-line-box .timestamp {
    margin: auto;
    margin-bottom: 5px;
    padding: 0px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-line-box .status {
    padding: 0px 10px;
    display: flex;
    justify-content: center;
    border-top: 2px solid #95ADBD;
    width: var(--timeline-normal-width-mobile) ! important;
    position: relative;
    transition: all 200ms ease-in;
}

.time-line-box .status__left {
    padding: 0px 10px;
    display: flex;
    justify-content: flex-end;
    border-top: 2px solid #95ADBD;
    width: var(--timeline-start-width-mobile) ! important;
    position: relative;
    transition: all 200ms ease-in;
}

.time-line-box .status__right {
    padding: 0px 10px;
    display: flex;
    justify-content: flex-end;
    border-top: 2px solid #95ADBD;
    width: var(--timeline-start-width-mobile) ! important;
    position: relative;
    transition: all 200ms ease-in;
}

.time-line-box .status span {
    padding-top: 8px;
}

.time-line-box .status__left small {
    content: '';
    width: 12px;
    height: 12px;
    cursor: pointer;
    background-color: #95ADBD;
    border-radius: 12px;
    /* border: 2px solid #95ADBD; */
    position: absolute;
    left: 0%;
    top: 0%;
    transform: translateY(-50%) translateX(-110%);
    transition: all 200ms ease-in;
}

.status__left__success small,
.time-line-box-success .status__right small {
    background-color: rgb(42, 139, 235) !important;
    color: white !important;
    height: 20px !important;
}

.status__left__success small,
.time-line-box-success .status__right small {
    padding-bottom: 15px !important;
    padding-left: 5px !important;
    padding-right: 15px !important;
}

.time-line-box-success .status__right,
.time-line-box-success .status,
.time-line-box-success .status__left {
    border-top: 2px solid rgb(42, 139, 235);
    content: 'x' !important;
    color: white !important;
    position: relative;
}

.time-line-box-success .status__right small {
    right: -60% !important;
}

.time-line-box .status__right small {
    content: '';
    width: 12px;
    height: 12px;
    cursor: pointer;
    background-color: #95ADBD;
    border-radius: 12px;
    /* border: 2px solid #95ADBD; */
    position: absolute;
    right: -20%;
    top: 0%;
    transform: translateY(-50%) translateX(-100%);
    transition: all 200ms ease-in;
}

.time-line-box .status small {
    content: '';
    width: 12px;
    height: 12px;
    cursor: pointer;
    background-color: #95ADBD;
    border-radius: 12px;
    /* border: 2px solid #95ADBD; */
    position: absolute;
    left: 50%;
    top: 0%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 200ms ease-in;
}


.cat {
    position: relative;
    left: -40%;
    display: inline-block;
}

.timestamp {
    width: 100%;
    /* Ensure the timestamp takes up the full width */
}


/* Adjust the swiper-slide to accommodate the padding */

.swiper-slide {
    box-sizing: border-box;
}

.background-active-timeline {
    background: #43A4D7 !important;
}

.font-color-active-timeline {
    color: #43A4D7;
    text-decoration: underline;
}


.box-width {
    margin: 30px auto 0 !important;
    width: 80vw !important;
}

.box-width2 {
    margin: 30px auto 0 !important;
    max-width: 70vw;
}

.box-width3 {
    margin: 30px auto 0 !important;
    max-width: 70vw
}

:root {
    --timeline-start-width-desktop: 100px;
    --timeline-start-width-mobile: 60px;
    --timeline-normal-width-desktop: 200px;
    --timeline-normal-width-mobile: 120px;
    --navbar-height: 5vh;
    --back-next-button: var(--timeline-start-width-desktop);
}

.textarea-size {
    resize: none !important;
    overflow-y: auto;
}

.description {
    margin-bottom: 5px;
}

input[type="time"] {
    width: 100%;
    /* Make the input boxes 100% wide within the .box */
}

.breadcrumb-top {
    display: flex;
    justify-content: center;
    top: 15vh;
}

.back-next button {
    width: 200px;
    position: static;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.back-next--create button {
    width: 200px;
    padding: 10px 20px;

}

.back-next button:nth-child(1) {
    left: 5vw;
}

.back-next button:nth-child(2) {
    right: 5vw;
}

.form-group-width {
    margin: auto;
    width: 100% !important;
}

/* Add this CSS to your existing stylesheet */

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="email"],
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #2e4b59;
    background-color: transparent;
    /* Make the background transparent */
    transition: border-color 0.3s;
}

.form-group2 input {
    margin-bottom: 0px !important;
    padding: 6px 30px !important;
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group textarea:focus,
.form-group input[type="file"]:focus {
    border-color: #43A4D7;
}

.form-group .description {
    font-size: 0.875rem;
    color: #6B6B6B;
}

.form-group .small-detail {
    font-size: 0.875rem;
}

.event-details-form {
    max-width: 80%;
    margin: 0 auto;
    text-align: left;
    padding: 0 auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input[type="date"] {
    width: 48%;
    display: inline-block;
    margin-right: 2%;
}

.form-group input[type="time"] {
    width: 48%;
    display: inline-block;
    margin-right: 2%;
}

.form-group .date-label {
    display: inline-block;
    width: 48%;
    margin-right: 2%;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    white-space: pre-wrap;
}

.form-group input[type="file"] {
    padding: 5px;
    border: none;
    background-color: transparent;
    box-shadow: none;
    outline: none;
}

.form-group input[type="file"]:hover {
    border: 1px solid #43A4D7;
}


/* Style for the banner upload container */

.featured-events {
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
}

.grid,
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
    justify-content: space-between;
}

.grid-2 {
    gap: 20px;
}

.selectable-box {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 0px 10px;
    width: 30%;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    color: #2e4b59;
    /* Set text color to black */
}

.selectable-box:hover {
    transform: scale(1.05);
}


.scroll-images {
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
    text-align: center;
    /* height: 275px; */
    margin: 0 0px ;
}

.scroll-images-text {
    width: 160px;
}

.scroll-images.focused {
    opacity: 1;
    transform: scale(1.2);
}

.selectable-image {
    border-radius: 20px;
    transition: transform 0.3s;
    object-fit: cover;
    object-fit: cover; 
    border-radius: 20px; 
    height: 250px; 
    width: 180px;
}

.v {
    overflow: visible;
    width: 230px;
    background: transparent;
    border: 2px solid rgb(90, 150, 230);
    border-radius: 40px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.event {
    overflow: visible;
    width: fit-content;
    min-width: 220px;
    background: transparent;
    border: 2px solid rgb(242, 93, 123);
    border-radius: 40px;
    position: relative;
    font-size: 0.9rem;
    padding-bottom: 20px;
    padding-left: 10%;
    padding-right: 10%;
}


.event_extra {
    border-radius: 20px;
    margin: auto;
    width: 80%;
    padding: 5px;
}

.event_1 {
    margin-bottom: 3rem;
    overflow: visible;
    width: 300px;
    height: 380px;
    background: transparent;
    border: 2px solid rgb(55, 186, 66);
    border-radius: 40px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.event_2 {
    margin-bottom: 3rem;
    overflow: visible;
    width: 300px;
    height: 380px;
    background: transparent;
    border: 2px solid rgb(42, 139, 235);
    border-radius: 40px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.event_status_1 {
    background-color: #bfc4c7;
    color: #fff;
    border-radius: 25px;
    padding-left: 30px;
    padding-right: 30px;
    width: 20%;
}

.event_status_2 {
    background-color: #78da1d;
    color: #fff;
    border-radius: 25px;
    padding-left: 30px;
    padding-right: 30px;
    width: 20%;
}

.event_status_3 {
    background-color: #43A4D7;
    color: #fff;
    border-radius: 25px;
    padding-left: 27px;
    padding-right: 30px;
    width: 20%;
    text-align: center;
}

.event_head {
    max-width: 5rem;
    position: absolute;
    top: -2.0rem;
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Center horizontally */
    z-index: 2;
    /* Ensure it's above other content */
}

.event_head_container {
    text-align: center;
    position: relative;
    z-index: 1;
}


.banner-upload {
    height: 200px !important;
    width: 466.7px;
    max-width: 80vw;
    text-align: center;
}


.banner-upload input[type="file"] {
    display: none;
}

.banner-preview {
    width: 100%;
    max-width: 80vw;
    height: 200px !important;
    border: 2px dashed #ccc;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

.z-index-4 {
    z-index: 4 !important;
}

.z-index-11 {
    position: relative;

    z-index: 11 !important;
}

.banner-preview-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    max-height: 100%;
    max-width: 80vw;

    border-radius: 20px;
    opacity: 0.4;    
    cursor: pointer;
}

.event_row {
    display: flex;
    justify-content: start;
    margin: 0px 0;
    padding-bottom: 10px;
}

.icon_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.upload-button {
    z-index: 999 !important;
   
    align-items: center;
    cursor: pointer;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #43A4D7;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.upload-button:hover {
    background-color: rgba(67, 164, 215, 0.9);
    color: #fff;
}

.selectable-image {
    transition: transform 0.2s;
    /* Add a transform animation */
}

.selectable-image:hover {
    transform: scale(1.03);
    /* Scale the image to 120% on hover */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.d-none {
    display: none;
}

.d-none-at-mobile {
    display: none;
    margin: auto;
}


.container-border {
    display: flex;
    gap: 20px;
    padding: 0 20px 0;
    margin: 0;
}

.container-border-dotted {
    border : 2px dotted grey !important;
}

.container-border-2 {
    margin: 0;
}

.grid-2-columns,
.grid-3-columns {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
}

.box_2nd {
    border: 1px solid black;
    flex: auto;
    background: transparent;
    padding: 20px;
    text-align: center;
    height: fit-content;
    border-radius: 20px;
    transition: transform 0.2s;
    text-decoration: none;
    color: #2e4b59;
}

.selectable-box {
    cursor: pointer;
    /* Add pointer cursor for selectable behavior */
}

.selectable-box:hover {
    transform: scale(1.01);
    /* Scale the box to 105% on hover */
}

.box_3rd {
    border: 1px solid black;
    flex: content;
    background: transparent;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
}


body {
    background-image: url("/assets/images/event-management-bg.png");
    min-height: 100vh;
    background-repeat: repeat-y;
}



.swiper-container {
    display: none;
    width: 800px;
    max-width: 80vw;
    /* border: 1px solid black; */
    margin: auto;
    /* overflow-y: auto; */
}

.swiper-wrapper {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: visible;
    height: 50px;
    justify-content: center;
}

.swiper-slide {
    font-size: 1rem;
    width: var(--timeline-normal-width-mobile);
    height: 100%;
    position: relative;
}

.swiper-slide__left, .swiper-slide__right {
    width: var(--timeline-start-width-mobile) !important;
}

.time-line-box {
    padding: 15px 0 0 5px;
    width: 100%;
}

.time-line-box .timeline {
    list-style-type: none;
    display: flex;
    padding: 0;
    text-align: center;
}

.timestamp:hover{
    cursor: pointer;
}

.time-line-box .timestamp {
    margin: auto;
    margin-bottom: 5px;
    padding: 0px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-line-box {
    cursor: pointer !important;
}


.time-line-box .swiper-slide__left .timestamp{
    align-items: start !important;
    margin-left: -40px;
}

.time-line-box-success .swiper-slide__left .timestamp {
    margin-left: 0px !important;
}

.time-line-box .swiper-slide__right .timestamp{
    align-items: end !important;
    margin-left: 40px;
    
}

.time-line-box .status {
    padding: 0px 10px;
    display: flex;
    justify-content: center;
    border-top: 2px solid #95ADBD;
    width: var(--timeline-normal-width-mobile) ! important;
    position: relative;
    transition: all 200ms ease-in;
}

.time-line-box .status__left {
    padding: 0px 10px;
    display: flex;
    justify-content: flex-end;
    border-top: 2px solid #95ADBD;
    width: var(--timeline-start-width-mobile) ! important;
    position: relative;
    transition: all 200ms ease-in;
}

.time-line-box .status__right {
    padding: 0px 10px;
    display: flex;
    justify-content: flex-end;
    border-top: 2px solid #95ADBD;
    width: var(--timeline-start-width-mobile) ! important;
    position: relative;
    transition: all 200ms ease-in;
}

.time-line-box .status span {
    padding-top: 8px;
}

.time-line-box .status__left small {
    content: '';
    width: 12px;
    height: 12px;
    cursor: pointer;
    background-color: #95ADBD;
    border-radius: 12px;
    /* border: 2px solid #95ADBD; */
    position: absolute;
    left: 0%;
    top: 0%;
    transform: translateY(-50%) translateX(-110%);
    transition: all 200ms ease-in;
}

.status__left__success small,
.time-line-box-success .status__right small {
    background-color: #43a4d7 !important;
    color: white !important;
    height: 20px !important;

    padding-bottom: 15px !important;
    padding-left: 5px !important;
    padding-right: 15px !important;
}

.time-line-box-success .status__right,
.time-line-box-success .status,
.time-line-box-success .status__left {
    border-top: 2px solid #43a4d7;
    content: 'x' !important;
    color: white !important;
    position: relative;
}

.time-line-box-success .status__right small {
    right: -60% !important;
}

.time-line-box .status__right small {
    content: '';
    width: 12px;
    height: 12px;
    cursor: pointer;
    background-color: #95ADBD;
    border-radius: 12px;
    /* border: 2px solid #95ADBD; */
    position: absolute;
    right: -20%;
    top: 0%;
    transform: translateY(-50%) translateX(-100%);
    transition: all 200ms ease-in;
}

.time-line-box .status small {
    content: '';
    width: 12px;
    height: 12px;
    cursor: pointer;
    background-color: #95ADBD;
    border-radius: 12px;
    /* border: 2px solid #95ADBD; */
    position: absolute;
    left: 50%;
    top: 0%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 200ms ease-in;
}





.timestamp {
    width: 100%;
    /* Ensure the timestamp takes up the full width */
}


/* Adjust the swiper-slide to accommodate the padding */

.swiper-slide {
    box-sizing: border-box;
}

.background-active-timeline {
    background: #43A4D7 !important;
    cursor: default !important;

}

.font-color-active-timeline {
    color: #43A4D7;
    cursor: default !important;
}

.oceans-gaming-default-button-base,
input[type="button"],
.oceans-gaming-default-button
{
    font-size: normal;
    margin-top: 0px;
    color: #fff;
    border-radius: 30px;
    background: #43A4D7;
    border: none;
}

input[type="button"],
.oceans-gaming-default-button {
    color: #fff;
    background: #43A4D7;
    padding-top: 12px;
    padding-bottom: 13px;
    padding: 10px;
    width: 200px;

}

.oceans-gaming-default-button {
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
}

.oceans-gaming-default-button:click {
    border: 0px solid black;
}

.oceans-gaming-transparent-button {
    background: transparent;
    border: 1px solid black;
    color: #2e4b59;
}

.oceans-gaming-green-button {
    background: #8CCD39;
    color: white;
}

.oceans-gaming-gray-button {
    background: #A6A6A6;
    color: white;
}

input[type="submit"]:active {
    background: #79b0cc;
}

.box-date input[type='time'],
.box-date input[type='date'] {
    width: 100% !important;
}

.choose-payment-method,
.choose-payment-method-condition-fulfilled {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: auto !important;
    text-align: center;
    color: white;
    border-radius: 30px;
    outline: none;
    border: none;
}

.choose-payment-method-condition-fulfilled {
    background: #FBF9F3;
}

.choose-payment-method {
    background: #43A4D7;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.selected-option.selected {
    background-color: #e6f7ff;
}

.drop {
    display: flex;
    align-items: center;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    /* Add some space between image and text */
}

.dropdown-content a {
    color: #2e4b59;
    text-decoration: none;
    /* Display the anchor tags as inline-block to make them flow horizontally */
}

.dropbtn {
    background-color: transparent;
    border: 1px solid black;
    border-radius: 30px;
    /* color: white; */
    padding: 16px;
    font-size: 1rem;
    /* border: none; */
    cursor: pointer;
}

.dropbtn-open {
    border-radius: 30px 30px 0 0;
}

.dropdown-container {
    display: flex;
    justify-content: space-around;
}

.dropbtn-arrow {
    margin-top: -25px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    left: 0;
    right: 0;
    border: 1px solid black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content:last-child {
    border-radius: 0 0 30px 30px;
}

.dropdown-content a {
    color: #2e4b59;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: #2e4b59;
    text-decoration: none;
}

.welcome {
    margin-top: 10px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #2E4B59 !important;
    margin-left: 20px;
    margin-right: 20px;
}

.welcome p {
    margin: auto;
    font-weight: 400;
    text-overflow: clip;
    font-size: larger;
}

.payment-summary {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: fit-content;
    text-align: left;
    border-radius: 30px;
    font-weight: 400;
    color: #2E4B59 !important;
    border: 1px solid black;
    width: 600px;
    max-width: 80vw;
    margin: auto;
}



.flexbox {
    display: flex;
    justify-content: space-between;
}

.radio-indent,
.radio-indent-hidden {
    margin-left: 20px;
    margin-bottom: 0px;
}


.radio-indent-hidden input[type='date'],
.radio-indent-hidden input[type='time'] {
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
}

body{
    height: auto;
    color: #2e4b59;
}

@media screen and (min-width: 1000px)  {

    button:after {
        position: static !important;
    }


    .swiper-container {
        display: block;
    }

    .breadcrumb-top {
        display: none;
    }

 
    
    body {
        height: 100vh;
    }

    .event_extra {
        margin: 0;
        width: 100%;
    }

    .form-group-width {
        width: 75% !important;
    }

    .box-date input[type='time'],
    .box-date input[type='date'] {
        width: 300px !important;
    }

    .box_2nd {
        height: max-content;
        max-height: 350px;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2 {
        grid-template-columns: 0.5fr 1fr 0.75fr;
        margin: 0 3vw;
    }

    .box-width {
        max-width: 60vw !important; 
    }


    .time-line-box .status__left small {
        left: 13%;
    }

    .payment-summary {
        padding-left: 40px;
        padding-right: 40px; 
    }

    .flexbox {
        display: flex;  
    }

    .d-none-at-mobile {
        display: block; 
    }


   

    .grid-2-columns {
        grid-template-columns: 1fr 1fr;
    }

    .grid-3-columns {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .swiper-slide {
        text-indent: 0px;
        font-size: 0.9rem;
        width: var(--timeline-normal-width-desktop);
    }

    .swiper-slide__left, .swiper-slide__right {
        width: var(--timeline-start-width-desktop) !important;
    }

    .time-line-box-success .status__right small {
        right: -40% !important;
    }

    .time-line-box {
        visibility: visible; 
        height: 80px;  
        padding: 30px 0; 
    }

    .time-line-box .status {
        width: var(--timeline-normal-width-desktop) !important;
    }

    .time-line-box .status__left {
        width: var(--timeline-start-width-desktop) !important;
    }

    .time-line-box .status__left span:before {
        left: 12%;  
    }

    .time-line-box .status__right {
        width: var(--timeline-start-width-desktop) !important;
    }

    .back-next button {
        position: static;
        top: 85vh;
        margin-top: 0;  
        margin-bottom: 0; 
    }

    .back-next button:nth-child(1) {
        left: calc(25% - var(--back-next-button)); 
    }

    .back-next button:nth-child(2) {
        left: calc(75% - var(--back-next-button)); 
    }

    .cat {
        left: -40%;
    }
}

@media screen and (min-width: 1000px) and (min-height: 700px)  {
    .back-next button {
        position: absolute;
    }
}


@media screen and (min-width: 1300px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .box-width2 {
        max-width: 60vw;
        overflow-x: auto; 
        overflow-y: hidden; 
        white-space: nowrap; 
    }

    .grid-2 {
        grid-template-columns: 0.25fr 1fr 0.75fr;
        justify-content: center !important;
        margin: 0 18vw;
    }

    .back-next button {
        position: absolute;
        top: 85vh;
    }

    .box_2nd {
        height: 260px;
    }

}

.fadeIn {
    animation: simpleShow 0.3s ease forwards;
}

.fadeOut {
    animation: simpleShow2 0.3s ease forwards;
}

@keyframes simpleShow {
    from { opacity: 0; padding-left: 50px; }
    to { opacity: 1; padding-left: 0px; }
}

@keyframes simpleShow2 {
    from { opacity: 0; padding-right: 50px; }
    to { opacity: 1; padding-right: 0px; }
}

.bg-transparent {
    background: red !important;
}
.grid-5-columns, .grid-4-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
}

.border-2px {
    border-width: 3px !important;
    border-color: rgb(16, 81, 16);
}

.check-tick {
    top: 10px; 
    left: 90%; 
    color: white;  
    background-color: #179317; 
    font-size: 0.625rem;
}

@media screen and (min-width: 400px) {
    .grid-5-columns, .grid-4-columns {
        grid-template-columns: repeat(3, 1fr);    
    }
 }

@media screen and (min-width: 800px) {
    .grid-5-columns {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-4-columns {
        grid-template-columns: repeat(4, 1fr);
    }
    
 }

 #payment-discount-view input{
    padding: 3px;
 }


 /* .border-0 {
    outline: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
} */

.accordion-button {
    border: 1px solid black !important;
    padding: 10px !important;
}

.accordion-item.show:first-child {
    border-radius: 40px 40px 0 0 !important;
}


.accordion-item.show:last-child {
    border-radius: 0 0 40px 40px  !important;
}


#card-element, #address-element, .accordion-item {max-width: 450px;}

@media (min-width: 640px) {
    .StripeElement .FormGrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
     
    }
  }

  .player-info {
    display: flex;
    align-items: center;
}

.grid-5 {
    display: grid;
    gap: 3rem 0.5rem;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr; /* Mobile: 1 column */
  }
  
  /* Small screens and up (sm) - 2 columns */
  @media (min-width: 576px) {
    .grid-5 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 1200px;
    }
  }
  
  /* Medium screens and up (md) - 3 columns */
  @media (min-width: 768px) {
    .grid-5 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Large screens and up (lg) - 4 columns */
  @media (min-width: 992px) {
    .grid-5 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Extra large screens and up (xl) - 5 columns */
  @media (min-width: 1200px) {
    .grid-5 {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  .game-events {
    width: 190px;
    margin: auto;
  } 
  .ts-wrapper.form-select {
    background-color: transparent !important;
  }

  .ts-control, .ts-control input, .ts-dropdown {
    font-size: 1rem;
  }

  .ts-control, .ts-control .item, .ts-wrapper.single.input-active .ts-control {
    background-color: transparent !important;
    font-size: 1rem;
  }

  .ts-control .item {
    display: inline !important;
  }

  #select2-country2-ts-control {
    font-size: 1rem;
    padding-left: 20px !important;
    display: inline !important;
  }

  .ts-wrapper.form-control.form-select {
    border: 1px solid black;
    border-radius: 50px;
  }

  .ts-control {
    display: flex !important;
    justify-content: start !important;
    border: 1px solid black;
  }

  @media (min-height: 900px) {
    .welcome {
        margin-top: 8vh;
    }

    .welcome--first {
        margin-top: 12vh;
    }
  }