.blog-widget {
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .blog-widget {
        padding-top: calc(var(--widgets-spacing)*2);
        padding-bottom: calc(var(--widgets-spacing)*2);
    }
}

.blog-widget--header {
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: var(--e-global-typography-primary-text-transform);
    margin-bottom: var(--widgets-spacing);
}

.blog-widget--thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: calc(var(--widgets-spacing)*2);
}

.alm-listing .alm-reveal + .alm-reveal {
  margin-top: 0;
}
@media screen and (max-width: 576px) {
    .blog-widget--thumbnail {
        margin-top: calc(var(--widgets-spacing));
        margin-bottom: calc(var(--widgets-spacing));
    }
}

.blog-widget--thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-widget--data-container {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
}


.blog-widget--data {
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: var(--e-global-typography-secondary-font-weight);
    font-style: var(--e-global-typography-secondary-font-style);
    font-size: 15px;
    margin-bottom: var(--widgets-spacing);
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-widget--content-container {
    position: relative;
    padding-left: 30px;
}

.blog-widget--content-container::after {
    content: '';
    position: absolute;
    top: 0;
    left:0;
    width: 1px;
    height: 80%;
    background-color: var(--e-global-color-primary);
}

.blog-widget--title {
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-primary-font-weight);
    font-size: 16px;
}

.blog-widget--excerpt {
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-text-font-weight);
    font-size: 16px;
    margin-bottom: var(--widgets-spacing);
}

.blog-widget--twitter-feed {
    background-color: var(--e-global-color-primary);
    padding-top: 5px;
    padding-bottom: 5px;
}

@media screen and (max-width: 990px ) {
    .blog-widget--twitter-feed {
        margin-top: calc(var(--widgets-spacing)*2);
    }
}

.blog-widget--twitter-feed-content-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-text-font-family);
}

.blog-widget--twitter-feed-content {
    margin-bottom: calc(var(--widgets-spacing)*2)
}

.blog-widget--twitter-feed-content .blog-widget--read-more {
    margin-top: var(--widgets-spacing);
}


/* custom dropdown */
.blog-widget--filter-custom-select {
    position: relative;
    width: 100%;
    max-width: 100%;
    font-size: 1.15rem;
    z-index: 100;
  }
  
  .blog-widget--filter-select-button {
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    color: var(--black);
    font-family: var(--e-global-typography-accent-font-family);
    font-size: 24px;
    line-height: 24px;
    padding: 20px;
    border: 0px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  
  .blog-widget--filter-selected-value {
    text-align: left;
  }
  
  .blog-widget--filter-arrow {
    position: relative;
    height: 22px;
    width: 22px;
    transition: transform ease-in-out 0.3s;
  }
  .blog-widget--filter-arrow::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 11;
    display: block;
    width: 22px;
    height: 22px;
    border-top: 2px solid var(--black);
    border-left: 2px solid var(--black);
    top: -5px;
    transform: rotate(225deg);
  }

  .blog-widget--filter-select-dropdown {
    position: absolute;
    list-style: none;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    outline: 1px solid var(--e-global-color-primary);
    border-radius: 0;
    padding: 0px;
    margin-top: 0px;
    max-height: 0px;
    overflow-y: auto;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-accent-font-family);
  }
  
  .blog-widget--filter-select-dropdown li {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
  }
  
  .blog-widget--filter-select-dropdown li label {
    width: 100%;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    gap: 0;
    align-items: flex-start;
  }
  
  .blog-widget--filter-select-dropdown::-webkit-scrollbar {
    width: 7px;
  }
  .blog-widget--filter-select-dropdown::-webkit-scrollbar-track {
    background: var(--e-global-color-secondary);
    border-radius: 25px;
  }
  
  .blog-widget--filter-select-dropdown::-webkit-scrollbar-thumb {
    background: var(--e-global-color-secondary);
    border-radius: 0;
  }
  
  .blog-widget--filter-select-dropdown li:hover,
  .blog-widget--filter-select-dropdown input:checked ~ label {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-secondary);
  }
  
  .blog-widget--filter-select-dropdown input:focus ~ label {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-secondary);
  }
  
  .blog-widget--filter-select-dropdown input[type="radio"] {
    position: absolute;
    left: 0;
    opacity: 0;
  }
  
  /* interactivity */
  .blog-widget--filter-custom-select.active .blog-widget--filter-arrow {
    transform: rotate(180deg);
  }
  
  .blog-widget--filter-custom-select.active .blog-widget--filter-select-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    z-index: 2;
  }

  .blog-widget--contact-title {
      font-family: var(--e-global-typography-primary-font-family);
      font-weight: 400;
  }

  @media screen and (min-width: 768px ) {
    .g-md-11, .gy-md-11 {
      --bs-gutter-y: 2.5rem;
  }
  .g-md-11, .gx-md-11 {
    --bs-gutter-x: 2.5rem;
}
  }

  .blog-widget .alm-btn-wrap {
    margin-top: 3rem;
  }
  @media (min-width: 992px) {
   .blog-widget .alm-btn-wrap {
        margin-top: 10rem;
    }
  }

  .back_btn_wrap {
    position: absolute;
    bottom: 86px;
  }

  .blog-widget--contact a {color: #707070;}
  .blog-widget--contact a:hover { color: #000000;}

  /***********/
.blog-widget--filter .searchbox_wrap { display: none; margin-top: 20px;}
.blog-widget--filter .searchbox_wrap.active {display: block;}
.searchbox_wrap .alm-filters-container .alm-filter--group {display: none;}
.searchbox_wrap .alm-filters-container .alm-filter--group.active { display: block;}

.blog-widget--filter .searchbox_wrap .alm-filters-container button[type=button] {
  position: absolute;
  right: 10px;
  top: 10px;
  overflow: hidden;
  width: 30px;
  height: 30px;
  padding: 0 !important;
  margin: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34 34"><g transform="translate(11.807 11.794)"><path d="M8.315-.5A8.815,8.815,0,1,1-.5,8.315,8.825,8.825,0,0,1,8.315-.5Zm0,16.631A7.815,7.815,0,1,0,.5,8.315,7.824,7.824,0,0,0,8.315,16.131Z" transform="translate(-11.153 -4.777) rotate(-22.5)" fill="%23a6197e" stroke="%23A6192E"/><path d="M-.5-.5H2.853V9.909H-.5ZM1.853.5H.5V8.909H1.853Z" transform="translate(8.03 9.703) rotate(-45)" fill="%23a6197e" stroke="%23A6192E"/><path d="M2.916,3.621-.353.354.353-.354l3.27,3.268Z" transform="translate(5.592 5.604)" fill="%23a6197e" stroke="%23A6192E"/></g></svg>') no-repeat center center;
  border: 1px solid transparent !important;
  border-radius: inherit !important;
  background-color: transparent !important;
  cursor: pointer !important;
  opacity: 0.7;
  box-shadow: none;
}
.blog-widget--filter .searchbox_wrap .alm-filters-container button[type=button] span,
.blog-widget--filter .searchbox_wrap .alm-filters-container .has-button button[type=button] { display: none;}
.blog-widget--filter .searchbox_wrap .alm-filters-container .alm-filter--text-wrap.has-button input[type=text] {
  width: 100%;
  border: 0px;
  padding: 8px;
  font-size: 24px;
  font-family: var(--e-global-typography-accent-font-family);
  border-radius: 0;
  height: 52px;
  border: 1px solid var(--red);
}
.blog-widget--filter .searchbox_wrap .alm-filters-container .alm-filter--select select {
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-color: #fff;
  cursor: pointer;
  font-family: var(--e-global-typography-accent-font-family);
  font-size: 24px;
  color: var(--red);
  height: 52px;
  padding: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  border: 1px solid var(--red);
}
.blog-widget--filter .searchbox_wrap .alm-filters-container .alm-filter--text-wrap.has-button input[type=text]::placeholder {
  color: var(--red) !important;
  opacity: 1; /* Firefox */
  font-size: 24px;
}

.blog-widget--filter .searchbox_wrap .alm-filters-container .alm-filter--text-wrap.has-button input[type=text]::-ms-input-placeholder { 
  color: var(--red) !important;
  font-size: 24px;
}

.blog-widget--filter .searchbox_wrap .alm-filters-container .alm-filters--reset {
  display: none;
}

.latest-news-widget--twitter-feed a.j-image img {
  max-height: 150px;
  object-fit: cover;
}