:root {
    /*--color-danger: #d33;*/
    --color-danger: #dd4b39;
    --color-danger-dark: #d32f1b;
    --color-success: #0E9512;
    --color-success-dark: #027406;
    --color-primary: #0c8410;
    --color-text: #333;
    --color-white: #fff;
    --color-gray-form: #ccc;
    --color-blue-link: #337ab7;
    --color-blue-card-dashboard: #0071BC;
    --color-gray-card-dashboard: #666;
    --color-orange-card-dashboard: #F15A24;
    --color-green-card-dashboard: #39B54A;
    --color-yellow-card-dashboard: #dab12e;
    --color-purple-card-dashboard: #662D91;
    --color-skin-card-dashboard: #C7B299;
    --color-orange-dashboard: #eba338;
    --color-red-dashboard: #f44e36;
    --color-yellow-dashboard: rgb(255 193 7 / 80%);
    --color-gray-notify: #e6ebf1;
    --border-radius-wallet: 10px;
    --border-radius-25: 25px;
    --border-radius-35: 35px;
    --border-chip: 3px;
    --space-screen: 15px;
    --size-text-xs: 10px;
    --size-text-sm: 12px;
    --size-text-md: 14px;
    --size-text-lg: 18px;
    --box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.4);
    --height-nav: 51px;
}

body {
    font-size: var(--size-text-md);
}

input[type="date"], input[type="time"] {
    line-height: 1.5;
    text-align: start;
}

input::-webkit-date-and-time-value {
    text-align: left;
}

input:focus {
    outline: none;
}

textarea {
    resize: vertical;
}

.color-menu {
    color: var(--color-menu);
}

.color-primary {
    color: var(--color-primary);
}

.bg-green-dashboard {
    background-color: var(--color-green-card-dashboard);
}

.bg-orange-dashboard {
    background-color: var(--color-orange-dashboard);
}

.bg-red-dashboard {
    background-color: var(--color-red-dashboard);
}

.bg-color-white {
    background-color: var(--color-white);
}

.color-red-dashboard {
    color: var(--color-red-dashboard);
}

.table > tbody > tr > td.vertical-align-middle {
    vertical-align: middle;
}

.container-screen-app {
    padding-left: var(--space-screen);
    padding-right: var(--space-screen);
    margin-top: var(--space-screen);
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.container-screen-app--top-7 {
    margin-top: 7px;
}

.label-pendiente {
    background-color: #f39c12 !important;
    color: #fff !important;
}

.input-pin {
    padding: 6px 10px;
    width: 50px;
    font-size: 18px;
    text-align: center;
    display: inline-block;
}

.word-break-all {
    word-break: break-all;
}

.word-break-word {
    word-break: break-word;
}

.no-margin-top {
    margin-top: 0;
}

.margin-top-0 {
    margin-top: 0rem;
}

.margin-top-10--px {
    margin-top: 10px;
}

.margin-top-1 {
    margin-top: 1rem;
}

.margin-top-2 {
    margin-top: 2rem;
}

.margin-top-3 {
    margin-top: 3rem;
}

.margin-right-1 {
    margin-right: 1rem;
}

.margin-right-2 {
    margin-right: 2rem;
}

.margin-bottom-05 {
    margin-bottom: 0.5rem;
}

.margin-bottom-1 {
    margin-bottom: 1rem;
}

.margin-bottom-2 {
    margin-bottom: 2rem;
}

.margin-bottom-3 {
    margin-bottom: 3rem;
}

.margin-bottom-6 {
    margin-bottom: 6rem;
}

.margin-left-1 {
    margin-left: 1rem;
}

.margin-left-2 {
    margin-left: 2rem;
}

.margin-left-3 {
    margin-left: 3rem;
}

.margin-left-4 {
    margin-left: 4rem;
}

.margin-left-5 {
    margin-left: 5rem;
}


.padding-top-0 {
    padding-top: 0;
}

.padding-bottom-0 {
    padding-bottom: 0;
}

.padding-bottom-1 {
    padding-bottom: 1rem;
}

.borde-punteado,
.border-dotted {
    border-bottom: 1px dotted #ffffff;
}

.border-dotted--black {
    border-bottom-color: var(--color-text);
}

.font-size-small {
    font-size: small;
}

.font-size-smaller {
    font-size: smaller;
}

.imageBox {
    position: relative;
    height: 400px;
    width: 100%;
    border: 1px solid #aaa;
    background: #fff;
    overflow: hidden;
    background-repeat: no-repeat;
    cursor: move;
    margin-bottom: 10px;
}

    .imageBox .thumbBox {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200px;
        height: 200px;
        margin-top: -100px;
        margin-left: -100px;
        box-sizing: border-box;
        border: 1px solid rgb(102, 102, 102);
        box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
        background: none repeat scroll 0% 0% transparent;
    }

    .imageBox .spinner {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        text-align: center;
        line-height: 400px;
        background: rgba(0,0,0,0.5);
    }

.img-pixel-fixed {
    margin: 0 auto;
    max-width: 400px;
    max-height: 250px;
    width: 100%;
}

.img-border-radius {
    border-radius: 1rem;
}

.modal-cargando-ajax {
    display: none;
    position: fixed;
    z-index: 9999999999999999999999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0, .7 ) 50% 50% no-repeat;
}

body.cargando {
    overflow: hidden;
}

    body.cargando .modal-cargando-ajax {
        display: flex;
        justify-content: center;
        -webkit-justify-content: center;
    }

.btn-flotante-arriba-derecha {
    position: absolute;
    top: -8.5rem;
    right: 0rem;
    z-index: 1040;
}

.cursor-pointer {
    cursor: pointer;
}

.modal {
    z-index: 99999;
}

.modal-iframe {
    padding: 0;
    margin: 0;
}

    .modal-iframe iframe {
        height: 90vh;
        width: 100%;
        border: unset;
    }

.file-pdf::before {
    content: url("../img/pdf.webp");
}

.visibility-hidden {
    visibility: hidden;
}

.visibility-visible {
    visibility: visible;
}

.display-grid {
    display: grid;
    grid-gap: 1rem;
}

.display-flex {
    display: flex;
}

.flex-direction-column {
    flex-direction: column;
}

.flex-direction-row {
    flex-direction: row;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-flex-end {
    justify-content: flex-end;
}

.justify-self-flex-end {
    justify-self: flex-end;
    -webkit-justify-self: flex-end;
}

.align-item-baseline {
    align-items: baseline;
}

.align-item-center {
    align-items: center;
}

.align-item-start {
    align-items: flex-start;
}

.align-item-end {
    align-items: flex-end;
}

.align-content-start {
    align-content: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1rem {
    grid-gap: 1rem;
}

.gap-2rem {
    grid-gap: 2rem;
}

.no-gap {
    grid-gap: 0;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.position-relative {
    position: relative;
}

.overflow__y--scroll {
    overflow-y: scroll;
}

.overflow__y--auto {
    overflow-y: auto;
}

.height__max--500 {
    max-height: 500px;
}

.height__max--300 {
    max-height: 300px;
}

.height__max--200 {
    max-height: 200px;
}

.height__max--225 {
    max-height: 225px;
}

.pincode {
    text-security: disc;
    -webkit-text-security: disc;
    -moz-text-security: disc;
}

.text-success-booking {
    color: var(--color-success);
}

.text-white {
    color: var(--color-white);
}

.text-danger-booking {
    color: var(--color-danger);
}

.text-sm {
    font-size: var(--size-text-sm);
}

.text-md {
    font-size: var(--size-text-md);
}

.text-lg {
    font-size: var(--size-text-lg);
}

.underline {
    text-decoration: underline;
}

.nomenclature__sigma {
    width: 17px;
    height: 17px;
    background-color: var(--color-blue-card-dashboard);
    border-radius: 50%;
}

.nomenclature__sigma--12px {
    width: 12px;
    height: 12px;
}

.nomenclature__text {
    line-height: 0;
    font-weight: normal;
}

/************************
    sweet-alert
*************************/
.sa-confirm-button-container .confirm {
    background-color: var(--color-success) !important;
}

.sweet-alert button.cancel {
    background-color: var(--color-danger) !important;
}

.sa-confirm-button-container .confirm:hover {
    background-color: var(--color-success-dark) !important;
}

.sweet-alert button.cancel:hover {
    background-color: var(--color-danger-dark) !important;
}

.badge {
    color: white;
    font-size: 1.1rem;
    padding: 1px 4px;
    background-color: red;
    position: absolute;
    font-weight: normal !important;
}

/************************
    sponsor
*************************/
.footer__sponsor {
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer__sponsor-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer__sponsor-img {
    width: 100%;
    height: 58px;
    max-height: 89px;
    cursor: pointer;
}

.opciones-sponsor {
    margin-top: 10px;
}

.opciones-sponsor ul {
    padding-inline-start: 20px;
    padding-left: 20px;
}

.opciones-sponsor ul ul {
    padding-inline-start: 30px;
    padding-left: 30px;
}

.opciones-sponsor li {
    display: block;
}

.opciones-sponsor span {
    margin-left: 5px;
}

/************************
    radio switch toggle
*************************/
.has-toggle-input__label {
    display: block;
    float: left;
    padding: 5px;
    margin: auto auto auto -1px;
    line-height: normal;
    overflow: hidden;
    cursor: pointer;
    width: 50%;
    text-align: center;
    background-color: #f4f4f4;
    border: 1px #d0d0d0 solid;
}

.has-toggle-input__label--success.active {
    background-color: #0c8410;
    border-color: #0c8410;
}

.has-toggle-input__label--danger.active {
    background-color: #dd4b39;
    border-color: #dd4b39;
}

.has-toggle-input__label.active {
    color: white;
    font-weight: bolder;
}

.has-toggle-input__label-left {
    border-radius: 5px 0 0 5px;
}

.has-toggle-input__label-right {
    border-radius: 0 5px 5px 0;
}

/*.has-toggle-input .success.active {
    background-color: #3FA048;
    background-color: #0c8410;
    border-color: #0c8410;
}

.has-toggle-input .fail.active {
    background-color: #dd4b39;
    border-color: #dd4b39;
}*/

/*****/
.switch-button {
    position: relative;
    display: inline-block;
    width: 6rem;
    height: 3rem;
}

.switch-button__checkbox {
    display: none;
    opacity: 0;
}

.switch-button__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-form);
    border-radius: 2rem;
    -webkit-transition: .2s;
    transition: .2s;
}

.switch-button__slider:before {
    position: absolute;
    content: '';
    height: 2.2rem;
    width: 2.2rem;
    left: .4rem;
    bottom: .4rem;
    background-color: var(--color-white);
    -webkit-transition: .2s;
    transition: .2s;
    border-radius: 50%;
}

.switch-button__checkbox:checked + .switch-button__slider {
    background-color: var(--color-text);
}

.switch-button__checkbox:checked + .switch-button__slider:before {
    -webkit-transform: translateX(2.8rem);
    -ms-transform: translateX(2.8rem);
    transform: translateX(2.8rem);
}

/************************
   multi idioma
*************************/
.container-idioma {
    display: flex;
    align-items: center;
    padding-right: 3px;
    margin: 0;
    position: relative;
    margin-right: 2px;
}

.container-idioma img {
    width: 35px;
    height: 22px;
    border-radius: 6px;
}

.container-idioma .list-idioma,
.notify-menu__list {
    right: auto;
    left: -122px;
    padding: 10px 5px;
    /*padding: 4px 5px;*/
    color: var(--color-text);
    margin: 0;
    border-radius: 8px;
    border: none;
    /*box-shadow: 3px 4px 8px 3px rgb(0 0 0 / 25%) !important;*/
    box-shadow: var(--box-shadow) !important;
    -webkit-box-shadow: var(--box-shadow) !important;
}

.container-idioma .list-idioma.login {
    margin-top: 5px;
}

.container-idioma .list-idioma .item-idioma {
    /*margin-bottom: 5px;*/
    padding: 5px;
    cursor: pointer;
    /*margin: 0 -5px 5px;*/
    margin: 4px -5px;
}

.container-idioma .list-idioma .item-idioma > span {
    margin-left: 5px;
}

.container-idioma .list-idioma .item-idioma.active,
.container-idioma .list-idioma .item-idioma:hover {
    background-color: #f0f0f0;
    /*border-radius: 5px;*/
}

/************************
    Notifications
*************************/
.notify-menu {
    position: relative;
}

.notify-menu__list {
    display: none;
    z-index: 1000;
    background-color: rgb(0, 0, 0, 0.67);
    max-width: 45rem;
    max-height: 80vh;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    position: fixed;
    top: var(--height-nav);
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--border-radius-25);
}

.notify-menu__list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.notify-menu__icon {
    display: block;
    cursor: pointer;
}

.notify-menu__badge {
    right: -5px;
    font-weight: normal;
}

.notify-menu__header {
    margin: 0;
    padding: 0 2rem;
}

.notify-menu__container {
    position: relative;
    transition: margin 0.8s, height 0.8s;
}

.notify-menu__container:focus,
.notify-menu__item:focus {
    outline: none;
}

.notify-menu__container.see:not(:first-child) {
    margin-top: 15px;
}

.notify-menu__item {
    width: 100%;
    height: 0;
    border-radius: var(--border-radius-25);
    background-color: white;
    list-style: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    color: black;
    opacity: 0;
    cursor: pointer;
    transform: translateX(6000rem);
    transition: height 0.3s, opacity 0.6s ease-out;
}

.notify-menu__item.selected {
    background-color: var(--color-menu);
    color: white;
}

.notify-menu__item.see {
    padding: 10px 15px;
    height: 10rem;
    opacity: 1;
    transform: translateX(0);
}

.notify-menu__title {
    font-weight: bold;
}

.notify-menu__date {
    float: right;
    font-size: var(--size-text-sm);
}

.notify-menu__text {
    margin-bottom: 0;
}

.notify-menu__item.selected .notify-menu__btn {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-menu);
}

.notify-menu__btn {
    background-color: var(--color-menu);
    border-color: var(--color-menu);
    color: #fff;
    margin-top: 15px;
}

/************************
    Panel
*************************/
.box-header__top-tools {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/************************
    metodos busqueda (see ingresofiesta)
*************************/
.metodo-busqueda {
    margin-bottom: 20px;
}

.metodo-busqueda__action {
    padding: 12px 0;
}

.metodo-busqueda__left {
    padding-right: 5px;
}

.metodo-busqueda__middle {
    padding: 0 5px;
}

.metodo-busqueda__right {
    padding-left: 5px;
}

/************************
    Elemet remove (solicitud, PDF)
*************************/
.preload-pdf {
    position: relative;
    display: flex;
    grid-gap: 10px;
    gap: 10px;
}

.preload-pdf__link {
    position: relative;
    min-width: 60px;
    height: -webkit-fill-available;
    height: -ms-fill-available;
    height: fill-available;
}

.button-delete-element {
    height: 20px;
    width: 20px;
    /*background-color: #dd4b39;*/
    background-color: var(--color-danger);
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-delete-element {
    position: relative;
    top: -156px;
    float: right;
    left: 5px;
}

.button-delete-element--pdf {
    position: absolute;
    right: 0;
    top: 0;
    left: unset;
    float: unset;
    margin: -9px;
    height: 23px;
    width: 23px;
}

.button-delete-element:after {
    /*position: relative;*/
    content: "\d7";
    color: white;
    font-weight: bold;
    /*top: -3.7px;
    left: 5.0px;*/
    font-size: 19px;
}

/**********************
    JUNTA DIRECTIVA
**********************/
.card-junta {
    cursor: pointer;
    padding: 0 0 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
    border-radius: 1rem;
    height: 21rem;
    background-color: #FFF;
}

    .card-junta.detalle-junta {
        height: auto;
        margin-bottom: .5rem;
        border-top: none;
        box-shadow: none;
        padding: 0;
    }

    .card-junta .card-header, .card-junta__header {
        display: flex;
        flex-direction: column;
        min-height: 5rem;
        margin-bottom: 1rem;
        padding: .3rem 1rem .5rem;
        border-radius: 1rem 1rem 0 0;
        color: #fff;
        background-color: var(--color-menu);
        text-align: center;
    }

        .card-junta .card-header .label {
            border-radius: 7px;
        }

        .card-junta .card-header div:nth-child(1), .card-junta__header-top {
            display: grid;
            grid-template-columns: 6rem 1fr 6rem;
            align-items: center;
            width: 100%;
        }

    .card-junta.detalle-junta .card-header {
        color: var(--color-menu);
        background-color: initial;
    }

/*.card-junta .card-header .title {
    font-size: 16px;
}*/

.card-junta__body {
    padding: 0 15px;
}

.card-junta__body-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.card-junta__body-bottom {
}

.card-junta .card-body .horario {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .card-junta .card-body .horario div {
        display: grid;
        grid-template-columns: 2.4rem 1fr;
        align-items: center;
    }

    .card-junta .card-body .horario .fa {
        color: var(--color-menu);
        font-size: 2.3rem;
    }

.card-junta .card-body .text-motivo {
    text-align: justify;
}

/************************
    Pagination
*************************/
.pagination__quantity {
    margin: 0 0 0 5px;
}

.pagination__pages-item, .pagination__quantity-item,
.pagination__pages-next, .pagination__pages-prev {
    cursor: pointer;
}


@media screen and (max-width: 390px) {
    .box-header.with-border .box-tools.pull-right .input-group,
    .box-header.with-border .box-tools.pull-left .input-group {
        width: 104% !important;
    }
}

@media screen and (max-width: 576px) {
    .box-header__top-tools {
        display: block;
    }
}

/* Querys bootstrap > 4.0 */
@media screen and (min-width: 0px) {
    .gridcol-xs-1 {
        grid-template-columns: 1fr;
    }

    .gridcol-xs-2 {
        grid-template-columns: 1fr 1fr;
    }

    .gridcol-xs-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gridcol-xs-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .gridrow-xs-2 {
        grid-template-rows: 1fr 1fr;
    }

    .text-right-xs {
        text-align: right;
    }

    .text-center-xs {
        text-align: center;
    }

    .text-left-xs {
        text-align: left;
    }

    /*.container-idioma .list-idioma {
        left: -124px;
    }

    .container-idioma .list-idioma.login {
        left: -134px;
    }*/
}

@media screen and (min-width: 576px) {
    .gridcol-sm-1 {
        grid-template-columns: 1fr;
    }

    .gridcol-sm-2 {
        grid-template-columns: 1fr 1fr;
    }

    .gridcol-sm-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gridcol-sm-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .text-right-sm {
        text-align: right;
    }

    .text-center-sm {
        text-align: center;
    }

    .text-left-sm {
        text-align: left;
    }

    /*.container-idioma .list-idioma {
        left: -89px;
    }*/
}

@media screen and (min-width: 600px) {
    .footer__sponsor-img {
        height: 89px;
    }
}

@media screen and (min-width: 768px) {
    .gridcol-md-1 {
        grid-template-columns: 1fr;
    }

    .gridcol-md-2 {
        grid-template-columns: 1fr 1fr;
    }

    .gridcol-md-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gridcol-md-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .gridrow-md-2 {
        grid-template-rows: 1fr 1fr;
    }

    .text-right-md {
        text-align: right;
    }

    .text-center-md {
        text-align: center;
    }

    .text-left-md {
        text-align: left;
    }

    /*.container-idioma .list-idioma {
        left: -100px;
    }*/
}

@media screen and (min-width: 992px) {
    .gridcol-lg-1 {
        grid-template-columns: 1fr;
    }

    .gridcol-lg-2 {
        grid-template-columns: 1fr 1fr;
    }

    .gridcol-lg-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gridcol-lg-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .gridrow-lg-2 {
        grid-template-rows: 1fr 1fr;
    }

    .text-right-lg {
        text-align: right;
    }

    .notify-menu__list {
        height: 70vh;
        width: auto;
        left: -28.5rem;
        position: absolute;
        top: 100%;
        bottom: 0;
    }

    /*.container-idioma .list-idioma{
        left: -110px;
    }*/
}

@media screen and (min-width: 1200px) {
    .gridcol-xl-1 {
        grid-template-columns: 1fr;
    }

    .gridcol-xl-2 {
        grid-template-columns: 1fr 1fr;
    }

    .gridcol-xl-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gridcol-xl-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .text-right-xl {
        text-align: right;
    }

    /*.container-idioma .list-idioma {
        left: -90px;
    }*/
}

@media screen and (min-width: 1400px) {
    .gridcol-xxl-1 {
        grid-template-columns: 1fr;
    }

    .gridcol-xxl-2 {
        grid-template-columns: 1fr 1fr;
    }

    .gridcol-xxl-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gridcol-xxl-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .text-right-xxl {
        text-align: right;
    }

    /*.container-idioma .list-idioma {
        left: -28px;
    }*/
}

/* Media Querys bootstrap 3.3.4 */
@media screen and (min-width: 768px) {
    .text-right-inherit-sm {
        text-align: inherit;
    }
}

@media screen and (min-width: 992px) {
    .text-right-inherit-md {
        text-align: inherit;
    }

    /*.container-idioma .list-idioma{
        left: -110px;
    }*/
}

@media screen and (min-width: 1200px) {
    .text-right-inherit-lg {
        text-align: inherit;
    }
}

/* max Querys bootstrap > 4.0 */
@media screen and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
    .display-block-xs {
        display: block;
    }

    .btn-block-xs {
        display: block;
        width: 100%;
    }

    .metodo-busqueda--xs {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2025-5-23 15:25:24
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

.scale-up-tr {
    /*-webkit-animation: slide-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;*/
    -webkit-animation: scale-up-tr 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-tr 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.scale-up-tr--reverse {
    /*-webkit-animation: slide-bottom 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-bottom 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;*/
    -webkit-animation: scale-up-tr 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) reverse both;
    animation: scale-up-tr 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) reverse both;
}

/**
 * ----------------------------------------
 * animation scale-up-tr
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-tr {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }
}

@keyframes scale-up-tr {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }
}