/* Reset Styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --standard-blue: #255296;
  --white: #fff;
  --black: #000;
  --yellow: #ffc107;
  --dark-gray: #111111;
  --light-gray: #2c2b2b;
}

/* Website Styles */

body {
  width: 100%;
  max-width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--dark-gray);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 60px;
}

.back{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 0 40px;  
  a{
    text-decoration: none;
    color: #f6f6f6;
    font-size: 13px;
    background-color: #2c2b2b;
    padding: 10px 24px;
    border: 1px solid #656565;
    border-radius: 30px; 
    vertical-align: middle;
    img{
      padding-right: 10px;
    }
  }
}

.main-section{
  display: flex;
  background-color: var(--dark-gray);
  padding: 22px 40px 40px 40px;  
  max-width: 1200px;
  margin: 0 auto;  
  justify-content: space-between;
}

.main-section-col-1{
  width: 35%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  .docnyc-back-btn {
    border-radius: 20px;
    background: #2c2b2b;
    border: 1px solid #5a5a5a;
    color: white;
    font-size: 16px;
    text-decoration: unset;
    width: 120px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  .card{
    display: flex;
    flex-direction: column;
    background-color: var(--light-gray);
    border: 1px solid #5a5a5a;
    border-radius: 10px;
    padding: 0 0 30px 0;
    height: fit-content;
    .card-content{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px 10px;
      }
      .card-name{
        display: flex;
        flex-direction: row;
        h4{
          font-size: 18px;
          font-weight: 600;
          line-height: 18px;
        }
        p{
          font-size: 15px;
          font-weight: 300;
        }
      }
      .card-icon{
        position: relative;
        left: 10px;
      }
      .card-rating{
        display: flex;        
        gap: 10px;
        p{
          font-size: 10px;
          font-weight: 400;
          line-height: 22px;
          span{
            font-weight: 200;
          }
        }
      }      
    }
    .card-action{
      align-self: center;
      padding: 13px 0 0 0;
      a{
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: var(--standard-blue);
        border: none;
        padding: 18px 62px;
        border-radius: 100px;
        p{
          font-family: "Inter", sans-serif;
          color: #ffffff;
          font-size: 14px;
          font-weight: 600;
        }
      }
    }
    .divider{
      border-top: #ebebeb 1px solid;
      margin: 20px;
    }
    .card-social{
      display: flex;
      gap: 10px;
      padding: 0 25px;
      a{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #c4c4c4;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        img {
            width: 20px;
            height: 20px;
        }
      }
    }
  }

  img.profile-image {
    border-top-left-radius: 10px; 
    border-top-right-radius: 10px; 
    background-image: url('/assets/img/dashboard/square_placeholder.png'); 
    max-width: 390px; 
    min-width: 370px; 
    width: 100%;
  }

  @media screen and (max-width: 450px) {
    img.profile-image {
        min-width: auto;
    }
  }

.main-section-col-2{
  width: 63%;
  .about{
    h2{
      font-size: 18px;
      font-weight: 600;
    }
    .about-info{
      display: flex;
      gap: 60px;
      padding: 32px 0 0 0;
      .col{
        display: flex;
        gap: 10px;
        p{
          font-size: 14px;
          font-weight: 600;
        }
      }
    }
    .about-content{
      max-width: 600px;
      font-size: 15px;
      font-weight: 500;
      padding: 32px 0 0 0;
      button{
        background-color: transparent;
        border: none;
        outline: none;
        padding: 0;
        p{
          text-decoration: underline;
          display: block;
          color: #ffffff;
          font-size: 13px;
          padding: 20px 0 0 0;
        }
      }
      .readmore-answer {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.5s ease, padding 1s ease;
        padding: 0 48px;
      }
      .readmore-answer.show {
        max-height: 1000px;
        opacity: 1;
        padding: 24px 48px;
      }
    }
    .about-award{
      padding: 57px 0 0 0;
      h4{
        font-size: 18px;
        font-weight: 600;
      }
      .col{
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 24px 0 0 0;
        p{
          font-size: 15px;
          font-weight: 500;
        }
      }
    }
  }
}

.consultations {
    padding: 40px 0 0 0;
    h4 {
        font-size: 18px;
        font-weight: 600;
    }
    .consultations-cards{
        display: flex;
        gap: 29px;
        overflow: hidden;

        .consultations-card-container {
            border-radius: 10px;
            padding: 0 15px;
            background-color: #ffffff;
            background-image:
            radial-gradient(
            rgba(37, 73, 150, 0.85),
            #1a3264
            );

            .card {
                height: 400px;

                .about-card-top {
                    display: flex;
                    justify-content: space-between;
                    padding: 20px 0px 0 0px;
                    > p {
                        font-size: 14px;
                        font-weight: 600;
                        border: 1px solid #ffffff;
                        border-radius: 20px;
                        padding: 5px 20px; 
                        sup{
                        font-size: 4px;
                        font-weight: 300;
                        vertical-align: super;
                        }
                    }
                    .about-card-rating{
                        display: flex;
                        .icon-rating{
                        display: flex;
                        align-items: center;        
                        gap: 10px;
                        img{
                            width: 16px;
                        }
                        p{
                            font-size: 10px;
                            font-weight: 400;
                            line-height: 22px;
                            span{
                            font-weight: 200;
                            }
                            }
                        } 
                    }        
                }
                .about-card-content {
                    padding: 23px 8px;
                    max-height: 235px;
                    overflow: hidden;
                    h5 {
                        font-size: 20px;
                        font-weight: 600;
                        line-height: 24px;
                    }
                    p {
                        font-size: 12px;
                        font-weight: 300;
                        line-height: 14px;
                        padding: 21px 0 0 0;
                        max-height: 92px;
                        overflow: hidden;
                    }
                    a:not(.link-more) {
                        display: inline-block;
                        width: 47px;
                        text-align: center;
                        color: var(--standard-blue);
                        text-decoration: none;
                        font-size: 7px;
                        font-weight: 600;
                        background-color: #d9d9d9;
                        border: 1px solid #ffffff;
                        border-radius: 10px;
                    }
                    a.link-more {
                        font-size: 12px;
                        color: #fff;
                        text-decoration: none;
                        display: block;
                    }
                }
                .about-card-bottom {
                    display: flex;
                    align-items: center;
                    padding: 30px 0px;
                    position: absolute;
                    bottom: 0;
                    width: calc(100% - 30px);
                    border-top: rgba(255, 255, 255, 0.41) 1px solid;
                    .col:first-child{
                        flex: 1;
                    }
                    .col:last-child {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        background-color: #ffffff;
                        border-radius: 30px;
                        padding: 12px 15px;
                        max-width: 179px;
                        color: #1f1f1f;
                        text-decoration: none;
                        font-weight: 600;
                    }
                    .col{
                        p,a{
                        font-size: 14px;
                        font-weight: 600;
                        text-decoration: none;
                        }
                    }
                }
            }
        }
    }
}

.about-cards{
  display: flex;
  gap: 20px;
  padding: 20px 0 0 0;
  .about-card-1 {
    border-radius: 10px;
    padding: 0 15px;
    background-color: #ffffff;
    background-image:
    radial-gradient(
      rgba(37, 73, 150, 0.85),
      #1a3264
    );

    .card {
        height: 430px;
    }

    width: 50% !important;
    
  }
}

.about-card-2{
    flex: 1;
    border: 1px solid #B5B5B5A6;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box; 
    h4{
      font-size: 20px;
      font-weight: 600;
    }
    p{
      font-family: Inter;
      font-size: 12px;
      font-weight: 300;
      padding: 10px 0 0 0;
    }
    .icon-steps {
        display: flex;
        flex-direction: row;
        padding: 40px 0px;
        gap: 40px;

        @media screen and (max-width: 1200px) {
            flex-direction: column;
        }

        .icon-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;

            img {
                width: 50px;
                height: 52px;
            }

            span {
                text-align: center;
                font-family: Inter;
                font-size: 12px;
                font-weight: 500;
                line-height: 14.52px;
            }
        }
    }
  }

.browse_no_results .browse_nav_search_text {
    color: #fff;
}

.films{
  padding: 40px 0 0 0;
  h4{
    font-size: 18px;
    font-weight: 600;
  }
  .films-cards{
    display: flex;
    gap: 29px;
    overflow: hidden;
    max-width: 593px;
    .card{
      padding: 20px;
      background-color: #2a2c2b;
      border-radius: 16px;
      .card-content{
        .badge{
          display: inline-flex;
          background-color: #464646;
          padding: 4px 16px;
          border-radius: 20px;
          margin: 12px 0 0 0;
          a{
            text-decoration: none;
            color: #f6f6f6;
            font-size: 12px;
            font-weight: 500;
          }
        }
        h5{
          font-size: 16px;
          font-weight: 600;
          padding: 12px 0 0 0;
        }
        p{
          font-size: 14px;
          font-weight: 500;
          color: #858585;
        }
      }
    }
  }
}

.main-section-col-2{
  > .divider{
    border-top: #5d5d5d 1px solid;
    margin-top: 54px;
  }
}

.divider{
  border-top: #5d5d5d 1px solid;
  max-width: 1120px;
  padding: 0 40px;
  margin: 0 auto;
}

.faq{
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 0 0 0;
  .faq-title{
    display: flex;
    gap: 10px;
    img{
      object-fit: contain;
    }
    h3{
      font-size: 24px;
      font-weight: 600;
    }
  }
  .questions{
    button{
      border: none;
      padding: 0;
      background-color: #2a2c2b;
    }

    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 45px 0 0 0;
    .question{
      display: flex;
      justify-content: space-between;
      
      padding: 24px;
      border: none;
      p{
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        font-family: "Inter", sans-serif;
      }
      img:last-child{
        display: none;
      }
    }

    .answer{
      font-size: 14px;
      font-weight: 500;
      color: #ffffff;
      font-family: "Inter", sans-serif;
      text-align: start;

      a {
        color: #5286d5;
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
      }
    }
  }
}


.questions button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.answer.open {
  max-height: 200px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

.answer.closed {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.answer p {
  padding: 24px 48px;
}

.question img {
  vertical-align: middle;
  transition: transform 0.5s ease; 
}


.rotate {
  transform: rotate(135deg);
}


.filmmakers {
  width: 100%;
  overflow-x: hidden;
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px 20px;

  h2{
    font-size: 18px;
    font-weight: 600;
  }
}

.swiper-wrapper{
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0 0;
}

:root {
  --standard-blue: #255296;
  --white: #fff;
  --black: #000;
  --yellow: #ffc107;
  --dark-gray: #111111;
  --light-gray: #2c2b2b;
}

.navigation{
  background-color: var(--black);
  padding: 0 40px;  
}

nav, .nav-logo, .search-container, .nav-menu, .toggle-button{
  display: flex;
}

nav{  
  align-items: center;
  max-width: 1120px;
  max-height: 88px;
  margin: 0 auto;
  padding: 10px 0;
  .nav-logo{
    img{
      max-width: 70px;
    }
  }
}


.nav-logo, .nav-menu{
  width: 25%;
}

.search-container{
  width: 50%;
}


.search-container{
  background-color: #2a2c2b;
  align-items: center;
  position: relative;
  border-radius: 20px;
  padding: 5px 20px;
  span{
    margin: 5px 10px 0 0;
  }
  input{
    background-color: transparent;
    border: none;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #a3a3a3;
  }
  input:focus-visible {
    outline: none;
  }
}

.nav-menu{
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  .sponsor{
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #a8a8a8;
  }
  .toggle-button{
    background-color: #2a2c2b;
    padding: 7px 14px 7px 7px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
  }
}


.circle {
  width: 34px;
  height: 34px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #ddd; /* Opcional: para una mejor visibilidad */
}

.only-mobile {
    display: none;
}

@media screen and (max-width: 1200px) {

    .only-mobile {
        display: block;
    }

    .consultations .consultations-cards.one-offering {
        gap: 0px;
        .swiper-slide {
            width: 100% !important;
            margin-right: 0px !important;
        }
        .how-it-works {
            display: none;
        }
    }

  .main-section,
  body {
    background-color: black;
  }

  .navigation {
    display: flex;
    align-items: center;
    padding: 0 13px;

    ul li {
      text-align: center;
      font-family: Inter;
      font-size: 9px;
      font-style: normal;
      font-weight: 500;
      line-height: 124%;
    }
  }

  nav {
    margin: 0;
    width: 100%;
  }

  .search-container {
    width: 70%;
  }

  .navigation img {
    width: 26px;
    height: 26px;
    margin-top: 0;
  }

  .search-container {
    background-color: #2a2c2b;
    align-items: center;
    position: relative;
    border-radius: 20px;
    padding: 8px 25px;

    span {
      margin: 5px 10px 0 0;
    }

    input {
      padding: 3px 0px;
    }

    .icon {
      padding: 0;
      margin: 0;
      height: 15px;
      transform: translate(-5px, -6px);

      img {
        width: 15px;
      }
    }
  }

  .nav-menu {
    .sponsor {
      display: none;
    }

    .toggle-button {
      background-color: transparent;
      justify-content: flex-end;
      padding: 0;

      .circle {
        display: none;
      }

      span img {
        width: 18px;
        margin-bottom: -5px;
      }

    }
  }

  .main-section {
    flex-direction: column;
    padding: 40px 13px;
    align-items: center;

    .main-section-col-1 {
      width: 100%;
      justify-content: center;
      align-items: center;
      .card {
        max-width: 374px;

        .card-social {
          justify-content: center;
          gap: 15px;
          ;
        }
      }
    }

    .main-section-col-2 {
      width: 100%;
      max-width: 374px;

      .about {
        padding: 40px 0 0 0;

        .about-info {
          flex-direction: column;
          gap: 21px;
        }

        .about-award {
          padding: 34px 0 0 0;
        }
      }

      .about-cards {

        .about-card-2 {
            &.same-row {
                display: none;
            }
          .steps {
            li {
              padding: 23px 0;
            }
          }
        }
      }

      >.divider {
        display: none;
      }
    }

    .films {
      .films-cards {
        .card {
          max-width: 282px;
        }
      }
    }
  }

  .faq {
    max-width: 374px;

    .questions {
      .question {
        text-align: start;
        padding: 14px 0px;
        align-items: center;
        background-color: #000000;
        border-bottom: 1px solid #434343;

        p {
          font-size: 12px;
          font-weight: 600;
        }

        img:last-child {
          display: block;
        }

        img:not(:last-child) {
          display: none;
        }
      }
      .answer{
        background-color: #000000;
        font-size: 12px;
        font-weight: 600;

        p{
          padding: 14px 10px;
        }
      }
    }
  }


  .filmmakers {
    padding-top: 40px;
    width: 100%;
    max-width: 374px;



    .title {
      font-size: 18px !important;
    }

    .filmmakers-slider {
      padding: 0 0px;

    }
  }
}

/* Standard Card */
.filmmakers{
  .card {
    min-width: 260px;
    max-width: 260px;
    height: 400px;
    position: relative;
    border-radius: 10px;
    border: 0.5px solid #5a5a5a;
    background: rgba(53, 52, 52, 0.75);

    .card-badge,
    .card-button {
      position: absolute;
      top: 10px;
    }

    .card-badge {
      display: none;
      left: 10px;
      width: 110px;
      height: 20px;
      /*display: flex;*/
      justify-content: center;
      align-items: center;
      border-radius: 15px;
      background: linear-gradient(90deg, #83dfed 0%, #1e3f90 100%);
      font-size: 8px;
    }

    .card-button {
      right: 10px;
      width: 20px;
      height: 20px;
      border-radius: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--light-gray);
      color: var(--white);
    }

    .card-image {
      width: 100%;
      height: 253px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      img {
        width: 100%;
        height: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        object-fit: cover;
      }
    }

    .card-body {
      padding: 0 5px 10px 10px;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      height: calc(100% - 253px);

      .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        .header-name {
          display: flex;
          align-items: center;
          gap: 0.2em;
          max-width: 150px;
          width: fit-content;
          h3 {
            font-size: 13px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            text-wrap: nowrap;
          }
          .badge-background {
            width: 12px;
            height: 12px;
            background-repeat: no-repeat;
            background-image: url("./assets/icons/Badge-circle.png");
            display: flex;
            justify-content: center;
            align-items: center;
          }
        }
        .header-statistics {
          display: flex;
          align-items: center;
          gap: 3px;
          .header-rating {
            font-size: 10px;
            font-weight: 600;
          }
          .header-reviews {
            font-size: 10px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%; /* 13px */
            letter-spacing: 0.1px;
          }
        }
      }

      .subheader {
        span {
          font-size: 11px;
          font-weight: 300;
          line-height: 13.31px;
        }
      }

      .rates {
        display: flex;
        gap: 0.5em;
        div {
          width: 70px;
          height: 12px;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: #6f6f6f;
          color: var(--white);
          border-radius: 10px;
          padding: 5px;
          span {
            font-size: 7px;
            font-weight: 300;
            line-height: 8.4px;
          }
        }
      }

      .description {
        p {
          font-size: 10px;
          font-weight: 200;
          line-height: 12.1px;
          margin: 1em 0;
        }
      }

      .action {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1em;
        .card-action {
          width: 226px;
          height: 30px;
          background-color: var(--standard-blue);
          color: var(--white);
          border-radius: 153px;
          font-size: 10px;
          font-weight: 700;
          margin-top: 1em;
          border: none;
          margin: 0 auto;
          cursor: pointer;
          position: absolute;
          bottom: 10px;
          text-align: center;
          padding-top: 8px;
          text-decoration: none;
        }
      }
    }
  }
}
/* Standar Card Mobile */
@media screen and (max-width: 768px) {
.filmmakers{  
  .card {
    min-width: 144px;
    max-width: 268px;
    height: 458px;
    

    .card-badge {
      width: 59.515px;
      height: 9.396px;
      font-size: 4px;
      left: 2.7px;
    }

    .card-button {
      width: 8.116px;
      height: 7.047px;
      font-size: 6px;
    }

    .card-image {
      width: 100%;
      height: 253px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      img {
        width: 100%;
        height: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        object-fit: cover;
      }
    }

    .card-body {
      padding: 6px 5px 10px 3px;
      

      .header {
        padding-top: 0px;
        .header-name {
          display: flex;
          align-items: center;
          gap: 0.2em;
          max-width: 150px;
          width: fit-content;
          h3 {
            font-size: 13px;
          }
          .badge-background {
            width: 12px;
            height: 12px;
          }
        }
        .header-statistics {
          display: flex;
          align-items: center;
          gap: 2px;
          img {
            width: 5px;
            height: 5px;
          }
          .header-rating {
            font-size: 10px;
            font-weight: 600;
          }
          .header-reviews {
            font-size: 10px;
          }
        }
      }

      .subheader {
        display: flex;
        margin: 1px 0 5px 0;
        span {
          font-size: 11px;
          font-weight: 300;
          line-height: normal;
        }
      }

      .rates {
        margin-bottom: 8px;
        div {
          width: 70px;
          height: 12px;
          padding: 2px;
          span {
            font-size: 7px;
            line-height: normal;
          }
        }
      }

      .description {
        p {
          font-size: 10px;
          font-weight: 300;
          line-height: normal;
          margin: 20px 0;
        }
      }

      .action {
        margin-bottom: 0;
        .card-action {
          width: 226px;
          height: 30px;
          font-size: 7px;
          font-weight: 700;
          margin-top: 0.5px;
        }
      }
    }
  }
}
}

.title-slider-controllers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  
  .slider-controllers {
    display: flex;
    gap: 4px;
    .slider-controller-item {
      display: flex;
      width: 37px;
      height: 37px;
      padding: 12px 12px 12px 14px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 40px;
      background: #d9d9d9;
      cursor: pointer;
    }
  }
}

@media screen and (max-width: 768px) {
  .title-slider-controllers {
    .title {
      font-size: 13px;
      font-style: normal;
      font-weight: 500;
      line-height: 120%; /* 15.6px */
      letter-spacing: 0.13px;
    }
    .slider-controllers {
      gap: 2px;
      .slider-controller-item {
        width: 30px;
        height: 30px;
      }
    }
  }
}

.sa_img {
  width: 100%;
  height: 100%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  position: absolute;
}

.sa_underline_none {
  text-decoration: none;
}

.sa_btn_primary {
  width: 100%;
  grid-column-gap: 8px;
  color: #000;
  text-align: center;
  background-color: #ebebeb;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.sa_modal_background {
  z-index: 1000;
  background-color: rgba(0, 0, 0, .8);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.sa_modal_background.lightbox {
  background-color: rgba(0, 0, 0, .9);
  display: none;
}

.sa_modal_background.film-description {
  display: none;
}

.sa_modal_background.show {
  display: flex;
  overflow: auto;
}

.sa_modal_container {
  width: 568px;
  height: 568px;
  background-color: #fff;
  border-radius: 20px;
  display: block;
  overflow: hidden;
}

.sa_modal_container.booking_request {
  display: none;
}

.sa_modal_container.booking_request.show {
  flex: none;
  display: block;
}

.sa_modal_container.content {
  height: auto;
  max-height: 752px;
  flex-direction: column;
  display: none;
}

.sa_modal_container.content.show {
  flex: none;
  display: block;
}

.sa_modal_container.filter {
  height: auto;
  max-height: 752px;
  flex-direction: column;
  display: none;
}

.sa_modal_container.max-h-640 {
  height: auto;
  max-height: 640px;
}

.sa_modal_container.max-h-640.max-width-836 {
  width: 100%;
  max-width: 836px;
}

.sa_modal_container.max-h-none {
  height: auto;
}

.sa_modal_container.max-w-836 {
  width: 100%;
  max-width: 836px;
}

.sa_modal_container.max-w-836.height-auto {
  height: auto;
}

.sa_modal_header {
  height: 52px;
  grid-column-gap: 12px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
  background-color: var(--standard-blue) !important;
}

.sa_modal_header.static_content {
  height: auto;
  grid-row-gap: 36px;
  flex-direction: column;
  align-items: stretch;
  padding: 36px 36px 28px;
  position: static;
}

.sa_modal_header.filter {
  height: auto;
  grid-row-gap: 36px;
  border-bottom: 1px solid #ebebeb;
  flex-direction: column;
  align-items: stretch;
  padding: 33px 36px 28px;
  position: static;
}

.sa_modal_header.sa_justify_center {
  justify-content: center;
}

.sa_modal_header.sa_justify_center.border-bottom-b200 {
  border-bottom: 1px solid #ebebeb;
}

.sa_modal_icn_close {
  cursor: pointer;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: 24px;
}

.sa_modal_body {
  height: 490px;
  padding: 44px 36px 10px;
  overflow: auto;
  color: #000000;
  
}

.sa_modal_body.static_content {
  height: auto;
  flex-direction: column;
  flex: 1;
  padding-top: 0;
  padding-bottom: 36px;
  display: flex;
}

.sa_modal_body.filter {
  height: auto;
  grid-row-gap: 16px;
  flex-direction: column;
  padding-top: 29px;
  padding-bottom: 36px;
  display: flex;
}

.sa_modal_body.max-h-none {
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.sa_modal_body.height-x {
  height: 588px;
}

.sa_modal_body.max-h-588 {
  height: 100%;
  max-height: 588px;
}

.sa_modal_body.height-588 {
  height: 508px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.sa_form_label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
}

.sa_form_section {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.sa_form_section.one-field {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.sa_form_section.one-field.location {
  display: none;
}

.sa_form_section.gap_16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.sa_form_columns {
  grid-column-gap: 16px;
  display: flex;
}

.sa_form_field {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.sa_form_field.justify-center {
  justify-content: center;
}

.sa_form_field.justify-center.size-hug {
  flex: 0 auto;
}

.sa_form_input_text {
  border: 1px solid #ebebeb;
  margin-bottom: 0;
  padding: 16px;
  font-size: 14px;
  line-height: 100%;
}

.sa_form_input_text.no_border {
  border: 1px #000;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 0;
}

.sa_form_input_text.no_border::-ms-input-placeholder {
  font-size: 14px;
  line-height: 100%;
}

.sa_form_input_text.no_border::placeholder {
  font-size: 14px;
  line-height: 100%;
}

.sa_form_input_text.add-tag {
  border-style: none;
  flex: 0 0 24%;
  padding: 12px 12px 12px 0;
  font-size: 13px;
  font-style: italic;
}

.sa_form_section_header {
  margin-bottom: 4px;
}

.sa_form_modal {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.sa_form_modal.gap_x {
  grid-row-gap: 32px;
}

.sa_form_modal.full-size {
  width: 100%;
  height: 100%;
}

.sa_form_select {
  height: 48px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  margin-bottom: 0;
  padding: 0 12px;
  font-size: 13px;
  line-height: 100%;
}

.sa_form_input_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid #ebebeb;
  align-items: center;
  padding: 4px 16px;
  display: flex;
}

.sa_form_vertical_divider {
  height: 100%;
  border-left: 1px solid #ebebeb;
}

.sa_form_radio {
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}

.sa_form_radio.selected {
  background-image: url('../images/icn_sa_close_modal.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.sa_form_radio_container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.sa_form_textbox_container {
  border: 1px solid #ebebeb;
}

.sa_form_textarea {
  min-height: 148px;
  border: 1px #000;
  margin-bottom: 0;
  padding: 18px;
}

.sa_form_textarea_counter {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #f5f5f5;
  border-top: 1px solid #ebebeb;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 18px;
  display: flex;
}

.sa_align_center {
  text-align: center;
}

.sa_modal_success {
  height: 100%;
  grid-row-gap: 36px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: none;
}

.sa_form_block {
  flex: 1;
  margin-bottom: 0;
}

.sa_form_block.full-size {
  width: 100%;
  height: 100%;
}

.sa_form_success_copy {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.sa_form_success_content {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  align-items: center;
  margin-top: 36px;
  display: flex;
}

.sa_lightbox {
  width: 100%;
  display: flex;
}

.sa_lightbox_thumb {
  flex: 0 auto;
}


.profile_picutre {
  width: 30px;
  height: 30px;
  border-radius: 30px;
}

.profile_picutre.sa {
  width: 34px;
  height: 34px;
  border: solid 2px #fff;
}

.hamburger-line {
  height: 2px;
  background-color: #fff;
}

.hamburger-wrapper {
  width: 16px;
  grid-row-gap: 2px;
  flex-direction: column;
  display: flex;
}

.btn-menu {
  grid-column-gap: 14px;
  background-color: #fff;
  border-radius: 54px;
  justify-content: center;
  align-items: center;
  padding: 7px 18px 7px 7px;
  display: flex;
}

.btn-menu.logger.sa {
  grid-column-gap: 12px;
  cursor: pointer;
  background-color: #2a2c2b;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
}

.log-in-menu {
  background-color: #2a2c2b;
  border-radius: 8px;
  flex-direction: column;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  position: absolute;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
  width: 125px;
}

.dropdown-link {
  color: #999;
  white-space: nowrap;
  padding: 10px 24px 10px 20px;
  display: block;
  font-size: 14px;
}

.dropdown-link.loggedin {
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
}

.dropdown-link:hover {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
}

.dropdown-link.loggedout {
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
}

.dropdown-link.loggedout:hover {
  padding-right: 23px;
}
.browse_nav_search_results {
    z-index: 1;
    background-color: #2a2c2b;
}
.browse_nav_search_title {
    color: #fff;
}
.browse_nav_search_text_small {
    font-weight: 600;
    color: #888;
}

.category-container {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;

    .category {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        height: 20px;
        flex-shrink: 0;

        border-radius: 153px;
        border: 1px solid #000;
        background: #255296;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 10px;
        font-weight: 600;
    }
}

.sa_flex_hor {
  align-items: center;
  display: flex;
}

.sa_flex_hor.gap_10 {
  grid-column-gap: 10px;
}

.sa_flex_hor.gap_48 {
  grid-column-gap: 48px;
}

.sa_flex_hor.gap_48.align-top {
  align-items: flex-start;
}

.sa_flex_hor.gap_6 {
  grid-column-gap: 6px;
}

.sa_flex_hor.gap_6.wrap {
  grid-row-gap: 6px;
  flex-wrap: wrap;
}

.sa_flex_hor.gap_4 {
  grid-column-gap: 4px;
}

.sa_flex_hor.gap_auto {
  justify-content: space-between;
}

.sa_flex_hor.gap_16 {
  grid-column-gap: 16px;
  align-items: stretch;
}

.sa_flex_hor.align-top {
  align-items: flex-start;
}

.sa_flex_hor.gap_8 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.sa_flex_hor.gap_8.width-100 {
  width: 100%;
}

.sa_flex_hor.gap_8.wrap {
  flex-wrap: wrap;
}

.sa_flex_hor.gap_8.wrap.padding-16 {
  padding: 16px;
}

.sa_profile_preview {
  background-color: #1e1e1e;
  border-radius: 60px;
  align-items: center;
  padding: 12px;
  display: flex;
  margin: 0px 20px;
}

.sa_toggle {
  width: 50px;
  height: 28px;
  background-color: #fff;
  border-radius: 40px;
  align-items: center;
  padding: 6px;
  display: flex;
}

.sa_toggle.outline {
  border: 1px solid #ebebeb;
}

.sa_toggle_ball {
  width: 16px;
  height: 16px;
  background-color: #a3a3a3;
  border-radius: 20px;
}

.sa_toggle.toggle_off {
    background-color: #5d5d5d;
}

.about-title-container {
    display: flex;
    justify-content: space-between;
}

.sa_button_container {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;

  .sa_btn_primary {
    width: auto;
    background-color: var(--light-gray);
    margin-top: 20px;
  }
}

.sa_button_container.padding_tb_52 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.sa_button_container.padding-t_8 {
  flex: 1;
  justify-content: flex-end;
  padding-top: 8px;
}

.sa_button_container.padding-t_30 {
  flex: 1;
  justify-content: flex-end;
  padding-top: 30px;
}

.sa_button_container.flex-hor {
  flex-direction: row;
}

.sa_button_container.flex-hor.gap_12 {
  grid-column-gap: 12px;
}

.talent-card > .card {
    min-width: 260px !important;
    max-width: 260px !important;
}