@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");

@font-face {
    font-family: 'MyConferencesuite_Alliance';
    src: url("../../../../css/webfonts/MyConferencesuite_Alliance.eot?z1yefj");
    src: url("../../../../css/webfonts/MyConferencesuite_Alliance.eot?z1yefj#iefix") format("embedded-opentype"), url("../../../../css/webfonts/MyConferencesuite_Alliance.ttf?z1yefj") format("truetype"), url("../../../../css/webfonts/MyConferencesuite_Alliance.woff?z1yefj") format("woff"), url("../../../../css/webfonts/MyConferencesuite_Alliance.svg?z1yefj#MyConferencesuite_Alliance") format("svg");
    font-weight: normal;
    font-style: normal;
}

:root {
    --body-font: "Google Sans", sans-serif;

    --accent: #c41230;

    --required:rgba(192, 57, 43,1.0);
    /* red */
    --dark: #1e293b;
    --muted: #64748b;
    --bg: #f1f5f9;
    --white: #ffffff;
    --yellow: #ffd457;
    --dark-blue: #16216a;
    --light-blue: #4d85c5;

    --save-green: rgba(39, 174, 96, 1.0);

    --transition: all .7s cubic-bezier(.25, .8, .25, 1);
    --box-shadow: 0px 0px 0px rgba(00, 00, 00, 0.0);
    --box-shadow-hover: 0px 5px 18px rgba(00, 00, 00, 0.15);
    --transform: scale(1) translateY(0px);
    --transform-hover: scale(1.02) translateY(-2px);

    --transform-icon: scale(1) translateY(0px) rotate(0deg);
    --transform-icon-hover: scale(1.03) translateY(0px) rotate(-10deg);

    --font-awesome: "Font Awesome 7 Free";

    --ultra-light-black:rgba(00,00,00,0.05);

}
.col-sm-3 h2{
    background: var(--yellow);
    font-size: 1.3rem;
    padding: 1rem 1rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin: 1rem 0;
}
.row {
    margin: 0;
}

.alert.alert-success {
    display: none !important;
}
.de_required{
    color:var(--required);
}
html {
    font-size: unset;
}

#content {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background: var(--bg);
    color: var(--dark);
    font-size: 1.1rem;
}

.row .col-sm-3 {
    position: sticky;
    top: 170px;
}

.page-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
}

/* Conference Card */
.card.conference-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    padding: 25px 30px;
    margin-bottom: 40px;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.card-content ul{
    display: grid;
    gap: 1.3rem;
}

.card-content ul li strong{
    color:var(--light-blue);
}

@media(min-width:900px) {
    .card-content {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: 1 / -1;
    }
}

.section {
    background: var(--white);
    border-left: 6px solid var(--dark-blue);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.section:nth-child(odd) {
    border-left-color: var(--dark-blue);
}

.section:nth-child(even) {
    border-left-color: var(--light-blue);
}

.section:hover {
    transform: translateY(-4px) scale(1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.section h2 i,
h3 i{
    color:var(--light-blue);
}

.section p {
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media(min-width: 700px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tickets */
.ticket {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
}

.ticket.show {
    opacity: 1;
    transform: translateY(0);
}

.ticket:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.ticket-body {
    display: block;
    padding: 0 25px 25px 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.3s, opacity 0.3s;
}

.price-row:last-child {
    border-bottom: none;
}

.price {
    font-weight: 800;
    font-size: 18px;
}

.plan-name {
    font-weight: 500;
}

/* Modern Savings Badge */
.savings {
    position: absolute;
    top: -14px;
    right: -10px;
    background: var(--save-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

/* Ticket Headers with Colored Backgrounds */
.ticket-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.ticket:nth-child(1) .ticket-header {
    background: var(--accent);
    color: #fff;
}

.ticket:nth-child(2) .ticket-header {
    background: var(--dark-blue);
    color: #fff;
}

.ticket:nth-child(3) .ticket-header {
    background: var(--light-blue);
    color: #fff;
}

.ticket-header .ticket-icon {
    margin-right: 10px;
}

/* Pricing Toggle Links */
.pricing-toggle {
    text-align: center;
    margin-bottom: 20px;
}

.toggle-link {
    display: inline-block;
    text-decoration: none;
    color: var(--dark);
    border: none;
    padding: 10px 24px;
    margin: 0 6px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    transition: .3s;
}

.toggle-link.active {
    background: var(--accent);
    color: #fff;
}

.toggle-link.disabled {
    background: #ccc;
    color: #666;
    pointer-events: none;
}


.is-landing .row .col-sm-9 {
    width: 100%;
}

.is-landing .row .col-sm-3 {
    display: none;
}



.modalPopUp {
    display: none;
    width: 75%;
    border-radius: 25px;
    box-shadow: 0px 0px 25px rgba(00, 00, 00, 0.15);
    padding: 3rem !important;
}
.fancybox-bg{
    background: rgba(77, 133, 197, 0.23) !important;
    backdrop-filter: blur(10px);
    opacity: 1 !important;    
}
#CVVmodal{
    width:50% !important;
}
#content-middle .panel.panel-default {
    background: transparent;
    border: none;
    padding: 0px;
}

.logo-bar {
    position: sticky;
    top: 0;
    box-shadow: 0px 4px 18px rgba(00, 00, 00, 0.2);
    z-index: 99;
    background: rgb(43, 108, 163);
}

.logo-container {
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-bar .logo-container img {
    height: 120px;
    width: auto;
    padding: 1rem;
    background: #ffffff;
    border-radius: 25px;
    margin: 0.65rem 0;
    box-shadow: 0px 3px 10px rgba(00, 00, 00, 0.3);
}


#header {
    transform: translateY(-2px);
}

.proj-title-hosted {
    display: flex;
    width: 67%;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.proj-title-hosted.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.logo-bar .logo-container .co-hoted-by img {
    width: 425px;
    height: auto;
}

.proj-title h1 {
    display: grid;
    text-align: center;
    color: rgba(255, 212, 87, 0.9);
    font-size: 2.8rem;
    font-weight: 900;
}

.proj-title h1 span.mute {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

/*********************************
Buttons
*********************************/
.button-wrapper,
#button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0px 0px 18px rgba(00, 00, 00, 0.04);
}
#button{
    justify-content: center;
}

.button-wrapper a,
#button input[type="submit"],
.button-wrapper #paybtn{
    font-size: 1.4rem;
    padding: 1.3rem 2rem;
    border-radius: 14px;
    background: var(--accent);
    color: white;
    border: none;
    transition: var(--transition);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, .075);
    transform: var(--transform);
}

#button input[type="submit"],
#button input[type="submit"]:hover,
.button-wrapper #paybtn:hover{
    background:var(--save-green) !important;
}


.button-wrapper a:hover,
#button input[type="submit"]:hover,
.button-wrapper #paybtn:hover{
    background: var(--light-blue);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--box-shadow-hover);
    transform: var(--transform-hover);
}

.button-wrapper a i {
    transition: var(--transition);
    text-shadow: var(--box-shadow);
    transform: var(--transform-icon);
}

.button-wrapper a:hover i {
    transition: var(--transition);
    text-shadow: var(--box-shadow-hover);
    transform: var(--transform-icon-hover);
}

/**********************************
	Registration form
**********************************/
.tab-content,
.is-review .panel.panel-default{
    background: #ffffff !important;
    padding: 1rem;
    margin: 1.5rem auto;
    border-radius: 25px;
    box-shadow: 0px 3px 20px rgba(00, 00, 00, 0.05);
}

#fieldContainer {
    display: grid;
    gap: 1rem;
}

.field {
    margin: 0px !important;
    width: 100% !important;
}

.field .form-group div input[type="text"],
select,
textarea {
    width: 100%;
    padding: 16px 12px 12px 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1.1rem;
    background: transparent;
}
.de_field_small{
    width:100%;
}
.field .form-group>label {
    position: absolute;
    left: 12px;
    top:0;
    transform: translateY(-50%);
    font-size: 1.1rem !important;
    color: var(--light-blue);
    pointer-events: none;
    background: #fff;
    padding: 0 4px !important;
    font-weight: bold !important;
    width: auto !important;
    float: none !important;
    transition: var(--transition);
}

.field .form-group:focus-within>label,
.field .form-group input:not(:placeholder-shown)~label {
    top:-7px;
    left: 12px;
    font-size: 1.1rem;
    color: var(--dark-blue);
    background: transparent;
    padding: 0 4px;
    margin: 0;
    z-index: 7;
    transition: var(--transition);

}
div.field label > span.de_quantity,
div.field label > span.hide{
    display:none !important;
}

/***********************************
	Radio/Checkbox
************************************/
/* --- Horizontal fieldset layout --- */
fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
    align-items: flex-start;
    gap: 20px;
}

legend {
    flex: 0 0 200px;
    font-size: 1.25rem;
    color: var(--accent);
    pointer-events: none;
    transition: 0.2s ease;
    background: #fff;
    padding: 1rem 0 1rem 0;
}

/* Inputs container */
.de_fieldset,
.input-container,
.file-drop {
    flex: 1 1 calc(100% - 200px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Radio & Checkbox Cards */
.valueSpan {
    flex: 1 1 220px;
}

.valueSpan label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px !important;
    border-radius: 16px;
    background: #ffffff !important;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-blue) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position:relative;
    border: 2px solid transparent;
}

.valueSpan label:hover,
.valueSpan input:checked+label,
.valueSpan input:checked+label:after{
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.valueSpan input:checked+label{
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(39, 174, 96, 0.1);
    border-color: rgba(39, 174, 96, 1);
}

.valueSpan input[type="radio"],
.valueSpan input[type="checkbox"] {
    display: none;
}

.valueSpan input:checked+label {
    /*background: linear-gradient(135deg, rgba(77,133,197,1), rgba(77,133,197,0.6)) !important;
    color: #ffffff !important;
    */
    transform: scale(1.03);
}

.valueSpan .de_fee {
    font-weight: 600;
    margin: 0;
    background: var(--save-green);
    color: #ffffff;
    padding: 0.4rem .75rem;
    font-size: 0.9rem;
    border-radius: 9999px;
    transition: var(--transition);
    box-shadow:0 0 8px rgba(0,0,0,.05);
    transform: var(--transform);
}
.valueSpan label>span{
    transition: var(--transition);
    text-shadow:0 0 8px rgba(0,0,0,.05);
    transform: var(--transform);
}
.valueSpan label:hover .de_fee{
    transition: var(--transition);
    box-shadow:var(--box-shadow-hover);
    transform: var(--transform-hover);
}
.valueSpan label:hover>span{
    transition: var(--transition);
    text-shadow:var(--box-shadow-hover);
    transform: var(--transform-hover);
}

.valueSpan input:checked+label:after{
    display: inline-block;
    font-family: var(--font-awesome);
    content: "\f058";
    position: absolute;
    color: var(--save-green);
    right: -7px;
    top: -14px;
    font-size: 2rem;
    font-weight: 900;
    background: #ffffff;
    border-radius: 9999px;
    height: auto;
    width: auto;
    line-height: normal;
    text-shadow: 0px 2px 10px rgba(0,0,0,.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}



.valueSpan .quantity{
    display:none !important;
}
/* --- Text Fields Floating Labels --- */
.input-container {
    position: relative;
    width: 100%;
}

.field .form-group {
    position: relative;
}

/******************************
    Review Page
******************************/
.review .button-wrapper{
    justify-content: space-between;
}
.is-review #fieldContainer hr{
    display:none; 
}
.is-review #fieldContainer .field-summary{
    display: flex;
    width: 100% !important;
    padding: 1.5rem 1rem;
    margin: 0;
    background: #ffffff;
    transition: var(--transition);
    transform: var(--transform);
    box-shadow: 0px 3px 15px rgba(00, 00, 00, 00.02);
    border-radius: 12px;
}
.is-review #fieldContainer .field-summary:hover{
    transition: var(--transition);
    transform: var(--transform-hover);
    box-shadow: 0px 5px 15px rgba(00, 00, 00, 00.04);
}
.is-review #fieldContainer .field-summary .col-md-4{
    width:33% !important;
    font-weight:bold;
    color: var(--dark-blue);
     transition: var(--transition);
    transform: var(--transform);
    transform: translateY(0px);
}
.is-review #fieldContainer .field-summary .col-md-6{
    transition: var(--transition);
    color: var(--dark-blue);
    transform: translateY(0px);
}
.is-review #fieldContainer .field-summary:hover .col-md-6{
    transition: var(--transition);
    transform: translateY(-3px);
    color:var(--accent);
}
.is-review #fieldContainer .field-summary:hover .col-md-4{
    color:var(--accent);
     transition: var(--transition);
    transform: translateY(-3px);
}

/*****************************
    payment page
******************************/
#cvdInfo,
.cvdModalLink {
    display: flex;
    text-indent: -99999px;
}

#cvdInfo:before,
.cvdModalLink:before {
    display: inline-flex;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f129";
    text-indent: 0;
    width: 30px;
    height: 30px;
    background: rgb(22, 33, 106);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 1px 1px 8px rgba(var(--black), 0.2);
    color: rgba(255, 255, 255, 1);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(1);
}

#cvdInfo:hover:before,
.cvdModalLink:hover:before {
    transition: all 0.3s ease;
    transform: scale(1.1);
    text-shadow: 2px 2px 8px rgba(var(--black), 0.2);
    box-shadow: 1px 1px 12px rgba(var(--black), 0.2);
}

#infoTable tr:nth-child(3) td:nth-child(2),
#infoTable tr:nth-child(4) td:nth-child(2) {
    display: flex;
    gap: 1rem;
}

#infoTable tr:nth-child(4) td:nth-child(2) .row div.col-xs-5 {
    padding-left: 0;
}

#infoTable tr:nth-child(5) td:nth-child(1) {
    display: flex;
    gap: 1rem;
}

#infoTable tr:nth-child(5) td:nth-child(1) br {
    display: none;
}

#infoTable tr td {
    align-items: center;
    border-right: none;
    border-left: none;
    border-top: none;
    padding: 1rem;
}

table.breakdown {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    font-size: 1.1rem;
    border: 1px solid var(--ultra-light-black) !important;
}
table.breakdown .amount {
    border-left: 1px solid var(--ultra-light-black) !important;
}
#project_payment_methods>h4 {
    display: flex;
    background: rgba(39, 174, 96, 1.0);
    padding: 15px 20px;
    width: 40%;
    margin: 34px 0;
    color: #ffffff;
    border-radius: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0px 3px 8px rgba(var(--black), 0.1);
}

#project_payment_methods label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 20px;
    width: auto;
}

#project_payment_methods label input {
    margin: 0px;
    width: 20px;
    height: 20px;
}
#project_payment_methods table th,
#project_payment_methods table td{

}
#infoTable{
    width:75% !important;

}
#infoTable .form-control{
    height: unset;
    padding: 6px 12px;
    font-size: 1.1rem;
    line-height: normal;
}

table.breakdown thead th {
    background: var(--muted);
    color: #ffffff;
    font-weight:900;
    padding: 1.2rem;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

table.breakdown thead th.desc {
    text-align: left;
    border: none;
    border-color: transparent;
}


table.breakdown tbody tr {
    transition: background .25s ease, transform .15s ease;
}

table.breakdown tbody tr:not([style*="border-top"]) td {
    border-bottom: none;
}

table.breakdown tbody tr:hover {
    background: #f8fafc;
}


table.breakdown td {
    padding: 1rem !important;
    vertical-align: middle;
    color: #334155;
}

table.breakdown td.amount,
table.breakdown td.sum_total,
table.breakdown td.sum_subtotal,
table.breakdown td.sum_tax,
table.breakdown td.sum_taxable {
    text-align: right;
    font-weight: var(--extra-weight);
}


table.breakdown td.desc {
    font-weight: var(--base-weight);
    line-height: 1.4;
    border: none;
}


table.breakdown td:nth-child(2),
table.breakdown td:nth-child(3) {
    text-align: center;
    color: #64748b;
}


.info.taxExempt {
    margin-right: 6px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: var(--extra-weight);
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    vertical-align: middle;
    display: none;
}

.info.taxExempt::before {
    content: "Tax Exempt";
}

table.breakdown tr[style*="border-top"] td {
    border-top: 2px solid #e5e7eb !important;
    padding-top: 18px;
    border: transparent;
}

.sum_total {
    font-size: 18px;
    color: #0f172a;
}

tr:last-child td {
    background: #f8fafc;
}

#breakdown_body div.btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 96%;
    margin: 20px auto;
}

#noTax {
    font-size: 13px;
    color: #64748b;
    text-indent: -9999px;
}

#noTax .info {
    display: inline-block;
    margin-right: 6px;
    font-weight: bold;
    color: #10b981;
}

/***************************
	Coupon Form
****************************/
#couponForm {
    margin: 1rem 0rem 1.5rem 1rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    float: right;
    width: 100%;
    max-width: 50%;
    display: flex;
}

#couponForm .field {
    width: 100% !important;
}

#couponForm .form-group {
    position: relative;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    display: flex !important;
    width: 100% !important;
}

#couponForm .de_p_hide {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0 0 0.4rem;
    display:none !important;
}

#couponForm .form-group>div {
    position: relative;
}
#couponForm #fieldContainer {
    float: left;
    width: 85%;
    clear: none;
    display: inline-block;
}
#couponForm label{
    z-index: 9;
}
#couponForm input[type="submit"] {
    position: absolute;
    margin:0 !important;
    top: calc(0.0rem + 0.9rem);
    right: 1.25rem;
    height: 48px;
    padding: 0 1.1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, rgba(190, 210, 50, 1), rgba(190, 210, 50, 0.8));
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: var(--extra-weight);
    cursor: pointer;
    transition: all 0.25s ease;
}

#couponForm input[type="submit"]:hover {
    box-shadow: 0 6px 16px rgba(190, 210, 50, 0.35);
}

#couponForm input[type="submit"]:active {
    transform: scale(0.96);
}
#paymentForm{
	clear:both;	
}


#project_payment_methods>h4{
	margin:0;
	width:100%;
}
#project_payment_methods label{
	margin: 0 1rem;
	padding: 1rem;

	border-radius: 10px;
	width: auto;
	display: flex;
	transition: all .7s cubic-bezier(.25,.8,.25,1);
	box-shadow: 0px 1px 8px rgba(00, 00, 00, 0.05);
	transform:translateY(0px) scale(1);
	cursor:pointer;
}

#project_payment_methods label:hover,
#project_payment_methods label:focus{
	transition: all .7s cubic-bezier(.25,.8,.25,1);
	transform:translateY(-2px) scale(1.05);
	box-shadow:0 6px 30px rgba(0,0,0,.1);
	cursor:pointer;
}

#couponForm .form-group>div{
	    width: 100% !important;
    float: none !important;
}
#couponForm input[type="text"] {
    width: 100% !important;
    border-radius: 10px;
    float: none;
    margin: 0 !important;
    line-height: normal;
}
#couponForm input[type="text"]:focus{
	transform: scale(1) translateY(0px);
}

#project_payment_methods{
	width: 75%;
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}
#project_payment_methods br{
	display:none;		
}

#CVVmodal div{
	display:flex;
	align-items:center;
	justify-content:center;
}
#CVVmodal div img{
	width:50%;
    margin:0 0 1rem 0;
}

/* Hidden initial state */
#project_payment_methods label.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  font-weight: 500;
  position: relative;

  opacity: 0;
  transform: translateY(14px);
}

/* Entrance animation */
#project_payment_methods label.payment-method.pm-show {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

/* Hide radios */
#project_payment_methods label.payment-method input {
  display: none;
}

/* Icons */
#project_payment_methods .payment-icon {
  font-size: 22px;
  color: rgba(22, 33, 106,.7);
  transition: transform .25s ease, color .25s ease;
}

/* Sequential intro rotation */
#project_payment_methods .payment-icon.icon-intro {
  animation: iconSpin .45s cubic-bezier(.34,1.56,.64,1);
}

/* Hover */
#project_payment_methods label.payment-method:hover {
    transition: var(--transition);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(22, 33, 106,.15);
}

#project_payment_methods label.payment-method:hover .payment-icon {
  transform: rotate(6deg) scale(1.05);
  color: rgba(22, 33, 106,1);
}

/* Checked state */
#project_payment_methods label.payment-method:has(input:checked) {
  background: linear-gradient(
    135deg,
    rgba(77, 133, 197,1),
    rgba(22, 33, 106,.85)
  );
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(22, 33, 106,.45);
}

#project_payment_methods label.payment-method:has(input:checked) .payment-icon {
  color: #fff;
}

/* Checkmark */
#project_payment_methods label.payment-method:has(input:checked)::after {
  content: "✓";
  position: absolute;
  right: 18px;
  font-size: 18px;
  opacity: 1;
}

#bankInfo,
#manualInfo{
    padding: 2rem;
    background: #ffffff;
    border-radius: 25px;
    margin: 0 1rem;
    box-shadow: 0px 0px 10px rgba(00, 00, 00, 0.05);
}
#bankInfo h4,
#manualInfo h4{
    background: var(--yellow);
    font-size: 1.3rem;
    padding: 1rem 1rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin: 1rem 0;
}


#manual_payableTo{
    display:none;
}


#bankInfo h4:after,
#manualInfo h4:after{
    font-family: var(--font-awesome);
    font-weight: 900;
    display:inline-block;
    content:"";
}
#bankInfo h4:after{
content:"\f19c";
}
#manualInfo h4:after{
    content:"\f53c";
}
#manualInfo p{
    margin:1rem;
}
#footer{
    padding:3rem;
}

#footer .footer .MyCS_brand:after {
    font-family: 'MyConferencesuite_Alliance' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    color: #f7942d;
    font-size: 45px;
}

#footer .footer .MyCS_brand {
    display: inline-block;
    position: relative;
    top: 14px;
    margin-right: 9px;
}

/* Keyframes */
@keyframes iconSpin {
  0% {
    transform: rotate(-12deg) scale(.6);
    opacity: 0;
  }
  70% {
    transform: rotate(8deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}
.desc a{
    background: var(--accent);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: none;
    transform: translateY(0);
}
.desc a:hover{
    transition: var(--transition);
    transform: translateY(-2px);
    color: #ffffff;
    background: var(--accent);
    text-decoration: none;
}
.desc a .fa-trash-o:before{
    font-family: var(--font-awesome);
    font-weight: 900;
    content:"\f1f8";
    transition: var(--transition);
}
.desc a:hover .fa-trash-o:before{
    transition: var(--transition);
    box-shadow: none;
    transform: translateY(-2px);
}

.pageinfo{
        padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 1);
    margin: 1rem 0;
    border-radius: 25px;
    text-align: center;
    color: var(--dark-blue);
}
/* phone and tablet */
@media (min-width: 240px) and (max-width: 767px) {
    body{
        font-size: 1rem;
    }
    .logo-container {
        display: flex;
        max-width: 100%;
        padding: 1rem;
    }
    #content{
        max-width: 100%;
    }
    .proj-title-hosted{
        display: grid;
        width: 69%;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0px) !important;
    }
    .logo-bar .logo-container img{
        height: 82px;
        margin:0;
    }
    .proj-title h1{
        font-size: 1.8rem;
        margin: 0;
    }
    .proj-title h1 span.mute{
        font-size: 1rem;
    }
    .is-landing .row .col-sm-9{
        padding: 1rem 0;
    }
    .card.conference-card{
        padding: 1rem;
    }
    .logo-bar .logo-container .co-hoted-by img {
        width: 100%;
        height: auto;
        margin:0px;
    }
    .co-hoted-by{
        display:none !important;
    }
    .button-wrapper{
        display: grid;
        gap:1rem;
            align-items: center;
    justify-content: center;
    padding: 1rem;
    }
    .button-wrapper a{
        text-align: center;
    }
    .card.conference-card.no-marg{
        margin-bottom: .75rem;
    }
    .tab-content, .is-review .panel.panel-default{
        margin: 1rem;
    }
    .field .form-group:focus-within>label,
    .field .form-group input:not(:placeholder-shown)~label{
        left: 0;
    }
    .valueSpan input:checked+label {
        transform: scale(1);
    }
    .col-sm-9,
    .panel-body{
        padding: 0;
    }
    .is-review #fieldContainer .field-summary .col-md-4,
    .is-review #fieldContainer .field-summary .col-md-6{
        width: 100% !important;
        padding: 0;
    }
    .is-review #fieldContainer .field-summary .col-md-4 {
        display: flex;
        padding: 0;
    }
    .is-review #fieldContainer .field-summary {
        display: grid;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    .pricing-grid{
        padding:1rem;
    }
    .row .col-sm-3 {
        position: relative;
        top: 0px;
    }
    .review .btn-wrapper{
        align-items: center;
        justify-content: center !important;
        gap: 1rem;
    }

    table.breakdown{
        border:none !important;
        box-shadow: none !important;
        background: transparent !important;
        overflow: visible !important;
    }

    .breakdown,
	table.breakdown tr,
	table.breakdown .desc,
	table.breakdown .amount,
	table.breakdown td.totalQuantity{
		border:none !important;
	}
	#paymentForm{
		padding:0px;	
	}

	.breakdown thead {
		display: none !important;
	}
	table.breakdown .desc{
		display: grid;
		align-items: center;
		justify-content: flex-start;
		    width: 100%;
    padding: 0.5rem 1rem 0 0 !important;
    text-align: left;


	}
	table.breakdown .desc:before{
		position:relative;	
	}
	.breakdown, 
	.breakdown tbody, 
	.breakdown tr, 
	.breakdown td {
		display: block;
		width: 100%;
	}

	.breakdown tr {
		margin-bottom: 18px;
		padding: 16px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.22);
		backdrop-filter: blur(14px) saturate(160%);
		-webkit-backdrop-filter: blur(14px) saturate(160%);
		border: 1px solid rgba(255, 255, 255, 0.45);
		box-shadow: 0 6px 20px rgba(0,0,0,0.12);
		opacity: 0;
		transform: translateY(10px);
		animation: fadeSlideIn 0.35s ease forwards;
	}

	/* ANIMATION KEYFRAMES */
	@keyframes fadeSlideIn {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* MOBILE ZEBRA EFFECT (card style) */
	.breakdown tr:nth-child(odd) {
		background: rgba(255, 255, 255, 0.32);
	}

	.breakdown tr:nth-child(even) {
		background: rgba(255, 255, 255, 0.18);
	}

	.breakdown td {
		text-align: right;
		padding: 10px 0;
		position: relative;
		font-size: 15px;
		line-height: 1.3;
	}

	/* Column labels (based on column order) */
	.breakdown td:nth-child(1)::before { content: "Description"; }
	.breakdown td:nth-child(2)::before { content: "Quantity"; }
	.breakdown td:nth-child(3)::before { content: ""; }
	.breakdown td:nth-child(4)::before { content: "Unit Price"; }
	.breakdown td:nth-child(5)::before { content: "Tax"; }
	.breakdown td:nth-child(6)::before { content: "Amount"; }

	.breakdown td::before {
		position: absolute;
		left: 0;
		font-weight: 600;
		color: #2a2a2a;
		text-align: left;
		font-size: 14px;
	}

	/* If a cell is empty — remove label */
	.breakdown td:empty::before {
		content: "";
	}

	#CVVmodal{
		width:95% !important;
	}

	.breakdown td:nth-child(5)::before { display:none; }
	td.item_tax_col.hide{
		display: block !important;
		float: left;
		width: 50%;
	}
	td.item_tax_col.hide:nth-child(2):before{
		content: "Tax";
		display:inline-block;
	}
	.breakdown-page .table.table-striped.breakdown{
		background:transparent;
		box-shadow: none;
	}
	#paymentForm label{
		display: grid;
		grid-template-columns: 26px 93%;
	}
	#paymentForm label span.pay-info{
		display: inline-grid;
		margin: 0 !important;
		width: auto;
		position: relative;
	}
	#paymentForm label span.pay-info span{
		margin: 10px 0px !important;
		position: relative;
		left: -22px;
	}

	/* --- Base Table Style --- */
	#bankInfo #infoTable,
    #billinfoTable {
		width: 100%;
		border-collapse: collapse;
		font-family: inherit;
	}

	#bankInfo #infoTable th,
	#bankInfo #infoTable td,
    #billinfoTable th,
    #billinfoTable td{
		padding: 6px 16px !important;
		vertical-align: middle;
	}

	/* Label side */
	#bankInfo #infoTable th,
    #billinfoTable th {
		width: 36%;
		text-align: left;
		font-weight: 600;
		color: #333;
		font-size: 15px;
	}
    /* Row separators for desktop */
	#bankInfo #infoTable tr:not(:last-child) th,
	#bankInfo #infoTable tr:not(:last-child) td,
    #billinfoTable tr:not(:last-child) td,
    #billinfoTable tr:not(:last-child) th{
		border-bottom: 1px solid #eee;
	}
	#bankInfo #infoTable,
	#bankInfo #infoTable tbody,
	#bankInfo #infoTable tr,
	#bankInfo #infoTable th,
	#bankInfo #infoTable td, 
    #billinfoTable,
    #billinfoTable tbody,
    #billinfoTable tr,
    #billinfoTable td,
    #billinfoTableth th{
		display: block;
		width: 100%;
		border: none;
	}

	#bankInfo #infoTable tr,
    #billinfoTable tr {
		padding: 12px 0;
		margin-bottom: 10px;
		border-bottom: 1px solid #f0f0f0;
	}

	#bankInfo #infoTable th,
    #billinfoTable th {
		margin-bottom: 6px;
		font-size: 14px;
		color: #444;
	}

	#bankInfo #infoTable td,
    #billinfoTable td{
		padding: 0 0 10px 0;
	}

	#bankInfo #infoTable td input,
    #billinfoTable input {
		width: 100%;
		box-sizing: border-box;
		padding-left: 40px; /* keep icon spacing */
	}

    #paymentForm #bankInfo table,
    #billinfoTable{
        margin:0px !important;
        width:100% !important;
    }
    #breakdown_body{
        padding: 0.5rem;
    }
    #noTax{
        text-indent: -999px;
    }
    #project_payment_methods{
        width: 100% !important;
    }
    #couponForm{
        max-width:100% !important;
        width:100% !important;
    }
    #couponForm input[type="submit"]{
        top: calc(0.0rem + 1.1rem);
    right: 0.3rem;
    }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {

}
/* Small desktop */
@media (min-width: 1024px) and (max-width: 1279px) {

}
/* Large desktop */
@media (min-width: 1280px) and (max-width: 1536px) {

}