@font-face {
    font-family: "helvetica-bold";
    src: url("../../assets/fonts/helvetica-bold.ttf");
}

@font-face {
    font-family: "Manrope-ExtraBold";
    src: url("../../assets/fonts/Manrope-ExtraBold.ttf");
}

@font-face {
    font-family: "Manrope-Light";
    src: url("../../assets/fonts/Manrope-Light.ttf");
}

@font-face {
    font-family: "Manrope-Medium";
    src: url("../../assets/fonts/Manrope-Medium.ttf");
}
   @font-face {
        font-family: LT-GEO-25;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 25\ UltLt.otf');
    }
    
    @font-face {
        font-family: LT-GEO-35;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 35\ Thin.otf');
    }
    
    @font-face {
        font-family: LT-GEO-45;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 45\ Light.otf');
    }
    
    @font-face {
        font-family: LT-GEO-55;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 55\ Roman.otf');
    }
    
    @font-face {
        font-family: LT-GEO-65;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 65\ Medium.otf');
    }
    
    @font-face {
        font-family: LT-GEO-75;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 75\ Bold.otf');
    }
    
    @font-face {
        font-family: LT-GEO-85;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 85\ Heavy.otf');
    }
    
    @font-face {
        font-family: LT-GEO-95;
        src: url('/assets/fonts/Linotype\ -\ Helvetica\ Neue\ LT\ GEO\ 95\ Black.otf');
    }
    


.input-container {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .input-container > label {
    margin-bottom: 20px;
    font-family: helvetica-bold;
    font-size: 14px;
    color: #273645;
  }
  
  .input-container > input {
    border: 1px solid #efeff5;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    color: #b9b9cb;
    font-size: 12px;
  }
  .input-container > span {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    align-items: center;
  }
  .input-container > span > img {
    width: 18px;
    height: 20px;
  }
  
  .input-container > select {
    border: 1px solid #efeff5;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    color: #b9b9cb;
    font-size: 12px;
    outline: none;
    background-color: transparent;
  }
  
  .input-container > input::placeholder {
    font-size: 12px;
    color: #b9b9cb;
  }
  
  /* button */
  .styled-button {
    width: 110px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: none;
    background: #f1f3f6;
    font-size: 12px;
    font-family: helvetica-bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #181a26;
  }
  
  /* colors */
  .bg-yellow {
    background: #d0e608;
  }
  
  /* checkgroup */
  
  .check-group input {
    display: none;
  }
  
  .check-group > .check-item {
    display: inline-block;
  }
  
  .check-group > .check-item label {
    position: relative;
    /* margin: 10px; */
    cursor: pointer;
    border: 2px solid #f4f5f7;
    border-radius: 10px;
    height: 88px;
    width: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  .check-group > .check-item.sm label {
    height: 48px;
  }
  
  .check-group > .check-item.w-100 label {
    width: 100%;
  }
  .check-group > .check-item label img {
    width: 32px;
    height: 32px;
  }
  
  .check-group > .check-item {
    padding: 0px;
  }
  
  .check-group > .check-item label:before {
    background-color: white;
    color: white;
    content: ' ';
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
  .check-group :checked + label {
    border-color: #d0e608;
  }
  .sport-item.active label{
    border-color: #fa6400 !important;
  }
  .check-group.active-orange :checked + label , .sport-item.active label{
    border-color: #fa6400;
  }
  .check-group.sm > .check-item label {
    height: 50px;
  }
  
  .check-group.full :checked + label.tennis {
    background-color: #d0e608 !important;
    border-color: #d0e608;
  }
  
  .check-group.full :checked + label.football {
    background-color: #009345 !important;
    border-color: #009345;
  }
  
  
  .check-group.full :checked + label.basketball {
    background-color: #f27404 !important;
    border-color: #f27404;
  }
  .check-group.full.active-orange :checked + label {
    background-color: #fa6400;
    border-color: #fa6400;
  }
  .check-group.round label {
    border-radius: 32px;
  }
  .check-group.round :checked + label {
    background-color: #d0e608;
    border-color: #d0e608;
  }
  .check-group.round.active-orange :checked + label {
    background-color: #fa6400;
    border-color: #fa6400;
  }
  
  /* radio group */
  
  .radio-group input {
    display: none;
  }
  
  .radio-group > .radio-item {
    display: inline-block;
  }
  
  .radio-group > .radio-item label {
    height: 48px;
    background-color: #f4f5f7;
    border-radius: 8px;
    transition: all ease-in-out 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 75px;
    cursor: pointer;
    font-size: 14px;
  }
  .radio-group > .radio-item.w-100 label {
    width: 100%;
  }
  
  .radio-group label:before {
    background-color: white;
    color: white;
  
    content: ' ';
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
  .radio-group > .radio-item label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
  }
  
  .radio-group :checked + label {
    background: #fa6400;
    color: #fff;
  }
  
  .upload-file {
    position: relative;
    min-height: 176px;
  }
  .upload-file > label {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
  }
  
  .upload-file > input {
    /* display: none; */
    border-radius: 10px;
  }
  .upload-file > label {
    cursor: pointer;
    border: 2px dotted #d6d8de;
    border-radius: 10px;
    min-height: 176px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff;
    /* align-items: center; */
  }
  .upload-file > label > .upload-file-plus {
    cursor: pointer;
    border: 2px solid #d6d8de;
    background: #f7f8fb;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .upload-file > label > .upload-file-text p {
    margin-top: 12px;
  }
  .upload-file input::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    /* background: #000; */
    min-height: 176px;
    width: 100%;
    z-index: 20;
  }
  
  /* GOOGLE MAP */
  #google-map {
    width: 100%;
    height: 250px;
  }
  
  /* Accordion */
  .custom-accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border: 2px solid #f4f5f7;
    /* margin: 8px 0; */
    border-radius: 10px;
    color: #757f88;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active,
  .custom-accordion:hover {
    border-color: #d0e608;
    color: #273645;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  
  .panel-content {
    padding: 0 6px;
    padding-bottom: 6px;
  }
  
  /* Buttons */
  
  .btn {
    color: #fff;
    font-size: 12px;
    padding: 0px 30px;
    height: 48px;
    border: none;
    background-color: #fa6400;
    border-radius: 10px;
    cursor: pointer;
  }
  .btn.outlined {
    color: #181a26;
    border: 1px solid #979797;
    background-color: transparent;
  }
  .btn.white {
    background-color: #fff;
    border: none;
    color: #b9b9cb;
  }
  .btn.yellow {
    background-color: #d7e800;
    color: #2f2e41;
    font-size: 16px;
  }
  .btn.grey {
    background-color: #ddebea;
    color: #767676;
  }
  
  .btn.square {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .btn.round {
    border-radius: 24px;
  }
  .btn.transparent {
    background: transparent;
  }
  .btn.xs {
    height: 32px;
  }
  .btn.sm {
    height: 40px;
  }
  .btn.xl {
    height: 64px;
  }
  .btn.w-100 {
    width: 100%;
  }
  
  /* Chip */
  .chip {
    background: #f4f5f7;
    font-size: 12px;
    color: #9ca3aa;
    width: fit-content;
    border-radius: 8px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 8px;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  .slideshow-container {
    position: relative;
  }
  
  .slideshow-navigation {
    position: absolute;
    bottom: 10%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
  
  /* Next & previous buttons */
  .slideshow-container .prev,
  .slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -22px;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: #fff;
  }
  
  /* Position the "next button" to the right */
  .slideshow-container .prev {
    left: 30px;
    border-radius: 50%;
  }
  .slideshow-container .next {
    right: 30px;
    border-radius: 50%;
  }
  
  /* The dots/bullets/indicators */
  .slideshow-container .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .slideshow-container .active,
  .slideshow-container .dot:hover {
    background-color: #fff;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Modal */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Breadcrumbs */
  
  .breadcrumbs {
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 150px;
    border-bottom: 1px solid #ededf1;
    background: #fff;
  }
  .breadcrumb {
    list-style-type: none;
    padding: 0;
  }
  .breadcrumb > .breadcrumb-item {
    color: #c2c8d0;
    display: inline-block;
  }
  .breadcrumb > .breadcrumb-item:not(:first-child)::before {
    content: '/';
    padding: 0 6px;
    color: #c2c8d0;
  }
  .breadcrumb > .breadcrumb-item a {
    color: #c2c8d0;
    text-decoration: none;
    font-size: 12px;
  }
  .breadcrumb > .breadcrumb-item:last-child a {
    color: #2f2e41;
  }
  
  .search-field {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .search-field input {
    border: none;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    color: #b9b9cb;
    font-size: 12px;
    width: 100%;
  }
  .search-field .input-icon {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    align-items: center;
  }
  .search-field > .input-icon > img {
    width: 18px;
    height: 20px;
  }
  
  /*  two-image-carousel */
  
  @keyframes tonext {
    75% {
      left: 0;
    }
    95% {
      left: 100%;
    }
    98% {
      left: 100%;
    }
    99% {
      left: 0;
    }
  }
  
  @keyframes tostart {
    75% {
      left: 0;
    }
    95% {
      left: -300%;
    }
    98% {
      left: -300%;
    }
    99% {
      left: 0;
    }
  }
  
  @keyframes snap {
    96% {
      scroll-snap-align: center;
    }
    97% {
      scroll-snap-align: none;
    }
    99% {
      scroll-snap-align: none;
    }
    100% {
      scroll-snap-align: center;
    }
  }
  
  .two-image-carousel {
    position: relative;
    height: 500px;
    filter: drop-shadow(0 0 10px #0003);
    perspective: 100px;
  }
  
  .two-image-carousel__viewport {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    overflow: hidden;
    counter-reset: item;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .two-image-carousel__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    counter-increment: item;
  }
  
  .two-image-carousel__slide:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -40%, 70px);
    color: #fff;
    font-size: 2em;
  }
  
  .two-image-carousel__snapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
  }
  
  @media (hover: hover) {
    .two-image-carousel__snapper {
      /* animation-name: tonext, snap;
      animation-timing-function: ease;
      animation-duration: 8s;
      animation-iteration-count: infinite; */
    }
  
    .two-image-carousel__slide:last-child .two-image-carousel__snapper {
      animation-name: tostart, snap;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .two-image-carousel__snapper {
      animation-name: none;
    }
  }
  
  .two-image-carousel:hover .two-image-carousel__snapper,
  .two-image-carousel:focus-within .two-image-carousel__snapper {
    animation-name: none;
  }
  
  .two-image-carousel__navigation {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  
  .two-image-carousel__navigation-list,
  .two-image-carousel__navigation-item {
    display: inline-block;
  }
  
  .two-image-carousel__navigation-button {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #333;
    background-clip: content-box;
    border: 0.25rem solid transparent;
    border-radius: 50%;
    font-size: 0;
    transition: transform 0.1s;
  }
  
  .two-image-carousel::before,
  .two-image-carousel::after,
  .two-image-carousel__prev,
  .two-image-carousel__next {
    position: absolute;
    top: 0;
    margin-top: 250px;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 0;
    outline: 0;
  }
  
  .two-image-carousel::before,
  .two-image-carousel__prev {
    left: 3rem;
  }
  
  .two-image-carousel::after,
  .two-image-carousel__next {
    right: 3rem;
  }
  
  .two-image-carousel::before,
  .two-image-carousel::after {
    content: '';
    z-index: 1;
    background-color: #fff;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    /* font-size: 2.5rem; */
    width: 44px;
    height: 44px;
    line-height: 4rem;
    text-align: center;
    pointer-events: none;
  }
  
  .two-image-carousel::before {
    background-image: url('/assets/images/left-arrow.png');
  }
  
  .two-image-carousel::after {
    background-image: url('/assets/images/right-arrpw.png');
  }
  
  @media only screen and (max-width: 1380px) {
    .two-image-carousel {
      height: 350px;
    }
    .two-image-carousel::before,
    .two-image-carousel::after,
    .two-image-carousel__prev,
    .two-image-carousel__next {
      margin-top: 175px;
    }
    .two-image-carousel::before,
    .two-image-carousel::after {
      width: 44px;
      height: 44px;
    }
  }
  
  .toggle-switch input:checked + .toggle-slider:before {
    -webkit-transform: translateX(95%);
    -ms-transform: translateX(95%);
    transform: translateX(95%);
  }
  
  /* TOGGLE SWITCH */
  
  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 350px;
    height: 40px;
    cursor: pointer;
  }
  
  /* Hide default HTML checkbox */
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 20px;
    height: 40px;
    border: 2px solid #dfe1e6;
  }
  
  .toggle-slider .toggle-thumb {
    position: absolute;
    height: 40px;
    width: 50%;
    top: -2px;
    border-radius: 20px;
    background-color: #d0e608;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 100;
    border: 2px solid #d0e608;
  }
  
  .toggle-switch input:checked + .toggle-slider .toggle-thumb {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  .toggle-text {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 100%;
    z-index: 100;
  }
  
  .toggle-swtich .toggle-name-one {
    text-align: center;
  }
  .toggle-switch .toggle-name-one,
  .toggle-switch .toggle-name-two {
    font-size: 12px;
    font-family: 'Manrope-ExtraBold';
    color: #273645;
  }
  
  .table {
    border-radius: 16px;
  }
  .table-body {
    height: 275px;
    overflow: auto;
  }
  .table * {
    font-weight: 400;
    text-align: left;
  }
  .table tr {
    height: 50px;
  }
  .table tr td,
  .table tr th {
    padding: 0 26px;
    font-size: 14px;
  }
  
  .table tr th {
    color: #273645;
  }
  .table tr td {
    color: #757f88;
  }
  .table tr th:first-child {
    width: 150px;
  }
  .table tbody {
    width: 150px;
  }
  
  /* Toggle round */
  
  .toggle-round {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 32px;
  }
  
  .toggle-round input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .toggle-round .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c4c8cc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  .toggle-round .slider:before {
    position: absolute;
    content: '';
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  .toggle-round input:checked + .slider {
    background-color: #e9ff08;
  }
  
  .toggle-round input:focus + .slider {
    box-shadow: 0 0 1px #e9ff08;
  }
  
  .toggle-round input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
  }
  
  /* Rounded sliders */
  .toggle-round .slider.round {
    border-radius: 34px;
  }
  
  .toggle-round .slider.round:before {
    border-radius: 50%;
  }
  
.input-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.input-container>label {
    margin-bottom: 20px;
    font-family: helvetica-bold;
    font-size: 14px;
    color: #273645;
}

.input-container>input {
    border: 1px solid #efeff5;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    color: #b9b9cb;
    font-size: 12px;
}

.input-container>span {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    align-items: center;
}

.input-container>span>img {
    width: 18px;
    height: 20px;
}

.input-container>select {
    border: 1px solid #efeff5;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    color: #b9b9cb;
    font-size: 12px;
    outline: none;
    background-color: transparent;
}

.input-container>input::placeholder {
    font-size: 12px;
    color: #b9b9cb;
}


/* button */

.styled-button {
    width: 110px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: none;
    background: #f1f3f6;
    font-size: 12px;
    font-family: helvetica-bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #181a26;
}


/* colors */

.bg-yellow {
    background: #d0e608;
}


/* checkgroup */


.check-group input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.0009;
    cursor: pointer;
    z-index: 999;
  }
  
  .check-group>.check-item {
    display: inline-block;
    position: relative;
  }  

.check-group>.check-item label {
    position: relative;
    /* margin: 10px; */
    cursor: pointer;
    border: 2px solid #f4f5f7;
    border-radius: 10px;
    height: 88px;
    width: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.check-group>.check-item.sm label {
    height: 48px;
}

.check-group>.check-item.w-100 label {
    width: 100%;
}

.check-group>.check-item label img {
    width: 32px;
    height: 32px;
}

.check-group>.check-item {
    padding: 0px;
}

.check-group>.check-item label:before {
    background-color: white;
    color: white;
    content: ' ';
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.check-group :checked+label {
    border-color: #d0e608;
}

.check-group.active-orange :checked+label {
    border-color: #fa6400;
}

.check-group.sm>.check-item label {
    height: 50px;
}

.check-group.full :checked+label {
    background-color: #d0e608;
    border-color: #d0e608;
}

.check-group.full.active-orange :checked+label {
    background-color: #fa6400;
    border-color: #fa6400;
}

.check-group.round label {
    border-radius: 32px;
}

.check-group.round :checked+label {
    background-color: #d0e608;
    border-color: #d0e608;
}

.check-group.round.active-orange :checked+label {
    background-color: #fa6400;
    border-color: #fa6400;
}


/* radio group */

.radio-group input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.0009;
  cursor: pointer;
}
.radio-group>.radio-item {
    display: inline-block;
  position: relative;

}

.radio-group>.radio-item label {
    height: 48px;
    background-color: #f4f5f7;
    border-radius: 8px;
    transition: all ease-in-out 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 75px;
    cursor: pointer;
    font-size: 14px;
}

.radio-group>.radio-item.w-100 label {
    width: 100%;
}

.radio-group label:before {
    background-color: white;
    color: white;
    content: ' ';
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.radio-group>.radio-item label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

.radio-group input:checked+label {
    background: #fa6400;
    color: #fff;
}


.upload-file {
    position: relative;
    min-height: 176px;
}

.upload-file>label {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
}

.upload-file>input {
    /* display: none; */
    border-radius: 10px;
}

.upload-file>label {
    cursor: pointer;
    border: 2px dotted #d6d8de;
    border-radius: 10px;
    min-height: 176px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff;
    /* align-items: center; */
}

.upload-file>label>.upload-file-plus {
    cursor: pointer;
    border: 2px solid #d6d8de;
    background: #f7f8fb;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-file>label>.upload-file-text p {
    margin-top: 12px;
}

.upload-file input::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    /* background: #000; */
    min-height: 176px;
    width: 100%;
    z-index: 20;
}


/* GOOGLE MAP */

#google-map {
    width: 100%;
    height: 250px;
    border-radius: 15px;
}


/* Accordion */

.accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border: 2px solid #f4f5f7;
    /* margin: 8px 0; */
    border-radius: 10px;
    color: #757f88;
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.active,
.accordion:hover {
    border-color: #d0e608;
    color: #273645;
}


/* Style the accordion panel. Note: hidden by default */

.panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel-content {
    padding: 0 6px;
    padding-bottom: 6px;
}


/* Buttons */

.btn {
    color: #fff;
    font-size: 12px;
    padding: 0px 30px;
    height: 48px;
    border: none;
    background-color: #fa6400;
    border-radius: 10px;
    cursor: pointer;
}

.btn.outlined {
    color: #181a26;
    border: 1px solid #979797;
    background-color: transparent;
}

.btn.white {
    background-color: #fff;
    border: none;
    color: #b9b9cb;
}

.btn.yellow {
    background-color: #d7e800;
    color: #2f2e41;
    font-size: 16px;
}

.btn.grey {
    background-color: #ddebea;
    color: #767676;
}

.btn.square {
    width: 40px;
    height: 40px;
    padding: 0;
}

.btn.transparent {
    background: transparent;
}

.btn.sm {
    height: 40px;
}

.btn.xl {
    height: 64px;
}

.btn.w-100 {
    width: 100%;
}


/* Chip */

.chip {
    background: #f4f5f7;
    font-size: 12px;
    color: #9ca3aa;
    width: fit-content;
    border-radius: 8px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}


/* Hide the images by default */

.mySlides {
    display: none;
}

.slideshow-container {
    position: relative;
}

.slideshow-navigation {
    position: absolute;
    bottom: 10%;
    transform: translate(-50%, -50%);
    left: 50%;
}


/* Next & previous buttons */

.slideshow-container .prev,
.slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.slideshow-container .prev {
    left: 10px;
    border-radius: 3px 0 0 3px;
}

.slideshow-container .next {
    right: 10px;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* The dots/bullets/indicators */

.slideshow-container .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slideshow-container .active,
.slideshow-container .dot:hover {
    background-color: #fff;
}


/* Fading animation */

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}


/* Modal */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content/Box */

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}


/* The Close Button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Breadcrumbs */

.breadcrumbs {
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 150px;
    border-bottom: 1px solid #ededf1;
    background: #fff;
}

.breadcrumb {
    list-style-type: none;
    padding: 0;
}

.breadcrumb>.breadcrumb-item {
    color: #c2c8d0;
    display: inline-block;
}

.breadcrumb>.breadcrumb-item:not(:first-child)::before {
    content: '/';
    padding: 0 6px;
    color: #c2c8d0;
}

.breadcrumb>.breadcrumb-item a {
    color: #c2c8d0;
    text-decoration: none;
    font-size: 12px;
}

.breadcrumb>.breadcrumb-item:last-child a {
    color: #2f2e41;
}

.search-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.search-field input {
    border: none;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    color: #b9b9cb;
    font-size: 12px;
    width: 100%;
}

.search-field .input-icon {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    align-items: center;
}

.search-field>.input-icon>img {
    width: 18px;
    height: 20px;
}


/*  two-image-carousel */

@keyframes tonext {
    75% {
        left: 0;
    }
    95% {
        left: 100%;
    }
    98% {
        left: 100%;
    }
    99% {
        left: 0;
    }
}

@keyframes tostart {
    75% {
        left: 0;
    }
    95% {
        left: -300%;
    }
    98% {
        left: -300%;
    }
    99% {
        left: 0;
    }
}

@keyframes snap {
    96% {
        scroll-snap-align: center;
    }
    97% {
        scroll-snap-align: none;
    }
    99% {
        scroll-snap-align: none;
    }
    100% {
        scroll-snap-align: center;
    }
}

.two-image-carousel {
    position: relative;
    height: 500px;
    filter: drop-shadow(0 0 10px #0003);
    perspective: 100px;
}

.two-image-carousel__viewport {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    overflow: hidden;
    counter-reset: item;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    list-style: none;
    margin: 0;
    padding: 0;
}

.two-image-carousel__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    counter-increment: item;
}

.two-image-carousel__slide:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -40%, 70px);
    color: #fff;
    font-size: 2em;
}

.two-image-carousel__snapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
}

@media (hover: hover) {
    .two-image-carousel__snapper {
        /* animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 8s;
    animation-iteration-count: infinite; */
    }
    .two-image-carousel__slide:last-child .two-image-carousel__snapper {
        animation-name: tostart, snap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .two-image-carousel__snapper {
        animation-name: none;
    }
}

.two-image-carousel:hover .two-image-carousel__snapper,
.two-image-carousel:focus-within .two-image-carousel__snapper {
    animation-name: none;
}

.two-image-carousel__navigation {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
}

.two-image-carousel__navigation-list,
.two-image-carousel__navigation-item {
    display: inline-block;
}

.two-image-carousel__navigation-button {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #333;
    background-clip: content-box;
    border: 0.25rem solid transparent;
    border-radius: 50%;
    font-size: 0;
    transition: transform 0.1s;
}

.two-image-carousel::before,
.two-image-carousel::after,
.two-image-carousel__prev,
.two-image-carousel__next {
    position: absolute;
    top: 0;
    margin-top: 250px;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 0;
    outline: 0;
}

.two-image-carousel::before,
.two-image-carousel__prev {
    left: 3rem;
}

.two-image-carousel::after,
.two-image-carousel__next {
    right: 3rem;
}

.two-image-carousel::before,
.two-image-carousel::after {
    content: '';
    z-index: 1;
    background-color: #fff;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    /* font-size: 2.5rem; */
    width: 44px;
    height: 44px;
    line-height: 4rem;
    text-align: center;
    pointer-events: none;
}

.two-image-carousel::before {
    background-image: url('/assets/images/left-arrow.png');
}

.two-image-carousel::after {
    background-image: url('/assets/images/right-arrpw.png');
}

@media only screen and (max-width: 1380px) {
    .two-image-carousel {
        height: 350px;
    }
    .two-image-carousel::before,
    .two-image-carousel::after,
    .two-image-carousel__prev,
    .two-image-carousel__next {
        margin-top: 175px;
    }
    .two-image-carousel::before,
    .two-image-carousel::after {
        width: 44px;
        height: 44px;
    }
}

.toggle-switch input:checked+.toggle-slider:before {
    -webkit-transform: translateX(95%);
    -ms-transform: translateX(95%);
    transform: translateX(95%);
}


/* TOGGLE SWITCH */

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 350px;
    height: 40px;
    cursor: pointer;
}


/* Hide default HTML checkbox */

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider */

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 20px;
    height: 40px;
    border: 2px solid #dfe1e6;
}

.toggle-slider .toggle-thumb {
    position: absolute;
    height: 40px;
    width: 50%;
    top: -2px;
    border-radius: 20px;
    background-color: #d0e608;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 100;
    border: 2px solid #d0e608;
}

.toggle-switch input:checked+.toggle-slider .toggle-thumb {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.toggle-text {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 100%;
    z-index: 100;
}

.toggle-swtich .toggle-name-one {
    text-align: center;
}

.toggle-switch .toggle-name-one,
.toggle-switch .toggle-name-two {
    font-size: 12px;
    font-family: 'LT-GEO-65' !important;
    color: #273645;
}
/* carousel */
.sportbtns {
  flex-basis: 0;
}

.sportbtns .col-4 {
  max-width: max-content;
}

.sportbtns .grid.spacing-1 {
  width: 900px !important;
}

.sportbtns .check-group.sm>.check-item label {
  width: max-content !important;
  height: max-content !important;
  padding: 14px 20px;
}

.stadiums-carousel-wrapper {
  margin-top: 55px;
}

.checkbox-search {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.searchinput1 {
  width: 100%;
  max-width: 420px;
  border: 1px solid gray;
  border-radius: 18px;
  position: relative;
  padding: 0 5px;
  box-sizing: border-box;
}

.searchinput1 input {
  width: 100% !important;
  padding: 25px 20px;
  padding-left: 55px;
  position: relative;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}

.searchinput1 button {
  position: absolute;
  left: 0;
  width: max-content;
  top: 20px;
  margin-left: 10px;
  border: none;
  background: none;
  outline: none;
  font-size: 24px;
  cursor: pointer;
}

.searchinput1 button i {
  transform: rotateZ(90deg);
}

.stadiumcarousels-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  font-family: LT-GEO-75 !important;
}

.stadium-carousel-card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.carouselcardinnerimages {
  width: 100%;
  height: auto;
}

.stadium-carousel-card .cardslider-next {
  right: 38%;
  position: absolute;
  z-index: 999;
  background: white !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: black;
  border: none;
  outline: none;
  bottom: 30px;
}

.stadium-carousel-card .cardslider-prev {
  left: 38%;
  position: absolute;
  z-index: 999;
  background: white !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: black;
  border: none;
  outline: none;
  bottom: 30px;
}

.stadium-carousel-card .carouselcardinnerimages button i {
  color: #2c2c2c;
}

.stadium-carousel-card .cardslider-next::before {
  color: black;
}

.stadiumslider-next {
  position: absolute;
  left: 99%;
  top: 90px;
  width: 50px;
  height: 50px;
  border: 0;
  background: white;
  border-radius: 50%;
  font-size: 22px;
  z-index: 99;
}

.stadiumslider-prev {
  position: absolute;
  right: 99%;
  top: 90px;
  width: 50px;
  height: 50px;
  border: 0;
  background: white;
  border-radius: 50%;
  font-size: 22px;
  z-index: 99;
}


