.zoo-tickets-container{
    margin-top: 20px;
    margin-bottom: 20px;
}

.zoo-tickets-container input{
    height: 40px;
    vertical-align: middle;
    display: inline-block;
    padding: 0 10px;
    background: #fff;
    color: #666;
    border: 1px solid #e5e5e5;
    transition: .2s ease-in-out;
    transition-property: color, background-color, border;
    margin: 0;
}

.zoo-tickets-container input:focus{
    outline: 0;
    background-color: #fff;
    color: #666;
    border-color: #1e87f0;

}

.zoo-tickets-tickets{
    display: flex;
    flex-direction: row;
}

.zoo-ticket-type{
    padding: 20px;
    background-color: green;
    margin-left: 20px;
    min-width: 200px;
}

.zoo-ticket-type:first-of-type{
    margin-left: 0;
}


.zoo-ticket-type h3{
    margin-bottom: 10px;
    font-weight: bold;
}

.zoo-ticket-description{
    font-size: 0.9rem;
    margin-top: 10px;
}

.zoo-tickets-summary{
    margin: 20px 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.zoo-tickets-summary .zoo-tickets-summary-total-amount{
    margin-left: 10px;
}

.zoo-tickets-form-container{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.zoo-tickets-form-container .zoo-tickets-form-field{
    width: 45%;
    padding: 10px 10px 10px 0px;
}

.zoo-tickets-form-container .zoo-tickets-form-field label{
    display: block;
    margin-bottom: 5px;
}

.zoo-tickets-form-container .zoo-tickets-form-field input{
    width: 90%;
}

.vb-zoo-pay{

    border: 1px solid transparent;

    margin: 0;
    overflow: visible;
    -webkit-appearance: none;
    border-radius: 0;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 30px;
    vertical-align: middle;
    line-height: 3rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .1s ease-in-out;
    transition-property: color, background-color, border-color;

    background-color: green;
    color: #fff;
    min-width: 200px;

    cursor: pointer;
}

.vb-zoo-pay:hover{
    background-color: #45da45;
    color: #fff;
    transition: .1s ease-in-out;
}

.vb-zoo-pay:disabled{
    background-color: transparent;
    color: #999;
    border-color: #e5e5e5;
    cursor: auto;
}

.vb-zoo-pay:hover{
    cursor: auto;
}

.zoo-ticket-waiting-spinner{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}
.zoo-ticket-waiting-spinner::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
    100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

.zoo-ticket-waiting-box{
    width: 500px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #cacaca;
}

.zoo-ticket-waiting-box.with-tickets{
    width: 100%;
}

.zoo-ticket-waiting-box .zoo-ticket-waiting-text{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.zoo-ticket-zone{
    display: flex;
    flex-direction: column;
}

.zoo-ticket-single{
    flex: 1;
    padding-bottom: 20px;
    border-bottom: 1px solid #cacaca;
    margin-bottom: 20px;
}

.zoo-ticket-name{
    margin: 10px 20px;
    text-align: center;
}

.zoo-ticket-code{
    text-align: center;
    margin-bottom: 30px;
}

.zoo-ticket-new-order{
    text-align: center;
    margin: 20px 0;
    display: flex
;
    justify-content: center;
}

.zoo-ticket-new-order a{
    display: flex;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    height: 60px;
    border: none;
    transition: 0.4s ease-out;
    padding: 0 20px;
    background-color: #DAE362;
}