.dragula-drop {
    border: 2px dashed #ccc;
    padding: 10px;
    min-height:60px;
    margin-bottom: 20px;
}

.dragula-drop.is-active {
    border-color: #333;
}

.doubleColumns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
  }

.edit-field-btn, .removeFieldValueButton {
    float: right;
}

.availableFields .form-select {
    display : none;
}

.pointer-click {
    cursor: pointer;
}

.css-w8svju {
    font-size: 1em;
    position: relative;
    list-style: none;
    padding: 0px;
    margin: 0px auto;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    white-space: nowrap;
    width: 100%;
    max-width: 75em;
}

.css-z0nisx {
    position: relative;
    padding: 1em;
}

.css-1e5nzym {
    text-transform: uppercase;
    margin: 0.5em 0px;
    font-family: Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: rgb(158, 158, 158);
    font-size: 0.625em;
    letter-spacing: 0em;
}

.css-17uknig {
    position: relative;
    margin: 0.5em 0px;
    line-height: 1.2;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1em;
}

/* Container holding the image and the flag icon */
.actor-image-container {
    /*position: relative;   Set to relative to act as a reference for the absolutely positioned flag icon 
    width: 100%; 
    height: auto; */
    display: flex; align-items: center; justify-content: center;
  }
  
  /* Flag icon style */
  .actor-image-container .fa-flag {
    position: absolute;
    top: 25%;   /* Adjust as needed */
    left: 8%;  /* Adjust as needed */
    width: 100%;  /* Take full width of the container for responsiveness */
    padding-left:10px;
    padding-right:10px;
    height: auto;
    font-size: 30px;
    color: red;  /* Flag color */
    z-index: 10;
    opacity: 0.7; /* Optional: make it semi-transparent so the image below is slightly visible */
  }
  
  /* Actor's image */
  .actor-image-container img {
    height: 200px;
    display: block;
    width: 100%;       /* Sets the width to fill the container */
    object-fit: cover; /* Maintains aspect ratio and covers the container */
}



.pswp-gallery .w-100 {
    width: 100%;
}

.pswp-gallery .min-height-100 {
    min-height: 100px;
}

.pswp-gallery .max-height-150 {
    max-height: 150px;
}

.pswp-gallery .border-radius-lg {
    border-radius: 10px;
}

.pswp-gallery .shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.pswp-gallery img {
    object-fit: cover; /* Ensure image covers the available space without distortion */
    display: block;
    background-color: #f0f0f0;
}


  .float-right {
    float:right;
  }

  .form-select option {
    color: #f5f5f5; /* Change this to your preferred font color for options */
    background-color: #2e2e2e; /* Change this to your preferred background color for options */
}

.bg-gradient-light-homepage
{
    background-image: linear-gradient(195deg,#42424a 0%,#191919 100%);
}

@media (min-width: 2200px) {
    .col-xl-2 {
        flex: 0 0 9%;  /* You can adjust this percentage based on your preference */
        max-width: 10%; /* Matching the flex percentage */
    }
}