/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.neon-border {
  position: relative;
  overflow: hidden;
  padding: 2px;
}

/* Viền ngoài di chuyển */
.neon-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* độ dày viền ngoài */
  background: linear-gradient(90deg, #F35A1E, #1A1A1A, #F35A1E);
  background-size: 200% 100%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderMove 2s linear infinite alternate;
}

/* Viền trong (màu nền) */
.neon-border::after {
  content: "";
  position: absolute;
  inset: 4px; /* cách viền ngoài 2px */
  border-radius: 6px;
  border: 2px solid #1A1A1A; /* viền nền */
}

@keyframes borderMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.album-congtrinh .gallery
{
  max-height: 530px;
    overflow: auto;
}
.album-congtrinh .gallery::-webkit-scrollbar-thumb {
    background-color: #F35A1E;
    border-radius: 6px;
    border: 3px solid transparent;
    background-clip: padding-box;
}
.album-congtrinh .gallery::-webkit-scrollbar {
    width: 12px;
    background-color: transparent;
}
.album-mobile .swiper-slide img
{
  width: 100%;
  height: 530px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .album-mobile .swiper-slide img
  {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
}