@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");

:root {
    --body-font: "Open Sans", sans-serif;
    --base-size: 1.1rem;
    --text-color: #333333;

    --brand-dark-blue: #2944d1;
    --brand-med-blue: #4395d1;
    --brand-light-blue: #71bce6;
    --brand-bluepurp: #557be6;

    --transition: all .7s cubic-bezier(.25, .8, .25, 1);

    --font-awesome: "Font Awesome 7 Free";

    --transform-base: scale(1) rotate(0deg) translateY(0);
    --transform-base-hover: scale(1.01) rotate(0deg) translateY(-3px);
    --transform-icon-hover: scale(1.011) rotate(-3deg) translateY(-3px);

}

html,
body {
    font-family: var(--body-font);
    color: var(--text-color);
    font-size: var(--base-size);
}

body {
    background: rgba(113, 188, 230, 0.1);
}

html[lang="en"] .logo img.english {
    display: block;
}

html[lang="en"] .logo img.french {
    display: none;
}

html[lang="fr"] .logo img.english {
    display: none;
}

html[lang="fr"] .logo img.french {
    display: block;
}

label,
input,
select,
textarea {
    height: auto !important;
    font-size: var(--base-size) !important;
}

#wrapper {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
}

p {
    margin: 15px;
}

/*****************************************************************
HEADER
*****************************************************************/
#header {
    height: 100%;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    display: block;
}

#header .logo {
    float: none;
    width: 100%;
}

#header .logo img {
    width: 100%;
}

#header .header-txt {
    display: none;
}

#header .header-txt h1 {
    margin: 8px 8px 0px 8px;
    color: #003a5f;
}

#header .header-txt h2 {
    margin: 4px 8px 0px 8px;
    color: #00a3b2;
    font-size: 25px;
}

/* styles */
#header h1,
#header h2 {
    display: none;
}


#userMenuToggle{
padding: 0.5rem 0.75rem;
    position: fixed;
    text-align: right;
    top: 0px;
    right: 0;
    margin: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0px 0px 0px 25px;
    box-shadow: 0px 4px 12px rgba(00, 00, 00, 0.07);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 20px;
}

#userMenuToggle i{
    background: #2944d1;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 8px rgba(41, 68, 209, 0.5);
    font-size: 1.3rem;
    border-radius: 999px;
    text-shadow: 2px 4px 8px rgba(00, 00, 00, 0.3);
}

#user{
    position: fixed;
    top: 62px;
    right: -220px;
    width: 220px;
    height: auto;
    background: rgba(41, 68, 209, 0.6);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 20px 0px;
    border-radius: 19px 0px 0px 19px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 16px;
    display: grid;
    align-items: center;
    justify-content: center;
}
#user li {
    float: none;
    padding: 0 5px;
    text-align: left;
    border-right: none;
}
#user li a {
    will-change: transform;
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #ffffff;
    text-shadow: none;
    transition: var(--transition);
    transform: scale(1) translateY(0px);
}

#user li a:hover{
	text-decoration: none;
    transition: var(--transition);
    transform: scale(1.01) translateY(-3px);
    text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.02);
}
/*
#user {
    padding: 0.75rem 1.5rem;
    position: fixed;
    text-align: right;
    top: 0px;
    right: 0;
    margin: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0px 0px 0px 25px;
    box-shadow: 0px 4px 12px rgba(00, 00, 00, 0.07);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

#user li {
    float: none;
}

#user a {
    color: #333333;
    border: none;
    margin: 0;
}
*/

#elementHeaderBottom p {
    margin: 0;
}


/*****************************************************************
NAVIGATION
*****************************************************************/
/* layout */
#navigation {
    max-width: 350px;
    width: 100%;
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 1rem;
    border-radius: 25px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
}

#navigation ul {
    margin: 0px;
    display: grid;
    gap: 0.5rem;
}

#navigation ul li {
    margin: 0;
}

#navigation ul.main-nav li div.panel-heading a {
    background: var(--brand-med-blue);
    border-radius: 12px;
    margin: 0;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    transform: var(--transform-base);
    will-change: box-shadow, transform;
}

#navigation ul.main-nav li div.panel-heading a:hover {
    background: var(--brand-light-blue);
    transition: var(--transition);
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.075);
    transform: var(--transform-base-hover);
    text-decoration: none;
}


#navigation ul.main-nav li div.sideSubNav ul li a {
    background: var(--brand-med-blue);
    border-radius: 12px;
    margin: 0;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.175);
    transform: var(--transform-base);
    will-change: box-shadow, transform;
    border: none;
}

#navigation ul.main-nav li div.sideSubNav ul li a:hover {
    transition: var(--transition);
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.075);
    transform: var(--transform-base-hover);
}


#navigation ul.main-nav li div.sideSubNav {
    background: transparent;
    background: rgba(113, 188, 230, 0.15);
    border-radius: 25px;
    padding: 1rem;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
    margin: 0.5rem auto;
}

#navigation ul.main-nav li div.sideSubNav ul li {
    border: none;
    margin: 0;
}

/*****************************************************************
CONTENT
*****************************************************************/
#main {
    width: 100%;
    float: none;
    margin: 0px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
}

#pa {
    max-width: 90%;
    width: 100%;
    margin: 1rem auto;
}

#pa>.inner-element {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;

}

#systemForm {
    width: 95%;
    margin: 0 auto;
}

/*
h3.field-header{
    margin: 0px 15px 0px 0px;
    width: 28%;
    float: left;
	line-height: 37px;
}
*/
.field-values {
    width: 100%;
    float: none;
    margin: 0;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px !important;
    margin-top: 4px;
}

label {
    display: inline-block !important;
    width: 96%;
}

.field-values p {
    position: relative;
}

.field-values p input[type="radio"],
.field-values p input[type="checkbox"] {
    float: left;
}

div.image-input input {
    display: inline;
}

/*****************************************************************
FOOTER
*****************************************************************/
/* layout */
#footer {}

/* menu */
#footLinks {}

/*****************************************************************
PAGE SPECIFIC
*****************************************************************/
/* SUPPORT FORM */

/*****************************************************************
Custom
- set the custom field display options
*****************************************************************/
div[data-group=File] label {
    width: 100% !important;
    padding: 0px;
    position: relative;
    margin: 15px 0px;
    display: block;
}

div[data-group=File] label:before {
    content: "Upload";
    position: absolute;
    top: 0px;
    right: 0;
    display: inline-block;
    height: 47px;
    background: #4daf7c;
    color: #fff;
    font-weight: normal;
    z-index: 9;
    font-size: 1rem;
    line-height: 40px;
    padding: 4px 10px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}

div[data-group=File] label:after {
    content: attr(data-text);
    font-size: 18px;
    position: absolute;
    top: 0px;
    left: 0;
    background: #fff;
    padding: 10px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 8;
    height: 47px;
    line-height: 27px;
    color: #999;
    border-radius: 5px 10px 10px 5px;
    font-weight: 300;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

div[data-group=File] input {
    position: relative;
    top: -26px;
    right: 0;
    bottom: 0;
    left: 0px;
    z-index: 99;
    height: 47px !important;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
    opacity: 0;
}

div[data-group=File] .field-values {
    position: relative;
}

div[data-group=File] h3.field-header {
    width: 28%;
    margin: 0px;
    top: 10px;
    position: relative;
    line-height: 51px;
}

div[data-group=File] {
    margin-bottom: 0px;
    margin-top: 0px;
}

div[data-group=File] .field-values p {
    margin: 0px 0px 15px 15px !important;
}

div.field {
    height: 100%;
    overflow: visible;
    /*display:block;*/
    margin: 10px auto;
    padding: 0px;
}

/* general styles */
p.invalid-notification-block {
    color: white !important;
    font-weight: normal !important;
    font-style: italic !important;
    margin: 5px 14px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    width: 68% !important;
    padding: 9px;
    float: right;
    background: rgba(192, 57, 43, 0.7) !important;
    border-radius: 10px !important;
}

.field-invalid {
    border: none !important;
    border-radius: 0px !important;
    padding: 0px;

}

@font-face {
    font-family: 'MyConferencesuite_Alliance';
    src: url("/asset/fonts/font-icon/fonts/MyConferencesuite_Alliance.eot?z1yefj");
    src: url("/asset/fonts/font-icon/fonts/MyConferencesuite_Alliance.eot?z1yefj#iefix") format("embedded-opentype"), url("/asset/fonts/font-icon/fonts/MyConferencesuite_Alliance.ttf?z1yefj") format("truetype"), url("/asset/fonts/font-icon/fonts/MyConferencesuite_Alliance.woff?z1yefj") format("woff"), url("/asset/fonts/font-icon/fonts/MyConferencesuite_Alliance.svg?z1yefj#MyConferencesuite_Alliance") format("svg");
    font-weight: normal;
    font-style: normal;
}

#ers {
    background-size: contain;
    position: absolute;
    display: block;
    top: 12px;
    left: 11px;
    height: 140px;
    width: 65px;
    text-indent: -9999em;
    overflow: hidden;
    background: none;
}


#footer #inner-footer #tagline:before {
    font-family: 'MyConferencesuite_Alliance' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    color: #f7942d;
    font-size: 60px;
    position: absolute;
    left: -80px;
}

#footLinks {
    float: left;
    margin-bottom: 0px;
}

#inner-footer {
    position: relative;
    height: 100%;
    width: 100%;
    padding-top: 55px;

}

#footer {
    border-top: none;
    background: transparent !important;
    box-shadow: none !important;
    padding: 15px 0px;
}

#inner-footer:before {
    border-top: 1px solid rgba(00, 00, 00, 0.1);
    display: block;
    content: "";
    width: 100%;
    height: 1px;
}

#tagline {
    color: #2b4c5a;
    font-size: 1.5rem;
    margin-top: 0;
    margin-left: 84px;
    position: relative;
    line-height: 29px;
    padding-top: 30px;
}

/* menu */
#footLinks {}

.field-wrapper .btn-group {
    width: 100%;
    text-align: right;
    padding: 15px;
}

.field-wrapper .btn-group button[type="submit"] {
    padding: 14px 22px;
    font-size: 1.1rem;
    background: rgba(109, 179, 74, 1);
    border-color: rgba(109, 179, 74, 1.0);
    color: #ffffff;
    float: none;
}

.field-wrapper .btn-group button[type="submit"]:hover,
.field-wrapper .btn-group button[type="submit"]:focus {
    background: rgba(109, 179, 74, 0.9);
    border-color: rgba(109, 179, 74, 1.0);
    color: #ffffff;
}

table.table-summary th,
table.table-summary td,
table.table-summary td a {
    font-size: 1rem !important;
}

table.table-summary th {
    width: 25%;
}

table.table-summary th br {
    display: inline;
}

.options .dropdown a {
    padding: 7px 8px 9px 8px;
    margin: 0px 4px;
    display: inline-block;
    font-size: 1.2rem;
    background: rgba(00, 58, 92, 0.7);
    border-color: rgba(00, 58, 92, 0.9);
    color: #ffffff;
}

.options .dropdown a span {
    margin: auto;
    width: 30px;
    color: #ffffff;
}

.options .dropdown a:hover,
.options .dropdown a:focus,
.options .dropdown.open a,
.options .dropdown.open a:hover,
.options .dropdown.open a:focus {
    background: rgba(00, 58, 92, 1);
    border-color: rgba(00, 58, 92, 1);
    color: #ffffff;
}

.options .dropdown.open ul li a {
    display: block;
    background: #ffffff;
    color: #222222;
    font-size: 1rem;
    height: auto;
    padding: 10px;
    margin: 0px;
    text-align: left;
    border-radius: 0px;
}

.options .dropdown.open ul li a:hover,
.options .dropdown.open ul li a:focus {
    background: rgba(66, 149, 209, 0.1);
    color: rgba(41, 68, 209, 1);
}

p.currentFile {
    width: 99%;
    float: none;
    position: relative;
    top: -12px;
    left: 1px;
    padding: 10px;
    height: 100%;
    line-height: 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(00, 00, 00, 0.1);
    border-radius: 11px;
    font-size: 1rem;
}

p.currentFile.no-file {
    display: none;
}

.authorDetail .currentFile {
    display: none;
}

.confirm-remove.btn.btn-danger {
    padding: 1px 8px;
    font-size: 0.9rem;
    border-radius: 50%;
    vertical-align: middle;
    background: #d9534f;
    color: #ffffff;
    border-color: #ffffff;
    position: absolute;
    box-shadow: 1px 1px 2px rgba(00, 00, 00, 0.3);
    right: -19px;
    top: 17px;
    text-shadow: 1px 1px 2px rgba(00, 00, 00, 0.5);
}

div[data-group="File"] .field-values h4 {
    margin-left: 15px;
    position: relative;
    top: -6px;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(01, 172, 189, 0.8);
    font-weight: bold;
}

div.ui-sortable div.sortable {}

#author-3734 .field-values span.required {
    display: none;
}

div.ui-sortable div.sortable,
div.ui-sortable div.sortable.newAuthor,
.newAuthor {
    position: relative;
}


div.newAuthor .author-option {
    position: absolute;
    float: none;
    top: 0px;
    right: 0px;
}

div.newAuthor .author-option .dropdown a {
    padding: 7px 0px !important;
    margin: 0px !important;
    line-height: normal !important;
    font-size: 0.9rem !important;
    border-radius: 50% !important;
    top: -17px !important;
    right: -16px !important;
    position: absolute !important;
}

.dropdown-menu.pull-right.actionItems li {
    margin: 0px !important;
}

div.ui-sortable div.sortable ul.dropdown-menu a.btn-sm {
    color: #000000 !important;
    text-align: left;
    padding: 11px 12px !important;
    margin: 0 5px !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0;
    right: inherit !important;
    border-radius: 0px !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}



#authorDetails a.btn {display:flex !important; gap: 0.5rem;}

#authorDetails a.btn:hover,
#authorDetails a.btn:focus {
    background: #223872;
    border-color: #223872;
}

h3.field-header {
    position: relative;
    overflow: visible;
}

h3.field-header:before {
    position: absolute;
    left: -3px;
    top: 0;
    height: 100%;
    width: 2px;
    
    content: "";
}

.dashnote ul {
    margin-left: 60px !important;
    margin-bottom: 35px;
}

#content-login label {
    width: auto;
}

p.lostPassword,
p.createAccount,
p.register {
    margin: 15px 15px 15px 0px;
}

p.register,
#content-login #submitHldr {
    text-align: right;
}

p.lostPassword a,
p.createAccount a {
    background: transparent;
    padding: 0px;
    margin: 0px;
    color: #223872;
    border: none;
    font-size: 1rem;
}

p.lostPassword a:hover,
p.lostPassword a:focus,
p.createAccount a:hover,
p.createAccount a:focus {
    background: transparent;
    border: none;
    color: #223872;
    text-decoration: underline;
}

#submitHldr input,
#registerbtn {
    width: auto;
    background: rgba(113, 182, 75, 0.9);
    border-color: rgba(113, 182, 75, 1);
    color: #ffffff;
    height: auto;
}

#submitHldr input:hover,
#submitHldr input:focus,
#registerbtn:hover,
#registerbtn:focus {
    background: rgba(113, 182, 75, 1);
    border-color: rgba(113, 182, 75, 1);
    color: #ffffff;
}

.required {
    color: rgba(192, 57, 43, 1.0);
}

.has-error .form-control {
    border-color: inherit;
}

#content-login h2,
#content-register h2 {
    text-align: center;
    color: rgba(52, 69, 123, 1);
}

form.authorDetail #author-3733 .field-values p label {
    display: none !important;
}

.table-responsive.tablesorter thead tr th:nth-of-type(2) div,
.table-responsive.tablesorter tbody tr td:nth-of-type(2) {
    width: 120px;
    text-align: center;
}

.table-responsive.tablesorter thead tr th:nth-of-type(3) div,
.table-responsive.tablesorter tbody tr td:nth-of-type(3) {
    text-align: center;
    width: 100px;
}

.table-responsive.tablesorter tbody tr td:nth-of-type(3) ul li ul li,
.table-responsive.tablesorter tbody tr td:nth-of-type(3) ul li ul li a {
    text-align: left;
}

.toggle-button.round {
    height: 34px;
}

div.dashnote h4 {
    color: #111111;
    border-bottom: 1px solid #111111;
    padding-bottom: 10px;
    margin: 15px 15px 25px 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.cke_contents textarea {
    height: 100% !important;
}

#main h2 {
    font-weight: bold;
    color: #344478;
    font-size: 2rem;
}

#main h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px;
    display: block;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

h3.field-header {
    padding: 15px 13px;
    border-radius: 0px 15px 15px 0;
    width: auto !important;
    background: rgba(113, 188, 230, 0.3);
    text-shadow: none;
    margin: 25px 15px 0px 0px !important;
    border: none;
    box-shadow: none;
    color: #2d638a;
    font-weight: 300 !important;
}

h3.field-header:first-of-type {
    margin-top: 0px !important;
}

@media (max-width: 599px) {
    #wrapper {
        max-width: 95%;
    }
}



@media (min-width: 599px) and (max-width: 1300px) {

    #navigation,
    #main {
        width: 100%;
        float: none;
    }
}

.m-seminar-list__list__row {
    gap: 0.5rem;
}

.m-seminar-list__list__row__header {
    background: #71b64c !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.m-seminar-list__list__items__item {
    background: #ffffff !important;
    box-shadow: 0px 0px 4px rgba(00, 00, 00, 0.1);
    transform: scale(1);
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    z-index: 5;
}

.m-seminar-list__list__items__item:hover,
.m-seminar-list__list__items__item:focus {
    transform: scale(1.05);
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px rgba(00, 00, 00, 0.2);
    z-index: 10;
}

.m-seminar-list__list__items__item__title h3 {
    font-size: 1rem !important;
    color: #333333;
    margin: 15px 0px !important;
}

.m-seminar-list__list__items__item__title h3 p {
    font-size: 1rem !important;
    color: #333333;
    margin: 15px 0px !important;
    line-height: 1.4rem !important;
}

.location-time {
    margin: 15px 0px;
    font-size: 0.9rem;
    font-weight: bold;
}

#searchbox {}

.search-area {
    display: grid;
    /*display:none;*/
    grid-template-columns: 75% 22%;
    gap: 0.5rem;
    width: 54%;
    margin: 35px 15px 35px 15px;
}

.itinerary-option-213,
.itinerary-option-213:hover,
.itinerary-option-213:active {
    background: #ffffff;
}

select[name="itineraryId"] {
    margin: 0px 15px;
}

#clear {
    background: rgba(192, 57, 43, 0.8);
    border: 3px solid rgba(192, 57, 43, 1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    color: #ffffff;
    transform: scale(1);
    transition: all 0.3s ease;
    z-index: 5;
}

#clear:hover,
#clear:focus {
    transform: scale(1.05);
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px rgba(00, 00, 00, 0.2);
    z-index: 10;
}

#schedule-list ul {
    margin-left: 0px;
    list-style-type: none;
    padding-top: 25px;
    overflow: hidden;
    padding-left: 22px;
}

.nav-tabs>li {
    transform: scale(1.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 9;
    margin-bottom: 0px !important;
}

.nav-tabs>li:hover,
.nav-tabs>li:focus {
    z-index: 999;

}

.nav-tabs>li.active {
    z-index: 99;
    transform: scale(1.1);
    transition: all 0.3s ease;
    margin-left: 5px;
    margin-right: 22px;

}

.nav-tabs>li:hover,
.nav-tabs>li:focus {}

/*
#schedule-list .nav-tabs > li:first-child {
    margin-left: 5px;
    margin-right: 25px;
}
    */
.nav-tabs>li>a {
    color: #333333;
    margin-right: 3px;
    line-height: 1.428571429;
    border: 2px solid #efefef;
    border-radius: 25px 25px 0px 0px;
    padding: 18px 15px 18px 15px;
    transition: all 0.3s ease;
    background: #ffffff;
    font-size: 0.7rem;
    margin-left: -8px;
    border-bottom: none !important;
    z-index: 9;
}

.nav-tabs>li.active>a {
    font-size: 1rem;
    font-weight: bold;
    transform: scale(1.1);
    margin-left: 2px;
}

.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
    transform: scale(1.1);
    transition: all 0.3s ease;
    background: #efefef;
    color: #333333;
    box-shadow: 0px -1px 7px rgba(00, 00, 00, 0.2);

}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    transition: all 0.3s ease;

    background: #3f84bf;
    color: #ffffff;

    box-shadow: 0px -1px 7px rgba(00, 00, 00, 0.2);
    font-size: 0.8rem;

}

#main .day-listing h2 {
    font-size: 1.1rem !important;
    background: #34457b !important;
    padding: 15px 25px !important;
    border-radius: 25px !important;
    color: #ffffff !important;
    font-weight: normal !important;
    margin: 18px 15px 25px 5px !important;
}

.modal-body h3 p {
    color: #125B9E;
    margin: 15px 0px;
    font-size: 1.2rem;
    font-weight: bold;
}

.modal-body h3 {
    font-size: 0.9rem !important;
    text-transform: none;
    FONT-WEIGHT: 600;
    LINE-HEIGHT: 1.4rem;
    margin-top: 0;
}

#main.full-width {
    width: 100% !important;
    padding: 0 15px;
    margin: 0px;
}

#main.full-width ul.search-group {
    margin: 0px;
    padding: 0px;
}

#main.full-width ul.search-group .row {
    margin: 10px 0px;
    padding: 0px;
    border-radius: unset;
    min-height: auto;
    border: none;
    background: transparent;
    box-shadow: none;
}

#main.full-width ul.search-group li.row a {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    color: #222222;
    padding: 15px 25px;
    border-radius: 55px;
    background: #FAFAFA;
    border: 1px solid rgba(00, 00, 00, 0.2);
    position: relative;
    z-index: 99;
    transition: all 0.3s ease;
    transform: scale(1);
}

#main.full-width ul.search-group li.row a:hover,
#main.full-width ul.search-group li.row a:focus {
    transition: all 0.3s ease;
    transform: scale(1.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

#main.full-width ul.search-group li.row a:before {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f15c";
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #70b646;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(00, 00, 00, 0.1);
    transition: all 0.3s ease;
    transform: scale(1);
}

#main.full-width ul.search-group li.row a:hover:before {
    text-shadow: 2px 2px 4px rgba(00, 00, 00, 0.2);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(1.1);
}

#main.full-width ul.search-group li.row a h3 {
    font-size: 1rem;
    margin: 0px;
}


#main.full-width ul.search-group .row div.well {
    padding: 0px !important;
    height: auto;
    width: 93%;
    margin: 0px auto;
    top: -10px;
    position: relative;
    background: #fefefe;
    border-radius: 0px 0px 25px 25px;
    box-shadow: 0px 0px 6px rgba(00, 00, 00, 0.1);
    border: none;

}

/*
#main.full-width ul.search-group .row div.well .col-md-9{
    width:100%;
}
    */

#main.full-width ul.search-group .row div.well .col-md-3 {
    padding-top: 32px;
}

#main.full-width ul.search-group .row div.well .col-md-9 {
    padding-top: 20px;
}

#main.full-width ul.search-group .row div.well .col-md-3:before {
    content: "Supporting Documents";
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, rgba(53, 74, 129, 1) 0%, rgba(61, 113, 171, 1) 100%);
    color: #ffffff;
    padding: 10px;
    border-radius: 25px;
}

#main.full-width ul.search-group .row div.well .col-md-3 ul {
    margin: 0 auto;
    width: 94%;
}

#main.full-width ul.search-group .row div.well .col-md-3 ul li {
    border: none;
}

#main.full-width ul.search-group .row div.well .col-md-3 ul li:before {
    display: none;
}

#main.full-width ul.search-group .row div.well .col-md-3 ul li a {
    display: grid;
    grid-template-columns: 14% 80%;
    gap: 0.5rem;
    padding: 10px 15px;
}

#main.full-width ul.search-group .row div.well .col-md-3 ul li a:before {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

a.expand_btn {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

a.expand_btn.collapsed {
    box-shadow: none;
}

#schedule-list {
    position: sticky !important;
    top: 25px;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(00, 00, 00, 0.3);
    background: #ffffff;
    z-index: 999;
    margin: 25px auto;
}

#searchbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

div[data-validation="required"] h3.field-header {
    position: relative;
}

div[data-validation="required"] h3.field-header:before {
    position: absolute;
    left: 0;
    width: 3px;
    background: rgba(192, 57, 43, 1.0);
}

.parent-list h2 {
    background: linear-gradient(to right, rgba(112, 181, 72, 1) 0%, rgba(138, 181, 138, 1) 100%);
    color: #ffffff !important;
    font-size: 1.7rem !important;
    font-weight: normal !important;
    padding: 15px 25px !important;
    margin: 15px 0 !important;
    border-radius: 21px !important;
    transform: scale(1.05) !important;
}


.has-options .field-values {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 1rem;
}

.has-options .field-values p {
    max-width: 30%;
    margin: 0;
    width: 100%;
}

div[data-id="13774"].has-options .field-values p,
div[data-id="13775"].has-options .field-values p,
div[data-id="13776"].has-options .field-values p,
div[data-id="13777"].has-options .field-values p {
    width: 100% !important;
    max-width: 100% !important;
}

div[data-id="13774"].has-options .field-values p label,
div[data-id="13775"].has-options .field-values p label,
div[data-id="13776"].has-options .field-values p label,
div[data-id="13777"].has-options .field-values p label {
    text-align: left;
    justify-self: flex-start;
}

.has-options .field-values p label {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0;
    padding: 0.75rem 1rem;
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid transparent;
    font-weight: normal;
    font-size: 1rem !important;
    text-align: center;
    position: relative;
    transition: var(--transition);
    transform: scale(1) translateY(0px);
}
.has-options .field-values p label:hover{
    transition: var(--transition);
    box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.085);
    transform: scale(1.01) translateY(-2px);
    border-color:rgba(113,188,230,0.3);
}
.has-options .field-values label:after {
    font-family: var(--font-awesome);
    display: inline-block;
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.4rem;
    color: #ffffff;
    background: #2ecc71;
    border-radius: 9999px;
    box-shadow: -1px 2px 4px rgba(00, 00, 00, 0.1);
}

.has-options .field-values input:checked~label {
    border: 2px solid #2ecc71;
    background: #f3fdf6;
    transition: var(--transition);
    box-shadow: 0px 3px 14px rgba(46, 204, 113, 0.085);
    transform: scale(1.01) translateY(-2px);
}

.has-options .field-values input:checked~label:after {
    content: "\f058";
}

.has-options .field-values input {
    position: absolute;
    opacity: 0;
    display: none;
}

.has-options .field-values p .blank_space {
    display: none;
}


.field-information-display {
    position: relative;
    z-index: 99;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    color: var(--brand-med-blue);
    font-weight: normal;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0px 3px 18px rgba(00, 00, 00, 0.1);
    margin: 0;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.field-information-display p {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0px !important;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
}

.field-information-display p:before {
    font-family: var(--font-awesome);
    font-weight: 900;
    content: "\f05a";
    font-size: 1.1rem;
    font-style: normal;
}

div[data-id="13757"].has-options .field-values p label {
    display: grid !important;
}

div[data-id="13757"].has-options .field-values p label span {
    font-weight: bold;
    line-height: 1.5rem;
}

.author-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.author-wrapper .btn {
    background: #4295d1 !important;
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition) !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
    transform: var(--transform-base);
    padding: 0.75rem 1.2rem;
    color: #ffffff;
    font-size: 1rem;
    height: auto;
    width: auto;
}

.author-wrapper .btn,
.author-wrapper .btn:hover,
.author-wrapper .btn:focus {
    background: #4295d1 !important;
    padding: 0.75rem 2rem !important;
    border-radius: 999px !important;
    margin: 0 !important;
}

.author-wrapper .btn:hover,
.author-wrapper .btn:focus {
    transition: var(--transition) !important;
    box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.1);
    transform: var(--transform-base-hover);
}


.author-wrapper .btn .glyphicon_Entypo {
    display: none;
}

.author-wrapper .btn:before {
    font-family: var(--font-awesome);
    font-weight: 900;
    display: inline-block;
    content: "";
}

.author-wrapper a[data-type="PresentingAuthor"]:before {
    content: "\f51c";
}

.author-wrapper a[data-type="Authors"]:before {
    content: "\f4ff";
}

.author-wrapper a.author-listing:before {
    content: "\f0c0";
}

.sectionwrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.5rem;
    border-radius: 25px;
    gap: 1rem;
    justify-content: space-between;
}

.sectionwrapper .section {
    max-width: 32%;
    width: 100%;
    padding: 0.5rem;
    border-radius: 25px;
    border: 2px solid transparent;
    box-shadow: 0 0 8px rgba(00, 00, 00, 0.1);
    transition: var(--transition);
    transform: var(--transform-base);
    font-size: 1rem;
    will-change: transform, box-shadow;
}

.sectionwrapper .section.fullwidth {
    max-width: 100%;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-color: rgba(67, 149, 209, 0.5);
}

.sectionwrapper .section:hover {
    transition: var(--transition);
    transform: var(--transform-base-hover);
    box-shadow: 0 4px 14px rgba(00, 00, 00, 0.15);
}

.sectionwrapper.themes .section p strong {
    font-size: 1.2rem;
    display: block;
    margin: 0 0 0.5rem 0;
}

.sectionwrapper.themes .section ul {
    margin: 1rem 1rem 1rem 1.2rem !important;
    display: grid;
    gap: 0.5rem;
    list-style: none;
}

.sectionwrapper.themes .section ul li {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    position: relative;
}

.sectionwrapper.themes .section ul li:before {
    font-family: var(--font-awesome);
    display: inline-block;
    font-weight: 900;
    content: "\f111";
    color: rgba(41, 68, 209, 0.6);
    font-size: 0.5rem;
    position: relative;
    top: 6px;

}

.sectionwrapper.themes .section:nth-of-type(1) {
    border-color: #71bce6;
}

.sectionwrapper.themes .section:nth-of-type(1) p strong,
.sectionwrapper.themes .section:nth-of-type(1) ul li:before{
    color: #71bce6;
}

.sectionwrapper.themes .section:nth-of-type(2){
    border-color: #4395d1;
}

.sectionwrapper.themes .section:nth-of-type(2) p strong,
.sectionwrapper.themes .section:nth-of-type(2) ul li:before {
    color: #4395d1;
}

.sectionwrapper.themes .section:nth-of-type(3) {
    border-color: #2944d1;
}

.sectionwrapper.themes .section:nth-of-type(3) p strong,
.sectionwrapper.themes .section:nth-of-type(3) ul li:before {
    color: #2944d1;
}

.sectionwrapper.themes .section p {
    display: grid;
    gap: 0.5rem;
}

.sectionwrapper h3{
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    margin: 0.2rem 0 0.5rem 0 !important;
    overflow: visible !important;
    background: rgba(67, 149, 209, 0.8);
    line-height: normal;
    height: unset;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0px 3px 12px rgba(67, 149, 209, 0.3);
    border: 2px solid rgba(67, 149, 209, 1);
    text-shadow: 1px 2px 5px rgba(67, 149, 209, 1);
}

/*************************
    footer
*************************/
#footer {
    padding: 2rem 0;
}

#footer #inner-footer {
    max-width: 90%;
    margin: 0 auto;
}



#submission-13755 .field-values {
    display: block;
    width: 100%;
    max-width: 100%;
}
#submission-13755 .field-values p{
    margin: 0.75rem 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 1rem;

}
#submission-13755 .field-values p label{
    max-width: 37%;
}

#submission-13755 .field-values .group-wrapper{
    display: block;
    grid-template-columns: 50% 50%;
}
#submission-13755 .field-values p {
    margin: 0.75rem 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 1rem;
}
#submission-13755 .field-information-display {
    margin: 0;
    width: auto;
    max-width: 37%;
}
input[type=text], textarea, select,.form-control{
    padding: 1rem !important;
    transition: var(--transition);
    box-shadow: 0px 2px 8px rgba(00, 00, 00, 0.05) !important;
    border-radius: 13px !important;
    border-color: rgba(67, 149, 209, 0.1) !important;
    margin: 0 0 2rem 0;
    transform: scale(1) translateY(0px);
}
textarea{
    min-height: 193px;
}
input[type=text]:hover, textarea:hover, select:hover,
input[type=text]:focus, textarea:focus, select:focus{
    border-color:rgba(67, 149, 209, 0.4) !important;
    box-shadow: 0px 4px 16px rgba(67, 149, 209, 0.2) !important;
    transition: var(--transition);
    transform: scale(1.01) translateY(-2px);
}

#submission-13770 .wordcountDisplay{
    width: 100%;
    border-radius: 999px !important;
    max-width: 100px;
    padding: 0.5rem 1rem !important;
    text-align: center;
    background: #2944d1;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem !important;
    text-shadow: 1px 2px 4px rgba(00, 00, 00, 0.4);
    box-shadow: 0px 0px 14px rgba(41, 68, 209, 0.3) !important;
    border: 3px solid rgba(255, 255, 255, 0.9) !important;
}
.required.required-dynamic{
    display:none;
}
div.systemMsg fieldset{
    
    padding: 0rem 0rem 1rem 0rem;
}
div.systemMsg ul{
    background: none !important;
    background-image: none !important;
    margin: 0 !important;
    padding: 0;
}
div.systemMsg ul li {
    list-style-type: none;
    margin: 0 !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

div.systemMsg ul li {
    background: transparent;
    color: #111111;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
    border-radius: 8px;
    border-left: 4px solid transparent;
    text-align: center;
    border-right: 4px solid transparent;
}
div.systemMsg ul li:before{
    font-family: var(--font-awesome);
    font-weight: 900;
    display: inline-block;
    font-size: 1.2rem;
    content: "";
}

div.systemMsg ul.notice li {
    background: rgba(241, 196, 15, 0.2);
    color: #111111;
    border-left: 4px solid rgba(241, 196, 15, 1);
    border-right: 4px solid rgba(241, 196, 15, 1);
}

div.systemMsg ul.notice li:before{
    color: rgba(241, 196, 15, 1);
    content: "\f071";
}


div.systemMsg ul.success li {
    background: rgba(39, 174, 96,0.2);
    color: rgba(39, 174, 96,1.0);
    border-left: 4px solid rgba(39, 174, 96,1.0);
    border-right: 4px solid rgba(39, 174, 96,1.0);
}

div.systemMsg ul.success li:before{
    color: rgba(39, 174, 96,1.0);
    content: "\f058";
}

.field-values p div[role="status"]{
    background: rgba(241, 196, 15, 0.2);
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    font-size: 0.9rem;
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    border-radius: 999px;
    box-shadow: 0px 3px 10px rgba(00, 00, 00, 0.1);
}
.field-values p div[role="status"] span{
    border-radius: 9999px;
    box-shadow: 0px 0px 6px rgba(00, 00, 00, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 196, 15, 1);
    color: #111111;
    font-weight: bold;
    font-size: 0.8rem;
}


.modal-body form .field-wrapper{

}
.modal-body form .field-wrapper .field{
    display:flex;
    align-items: center;
    justify-content: flex-start;
}
.modal-body form .field-wrapper .field h3 {
    max-width: 250px;
    
    margin: unset !important;
    background: unset;
    width: 100% !important;
}
.modal-body form .field-wrapper .field div.field-values p{
    margin:0;
}
.modal-body form .field-wrapper .field div.field-values p label{
    margin:0;
}
.modal-body form .field-wrapper .field div.field-values p input,
.modal-body form .field-wrapper .field div.field-values p select{
    margin: 0px;
    padding: 0.65rem 1rem !important;
    font-size: 1rem !important;
}

.modern-upload{
  border:2px dashed #d8d8d8;
  border-radius:14px;
  padding:32px 20px;
  text-align:center;
  background:#fafafa;
  transition:all .25s ease;
  position:relative;
}

.modern-upload:hover{
  border-color:#cbb778;
  background:#fcfbf6;
}

.upload-dropzone{
  cursor:pointer;
  transition:all .25s ease;
}

.upload-dropzone.dragging{
  transform:scale(1.02);
  border-color:#cbb778;
}

.upload-icon{
  font-size:34px;
  margin-bottom:10px;
  color:#777;
}

.upload-text strong{
  display:block;
  font-size:16px;
}

.upload-text span{
  font-size:13px;
  color:#777;
}

.upload-hint{
  margin-top:8px;
  font-size:12px;
  color:#999;
}

.upload-preview{
  display:none;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.preview-image{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid #ddd;
}

.file-info{
  text-align:left;
}

.file-name{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  font-weight:500;
}

.remove-file{
  border:none;
  background:none;
  color:#c0392b;
  cursor:pointer;
  font-size:13px;
}

.remove-file:hover{
  text-decoration:underline;
}

.upload-error{
  display:none;
  color:#c0392b;
  margin-top:12px;
  font-size:13px;
}

@media (min-width: 240px) and (max-width: 789px) {
    #navigation{
        position:relative;
        top:unset;
        max-width: 100%;
    }
    #pa>.inner-element{
        flex-wrap: wrap;
    }
}

@media (min-width: 240px) and (max-width: 1336px) {
    .sectionwrapper .section{
        max-width: 100%;
    }
}

@media (min-width: 240px) and (max-width: 1548px) {
    #pa{
        max-width: 98%;
    }
    #wrapper{
        max-width: 100%;
    }
    #main{
        padding:1rem;
    }
    .has-options .field-values p,
    #submission-13755 .field-values p label {
        max-width: 46%;
    }
    #submission-13757.has-options .field-values p{
        max-width: 100%;
    }
    .has-options .field-values{
        margin:2rem 0;
    }
}

.btn-group.reviewtraversing {
    margin: 1rem 0;
}

#reviewPapers .table.table-summary{
    width:auto;
}
#reviewPapers .table.table-summary th,
#reviewPapers .table.table-summary td{ 
    border:none;
}
ul.author-option,
ul.options {
    display: inline-block;
    margin: 0 !important;
}
ul.options li,
ul.author-option li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.options li ul,
ul.author-option li ul{
    list-style: none;
    margin-left: auto;
    border-radius: 16px;
    box-shadow: 0px 4px 18px rgba(00, 00, 00, 0.2);
    margin:0 !important;
    padding: 0;
    overflow: hidden;
}
ul.options li ul li,
ul.author-option li ul li{
    display:block !important;
}
ul.options li ul li a,
ul.author-option li ul li a{
    padding: 1rem;
    font-size: 1rem;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-self: flex-start;
    gap: 0.5rem;
    width: 100%;
    will-change: transform, background, color;
    transition:var(--transition);
    transform:scale(1) translateY(0px);
}

ul.author-option li ul li a span{
    display:none;
}

ul.options li ul li a:hover,
ul.author-option li ul li a:hover{
    transition:var(--transition);
    transform:scale(1) translateY(-2px); 
    background:rgba(00,136,118,0.05);
}
ul.options li a.dropdown-toggle,
ul.author-option li a.dropdown-toggle{
    background: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.5rem 0.3rem;
    box-shadow: 0px 0px 7px rgba(00, 00, 00, 0.1);
}

.dropdown a .glyphicon-cog:before,
ul.options li ul li a:before,
ul.author-option li ul li a:before{
    font-family: var(--font-awesome);
    font-weight: 900;
    display:inline-block;
    content:"";
}

ul.author-option li ul li a:hover{
    text-decoration: none !important;
}

ul.author-option li ul li a:before{
    transition: var(--transition);
    transform: scale(1) translateY(0px);
}
ul.author-option li ul li a:hover:before{
transform: scale(1.01) translateY(-2px);
}
ul.author-option li ul li:nth-of-type(1) a:before{content:"\f4ff";}
ul.author-option li ul li:nth-of-type(2) a:before{content:"\f0c0";}
ul.author-option li ul li:nth-of-type(3) a:before{content:"\f3e0";}
ul.author-option li ul li:nth-of-type(4) a:before{content:"\f1f8";}


ul.author-option li ul li:nth-of-type(1) a:hover:before{color:#4295d1;}
ul.author-option li ul li:nth-of-type(2) a:hover:before{color:#2944d1;}
ul.author-option li ul li:nth-of-type(3) a:hover:before{color:#557be7;}
ul.author-option li ul li:nth-of-type(4) a:hover:before{color:rgba(192, 57, 43,1.0);}


.dropdown a .glyphicon-cog:before{
    content: "\f142";
    color: #4295d1;
    width: 25px;
    height: auto;}

ul.options li ul li:nth-of-type(1) a:before{content:"\f31c";}
ul.options li ul li:nth-of-type(2) a:before{content:"\f022";}
ul.options li ul li:nth-of-type(3) a:before{content:"\f1f8";}



ul.options li ul li a:hover{color:#223562;}
ul.options li ul li:nth-of-type(3) a:hover{color:#ba4326;}


.click-to-select{
    font-size: 0.8rem;
    font-weight: normal;
    display: inline-flex;
    color: #555555;
    margin: 0.7rem 0 0 0;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: #fefefe;
    border-radius: 9px;
    width: auto;
    justify-content: center;
    font-style: italic;
    box-shadow: 0px 3px 8px rgba(00, 00, 00, 0.05);
}
.click-to-select i{
    color:rgba(52, 152, 219,1.0);
}
#recentAbstract{
    margin: 2rem 0rem 1rem 0;
}
.recentAbstracts,
.tablesorter-default{
    width: 100%;
    background-color: transparent;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 4px 12px rgba(00, 00, 00, 0.05);
}
.recentAbstracts thead,
.recentAbstracts thead *,
.tablesorter-default thead,
.tablesorter-default thead *{
    border:none !important;
}
.recentAbstracts thead th,
.tablesorter-default thead th{
    background: #4295d1;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}
.recentAbstracts thead th:hover,
.tablesorter-default thead th:hover {
    background: #70bce7;
}

.recentAbstracts thead th,
.recentAbstracts tbody th,
.recentAbstracts tbody td,
.tablesorter-default thead th,
.tablesorter-default tbody th,
.tablesorter-default tbody td{
    border:none;
}
.recentAbstracts thead th:nth-of-type(1),
.tablesorter-default thead th:nth-of-type(1){
    border-radius: 25px 0 0 0;
    border: none !important;
    padding: 8px 0px 8px 21px;
}
.recentAbstracts tbody td:nth-of-type(1),
.tablesorter-default tbody td:nth-of-type(1){
    padding: 8px 8px 8px 21px;
}
.recentAbstracts thead th:nth-of-type(4),
.tablesorter-default thead th:nth-of-type(5){
    border-radius: 0 25px 0 0;
    border: none !important;
    padding: 8px 21px 8px 15px;
}

.recentAbstracts tbody tr:last-of-type td:nth-of-type(1),
.tablesorter-default tbody tr:last-of-type td:nth-of-type(1) {
    border-radius: 0 0 0 25px;
    border: none !important;
    padding: 8px 0px 8px 21px;
}
.recentAbstracts tbody tr:last-of-type td:nth-of-type(4),
.tablesorter-default tbody tr:last-of-type td:nth-of-type(5) {
    border-radius: 0 0 25px 0;
    border: none !important;
}

.recentAbstracts thead th.tablesorter-headerAsc::after,
.recentAbstracts thead th.tablesorter-headerDesc::after,
.tablesorter-default thead th.tablesorter-headerAsc::after,
.tablesorter-default thead th.tablesorter-headerDesc::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
}

.recentAbstracts thead th:nth-of-type(1) div.tablesorter-header-inner{width: 158px !important;}
.recentAbstracts thead th:nth-of-type(2){width:100% !important;}
.recentAbstracts thead th:nth-of-type(2) div.tablesorter-header-inner{width: auto !important;}
.recentAbstracts thead th:nth-of-type(3){width:auto !important;}
.recentAbstracts thead th:nth-of-type(3) div.tablesorter-header-inner{width: 128px !important;text-align: center;}
.recentAbstracts thead th:nth-of-type(4) div.tablesorter-header-inner{width: auto !important;}

.recentAbstracts tbody tr td:nth-of-type(3),
.recentAbstracts tbody tr td:nth-of-type(4),
.tablesorter-default tbody tr td:nth-of-type(4),
.tablesorter-default tbody tr td:nth-of-type(5){
    text-align: center;
}

.recentAbstracts thead th.tablesorter-headerAsc::after,
.tablesorter-default thead th.tablesorter-headerAsc::after {
    border-bottom-color: #fff;
}

.recentAbstracts thead th.tablesorter-headerDesc::after,
.tablesorter-default thead th.tablesorter-headerDesc::after {
    border-top-color: #fff;
}

.recentAbstracts tbody tr,
.tablesorter-default tbody tr {
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.recentAbstracts td,
.tablesorter-default td {
    padding: 12px 15px;
    border: none;
    vertical-align: middle;
    color: #333;
}
.tooltip{
    position: absolute;
}

.tablesorter-default > tfoot > tr > th {
    border-bottom: none;
    border-left: none;
    border-right: none;
}
table.tablesorter th:last-child {
    /*width: 25px;*/
    padding-left: 1rem;
}

.tablesorter-default thead th:nth-of-type(2){
        /*width: auto !important;*/
}
.tablesorter-default thead th:nth-of-type(2) div{
   /*
    max-width:278px;
    width:100% !important;
    */
}
.tablesorter-default thead tr th:nth-of-type(2),
.tablesorter-default thead tr th:nth-of-type(3),
.tablesorter-default thead tr th:nth-of-type(4),
.tablesorter-default tbody tr td:nth-of-type(2),
.tablesorter-default tbody tr td:nth-of-type(3),
.tablesorter-default tbody tr td:nth-of-type(4){
    text-align: center;
}



/* Zebra striping alternative */
.recentAbstracts tbody tr.odd,
.tablesorter-default tbody tr.odd {
    background-color: #f8f9fa;
}
/* Responsive tweaks */
@media (max-width: 768px) {
    .recentAbstracts thead {
        display: none;
    }
    .recentAbstracts tbody tr {
        display: block;
        margin-bottom: 15px;
    }
    .recentAbstracts tbody td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }
    .recentAbstracts tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
    }
}

th.total_rows span{
    background: #f99f1e;
    color: #223562;
    border-radius: 999px;
    width: 33px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0px 0px 10px rgba(249, 159, 30, 0.3);
}

.modalset.btn.btn-primary,
.btn-warning,
#submitGrade{
    display:inline-flex;
    align-items: center;
    gap:0.5rem;
    padding: 0.75rem 1.2rem;
    border-radius: 14px;
    font-size: 0.9rem;
    background: #f99f1e !important;
    color: #ffffff !important;
    border-color: #f99f1e;
    box-shadow: 0px 0px 10px rgba(249, 159, 30, 0.4);
    font-weight: bold;
    letter-spacing: 0.02rem;
    transition: var(--transition);
    transform: scale(1) translateY(0px);
    box-shadow: 0px 0px 10px rgba(249, 159, 30, 0.3);
}
.modalset.btn.btn-primary:hover,
.btn-warning:hover,
#submitGrade:hover{
    transition: var(--transition);
    transform: scale(1) translateY(-2px);
    box-shadow: 0px 2px 13px rgba(249, 159, 30, 0.5);
}
.modalset.btn.btn-primary:before{
    font-family: var(--font-awesome);
    font-weight: 900;
    display:inline-block;
    content:"\f0ed";
    font-size: 1.3rem;
    transition: var(--transition);
    transform: scale(1) translateY(0px);
    text-shadow: none;
}

.modalset.btn.btn-primary:hover:before{
    transition: var(--transition);
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0px 3px 13px rgba(249, 159, 30, 1);
}
#submitGradeBttn{
    text-align: center;
}
#submitGrade{
    background: #008876 !important;
    border-color: #008876 !important;
    box-shadow: 0px 0px 10px rgba(00, 136, 118, 0.3);
}
#submitGrade:hover{
    box-shadow: 0px 2px 13px rgba(00, 136, 118, 0.5);
}
#reviewPapers #wrap {
    clear: both;
    border-radius: 18px;
    padding: 2rem;
    border: none;
    box-shadow: 0px 4px 14px rgba(00, 00, 00, 0.1); 
    margin: 1rem 0;
    border-top: 4px solid #008876;
    border-bottom: 4px solid #008876;
}

#reviewPapers #wrap .field{
    display: flex;
    align-items: center;
    box-shadow:0px 0px 6px rgba(0,0,0,0.05);
}
#reviewPapers #wrap .field h2{
    font-size: 1.2rem;
    font-weight: normal;
    width: 75%;
    margin: 0;
}
#reviewPapers #wrap .field table{
    width:auto;
}

#reviewPapers #wrap .field table td{
    padding:0.5rem;
}

#reviewPapers #wrap .field table td input{
    opacity:0;
    position: absolute;
}
#reviewPapers #wrap .field table td label{
    padding:0.75rem 1.5rem;
    border-radius: 13px;
    box-shadow: 0px 0px 10px rgba(00, 00, 00, 0.1);
    border:2px solid transparent;
}
#reviewPapers #wrap .field table td label:hover{
    box-shadow: 0px 3px 14px rgba(00, 00, 00, 0.17);
}
#reviewPapers #wrap .field table td:nth-of-type(1){
    display:none;
}

#reviewPapers #wrap .field table td:nth-of-type(2) label:hover,
#reviewPapers #wrap .field table td:nth-of-type(2) input:checked+label{
    background: rgba(39, 174, 96,0.1);
    border-color: rgba(39, 174, 96,1.0);
    color:rgba(39, 174, 96,1.0);
    transition: var(--transition);
    transform: scale(1) translateY(0px);
   
}

#reviewPapers #wrap .field table td:nth-of-type(3) label:hover,
#reviewPapers #wrap .field table td:nth-of-type(3) input:checked+label{
    background: rgba(192, 57, 43,0.1);
    border-color:rgba(192, 57, 43,1.0);
    color:rgba(192, 57, 43,1.0);
    transition: var(--transition);
    transform: scale(1) translateY(0px);
}
.reviewComplete td {
    color: rgba(46, 204, 113, 1.0);
    font-weight: normal;
    font-style: normal; 
}
.reviewComplete td:nth-of-type(1):before{
    font-family: var(--font-awesome);
    font-weight: 400;
    display:inline-block;
    content:"\f058";
}
.reviewComplete td:nth-of-type(1){
        display: flex;
    align-items: center;
    gap: 0.3rem;
}

#scoringForm{
    display:grid;
    gap: 1rem;
}

#scoringForm .field{
    margin:0 !important;
}
.btn-group.reviewtraversing {
    margin: 1rem 0;
}

#reviewPapers .table.table-summary{
    width:auto;
}
#reviewPapers .table.table-summary th,
#reviewPapers .table.table-summary td{ 
    border:none;
}


#authorAddButtons {
    z-index: 8;
    display: block;
    position: relative;
}
#authorDetails .ui-sortable{
    display:grid;
    gap:0.5rem;
    z-index: 999;
    position: relative;
}
#authorDetails .ui-sortable .sortable {
    border: 1px solid rgba(00, 00, 00, 0.03);
    border-radius: 16px;
    margin: 0 0 1rem 0;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    box-shadow: 0px 2px 7px rgba(00, 00, 00, 0.05);
    transform: scale(1) translateY(0px);
}
#authorDetails .ui-sortable .sortable:hover{
    box-shadow: 0px 4px 12px rgba(00, 00, 00, 0.085);
    transform: scale(1.01) translateY(-2px);
}
#authorDetails .ui-sortable .sortable h4{
display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    color: #4295d1;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 0;
    position: relative;
    border:none !important;
}
#authorDetails .ui-sortable .sortable h4:before{
    width: 3px;
    background: #2944d1;
    display: inline-block;
    position: absolute;
    left: -9px;
    content: "";
    height: 100%;
}
#authorDetails .ui-sortable .sortable .errorReqFields{
    color: rgba(192, 57, 43, 1.0) !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 57, 43, 0.1) !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 999px;
    box-shadow: 0px 0px 10px rgba(192, 57, 43, 0.3);
    border: 1px solid rgba(192, 57, 43, 0.2);
}
#authorDetails .ui-sortable .sortable .errorReqFields:before,
.author-name-display:before{
    font-family: var(--font-awesome);
    display:inline-block;
    font-weight: 900;
    content:"\f071";
    font-size: 1.2rem;
}

.author-information{
    margin:0px;
}
.author-name-display{
        display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0 !important;
}
.author-name-display:before {
    font-family: var(--font-awesome);
    font-weight: 400;
    content: "\f007";
    background: #70bce7;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
}
ul.author-option li ul li {
    margin: 0 !important;
    padding: 0 !important;
}
div.ui-sortable div.sortable ul.dropdown-menu a.btn-sm {
    color: #000000;
    text-align: left;
    padding: 0.5rem 1.3rem;
    margin: 0 !important;
    border-radius: 0;
    background: #ffffff;
}

.modal .modal-content{
        border-radius: 25px;
    box-shadow: 0px 5px 20px rgba(00, 00, 00, 0.3);
    border: none;
}

.userNew .modal-footer{
    display: none;
}

.userNew .btn-group{
    display:grid;
    align-items: center;
    justify-content: center;
    padding:1rem;
}

.userNew .btn-group #submitAbstract{
    padding:0.75rem 1.2rem;
    margin: 0.75rem 0;
    background:#0d7061;
    border-color: #0d7061;
    color:#ffffff;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    transform: var(--transform);
    width: auto;
    height: auto;
    font-size: 1.1rem;
    will-change: transform, box-shadow;
}

.userNew .btn-group #submitAbstract:hover{
    background:#008876;
    border-color:#008876;
    transition: var(--transition);
    box-shadow: var(--box-shadow-hover);
    transform: var(--transform-hover);
}

#reviewPapers .container-fluid.summary {
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(00, 00, 00, 0.1);
    border-top: 3px solid #70bce7;
    border-bottom: 3px solid #70bce7;
    background: rgba(112, 188, 231, 0.03);
}
