/* _content/eCine/Views/Movies/Index.cshtml.rz.scp.css */

/*.unorder-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 15%));
    justify-content: center;
    padding: initial;
    width:100%
}
.unorder-list li{
    justify-self: center;
}
.movie-card {
    background: #ffffff;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 250px;*/
/*min-height:670px; OPCIONAL---*/
/*border-radius: 10px;
    display: flex;
    flex-direction:column;
    padding:0;
}

.movie-image {
    position: relative;
    overflow: hidden;*/
/*height: 100%;*/
/*width: 100%;
    margin: 0 0 0;
}
.movie-header {
    position:relative;
    padding: 0;
    margin: 0;*/
/*    height: 420px;*/
/*width: 100%;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.imageHeader {
    aspect-ratio:2/3;
    background: url("");
    background-size: cover;
    background-position: 100% 80%;
}
.header-icon-container {
    position: relative; 
    height:100%;
}

.header-icon {
    display:block;
    width: 100%;
    height: 100%;
    line-height: 367px;
    text-align: center;
    vertical-align: middle;
    margin: 0 auto;
    color: #ffffff;
    font-size: 54px;
    text-shadow: 0px 0px 20px #6abcea, 0px 5px 20px #6ABCEA;
    opacity: 0;
}

.header-icon:hover {
    background: rgba(0, 0, 0, 0.45);
    font-size: 74px;
    text-shadow: 0px 0px 20px #6abcea, 0px 5px 30px #6ABCEA;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    opacity: 1;
}

.movie-card:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
}

.movie-content {
    padding: 18px 18px 24px 18px;
    margin: 0;
}

.movie-content-header, .movie-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap:4px;
}

.movie-title {
    font-size: 18px;
    margin: 0;
    display: table-cell;
}
.description{
    font-size:12px;
}

.movie-info {
    margin-top: .5em;
}
.info-section1 {
    display: flex;
    justify-content:space-between;
    text-transform: uppercase;
}
.info-section1 .start {
    text-align: start;
}
.info-section1 .end,.end span {
    text-align: end;
 }
.info-section2 {
    display: flex;
    justify-content:space-between;
    text-transform: uppercase;
    text-align: end;
}
.info-section {
    display: table-cell;
    text-transform: uppercase;
    text-align: center;
}

    .info-section:first-of-type {*/
/*text-align: left;*/
/*text-align: center;
    }

    .info-section:last-of-type {*/
/*text-align: right;*/
/*text-align: center;
    }

    .info-section label, .info-section1 label {
        display: block;
        align-self:center;
        color: rgba(0, 0, 0, 0.5);*/
/*margin-bottom: .5em;*/
/*font-size: 10px;
        
    }

    .info-section span, .info-section1 span {
        font-weight: 700;
        font-size: 10px;
    }

.mas-info {
    margin: 5px 0;
    font-size: .55rem;
    cursor:pointer;
    color: black;
    font-weight:100;
    &:hover
    {
        color: #0d6efd;
        text-decoration: underline;
    }
}
.hidden{
    display:none !important;
}

@media screen and (max-width: 541px) {
    .unorder-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 100%));
       
    }
    .movie-image{
        width:40%;
    }
    .movie-content{
        width:60%;
    }
    .tags {
        flex-flow: wrap;
    }
    .movie-card {
        width: 100%;
        max-width: 95%;
        min-height: none;
        margin: 1em;
        display: flex;
        flex-direction: row;
        min-height: 206px;
    }
    .movie-header{*/
/*height:310px;*/
/*min-height:206px;*/
/*min-width:128px;*/
/*}

    .container {
        padding: 0;
        margin: 0;
    }
}*/
/*@media screen and (max-width: 410px) {*/
/*    .area-buttons{
        flex-direction:row !important;
    }
    .movie-content-header {
        flex-direction: column;
        gap: 0;
    }*/
/*.btn {
        width: 100% !important;
        box-shadow: 0 1px 0.3em rgba(0,0,0, .2);
        margin: 3px;
    }*/
/*    .movie-info{
        flex-direction:column;
    }
    .movie-info span{
        flex-direction: column;
    }
    .info-section1 .end, .end span {
        text-align: start;
    }*/

/*}*/

/*Button animation */

/*.btn {
    width: 3em;
    height: 3em;
    background-color: #fff !important;
    border: none;
    border-radius: 3em;
    box-shadow: 0 1px 0.3em rgba(0,0,0, .2);
    outline: none;
    cursor: pointer;
    transition: transform .3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
 
    transition: 0.08s ease-in;
    -o-transition: 0.08s ease-in;
    -ms-transition: 0.08s ease-in;
    -moz-transition: 0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
}

.btn:active {
    transform: scale(.9);
}

.btn.active {
    transform: scale(.9);
    color: black !important;
}

.btn:before {
    content: "";
    position: absolute;
    background: #89d1a6;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -1;
    -webkit-transition: top .3s ease-in;
    animation: btn 1s ease-out forwards paused;
}



.btn__text--second {
    opacity: 0;
}

.btn__icon {
    font-size: 1rem;
    color: var(--color);
    position: absolute;
}

.btn__icon--cart {
    left: 30%;
}

.btn__icon--box {
    transform: rotateZ(90deg);
    top: -50%;
    font-size: 0.5rem;
}

 --------- ANIMATION ----------- 

.btn.active .btn__text--first {
    animation: text1 .3s forwards;
}

.btn.active .btn__text--second {
    animation: text2 3s forwards;
}

.btn.active .btn__icon--cart {
    animation: cart 1s linear both;
}

.btn.active .btn__icon--box {
    animation: box 0.5s linear both;
}

@keyframes btn {
    0% {
        top: 100%;
    }

    55% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

.btn.active:before {
    animation-play-state: running;  Set animation-play-state to 'running' to start the animation 
}

.btn.reset:before {
    animation: none;
    top: 100%;
}

@keyframes text1 {
    100% {
        opacity: 0;
    }
}

@keyframes cart {
    70% {
        transform: rotateZ(-20deg);
    }

    80% {
        transform: rotateZ(0deg);
    }
}

@keyframes text2 {
    90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes box {
    0% {
        transform: rotate3d(-1, 1, 0, 0deg);
    }
    50% {
        transform: rotate3d(-1, 1, 0, 180deg);
    }
    80% {
        color: var(--color);
    }
    90%, 100% {
        transform: scale(0.8) rotate3d(-1, 1, 0, 360deg);
        top: 30%;
        color: transparent;
    }
}


.flip-scale-down-hor {
    animation: flip-scale-down-hor 0.5s ease-out forwards;
}
@keyframes flip-scale-down-hor {
    0% {
        transform: scale(1) rotateX(0);
    }
    50% {
        transform: scale(0.4) rotateX(180deg);
    }
    100% {
        transform: scale(1) rotateX(360deg);
}
}*/

.btn-buy[b-zx1pgkxwm8] {
    /*width: 3em;
    height: 3em;*/
    /* width: 20em;
    height: 3em;*/
    width: 100%;
    height: 3em;
    background-color: #FBFBFB !important;
    color: #332D2D;
    border: none;
    /*border-radius: 3em;*/
    box-shadow: 0 1px 0.3em rgba(0,0,0, .2);
    outline: none;
    cursor: pointer;
    transition: transform .3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.08s ease-in;
    -o-transition: 0.08s ease-in;
    -ms-transition: 0.08s ease-in;
    -moz-transition: 0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
}

    .btn-buy:active[b-zx1pgkxwm8] {
        transform: scale(.9);
    }

    .btn-buy.active[b-zx1pgkxwm8] {
        transform: scale(.9);
        color: black !important;
    }

    .btn-buy[b-zx1pgkxwm8]:before {
        content: "";
        position: absolute;
        background: #89d1a6;
        bottom: 0;
        left: 0;
        right: 0;
        top: 100%;
        z-index: -1;
        -webkit-transition: top .3s ease-in;
        animation: btn-buy-b-zx1pgkxwm8 1s ease-out forwards paused;
    }



.btn-buy__text--second[b-zx1pgkxwm8] {
    opacity: 0;
}

.btn-buy__icon[b-zx1pgkxwm8] {
    font-size: 1rem;
    color: var(--color);
    position: absolute;
}

.btn-buy__icon--cart[b-zx1pgkxwm8] {
    /*left: 30%;*/
}

.btn-buy__icon--box[b-zx1pgkxwm8] {
    transform: rotateZ(90deg);
    top: -50%;
    font-size: 0.5rem;
}

/* --------- ANIMATION ----------- */
.btn-buy.active .btn-buy__text--first[b-zx1pgkxwm8] {
    animation: text1-b-zx1pgkxwm8 .3s forwards;
}

.btn-buy.active .btn-buy__text--second[b-zx1pgkxwm8] {
    animation: text2-b-zx1pgkxwm8 3s forwards;
}

.btn-buy.active .btn-buy__icon--cart[b-zx1pgkxwm8] {
    animation: cart-b-zx1pgkxwm8 1s linear both;
}

.btn-buy.active .btn-buy__icon--box[b-zx1pgkxwm8] {
    animation: box-b-zx1pgkxwm8 0.5s linear both;
}

@keyframes btn-buy-b-zx1pgkxwm8 {
    0% {
        top: 100%;
    }

    55% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

.btn-buy.active[b-zx1pgkxwm8]:before {
    animation-play-state: running; /* Set animation-play-state to 'running' to start the animation */
}

.btn-buy.reset[b-zx1pgkxwm8]:before {
    animation: none;
    top: 100%;
}

@keyframes text1-b-zx1pgkxwm8 {
    100% {
        opacity: 0;
    }
}

@keyframes cart-b-zx1pgkxwm8 {
    70% {
        transform: rotateZ(-20deg);
    }

    80% {
        transform: rotateZ(0deg);
    }
}

@keyframes text2-b-zx1pgkxwm8 {
    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes box-b-zx1pgkxwm8 {
    0% {
        transform: rotate3d(-1, 1, 0, 0deg);
    }

    50% {
        transform: rotate3d(-1, 1, 0, 180deg);
    }

    80% {
        color: var(--color);
    }

    90%, 100% {
        transform: scale(0.8) rotate3d(-1, 1, 0, 360deg);
        top: 30%;
        color: transparent;
    }
}


.flip-scale-down-hor[b-zx1pgkxwm8] {
    animation: flip-scale-down-hor-b-zx1pgkxwm8 0.5s ease-out forwards;
}

@keyframes flip-scale-down-hor-b-zx1pgkxwm8 {
    0% {
        transform: scale(1) rotateX(0);
    }

    50% {
        transform: scale(0.4) rotateX(180deg);
    }

    100% {
        transform: scale(1) rotateX(360deg);
    }
}

@media (max-width: 410px) {
    .btn-containers[b-zx1pgkxwm8] {
        width: 100%;
    }
}
/* _content/eCine/Views/Movies/Info.cshtml.rz.scp.css */
/*.movie-card {
    color: #A9A8A3;
    padding: 40px 0;
}

.container {
    margin: 0 auto;
    width: 780px;
    height: 640px;
    background: #F0F0ED;
    border-radius: 5px;
    position: relative;
}

.hero {
    height: 342px;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    .hero:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        background: black;
        ;
        z-index: -1;
        background-repeat: no-repeat;
        background-size: cover;
        transform: skewY(-2.2deg);
        transform-origin: 0 0;
        //chrome antialias fix -webkit-backface-visibility: hidden;
    }

.cover {
    position: absolute;
    top: 160px;
    left: 40px;
    z-index: 2;
}

.details {
    padding: 190px 0 0 280px;
    .title1

{
    color: white;
    font-size: 44px;
    margin-bottom: 13px;
    position: relative;
    span

{
    position: absolute;
    top: 3px;
    margin-left: 12px;
    background: #C4AF3D;
    border-radius: 5px;
    color: #544C21;
    font-size: 14px;
    padding: 0px 4px;
}

}

.title2 {
    color: #C7C1BA;
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 15px;
}





}

.description {
    bottom: 0px;
    height: 200px;
    font-size: 16px;
    line-height: 26px;
    color: #B1B0AC;
}

.column1 {
    padding-left: 50px;
    padding-top: 120px;
    width: 220px;
    float: left;
    text-align: center;
}

.tag {
    background: white;
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 14px;
    margin-right: 4px;
    line-height: 35px;
    cursor: pointer;
}

    .tag:hover {
        background: #ddd;
    }

.column2 {
    padding-left: 41px;
    padding-top: 30px;
    margin-left: 20px;
    width: 480px;
    float: left;
}

.avatars {
    margin-top: 23px;
    img

{
    cursor: pointer;
}

img:hover {
    opacity: 0.6;
}

a:hover {
    text-decoration: none;
}

}



//tooltip stuff via: https://codepen.io/peiche/pen/JaftA

a[data-tooltip] {
    position: relative;
}

a[data-tooltip]::before,
a[data-tooltip]::after {
    position: absolute;
    display: none;
    opacity: 0.85;
}

a[data-tooltip]::before {*/
/*
   * using data-tooltip instead of title so we 
   * don't have the real tooltip overlapping
   */
/*content: attr(data-tooltip);
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 5px;
    border-radius: 5px;*/
/* we don't want the text to wrap */
/*white-space: nowrap;
    text-decoration: none;
}

a[data-tooltip]::after {
    width: 0;
    height: 0;
    border: 6px solid transparent;
    content: '';
}

a[data-tooltip]:hover::before,
a[data-tooltip]:hover::after {
    display: block;
}*/

/** positioning **/

/* top tooltip */
/*a[data-tooltip][data-placement="top"]::before {
    bottom: 100%;
    left: 0;
    margin-bottom: 40px;
}

a[data-tooltip][data-placement="top"]::after {
    border-top-color: #000;
    border-bottom: none;
    bottom: 50px;
    left: 20px;
    margin-bottom: 4px;
}*/
.poster[b-9a0jqy1ygs] {
    width: 20%;
}

    .poster img[b-9a0jqy1ygs] {
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
    }

p[b-9a0jqy1ygs] {
    text-wrap: pretty;
}

.info-section1[b-9a0jqy1ygs] {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.info-section1li:nth-child(2)[b-9a0jqy1ygs] {
    margin-left: 1rem !important;
}

.info-section1 label[b-9a0jqy1ygs] {
    margin-right: 0.5rem !important;
}

.sinopsis-toggle[b-9a0jqy1ygs] {
    cursor: pointer;
    &:hover

{
    color: #332D2D;
    text-decoration: underline;
}

}

.tags[b-9a0jqy1ygs] {
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    /*.poster {
        width: 100%;
    }
    .info-article {
        width: 100% !important;
        
    }
    .info-article h1{
       text-align:center;
    }*/
    h1[b-9a0jqy1ygs] {
        font-size: 1.25rem;
    }

    p[b-9a0jqy1ygs] {
        font-size: 0.85rem;
    }
}
/* _content/eCine/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
body[b-pd851y48rh], html[b-pd851y48rh] {
    margin: 0;
    padding: 0;
}

body[b-pd851y48rh] {
    overflow-x: hidden; /* Esto oculta la barra de desplazamiento horizontal */
}

a.navbar-brand[b-pd851y48rh] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
  color:red !important;
}
a[b-pd851y48rh] {
  color: #0077cc;
}
/*.navbar-brand {
    font-weight: 800;
    color: red;
}*/
.btn-primary[b-pd851y48rh] {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active[b-pd851y48rh], .nav-pills .show > .nav-link[b-pd851y48rh] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-pd851y48rh] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-pd851y48rh] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-pd851y48rh] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-pd851y48rh] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-pd851y48rh] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
