body {
    font-family: "Raleway", sans-serif;
}

a:hover {
    text-decoration: none;
}


/* variables */

:root {
    --blueThemeColor: #015da8;
    --theadColor: #425262;
    --theadBgColor: #f0f0f0;
    --redColor: #db5151;
    --tableTextColor: #232e38;
}


/* Header */

header {
    background-color: #fff;
}

.header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_left {
    width: 100%;
    max-width: 300px;
    height: 84px;
    display: flex;
    align-items: center;
}

.header_right {
    width: calc(100% - 300px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 84px;
}

.header_right ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header_right ul li {
    list-style: none;
    margin: 0 0 0 27px;
    position: relative;
}

.header_right ul li a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #656f79;
    position: relative;
    display: inline-block;
}

.header_right ul li a.active {
    font-weight: 600;
}

.header_right ul li .login_btn {
    background: #015da8;
    border: 2px solid #015da8;
    border-radius: 3px;
    color: #fff;
    padding: 8px 34px;
}

.header_right ul li .login_btn:hover {
    background: #fff;
    color: #015da8;
}

.header_right ul li a.profile>span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    background-color: #f2f2f2;
}

.header_right ul li a.profile>span>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.close_nav {
    display: none;
}

.fixed_body {
    position: fixed;
}

.toggel_btn {
    display: none;
}


/* End Header */


/* Login page */

.login_body {
    background: #2c2c2c;
    background-image: url(../images/login-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.login {
    padding: 100px 0 75px;
}

.login_row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 435px;
    margin: auto;
}

.login_row h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 50px;
    color: #ffffff;
    margin: 22px 0 0;
    text-align: center;
}

.login_row p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
    text-align: center;
}

.login_row form {
    width: 100%;
    padding: 0 17px;
}

.ebc_form label {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #ffffff;
}

.ebc_inputgroup {
    position: relative;
}

.ebc_imggroup {
    position: absolute;
    right: 19px;
    top: 9px;
}

.ebc_form .form-control {
    padding: 21px 16px;
    background: #ffffff;
    border: 1px solid #313135;
    box-sizing: border-box;
    border-radius: 5px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.ebc_form .form-group {
    margin-bottom: 25px;
}

.ebc_radiobtn [type="radio"]:checked,
.ebc_radiobtn [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.ebc_radiobtn [type="radio"]:checked+label,
.ebc_radiobtn [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    text-transform: capitalize;
}

.ebc_radiobtn [type="radio"]:checked+label:before,
.ebc_radiobtn [type="radio"]:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #fff;
    border-radius: 100%;
    background: transparent;
}

.ebc_radiobtn [type="radio"]:checked+label:after,
.ebc_radiobtn [type="radio"]:not(:checked)+label:after {
    content: "";
    width: 9px;
    height: 9px;
    background: #f8b121;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.ebc_radiobtn [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.ebc_radiobtn [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.forget_password_row {
    align-items: center;
    padding: 9px 0px;
}

.forget_password_row p {
    margin: 0;
}

.forget_password_row p a {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #f8b121;
}

.ebc_form button {
    width: 100%;
    height: 45px;
    background: #f8b121;
    border: 2px solid #f8b121;
    border-radius: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 17px 25px;
    cursor: pointer;
    outline: none;
}

.ebc_form button:hover {
    background: transparent;
    color: #f8b121;
}

.login_row p a {
    font-weight: 600;
    color: #fff;
}

.login_row p a:hover {
    color: #f8b121;
}

.login_footer {
    width: 100%;
    background: transparent;
}

.login_footer p {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #868686;
    text-align: center;
    margin: 0 0 34px;
}

.ebc_form .form-control:focus {
    border-color: #f8b121 !important;
    box-shadow: 0px 0px 3px 0rem rgb(248 177 33 / 77%);
}


/* End Login page */


/* Forgot password page */

.forgot_password_body {
    background: #2c2c2c;
    background-image: url(../images/forgot-password-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.forgot_password {
    padding: 98px 0px 130px;
}

.forgot_password_row h1 {
    margin-bottom: 11px;
}

.forgot_password_row p {
    margin-bottom: 30px;
}

.forgot_password_row .ebc_form button {
    width: 100%;
    max-width: 232px;
    margin: auto;
}


/* End Forgot password page */


/* Register Page */

.register_body {
    background: #ededed;
}

.register_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px;
}

.register_left {
    background: #363639;
    border-radius: 10px 0px 0px 10px;
    width: 100%;
    max-width: 500px;
    background-image: url(../images/register-bg.png);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 682px;
}

.register_right {
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 0px 10px 10px 0px;
    width: calc(100% - 500px);
    height: 682px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.register_logo {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 234px;
    height: 234px;
    border-radius: 50%;
    margin-bottom: 63px;
}

.register_left h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 40px;
    color: #f8b121;
    margin: 0 0 24px;
    padding: 0 46px 0 53px;
}

.register_left p {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    margin: 0;
    padding: 0 46px 0 53px;
}

.register_main {
    width: 100%;
    max-width: 464px;
    margin: 0 auto;
}

.register_main h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 50px;
    color: #000000;
    margin: 0 0 4px;
    text-align: center;
}

.register_main p {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #868686;
    margin: 0;
    text-align: center;
}

.register_main .ebc_form label {
    color: #656f79;
}

.register_main .ebc_form label span {
    color: red;
    font-size: 25px;
    line-height: 0;
    position: relative;
    top: 7px;
}

.register_main .ebc_form .form-group {
    margin-bottom: 15px;
}

.register_main .ebc_form .form-control {
    border: 1px solid #d6dde5;
    padding: 21px 20px;
}

.register_main .ebc_form .ebc_checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.register_main .ebc_form .ebc_checkbox label {
    position: relative;
    cursor: pointer;
    text-transform: initial;
    color: #868686;
}

.register_main .ebc_form .ebc_checkbox label a {
    color: #015da8;
}

.register_main .ebc_form .ebc_checkbox label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #015da8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 8px;
    border-radius: 3px;
}

.register_main .ebc_form .ebc_checkbox input:checked+label::before {
    background-color: #015da8;
}

.register_main .ebc_form .ebc_checkbox input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 7px;
    width: 5px;
    height: 12px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.ebc_checkbox {
    margin-bottom: 33px;
}

.register_main .ebc_form button {
    background: #015da8;
    border: 2px solid #015da8;
    margin: 0 0px 28px;
}

.register_main .ebc_form button:hover {
    background: transparent;
    color: #015da8;
}

.register_main form.ebc_form {
    padding: 32px 0 0;
}

.alredy_account_p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    text-align: center;
}

.alredy_account_p a {
    color: #015da8;
    font-weight: 600;
}

.alredy_account_p a:hover {
    color: #000;
}


/* End Register Page */


/* Footer */

footer {
    background: #d0d0d0;
    height: 40px;
    display: flex;
    align-items: center;
}

footer p {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    margin: 0;
    text-align: left;
}


/* End Footer */


/* Start Dashboard (p****a) */

.dashboardWrap {
    min-height: calc(100vh - 125px);
}

.new-abstract {
    background-color: #0056b3;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    width: 177px;
    height: 43px;
    border: 2px solid #0056b3;
    border-radius: 3px;
    padding: 5px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.new-abstract:hover {
    color: #0056b3;
    background-color: #ffffff;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.new-abstract:focus {
    outline: none;
}

.new-abstract>.material-icons {
    line-height: initial;
    position: relative;
    top: -2px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .new-abstract {
        background-color: #0056b3;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        width: 177px;
        height: 43px;
        border: 2px solid #0056b3;
        border-radius: 3px;
        padding: 5px;
        align-items: center;
        display: inline-flex;
        justify-content: center;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
    }
    .new-abstract:hover {
        color: #0056b3;
        background-color: #ffffff;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
    }
    .new-abstract:focus {
        outline: none;
    }
    .new-abstract>.material-icons {
        line-height: initial;
        position: relative;
        top: -2px;
    }
}

.tableTitle {
    font-size: 18px;
    font-weight: 700;
}

.dashboardTable thead th {
    font-size: 12px;
    font-weight: 600;
    color: var(--theadColor);
    background-color: var(--theadBgColor);
    border: none;
    padding: 14px 10px;
}

.dashboardTable thead th.co-author {
    width: 205px;
}

.dashboardTable thead th:first-child {
    border-radius: 5px 0 0 5px;
}

.dashboardTable thead th:last-child {
    border-radius: 0 5px 5px 0;
}

.tableActionButton {
    border: 1px solid;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px 3px 12px;
    border-radius: 3px;
    background: transparent;
    display: inline-block;
}


/* .tableActionButton {
    border: 1px solid;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px 3px 12px;
    border-radius: 3px;
    background: transparent;
    display: flex;
    width: 60px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
} */

.tableActionButton:focus {
    outline: none;
}

.tableActionButton.editButton {
    border-color: var(--blueThemeColor);
    color: var(--blueThemeColor);
}

.tableActionButton.editButton.save {
    min-width: 75px;
}

.tableActionButton.editButton:hover {
    background-color: var(--blueThemeColor);
    color: #ffffff;
}

.tableActionButton.deleteButton {
    border-color: var(--redColor);
    color: var(--redColor);
}

.tableActionButton.deleteButton:hover {
    background-color: var(--redColor);
    color: #ffffff;
}

.dashboardTable td .dateText {
    color: var(--blueThemeColor);
    font-weight: 500;
}

.dashboardTable td .dateText .material-icons {
    font-size: 18px;
    line-height: initial;
    position: relative;
    top: 4px;
}

.dashboardTable tbody {
    font-size: 14px;
    font-weight: 600;
    color: var(--tableTextColor);
}

.co-authorList {
    list-style: none;
    padding: 0;
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
}

.co-authorList li {
    margin: 5px;
    background: #ffe9bd;
    border: 1px solid #f8b121;
    font-weight: 500;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    padding: 1px 5px;
}

.dashboardTable td {
    vertical-align: middle;
}

.dashboardTable td .abstractImage {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
}

.dashboardTable td .abstractImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Avijit added by  */

.abstrack_section_wrapper {
    background-color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

.left_panel_padding {
    padding: 25px 45px;
}

.abstrack_center_heading {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 0 0 12px 0;
    margin: 0 0 10px 0;
    border-bottom: 2px solid #E1E1E1;
    position: relative;
}

.card.left_panel_padding {
    border: none;
}

.add_abstrack_section {
    margin-top: 40px;
    margin-bottom: 30px;
}

.abstrack_sub_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 15px 0;
}

.abstrack_sub_heading h3 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin: 0;
    padding: 0;
}

.abstrack_sub_heading h3 span {
    color: red;
}

.add_co_order {
    width: 153px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F2F8FF;
    border: 1px solid #015DA8;
    box-sizing: border-box;
    border-radius: 3px;
    color: #015DA8;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.add_co_order:hover {
    background-color: #015DA8;
    color: #fff;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.add_co_order i {
    margin: 0 5px 0 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.add_co_order:hover i {
    color: #fff;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.abstrack_form_wrapper label {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    /* identical to box height */
    text-transform: uppercase;
    color: #656F79;
}

.abstrack_form_wrapper label span {
    color: red;
    font-size: 20px;
}

.abstrack_form_wrapper input[type="text"],
.abstrack_form_wrapper input[type="email"],
.abstrack_form_wrapper input[type="tel"] {
    height: 45px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #D6DDE5;
}

.abstrack_form_wrapper input[type="text"]:focus,
.abstrack_form_wrapper input[type="email"]:focus,
.abstrack_form_wrapper input[type="tel"]:focus {
    box-shadow: none;
}

.abstrack_form_wrapper textarea {
    height: 80px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #D6DDE5;
}

.abstrack_form_wrapper textarea:focus {
    box-shadow: none;
    border: 1px solid #D6DDE5;
}

.abstrack_form_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px 0 -8px;
}

.abstrack_form_row .col_sm {
    width: 25%;
    padding: 0 8px;
}

.abstrack_form_row .col_md {
    width: 37%;
    padding: 0 8px;
}

.abstrack_form_row .col_lg {
    width: 75%;
    padding: 0 8px;
}

.abstrack_form_row .col_xlg {
    width: 100%;
    padding: 0 8px;
}

.abstrack_devider {
    background-color: #E1E1E1;
    height: 2px;
    width: 100%;
    margin: 15px 0 20px 0;
    opacity: 0.50;
}

.co_auth_wrapper {
    background-color: #F0F0F0;
    padding: 20px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: relative;
    margin: 0 0 20px 0;
}

.add_co_cancel {
    width: 153px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #DB5151;
    box-sizing: border-box;
    border-radius: 3px;
    color: #DB5151;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.add_co_cancel:hover {
    background-color: #DB5151;
    color: #fff;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.dr_john_content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.dr_john_content h5 {
    font-size: 12px;
    font-weight: 300;
    margin: 0 0 12px 0;
}

.dr_john_content h5 span {
    font-weight: 700;
}

.dr_john_content p {
    font-size: 12px;
    font-weight: 300;
    margin: 0 0 4px 0;
}

.auth_header {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 15px;
    top: 16px;
}

.auth_header .edit {
    color: #015da8;
    background-color: #fff;
    border: 1px solid #015da8;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 10px;
}

.auth_header .edit i {
    color: #015da8;
}

.auth_header .delete {
    color: #db5151;
    background-color: #fff;
    border: 1px solid #db5151;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 10px;
}

.auth_header .delete i {
    color: #db5151;
}

.abstrack_form_wrapper select {
    height: 47px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #D6DDE5;
}

.abstrack_form_wrapper select:focus {
    box-shadow: none;
    border: 1px solid #D6DDE5;
}


/* Checkbox Style */

.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 18px!important;
}


/* Hide the browser's default checkbox */

.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkbox_container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #DDDDDD;
    border-radius: 3px;
}


/* On mouse-over, add a grey background color */

.checkbox_container:hover input~.checkmark {
    background-color: #DDDDDD;
}


/* When the checkbox is checked, add a blue background */

.checkbox_container input:checked~.checkmark {
    background-color: #015DA8;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkbox_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.checkbox_container input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.checkbox_container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Checkbox style end */

.submit_btn_abstrack {
    width: 153px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #015DA8;
    border: 1px solid #015DA8;
    box-sizing: border-box;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 5px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    outline: none;
}

.submit_btn_abstrack:hover,
.submit_btn_abstrack:focus {
    background-color: #fff;
    color: #015DA8;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    outline: none;
}

.cancel_btn_abstrack {
    width: 153px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #015DA8;
    box-sizing: border-box;
    border-radius: 3px;
    color: #015DA8;
    font-size: 14px;
    font-weight: 600;
    margin: 0 5px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    outline: none;
}

.cancel_btn_abstrack:hover,
.cancel_btn_abstrack:focus {
    background-color: #DDDDDD;
    color: #015DA8;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    outline: none;
}

.abstrack_form_footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right_block_image {
    height: 205px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    -ms-border-radius: 6px 6px 0 0;
    -o-border-radius: 6px 6px 0 0;
}

.right_block_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right_block_content {
    padding: 20px 25px;
}

.right_block_content h6 {
    font-weight: 700;
    margin: 0 0 5px 0;
    font-size: 16px;
}

.right_block_content p {
    font-weight: 500;
    margin: 0 0 5px 0;
    font-size: 14px;
}

.footer_closing_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_closing_date .close_date_left {
    width: 50%;
    margin: 0 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: #656F79;
}

.close_date_left .blue {
    width: 52px;
    height: 52px;
    background: #015DA8;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 10px 0 0;
}

.close_date_left .blue span {
    font-size: 24px;
    display: block;
    text-align: center;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.footer_closing_date .close_date_right {
    width: 50%;
    margin: 0 0px 0 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: #656F79;
}

.close_date_right .red {
    width: 52px;
    height: 52px;
    background: #DB5151;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 10px 0 0;
}

.close_date_right .red span {
    font-size: 24px;
    display: block;
    text-align: center;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}


/* 07 Oct 2020 */

.custom_order_1 {
    order: 1;
}

.custom_order_2 {
    order: 2;
}

.modal.abstrack_details {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 740px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    text-align: left;
    overflow: unset;
    height: auto;
}

.blocker {
    background-color: rgba(255, 255, 255, 0.92)!important;
}

#ex1 .close-modal {
    display: none;
}

.right_close {
    position: absolute;
    right: 12px;
    top: 4px;
}

.right_close i {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.40);
}

.left_close {
    position: absolute;
    left: 0;
    top: 4px;
}

.left_close i {
    font-size: 22px;
    color: #000;
}

.modal_sub_details {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding: 0;
    height: 35px;
    vertical-align: bottom;
    font-family: 'Raleway', sans-serif;
}

.abstrack_modal_lower_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.abstrack_modal_lower_wrapper .half_panel {
    width: 50%;
    padding: 0 15px 15px 15px;
}

.abstrack_modal_lower_wrapper .full_panel {
    width: 100%;
    padding: 0 15px 15px 15px;
}

.lower_panel_object {
    font-size: 12px;
    font-weight: 500;
    color: #656F79;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.lower_panel_object span {
    font-size: 16px;
    font-weight: 600;
    color: #425262;
    text-transform: capitalize;
    font-family: 'Raleway', sans-serif;
}

.lower_panel_section {
    font-size: 12px;
    font-weight: 500;
    color: #656F79;
    font-family: 'Raleway', sans-serif;
}

.modal_inner_wrapper {
    padding: 10px 15px;
    position: relative;
}

.edit_rpofile_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 30px;
    padding: 0 0 40px 0;
}

.edit_profile_inner {
    width: 740px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.uploading_photo_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    margin: 15px auto 20px auto;
}

.uploading_photo_wrapper .profile_name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.uploading_photo_wrapper .profile_name .profile_email {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    /* identical to box height */
    color: #656F79;
    display: block;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    margin: 4px 0 0 0;
}

.profile_pic_upload {
    width: 184px;
    margin: 35px auto 20px auto;
}

.profile_picture {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile_picture .picture_holder {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
}

.profile_picture .picture_holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.profile_picture>label {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 39px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #015DA8;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
    z-index: 20;
}

.profile_picture>label img {
    width: 50%;
}

.profile_picture>label>input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
}

.abstrack_form_register {
    display: block;
    margin: 0 10%;
}

.abstrack_form_register label {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #656F79;
}

.abstrack_form_register label span {
    color: red;
    font-size: 20px;
}

.abstrack_form_register input[type="text"],
.abstrack_form_register input[type="email"],
.abstrack_form_register input[type="tel"] {
    height: 45px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #D6DDE5;
    font-family: 'Poppins', sans-serif;
}

.abstrack_form_register input[type="text"]:focus,
.abstrack_form_register input[type="email"]:focus,
.abstrack_form_register input[type="tel"]:focus {
    box-shadow: none;
    border: 1px solid #015DA8;
    font-family: 'Poppins', sans-serif;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #E9EEF3!important;
    opacity: 1;
}

.form-control:disabled:focus,
.form-control[readonly]:focus {
    background-color: #E9EEF3!important;
    opacity: 1;
    border: 1px solid #D6DDE5!important;
}

.profile_submit {
    width: 185px;
    height: 45px;
    background: #015DA8;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    border: none;
    margin: 15px auto 0 auto;
}

.setting_dropdown {
    width: 330px;
    background: #FFFFFF;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    position: absolute;
    right: 0;
    top: 45px;
    z-index: 5;
    display: none;
}

.setting_dropdown_header {
    height: 47px;
    border-bottom: 1px solid rgba(198, 201, 205, 0.5);
    display: flex;
    align-items: center;
    padding: 15px 15px;
}

.setting_dropdown_header h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #0E0E0E;
    margin: 0;
    text-align: left;
}

.setting_dropdown_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 17px 0;
}

.setting_dropdown_row a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.setting_icon_col {
    width: 35px;
    height: 35px;
    max-width: 35px;
    height: 35px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EFF1F5;
    border-radius: 50%;
}

.setting_dropdown_row p {
    width: calc(100% - 47px);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150.5%;
    color: #202F3F;
    margin: 0;
    text-align: left;
}

.setting_dropdown_footer {
    padding: 17px 20px 15px;
}

.setting_dropdown_footer button {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    border: 1px solid #015DA8;
    background: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 150.5%;
    color: #015DA8;
    border-radius: 5px;
    cursor: pointer;
}

.setting_dropdown_footer button:hover {
    color: #fff;
    background: #015DA8;
}

.show {
    display: block !important;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    position: absolute;
    right: -12px;
    top: 21px;
}

.setting_dropdown_row a {
    display: flex!important;
    justify-content: space-between!important;
    width: 100%!important;
    align-items: center!important;
}

.setting_dropdown_row a:hover {
    color: #015DA8!important;
}

.menu_mobile {
    display: inline-block;
}

.mobile_list {
    display: none!important;
}

.header_right ul li a.login_btn {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    border: 1px solid #015DA8;
    background: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 150.5%;
    color: #015DA8;
    border-radius: 5px;
    cursor: pointer;
}

.header_right ul li a.login_btn:hover {
    color: #fff;
    background: #015DA8;
}


/*** 081020 ***/

.dashboardHeading {
    font-weight: 700;
    font-size: 24px;
}

.text_numeric {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.hover_table_wrapper tbody tr {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    cursor: pointer;
}

.hover_table_wrapper tbody tr:hover {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.hover_table_wrapper tbody tr:hover td {
    border-top: 1px solid #dee2e6;
}

.reviewer_card_wrapper {
    margin: 0 0 50px 0;
}

.review_first_panel {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    padding: 0 0 12px 0;
    margin: 0 0 10px 0;
    border-bottom: 2px solid #E1E1E1;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.review_pro_left {
    width: 120px;
    overflow: hidden;
}

.review_pro_right {
    width: 80%;
}

.rev_pro_pic {
    overflow: hidden;
    margin: 0 25px 0 0;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.rev_pro_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review_container h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.review_container p {
    font-size: 14px;
    color: #656F79;
    font-weight: 400;
    margin: 0;
}

.precentage_pwnel {
    font-size: 14px;
    color: #425262;
    font-weight: 500;
    margin: 10px 0 0 0;
}

.precentage_pwnel span {
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: block;
    line-height: 18px;
}

.main_auth_review span {
    color: #232E38;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    display: flex;
}

.main_auth_review ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.main_auth_review ul li {
    display: flex;
    padding: 0px 10px;
    font-size: 12px;
    color: #232E38;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 6px 2px 0;
}

.main_auth_review.blue ul li {
    border: 1px solid #015DA8;
    background-color: #F2F8FF;
}

.main_auth_review.blue ul li.set-main-auth-name {
    max-width: 180px;
    width: 100%;
    overflow: hidden;
}

.main_auth_review.yellow ul li {
    border: 1px solid #F8B121;
    background-color: #FFE9BD;
}

.submitted_status {
    display: flex;
    padding: 0px 10px;
    font-size: 12px;
    color: #232E38;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 6px 2px 0;
    border: 1px solid #169223;
    background-color: #BDFFC4;
    color: #169223;
}

.custom_drop_arrow select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    position: relative;
    background-color: transparent!important;
}

.custom_drop_arrow select:after {
    position: absolute;
    content: '';
    background-image: url('../images/down_arrow.png');
    width: 20px;
    height: 30px;
    right: 0;
}

.custom_drop_arrow select::-ms-expand {
    display: none;
}

.custom_drop_arrow {
    position: relative;
}

.custom_drop_arrow span.down_arroe {
    position: absolute;
    width: 38px;
    height: 30px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 38px;
}

body.review_body_wrapper .blocker {
    background-color: rgba(0, 0, 0, 0.55)!important;
}

.modal.review_details {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 689px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 5px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    text-align: left;
    overflow: unset;
    height: auto;
}

.review_details .dr_john_content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.review_details .dr_john_content h5 {
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 12px 0;
}

.review_details .dr_john_content h5 span {
    font-weight: 700;
}

.review_details .dr_john_content p {
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 4px 0;
}


/** Progress ***/

.conainer {
    width: 600px;
    margin: 100px auto;
    font-family: "Arial";
}

.circle_percent {
    font-size: 68px;
    width: 1em;
    height: 1em;
    position: relative;
    background: #eee;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin: 0px;
}

.circle_inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    clip: rect(0 1em 1em 0.5em);
}

.round_per {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    background: #015DA8;
    clip: rect(0 1em 1em 0.5em);
    transform: rotate(180deg);
    transition: 1.05s;
}

.percent_more .circle_inner {
    clip: rect(0 0.5em 1em 0em);
}

.percent_more:after {
    position: absolute;
    left: 0.5em;
    top: 0em;
    right: 0;
    bottom: 0;
    background: #015DA8;
    content: "";
}

.circle_inbox {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 4px;
    bottom: 10px;
    background: #fff;
    z-index: 1;
    border-radius: 50%;
    width: 56px;
    height: 56px;
}

.percent_text {
    position: absolute;
    font-size: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-family: 'Lato', sans-serif;
}

.review_center_heading {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 2px solid #E1E1E1;
    position: relative;
}

.rating_star_row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0 15px 0;
}

.rating_star_row span {
    margin: 0 25px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.br-theme-fontawesome-stars .br-widget {
    height: 21px!important;
    white-space: nowrap;
}

.br-theme-fontawesome-stars .br-widget a.br-active:after {
    color: #015DA8!important;
}

.br-theme-fontawesome-stars .br-widget a.br-selected:after {
    color: #015DA8!important;
}

.rev_abs_list ul {
    display: block;
    padding: 0;
    margin: 0;
}

.rev_abs_list ul li {
    display: block;
    padding: 0;
    margin: 0 0 16px 0;
}

.review_abstrack_inner_wrapper {
    padding: 13px 22px;
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.review_abstrack_inner_wrapper .rev_ask_question {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Lato', sans-serif;
}

.rev_ask_radio_list ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.rev_ask_radio_list ul li {
    padding: 0;
    margin: 0 30px 0 0;
}


/**  Radio Button ***/

.container_radio {
    display: block;
    position: relative;
    padding-left: 0;
    margin: 5px 0px 0 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row-reverse;
}


/* Hide the browser's default radio button */

.container_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.container_radio .checkmark {
    position: relative;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #015DA8;
    margin: 0 10px 0 0;
}


/* On mouse-over, add a grey background color */

.container_radio:hover input~.checkmark {
    background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.container_radio input:checked~.checkmark {
    background-color: #fff;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.container_radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.container_radio input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.container_radio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #015DA8;
}

.review_gray_wrapper {
    padding: 20px 35px;
}

.abstrack_form_wrapper.review_gray_wrapper label {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    text-transform: capitalize;
    color: #333;
}

.abstrack_form_wrapper.review_gray_wrapper textarea {
    height: 130px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 25px 0;
    border: 1px solid #D6DDE5;
}

.mobile_row {
    display: block;
}

.landing_main_banner {
    background-color: #363639;
    background-image: url('../images/landing_page_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 815px;
    position: relative;
    display: flex;
    align-items: center;
}

.heading_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 0 8% 0;
}

.heading_content h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 50px;
    color: #ffffff;
    margin: 22px 0 0;
    text-align: center;
}

.landing_main_banner:before {
    position: absolute;
    left: 0;
    right: 0;
    height: 210px;
    content: '';
    background-image: url(../images/white_curve.png);
    bottom: 0;
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100%;
}

.second_abstrack_manager {
    position: relative;
    background-color: #ffff;
    padding: 40px 0;
}

.landing_header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 22px 0;
    z-index: 99;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main_nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main_nav ul li {
    padding: 0;
    margin: 0;
}

.main_nav ul li a {
    padding: 15px 0px;
    margin: 0 15px;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.main_nav ul li:last-child a {
    padding: 15px 0px;
    margin: 0 0 0 15px;
    color: #fff;
}

.main_nav ul li:first-child a {
    padding: 15px 0px;
    margin: 0 55px 0 15px;
    color: #fff;
}

.main_nav ul li a.signup_btn {
    width: 108px;
    height: 32px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background: #015DA8;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.main_nav ul li a.signup_btn:hover {
    background: #fff;
    color: #015DA8;
    ;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.zikzak_listing_wrapper {
    display: block;
}

.zikzak_listing_wrapper ul li:nth-child(odd) .zikzak_box {
    background-color: #F6F6F6;
}

.zikzak_listing_wrapper ul li:nth-child(even) .zikzak_box {
    background-color: #fff;
}

.zikzak_box {
    padding: 75px 0;
}

.zikzak_box .inner_box_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zikzak_box .inner_box_wrapper .left_panel {
    width: 46%;
    order: 1;
}

.zikzak_box .inner_box_wrapper .right_panel {
    width: 50%;
    order: 2;
}

.zikzak_listing_wrapper ul li:nth-child(even) .zikzak_box .inner_box_wrapper .left_panel {
    width: 46%;
    order: 2;
}

.zikzak_listing_wrapper ul li:nth-child(even) .zikzak_box .inner_box_wrapper .right_panel {
    width: 50%;
    order: 1;
}

.zikzak_listing_wrapper ul li:nth-child(even) .zikzak_box .inner_box_wrapper .right_panel .zack_content_panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.zikzak_listing_wrapper ul li:nth-child(even) .zikzak_box .inner_box_wrapper .right_panel .zack_content_panel p {
    text-align: right;
}

.zack_content_panel h3 {
    font-size: 32px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.zack_content_panel p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #575759;
    margin: 0 0 25px 0;
}

.zack_content_panel .read_more_btn {
    text-decoration: none;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    color: #015DA8;
    font-size: 18px;
    font-weight: 500;
}

.zack_content_panel .read_more_btn i {
    margin: 0 0 0 10px;
    color: #015DA8;
    font-size: 18px;
    font-weight: 400;
}

.zikzak_box .inner_box_wrapper .left_panel .zack_img_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
}

.zikzak_box .inner_box_wrapper .left_panel .zack_img_box img {
    width: 100%;
    height: auto;
}

.abstrack_manager {
    position: relative;
    margin: -60px 0 0 0;
}

.abstrack_manager h2 {
    font-weight: bold;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    margin: 0 0 35px 0;
}

.abstrack_mgm_row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 8% 0 8%;
}

.abstrack_mgm_row .mgm_col {
    width: 30%;
    margin: 0 5%;
    position: relative;
}

.abstrack_mgm_row .mgm_col::after {
    position: absolute;
    content: '';
    background-image: url(../images/right_mgm_arror.png);
    width: 179px;
    height: 67px;
    background-size: 100%;
    background-repeat: no-repeat;
    right: -44%;
    top: 50%;
}

.abstrack_mgm_row .mgm_col:last-child::after {
    display: none;
}

.abstrack_mgm_row .mgm_col .mgm_img_box {
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 25px 0;
}

.abstrack_mgm_row .mgm_col .mgm_box_header {
    font-weight: 700;
    font-size: 24px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 15px 0;
}

.abstrack_mgm_row .mgm_col .mgm_lx_content {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #888E92;
}

.landing_footwer {
    background-color: #363639;
}

.footer_row_pan {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_row_pan .left_content {
    width: 50%;
}

.footer_row_pan .right_content {
    width: 50%;
}

.footer_row_pan .right_content ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer_row_pan .right_content ul li a {
    margin: 0 0 0 10px;
    width: 27px;
    height: 27px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer_row_pan .right_content ul li a i {
    font-size: 10px;
    color: #fff;
}

.footer_row_pan .right_content ul li a:hover {
    background-color: #fff;
}

.footer_row_pan .right_content ul li a:hover i {
    color: #363639;
}


/* New Text Logo 30Oct 2020*/

.new_text_logo a {
    color: #015da8;
    font-weight: 700;
    font-size: 22px;
}

.new_text_logo a span {
    color: #f8b121;
}
.abstract_name_wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.abst_name{
    width: 118px;
}
.rev_abs_list.point_question ul li {
    padding: 0;
    margin: 0 0px 20px 0;
    width: 100%;
}
.rev_abs_list.point_question ul li ul li:last-child{
    margin: 0 0px 0px 0;
}
.ans_panel {
    color: #333!important;
    font-size: 13.7px!important;
    font-family: 'Lato', sans-serif;
}
.rev_ask_radio_list .container_radio{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rev_ask_radio_list .container_radio .ans_panel{
    width: 94%;
    line-height: 20px;
}
.box_disabled{
    background-color: #E9EEF3!important;
    opacity: 0.50;
    pointer-events: none;
    cursor: pointer;
    border:1px solid #c3c3c3;
}
.clickable_mrttable table tbody tr td{
    padding: 0;
}
.clickable_mrttable table tbody tr td a,
.clickable_mrttable table tbody tr td a:hover,
.clickable_mrttable table tbody tr td a:focus{
    color: #575759;
    padding: 10px;
    display: block;
}

.method-controls button, .method-controls input {
	text-align: center;
	margin: 5px 0;
}

.method-controls span {
	display: inline-block;
	color: #bbb;
	margin: 0 10px;
}

.ft-preloader {
	text-align: center;
	margin: 10px 0;
}

.ft-preloader svg {
	fill: #222;
}
.myptp_wrapper > .ft-theme-default.ft-tabs > .ft-nav > .ft-tab.active, 
.myptp_wrapper > .ft-theme-default.ft-tabs > .ft-nav > .ft-tab:hover {
    color: #fff;
    text-decoration: none;
    background-color: #015da8;
    border-bottom-color: transparent;
}
.myptp_wrapper > .ft-nav > .ft-tab{
    background-color: #f8b121!important;
    color: #fff!important;
}
.myptp_wrapper > .ft-nav > .ft-tab.active{
    background-color: #015da8!important;
    color: #f8b121!important;
}
.myptp_wrapper > .ft-tabs > .ft-contents {
    z-index: 2!important;
}
.rating_star_new_row{
    display: flex;
    justify-content: flex-start;
    margin: 0 0px 0 0;
    padding: 0;
    align-items: center;
}
.rating_star_new_row li{
    margin: 0 6px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.rating_star_new_row li span{
    margin: 0;
    padding: 0;
}
.rating_star_new_row li span i{
    font-size: 21px;
    color: #d2d2d2;
}
.rating_star_new_row li:hover span i,
.rating_star_new_row li span.active i,
.rating_star_new_row li.active span i{
    color: #015DA8!important;
}