  #bg1 {
    position: relative;
  }

  .top_thing {
    display: flex;
    justify-content: space-between;

  }

  .different_modes {
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .add_button_arr {
    border-radius: 10px;
    float: right;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50px;
  }

  .show_filter {
    padding: 10px;
    cursor: pointer;
  }

  #calendar {
    display: none;
  }

  .mock_site {
    padding-top: 40px;
    position: relative;
  }

  .item_a {
    position: relative;
    width: calc(100%);
    height: 190px;
    border-radius: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    border: 1px solid black;
    cursor: pointer;
    z-index: 1;
  }

  .item_a:hover {
    filter: brightness(80%);
  }

  .item_img {
    width: calc(100% - 300px);
    height: 100%;
    border-radius: 15px 0px 0 15px;
    float: left;
    object-fit: cover;
    object-position: center;
  }

  .item_ht {

    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 70px;
    border-radius: 15px 0 15px 0;
    min-width: 260px;
    max-width: calc(100% - 330px);
    margin-bottom: 0px;
    padding-bottom: 0px;

  }

  .text_ht {
    padding: 10px;
    padding-left: 23px;
    padding-right: 20px;
    color: white;
    font-size: 45px;
    text-shadow: 0px 0px 4px #000000;
    margin-top: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
  }

  .image_ht {
    position: absolute;
    bottom: 8px;
    left: 8px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
    opacity: 0.75;
  }

  .item_htt {
    position: absolute;
    top: 70px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 30px;
    border-radius: 0 0 15px 0;
  }

  .text_htt {
    padding-top: 2px;
    padding-bottom: 10px;
    padding-left: 23px;
    padding-right: 20px;
    color: white;
    font-size: 25px;
    text-shadow: 0px 0px 4px #000000;
    margin-top: -8px;
    top: -30px;
  }

  .item_rs {
    width: 300px;
    height: 100%;
    background-color: rgb(92, 92, 92);
    text-align: center;
    float: left;
    border-radius: 0 15px 15px 0;
  }

  .it1 {
    color: white;
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 15px;
  }

  .it2 {
    color: white;
    font-size: 40px;
    margin: 0px;
    position: relative;
    font-family: "JetBrains Mono", monospace;
  }

  .it2::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 0;
    width: calc(100% - 40px);
    /* Adjust this to change the width of the border */
    border-bottom: 1px solid white;
  }


  .it3 {
    color: white;
    font-size: 50px;
    margin-top: 3px;
    margin-bottom: 6px;
    position: relative;
  }

  .it3::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 0;
    width: calc(100% - 40px);
    /* Adjust this to change the width of the border */
    border-bottom: 1px solid white;
  }


  .it4 {
    color: white;
    margin: 2px;
    font-size: 35px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
  }

  .it5 {
    color: white;
    margin: 0px;
    font-size: 15px;
  }

  .mloc {
    height: 32px;
    width: 23px;
    margin-right: 0px;
    margin-top: 3px;
    margin-bottom: -3px;
    margin-left: 5px;
  }

  .half {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }



  .slider_filter {
    width: min(450px, 90%);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    color: var(--text-primary);
  }

  .option_filter {
    cursor: pointer;
    padding: min(10px, 2vw);
    border: 1px solid #ddd;
    text-align: center;
    flex-grow: 1;
    transition: all 0.5s ease;
    font-family: Arial, sans-serif;
    font-size: min(14px, 3vw);
  }

  .selected_filter {
    background-color: #f0f0f0;
    color: #000000;
  }

  .dropdown_filter {
    position: relative;
    z-index: 2;
  }

  .dropdown-content_filter {
    display: none;
    position: absolute;
    width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    background-color: #f9f9f9;
    top: 40px;
    right: -140px;
    border-radius: 15px;
    z-index: 3;
  }

  .dropdown-option_filter {
    background-color: #f9f9f9;
    padding: 10px;
    height: 40px;
    width: 240px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
  }

  .dropdown-option_filter * {
    cursor: pointer;
  }

  .dropdown-option_filter:hover {
    background-color: #f1f1f1;
  }

  .arrow_filter {
    float: right;
    transition: transform 0.3s;
    font-size: 0.8em;
    /* Adjust this value to make the arrow smaller or larger */
  }

  .rotate_filter {
    transform: rotate(180deg);
  }

  #filter_input {
    background-image: url('https://elektraio.ams3.digitaloceanspaces.com/images/icons/searchicon.png');
    /* Add a search icon to input */
    background-position: 10px 12px;
    /* Position the search icon */
    background-repeat: no-repeat;
    /* Do not repeat the icon image */
    width: 240px;
    /* Full-width */
    font-size: 16px;
    /* Increase font-size */
    padding: 12px 20px 12px 40px;
    /* Add some padding */
    border: 1px solid #ddd;
    /* Add a grey border */
  }

  #m_inner {
    overflow-x: hidden;
    overflow-y: auto;
    height: 300px;
    background-color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 15px 15px;
  }

  .check_filter {
    height: 20px;
    width: 20px;
  }

  .text_filter {
    flex-grow: 1;
    text-align: left;
    padding-left: 5px;
    font-size: 16px;
    padding-top: 2px;
  }

  .img_filter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
  }


  .main_formm {
    display: grid;
  }

  #first_div1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #ih {
    height: 48px;
    width: 400px;
    font-size: 30px;
    margin-bottom: 10px;
  }

  #id {
    min-height: 400px;
    font-size: 25px;
  }

  .main_split {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
  }

  .sub_main_split {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 0 calc(33.33% - 30px);
    height: 300px;
    padding: 15px;
  }


  .sub_main_split div {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .sub_main_split p {
    margin-bottom: 1px;
  }

  @media (max-width: 600px) {
    .main_split div {
      flex: 1 0 100%;
    }
  }

  #create_button {
    height: 50px;
    width: 100%;
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 7px;
  }

  #create_button:hover {
    transform: scale(1.01);
    filter: brightness(105%);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }

  #img {
    font-size: 20px;
    margin-top: -15px;
  }

  /*##############################################################################*/

  .arr_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--off-color);
    height: 80px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .arr_items:hover {
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.2);
    transform: scale(1.015);
  }

  .arr_items:active {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    transform: scale(0.985);
  }

  .arr_items img:first-child {
    height: 100%;
    width: 38.19660112501051%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    box-shadow: 8px 0px 8px 0px rgba(0, 0, 0, 0.08);
  }


  .arsimg {
    height: 25px;
    width: auto;
    background-color: var(--main-color);
    border-radius: 50%;
    border: 2px solid var(--main-color);
    bottom: 7px;
    left: 7px;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);

  }


  .img {
    height: 25px;
    width: auto;
    background-color: var(--main-color);
    border-radius: 50%;
    border: 2px solid var(--main-color);
    bottom: 7px;
    left: 7px;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);

  }

  .arr_right_side {
    height: 80px;
    width: 61.8%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    background-color: var(--off-color);
    border-radius: 0 10px 10px 0;
  }


  .arr_right_side p {
    margin: 4px;
    margin-left: 10px;
  }

  .arsh {
    font-size: 2em;
    /* Adjust as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding-bottom: 40px;
    width: 80%;
  }

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

  .text_date {
    flex-grow: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .arsspots {
    flex-grow: 1;
    text-align: right;
    white-space: nowrap;
  }

  .your_events_button {
    width: min(250px, 100%);
    margin-bottom: 30px;
    margin-top: 10px;
  }
  