a {
    color: #6a1b9a;
    text-decoration: underline;
}

p {
    color: #000;
}

.form-label {
    margin-bottom: .5rem;
    font-size: 0.9rem;
}

.wos-form-card {
    
}

.theme-color {
    color: #522E91;
}

.custom-radio {
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
}

.custom-radio input[type="checkbox"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.custom-radio label {
    display: inline-block;
    background-color: #fff;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #444;
    border-radius: 25px;
    color: #333;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
    box-shadow: inset 0 0 25px 0 rgba(0, 0, 0, 0.1);
    width: 250px;
    height: auto;
    transition: 0.5s all;
    position: relative;
}

.custom-radio input[type="checkbox"]:checked + label img {
    transition: 0.5s all;
}

.custom-radio input[type="checkbox"]:checked + label {
    background: linear-gradient(to bottom, #520C89, #9468b6);
    /* background: linear-gradient(90deg, rgba(106, 27, 154, 1) 0%, rgba(26, 20, 75, 1) 100%); */
    border-color: #6A1B9A !important;
    color: #fff;
}



.custom-radio input[type="checkbox"]:checked + label img {
    filter: brightness(0) invert(1);
}

.custom-radio input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    margin: 0 6px 0 0;
    font-weight: 600;
    position: absolute;
    width: 23px;
    height: 23px;
    background: #fff;
    border-radius: 50%;
    color: #56138a;
    right: 2px;
    top: 9px;
    display: flex
    ;
    align-items: center;
    justify-content: center;
}

.select-city-area label img {
    width: 110px;
    display: block;
    margin: 0 auto 12px auto;
}

.select-city-area .card {
    margin: 0 10px;
}

.sub-head {
    text-align: center;
    margin: 0 0 20px 0;
}

.custom-radio label span {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.custom-radio label small {
    font-size: 0.82rem;
    font-weight: 600;
    color: #9164b4;
}

.custom-radio input[type="checkbox"]:checked + label small {
    color: #fff;
}

.form-footer-btn {
    margin: 35px 0 0 0;
}

.btn-theme
{
  display: inline-block;
  margin: 0 auto;
  padding: 12px 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-image: linear-gradient(to right, #520C89 0%, #9468b6 51%, #520C89 100%);
  background-size: 200% auto;
  transition: all 0.4s ease-in-out;
}

.btn-theme:hover
{
  color: #fff;
  background-position: right center;
  text-decoration: none;
}

.form-group {
    margin-bottom: 25px;
}

.exh-reg {
    font-size: 1rem;
}

.exh-reg .form-control {
    border-radius: 8px;
    padding: 10px 15px;
}

.form-head {
    font-size: 1.5rem;
    margin: 10px 0 20px 0;
    font-weight: 600;
    color: #6a1b9a;
}

.warning-text {
    color: #ff5722;
}

.form-divider {
        border-top: 2px #000000 dashed;
}

.br-0 {
    border-radius: 0 !important;
}

.tel-brl-0 {
    border-radius: 0px 8px 8px 0px !important;
    border-left: 0;
}

.tel-brr-0 {
    border-radius: 8px 0px 0px 8px !important;
    border-right: 0;
}

.mob-brl-0 {
    border-radius: 0px 8px 8px 0px !important;
}

.mob-brr-0 {
    border-radius: 8px 0px 0px 8px !important;
    border-right: 0;
}

.form-left {
    padding-right: 30px;
}

.form-right {
    border-left: 1px #000 solid;
    padding-left: 30px;
}

.theme-custom-checkbox {
    padding: 0;
    margin: 0 0 15px 0;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .theme-custom-checkbox input[type=checkbox] {
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        width: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid #BBC1E1;
        background: #fff;
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
        border-radius: 4px;
        flex: 0 0 21px;
    }

    .theme-custom-checkbox input[type=checkbox]::after {
        content: "";
        display: block;
        position: absolute;
        width: 5px;
        height: 9px;
        border: 2px solid #fff;
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        opacity: 0;
        transform: rotate(20deg);
        transition: transform 0.3s ease, opacity 0.2s;
    }

    .theme-custom-checkbox input[type=checkbox]:checked {
        background: #6a1b9a;
        border-color: #6a1b9a;
    }

        .theme-custom-checkbox input[type=checkbox]:checked::after {
            opacity: 1;
            transform: rotate(43deg);
            transition: transform 0.6s cubic-bezier(.2, .85, .32, 1.2), opacity 0.3s;
        }

    .theme-custom-checkbox input[type=checkbox]:hover:not(:checked):not(:disabled) {
        border-color: #6a1b9a;
    }

    .theme-custom-checkbox input[type=checkbox]:focus {
        box-shadow: none;
    }

    .theme-custom-checkbox input[type=checkbox]:disabled {
        background: #F6F8FF;
        border-color: #BBC1E1;
        cursor: not-allowed;
        opacity: 0.9;
    }

        .theme-custom-checkbox input[type=checkbox]:disabled:checked {
            background: #E1E6F9;
        }

        .theme-custom-checkbox input[type=checkbox]:disabled + label {
            cursor: not-allowed;
        }

    .theme-custom-checkbox input[type=checkbox] + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
        font-size: 0.9rem;
    }

    /*radio custom css*/
    .theme-custom-radio {
        padding: 0;
        font-size: 0.9rem;
        margin: 0 0 5px 0;
        display: flex;
    }

    .theme-custom-radio input[type=radio] {
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        width: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid #BBC1E1;
        background: #fff;
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
        border-radius: 50%;
        flex: 0 0 21px;
    }

    .theme-custom-radio input[type=radio]::after {
        content: "";
        display: block;
        position: absolute;
        width: 5px;
        height: 9px;
        border: 2px solid #fff;
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        opacity: 0;
        transform: rotate(20deg);
        transition: transform 0.3s ease, opacity 0.2s;
    }

    .theme-custom-radio input[type=radio]:checked {
        background: #6a1b9a;
        border-color: #6a1b9a;
    }

        .theme-custom-radio input[type=radio]:checked::after {
            opacity: 1;
            transform: rotate(43deg);
            transition: transform 0.6s cubic-bezier(.2, .85, .32, 1.2), opacity 0.3s;
        }

    .theme-custom-radio input[type=radio]:hover:not(:checked):not(:disabled) {
        border-color: #6a1b9a;
    }

    .theme-custom-radio input[type=radio]:focus {
        box-shadow: none;
    }

    .theme-custom-radio input[type=radio]:disabled {
        background: #F6F8FF;
        border-color: #BBC1E1;
        cursor: not-allowed;
        opacity: 0.9;
    }

        .theme-custom-radio input[type=radio]:disabled:checked {
            background: #E1E6F9;
        }

        .theme-custom-radio input[type=radio]:disabled + label {
            cursor: not-allowed;
        }

    .theme-custom-radio input[type=radio] + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }
}

.blank-label {
    display: block;
    margin: 0 0 9px 0;
    width: 100%;
}

.theme-light-card {
    border-color: #6a1b9a;
    background-color: #f3e5f5;
    margin-bottom: 30px;
}

.booth-area {
    position: relative;
}

.booth-area .sq-mtrs {
    position: absolute;
    top: 41px;
    right: 15px;
}

.contact-details {
        line-height: 30px;
}

.btn-theme-o {
    color: #6a1b9a;
    border: 1px #6a1b9a solid;
    width: auto;
    min-width: inherit;
    display: inline-block;
    max-width: inherit;
    font-size: 0.9rem;
    transition: 0.5s all;
}

.btn-theme-o:hover {
    color: #fff;
    border: 1px #6a1b9a solid;
    background: #6a1b9a;
}

.cost-cal-table tbody, .cost-cal-table td, .cost-cal-table tfoot, .cost-cal-table th, .cost-cal-table thead, .cost-cal-table tr {
    border-color: #000;
}

.thead-dark tr th {
    color: #fff;
    background: #6a1b9a;
}

.cost-cal-table>:not(caption)>*>* {
    padding: .3rem .4rem;
    font-size: 0.8rem;
}

.catalogue-products-accordion .card {
  margin-bottom: 6px;
  box-shadow: none;
  border-radius: 0;
}

.catalogue-products-accordion .card .card-header {
  padding: 0;
}

.catalogue-products-accordion .card .form-check label {
  cursor: pointer;
}

.catalogue-products-accordion .card .card-header a {
  background-color: #f8f9fa; /* Default Light Gray */
  padding: 5px 10px;
  display: block;
  border-radius: 0;
  font-weight: 600;
}

.catalogue-products-accordion .accordion-button[aria-expanded="true"] {
    background-color: #f3e5f5 !important;
    color: #000 !important;
    box-shadow: none;
    border-radius: 0;
}

.catalogue-products-accordion .accordion-button[aria-expanded="true"] i {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.accordion-button::after {
    display: none;
}

.accordian-effect {
  transition: 0.5s all ease;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.catalogue-products-accordion .accordion-body {
    padding: 5px;
}

.catalogue-products-accordion .theme-custom-checkbox {
    padding: 12px 12px;
}

.catalogue-products-accordion .theme-custom-checkbox div {
    margin-bottom: 10px;
}

.catalogue-products-accordion .theme-custom-checkbox div:last-child {
    margin-bottom: 0px;
}

.thank-you-card {
        border-radius: 20px;
    background: #fff;
    border-color: #9E9E9E;
    box-shadow: inset 0 0 25px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.main-thank-you-txt {
    text-align: center;
}

.main-thank-you-txt img {
    width: 110px;
}

.main-thank-you-txt h1 {
    font-size: 2.2rem;
    margin: 30px 0 16px 0;
    font-weight: 700;
}

.main-thank-you-txt p {
    font-size: 1.2rem;
    width: 70%;
    margin: 0 auto 15px auto;
}

.show-details {
    margin: 30px 0 0 0;
}

.pre-reg-id {
    font-size: 1.2rem;
    text-align: center;
    margin: 25px 0 10px 0;
}

.show-details-ty {
    margin-top: 25px;
    margin-bottom: 15px;
}

.show-details-ty .card {
    text-align: center;
    border-radius: 20px;
    border-color: #9E9E9E;
    height: 100%;
    box-shadow: inset 0 0 25px 0 rgba(0, 0, 0, 0.1);
}

.show-details-ty .card img {
    width: 60px;
    margin: 0 0 20px 0;
}

.show-details-ty .card p {
    margin: 0;
    font-weight: 500;
}

.show-details {
    margin: 30px 0 0 0;
}


.formError {
    position: relative !important; 
    top: auto !important; 
    left: 0 !important; 
    margin-top: 5px !important; 
    width: 100%; 
    z-index: 1; 
}

.formError .formErrorArrow {
    display: none !important;
}

.formError .formErrorContent {
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    color: #f00 !important;
    background: transparent !important;
    font-size: 14px !important;
}

.form-group {
    margin-bottom: 20px;
}

.admin-side-form-exh {
    margin-top: 20px;
    margin-bottom: 20px;
}

.exh-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: none;
    border: #520C89 1px solid;
    padding: 30px;
    margin-bottom: 20px;
}

.exh-reg .form-control {
    font-size: 0.85rem;
}

.manual-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    padding: 0 30px 20px 30px;
    border-bottom: 1px #000 solid;
    background: #ece2fd;
}

.manual-header .mlogo {
    width: 160px;
    margin-top: -1px;
}

.top-bar {
    background: #533091;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 7px 15px;
}

.top-bar a {
    color: #fff;
    margin-left: 30px;
}

.exhmanual-sidebar hr {
    border-top: 1px #9E9E9E solid;
}

.exhmanual-sidebar .nav-pills .nav-link.active, .exhmanual-sidebar .nav-pills .show>.nav-link {
    color: #520C89;
    background-color: transparent;
    font-weight: 600;
}

.exhmanual-sidebar .nav-pills .nav-link {
    color: #000;
    font-weight: 600;
    transition: 0.5s all;
    border-radius: 20px;
}

.exhmanual-sidebar .nav-pills .nav-link:hover {
    color: #520c89;
    background: #fdf0ff;
}

.exhmanual-sidebar .nav-pills .nav-link.active {
    color: #fff;
    background-image: linear-gradient(to right, #520C89 0%, #9468b6 51%, #520C89 100%);
    background-size: 200% auto;
    
}

.theme-tabs {

}

.nav-tabs {
        border-bottom: 1px solid #dee2e6;
    }

    .nav-tabs .nav-link {
        border: none;
        border-bottom: 2px solid transparent;
        color: #495057;
    }

    .nav-tabs .nav-link.active {
        border-color: #520C89;
        font-weight: 600;
        color: #520C89;
        background-color: transparent;
    }



/*responsive css*/
@media only screen and (max-width: 992px) {
  .visitor-registration {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .select-city-area label img {
    width: 80px;
    display: block;
    margin: 0 auto 12px auto;
}

.select-city-area .card .card-body {
    padding: 8px;
}

.custom-radio input[type="checkbox"]:checked + label::before {
    width: 20px;
    height: 20px;
    right: 1px;
    top: 9px;
}

.main-thank-you-txt p {
    font-size: 1rem;
    width: 100%;
}

.main-thank-you-txt h1 {
    font-size: 1.6rem;
}

.main-thank-you-txt {
    margin: 25px 0 0 0;
}

.res-mb-20 {
    margin-bottom: 20px;
}

}