:root {
    --ae-main-color: #b60081;
    --ae-sub-color: #ffe3f2;
    --ae-darkgray-color: #ddd;
    --ae-lightgray-color: #d9d9d9;
}

/* Styles overwrite
-------------------------------------------------- */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}


/* Label styles
-------------------------------------------------- */
.ae-label-head {
    padding: 10px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 4px;
}

.ae-label {
    display: block;
    height: 40px;
    padding: 10px 10px 10px 0;
}

    .ae-label span {
        display: inline;
        float: right;
        text-align: center;
        height: 20px;
        width: 28px;
        padding: 1px 0 0 0;
        color: #fff;
        background-color: var(--ae-main-color);
        font-size: .8em;
        font-weight: bold;
        border: 1px solid var(--ae-main-color);
    }

        .ae-label span.optional {
            display: inline;
            float: right;
            text-align: center;
            height: 20px;
            width: 28px;
            padding: 1px 0 0 0;
            color: var(--ae-main-color);
            background-color: var(--ae-sub-color);
            font-size: .8em;
            font-weight: bold;
            border: 1px solid var(--ae-sub-color);
        }

.ae-label-data {
    display: block;
    height: 40px;
    padding: 8px;
    font-size: 1.25em;
}

.ae-label-theater-data {
    display: block;
    padding: 8px;
    font-size: 1.25em;
}

.ae-label-var {
    width: auto;
    display: inline;
    text-align: center;
    padding-top: 8px;
}

@media (max-width: 576px) {
    .ae-label {
        padding-bottom: 0;
    }

        .ae-label span {
            padding: 2px 0 0 0;
        }

            .ae-label span.optional {
                padding: 2px 0 0 0;
            }

    .ae-label-data {
        padding-top: 0;
    }

    .ae-label-var {
        display: none;
    }
}

/* Input styles
-------------------------------------------------- */
::placeholder {
    font-size: .9em;
    color: #a6a6a6;
}

textarea {
    min-height: 40px;
    height: 200px;
}

.ae-mask {
    -webkit-text-security: disc !important;
    padding: 1px 2px;
}

.ae-textbox {
    padding: 8px 10px;
    border: 1px solid var(--ae-darkgray-color);
    border-radius: 2px;
}

.ae-select {
    padding: 8px 10px;
    border-radius: 2px;
    text-align: left;
    line-height: 1.5;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid var(--ae-darkgray-color);
    border-radius: 2px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Button styles
-------------------------------------------------- */
.ae-primary-btn {
    font-size: 1.1em;
    font-weight: bold;
    height: 40px;
    padding: 10px 10px;
    background: var(--ae-main-color);
    color: #fff;
    display: block;
    border: none;
    border-radius: 3px;
}

    .ae-primary-btn:hover {
        opacity: .75;
        transition: all .3s ease-out;
    }

    .ae-primary-btn:focus {
        outline: 0;
    }

.ae-secondary-btn {
    font-size: 1.1em;
    font-weight: bold;
    height: 40px;
    padding: 10px 10px;
    background: #fff;
    color: var(--ae-main-color);
    display: block;
    border: 1px solid var(--ae-main-color);
    border-radius: 3px;
}

    .ae-secondary-btn:hover {
        opacity: .75;
        transition: all .3s ease-out;
    }

    .ae-secondary-btn:focus {
        outline: 0;
    }

.ae-primary-btnlink {
    font-size: 1.1em !important;
    font-weight: bold;
    text-align: center;
    height: 40px;
    padding: 10px 10px;
    background: var(--ae-main-color);
    color: #fff !important;
    display: block;
    border: none;
    border-radius: 3px;
    text-decoration: none;
}

    .ae-primary-btnlink:hover {
        opacity: .75;
        transition: all .3s ease-out;
        text-decoration: none;
    }

    .ae-primary-btnlink:focus {
        outline: 0;
    }

.ae-secondary-btnlink {
    font-size: 1.1em !important;
    font-weight: bold;
    text-align: center;
    height: 40px;
    padding: 10px 10px;
    background: #fff;
    color: var(--ae-main-color) !important;
    display: block;
    border: 1px solid var(--ae-main-color);
    border-radius: 3px;
    text-decoration: none;
}

    .ae-secondary-btnlink:hover {
        opacity: .75;
        transition: all .3s ease-out;
        text-decoration: none;
    }

    .ae-secondary-btnlink:focus {
        outline: 0;
    }

/* Text styles
-------------------------------------------------- */
highlight {
    color: var(--ae-main-color);
}

.highlight {
    color: var(--ae-main-color);
}

.fs-085 {
    font-size: .85em;
}

.fs-095 {
    font-size: .95em;
}

.fs-11 {
    font-size: 1.1em;
}

a {
    text-decoration: none;
}

    a:hover {
        opacity: .75;
        text-decoration: underline;
    }

/* Box styles
-------------------------------------------------- */
.ae-news-box {
    padding: 20px 10px;
    text-align: left;
    border: solid 1px var(--ae-main-color);
    border-radius: 8px;
}

.ae-info-box {
    border: 1px solid var(--ae-lightgray-color);
    box-sizing: border-box;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

.ae-pg-box {
    text-align: left;
    align-content: center;
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
}

    .ae-pg-box .pg-enable {
        border: 1px solid var(--ae-lightgray-color);
        height: 65px;
        float: left;
        padding: 5px 10px 5px 10px;
        margin-right: -1px;
        font-size: .95em;
        font-weight: bold;
        background-color: #000;
        color: #fff;
    }

    .ae-pg-box .pg-disabled {
        border: 1px solid var(--ae-lightgray-color);
        height: 65px;
        float: left;
        padding: 5px 10px 5px 10px;
        margin-right: -1px;
        font-size: .95em;
        background-color: #f2f2f2;
        color: #a6a6a6;
    }

@media (max-width: 576px) {
    .ae-pg-box .pg-enable {
        font-size: .85em;
    }

    .ae-pg-box .pg-disabled {
        font-size: .85em;
    }
}

/* Image styles
-------------------------------------------------- */
.img-responsive {
    display: block;
    width: 250px;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    border: 1px solid #d9d9d9;
}

/* Validation styles
-------------------------------------------------- */
.validation-summary-errors {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: none;
}

    .validation-summary-errors ul {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
        color: red;
        font-size: .9em;
    }

/* Row styles
-------------------------------------------------- */
.row-line {
    border-bottom: solid 1px #ddd;
}

/* Origin styles
-------------------------------------------------- */
li {
    margin-bottom: 8px;
}

.table-sm > :not(caption) > * > * {
    padding: 0.5em;
}

th {
    width: 25%;
    font-weight: normal;
}

td {
    width: 75%;
}

.accordion-button:not(.collapsed) {
    color: #b60081;
    background-color: #ffe3f2;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg);
    }

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-body a {
    word-wrap: break-word;
}

.img-responsive {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d9d9d9;
}