/* Geral */

@charset "UTF-8";

:root {
    --money-green: #37B853;
    --primary-color: #db0646;
    --secondary-color: #2d2959;
    --tertiary-color: #0eb9ea;
    --quartary-color: #00b0b5;
    --quintary-color: #dc7493;
    --yellow: #fdce3f;
    --white: #fff;
    --black: #000;
    --gray-100: #f2f2f2;
    --gray-150: #e0e0e0;
    --gray-175: #d1d5db;
    --gray-200: #d9d9d9;
    --gray-300: #bfbfbf;
    --gray-400: #a6a6a6;
    --gray-500: #8c8c8c;
    --gray-600: #727272;
    --gray-700: #595959;
    --gray-750: #616161;
    --gray-800: #404040;
    --gray-900: #272727;
}

body::-webkit-scrollbar {
    width: 10px;
    padding: 5px;
}

body::-webkit-scrollbar-track {
    background: var(--white);
}

body::-webkit-scrollbar-button {
    background-color: var(--white);
    color: var(--white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Aileron", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Neutronic", sans-serif;
}

.white-outline-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 20px;
    font-weight: 900;
}

.white-outline-button:hover,
.white-outline-button-active {
    background: var(--white);
    color: var(--secondary-color);
}

/* Ticket details modal */

#ticketModal .modal-body {
    padding-right: 36px;
    padding-left: 36px;
}

.ticket-card img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.ticket-card-bg {
    background-color: var(--secondary-color);
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.ticket-card-price p {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
}

.ticket-card-price h2:first-of-type {
    text-decoration-line: line-through;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
}

.ticket-card-price h2:last-of-type {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 0;
}

.ticket-description ul {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 400;
}

.ticket-description h3 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 12px;
    margin-top: 24px;
}

.ticket-description p {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.28px;
}

.ticket-description a {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
}

.ticket-title {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #ticketModal .modal-body {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 428px) {
    .ticket-title {
        font-size: 12px;
    }

    .ticket-card-price h2:last-of-type {
        font-size: 14px;
    }
}
