/* Main Fonts */
/*@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Tahoma, Geneva, sans-serif;
    color: #415562;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    /* background-image: url(https://image.evsreg.com/eventobg.png); */
    background-position: center center;
    background-size: cover;
}

.container {
    overflow: hidden;
}

.loaderBox {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999999;
    background: #f9f9f9;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.loader {
    border: 16px solid #c8c8c8;
    border-radius: 50%;
    border-top: 16px solid #8f5a9f;
    width: 100%;
    height: 100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    text-align: center;
}

@-webkit-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaderText {
    width: calc(100% - 32px);
    font-size: 18px;
    line-height: 22px;
    position: absolute;
    overflow: hidden;
    height: 66px;
    margin-right: auto;
    top: 50%;
    left: 50%;
    margin-left: calc(-50% - -16px);
    margin-top: -31px;
}

.loaderWrap {
    width: 150px;
    height: 150px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 50%;
    margin-top: -75px;
}

#loader {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    display: none;
}

.loaderImg {
    width: 100%;
    height: 100vh;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar {
    font-family: Tahoma, Geneva, sans-serif;
    direction: rtl !important;
}

.en {
    font-family: Tahoma, Geneva, sans-serif;
    direction: ltr !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Tahoma, Geneva, sans-serif;
}

p {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.small,
small {
    font-size: 80%;
    font-weight: 400;
}

.banner .imageWrap img {
    max-width: 100%;
}

.section-title,
.contentWrap h1 {
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #081528;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-color: transparent; */
    /* background-image: linear-gradient(180deg, #078243 0%, #002b68 100%); */
    font-size: 31px;
    font-weight: 600;
    position: relative;
    width: auto;
    display: inline-block;
    margin: 30px auto 20px;
}

    .contentWrap h1:after,
    .contentWrap h1:before {
        content: "";
        width: 114px;
        height: 3px;
        background: #078243;
        left: -125px;
        position: absolute;
        top: 20px;
    }

    .contentWrap h1:after {
        right: -125px;
        left: auto;
    }

.contentWrap h2 {
    color: #000000;
    font-weight: bold;
    font-size: 28px;
}

.formWrap input.form-control,
.formWrap select.form-control,
.formWrap textarea.form-control {
    border: 1px solid #666;
    color: #081528;
    padding: 7px 15px;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0;
    margin: 0;
    width: 100%;
    height: 50px;
    min-height: 50px;
    border-radius: 5px;
    font-size: 15px;
    transition: .5s;
    min-width: calc(100% - 15px);
    text-align: left;
}

.formWrap input.form-control {
    line-height: 50px;
}

select.form-control {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background: transparent !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: 98% center !important;
    background-size: 30px !important;
}

    .form-horizontal .bootstrap-select,
    .form-inline .bootstrap-select .form-control:focus,
    select.form-control:focus,
    .form-control:hover,
    select.form-control:hover {
        box-shadow: 0 2px 10px 0px rgb(0 0 0 / 20%);
        border: 1.5px solid #8f5a9f !important;
        border-radius: 5px !important;
    }

.dropdown.bootstrap-select.form-control:focus,
.dropdown.bootstrap-select.form-control:hover,
.dropdown.bootstrap-select.form-control {
    box-shadow: none;
    border: 0 !important;
    border-radius: 5px !important;
}

.bootstrap-select > select,
.formWrap select.form-control {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
    height: 0 !important;
    width: 0 !important;
    visibility: hidden !important;
}

.formWrap label {
    font-size: 15px;
    font-weight: 500;
    /*    text-transform: uppercase !important;*/
}

.formWrap .ar {
    direction: rtl;
}

.btnsPack .btn {
    margin-bottom: 15px;
}

a {
    color: #141d50;
}

.formWrap button.btn.btn-primary,
.btn.btn-primary,
.btn.btn-info {
    padding: 12px 60px;
    position: relative;
    color: #fff;
    display: inline-block;
    border: 2px solid #a06faf;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    min-width: auto;
    height: auto;
    background-color: #a06faf;
    line-height: 15px;
    text-transform: capitalize;
}

.buttonsWrap {
    gap: 30px;
    display: flex;
    justify-content: center;
}

.formWrap button.btn.btn-primary:focus,
.btn.btn-primary:focus,
.formWrap button.btn.btn-primary:hover,
.btn.btn-primary:hover,
.btn.btn-info:hover,
.btn.btn-info:focus {
    background-color: #8f5a9f;
    color: #fff;
}



.buttonsWrap .btn {
    background-color: transparent;
    background-image: linear-gradient(86deg, #078243d6 0%, #002b68b3 60%);
    color: #fff;
}

    .buttonsWrap .btn:hover {
        background-color: transparent;
        background-image: linear-gradient(-86deg, #078243d6 0%, #002b68b3 60%);
        color: #fff;
    }

.divider {
    background: #666;
    height: 1px;
    margin: 40px 0px 10px;
    width: 100%;
    border: 0px;
}

.radioGroup {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

    .radioGroup label {
        text-transform: capitalize !important;
        font-size: 15px;
    }

    .radioGroup .form-check {
        padding-right: 20px;
        display: flex;
        align-items: center;
        padding: 5px 20px;
    }

        .radioGroup .form-check label {
            font-weight: normal;
            line-height: 17px;
            font-size: 15px;
        }

label.radio-button__label {
    margin-bottom: 1px;
}

.radioGroup .form-check input {
    accent-color: #078243;
}

.radio-button.TandC {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

    .radio-button.TandC input {
        margin-top: 5px;
    }

.panelBox {
    background-color: transparent;
    padding: 2em 2.5em;
    text-align: center;
    border-top: 1px solid #666;
    margin-top: 2rem;
}

.replyBox h1 {
    font-size: 1.2rem !important;
    color: #009fc9 !important;
}

.panelBox h2 {
    margin: 0px 0px 15px !important;
    font-size: 2rem;
    color: #081528;
    font-weight: 800;
}

.panelBox .buttonsWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

    .panelBox .buttonsWrap .btn {
        margin-left: -50px;
    }

.radioBoxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radioBoxContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .radioBoxContainer .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #ebebeb;
        border-radius: 50%;
    }

    .radioBoxContainer:hover input ~ .checkmark {
        background-color: #666;
    }

    .radioBoxContainer input:checked ~ .checkmark {
        background-color: #081528;
    }

    .radioBoxContainer .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .radioBoxContainer input:checked ~ .checkmark:after {
        display: block;
    }

    .radioBoxContainer .checkmark:after {
        top: 9px;
        left: 9px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: white;
    }

.radioWrap .radioBoxContainer {
    display: inline-block;
    padding-right: 50px;
}

.checkboxWrap .checkBoxContainer {
    display: inline-block;
    padding-right: 50px;
}

.checkBoxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkBoxContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkBoxContainer .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #ebebeb;
    }

    .checkBoxContainer:hover input ~ .checkmark {
        background-color: #666;
    }

    .checkBoxContainer input:checked ~ .checkmark {
        background-color: #081528;
    }

    .checkBoxContainer .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .checkBoxContainer input:checked ~ .checkmark:after {
        display: block;
    }

    .checkBoxContainer .checkmark:after {
        left: 9px;
        top: 5px;
        width: 7px;
        height: 12px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.ticketButton {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
}

    .ticketButton input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .ticketButton .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #666;
        border-radius: 0;
    }

    .ticketButton:hover input ~ .checkmark {
        background-color: #081528;
    }

    .ticketButton input:checked ~ .checkmark {
        background-color: #081528;
    }

    .ticketButton .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .ticketButton input:checked ~ .checkmark:after {
        display: block;
    }

/* .ticketButton .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  } */

.ticketType .orderSummaryTable tr td,
.ticketType .orderSummaryTable tr th {
    color: #000;
}

.ticketType h1.ticketMainHeading {
    background: #081528;
    text-align: center;
    color: #fff;
    padding: 15px;
    display: block;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: bold;
}

.ticketType .ticketBox {
    background: #f5f5f5;
    margin-bottom: 30px;
}

    .ticketType .ticketBox .heading {
        text-align: center;
    }

        .ticketType .ticketBox .heading h1 {
            font-size: 20px;
            margin-bottom: 30px;
        }

    .ticketType .ticketBox .ticketPrice {
        background: #32adff2b;
        padding: 20px;
        color: #000;
        font-size: 26px;
        line-height: 32px;
        margin-left: -20px;
        margin-right: -20px;
    }

        .ticketType .ticketBox .ticketPrice b {
            display: block;
        }

        .ticketType .ticketBox .ticketPrice span {
            display: block;
            font-size: 18px;
        }

    .ticketType .ticketBox .ticketButton {
        width: 200px;
        height: 50px;
        background: #081528;
        padding: 0;
        text-align: center;
        margin: 0px auto 0px;
        color: #fff;
        border-radius: 50px;
        overflow: hidden;
    }

    .ticketType .ticketBox span.btnText {
        z-index: 1;
        width: 100%;
        height: 100%;
        line-height: 45px;
        font-weight: 800;
        font-size: 15px;
        border-radius: 50px;
        text-transform: uppercase;
    }

    .ticketType .ticketBox .ticketButtonWrap {
        margin: 30px auto 20px;
    }

.ticketType .ticketBox {
    padding: 20px;
    text-align: center;
}

.ticketType {
}

.bootstrap-select > .dropdown-toggle {
    position: relative;
    width: 100%;
    z-index: 1;
    text-align: right;
    white-space: nowrap;
    border: 1px solid #666;
    border-radius: 0;
    color: #081528;
    padding: 12px 15px;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 50px;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    background: transparent;
}

.dropdown.bootstrap-select.Country .dropdown-toggle:focus {
    box-shadow: none;
    border: 1px solid #666;
    border-radius: 5px !important;
    outline: none !important;
    outline-offset: 0px !important;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    background-color: transparent;
    border-color: transparent;
    border: 1px solid #666;
    border-radius: 0;
    color: #081528;
    padding: 12px 15px;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 50px;
    border-radius: 5px;
    background: transparent;
    outline: none;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus {
    box-shadow: none !important;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.dropdown.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    outline: none !important;
    outline-offset: 0;
}

.site-footer .bottom-info {
    font-size: 1rem;
    line-height: 1.5rem;
    background: #0a1034;
    color: #fff;
    padding: 15px 0px;
}

    .site-footer .bottom-info p {
        color: #fff;
    }

    .site-footer .bottom-info a {
        margin: 0px 5px;
        color: #fff;
    }

.userDetailTable p {
    margin-bottom: 0px;
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    accent-color: #a06faf;
}

.section.formWrap.mt-5.mb-5 p {
    color: #415562;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 22px;
}

.section.formWrap.mt-5.mb-5 .btn.btn-info {
    padding: 15px 8px;
}

table p {
    margin-bottom: 0px;
}

table thead {
    background: #ececec;
    padding: 5px;
}

table tr td {
    padding: 5px 10px;
}

    table tr td p a {
        color: #415562;
        text-decoration: underline;
    }

.mainHeading h1 {
    font-size: clamp(1.125rem, 0.8068rem + 1.5909vw, 2rem);
}

.mainHeading h4 {
    font-size: clamp(1rem, 0.9091rem + 0.4545vw, 1.25rem);
}

@media (max-width: 991px) {
    .site-footer * {
        text-align: center !important;
    }
}

@media (max-width: 767px) {

    .section-title,
    .contentWrap h1,
    .panelBox h2 {
        font-size: 24px;
        /* margin: 15px 0px; */
    }

        .contentWrap h1:after,
        .contentWrap h1:before {
            display: none;
        }

    .section.formWrap.mt-5.mb-5 p {
        font-size: 18px;
    }

    .dropdown-menu.show {
        width: 300px !important;
        min-width: 300px !important;
    }
}

@media (max-width: 520px) {

    .section.formWrap.mt-5.mb-5 p {
        font-size: 16px;
    }
}

/*for ticket css*/

.checkbox input[type="checkbox"] {
    float: left;
    margin: 5px 7.5px 0px 0px;
}

.checkbox input[type="radio"] {
    float: left;
    margin: 5px 7.5px 0px 0px;
}

.orderSummaryTable {
    background: #ffffff;
    border-radius: 10px;
    border: 0 !important;
}

.ticketContent ul {
    padding: 0px;
    list-style: none;
}

    .ticketContent ul li {
        color: #081528;
        border-bottom: 1px solid #666;
        padding: 10px 5px;
    }

        .ticketContent ul li:last-child {
            border-bottom: 0px;
        }

        .ticketContent ul li span.date {
            color: #b51922;
        }

.inputButtonWrap {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 25px;
}

    .inputButtonWrap .checkbox.chk {
        /* width: 30%; */
        /* border-bottom: 1px solid #666; */
        padding-bottom: 10px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 5px;
    }

        .inputButtonWrap .checkbox.chk:hover {
            background: #081528;
        }
