/* Utilities */

.flex {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.flex-end {
    justify-content: flex-end;
}

.center {
    justify-content: center;
}

.align-items-center{
    align-items: center;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.green {
    color: #97BC62FF !important;
}

.center-text {
    text-align: center!important;
}

.hide {
    display: none;
}

.pointer {
    cursor: pointer;
}

.relative {
    position: relative;
}

.small-text {
    font-size: 10px;
}

.warn-color-msg {
    color: #FF9900;
}
.active-color-msg {
    color: #009900;
}
.inactive-color-msg {
    color: #990000;
}
.cpointer {
    cursor: pointer;
}
.pointer-events-none {
    pointer-events: none;
}
.w100 {
    width: 100%;
}
.w100px {
    width: 100px;
}
.w200px {
    width: 200px;
}
/***************************************** START STD LIBRARY **********************************/

/* STD Blocks */

.std-light-grey {
    background: #F2F2F2;
}

/* STD Text */

.std-bold-text {
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    color: #333333;
}

.std-grey-label {
    line-height: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #6B6F74;
}

.std-bold-italic {
    font-style: italic;
    font-weight: bold;
    color: #666666;
}

.std-orng-heading {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #F36A26;
    text-transform: uppercase;
}

/* STD Buttons */

.std-rect-orange {
    margin-left: 4px;
    background: #F26822;
    border: none;
    font-size: 10px;
    box-shadow: none;
    padding: 8px 24px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: 0.3s;
}

.std-rect-white {
    margin-left: 4px;
    background: #FFFFFF;
    border: 0.5px solid #F26822;
    font-size: 10px;
    box-shadow: none;
    padding: 8px 24px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F26822;
    transition: 0.3s;
}

.std-rect-white:hover {
    background: #FDC19A;
    cursor: pointer;
}

.std-rect-orange:hover {
    background: #D44A04;
    cursor: pointer;
}

.standard-subtitle {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 12px;
    color: #333333;
}
.standard-note {
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    color: #333333;
}
.standard-subtitle-wrapper {
    margin-bottom: 1rem;
}

.legacy_myc_bt {
    background-color: #666666;
    border: 0px;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 25px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin:5px;
    letter-spacing: 1px;
}
.legacy_myc_bt:hover {
    cursor: pointer;
    background-color: #999999;
    transition: 0.5s;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal.show {
    display: block;
}

/****************************************** END STD LIBRARY **************************************/

.showMoreInit {
    height: 50px;
    overflow: clip;
}

.upload-subheading {
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
}

.dm-uploader.active {
	border-color: red;

	border-style: solid;
}

.border-down-cream {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #ECE9E0;
}

.action-button {
    margin-left: 5px;
    min-width: 84px;
    padding: 0.5rem 1.5rem;
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 8px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    background: #F26822;
    border: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
    cursor: pointer;
}

.action-button.disabled-btn{
    background: #E0E0E0;
}

.action-button.hollow {
    background: #FFFFFF;
    border: 0.5px solid #F26822;
    color: #F26822;
}

.action-button[disabled]:hover{
    color: #ffffff;
    background: #E0E0E0;
    cursor: not-allowed;
}

.action-bar-wrapper {
    margin-bottom: 1rem;
}

.popup-textarea-wrapper textarea{
    width: 99%;
}

.table-normal.no-border {
    border: none;
}

.table-normal.table-grey thead {
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.table-normal.table-grey tr td{
    vertical-align: top;
}

.table-normal.dark thead {
    background: #4F5960;
    color: #ffffff;
    text-transform: uppercase;
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    line-height: 12px;
    letter-spacing: 0.5px;
}

.table-normal.no-border th {
    border: none;
}

.table-normal.no-border  td {
    border: none;
}

.zebra-rows tr:nth-child(odd){
    background-color: #FFFFFF;
}

.zebra-rows tr:nth-child(even){
    background-color: #F8F8F8;
}

.bold {
    font-weight: 800;
}

.bold-700 {
    font-weight: 700;
}

.action-handler path:hover {
    fill: #F26822;
}

.add-link {
    color: #F26822;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 11px;
    line-height: 12px;
}

.add-link:hover {
    color: #222222;
}

.plus-icon:before{
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    content: "\f055";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.form-block {
    margin-bottom: 1rem;
}

.form-block .form-block-heading {
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    padding: 5px 0;
    margin: 0 0.5rem;
}

.form-block.dark .form-block-heading {
    color: #FFFFFF;
}

.form-block.dark .form-block-heading-wrapper {
    background-color: #6B6F74;
}

.form-block .form-block-body {
    max-width: 505px;
    padding: 20px 30px;
}

.form-block .form-block-body-wrapper {
    background: #F2F2F2;
}

.form-block .form-block-body-wrapper.transparent{
    background: #FFFFFF;
}

.form-block .form-block-field {
    display: flex;
    margin-bottom: 0.5rem;
}

.form-block .form-block-field.hide {
    display: none;
}

.form-block-field .field-label{
    flex: 4;
    line-height: 1.5rem;
}

.form-block-field .field-input{
    flex: 8;
}

.inhouse-program-details .form-block-field {
    height: 18px;
}
.inhouse-grouped-details .form-block-field {
    height: 18px;
}

.field-input input[readonly]:focus, .field-input input[readonly]:active, .field-input input[readonly]:focus-visible {
    outline: none !important;
}

.field-input input[type=text] {
    width: 100%;
}

.field-input input[type=text][readonly] {
    font-weight: 600;
    font-size: 12px;
    border: none;
    padding: 6px 0 0 0;
}

.field-label label {
    font-weight: bold;
    font-size: 11px;
    text-transform: capitalize;
    color: #6B6F74;
}
.form-button-group {
    display: flex;
    justify-content: flex-end;
    padding: 0 18px;
}
.form-button {
    padding: 10px 25px;
    margin: 2px;
    text-transform: uppercase;
    font-size: 11px;
}
.action-bar-button {
    padding: 10px 22px;
    margin: 2px;
    font-size: 11px;
}
.transparent .field-label {
    text-align: right;
    margin-right: 0.5rem;
}

.transparent .field-label label {
    color: #000000;
}

.field-input select {
    /* necessary because inputs text are little bigger */
    padding: 2px 2px;
    width: 104.8%;
}

#requestCreditTransfer .field-input select {
    width: 103.8%;
}

.field-input select option{
    /* color: #4F5960; */
    font-size: 11px;
    padding-left: 8px;
}

.field-inner-row {
    margin-bottom: 0.5rem;
}

.field-inner-row input[type=checkbox] {
    vertical-align: bottom;
}

.form-block .field-input ul.token-input-list{
    width: 100%;
    overflow:unset !important;
}

.form-block .field-input ul.token-input-list li input{
    width: 100% !important;
}

.field-inner-row label {
    line-height: 12px;
    font-size: 10px;
    color: #4F5960;
}

.field-inner-row .subtext {
    font-style: italic;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    color: #6B6F74;
}

.popup .field-select input:focus {
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
}

.popup .field-text {
    padding-top: 6px;
    font-weight: 600;
}
.popup .field-textarea textarea {
    width: 100%;
    padding: 5px 0px 4px 9px;
    border: 2px solid #6B6F74;
}

.popup .field-input input[type=text] {
    width: 100%;
    padding: 5px 0px 4px 9px;
    border: 2px solid #6B6F74;
}

.popup .field-input input[type=text][readonly] {
    font-weight: 600;
    border: none;
    padding: 6px 0 0 0;
}

.popup select.field-select {
    flex: 8;
    padding: 5px 0px 4px 8px;
    border: 2px solid #6B6F74;
    /* color: #6B6F74 !important; */
    font-weight: normal;
    text-transform: capitalize;
}

.filter-main-wrapper {
    background: #F2F2F2;
}

.multi-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 30px;
}

.single-filter-box-wrapper{
    width: 49%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.single-filter-box-wrapper .select-label{
    line-height: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #6B6F74;
}

.single-filter-box-wrapper .select-label-wrapper{
    flex: 4;
}

.single-filter-box-wrapper .select-filter-wrapper {
    flex: 7;
}

.select-filter {
    margin-left: -1rem;
}

.single-filter-box-wrapper:nth-child(odd) .select-filter{
    margin-left: -2rem;
}

select.select-filter {
    /* necessary because inputs text are little bigger */
    padding: 2px 2px;
    width: 102%;
}

.select-filter-wrapper input[type=text] {
    width: 100%;
    margin-left: -1rem;
}

select.select-filter option{
    color: #4F5960;
    font-size: 11px;
    padding-left: 8px;
}

.filter-button-wrapper {
    width: 100%;
    text-align: right;
    margin-right: 1rem;
}

.filter-button {
    border: none;
    font-size: 10px;
    box-shadow: none;
    background: #6B6F74;
    padding: 8px 24px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.az-filter-wrapper {
    display: flex;
    padding: 1rem;
    justify-content: center;
}

.az-filter {
    font-weight: bold;
    font-size: 12px;
}

.az-filter a {
    color: #4C5961;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

.az-filter a:hover {
    text-decoration: underline;
    color: #F15B30;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.results-counter-wrapper {
    background: #E8E8E8;
    padding: 1rem;
}

.results-counter {
    display: flex;
}

.total-results-wrapper, .total-pages-wrapper {
    width: 50%;
    display: flex;
}

.total-pages-wrapper {
    flex-direction: row-reverse;
}

.results-per-page-wrapper {
    margin-left: 1rem;
}

.results-counter select {
    width: auto;
}

.notice-wrapper {
    padding: 1.5rem;
}

.buttons-group {
    padding-bottom: 1rem;
}

.no-results-wrapper {
    margin: 2rem;
}

/* referral */
.referral-subheading-wrapper {
    border: 2px #6B6F74 dotted;
    border-radius: 5px;

}
.referral-upload-subheading{
    padding: 5px;
}
.referral_download_icon{
    font-size: 15px !important;
}
.referral_file_list{
    margin-top: 5px;
}
.rename_text{
    width: 80% !important;
    height: 10px; 
}
/* Plugins settings */

body div.token-input-dropdown{
    z-index: 1001;
}
 
/* Student Finance Section  */

.application-item {
    border: 1px solid #B9B9B9;
    padding: 18px 20px 18px 20px;
    border-radius: 7px;
    margin-top: 20px;
}

.table-normal {
    border: 1px solid #B9B9B9;
    box-sizing: border-box;
    border-radius: 2px;
    border-spacing: 0px;
    width: 100%;
}

.table-normal th {
    border: 1px solid #B9B9B9;
    box-sizing: border-box;
    padding: 8px;
    height: 32px;
}

.table-normal td {
    border: 1px solid #B9B9B9;
    box-sizing: border-box;
    padding: 8px;
    height: 32px;
}

.table-normal .rejected td, .table-normal .voided td {
    background: #ffbfbf!important;
}

.action-link {
    text-decoration: none;
    text-transform: uppercase;
    color: #B9B9B9;
    font-size: 10px;
    border-radius: 20px;
}

.action-link:hover {
    color: #F26822;
    cursor: pointer;
}

.information-box {
    color: #F26822;
}

#transfer_deposit_title {
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: left;
    padding: 4px 10px 4px 10px;
    width:100%;
}

.plan-payment-title {
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.single-action-icon {    
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
}

.receipt-handler-delete {
    display: none;
}

.edited .receipt-handler-delete {
    display: initial;
}

.edited .receipt-index {
    display: none;
}

.edited .receipts-handler-edit {
    display: none;
}

.edit-action {
    display: none;
}

.edited .edit-action{
    display: initial;
}

.receipt-handler-wrapper {
    display: none;
}

.edited .receipt-handler-wrapper{
    display: initial;
}

.edited .receipts-details ul.token-input-list{
    width: 100%;
}

.receipts-details-wrapper.error {
    border: 3px solid #990000
}

.files-error-message {
    display: none;
}

.receipts-error-message {
    margin-top: 1rem;
    display: none;
}

.deposit-uploader {
    padding: 2rem 0;
    background: #F9F9FB;
    border: 1px dashed #DCDCDC;
    box-sizing: border-box;
    border-radius: 7px 
}

.inventory-uploader {
    padding: 5px 10px;
    background: #F9F9FB;
    border: 1px dashed #DCDCDC;
    box-sizing: border-box;
    border-radius: 7px;
    margin: 0px 10px;
}

.docs-management {
    width: 49%;
}

.files-uploader-wrapper {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #ECE9E0;
    box-sizing: border-box;
    border-radius: 5px;
}

.comments-post-wrapper {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #ECE9E0;
    box-sizing: border-box;
    border-radius: 5px;
}

.docs-management-wrapper {
    margin-top: 1.5rem;
}

.upload-action-link {
    font-weight: 500;
    text-decoration: underline;
    color: #F26822;
    cursor: pointer;
}

.comment-textarea {
    width: 100%;
    border: 1px solid #DCDCDC;
    box-sizing: border-box;
    border-radius: 7px;
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 13px;
}

.comments-history-wrapper {
    margin-top: 2rem;
}

.comments-history-wrapper.comments-post-wrapper{
    margin-top: 0;
}

.comment-text {
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 150%;
    margin-bottom: 1rem;
}

.comment-subtext {
    font-family: Arial;
    font-style: normal;
    font-size: 11px;
    line-height: 150%;
    color: #BDBDBD;
}

.files-list {
    list-style: none;
    padding: 0 1rem;
    margin-top: 1rem;
}

.file-icon-wrapper {
    flex: 1;
    display:flex;
    align-items: center;
}

.file-controls-wrapper {
    flex: 2;
}

.file-body-wrapper {
    flex: 10;
}

.file-sub-info {
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 13px;
    color: #BDBDBD;
}

.action-icon-wrapper {
    margin-left: 10px;
}

.single-file {
    align-items: center;
    padding-top: 0.5rem;
}

.single-file.border-down-cream{
    padding-bottom: 0.25rem;
}

.receipts-details-row .token-input-list .token-input-delete-token{
    display: none!important;
}

.receipts-details-row li.token-input-token {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-weight: 400;
}

.receipts-details-row ul.token-input-list {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    font-size: 12px;
}

.receipt-handler-reject:hover {
    color: #FF0000!important;
}

.rejected .receipt-handler-reject {
    display: none!important;
}

.upload-file.deleted {
    display: none!important;
}

#rejectConfirmationBox {
    display: none;
}

#removeReceiptConfirmationBox {
    display: none;
}

#deleteFileConfirmationBox {
    display: none;
}
#submitReceiptConfirmationBox{
    display: none;
}

#confirmSplitPaymentBox{
    display: none;
}

#cancelReceiptConfirmationBox{
    display: none;
}
#postReceiptConfirmationBox{
    display: none;
}
.popup-buttons{
    margin-top: 10px;
}
.post_selected {
    margin-left: 10px
}

.campus-campaign-row .active {
    color: #01A068;
}

.campus-campaign-row .not-active {
    color: #F13B13;
}

/* Campus Campaign */

.campaign-details-terms {
    display: none;
}

.campaign-details-default-terms-wrapper{
    margin-left: 1rem;
}

#campaignCustomEmails {
    font-size: 10px;
    padding: 3px 2px;
}

#campaignExcludeEmails {
    font-size: 10px;
    padding: 3px 2px;
}

.email-conditions-subtext {
    margin-left: 1rem;
}

.checkboxes-list {
    display: none;
}

.campaign-delete-handler{
    cursor:pointer;
}

.campaign-popup-btns{
    margin-top: 20px;
}

/* Agreements/Referrals Page */

.agreement-ref-td-status{
    width: 9%;
}

.agreement-ref-td-application{
    width: 15%;
}

.agreement-ref-td-ref-details{
    width: 11%;
}

.agreement-ref-td-req{
    width: 12%;
}

.agreement-ref-td-viewedit{
    width: 5%;
}

#personalInfo div.form-block-field, #personalInfoReferring div.form-block-field,.referral-student-field{
    margin-bottom: 0 !important;
}

#personalInfo input, #personalInfoReferring input{
    font-weight: normal !important;
}

#personalInfo{
    margin-bottom: 1rem;
}

.referral-student-notes{
    margin-top: 0.5rem;
}

.referral-student-no-action{
    pointer-events: none;
    color: #999999 !important;
    background-color: #fcfcfc;
}

.referral-student-no-action:hover{
    background-color:#fcfcfc !important;
}

.referral-student-no-action:active{
    background-color:#fcfcfc !important;
}

.referral-student-with-action{
    cursor: pointer;
}

.referral-student-field{ 
    margin-top: 0.5rem;
}

/****************************************** NOTIFICATION CENTER **************************************/




/****************************************** WIDGETS **************************************/
.myc_wigets-wrapper {
    width: 100%;
    max-width: 960px;
    /* display: flex;
    flex-wrap: wrap; */
}

/* .myc-std-widget {
    border: 1px solid #B9B9B9;
    border-collapse: collapse;  
    min-width: 80px;
    min-width: 120px;
} */
.myc-std-widget {
    /* min-width: 120px; */
    overflow-x: hidden !important;
}

table.many-columns {
    width: 99%;
    display: block;
}

table.myc-std-widget.few-columns {
    width: 49%;
    display: inline-block;
    margin-right: 7px;
    vertical-align: top;
}

@media screen and (max-width: 1250px) {
	table.myc-std-widget.few-columns {
		width: 100%;
        display: block;
	}
    table.many-columns {
        width: 100%;
    }
}

table.few-columns.no-margin-right {
    margin-right: 0;
}

.few-columns:last-of-type {
    width: max-content;
}

table.myc-std-widget { 
    margin: 20px 0;
    max-height: 250px;
    overflow: scroll;
    border: 1px solid #B9B9B9;
    box-sizing: border-box;
    border-radius: 2px;
    border-spacing: 0px;
}

.myc-std-widget .myc-widget-head-wrap{
    display: block;
    width: 100%;
    top: 0;
    position: sticky;
}

.myc-std-widget .myc-widget-heading-row{
    display: block;
    background: #f2f2f2;
    text-align: left;
}

.myc-std-widget .myc-widget-cnames-row{
    background: #f2f2f2;
    width: 100%;
    display: flex;
}

.myc-std-widget .myc-widget-body{
    display: block
}

.myc-std-widget .myc-widget-data-row{
    display: flex;
    width: 100%;
}

.myc-std-widget .myc-widget-heading{
    padding: 10px 25px;
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.7px;
    /* border: 1px solid #B9B9B9; */
    box-sizing: border-box;
    border-spacing: 0px;
}

.myc-std-widget .myc-widget-cname{
    width: 33%;
    padding: 11px 25px;
    text-align: left;
    color: #2d2d2d;
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    line-height: 12px;
    border: 1px solid #B9B9B9;
    border-spacing: 0px;
}

.myc-std-widget .myc-widget-data-cell {
    word-wrap: break-word;
    width: 33%;
    padding: 11px 25px;
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    border: 1px solid #B9B9B9;
    border-spacing: 0px;
}

.myc-widget-data-cell.end-of-output{
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
}

.myc-std-widget .fa.fa-check-circle {
    color:#B9B9B9;
    font-size: 13px;
}

.myc-std-widget .clickable {
    cursor: pointer;
}

.myc-std-widget .fa.fa-check-circle.checked {
    color:#21bd4a;
}

/****************************************** SEARCH FILTERS NEW **************************************/
/****************************************** SEARCH FILTERS NEW **************************************/
/****************************************** SEARCH FILTERS NEW **************************************/
/****************************************** SEARCH FILTERS NEW **************************************/
/****************************************** SEARCH FILTERS NEW **************************************/
/****************************************** SEARCH FILTERS NEW **************************************/
/****************************************** SEARCH FILTERS NEW **************************************/
/****************************************** SEARCH FILTERS NEW **************************************/


.disable-overlay{
    display: none; 
    position: absolute; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background: #cecdcda6;  
    cursor: not-allowed; 
}

.myc_filtersearch-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.myc_filterfield-first-item {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
}

.myc_filterfield-second-item { 
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
}

.myc_filterfield-empty-item {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
}

.extra-filter {
    margin-top: 20px;
}

.btn-add-disable {
    opacity: 0.43;
    pointer-events: none;
}

.btn-add-disable:hover {
    cursor: default;
}

.myc_table_list tbody tr.error_list_row { 
    background-color: #e9baba!important;
}

.myc_table_list tbody tr.error_list_row:hover{
    background-color: #e9baba!important;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:25px;
}

.button-wrapper.special-direction {
    flex-direction: column;
    align-items: flex-start;
}

#trouble-button {
    width: 350px;
    margin-top: 10px;
    line-height: 22px;
}

.logincontainer .myc_form .button-wrapper input[type=submit]{
    margin-top: 0;
    margin-left: 0;
    width: 180px;

}

.ms-button {
    background: #ffffff;
    width: 180px;
    padding: 10px 0px !important;
    position: relative;
    border: 1px solid black;
    display: flex;
    justify-content: center;
}

span.microsoft-btn-text {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    position: relative;
    left: 10px;
    align-self: center;
}

.txt-in-a-middle {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
}

.ms-button:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    transition: 0.3s;
}

.logincontainer.special-padding {
    padding-top: 60px;
}

.welcome-msg {
    text-align: left;
    margin-bottom: 10px;
}

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

.maincontent_login form.special-padding { 
    padding-top: 0;
}

.new-button-login.special-padding .ms-button {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #5E5E5E;
    width: 350px;
    border: 1px solid #A0A0A0;
    box-sizing: border-box;
    border-radius: 3px;
}
.ms-button-two-col .microsoft-btn-text {
    width: 140px;
    text-align: left;
}

.new-button-login.special-padding img.img-microsoft {
    left: 55px;
}

.student_menu_items .student_menu_text {
    text-transform: uppercase;
}

.student_menu_items .student_menu_item {
    display: flex;
    flex-direction: column;
    min-height: 35px;
    justify-content: center;
    align-items: center;
}

.student_menu_item:hover .icon-wrapper svg path {
    fill: #ffffff;
}

.student_menu_active .icon-wrapper svg path {
    fill: #ffffff;
}

.collapse-parent {
    background-color: #EBEBEB;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.collapse-parent.dark {
    background-color: #7e7e7e;
}

.collapse-text-heading {
    display: flex;
    font-family: Arial;
    font-size: 12px;
    line-height: 20px;
    color: #333333;
}

.dark .collapse-text-heading{ 
    color: #fafafa;
    font-size: 14px; 
}

.collapse-text-heading .main-text{
    margin-right: 15px;
    font-weight: bold;
    font-style: normal;
}

.collapse-text-heading .secondary-text{
    font-weight: 400;
    font-style: italic;
}

.collapse-icon-wrapper svg{
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    transition: 0.25s
}


.collapse-parent.collapsed .collapse-icon-wrapper svg{
    transform: rotate(180deg);
}

.checklist-doc-info .icon-info .fa.fa-info-circle{
    color: #666666;
    font-size: 11px;
}

.checklist-files-manager .deposit-uploader { 
    padding: 8px 0;
    border: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23333' stroke-width='2' stroke-dasharray='15' stroke-dashoffset='5' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 8px;
    display: flex;
    justify-content: center;
}

.checklist-files-manager .files-list {
    margin-top: 0;
}

.checklist-files-manager .upload-subheading { 
    font-size: 13px;
    line-height: 20px;
}

.checklist-files-manager .upload-action-link { 
    text-decoration: none;
    font-weight: 700;
}

.checklist-files-manager .upload-icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.checklist-files-manager .upload-icon-wrapper {
    margin-right: 15px;
}

.checklist-files-manager {
    display: flex;
    flex-direction: column;
}

.files-popup{
    display: none;
    position: absolute;
    top: -150px;
    left: -320%;
    box-shadow: 5px 5px 10px 1px #000000;
    background: #FFFFFF;
    z-index: 2000;
}

.files-popup.popup-active {
    display: block;
    left: 50%;
}

.files-popup .files-list {
    padding: 20px;
}

.files-popup .files-list .single-file {
    min-width: 320px;
}

.file-icon-wrapper svg {
    width: 16px;
    height: 20px;
}

.checklist-files-manager .files-popup .single-action-icon {
    font-size: 23px;
    line-height: 18px;
}

.checklist-files-manager .files-popup .single-action-icon svg {
    margin-top: 1px;
    width: 16px;
    height: 20px;
}

.files-popup .close-icon:hover{
    cursor: pointer;
    color: #F26822;
}

.rename-file:hover svg path {
    fill: #bc9534;
}

.checklist-files-manager .single-action-icon.rename-file svg {
    height: 16px;
    width: 16px;
    margin-top: 3px;
}

.checklist-files-manager .action-icon-wrapper {
    margin: 0;
    text-align: right;
}

.file-amount-text {
    font-weight: 800;
}

.file-amount-text:hover {
    cursor: pointer;
}

.checkboxes-files-manager .single-file { 
    line-height: 14px;
}

.close-wrapper {
    position: absolute;
    right: 0;
    margin-top: 5px;
    margin-right: 5px; 
}

.close-wrapper .close-icon {
    font-size: 20px;
    color: #aaaaaa;
}

.radio-wrapper.allowed:hover {
    cursor: pointer;
}

.radio-wrapper.allowed {
    transition: all 0.35s ease-in-out;
}

.radio-wrapper.active svg {
    background: #2F2F2F;
    border-radius: 100%;
}

.radio-wrapper.active svg path {
    fill: #FFFFFF;
}

.radio-wrapper.active svg rect {
    stroke: #2F2F2F;
}

.radio-wrapper svg path {
    fill: #00000000
}

.checklist-note { 
    height: 70px;
    width: 152px;
    background: #FFF;
    border: 2px solid grey;
    overflow: hidden;
}

.checklist-note.allowed:hover:hover {
    cursor: pointer;
}

.checklist-note .note-wrap {
    height: 100%;
}


.note-wrap {
    padding: 10px;
}

.note-wrap .note-area {
    width: 98%;
    height: 103px;
}

.note-text {
    word-break: break-all;
}

.note-text.empty {
    color: #868686;
}

.files-popup.note-popup {
    min-width: 270px;
    min-height: 210px;
}


.myc_table_form td.myc_table_radio_wrap {
    padding: 12px!important;
}

.myc_table_form td.myc_table_radio_wrap.g-special {
    padding: 8px!important;
}
.g-special.myc_table_label{
	padding-top: 8px !important;
}

.myc_table_radio_wrap label {
    margin-left: 10px;
}

.myc_table_radio_wrap span {
    font-weight: 800;
}

.myc_table_radio_wrap.green span {
    color: #009900;
}

.myc_table_radio_wrap.red span {
    color: #990000;
}

.conclude-block{
    margin: 20px 20px 0 50px;
}
.conclude-items {
    flex: 1;
}

.conclude-items-heading { 
    display: flex;
}

.conclude-items-icon { 
    margin-right: 10px;
}

.conclude-items-icon svg{ 
    width:20px;
    height: 22px;
}

.text-heading-1 { 
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
}

.text-heading-2 { 
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
}

.counting-items {
    margin: 0 50px 0 -50px;
}

.counting-inner-wrapper { 
    height: 100%;
    overflow: hidden;
}

.vertical-line-wrapper { 
    position: relative;
}

.counting-vertical-line-wrapper { 
    height: 83%;
    margin-top: 20px;
}

.vertical-line { 
    position: relative;
    width: 2px;
    height: 100%;
    background: #000000;
    margin: auto;
}

.conclude-items-body-wrapper {
    margin-top: 15px;
}

.text-heading-3 {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 14px;
}

.conclude-single-collection-wrapper {
    margin-left: 12px;
    margin-bottom: 18px;
}

.text-body-1 { 
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
}

.conclude-single-item-body {
    line-height: 20px;
}

.file-editable-info {
    display: none;
}

.radio-block {
    display: flex;
    margin-top: 3px;
    height: 32px;
}

.radio-block .audit-wrapper {
    margin-left: 5px;
}

.checklist-date {
    min-height: 50px;
}

.highlight-mandatory {
    background-color: #fff0f0 !important;
}

.highlight-mandatory:hover {
    background-color: #f9e6e6 !important;
}

.highlight-error { 
    background-color: #ffeeee !important;
}

.checklist-note.highlight-error, .checklist-files-manager .deposit-uploader.highlight-error{
    border: 2px solid red;
    background-color: #ffc1c1 !important;
}

.main-checklist-wrapper {
    margin-bottom: 30PX;
}

.download-file svg path{
    fill: #363636;
}

.download-file:hover svg path {
    cursor: pointer;
    fill: #5dbc43;
}

.myc_nav_item.checklist_icon svg{
    height: 14px;
}
.myc_nav_item.checklist_icon.hover svg path{
    fill: #808080;
}

td.myc_table_list_functions a {
    white-space: nowrap;   
}

.table-value {
    padding: 12px 5px 5px 5px;
}

.myc_table_label_2 { 
	text-align: left;
	background-color: #FCFCFC;
	font-weight: bold;
	padding-top: 12px !important;
	padding-left: 25px !important;
	padding-bottom: 12px !important;
    font-size: 16px;
}

#rc_display_image{
    width: 400px;
    height: 225px;
    border: 1px solid black;
    background-position: center;
    background-size: cover;
}

#rc_current_display_image img {
    width: 400px;
    height: 225px;
    border: 1px solid black;
    object-fit: cover;
}

.trouble_subheading {
    display: flex;
    color: #17264F;
    margin-top: 7px;
}

.trouble_subheading .info-text {
    margin-left: 5px;
    text-align: left;
}

.one-time-link-wrapper {
    background: #FFFFFF;
    display: flex;
    width: 392px;
    height: 314.07px;
    margin: auto;
}

.one-time-link-main {
    position: relative;
    box-sizing: border-box;
    margin: 20px;
    border: 1px solid #EDEDED;
    width: 100%;
}

.trouble-big-mail-icon {
    margin: 15px 0;
}

#forgotForm .myc_form.trouble-resend-form {
    display: block;
    margin-top: 0;
}

.trouble-resend-form .myc_table_formbutton {
    display: block;
    padding: 0;
}

#forgotForm .myc_form.trouble-resend-form input[type=submit] {
    margin: 0;
    margin-bottom: 4px;
    width: 95%;
}

.myc_form .myc_table_formbutton_grey input[type=submit]{
    background: #E4E8EA;
    color: #000000;
}

.maincontent_login .one-time-link-main form#forgotForm {
    padding-top: 0;
    margin: 12px;
    width: initial;
}

.one-time-link-main .trouble_subheading {
    margin-bottom: 10px;
}

.one-time-link-main .trouble_subheading .info-text {
    margin-left: 10px;
}

.one-time-link-main  #forgotForm .myc_table_heading {
    margin-left: 10px;
}

.myc_form .myc_table_formbutton_grey input[type=submit]:hover {
    cursor: pointer;
    background-color: #dbdbdb;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.magnifying-link {
    display: inline-block;
    margin-left: 5px;
    font-size: 13px;
}

/* Simple loader snippet */
#simple-loader-wrapper {
    display: none;
    margin: 50px 0; 
    width: 100%;
}

#simple-loader-inner-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

#simple-loader {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 3px solid rgb(85, 85, 85);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}


.page-header {
    display: flex;
    flex-direction: row;
    padding: 15px;
    margin-top: 10px;
    width: 98%;
    background: #FCFCFC;
}

.left-image-header {
    width: 250px;
    margin-right: 25px;    
}

.right-text-header {
    margin-right: 35px;
    flex-grow: 1;
}

.left-image-header img {
    width: 250px;
}

.page-body {
    margin-top: 25px;
    margin-right: 375px;
}

.page-footer {
    padding: 15px 0px;
    margin-top: 10px;
    width: 100%;
    background: #FCFCFC;
}

.page-footer-wrapper {
    margin-right: 375px;
}

.row-preview-page{
    display: block;
    position: absolute;
    bottom: 0%;
    left: 65%;
    z-index: 1000;
}

.row-preview-page .myc_table_formbutton input[type=submit]{
    margin-top: 0px;
    font-size: 14px;
    color: #FFFFFF;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* .search-page-searchbar-wrapper{
    width: 80%;
    margin: 0 auto;
    margin-top: 80px;
} */

.searchpage-searchbar-header{
    font-family: Arial;
    font-size: 25px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 10px;
}



.searchbar.big {
    width:100%;
    position: relative;
}

.searchbar.small {
    width:100%;
    position: relative;
}

.big .searchbar-wrapper{
    display: flex;
    background: #ffffff;
    width: 786px;
    height: 47px;
    margin: auto;
    border-radius: 10px;
}

#search-dropdown{
    position: absolute;
    left:0px;
    right:0px;
}
.big #search-dropdown{
    top:47px;
}
.small #search-dropdown{
    left:10px;
    top:35px;
}


.searchbar-input-wrapper { 
    border: 1px solid #EDEDED;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right: none;
    flex: 18;
}

.big .searchbar-input-wrapper { 
    padding: 5px 0 5px 30px;
}



.searchbar-search-icon-wrapper { 
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    border: 1px solid #EDEDED;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: none;
    cursor: pointer;
}

.big .searchbar-search-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.searchbar-input {
    width: 100%;
    color: #4C5961;
    font-family: Arial;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: left;
    border: 0;
}

.big .searchbar-input { 
    font-size: 15px;
    line-height: 32px;
}

.small .searchbar-input { 
    font-size: 15px;
    line-height: 32px;
}

.searchbar-input:focus-visible{
    outline: 0;
}

.searchbar-dropdown-wrapper { 
    border: 1px solid #EDEDED;
}

.big .searchbar-dropdown-wrapper {
    margin: 0 6px;
    background: #ffffff;
    width: 771px;
    margin: auto;
}



.searchbar-dropdown-wrapper.empty{ 
    display: none;
}

.dropdown-result-wrapper { 
    cursor: pointer;
    box-sizing: border-box;
}

.dropdown-result-wrapper.inactive{
    pointer-events: none;
    cursor: default;
}

.big .dropdown-result-wrapper { 
    padding: 5px 0 5px 28px;
}



.dropdown-result-wrapper:hover {
    background-color: #F8F8F8;
}

.dropdown-result {
    color: #4C5961;
    font-family: Arial;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: left;
    pointer-events: none;
}


.big .dropdown-result { 
    font-size: 14px;
    line-height: 32px;
}

.small .dropdown-result { 
    font-size: 14px;
    line-height: 32px;
}

.search-page-results-wrapper {
    width: 80%;
    margin: 0 auto;
    margin-top: 60px;
    display: grid;
    gap: 50px 100px;
    grid-template-columns: auto auto;
}

.results-category-block {
    width:50%;
}

.results-category-header{
    margin-bottom: 15px;
    font-family: Arial;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
}

.results-category-header .navigation-item a {
    text-decoration: none;
}

.results-items {
    margin-left: 0;
    padding-left: 16px;
}

.results-items li {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 6px;
}

.navigation_subitems a.important-link {
    padding-bottom: 0;
    cursor: pointer
}

.navigation_subitems a span.nav_column1 {
    display: inline-block;
    width: 120px;
}
.navigation_subitems a span.my-contact-phone {
    color:  #333333;
}
.navigation_subitems a:hover span.my-contact-phone {
    color:  #999999;
}
.help-center-title {
    color: #F15B30;
    text-transform: uppercase;
}
.help-center-search-box {
    background: #F3F3F3;
    padding: 60px 20px 40px;
    margin: 6px 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.search-box-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
}
.help-center-search-form {
    position: relative;
}
.help-center-search-form #search {
    width: 786px;
    height: 47px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    box-shadow: 0px 10px 50px rgb(0 0 0 / 5%);
    font-size: 14px;
    outline: none;
    padding: 0 5px;
    transition: all 0.3s;
}
.help-center-search-form #search::placeholder {
    color: #C5C5C5;
}
.help-center-search-form #search:focus {
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    border: 1px solid rgb(0 0 0 / 15%);
}
.help-center-search-form .search-btn {
    width: 47px;
    height: 47px;
    margin-left: -5px;
    background: #DD643F;
    border-radius: 0px 5px 5px 0px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 1px;
    transition: all 0.3s;
}
.help-center-search-form .search-btn:hover {
    opacity: 0.7;
}
.help-center-tab {
    display: flex;
    border-bottom: 1px solid #D7D7D7;
    justify-content: center;
    margin-bottom: 37px;
}
.tab-list {
    margin-right: 74px;
}
.help-center-tab .tab-list a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}
.help-center-tab .tab-list a:hover {
    color: #F15B30;
}
.help-center-tab .tab-list.active {
    border-bottom: 2px solid #F04C2E;
    padding-bottom: 5px;
    font-weight: 700;
    transition: all 0.1s;
}

.tab-info-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    transition: all 0.3s;
}
.tab-info-item .listitems-categories h3 a{
     text-decoration: none;
}
.tab-info-item .tab-info-card {
    transition: all 0.3s;
    height: auto;		
}
.tab-info-item .tab-info-card.hide-card {
    display:none;
}
.tab-info-popular .tab-info-card:hover {
    background: #FCFCFC;
    box-shadow: 2px 6px 4px rgb(0 0 0 / 15%);
    transform: scale(1.1);
}
.tab-info-card {
    padding: 16px 35px 24px 16px;
    width: 400px;
    margin-bottom: 15px;
}
.tab-info-card > a {
    text-decoration: none;
}	
.tab-info-card h3 {
    color: #53686A;
    padding-bottom: 5px;
    font-size: 18px;
}	
.tab-info-popular .tab-info-card:hover h3, .tab-info-popular .tab-info-card:hover p {
    color: #F15B30;
}
.tab-info-card p {
    font-size: 14px;
    color: rgba(60, 60, 67, 0.85);
    line-height: 22px;
}
.tab-info-card li {
    font-size: 14px;
    margin-bottom: 17px;
}
.tab-info-card li a {
    color: #618DB7;
    transition: all 0.3s;
}
.tab-info-card li a:hover {
    color: #F15B30;
}
.tab-info-more, .tab-info-less {		
    position: relative;
    padding-bottom: 140px;
    z-index: 10;
    margin-top: 30px;
}
.tab-info-more:before, .tab-info-less:before {
    content: "";
    border-bottom: 1px solid #D7D7D7;
    width: 100%;
    display: block;
}
.tab-info-more a, .tab-info-less a {
    position: absolute;
    top: -10px;
    left: 0;
    text-align: center;
    color: #F15B30;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
}
.tab-info-more a > span, .tab-info-less a > span {
    background: #fff;
    padding: 15px 30px;
    position: relative;		
}
.tab-info-more a svg, .tab-info-less a svg {
    transition: all 0.1s;
}
.tab-info-less svg {
    transform: rotate(180deg);
}
.faq {
    margin-bottom: 35px;
}
.faq-title {
    font-size: 25px;
    text-align: center;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 27px;
}
.faq-list {
    border-top: 3px solid rgba(205, 214, 218, 0.25);
    cursor: pointer;
}
.faq-list-title {
    padding: 20px 0;
    color: #37474F;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
}
.faq-list-title:hover {
    padding-left: 10px;
}
.faq-list-title .cross {
    position: absolute;
    right: 0;
    transition: all 0.1s;
    cursor: pointer;
}
.faq-list.active .faq-list-title {
    border-bottom: 3px solid rgba(205, 214, 218, 0.25);
}
.faq-list.active .cross {
    transform: rotate(45deg);
}
.faq-list.active .faq-content {
    height: auto;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
}
.faq-content p {
    transition: all 0.3s;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
      height: 0;
    opacity: 0;
    visibility: hidden;
}
.faq-list.active .faq-content p {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-bottom: 33px;
    margin-top: 17px;
} 
.faq-content p a {
    color: #f15b30;
    font-weight: 700;
}
.tab-info-single-category > a{
    text-decoration: none;
}

.tab-info-single-category .tab-info-card:hover {
    background: #FCFCFC;
    box-shadow: 2px 6px 4px rgb(0 0 0 / 15%);
    transform: scale(1.02);
}

.grid-info-item {
    display: grid;
    grid-template-columns: 650px 650px;
    column-gap: 25px;
    row-gap: 35px;
    width: 1250px;
    margin: auto;
    transition: all 0.3s;
}
.grid-info-item .tab-info-card {
    transition: all 0.3s;
    height: auto;		
}
.grid-info-item .tab-info-card.hide-card {
    visibility: hidden;
}

.grid-info-item.tab-info-single-category.load-more {
    margin-top: 35px;
}

.hc-readmore-link {
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
}

.tab-info-single-category .tab-info-card {
    cursor: pointer;
}

.tab-info-single-category .tab-info-card h3, .tab-info-single-category .tab-info-card p{
    pointer-events: none;
}

.helpcenter-header-wrapper {
    display: flex;
    justify-content: space-between;
}

.page-searchbox-wrapper {
    width: 400px;
    position: relative;
}

.page-searchbox-title {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.small .searchbar-wrapper{
    display: flex;
    background: #ffffff;
    width: 100%;
    height: 35px;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.small .searchbar-input-wrapper { 
    padding: 2px 0 2px 12px;
    flex: 10;
}

.searchbar-input {
    width: 100%;
    color: #4C5961;
    font-family: Arial;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: left;
    border: 0;
}

.small .searchbar-input { 
    font-size: 13px;
    line-height: 28px;
}

.small .searchbar-dropdown-wrapper {
    position: absolute;
    z-index: 10000;
    background: #FFFFFF;
    width: 95%;
    top: 61px;
    left: 5px;
}

.small .dropdown-result-wrapper { 
    padding: 2px 0 2px 12px;
}

.mycampus-block-config{
    position:absolute;
    right: 10px;
    margin-top: 5px;
}

.mycampus-block-config-content{
    margin-top: 10px;
}

.mc-form-container input:first-child{
    margin-right: 10px;
}

@media (max-width: 991px){
    .mycampus-block-config {
        display: block !important;
    }
}

/**MAINTENANCE PAGE**/
.maintenance-container {
    width: 100vw;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    color: #4C5961;
}

.maintenance-container ul{
    list-style: none;
}

.maintenance-container li{
    float: left;
}

.maintenance-container li a{
    font-size: 15px;
    padding-right: 15px;
    color: #4C5961;
    text-decoration: none;
}

.maintenance-container li a:hover, 
.maintenance-container li a:visited:hover{
    color: #F26722;
}

.maintenance-container li a:active{
    color: #F26722;
}

.maintenance-container li a:visited{
    color: #4C5961;
}

.maintenance-container li a.active-link{
    font-weight: 700;
    text-decoration: underline;
}

.maintenance-container h1{
    font-size: 50px;
    margin-bottom: 30px;
}

.maintenance-container p{
    font-size: 20px;
    line-height: 30px;
}

.maintenance-text-container{
    width: 454px;
}

.maintenance-text-container span{
    font-weight: 700;
}

.maintenance-content{
    width: 100%;
    height: 80%;
}

.maintenance-content-language{
    padding: 33px 36px;
}

#maintenanceFrench{
    display: none;
}

.maintenance-image-container img{
    object-fit: contain;
    width: 50vw;
    max-width: 745px;
}

@media (max-width: 1215px){
    .maintenance-content{
        flex-direction: column;
    }

    .maintenance-container h1{
        font-size: 50px;
        margin-bottom: 30px;
    }
    
    .maintenance-container p{
        font-size: 20px;
        line-height: 30px;
    }
    

    .maintenance-content{
        justify-content: flex-start;
        margin-top: 60px;
    }

    .maintenance-image-container{
        display:none;
    }

    .maintenance-container{
        background-image: url('/template/images/maintenance_img.png');
        background-repeat: no-repeat;
        background-position: bottom;
    }
}

@media (max-width: 604px){
    .maintenance-container h1{
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .maintenance-container p{
        font-size: 16px;
        line-height: 30px;
    }

    .maintenance-content-language{
        padding: 33px 0px;
    }

    .maintenance-text-container {
        width: 289px;
    }
    
}

@media (max-width: 375px){
    .maintenance-container h1{
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .maintenance-container p{
        font-size: 16px;
        line-height: 24px;
    }

    .maintenance-text-container {
        width: 236px;
    }

    .maintenance-container{
        background-size: 100%;
    }
    
}

.object-fit-cover{
    object-fit: cover;
}

.red-text-error{
    color: #FF0000; 
    font-weight: bold;
}
