.menu_top {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.modal .modal__overlay-content {
    overflow-y: auto;
    height: 75vh;
    display: flex;
    flex-wrap: wrap;
}

.modal__error .modal__overlay-content {
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
}

.info-form .submit {
    order: 9;
    display: flex;
    gap: 10px;
}

.submit .cancel {
    background-color: #e61657;
}

.modal__overlay-content .info-form {
    box-shadow: none;
    background-color: #e4e6eb;
    border: 2px solid #ccc;
}

.loader {
    align-self: center;
    justify-self: center;
}

.loader.dark {
    margin: 0 auto;
    width: fit-content;
}

.loader.dark .lds-ripple div {
    border: 4px solid #2f3252;
}

.button[disabled] {
    pointer-events: none;
    cursor: not-allowed;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px;
    font-family: Poppins;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

select {
    outline: none;
}

input {
    outline: none;
}

::-webkit-input-placeholder {
    color: #858798;
    font-family: Poppins;
}

:-ms-input-placeholder {
    color: #858798;
    font-family: Poppins;
}

::-ms-input-placeholder {
    color: #858798;
    font-family: Poppins;
}

::placeholder {
    color: #858798;
    font-family: Poppins;
}

::-ms-input-placeholder {
    color: #858798;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

/*track*/
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/*thumb*/
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

* {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.1);
}

@-moz-document url-prefix() {
    .menu-top {
        background-color: rgba(36, 37, 66, 0.9);
    }
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type="checkbox"],
    input[type="radio"] {
        --active: #2fd326;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, 0.3);
        --border: #bbc1e1;
        --border-hover: #2fd326;
        --background: #fff;
        --disabled: #f6f8ff;
        --disabled-inner: #e1e6f9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        -webkit-transition: background 0.3s, border-color 0.3s,
        -webkit-box-shadow 0.2s;
        transition: background 0.3s, border-color 0.3s, -webkit-box-shadow 0.2s;
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s,
        -webkit-box-shadow 0.2s;
    }
    input[type="checkbox"]:after,
    input[type="radio"]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        -webkit-transition: opacity var(--d-o, 0.2s),
        -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
        transition: opacity var(--d-o, 0.2s),
        -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease),
        opacity var(--d-o, 0.2s);
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease),
        opacity var(--d-o, 0.2s),
        -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    }
    input[type="checkbox"]:checked,
    input[type="radio"]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: 0.3s;
        --d-t: 0.6s;
        --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
    }
    input[type="checkbox"]:disabled,
    input[type="radio"]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }
    input[type="checkbox"]:disabled:checked,
    input[type="radio"]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }
    input[type="checkbox"]:disabled + label,
    input[type="radio"]:disabled + label {
        cursor: not-allowed;
    }
    input[type="checkbox"]:hover:not(:checked):not(:disabled),
    input[type="radio"]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }
    input[type="checkbox"]:focus,
    input[type="radio"]:focus {
        -webkit-box-shadow: 0 0 0 var(--focus);
        box-shadow: 0 0 0 var(--focus);
    }
    input[type="checkbox"]:not(.switch),
    input[type="radio"]:not(.switch) {
        width: 21px;
    }
    input[type="checkbox"]:not(.switch):after,
    input[type="radio"]:not(.switch):after {
        opacity: var(--o, 0);
    }
    input[type="checkbox"]:not(.switch):checked,
    input[type="radio"]:not(.switch):checked {
        --o: 1;
    }
    input[type="checkbox"] + label,
    input[type="radio"] + label {
        font-size: 14px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }
    input[type="checkbox"]:not(.switch) {
        border-radius: 5px;
    }
    input[type="checkbox"]:not(.switch):after {
        width: 5px;
        height: 10px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 6px;
        top: 2px;
        -webkit-transform: rotate(var(--r, 20deg));
        transform: rotate(var(--r, 20deg));
    }
    input[type="checkbox"]:not(.switch):checked {
        --r: 43deg;
    }
    input[type="checkbox"].switch {
        width: 38px;
        border-radius: 11px;
    }
    input[type="checkbox"].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, var(--border));
        -webkit-transform: translateX(var(--x, 0));
        transform: translateX(var(--x, 0));
    }
    input[type="checkbox"].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }
    input[type="checkbox"].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }
    input[type="radio"] {
        border-radius: 50%;
    }
    input[type="radio"]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        -webkit-transform: scale(var(--s, 0.7));
        transform: scale(var(--s, 0.7));
    }
    input[type="radio"]:checked {
        --s: 0.5;
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.holder-tickets {
    width: 100%;
    margin-bottom: 80px;
    max-width: 1200px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.page-main__content {
    padding-top: 20px;
}

.top-container {
    padding-bottom: 20px;
}

.top-container.session {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.top-container.session.breakout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: center;
    align-content: center;
}

.top-container.session.breakout.ss_active {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.top-container.agenda {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.top-container.event_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.title .project {
    margin-left: 5px;
    margin-right: 5px;
}

.title .date,
.title .type {
    font-size: 13px;
    font-weight: 400;
    color: #858798;
    margin-left: 5px;
    margin-right: 5px;
}

.title.sesiune {
    margin-bottom: 5px;
}

.title.nest {
    width: auto;
    margin-bottom: 5px;
}

.dark-txt {
    color: #858798;
    line-height: 19px;
}

.dark-txt p
{
    margin-bottom: 0;
}

.ticket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 150px;
    max-height: 220px;
    min-height: 150px;
    margin-top: 10px;
    margin-bottom: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border-radius: 10px;
    background-color: #2f3252;
    position: relative;
}

.ticket__main__part {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    height: 100%;
    padding: 30px;
    padding-right: 160px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px dashed #3f4567;
}

.ticket__second__part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30%;
    height: 100%;
    padding: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ticket.assigned .ticket__main__part {
    padding: 30px;
}

.ticket.assigned .ticket__second__part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.button-count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    background-color: #3f4567;
    font-family: "Fa solid 900", sans-serif;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

.button-count:hover {
    background-color: #646b91;
}

.form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.input-numerals {
    width: 60px;
    height: 60px;
    border: 0px none #000;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.input-numerals:focus {
    color: #fff;
    outline: none;
}

.input-numerals:focus-within {
    color: #fff;
}

.input-numerals:target {
    color: #fff;
}

.input-numerals:focus-visible {
    color: #fff;
}

.input-numerals:hover {
    color: #fff;
}

.input-numerals:after {
    color: #fff;
}

.input-numerals:active {
    color: #fff;
}

.form-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
}

.crop-ticket {
    position: absolute;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #242542;
}

.crop-ticket__top {
    position: absolute;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #242542;
    top: -8px;
}

.crop-ticket__bottom {
    position: absolute;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #242542;
    bottom: -8px;
}

.summary-container .price {
    position: static;
}

a.edit-ticket {
    color: white;
    transition: all 0.3s;
    padding: 5px 8px;
    border-radius: 5px;
    background-color: transparent;
}

a.edit-ticket:hover {
    cursor: pointer;
    color: #2fd326;
    background-color: #3f4567;
}

.price {
    position: absolute;
    right: 35px;
    text-align: end;
    color: #2fd326;
    font-size: 1.3em;
    line-height: 25px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.button-container .button[disabled] {
    opacity: 0.6;
    pointer-events: none;
}

.price.centered {
    position: static;
    margin: 0 auto;
    font-size: 1.5em;
}

.price__total__sum {
    display: none;
    position: fixed;
    bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 450px;
    text-align: center;
    margin-bottom: 0;
    right: 0;
    left: 0;
    color: #2fd326;
    font-size: 1.3em;
    line-height: 100%;
    font-weight: 600;
    z-index: 1;
}

div#discount {
    /* width: 100%; */
    margin-right: 10px;
    transition: all 1s;
    align-items: center;
}

div#discount .button {
    border: 0px solid transparent;
    transition: all 1s;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.discounted {
    /* background-color: #1a1b32; */
}

.discounted .dark-txt {
    max-width: 90%;
}

.lds-ellipsis {
    opacity: 1;
    height: 20px;
    bottom: 30px;
    pointer-events: none;
}

.new-price {
    display: none;
    font-size: 13px;
}

.discounted .new-price {
    display: block;
}

.applied-discount {
    display: none;
    position: absolute;
    font-size: 13px;
    top: 0;
    right: 30px;
    background-color: #27b21f;
    padding: 5px 10px 5px 10px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

.discounted .applied-discount {
    display: block;
}

.discounted .money {
    text-decoration: line-through;
    color: #e61657;
    line-height: 100%;
}

div#discount .discount-form {
    border: 0px solid transparent;
    transition: all 1s;
}

div#discount.ping .discount-form {
    border: 3px solid white;
    animation: 1s ease 0s 1 normal none running fadeIn;
}

div#discount.ping .button {
    transition: all 1s;
    border: 3px solid white;
    animation: 1s ease 0s 1 normal none running fadeIn;
}

div#discount .button,
div#discount .discount-form {
    border: none;
}

.discount-form {
    width: fit-content;
}

span.txt-discount {
    font-size: 13px;
}

.price__total__sum.active {
    display: block;
}

#existing-person {
    display: none;
}

.actions-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.discount-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    min-height: 60px;
}

.button-container {
    width: 30%;
    position: relative;
}

.next-loader {
    position: absolute;
    left: -75px;
    bottom: 15px;
}

.button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    background-color: #2f3252;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

.button:hover {
    background-color: #3f4567;
    color: #fff;
}

.button .status {
    display: none;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #2fd326;
}

.button.nested {
    position: relative;
    color: #858798;
    text-decoration: none;
}

.button.nested:hover {
    color: #fff;
}

.button.nested.active {
    background-color: #3f4567;
    color: #fff;
    height: 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.button.nested.active .status {
    display: block;
}

.button.finish {
    background-color: #e61657;
    display: none;
}

.button.finish.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ticket-container,
.one-ticket-container,
.summary-container {
    display: none;
}

.assigned-tickets,
.ticket-container.active,
.assigned-tickets.active,
.one-ticket-container.active,
.summary-container.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
}

/* .info-form select,
.info-form input:not([type="checkbox"] + [type="radio"]) {
  width: 100%;
  height: 50px;
  font-size: 1em;
} */

/* .info-form input[type="checkbox"] {
  height: auto !important;
} */

.field-container {
    display: flex;
    flex-direction: column;
}

.page-main__content {
    max-width: 1300px;
    padding: 20px 50px;
    margin: 0 auto;
}

.ticket__second__part input {
    pointer-events: none;
}

.info-form {
    padding: 20px 30px;
    border: 2px solid #2f3252;
    /* background-color: white; */
    box-shadow: 0px 0px 8px #1e1e38;
    border-radius: 10px;
    /* display: flex; */
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;

    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-self: center;
    margin-bottom: 10px;
}

.discount-form {
    height: 60px;
    margin-bottom: 0px;
    background-color: #2f3252;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 0px 10px 0px 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.discount-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    background-image: none;
}

.discount-container .button {
    width: 80px;
    margin-left: 10px;
}

label {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 0px;
}

label a {
    color: #2fd326;
    text-decoration: none;
}

label.check {
    margin-top: 0px;
}

label.nested {
    margin-bottom: 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 400;
}

.checkbox-container {
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.checkbox-container.field-container {
    flex-direction: row;
}

.checkbox-container input {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 5px;
}

.buyer .general-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.render-here .personal-fields,
.render-here .company-fields {
    display: none;
}

.render-here.company .personal-fields {
    display: none;
}

.render-here.company .company-fields {
    display: block;
}

.render-here.personal .company-fields {
    display: none;
}

.render-here.personal .personal-fields {
    display: block;
}

.buyer .input-field {
    width: 100%;
}

.discount-input {
    display: flex;
    height: 40px;
    margin-bottom: 0px;
    border: 0px none #000;
    border-radius: 5px;
}

.discount-input label {
    margin-right: 10px;
}

.discount-input input {
    background-color: #242542;
    padding: 0 10px;
    color: #fff;
    font-family: Poppins;
}

.submit.nested {
    position: absolute;
    right: -75px;
    height: 60px;
    border-radius: 10px;
    background-color: #2f3252;
}

.submit.nested:hover {
    background-color: #3f4567;
}

#discount {
    display: none;
}

#discount.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.step-container {
    display: none;
}

.step-container .button span {
    color: #2fd326;
    margin-right: 3px;
    font-size: 11px;
    display: none;
}

.step-container .button.checked span.step-indicator1 {
    display: inline-flex;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 16px;
}

.step-container .hidden {
    display: none;
}

.step-container.active {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    grid-auto-columns: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.assign-button {
    display: -webkit-box;
    display: -ms-flexbox;
    height: 60px;
    min-width: 180px;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    background-color: #3f4567;
    text-decoration: none;
    color: #fff;
    display: none;
}

.assign-button.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.assign-button:hover {
    background-color: #646b91;
}

.ticket-status {
    color: #858798;
}

.ticket-status.assigned {
    display: none;
    color: #2fd326;
}

.ticket-status.assigned.active {
    display: block;
}

.assign-info-container,
.ticket-info-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
}

.assign-info-container select,
.assign-info-container input,
.ticket-info-form select,
.ticket-info-form input {
    height: 40px;
}

.info-field {
    margin-right: 5px;
    margin-left: 5px;
    border-style: none none solid;
    border-width: 0px 0px 1px;
    border-color: #000 #000 #3f4567;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    width: 30%;
}

.info-field:focus {
    color: #fff;
    border-bottom: 1px solid #fff;
    text-decoration: none;
}

.info-select {
    width: 100px;
    margin-right: 5px;
    border-style: none none solid;
    border-width: 0px 0px 1px;
    border-color: #000 #000 #3f4567;
    background-color: transparent;
    color: #858798;
    font-size: 16px;
    font-weight: 600;
}

.assign-info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.assign-info-top .dark-txt {
    margin-right: 20px;
}

.white-txt {
    color: #fff;
}

.info-form .check-container {
    display: block;
}

.check-container {
    margin-top: 20px;
    display: none;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.check-container .tiny-err-txt {
    margin-bottom: 10px;
}

.check-container.active {
    display: block;
}

.buyer-container {
    display: none;
    margin-bottom: 15px;
}

.buyer-container .flex-fullwidth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
}

.buyer-container.active,
.buyer-container .__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.buyer-container__select {
    margin-bottom: 10px;
}

.buyer-container label {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.buyer-container label span {
    line-height: 20px;
}

.buyer-container label input {
    margin-right: 7px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header-descriptor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.line {
    height: 1px;
    margin-left: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #2f3252;
}

select:focus {
    outline: none;
    -webkit-box-shadow: 0px 0px 1px 3px #3f4567;
    box-shadow: 0px 0px 1px 3px #3f4567;
}

input:focus {
    -webkit-box-shadow: 0px 0px 1px 3px #3f4567;
    box-shadow: 0px 0px 1px 3px #3f4567;
}

.person-dropdown {
    height: 50px;
    padding: 10px;
    padding-left: 20px;
    border: 0px none #000;
    border-radius: 10px;
    background-color: #2f3252;
    color: #fff;
    font-family: Poppins;
    font-size: 1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(/resources/images/caret-down-white.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 19px;
}

.input-field {
    height: 50px;
    border: 0px none #000;
    border-radius: 10px;
    background-color: #2f3252;
    color: #fff;
    font-family: Poppins;
    font-size: 1em;
    padding: 10px;
    padding-left: 20px;
}


.textarea-field {
    height: 100px;
    border: 0px none #000;
    border-radius: 10px;
    background-color: #2f3252;
    color: #fff;
    font-family: Poppins;
    font-size: 1em;
    padding: 10px;
    padding-left: 20px;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
    font-size: 1em;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background-color: #2f3252 !important;
    color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #2f3252 inset;
    -webkit-text-fill-color: #fff !important;
}

.ts-wrapper .ts-control,
.ts-wrapper.has-items .ts-control,
.ts-wrapper.focus.input-active .ts-control {
    border-radius: 10px;
    height: 50px;
    background-color: #2f3252;
    color: #fff;
    border: none;
    padding-left: 20px;
}

.ts-wrapper::after {
    content: "";
    top: 20px;
    right: 15px;
    width: 20px;
    height: 20px;
    pointer-events: none;
    position: absolute;
    z-index: 99;
    background-image: url(/resources/images/arrow-down.png);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0;
}

.ts-wrapper.single.focus.input-active.full {
    border-radius: 10px;
    height: 50px;
    background-color: #2f3252;
    color: #fff;
    border: none;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
    background: #2f3252 !important;
}

.ts-wrapper.multi .ts-control > div {
    margin: 0 3px 0px 0 !important;
}
/* error marking after validation */
.field-container.mark input,
.field-container.mark select,
.field-container.mark .ts-control {
    border: 2px solid crimson;
}

p.tiny-err-txt {
    color: crimson;
    background-color: white;
    border-radius: 3px;
    padding: 5px 20px;
    font-size: 0.8em;
    margin-bottom: 0;
    margin-top: 7px;
    position: relative;
}

.modal__error span.symbol {
    border-radius: 50%;
    display: inline-flex;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
    align-items: center;
    justify-content: center;
    background-color: #ed143d66;
    color: crimson;
    margin-right: 8px;
}

p.tiny-err-txt:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: white;
    transform: rotateZ(45deg);
    top: -2px;
    left: 12px;
}

.ts-wrapper .ts-control > div {
    cursor: pointer;
    margin: 0 3px 0px 0;
    padding: 2px 9px !important;
    background: #3f4567 !important;
    color: white !important;
    font-size: 1em;
    border-radius: 4px !important;
    border: 0 solid #d0d0d0 !important;
}

.ts-wrapper.multi .ts-control > div {
    padding: 2px 0px !important;
    padding-left: 9px !important;
    background: #3f4567 !important;
    color: white !important;
    font-size: 1em;
    border-radius: 4px !important;
    border: 0 solid #d0d0d0 !important;
}

.radio-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-image {
    font-family: "Fa brands 400", sans-serif;
    font-size: 30px;
    line-height: 33px;
    margin-left: 5px;
}

.one-ticket-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.summary-div {
    margin-bottom: 20px;
}

.payment-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.single .ts-control input {
    color: white;
}

.payment-container span {
    margin-left: 10px;
}

.payment-container label {
    display: flex;
    align-items: center;
    margin: 7px;
    cursor: pointer;
}

.payment-container svg {
    font-size: 1.1em;
}

.modal {
    position: fixed;

    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #242542;
    z-index: 1201;
}

.modal__error {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #242542;
    z-index: 999;
}

.modal__error .modal__overlay {
    background-color: white;
}

.modal__error .text {
    font-family: poppins;
    font-size: 12px;
    font-weight: 500;
    color: #242542;
    width: 330px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-bottom: 0px;
}

.modal__error.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 999;
}

/* div#personal_county-ts-dropdown .option.active {
  display: none;
} */



.modal .modal__overlay {
    max-height: 90%;
    position: absolute;
    /* overflow-y: auto; */
    width: 80%;
    max-width: 1100px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
    z-index: 9;
}

.modal__error .modal__overlay {
    position: absolute;
    max-width: 1100px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
    z-index: 9;
}

.modal .text {
    font-family: poppins;
    font-size: 12px;
    font-weight: 500;
    color: #242542;
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-bottom: 15px;
}
.roles-list {
    width: 300px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.43;
    color: #fff;
}

.roles-list__item {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #2f3252;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.roles-list__item:hover {
    background-color: #3f4567;
}

.roles-list__item:last-child {
    margin-bottom: 0;
}

.roles-list__item button {
    font-family: Poppins;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 26px;
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
}

.roles-list__item-icon {
    margin-right: 16px;
}
/*# sourceMappingURL=tickets.css.map */

.hidden-company {
    display: none;
}
.visible-company {
    display: block;
}

.hidden-personal {
    display: none;
}
.visible-personal {
    display: block;
}

.visible-company input,
.visible-company select,
.visible-personal input,
.visible-personal select {
    width: 100%;
}

.step-container-info
{
    background-color: #3f4567;
    margin-top: -20px;
    padding: 35px 15px 15px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    display: block;
    position: relative;
}

.step-container-info .step-container-info-element .ribbon
{
    top: 0;
    background-color: #34b52c;
    display: block;
    padding: 3px 10px;
    position: absolute;
    left: 15px;
    font-weight: bold;
}

.step-container .button span.step-no
{
    display: block;
    color: #858798;
    font-size: 14px;
}

.step-container .button.active span.step-no
{
    color: #fff;
}

.t-l-square
{
    border-top-left-radius: 0;
}

.t-r-square
{
    border-top-right-radius: 0;
}


@media only screen and (max-width: 1000px) {
    .page-main__content {
        padding: 20px 30px;
    }

    .page-main__content .title {
        flex-direction: column;
    }
    .page-main__content .title span {
        margin-left: 0;
    }

    .ticket {
        display: block;
        height: auto;
        max-height: none;
    }

    .ticket .price {
        bottom: 0;
    }

    .ticket__main__part {
        width: 100%;
        height: auto;
        padding-right: 30px;
        border: none;
    }

    .ticket__second__part {
        width: auto;
        height: auto;
    }

    .crop-ticket__top,
    .crop-ticket__bottom {
        display: none;
    }

    .discount-container {
        min-height: auto;
        width: 100%;
    }

    .button-container {
        width: 100%;
    }

    .actions-container {
        flex-direction: column;
    }

    div#discount {
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .discount-form {
        height: 80px;
        padding: 10px;
        background-color: #3f4567;
    }

    .discount-input {
        flex-direction: column;
        height: 60px;
    }

    /* div#discount input {
      width: 50%;
    } */

    div#discount label {
        margin-top: 0px;
        font-size: 11px;
        margin-bottom: 5px;
        margin-right: 0;
    }

    div#discount a.button {
        margin-left: 0;
        width: 100%;
        height: 80px;
        background-color: #3f4567;
    }

    .step-container.active {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .step-container.active .button.nested {
        padding: 0 20px;
        font-size: 12px;
        line-height: 120%;
    }

    .info-form {
        display: flex;
        flex-direction: column;
    }

    .info-form .submit {
        flex-direction: column;
    }

    .modal .modal__overlay {
        padding: 20px;
    }

    .buyer .general-info {
        display: flex;
        flex-direction: column;
    }

    .price__total__sum {
        bottom: 0px;
        background-color: #ffffff;
        border-radius: 5px 5px 0 0;
        line-height: 140%;
        color: #242542;
        width: 100vh;
    }

    .applied-discount {
        padding: 6px;
        font-size: 12px;
    }

    .step-container-info
    {
        margin-top: -30px;
    }

    .button
    {
        min-width: 120px;
    }
}

