.adp-ui-html, .adp-ui-body{
    background: #f4f4f4 !important;
    font-family: 'Lato', sans-serif;
}

.adp-header-wrap{
    height: 100px;
}

.adp-header{
    background: #ffffff;
    position: fixed;
    height: 100px;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 100;
    display: flex;
}

.admin-bar .adp-header{
    top: 32px;
}

.adp-header-logo{
    width: 120px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-self: center;
}

.adp-header-logo a{
    display: block;
    height: 100%;
}

.adp-header-logo.adp-dark-logo{
    background: #2c3054;
}

.adp-header-logo img{
    max-height: 100%;
    width: auto;
}


.adp-header-menu{
    width: calc(100% - 340px);
}

.adp-header-menu ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.adp-header-menu ul li{
    display: inline-block;
    margin: 0px 15px;
}

.adp-header-menu ul li a{
    display: block;
    height: 100%;
    line-height: 100px;
    padding: 0px 20px;
    font-size: 20px;
    border-bottom: 4px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #2c3054;
}

.adp-header-menu ul li a:hover, .adp-header-menu ul li.current a{
    color: #0f1545;
    border-bottom-color: #0f1545;
}

.adp-header-options {
    width: 220px;
    padding: 0px 50px 0px 20px;
    display: flex;
    align-items: center;
}

.adp-header-user {
    width: 50px;
    height: 50px;
    background: #0f1545;
    border-radius: 50%;
    margin-right: 30px;
}

.adp-header-logout {
    font-size: 20px;
    border-bottom: 1px solid;
}

.adp-sidebar {
    position: fixed;
    left: 0;
    top: 100px;
    bottom: 0px;
    background: white;
    width: 120px;
    z-index: 100;
    overflow-y: auto;
}

.admin-bar .adp-sidebar{
    top: 132px;
}

.adp-sidebar-nav{
    list-style: none;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.adp-sidebar-nav li{
    margin-bottom: 20px;
}

.adp-sidebar-nav li a{
    color: #a5a5a5;
    display: block;
    padding: 20px 2px;
    text-decoration: none;
}

.adp-sidebar-nav li a:hover, .adp-sidebar-nav li.current a{
    color: #0f1545;
}


.adp-sidebar-nav-icon{
    display: block;
    font-size: 30px;
}

.adp-sidebar-nav-title {
    font-size: 16px;
}

.adp-page{
    padding: 40px 40px 40px 120px;
}

.adp-page-header {
    display: flex;
    margin-bottom: 20px;
    margin-left: 30px;
}

.adp-header-icon {
    font-size: 45px;
    color: #0f1545;
    margin-right: 20px;
}

.adp-header-set {
    width: calc(100% - 55px);
}

.adp-header-set.adp-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adp-header-title {
    font-size: 24px;
    color: #0f1545;
    font-weight: 500;
    margin-top: 7px;
}

.adp-header-subtitle {
    font-size: 18px;
    color: #959595;
}

.adp-container{
    margin-left: 40px;
}

.adp-card-action {
    background: white;
    padding: 30px 40px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 100px;
    z-index: 99;
    font-family: 'Lato', sans-serif;
    box-shadow: 0px 1px 1px #f4f4f4;
    align-items: center;
}


.admin-bar .adp-card-action {
    top: 132px;
}
.adp-action-title {
    font-size: 24px;
    line-height: 46px;
    font-weight: 500;
    color: #0f1545;
}

.adp-display-shortcode{
    font-size: 14px;
    line-height: normal;
}

.adp-action-options {
    display: flex;
}

.adp-button {
    background: #2c3054;
    border-radius: 4px;
    color: #fdfdfd;
    padding: 8px 24px;
    font-size: 18px;
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none !important;
}

.adp-button:hover{
    background: #585e95;
    color: #ffffff;
}

.adp-button-outline {
    background: transparent;
    border: 1px solid #2c3054;
    border-radius: 4px;
    color: #2c3054 !important;
    padding: 8px 24px;
    font-size: 18px;
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
    outline: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none !important;
    box-shadow: none !important;
}

.adp-button-outline:hover{
    background: #585e95;
    color: #ffffff !important;
}


.adp-button:disabled,
.adp-button-outline:disabled{
    opacity: 0.6;
}

.adp-button-outline.adp-button-danger{
    color: #fb5c5c !important;
    border-color: #fb5c5c;
}

.adp-button-outline.adp-button-danger:hover{
    background: #fb5c5c;
    color: #ffffff !important;
}

.adp-button-outline.adp-button-sm {
    padding: 6px 12px;
    font-size: 16px;
}

.adp-button.adp-button-sm{
    padding: 6px 12px;
    font-size: 16px;
}


td .adp-button.adp-button-sm,
td .adp-button-outline.adp-button-sm{
    padding: 4px 12px;
}


.adp-button-action {
    border-radius: 4px;
    border: solid 1px #959595;
    background: transparent;
    color: #959595;
    font-size: 16px;
    padding: 6px 12px;
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
    outline: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.adp-button-action:hover{
    background: #fbfbfb;
    color: #959595;
}

.adp-action-options > *{
    margin-left: 10px;
}

.adp-alert {
    background: white;
    margin-bottom: 30px;
    padding: 10px 20px 10px 50px;
    position: relative;
}

.adp-alert i {
    position: absolute;
    left: 20px;
    top: 16px;
}

.adp-alert span {
    font-size: 18px;
    color: #0f1545;
}

.adp-alert.adp-update-alert i {
    color: #20db20;
}

.adp-alert.adp-info-alert i {
    color: #0f1545;
}

.adp-alert.adp-info-alert i:before{
    content: "\f05a";
}

.adp-alert.adp-error-alert i {
    color: #ca0c0c;
}

.adp-alert.adp-error-alert i:before{
    content: "\f06a";
}

.adp-card{
    background: #ffffff;
    margin-bottom: 30px;
    padding: 30px 40px;
    font-family: 'Lato', sans-serif;
}

.adp-card-header{
    border-bottom: solid 1px #ececec;
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adp-card-header-title{
    font-size: 20px;
    line-height: 46px;
    font-weight: 600;
    color: #0f1545;
    font-family: 'Lato', sans-serif;
}

.adp-card-header-options form{
    margin-bottom: 0px;
}

.adp-card-header-options{
    display: flex;
    align-items: center;
}

.adp-card-header-options-set{
    margin-right: 20px;
}

.adp-card-header-options-set:last-child{
    margin-right: 0px;
}

.adp-card-body{
    padding: 0.5rem 0px;
}

.adp-field-group {
    display: flex;
    max-width: 900px;
    margin-bottom: 20px;
}

.adp-field-label {
    width: 40%;
    margin-right: 2%;
    font-size: 18px;
    color: #424242;
}

.adp-field {
    height: 40px;
    width: 100%;
    outline: 0;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #dedfe2;
    border-radius: 3px;
    box-shadow: none;
    padding: 0 12px;
    min-height: 40px;
    color: #414141;
    font-size: 18px;
}

.adp-field.adp-sub-field {
    width: 48%;
    margin-right: 3%;
}

.adp-field.adp-sub-field:last-child {
    margin-right: 0;
}

.adp-field-group > .adp-field{
    width: 58%;
}

input[type=checkbox].adp-field , input[type=radio].adp-field {
    width: 20px;
}

textarea.adp-field {
    height: 100px;
    resize: none;
}

.adp-field-radio label{
    margin-right: 15px;
    margin-bottom: 0px;
    line-height: 40px;
    vertical-align: middle;
} 
.adp-repeater-wrapper {
    width: 58%;
}

.adp-repeater-set {
    margin-bottom: 30px;
}

.adp-repeater-field {
    margin-bottom: 20px;
}

.adp-repeater-actions a {
    font-size: 24px;
    color: #2c3054;
}

.adp-repeater-actions a:hover {
    color: #585e95;
}


.adp-cols{
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    margin: 0px -15px;
}

.adp-col {
    width: 100%;
    padding: 0px 15px;
}

.adp-cols.adp-cols-wrap-3{
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
}


.adp-cols.adp-cols-wrap-3 .adp-col {
    width: auto;
    max-width: 50%;
}

.adp-cols.adp-cols-3 .adp-col {
    width: 33.33%;
}

.adp-cols.adp-cols-4 .adp-col {
    width: 25%;
}

.adp-cols.adp-cols-2 .adp-col {
    width: 50%;
}

.adp-cols.adp-cols-1 .adp-col {
    width: 100%;
}

.adp-cols.adp-cols-3-2 .adp-col:first-child {
    width: 58.33%;
}

.adp-cols.adp-cols-3-2 .adp-col:last-child {
    width: 41.66%;
}

.adp-cols.adp-cols-border .adp-col:not(:last-child){
    border-right: 1px solid #e3e3e3;
}

.adp-cols.adp-cols-adjust .adp-col:first-child{
    width: 25%;
}
.adp-cols.adp-cols-adjust .adp-col:nth-child(2){
    width: 50%;
}
.adp-cols.adp-cols-adjust .adp-col:last-child{
    width: 25%;
}

.adp-fields-row{
    margin-bottom: 15px;
}

.adp-col form{
    margin-bottom: 0px;
}

.adp-col-set {
    display: flex;
}

.adp-col-set.adp-col-set-block {
    display: block;
}

.adp-col-name {
    font-size: 18px;
    font-weight: 500;
    color: #636363;
    margin-right: 20px;
}

.adp-col-val {
    color: #0f1545;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.adp-capitalize{
    text-transform: capitalize;
}
 
.adp-col-list-title {
    color: #0f1545;
    font-size: 18px;
    font-weight: 500;
    border-bottom: solid 1px #ececec;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.adp-col-list-item {
    display: flex;
    flex-wrap: wrap;
}

.adp-col-list-item-label {
    font-size: 18px;
    width: calc(100% - 55px);
    font-weight: 500;
    color: #636363;
}

.adp-col-list-item-value {
    margin-left: 5px;
    color: #0f1545;
    font-size: 18px;
    font-weight: bold;
    width: 50px;
}

.adp-col-count-item{
    text-align: center;
}

.adp-col-count-item-label {
    color: #959595;
    font-size: 18px;
    margin-bottom: 10px;
}

.adp-col-count-item-value {
    border-radius: 8px;
    background-color: #0f1545;
    display: inline-block;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    padding: 11px 20px;
    font-weight: bold;
}

.adp-col-video{
    margin-bottom: 30px;
}

.adp-table-responsive{
    overflow-x: auto;
}

.adp-table{
    font-size: 14px;
    border: none;
}

.adp-table thead tr th{
    font-size: 14px;
    padding: 0.5rem;
    border-bottom: 1px solid #D6D9DD;
}

.adp-table thead tr th:first-child{
    padding-left: 0px !important;
}

.adp-table tbody tr td{
    padding: 0.8rem 0.5rem;
}

.adp-table tbody tr td:first-child{
    padding-left: 0px !important;
}

.adp-table tbody tr td{
    border-bottom-color: #D6D9DD;
}

/* Settings styles */

.adp-inner-action {
    display: flex;
    align-items: center;
}

.adp-inner-action .adp-action-title{ 
    width: 40%;
}

.adp-inner-action .adp-action-input{
    width: 30%;
}


.adp-card-body-heading {
    font-size: 16px;
    font-weight: 600;
    color: #0f1545;
    padding: 10px 0px;
    border-bottom: solid 1px #ececec;  
}

.adp-card-body-list {
    margin-bottom: 20px;
}

.adp-card-body-list ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.adp-card-body-list ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
    border-bottom: 1px solid #ececec;
}

.adp-card-body-list ul {
    max-height: 200px;
    overflow-y: auto;
}


.adp-card-body-list ul li .adp-checkbox{ 
    margin-bottom: 0px;
}


.adp-card-body-list ul li:last-child {
    border-bottom: none;
}

.adp-card-body-list ul li .text{
    font-size: 16px;
    font-weight: 400;
    color: #424242;
    font-family: 'lato', sans-serif;
}

.adp-radio {
    color: gray;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 14px;
}

.adp-radio input[type=radio] {
    position: absolute;
    /* visibility: hidden; */
    opacity: 0;
    /* width: 0;
    height: 0; */
}

.adp-radio input[type=radio]:checked+label {
    color: #0f1545;
    font-weight: 500;
}

.adp-radio label {
    display: block;
    position: relative;
    padding: 0 0 0 22px;
    margin: 0;
    z-index: 9;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #0f1545;
    line-height: 18px;
    min-height: 18px;
    font-weight: 500;
    transition: border .25s linear;
}

.adp-radio input[type=radio]:checked+label:before {
    opacity: 1;
    background-color: #fff;
    z-index: -1;
    border: 4px solid #0f1545;
}

.adp-radio label:before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100%;
    height: 16px;
    width: 16px;
    top: 2;
    left: 0;
    z-index: 5;
    border: 2px solid #424242;
}

/* Modal */
.adp-modal-header {
    margin-bottom: 10px;
}

.adp-modal-header-title {
    font-size: 18px;
    font-weight: 500;
    font-family: 'lato', sans-serif;
    margin-bottom: 15px;
}

.adp-modal-body {
    background: white;
}

body.modal-open{
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.adp-form-control {
    border: 1px solid #dbdbdb;
    height: 46px;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
}

.adp-form-control-textarea {
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    padding: 10px;
    resize: none;
    width: 100%;
}

.adp-modal-footer  {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.adp-modal-footer .adp-button  {
    margin-left: 10px;
}

.adp-modal-footer .adp-button-outline.adp-button-sm  {
    cursor: pointer;
}


.modal-box {
	display: none;
    position: fixed;
    z-index: 1000;
    max-width: 800px;
    max-height: 95%;
    overflow-y: auto;
    background: white;
    border-bottom: 1px solid #aaa;
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    padding: 30px;
    border-radius: 4px;
    width: 100%;
    height: auto;
}

.modal-box.modal-lg {
    max-width: 1000px;
}

.modal-overflow-visible{
    overflow: visible;
}

.modal-box form{
    margin: 0px;
}

.modal-loading{
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.modal-loading i{
    font-size: 45px;
    color: #0f1545;
}

.modal-box.loading .modal-loading{
    display: flex;
}

.modal-box.loading{
    overflow: hidden;
}

.row-loading{
    opacity: 0.1;
    pointer-events: none;
}

.modal-overlay {
	opacity: 0;
	filter: alpha(opacity=0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3) !important;
}

a.close {
	line-height: 1;
	font-size: 1.5em;
	position: absolute;
	top: 5%;
	right: 2%;
	text-decoration: none;
	color: #bbb;
}

a.close:hover {
	color: #222;
	-webkit-transition: color 1s ease;
	-moz-transition: color 1s ease;
	transition: color 1s ease;
}


.form-group {
    margin-bottom: 1.5rem;
}

.js-open-modal {
    cursor: pointer;
}

.adp-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    line-height: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #2c3054;
}
.adp-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    border-radius: 2px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #707070;
}
/* On mouse-over, a grey background color */
.adp-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked , a blue background */
.adp-checkbox input:checked ~ .checkmark {
    background-color: #0f1545;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.adp-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.adp-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.adp-column-divider {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 50% 50%;
}

.adp-column-divider .adp-column-item {
    margin-right: 20px;
}

.adp-column-divider .adp-column-item:last-child {
    margin-right: 0px;
}

.adp-body-text-sub {
    font-size: 16px;
    line-height: normal;
    margin-top: 20px;
    color: #959595;
    margin-bottom: 0px;
}

.adp-abstract-table thead tr th,
.adp-focus-session-table thead tr th{
    padding: 0rem 1rem 0.3rem 0rem;
    color: #959595;
    font-weight: 400;
    white-space: nowrap;
}

.adp-abstract-table tbody tr td,
.adp-focus-sesion-table tbody tr td{
    padding: 0.5rem 1rem 0.3rem 0rem;
}

.reviewed {
    font-weight: 600;
    color: #0f1545;
}

.adp-search-input{
    position: relative;
}

.adp-search-input input{
    padding-left: 37px !important;
    padding: 5px;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    width: 240px;
}

.adp-search-input .search-icon{ 
    position: absolute;
    font-size: 18px;
    color: #000;
    left: 10px;
    top: 8px;
}

.adp-card-action.for-abstract-view .adp-action-title{
    width: 80%;
    line-height: normal;
}

.adp-card-action.for-abstract-view .adp-action-options{
    position: absolute;
    right: 25px;
}

.adp-detail-view {
    border-bottom: 1px solid #ececec;
    margin-bottom: 20px;
}

.adp-detail-view:last-child {
    border-bottom: none;
}

.adp-detail-view .adp-col-set {
    margin-bottom: 15px;
}

.adp-detail-view .adp-col-set .adp-col-name{
    width: 20%;
}

.adp-detail-view .adp-col-set.adp-col-set-block .adp-col-name {
    width: 100%;
}

.adp-detail-view .adp-col-set .adp-col-val{
    width: 80%;
    font-weight: 600;
}

.adp-detail-view .adp-col-set.adp-col-set-block .adp-col-val {
    width: 100%;
}

.adp-detail-view .adp-col-set .adp-col-val i{
    margin-right: 10px;
}

.adp-detail-view .adp-col-set .adp-cols{
    width: 80%;
}

.adp-detail-view .adp-col-set .adp-table-responsive{
    width: 80%;
}

.adp-detail-view .adp-col-set .adp-text{
    width: 80%;
}

.adp-detail-view .adp-col-set.adp-col-set-block .adp-text{
    width: 100%;
}

.adp-detail-view .adp-col-set .adp-cols.adp-sub-cols{
    width: 100%;
    margin: 0px;
}

.adp-card-title-info {
    font-size: 16px;
    color: #959595;
    font-weight: normal;
}

.private-comments {
    margin-top: 20px;
}

.private-comment {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: solid 1px #ececec;
}

.private-comment:last-child {
    border-bottom: none;
}

.private-comment-header {
    margin-bottom: 5px;
}

.private-comment-title {
    color: #0f1545;
    font-size: 18px;
}

.private-comment-meta {
    font-size: 16px;
    color: #959595;
}

.private-comment-body {
    color: #424242;
    font-size: 18px;
}

.private-comment-form textarea {
    resize: none;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    border-color: #dbdbdb;
}

.private-comment-action {
    text-align: right;
}

.comment-text {
    margin-top: 20px;
    font-size: 16px;
    color: #424242;
}

.adp-reassign-abstract{
    margin-bottom: 20px;
}

.adp-reassign-abstract .adp-reassign-abstract-title{
    padding: 10px 0px;
    border-bottom: 1px solid #ececec;
}

.adp-reassign-abstract .adp-reassign-abstract-title .title-label{
    font-size: 16px;
    color: #424242;
    margin-right: 15px;
}

.adp-reassign-abstract .adp-reassign-abstract-title .title-value{
    font-size: 18px;
    font-weight: 500;
    color: #0f1545;
}

.adp-reassign-abstract-list-set{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adp-reassign-abstract .adp-reassign-abstract-list .adp-reassign-abstract-list-title{
    font-size: 16px;
    color: #424242;
    margin: 10px 0px;
}

.adp-reassign-abstract .adp-reassign-abstract-list ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
}

.adp-reassign-abstract .adp-reassign-abstract-list ul li{ 
    margin-bottom: 10px;
}

.adp-reassign-abstract .adp-reassign-abstract-list ul li:last-child{ 
    margin-bottom: 0px;
}


/* Scroll Styles */

::-webkit-scrollbar {
    width: 0.31em;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}
::-webkit-scrollbar-thumb {
    background: #0f1545;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f1545;
}


.mr-2 {
    margin-left: 10px;
}

.adp-print {
    font-size: 18px;
    color: #424242;
    cursor: pointer;
}

.adp-print i{
    margin-right: 10px;
    font-size: 25px;
    color: #424242;
    font-weight: 300;
}

.adp-print:hover {
color: #0f1545;
}

@media print {

    .adp-print{
        display: none;
    }
}

/* Pagination */

.bp-pagination .pag-count .pag-data{
    margin-bottom: 0px;
    font-size: 16px;
    color: #424242;
}

.adp-final-rating{
    color: #0f1545;
    font-size: 16px; 
    margin-top: 10px;
}


.adp-final-rating span{
    font-size: 24px;
    font-weight: bold;
}

.bootstrap-datetimepicker-widget table th, .bootstrap-datetimepicker-widget table td{
    border: none;
    padding: 5px;
}

.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover{
    background:#2c3054;
}

#adp_option_desc_ifr,
#email_body_ifr {
    height: 300px !important;
}

.adp-website-editor-title, h1.adp-website-editor-title{
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin: 0px 0px 20px;
}

.modal-set-area {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-form-set {
    width: calc(100% - 260px);
    position: sticky;
    top: 0;
}

.modal-sidebar {
    width: 240px;
    position: sticky;
    top: 0;
}

.shortcodes-set-title {
    font-size: 18px;
    font-weight: 500;
    font-family: 'lato', sans-serif;
    margin-bottom: 20px;
}

.shortcodes-set-item {
    margin-bottom: 10px;
}

.adp-shortcode-input {
    border: 1px solid #dbdbdb !important;
    height: 42px;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    background: #fafafa !important;
}


.adp-ui-html .acf-button.button {
    background: #0f1545;
    border-radius: 4px;
}


.adp-ui-html .acf-button-group label.selected {
    background: #0f1545;
    border-color: #0f1545;
}

#bulk-header{
    padding: 12px 0px;
}

#bulk-header,
#default-header{
    display: none;
}

#bulk-header.active,
#default-header.active{
    display: flex;
}

.bulk-selection-data {
    font-size: 18px;
}

.bulk-selected-count {
    font-weight: bold;
}

.bulk-total-count {
    font-weight: bold;
}

#bulk-select-all{
    margin-left: 10px;
    padding: 3px 8px;
}

.bulk-selection-action button {
    margin-left: 10px;
}

.bulk-checkbox{
    display: none;
}

.bulk-checkbox.active{
    display: table-cell;
}

.bulk-checkbox input{
    width: 15px;
    height: 15px;
    margin: 0px;
}

.bulk-checkbox input:disabled{
    opacity: 1;
}

.adp-ui-html .bp-view-details table.profile-fields.bp-tables-user td{
    border: none;
}

.adp-ui-html .bp-view-details table.profile-fields.bp-tables-user td.label{
    font-weight: normal;
    font-size: 14px;
}

.adp-ui-html .bp-view-details table.profile-fields.bp-tables-user td.data{
    color: #414141;
    font-size: 14px;
}

.conflict-interset {
    position: relative;
}


.conflict-interset:before {
    content: attr(data-title);
    position: absolute;
    background: #0f1545;
    color: white;
    font-size: 14px;
    font-weight: normal;
    width: 150px;
    text-align: center;
    padding: 4px 10px;
    border-radius: 8px;
    bottom: calc(100% + 11px);
    left: -20px;
    display: none;
}

.conflict-interset:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: calc(100% + 4px);
    border-top: 7px solid #0f1545;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    display: none;
}


.conflict-interset:hover:before,
.conflict-interset:hover:after {
    display: block;
}

.adp-ui-html .form-group label{
    color: #2c3054;
}

.adp-ui-html .ui-timepicker-select {
    padding: 2px 10px;
    height: auto;
}

.adp-ui-html .ui-datepicker-month, .adp-ui-html .ui-datepicker-year {
    padding: 2px 10px;
    height: auto;
}

.adp-ui-html .ui-datepicker .ui-datepicker-title select.ui-datepicker-month{
    margin-right: 4px;
}

.adp-ui-html .ui-datepicker .ui-datepicker-prev, .adp-ui-html .ui-datepicker .ui-datepicker-next{
    top: 8px;
}

.adp-action-textarea{
    margin-top: 15px;
}

.bootstrap-datetimepicker-widget table td.disabled {
    opacity: 0.5;
}

.adp-table-with-sorting{
    position: relative;
}

.adp-table-with-sorting table tr:first-child .adp-re-order.order-up,
.adp-table-with-sorting table tr:last-child .adp-re-order.order-down{
    display: none;
}

.adp-table-sorting-loading {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.adp-table-sorting-loading span{
    font-weight: bold;
    font-size: 20px;
}

.adp-table-with-sorting.loading .adp-table-sorting-loading{
    display: flex;
}

.adp-upload-img-set {
    margin-bottom: 10px;
}
.adp-upload-img-container {
    max-width: 200px;
    border: 1px solid #d9d9d9;
    padding: 10px;
    border-radius: 3px;
    text-align: center;
    min-height: 50px;
    background: #f3f3f3;
}
.adp-upload-img-container.is-lg {
    max-width: 400px;
}

.modal-box .adp-upload-img-container{
    max-width: 100%;
    height: 300px;
}

.modal-box .adp-upload-img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adp-upload-img-container img{
    max-width: 100%;
    height: auto;
}


.adp-no-upload-img{
    display: none;
}

.adp-upload-img-actions {
    margin: 10px 0px 0px;
}
.adp-upload-img {
    color: #2c3054;
    font-weight: bold;
}
.adp-delete-img {
    color: #c30f0f;
}

.modal-box .adp-upload-img {
    padding: 40px 60px;
    display: block;
    background: #f1f1f1;
    text-align: center;
    border-radius: 4px;
    text-transform: uppercase;
}

.adp-inner-action-set{
    margin-bottom: 15px;
}

.adp-inner-action-set:last-child{
    margin-bottom: 0px;
}

.adp-colorpicker {
    width: 80px;
    padding: 0px;
    cursor: pointer;
}

.adp-modal-img{
    max-width: 100%;
    height: 300px;
}

.adp-modal-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}