@import "../fonts/fonts.css";

/* Root Vars */
:root {
    --primary: #ffe0b2;
    --primary-hover: #ceb57d;
    --primary-shadowglow: 0 25px 40px rgba(255, 153, 0, .15);
    --primary-lighter: #EDE8E0;
    --primary-darker: #6A5C46;
    --secondary: #8f5300;
    --secondary-lighter: #C0B3CC;
    --secondary-lighter-2: #AF93CB;
    --secondary-darker: #442265;
    --success: #4DEC81;
    --success-hover: #73fd85;
    --success-shadowglow: 0 25px 40px rgba(0, 255, 98, 0.15);
    --danger: #E92E5A;
}

/* Master Reset */
* {
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
}

/* Tag Patterns */
body {
    background-color: #442265;
    background-position: center top;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
}
body.height100, html.height100 {
    height: 100%;
}
body, html {
    font-family: "Outfit", sans-serif;
    color: #FFFFFF;
    font-size: 18px;
}
a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Some Components */
/* ---- Begin ---- */
input {
    font-family: 'Outfit';
}
input[type="text"], input[type="search"], .form-select, textarea.form-control, input[type="password"], input[type="email"], input[type="date"] {
    border: none;
    color: var(--secondary-darker);
    border-radius: 8px;
    font-size: 18px;
}
input[type="text"]:focus, input[type="search"]:focus, .form-select:focus, textarea.form-control:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="date"]:focus {
    color: var(--secondary-darker);
}
input[type="text"]:disabled, input[type="search"]:disabled, .form-select:disabled, textarea.form-control:disabled, input[type="password"]:disabled, input[type="email"]:disabled, input[type="date"]:disabled {
    background: var(--secondary-lighter-2);
}
input[type="text"], input[type="search"], .form-select, input[type="password"], input[type="email"], input[type="date"] {
    height: 50px;
    padding: 0 20px;
}
textarea.form-control {
    padding: 10px 20px;
}
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23A5A7BC' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-position: right 0.9rem center;
    padding-right: 40px;
}
::-webkit-input-placeholder { /* Edge */
    color: var(--secondary-lighter) !important;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--secondary-lighter) !important;
}
::placeholder {
    color: var(--secondary-lighter) !important;
}

.btn-custom {
    font-size: 18px;
    height: 50px;
    border: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
}
.btn-custom:hover {
    text-decoration: none;
}
.btn-custom .left-icon {
    margin-right: 15px;
}
.btn-custom .right-icon {
    margin-left: 15px;
}
.btn-custom.btn-custom-primary {
    background: var(--primary);
    color: var(--secondary-darker);
    box-shadow: var(--primary-shadowglow);
}
.btn-custom.btn-custom-primary:hover {
    background: var(--primary-hover);
}
.btn-custom.btn-custom-success {
    background: var(--success);
    color: var(--secondary-darker);
    box-shadow: var(--success-shadowglow);
}
.btn-custom.btn-custom-success:hover {
    background: var(--success-hover);
}
.btn-custom.btn-custom-outline {
    border: solid 2px #FFFFFF;
}
.btn-custom.btn-custom-outline:hover {
    border-color: var(--primary-hover);
}

.form-group-custom {
    margin-bottom: 24px;
}
.form-group-custom label, .form-group-custom .label {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 9px;
    display: inline-block;
}
.form-group-custom label .req, .form-group-custom .label .req {
    color: var(--danger);
    font-size: 13px;
    vertical-align: text-top;
    margin-left: 5px;
}
.form-group-custom .form-check {
    display: inline-flex;
}
.form-group-custom .select-boxies {
    display: flex;
    flex-wrap: wrap;
}
.form-group-custom .select-boxies .box-item label {
    border: 2px solid var(--secondary-lighter);
    color: var(--secondary-lighter);
    font-size: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    cursor: pointer;
    font-weight: normal;
    margin-right: 20px;
    margin-bottom: 0;
}
.form-group-custom .select-boxies .box-item.is-invalid label {
    border-color: var(--danger);
    color: var(--danger);
}
.form-group-custom .select-boxies .box-item label .left-icon {
    margin-right: 15px;
    display: flex;
}
.form-group-custom .select-boxies .box-item input {
    display: none;
}
.form-group-custom .select-boxies .box-item input:checked ~ label {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.form-group-custom .form-text {
    font-size: 14px;
    color: var(--secondary-lighter);
}

.form-check label {
    font-weight: normal;
}
.form-check-input {
    margin-top: 5px;
    margin-right: 15px;
    min-width: 1em;
    max-width: 1em;
}
.form-check-input:checked {
    background: var(--success);
    border-color: var(--success);
}
.form-check-input:focus {
    box-shadow: none;
}

.glass-card {
    border-radius: 20px;
    border: 1px solid #804DC3;
    background: rgba(35, 5, 65, 0.40);
    box-shadow: 0px 0px 20px 0px rgba(128, 77, 195, 0.30) inset, 0px 25px 35px 0px rgba(54, 22, 85, 0.40);
    backdrop-filter: blur(12.5px);
    padding: 30px;
}
.glass-card .glass-card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.table-custom > :not(caption) > * > * {
    background-color: rgba(127, 60, 208, .2);
    color: #FFFFFF;
    padding: 15px 20px;
}
.table-custom.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    background-color: rgba(72, 42, 108, .2);
}
tbody, td, tfoot, th, thead, tr {
    border-color: #AF93CB;
}
th {
    font-weight: bold;
}

.txt-danger {
    color: var(--danger);
}

.pagination-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pagination-custom .item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #442265;
    background: var(--primary);
    display: inline-flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin: 0 5px;
}
.pagination-custom .item:first-child,
.pagination-custom .item:last-child {
    border-radius: 100px;
}
.pagination-custom .item.active {
    background: var(--secondary-lighter-2);
    cursor: default;
}
.pagination-custom .item:hover:not(.active) {
    background: var(--primary-hover);
    text-decoration: none;
}

.modal {
    color: var(--secondary-darker);
}
.modal .btn-custom-outline {
    border-color: var(--secondary-darker);
}
.modal .btn-custom-outline:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}
/* ----- End ----- */

/* BG Wrapper */
.background-wrapper {
   /* background-image: linear-gradient(rgb(95, 44, 0), #ac6200);*/
    position: fixed;
    width: 100%;
    height: 100%;
    bottom: 0; left: 0;
    z-index: -1;
}

/* Main Header */
.main-header-wrapper {
    min-height: 250px;
}
#main-header {
    padding-top: 65px;
    padding-bottom: 50px;
    z-index: 1;
    position: fixed;
    width: 100%;
    transition: .2s;
}
#main-header.compact {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--secondary);
}
#main-header .navbar-collapse {
    justify-content: right;
}
#main-header .menu {
    display: flex;
    align-items: center;
}
#main-header .menu .item {
    margin-right: 40px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}
#main-header .menu .item.active {
    color: var(--secondary-lighter);
}
#main-header .menu .item:hover {
    color: var(--primary-hover);
}
#main-header .menu .item:last-child {
    margin-right: 0;
}
#main-header .navbar-toggler, #main-header .navbar-toggler:focus {
    border: none;
    box-shadow: none;
}
#main-header .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.99%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#main-header .navbar-toggler .navbar-toggler-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 174, 0, 0.99%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Page Info */
#page-info {
    margin-bottom: 50px;
}
#page-info .container {
    position: relative;
}
#page-info .breadcrumb {
    margin-bottom: 3px;
}
#page-info .breadcrumb .breadcrumb-item {
    color: var(--secondary-lighter);
    font-size: 14px;
}
#page-info .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-family: 'icomoon';
    content: '\e902';
    color: var(--secondary-lighter);
}
#page-info h1 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--secondary-lighter);
}
#page-info .container .wrapper-character {
    position: absolute;
    width: 630px;
    right: -8px;
    top: 200px;
    z-index: 0;
}
#page-info .container .rag-character {
    position: fixed;
}
#page-info .container .my-tickets {
    position: absolute;
    right: 12px;
    top: 0;
    text-align: right;
    line-height: 27px;
    color: #FFFFFF;
    text-decoration: none;
}
#page-info .container .my-tickets .title {
    color: var(--secondary-lighter);
}
#page-info .container .my-tickets .value-wrapper {
    display: flex;
    align-items: center;
}
#page-info .container .my-tickets .value-wrapper img {
    width: 40px;
    padding-top: 2px;
    margin-right: 10px;
}
#page-info .container .my-tickets .value-wrapper strong {
    font-size: 40px;
}
#page-info .container .my-tickets:hover .value-wrapper strong {
    color: var(--primary);
}

/* Page Content */
#page-content {
    margin-bottom: 50px;
}

/* Dashboard Page */
.dashboard-page .content .item {
    display: inline-flex;
    height: 117px;
    align-items: center;
    width: 100%;
    transition: .2s;
    margin-bottom: 30px;
}
.dashboard-page .content .item i {
    display: block;
    margin-right: 20px;
}
.dashboard-page .content .item .title {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 28px;
}
.dashboard-page .content .item:hover {
    text-decoration: none;
    background: rgba(35, 5, 65, 0.30);
}
.dashboard-page .content .item:hover .title {
    color: var(--primary-hover);
}

/* Main Footer */
#main-footer {
    z-index: 2;
    position: relative;
}

/* xxl */
@media only screen and (min-width:1400px)  {
}

/* xl */
@media only screen and (max-width:1399px)  {
    #page-info .container .wrapper-character {
        display: none;
    }
}

/* lg */
@media only screen and (max-width:1199px)  {
    body, html {
        font-size: 16px;
    }

    #main-header .navbar-collapse {
        background: var(--secondary);
        border-radius: 8px;
    }
    #main-header .navbar-collapse .menu {
        margin-right: 0;
        display: block;
    }
    #main-header .navbar-collapse .menu .item:not(.btn) {
        margin-right: 0;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(207, 172, 241, 0.3);
    }
    #main-header .navbar-collapse .menu .item.btn {
        margin-top: 20px;
        display: inline-flex;
        padding: 0 30px;
        margin-left: 15px;
        margin-bottom: 15px;
    }
}

/* md */
@media only screen and (max-width:991px)  {
}

/* sm */
@media only screen and (max-width:767px)  {
    .main-header-wrapper {
        min-height: 200px;
    }
    #main-header {
        padding-top: 20px;
    }
}

/* xs */
@media only screen and (max-width:575px)  {
    .glass-card {
        padding: 20px;
    }

    #main-header {
        padding-bottom: 20px;
    }

    #page-info {
        margin-bottom: 30px;
    }
    #page-info h1 {
        font-size: 30px;
    }
    #page-info .container .my-tickets {
        line-height: 22px;
    }
    #page-info .container .my-tickets .value-wrapper strong {
        font-size: 30px;
    }

    #page-content {
        margin-bottom: 10px;
    }

    .dashboard-page .content .item {
        margin-bottom: 20px;
        height: 90px;
        padding: 20px;
    }
    .dashboard-page .content .item .title {
        font-size: 20px;
    }
}
