@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@700&display=swap');


body {
    font-family: 'Comfortaa', cursive;
}

p {
    font-family: 'Comfortaa', cursive;
}

h5 {
    font-family: 'Chivo', sans-serif;
}

h5>span {
    font-family: 'Comfortaa', cursive;
}

.ticketLine {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}

.myCard {
    width: 90vw;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;

}

.static-park-card {
    background-color: #3d8bfd;
    color: white;
}

.static-park-card p{
    color: white;
}

.static-park-card:hover{
    cursor: pointer;
}

.static-park-card .col-8 {
    border-left: solid 1px rgba(0, 0, 0, 0.125);
}

.wholeContainer {
    background-color: #f8f8f8;
    border-radius: 5px;
    position: relative;
    overflow: hidden;

}

.wholeContainer::before,
.wholeContainer::after {
    content: '';
    position: absolute;
    width: calc(100% + 72px);
    height: 100%;
    top: 0;
    z-index: -1;
    filter: drop-shadow(1px 7px 4px #0000006e);
}

.wholeContainer::before {
    left: -36px;
}

.wholeContainer::after {
    right: -36px;
}

.ticketLine:before,
.ticketLine:after {
    content: '';
    position: absolute;
    width: 4.5rem;
    height: 4.5rem;
    background: #fff;
    border-radius: 100%;
    border: 2px solid #efefef;
    box-sizing: border-box;
    opacity: 100 !important;
    top: 30%;
}

.ticketLine:before {
    left: -36px;
}

.ticketLine:after {
    right: -36px;
}

.titleContainer {
    background-color: #79B439;
    color: #fff;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding: 1rem;
    margin-bottom: 1.5rem
}

.titleContainer h2 {
    margin: 0;
    font-size: 1.1rem !important;
}

.qrContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: #144F74;
    font-weight: bold;

}

.qrContainer p {
    font-size: 1rem;
    width: 70%;
    text-align: center;
}

#clientUid {
    font-size: 0;
}

h3 {
    font-size: 1rem;
    color: #144F74;
    font-weight: bold;
}

.buttonContainer a {
    color: #00AFE9 !important;
    text-align:center;
    border: 1px solid #00AFE9;
    background-color: transparent;
    padding: 1rem;
    border-radius: 5px;
    width: 80%;
    margin-top: 1rem;
    margin-bottom: 3rem;
    cursor: pointer;
}

.buttonContainer {
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
}

.dataSectionContainer {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
}

.dataSectionContainer p{
    font-size: 0.8rem;
}

.dataSectionContainer hr {
    width: 100%;

}

.data {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

#qrCode {
    padding: 0.8rem;
    border: 4px solid #00AFE9;
    border-radius: 10px;
}

/* SUCCESS */

.successTitle {
    background-color: #79B439;
}

.successStatus {
    color: #79B439;
}

/* FAILURE */

.failureTitle {
    background-color: #EE404C;
}

.failureStatus {
    color: #EE404C;
}

.retry a{
    background-color: #00AFE9;
    color: #fff !important;
}

/* PENDING */

.pendingTitle {
    background-color: #fbad37;
}

.pendingStatus {
    color: #fbad37;
}

