/* Brief Card */

.card {
    height: 100%;
    width: 100%;
    border-radius: 18px;
    background: white;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    font-family: roboto;
    text-align: center;
    
    transition: 0.5s ease;
    cursor: pointer;
    margin: 20px auto;
}
  
@media screen and (min-width: 655px) { 
    .card { width: 48%; }     
}

.brief-card {
    --thumbnail-bgcolor: #339EF0;
    --thumbnail-symbolscolor: #0B5B99;
    --thumbnail-fontcolor: #000000;
    --thumbnailImage-border-bottom: #000 1px solid;
    --cardTitle-padding: 0px 10px;
    --cardTitle-fontFamily: 'Roboto Slab', serif;
    --cardTitle-fontSize: 25px;
    --cardTitle-fontColor: #000;
    --cardTitle-bgColor: #ffffff;
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 5px;
    border: #000 2px;
    text-align: left;
    margin: 20px auto;
    -webkit-box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
    -moz-box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
    -o-box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
}

.briefCard-interaction {
    line-height: 18px !important;
}

.briefCard-style2 {
    border-radius: 20px 20px 5px 5px;
}

@media screen and (min-width: 655px) {
    .brief-card {
        width: 40%;
    }
}

.brief-card.briefCard-style1 .briefCard-image,
.brief-card.briefCard-style2 .briefCard-image {
    margin-bottom: 0px;
}

.brief-card .briefCard-image {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    border-bottom: var(--thumbnailImage-border-bottom);
}

.briefCard-style2 .briefCard-image {
    border-radius: 20px 20px 0px 0px;
}

.brief-card .briefCard-image img {
    width:100%;
    border-radius: 5px 5px 0px 0px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.brief-card .briefCard-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}        

.brief-card .briefCard-text {
    padding: 0 10px 10px;
    line-height: 1.5;
}

.brief-footer {
    position: relative;
    height: 52px;
}

.brief-card .brief-footer {
    padding: 10px 10px 20px;
    width: -webkit-fill-available;
}

.brief-card .brief-footer span {
    border: 1px solid;
    padding: 8px;
    border-radius: 3px;
    color: black;
    font-size: 13px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.brief-card .brief-footer span:after {
    top: 30px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    width: 0;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.brief-footer img {
    position: absolute; 
    height: 50px; 
    top: -2px; 
    left: 60px;
}

.card-btn-VerMas {
    position: absolute;
    top: 12;
    left: 10px;
}

.card-btn-LoHaces {
    position: absolute;
    top: 12;
    right: 10px;
}

.card-btn-Release {
    position: absolute;
    top: 12;
    right: 140px;
}

.card-btn-ShowForm {
    position: absolute;
    top: 12;
    right: 10px;
}

.card-InConstruction {
    position: absolute;
    top: 12;
    right: 10px;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0px;
    color:#6a6969
}

.card-btnLink {
    cursor: pointer;
}

.brief-card .card-btnLink span {
    border: 1px solid;
    padding: 8px;
    border-radius: 3px;
    color: black;
    font-size: 13px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.brief-card .card-footer-decorator span:after {
    top: 30px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    width: 0;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.brief-card .card-btnLink span:hover:after { 
    width: 100%; 
    left: 0; 
}        

.brief-card .card-title {
    line-height: 27px;
    position: relative;
    padding: var(--cardTitle-padding);
    font-family: var(--cardTitle-fontFamily);
    font-size: var(--cardTitle-fontSize);
    color: var(--cardTitle-fontColor);
    background-color: var(--cardTitle-bgColor);
}

.brief-card.briefCard-style1 .card-link,
.brief-card.briefCard-style2 .card-link {
    padding: 0px 10px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.brief-card.briefCard-style1 .briefCard-image,
.brief-card.briefCard-style2 .briefCard-image {
    margin-bottom: 0px;
}

.brief-card.briefCard-style1 .card-caption,
.brief-card.briefCard-style2 .card-caption {
    text-align: center;
    top: 80%;
    font-size: 17px;
    color: #fff;
    position: absolute;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

.brief-card .card-btnLink span {
    border: 1px solid;
    padding: 8px;
    border-radius: 3px;
    color: black;
    font-size: 13px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.brief-card .card-btnLink span:hover {            
    background: black;
}

.brief-card .card-btnLink span:hover {            
    color:#fff;            
}

.briefCard-style2 .talktext {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.briefCard-style2 .btm-left-in.round {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

/* Thumbnail text */
.thumbnailText{
    color: var(--thumbnail-fontcolor);
    padding: 0.7em;
    text-align: left;
    line-height: 1.5em;
}

.thumbnailText p{
    /* remove webkit p margins */
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
}

.card-footer-decorator{
    --footer-decorator1-bg: "";
    --footer-decorator2-bg: "";
    --footer-decorator1-top: "";
    --footer-decorator1-bottom: "";
    --footer-decorator2-bottom: "";
    --footer-decorator1-left: "";    
    --footer-decorator1-right: "";    
    --footer-decorator2-left: "";
    --footer-decorator2-right: "";
    --footer-decorator1-width: "";
    --footer-decorator2-width: "";
    --footer-decorator1-height: "";
    --footer-decorator2-height: "";
    --footer-decorator1-rotation: 0 0 0 0deg;
    --footer-decorator2-rotation: 0 0 0 0deg;    
    position: relative;
    &:before {
        content: '';
        background: var(--footer-decorator1-bg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'Comic Sans MS', cursive;
        font-size: 16px;
        top: var(--footer-decorator1-top);
        bottom: var(--footer-decorator1-bottom);
        left: var(--footer-decorator1-left);
        right: var(--footer-decorator1-right);
        position: absolute;
        text-align: center;
        width: var(--footer-decorator1-width);
        height: var(--footer-decorator1-height);
        rotate: var(--footer-decorator1-rotation);
    }    
    &:after {
        content: '';
        background: var(--footer-decorator2-bg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'Comic Sans MS', cursive;
        font-size: 16px;
        bottom: var(--footer-decorator2-bottom);
        left: var(--footer-decorator2-left);
        right: var(--footer-decorator2-right);
        position: absolute;
        text-align: center;
        width: var(--footer-decorator2-width);
        height: var(--footer-decorator2-height);
        rotate: var(--footer-decorator2-rotation);
    }
}


/*---------------------------------*/
/* Tarjetas para Brief (Questions) */
/*---------------------------------*/
.questionCard-style1 {
    &:before {
      content: attr(data-thumbnailtitle);
      font-family: 'Comic Sans MS', cursive;
      font-size: 16px;
      position: absolute;
      text-align: center;
      width: 100%;
      color: var(--thumbnail-bgcolor);
      top: 45px;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 1;
    }
  }

.questionCard-style1 .card-content {
    background-color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    line-height: 32px;
    position: relative;
    &:before {
        content: '\003F';
        font-size: 110px;
        position: absolute;
        color: var(--thumbnail-symbolscolor);
        top: -25px;
        left: 10px;
        opacity: 1;
        rotate: 0 1 0 180deg;
      }
    &:after {
        content: '\003F';
        font-size: 110px;
        letter-spacing: -20px;
        position: absolute;
        color: var(--thumbnail-symbolscolor);
        bottom: 90px;
        right: 30px;
        opacity: 1;
        rotate: 0 0 0 180deg;
    }
}
  
.questionCard-style1 .briefCard-refran {
    background-color: var(--thumbnail-bgcolor);
}
  
.brief-card.questionCard-style1 .briefCard-refran {
    margin-top: 60px;
    margin-bottom: 55px;
}

/*------------------------------*/
/* Tarjetas para Brief (Quotes) */
/*------------------------------*/
.quoteCard-style1 .card-content {
    background-color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    line-height: 32px;
    position: relative;
    &:before {
        content: '\275B \275B';
        font-size: 84px;
        position: absolute;
        color: var(--thumbnail-symbolscolor);
        top: -30px;
        left: 10px;
        opacity: 1;
    }
    &:after {
        content: '...';
        font-size: 184px;
        letter-spacing: -20px;
        position: absolute;
        color: var(--thumbnail-symbolscolor);
        bottom: 120px;
        right: 27px;
        opacity: 1;
    }
}

.quoteCard-style1 .briefCard-refran {
    background-color: var(--thumbnail-bgcolor);    
}

.quoteCard-style2 .briefCard-refran {
    background-color: var(--thumbnail-bgcolor);
    font-family: 'Roboto Slab', serif;
    padding: 20px auto;
    font-size: 30px;
    line-height: 32px;
    position: relative;
    &:before {
        content: '\275B \275B';
        font-size: 64px;
        position: absolute;
        color: var(--thumbnail-symbolscolor);
        top: 20px;
        left: 10px;
        opacity: 1;
    }
    &:after {
        content: '...';
        font-size: 154px;
        letter-spacing: -15px;
        position: absolute;
        color: var(--thumbnail-symbolscolor);
        bottom: 44px;
        right: 24px;
        opacity: 1;
    }
}

.brief-card.quoteCard-style1 .briefCard-refran {
    margin-top: 60px;
    margin-bottom: 55px;
}

.brief-card.quoteCard-style2 .briefCard-refran {
    margin-bottom: 0px;
}

/*------------------------------------*/
/* Tarjetas para Brief (Trabalenguas) */
/*------------------------------------*/
.tongueTwisterCard {
    &:before {
        content: 'TRABALENG👅AS';
        font-family: 'Comic Sans MS', cursive;
        font-size: 16px;
        position: absolute;
        text-align: center;
        width: 100%;
        top: 45px;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
  }

.tongueTwisterCard .card-content {
    background-color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    line-height: 32px;
    position: relative;
    &:after {
        content: '';
        background: url("../../assets/decoracion_tarjeta_trabalenguas2.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'Comic Sans MS', cursive;
        font-size: 16px;
        bottom: 60px;
        right: 12px;
        position: absolute;
        text-align: center;
        width: 50px;
        height: 50px;
    }
}
  
.tongueTwisterCard .briefCard-trabalenguas {
    background-color: var(--thumbnail-bgcolor);
}
  
.brief-card.tongueTwisterCard .briefCard-trabalenguas {
    margin-top: 60px;
    margin-bottom: 55px;
}

/*-------------------------------*/
/* Tarjetas para Brief (Telones) */
/*-------------------------------*/
.telonCard {
    &:before {
        content: 'TELONES';
        font-family: 'Comic Sans MS', cursive;
        font-size: 16px;
        position: absolute;
        text-align: center;
        width: 100%;
        top: 45px;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.telonCard .card-content {
    background-color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    line-height: 32px;
    position: relative;
    &:before {
        content: '';
        background: url("../../assets/decoracion_tarjeta_telones2.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'Comic Sans MS', cursive;
        font-size: 16px;
        top: -58px;
        left: 6px;
        position: absolute;
        text-align: center;
        width: 110px;
        height: 110px;
    }
    &:after {
        content: '';
        background: url("../../assets/decoracion_tarjeta_telones2.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'Comic Sans MS', cursive;
        font-size: 16px;
        top: -58px;
        right: 6px;
        position: absolute;
        text-align: center;
        width: 110px;
        height: 110px;
    }
}
  
.telonCard .briefCard-telon {
    background-color: var(--thumbnail-bgcolor);
}
  
.brief-card.telonCard .briefCard-telon {
    margin-top: 60px;
    margin-bottom: 55px;
}

/*------------------------------*/
/* Tarjetas para Brief (Apodos) */
/*------------------------------*/
/* Tarjetas Compactas */
.apodoCompacto-style1 .band-top div{
    height: 60px;
    content: '';
    background: url("../../assets/decoracion_tarjeta_apodo1.png");
    background-position: bottom left;
    background-repeat: repeat;
    background-size: contain;
  }
  .apodoCompacto-style1 .band-middle {
    background-color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    line-height: 32px;
  }
  .apodoCompacto-style1 .band-bottom div{
    height: 60px;
    content: '';
    background: url("../../assets/decoracion_tarjeta_apodo2.png");
    background-position: top left;
    background-repeat: repeat;
    background-size: contain;
  }


.apodoCompacto-style1 .band-middle {
    background-color: var(--thumbnail-bgcolor);
}

/*-----------------------------------*/
/* Tarjetas para Brief (Dicharachos) */
/*-----------------------------------*/
.dicharachoCompacto-style1 .band-top div{
    height: 60px;
    content: '';
    background: url("../../assets/decoracion_tarjeta_dicharacho2.png");
    background-position: bottom left;
    background-repeat: repeat;
    background-size: contain;
  }
  .dicharachoCompacto-style1 .band-middle {
    background-color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    line-height: 32px;
  }
  .dicharachoCompacto-style1 .band-bottom div{
    height: 60px;
    content: '';
    background: url("../../assets/decoracion_tarjeta_dicharacho2.png");
    background-position: top left;
    background-repeat: repeat;
    background-size: contain;
  }


.dicharachoCompacto-style1 .band-middle {
    background-color: var(--thumbnail-bgcolor);
}

/*---------------------------------*/

.textlikebutton {
    --color-textlikebutton : #9c0000;    
    -webkit-appearance: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    width: 100%;
    padding: 16px, 10px !important;
    font-size: 24px;
    background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);
    border-radius: 40px;
    border: 1px solid var(--color-textlikebutton);
    box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 0 #CECFD1;
    transition: all 0.2s ease;
    color: var(--color-textlikebutton) !important;
    text-shadow: 0 1px #fff;
}

/* Animación de textlikebutton-animation */
@-webkit-keyframes active {
    from { box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 20px 0px rgb(253, 8, 8); }
    to { box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1; }
}
@keyframes active {
    from { box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 20px 0px rgb(253, 8, 8); }
    to { box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1; }
}

.textlikebutton-animation {
  -webkit-animation: active 0.9s alternate infinite;
          animation: active 0.9s alternate infinite;
  outline: none;
}

.textlikebutton-effect {
    cursor: pointer;
}
.textlikebutton-effect::-moz-focus-inner,
[role=button]::-moz-focus-inner {
  border: 0;
}
.textlikebutton-effect > *,
[role=button] > * {
  transition: transform 0.2s ease;
}
.textlikebutton-effect:hover:not([disabled]),
[role=button]:hover:not([disabled]) {
  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1;
}
.textlikebutton-effect:focus:not(:active),
[role=button]:focus:not(:active) {
  -webkit-animation: active 0.9s alternate infinite;
          animation: active 0.9s alternate infinite;
  outline: none;
}
.textlikebutton-effect:active:not([disabled]),
[role=button]:active:not([disabled]) {
  box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
}
.textlikebutton-effect:active:not([disabled]) > *,
[role=button]:active:not([disabled]) > * {
  transform: scale(0.95);
}
.textlikebutton-effect:disabled,
[role=button]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
 .snippet
 .dot-pulse {
    position: relative;
    left: -9989px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgb(253, 8, 8);
    color: rgb(253, 8, 8);
    box-shadow: 9999px 0 0 -5px;
    animation: dot-pulse 1.5s infinite linear;
    animation-delay: 0.25s;
}

.dot-pulse::before, .dot-pulse::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgb(253, 8, 8);
    color: rgb(253, 8, 8);
}

.dot-pulse::before {
    box-shadow: 9974px 0 0 -5px;
    animation: dot-pulse-before 1.5s infinite linear;
    animation-delay: 0s;
}

.dot-pulse::after {
    box-shadow: 10014px 0 0 -5px;
    animation: dot-pulse-after 1.5s infinite linear;
   animation-delay: 0.5s;
}
  
@keyframes dot-pulse-before {
    0% {
      box-shadow: 9974px 0 0 -5px;
    }
    30% {
      box-shadow: 9974px 0 0 2px;
    }
    60%, 100% {
      box-shadow: 9974px 0 0 -5px;
    }
}

@keyframes dot-pulse {
    0% {
      box-shadow: 9999px 0 0 -5px;
    }
    30% {
      box-shadow: 9999px 0 0 2px;
    }
    60%, 100% {
      box-shadow: 9999px 0 0 -5px;
    }
}

@keyframes dot-pulse-after {
    0% {
      box-shadow: 10014px 0 0 -5px;
    }
    30% {
      box-shadow: 10014px 0 0 2px;
    }
    60%, 100% {
      box-shadow: 10014px 0 0 -5px;
    }
}