/*-------------------------------------------------------------

© 2021 Corporación ATFP CA
VIF — Verificación de Inteligencia Fiscal                                                                  
Version: 1.0 

Designed by Skull King Society
https://skullkingsociety.com        

---------------------------------------------------------------
    Color Scheme
--------------------------------------------------------------*/

:root {
    --darkblue: #014579;
    --vifblue: #0066B3;
    --linkblue: #2962ff;
    --redatfp: #be1622;
    --greenvif: #49cc68;
    --light-vif-bg: #f2f2f2;
    --card-bs: 0px 0px 5px 0px rgba(0, 0, 0, 0.1), 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
    --form-border-color: #b8b8b8;
}

/*-------------------------------------------------------------
	Webkit Scrollbar
--------------------------------------------------------------*/

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #c6ccd2;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8bfc7;
}

::-webkit-scrollbar-thumb:active {
    background: #b8bfc7;
}

.sidebar-scroll::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.3);
}

.sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 128, 128, 0.4);
}

.sidebar-scroll::-webkit-scrollbar-thumb:active {
    background: rgba(128, 128, 128, 0.4);
}

/*-------------------------------------------------------------
	Smooth Scrollbar
--------------------------------------------------------------*/

.scrollbar-track {
    background-color: transparent !important;
}

.scrollbar-track-y,
.scrollbar-thumb {
    width: 3px !important;
}

.scrollbar-thumb {
    background: rgb(183 183 183 / 50%) !important;
}

/* LEFT MENU */
.sidebar-scroll .scrollbar-thumb {
    background-color: transparent !important;
}

@media screen and (max-width: 767px) {
    .sidebar-scroll .scrollbar-thumb {
        background: rgb(183 183 183 / 50%) !important;
    }
}

/*-------------------------------------------------------------
	General
--------------------------------------------------------------*/

html,
body {
    color: #4e5e6a;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 13.5px;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body,
#left-menu-toggle-mask {
    background-color: #f2f2f2;
}

/* SHORTCUTS */
.br-10 {
    border-radius: 10px !important;
}

.br-15 {
    border-radius: 15px !important;
}

.w20 {
    width: 20px !important;
}

.w210 {
    width: 210px !important;
}

.viftxt {
    color: var(--vifblue);
}

.vifbgcolor {
    background: var(--vifblue);
}

.fw600 {
    font-weight: 600 !important;
}

.fs18_fw600 {
    font-size: 18px;
    font-weight: 600;
}

/*-------------------------------------------------------------
	Preloader
--------------------------------------------------------------*/

#preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: var(--vifblue);
    display: flex !important;
    overflow-y: hidden;
    z-index: 9999;
}

#preloader .preloader_content {
    margin: auto;
    user-select: none;
    position: relative;
    display: flex
}

#preloader .logo {
    max-width: 100px;
    animation: zoom-in-out 3s infinite;
    animation-timing-function: linear
}

@keyframes zoom-in-out {

    0%,
    100% {
        transform: scale(1)
    }

    25% {
        transform: scale(1.1)
    }

    50% {
        transform: scale(1)
    }

    75% {
        transform: scale(1.1)
    }
}

/*-------------------------------------------------------------
	AppLoader
--------------------------------------------------------------*/

.app-loader {
    width: 90px;
    height: 90px;
    margin: auto;
    position: absolute;
    top: 50%;
    right: 0%;
    left: 0%;
    padding: 10px;
    border-radius: 50%;
    background: transparent;
    display: flex;
}

.app-loader .loading {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 5px var(--vifblue);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    -webkit-animation: spin 1s infinite linear;
    display: inline-block;
    margin: auto;
}

/*-------------------------------------------------------------
	Maintenance mode
--------------------------------------------------------------*/

#system_maintenance_mode .sM_Main h4 {
    font-size: 25px;
    font-weight: 600;
}

#system_maintenance_mode .sM_Main p {
    font-size: 16px;
}

#system_maintenance_mode .sM_Footer {
    position: absolute;
    bottom: 0%;
    width: 100%;
}

/*-------------------------------------------------------------
	Public 
--------------------------------------------------------------*/

#publicPageView_Settings {
    margin-top: 50px;
    padding: 5px;
}

#publicPageView_Settings .header_title h4 {
    font-size: 24px;
    font-weight: 600;
}

#publicPageView_Settings p {
    font-size: 14.5px;
}

/*-------------------------------------------------------------
	Login
--------------------------------------------------------------*/

.vif-blue {
    background-color: var(--darkblue) !important;
}

#login-overflow {
    overflow-y: hidden !important;
}

.login-page {
    height: 100%;
    display: flex;
    justify-content: center;
}

.login-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.login-content .form-signin {
    display: flex;
    flex-direction: column;
}

.login-content .login-card {
    border: none;
    margin-bottom: 20px;
    transition: all 1s;
}

.login-content .login-card .login-card-header {
    padding: 12px 16px;
}

.login-content .site-logo {
    max-width: 130px;
}

.login-card .login_title {
    color: #fff;
    font-weight: 600;
}

.login-content .login-card .login-card-header p {
    font-size: 16px;
    font-weight: 100;
    color: #fff;
}

.login-card .login-card-body {
    padding: 15px 30px;
}

/* SIGNIN INPUT */
.login-card .login-form-group {
    background-color: transparent;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    color: #fff;
}

.login-card .login-form-group:focus {
    background-color: transparent;
}

.login-card .login-form-group::placeholder {
    color: #fff;
    opacity: .5;
}

.login_btn:focus {
    box-shadow: none !important;
}

/* LINK */
.login-card .link a {
    color: #fff;
}

.login-card .link a:hover {
    font-weight: 500;
}

/*-------------------------------------------------------------
	Create Account | Forgot Password
--------------------------------------------------------------*/

#signup .card,
#reset_password .card {
    border-radius: 15px;
}

#signup .card-header,
#reset_password .card-header {
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, .10);
    border-radius: 15px 15px 0px 0px;
}

#signup .card-header .form-signin-heading,
#reset_password .card-header .form-signin-heading {
    font-weight: bold;
    color: #000;
}

#signup .card-header p {
    font-weight: 500;
}

#signup .form-group label,
#reset_password .form-group label {
    font-weight: 600;
    color: #000;
}

#signup .form-control,
#reset_password .form-control {
    background-color: #fff;
    border-color: var(--form-border-color);
}

#signup .form-control:active,
#signup .form-control:focus,
#reset_password .form-control:active,
#reset_password .form-control:focus {
    border: solid 2px var(--vifblue);
}

#signup .btn-primary,
#reset_password .btn-primary {
    background: var(--vifblue);
    border-color: var(--vifblue);
}

/* SIGNIN LINK */
.signin_link a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: var(--darkblue);
}

.signin_link a:hover {
    color: var(--vifblue) !important;
}

.signin_link .signin_icon_container {
    background-color: var(--vifblue);
    border-radius: 50%;
    height: 20px;
    width: 20px;
    color: #fff;
    display: flex;
}

.signin_link svg {
    margin: auto;
    height: 15px;
    width: 15px;
}

.signin_link span {
    padding-left: 10px;
}

.ShPssW {
    position: absolute;
    right: 10px;
    top: 7px;
}

#signup .card__input {
    position: absolute;
    display: block;
    outline: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
}

#signup .card__input:checked ~ .dashboard-icon-widget {
    box-shadow: 0 0 0 3px var(--vifblue);
    border-radius: 15px;
    user-select: none;
}

/*-------------------------------------------------------------
    Backgrounds — Buttons — Colors
--------------------------------------------------------------*/

.bg-primary {
    background-color: #0066B3 !important;
    color: #fff;
}

.btn-primary {
    border-color: #0066B3;
    background-color: #0066B3;
    border-radius: 25px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #1D2632;
    border-color: #1D2632;
    color: #fff;
}

.btn-info {
    background: #0066B3;
    border: 1px solid #0066B3;
    border-radius: 10px;
}

.btn-default {
    background-color: #fff;
    border: 1px solid #e2e7f1;
    border-radius: 25px;
    color: #595959;
}

.btn-default:hover {
    background-color: #E6E6E6;
    border-color: #E6E6E6;
}

.btn-danger {
    background: #fd397a;
    border-color: #fd397a;
    border-radius: 15px;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus {
    background: #fd1361;
    border-color: #fc0758;
    color: #fff !important;
}

#dni-error {
    box-shadow: none;
    color: #ec5855;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* This class allows to identify primary contacts */
.primary_contact_circle {
    height: 10px;
    width: 10px;
    display: inline-block;
    background-color: #22b9ff;
    line-height: 1;
    border-radius: 50%;
    margin: 0;
    padding: 0;
}

/* This id identifies the button that display on screen the passwords entered in the forms */
#show_hide_password {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    color: #000;
}

/*-------------------------------------------------------------
	Topbar
--------------------------------------------------------------*/

#tb_user_profile {
    display: block;
}

@media screen and (max-width: 767px) {
    #tb_user_profile {
        display: none !important;
    }
}

/*-------------------------------------------------------------
	Mobile Navbar
--------------------------------------------------------------*/

.scrollable-page {
    padding-bottom: 60px;
}

#bottombar {
    z-index: 10;
    box-shadow: -2px -5px 10px rgb(0 0 0 / 10%) !important;
    -webkit-box-shadow: -2px -5px 10px rgb(0 0 0 / 10%) !important;
}

@media screen and (max-width: 767px) {
    #bottombar {
        display: block !important;
    }
}

#bottombar .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px !important;
    color: rgba(0, 0, 0, .55);
}

#bottombar .nav-link span {
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
}

/*-------------------------------------------------------------
	Left Menu
--------------------------------------------------------------*/

@media (max-width: 990px) {
    .sidebar-off {
        left: -100vw;
    }
}

@media screen and (max-width: 767px) {
    .sidebar {
        width: 100vw !important;
    }

    .sidebar-brand {
        display: none;
    }
}

.sidebar-menu li.active>a {
    color: #fff !important;
    background-color: #0066B3;
    border-radius: 15px;
}

/*-------------------------------------------------------------
	Alerts
--------------------------------------------------------------*/
.app-alert {
    z-index: 10;
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
}

.alert .progress {
    display: none;
}

.app-alert.animate {
    bottom: 75px;
    position: fixed;
    z-index: 100;
    border-radius: 2px;
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
    opacity: 0.25;
    right: -350px;
}

@media screen and (max-width: 767px) {
    .app-alert.animate {
        width: calc(100vw - 30px);
        bottom: auto;
        top: 75px;
    }
}

.app-alert-message {
    font-size: 15px;
    font-weight: 600;
}

.app-alert.alert-success {
    background-color: var(--greenvif);
    border-color: var(--greenvif);
    border-radius: 5px;
    color: #fff;
}

.alert-danger {
    color: #ffffff;
    background-color: var(--redatfp) !important;
    border-color: var(--redatfp) !important;
}

.missing_info_alert {
    background-color: #fff;
    border-color: #EEF1F9;
    padding: 20px;
    margin: 20px 20px 10px 20px;
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
    font-weight: 600;
}

.missing_info_alert .btn-close {
    top: 5px;
}

@media screen and (max-width: 767px) {
    .missing_info_alert {
        padding: 25px;
    }

    .missing_info_alert .btn-close {
        top: 6px;
    }
}

/*-------------------------------------------------------------
	Alerts Help
--------------------------------------------------------------*/

.dunhelp {
    background-color: var(--vifblue);
    border-color: #EEF1F9;
    padding: 20px;
    margin: 0px;
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
    font-weight: 600;
    border-radius: 15px;
    color: #fff;
}

.dunhelp h4 {
    font-size: 24px;
}

.dunhelp .btn-close {
    top: 15px;
    right: 15px;
    padding: 0px;
}

@media screen and (max-width: 767px) {
    .dunhelp {
        padding: 25px;
    }
}

.dunhelp_title {
    font-size: 15px;
    font-weight: 600;
}

.dunhelp_content {
    font-weight: 100;
}

.dunhelp_img_container {
    display: none;
}

.dunhelp_img_container svg {
    margin: auto;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .dunhelp_img_container {
        display: flex;
    }
}

.dunhelp_img {
    height: 45px;
    width: auto;
    margin: auto;
}

.dashboard-news {
    background: #fff !important;
    color: #4e5e6a;
}

/*-------------------------------------------------------------
	Cards
--------------------------------------------------------------*/

.card {
    border: none;
    border-radius: 15px;
    /*margin-bottom: 20px;*/
    transition: all 1s;
}

.dashboard .card {
    margin-bottom: 20px;
}

.card .card-header {
    background-color: #fff;
    border-color: #EEF1F9;
    padding: 12px 30px;
    border-bottom: 2px solid rgba(0, 0, 0, .10);
    border-radius: 15px 15px 0px 0px;
}

.card .card-header:first-child {
    border-radius: 15px 15px 0 0;
}

.card .card-header h4 {
    font-weight: 600;
}

.card .card-header h6 {
    margin-top: 8px;
}

.card table .badge {
    margin-top: 8px;
}

.card table p {
    margin-bottom: 0 !important;
}

.card .card-body {
    padding: 15px 30px;
}

.card .card-body .form-group label {
    font-weight: 600;
}

.card-body .general-form .form-control:focus,
.card-body .general-form .form-control.white:focus {
    border: solid 2px var(--vifblue);
}

.card .card-body .form-control:active,
.card .card-body .form-control:focus {
    border: solid 2px var(--vifblue);
}

.card-footer {
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, .10);
    border-radius: 0px 0px 15px 15px;
    padding: 15px 30px;
}

.card-footer:last-child {
    border-radius: 0px 0px 15px 15px;
}

/*-------------------------------------------------------------
	Modal 
--------------------------------------------------------------*/

.modal-content {
    border-radius: 10px;
}

.modal-header {
    border-radius: 15px 15px 0px 0px;
    border-bottom: 2px solid rgba(0, 0, 0, .10);
    padding: 12px 30px;
}

.modal-header h4 {
    font-weight: 600;
}

.modal-body .form-group label {
    font-weight: 600;
}

.modal-body .form-control:active,
.modal-body .form-control:focus {
    border: solid 2px var(--vifblue);
}

.modal-footer {
    border-top: 2px solid rgba(0, 0, 0, .10);
    padding: 15px;
}

.modal-content .card-footer {
    display: flex;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

/*-------------------------------------------------------------
	Widgets
--------------------------------------------------------------*/

.dashboard-icon-widget .card-body {
    padding: 20px;
}

.widget-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--vifblue);
    border-radius: 50%;
    height: 45px;
    width: 45px;
    margin-bottom: 10px;
}

.widget-icon .icon {
    width: 2rem;
    height: 2rem;
    color: #fff;
}

.widget_content .title {
    font-weight: bold;
    margin-bottom: 0px;
}

.widget_content .description {
    font-size: 10px;
    margin: 0px;
}

@media (min-width: 1140px) {
    .widget_content .description {
        max-width: 70%;
    }
}

.widget-count {
    text-align: right;
    position: absolute;
    right: 20px;
}

.widget-count h1 {
    margin: 0;
    font-weight: 600;
}

.widget-container .card {
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
}

.card-bs {
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
}

/*-------------------------------------------------------------
	Banner dashboard
--------------------------------------------------------------*/

.dashboard-banner-widget .card-body {
    padding: 40px;
}

.dashboard-banner-1 {
    color: #fff;
    background: linear-gradient(-90deg, rgb(37 92 179) 0%, rgba(0,167,255,1) 100%);
}

.dashboard-banner-piv {
    color: #00325a;
    /*background: linear-gradient(90deg, #ebebeb 0%, #f3f3f3 100%) !important;*/
    background-size: cover;
    position: relative;
}

.dashboard-img {
    border-radius: 30px;
    max-width: 150px;
}

.dashboard-img-piv {
    background: linear-gradient(-90deg, #ebebeb 0%, #ffffff 100%) !important;
}

.dashboard-img img {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 52%), 0px 0px 1px 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 52%), 0px 0px 1px 0px rgb(0 0 0 / 10%);
    border-radius: inherit;
    width: 100%;
}

.dashboard-img-piv img {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 25%), 0px 0px 1px 0px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 25%), 0px 0px 1px 0px rgb(0 0 0 / 5%);
}

.dashboard-banner-1 .title,
.dashboard-banner-piv .title {
    font-weight: 600;
    font-size: 26px;
}

.dashboard-banner-piv .title {
    font-weight: bold;
}

.dashboard-banner-1 .description {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    max-width: 640px;
}

.dashboard-banner-piv .description {
    font-weight: 600;
    font-size: 18px;
    max-width: 640px;
}

@media screen and (max-width: 767px) {
    .dashboard-banner-widget .card-body {
        padding: 15px;
    }
    .dashboard-banner-1 .title,
    .dashboard-banner-piv .title {
        font-size: 13.5px;
        line-height: 1.2;
    }
    .dashboard-banner-1 .description,
    .dashboard-banner-piv .description {
        font-size: 10px;
        font-weight: 100;
        padding-right: 20px;
    }

    .dashboard-img {
        border-radius: 20px;
        max-width: 120px;
        margin: auto;
    }
    
}































/*-------------------------------------------------------------
	Header Titles
--------------------------------------------------------------*/

.header-menu {
    padding: 12px 0px;
    margin: 0px 15px;
    border: 15px;
}

.header-menu>.row {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

/* BACK BUTTON */
.header-menu .back_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--vifblue);
    color: #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin-right: 15px;
}

.header-menu .back_btn svg {
    margin: 0px !important;
}

/* TITLE */
.header-menu h4 {
    font-size: 24px;
    font-weight: 600;
}

.header-menu .welcome_msg {
    font-size: 26px;
    font-weight: 600;
}

.header-menu h6 {
    font-size: 18px;
    font-weight: 600;
}

/* RIGHT BUTTONS */
.header-menu .add_bbtn {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

@media screen and (min-width: 991px) {
    .header-menu .add_bbtn {
        padding-right: 0px;
    }
}

.header-menu .add_bbtn a {
    margin: 0px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .header-menu .add_bbtn {
        justify-content: center;
        padding: 0px !important;
        margin-top: 20px;
    }

    .header-menu .add_bbtn a {
        width: 100%;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
        background-color: var(--vifblue);
        color: #fff;
    }
}

/*-------------------------------------------------------------
	Card Header 
--------------------------------------------------------------*/

.card-header .add_bbtn {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

@media screen and (min-width: 991px) {
    .card-header .add_bbtn {
        padding-right: 0px;
    }
}

.card-header .add_bbtn a {
    margin: 0px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .card-header .add_bbtn {
        justify-content: center;
        padding: 0px !important;
        margin-top: 20px;
    }

    .card-header .add_bbtn a {
        width: 100%;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
        background-color: var(--vifblue);
        color: #fff;
    }
}


/*-------------------------------------------------------------
	File Upload Delete Button
--------------------------------------------------------------*/

#file-delete-btn .add_bbtn {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

#file-delete-btn .add_bbtn span {
    margin: 0px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    #file-delete-btn .add_bbtn {
        justify-content: center;
    }

    #file-delete-btn .add_bbtn span {
        width: 100%;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
        background-color: var(--vifblue);
        color: #fff;
    }
}

/*-------------------------------------------------------------
	Timeline Widget
--------------------------------------------------------------*/

.post-dropzone {
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
}

.widget_cap {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.post_input_form {
    padding: 15px;
}

.post_input_form::placeholder {
    font-size: 16px;
}

#post_description-error {
    padding-left: 15px;
}

#post-form-container .card-footer,
.reply-form .card-footer {
    padding: 10px 15px;
}

/*-------------------------------------------------------------
	Timeline
--------------------------------------------------------------*/

#timeline {
    list-style: none;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

/*
#timeline {
    border-radius: 15px;
    box-shadow: var(--card-bs);
    -webkit-box-shadow: var(--card-bs);
}
*/

#timeline:before {
    content: "";
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    width: 2px;
    border-radius: 5px;
    background-color: #cacaca;
    left: 0px !important;
    margin-left: 0 !important;
    margin-top: 10px !important;
}

#timeline .post-content {
    display: block;
    width: 100% !important;
    position: relative;
    padding-top: 10px;
    float: left;
    width: 100% !important;
    padding: 10px 0 0 20px !important;
}

.timeline-images img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}

.timeline-images span.more {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.60);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    position: absolute;
    width: 80px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: -80px;
}

.timeline-images .file-mockup {
    width: 100%;
    /*height: 455px;*/
    height: 200px;
    background: #E5E9EC;
    color: #77879D;
    font-size: 100px;
    text-align: center;
    display: table;
    table-layout: fixed;
    border-spacing: 0;
    transition: all 500ms ease;
}

.timeline-images .file-mockup:hover {
    cursor: pointer;
}

.timeline-images .file-mockup .mt-12 {
    margin-top: 12rem !important;
}

.message-more {
    width: 40px !important;
    margin-left: -40px !important;
    border-bottom-left-radius: 22px;
}

.comment-image-box {
    /*width: 400px;*/
    width: 200px;
}

@media (max-width: 767px) {
    #timeline:before {
        background-image: linear-gradient(to top, #E5E9EC 0.5%, #f2f4f6 1%, #f2f4f6 99%);
    }
}

.br-tl-15 {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/*-------------------------------------------------------------
	Timeline Widget Content
--------------------------------------------------------------*/

#timeline-content #post-form-container .avatar {
    display: none !important;
}

#timeline-content #timeline:before {
    display: none;
}

#timeline-content #timeline .post-content {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

#timeline-content #timeline .post-content .card {
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    margin-bottom: 0 !important;
    border-radius: 0px;
}

#timeline-content #timeline>.post-content:first-child .card {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#timeline-content #timeline>.post-content:last-child .card {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: none;
}

#timeline-content #timeline>.load_more_posts_container .post-content:last-of-type .card {
    border-radius: 0px 0px 15px 15px;
    border: none !important;
}

#timeline-content #timeline .post-content .card-body {
    padding: 15px;
}

@media (max-width: 767px) {

    #timeline-content #timeline .post-content .card-body {
        padding: 15px 20px;
    }
}

#timeline-content #timeline .post-content .post-date span {
    display: none;
}

#timeline .tlvideo_thumbnail {
    width: 100%;
}

.timeline-load-more {
    position: relative;
    border: none;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .10);
    border-radius: 0px 0px 15px 15px;
    font-weight: 600;
}

.timeline-load-more:focus {
    box-shadow: none;
}

/*-------------------------------------------------------------
	Timeline Proyect Content
--------------------------------------------------------------*/

#comment-content {
    border-radius: 15px;
}

#comment-content>.comment-highlight-section .card {
    border-radius: 0px;
}

#comment-content>.comment-highlight-section:first-child .card {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#comment-content>.comment-highlight-section:last-child .card {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-color: transparent !important;
}

#comment-content>.comment-highlight-section:last-of-type .card {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-color: transparent !important;
    margin-bottom: 1rem;
}

.comment-container {
    padding: 15px 0;
}

@media screen and (max-width: 991px) {
    .comment-container {
        margin: 15px 15px !important;
    }
}

.comment-highlight-section>.comment-project:first-child .card {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

#comment_description-error {
    padding-left: 15px;
}

/* LIKES */
.comment-like-top {
    position: relative;
    right: 40px;
}

.comment-like-top a {
    color: rgba(0, 0, 0, 0.40) !important;
}

.comment-like-top a:hover {
    color: #fff;
}

.icon-fill-danger {
    fill: var(--redatfp);
    stroke: #fff;
    stroke-width: 0;
}

/* DOTS MENU */
.comment-dropdown,
.reply-dropdown {
    position: relative;
    right: 20px;
    /*display: none;*/
}

@media screen and (max-width: 991px) {

    .comment-dropdown,
    .reply-dropdown {
        right: 0px;
    }

    .comment-like-top {
        position: relative;
        right: 10px;
    }
}

/*-------------------------------------------------------------
	Custom Datatable
--------------------------------------------------------------*/

.datatable-tools {
    margin: 15px !important
}

.toolbar-left-top,
.custom-toolbar {
    margin: 0px !important;
    padding: 0px !important;
}

/* DATATABLE LENGHT FILTER */
div.dataTables_wrapper div.dataTables_length {
    height: 35px;
}

div.dataTables_wrapper div.dataTables_length label {
    margin: 0px !important;
}

div.dataTables_wrapper div.dataTables_length .select2-container.form-control {
    height: 100%;
}

/* SELECT2 LENGHT FILTER */
.select2-container .select2-choice {
    background: #F6F8F9 !important;
    line-height: 1.5;
}

.custom-toolbar .select2-container .select2-choice,
.datatable-tools .select2-container .select2-choice {
    border: 1px solid #e2e7f1;
    border-radius: 15px !important;
    width: 100%;
    height: 35px;
}

.select2-choice>span:first-child,
.select2-chosen {
    padding: 5 10px;
}

.select2-container .select2-choice>.select2-chosen {
    font-family: 'Open Sans', sans-serif;
    margin-right: 15px;
    font-weight: 500;
    font-size: 15px;
}

.select2-results {
    /*max-height: 100%;*/
    padding: 0px;
    margin: 0px;
}

.select2-results .select2-highlighted {
    background-color: var(--vifblue);
}

.select2-drop {
    max-height: 300px !important;
}

/* CUSTOM TOOLBAR SETTINGS */
.custom-toolbar {
    display: flex;
    display: -webkit-flex;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .custom-toolbar {
        height: 100%;
    }
}

div.DTTT_container {
    position: relative;
    float: right;

    padding: 0px;
    margin: 0px;
}

/* MOBILE SETTINGS DROPDWON */
.custom-toolbar .dropdown-toggle {
    background-color: #fff !important;
    border: 1px solid #e2e7f1 !important;
    border-radius: 15px !important;
}

/* SEARCH INPUT */
.dataTables_filter {
    padding: 0px;
    margin: 0px;
    float: right;
}

.dataTables_filter label {
    margin: 0px !important;
}

.dataTables_filter input {
    background: url('../images/search.svg') no-repeat 96% 45% #fff;
    padding: 7px 10px 7px 20px;
    border-radius: 15px;
    font-size: 15px;
    width: 240px !important;
    height: 35px;
}

.dataTables_wrapper .dataTables_filter label {
    width: 100% !important;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0px !important;
    width: 100% !important;
}

.dropdown_toolbar_sliders {
    display: flex;
    justify-content: end;
    -webkit-justify-content: flex-end;
    padding: 0;
}

.dropdown_toolbar_sliders button:focus {
    box-shadow: none !important;
}

.dropdown_toolbar_sliders button {
    width: 80%;
}

@media screen and (max-width: 767px) {
    .dropdown_toolbar_sliders {
        justify-content: end;
        -webkit-justify-content: flex-end;
    }

    .dropdown_toolbar_sliders .dropdown-toggle::after {
        display: none;
    }

    .dropdown_toolbar_sliders button {
        width: 80%;
    }
}

/* MAIN TABLE ROW */
@media screen and (max-width: 767px) {
    .main_table_row {
        display: none !important;
    }
}

/* TABLE */

/*
table.dataTable.no-footer {
    border-top: 1px solid rgba(0, 0, 0, .10);
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}
*/

table.dataTable thead th:first-child,
table.dataTable tbody td:first-child {
    padding-left: 20px !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control {
    padding-left: 65px !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.child {
    padding: 20px !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    content: "";
}

table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
    content: "";
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    top: 25%;
    left: 20px;
    height: 25px;
    width: 25px;
    display: block;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #e2e7f1;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    line-height: 1em;
    content: "";
    color: #898FA9;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%23898FA9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-color: #fff;
}

table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
    content: "";
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-up'><polyline points='18 15 12 9 6 15'></polyline></svg>");
    background-color: var(--vifblue);
    border: none;
}

table.dataTable>tbody>tr>td.dtr-control a {
    font-weight: 600 !important;
    line-height: 1em;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control a {
    font-weight: 600;
    line-height: 1em;
}

table.dataTable>tbody>tr.child ul.dtr-details .avatar {
    display: none;
}

table.dataTable>tbody>tr.child ul.dtr-details .contact_name .dtr-data {
    font-weight: 600;
}

table.dataTable>tbody>tr>td.contact_name a,
table.dataTable>tbody>tr>td.company_name a,
table.dataTable>tbody>tr.child ul.dtr-details .company_name .dtr-data {
    font-weight: 600;
}

table.dataTable ul {
    list-style-type: none !important;
}

table.dataTable>tbody>tr.child ul.dtr-details .table_client_group .dtr-data {
    font-size: 16px;
    font-weight: 600;
}

table.dataTable>tbody>tr.child ul.dtr-details .pcounter .dtr-data {
    font-size: 20px;
    font-weight: 600;
    padding: 0px;
}

.row_action_btn {
    justify-content: center;
    align-items: center;
}

/* This class allows to identify the project status buttons */
div.DTTT_container .btn-group>label {
    padding: 4px 10px !important;
    border: 1px solid #e2e7f1;
    border-radius: 15px;
    /*font-size: 12.5px;*/
}

/* Select2 Dropdown */
@media screen and (min-width: 991px) {
    div.dropDownSelector {
        padding-left: 0px;
    }
}

/* TABLE MULTI SELECT */
@media (max-width: 767px) {}

.filter-multi-select {
    width: 100%;
}

/* Datatable MultiSelect dropdown button */
#multiSelectBtn {
    width: 100%;
    background: #F6F8F9 !important;
    border-radius: 15px !important;
    border: none !important;
}

.tableRadioButtons {
    padding: 0px;
}

.tableRadioButtons .btn {
    height: 35px !important;
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 991px) {
    #multiSelectBtn {
        margin-bottom: 10px;
    }

    .tableRadioButtons {
        margin-bottom: 10px !important;
        padding: 0px;
    }
}

#multiSelectBtn:focus {
    box-shadow: none;
}

/* Collapse */

.list-group-item.active {
    border-radius: 0px;
}

.dropdown-menu .list-group-item:not(.inline-loader) {
    border: none !important;
    padding: 10px 15px;
}

.filter-multi-select .list-group-item:not(.active):hover {
    background-color: #0066B3;
    color: #fff;
}

.select2-results::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.select2-results .select2-result-label {
    border: none !important;
    /*padding: 10px 15px;*/
    padding: 10px 5px;
}

/*-------------------------------------------------------------
	Select2
--------------------------------------------------------------*/

.select2-container .select2-choice .select2-arrow {
    width: 20px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23898FA9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat 0 10px !important;

    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23898FA9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat 0 10px !important;
}

.select2-container .select2-choice .select2-arrow b,
.select2-container .select2-choice div b {
    background-position: 0px 8px;
}

/*-------------------------------------------------------------
	DataTable Processing
--------------------------------------------------------------*/

div.dataTables_wrapper {
    position: relative;
}

.dataTables_wrapper .dataTables_processing {
    height: 60px;
}

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0
}

/*-------------------------------------------------------------
	Company Details
--------------------------------------------------------------*/

.vifchd {
    margin-bottom: 70px;
}

.client_profile_header {
    padding-bottom: 50px;
}

@media (max-width: 991px) {
    .client_profile_header {
        padding-bottom: 50px;
    }
}

.client_profile_header h1 {
    font-weight: 600;
    color: #fff !important;
}

.client_profile_header h2,
.client_profile_header h3,
.client_profile_header h4 {
    color: #fff !important;
}

.client_profile_header h2 {
    font-weight: 600;
}

.client_card_menu_container {
    width: 100%;
    position: absolute;
    bottom: -70px;
    padding: 10px 25px 0px 25px;
}

@media (max-width: 991px) {
    .client_card_menu_container {
        bottom: -80px;
        padding: 10px 15px;
    }
}

.client_card_options {
    width: 100%;
}

.badge {
    padding: 5px;
}

/*-------------------------------------------------------------
	Operations View
--------------------------------------------------------------*/

.otbold {
    font-size: 30px;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .otbold {
        font-size: 28px;
    }
}

.cnlight {
    font-weight: 100;
    margin-top: 20px;
    margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .cnlight {
        margin-top: 65px !important;
    }
}

.operation_status_badge {
    margin-top: 10px;
    padding: 4px 8px;
    border-radius: 10px;
    width: 100px;
    right: 25px;
    text-align: center;
}

.operation_status_badge button {
    background-color: transparent;
    border: none
}

.operation_status_badge span {
    text-transform: uppercase;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
}

/* STATUS OPERATIONS BADGE COLOR */
.status_open {
    background-color: var(--greenvif);
    color: #fff;
}

.status_hold {
    background-color: #ffb822;
    color: #111 !important;
}

.status_canceled {
    background-color: #f5325c;
    color: #fff;
}

/* PROGRESS CHART */
@media (max-width: 991px) {
    .vif_progress_chart_header {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.chart-circle {
    width: 130px;
    background: #fff;
    border-radius: 50%;
    height: 130px;
    padding: 10px;
    margin: 0 auto;
}

.chart-circle canvas {
    width: 110px !important;
    height: 110px !important;
    text-align: center;
    align-items: center;
    align-self: center;
    display: inline-block !important;
}

@media (max-width: 767px) {
    .chart-circle {
        width: 280px;
        height: 280px;
    }

    .chart-circle canvas {
        width: 260px !important;
        height: 260px !important;
    }
}


.mobile_chart_cap {
    display: none;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .mobile_chart_cap {
        display: block;
        margin-top: 20px;
    }
}

/*-------------------------------------------------------------
	Operations Detailed View
--------------------------------------------------------------*/

@media (max-width: 767px) {
    .cb_m {
        padding: 20px !important;
    }
}

/*-------------------------------------------------------------
	Subtasks
--------------------------------------------------------------*/

.subtask-list-item {
    position: relative;
    display: flex;
    padding: 15px 0px;
    color: #212529;
    text-decoration: none;
}

/* DELETE SUBTASK */
.subtask_delete {
  cursor: pointer;
  min-width: 28px;
  background: #fff;
  color: #a1a3a5;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  text-align: center;
  margin: 0 5px;
  padding: 2px 0 2.5px 0;
  border: 1px solid #e2e7f1;
  font-size: 14px;
}

.subtask_delete:hover {
  background: #FD397A;
  color: #fff;
  border: 1px solid #FD397A;
}

/*-------------------------------------------------------------
	Description Widget
--------------------------------------------------------------*/

.pdate_info_container {
    display: flex;
    flex-direction: row;
}

.pdate_info_container p {
    font-size: 15px;
    margin-right: 50px;
}

@media (max-width: 767px) {
    .pdate_info_container {
        flex-direction: column;
    }

    .pdate_info_container p {
        margin: 0px;
    }
}

/*-------------------------------------------------------------
	Operations Activity Widget
--------------------------------------------------------------*/

.activity_log_badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: auto;
}

.otwtitle {
    font-weight: 600;
}

.txtvifb {
    color: var(--vifblue)
}

.tagtextactlogwid {
    font-weight: 600;
}

/* LABEL CLASSES*/
.bg-wid-success {
    /*background-color: #198754;*/
    background-color: var(--greenvif);
}

/*-------------------------------------------------------------
	Navigation Tabs
--------------------------------------------------------------*/

/*

.nav-tabs {
    background: #fff;
    border-bottom: 1px solid #EEF1F9;
    border-radius: 5px 5px 0 0;
    padding: 0px 30px;
}

@media screen and (max-width: 767px) {
    .nav-tabs {
        padding: 0px !important;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}

.nav-tabs .nav-link {
    border: none;
    margin-bottom: 0 !important;
}

.nav-tabs li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs li a {
    padding: 20px;
    margin-right: 0;
    border-radius: 0;
    color: inherit;
    line-height: 1.42857143;
}

.nav-tabs li a:not(.active):hover {
    background: transparent;
    border-color: transparent !important;
    color: #20446f;
}

.nav-tabs li:not(.title-tab):after {
    display: block;
    background-color: #20446f;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    position: absolute;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.nav-tabs li:not(.active):hover:after {
    width: 100%;
}

.nav-tabs li .active,
.nav-tabs li.active {
    font-weight: bold;
    border: none;
    color: #20446f !important;
    background: transparent !important;
    border-bottom: 2px solid #20446f !important;
    border-radius: 0;
    cursor: default;
}

.nav-tabs.title li a {
    padding: 20px 10px;
}

.nav-tabs.title .title-button-group {
    margin-top: 3px;
}

.nav-tabs.title .tab-title {
    margin-left: auto;
}

*/

/*-------------------------------------------------------------
	Navigation Tabs
--------------------------------------------------------------*/

.nav {
    flex-wrap: nowrap;
}

.nav li,
.nav li a {
    position: relative;
    display: block;
}

.nav li a span {
    margin-bottom: 5px;
}

/* NAVIGATION TT */
.nav_tab_filter {
    border-bottom: 2px solid #dee2e6;
}

@media (max-width: 767px) {
    .nav_tab_filter {
        margin-top: 20px;
    }
}


.nav_tab_filter a.nav-link {
    font-size: 15px;
    color: #4e5e6a;
}

.nav_tab_filter a.nav-link:hover {
    border-color: #fff;
}

.nav_tab_filter a.nav-link.active {
    background-color: #fff;
    border-width: 2px 2px 0px 2px;
    border-color: #dee2e6;
    font-weight: 600;
    color: var(--vifblue);
}

.nav_tab_filter a.nav-link.f_nl.active {
    border-width: 2px 2px 0px 0px;
}

/*-------------------------------------------------------------
	Navigation Tabs (Scrollable)
--------------------------------------------------------------*/

.tabs_container {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.tabs_container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.tabs_container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.tabs_list {
    display: flex !important;
    list-style-type: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.tabs_item {
    padding: 0px 15px;
    font-size: 13.5px;
}

.tabs_item a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabs_line {
    /*border-bottom: 2px solid #20446f;*/
    position: relative;
    top: -2px;
    left: 1px;
    width: 100%;
    transition: left 0.5s, width 0.5s;
}

.tabs_container ul {
    justify-content: space-evenly;
}

@media (max-width: 767px) {
    .tabs_container ul {
        justify-content: start !important
    }
}

.tabs_container .nav li a {
    display: flex;
}

.tabs_container .nav-tabs {
    border: none;
}

@media (max-width: 991px) {
    .client_card_options {
        padding: 20px 40px !important;
    }
}

/*-------------------------------------------------------------
	File Thumbanil
--------------------------------------------------------------*/

.file_thumbnail_container {
    height: 50px;
    width: 50px;
    background-color: #ffffff;
    text-align: center;
}

@media (max-width: 767px) {
    .file_thumbnail_container {
        height: 40px;
        width: 40px;
        display: none;
    }
}

.file_thumbnail {
    height: 100%;
}

#filePreviewContainer {
    margin: auto;
}

.file_id_icon {
    height: 50px !important;
    width: 50px !important;
    padding: 10px;
    margin-right: 10px;
    display: block;
}

@media (max-width: 767px) {
    .file_id_icon {
        height: 40px !important;
        width: 40px !important;
        display: none !important;
    }
}

.fltle {
    max-width: 210px !important;
}

.cfn_t {
    display: block;
}

@media (max-width: 767px) {
    .cfn_t {
        display: none !important;
    } 
}

.ffs11 {
    font-size: 11px !important;
    font-weight: 100;
}

/*-------------------------------------------------------------
	VIF Profile Menu
--------------------------------------------------------------*/

#vif_profile_menu {
    border-bottom: none;
}

#vif_profile_menu li {
    position: relative;
}

#vif_profile_menu li .check_info {
    position: absolute;
    line-height: 10px;
    margin-right: 20px;
    right: 0px;
    top: 32%;
    background-color: var(--greenvif);
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 10px;
}

#vif_profile_menu li a {
    font-weight: 600;
}

#vif_profile_menu li a i {
    margin-left: 50px;
}

.profile-section-separator {
    padding: 0px;
}

@media (max-width: 767px) {
    .profile-section-separator {
        padding: 0px 20px;
    }
}

.check_info_field {
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--greenvif);
    display: inline-block;
    margin-left: 5px;
}

/*-------------------------------------------------------------
	Profile Navigations Tabs
--------------------------------------------------------------*/

#vif_profile_menu>.nav-tabs {
    padding: 0px 30px;
    border: none
}

@media screen and (max-width: 767px) {
    #vif_profile_menu>.nav-tabs {
        display: flex;
        justify-content: center;
        padding: 0px !important;
        margin-bottom: 20px;
    }
}

#vif_profile_menu>.nav-tabs>li {
    margin-bottom: 0px;
}

#vif_profile_menu>.nav-tabs>li a {
    padding: 20px;
    margin-right: 0;
    border-radius: 0;
    color: inherit;
    line-height: 1.42857143;
}

#vif_profile_menu>.nav-tabs>li a:not(.active):hover {
    background: transparent;
    border-color: transparent !important;
    color: #20446f;
}

#vif_profile_menu>.nav-tabs>li:not(.title-tab):after {
    display: block;
    background-color: #20446f;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    position: absolute;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

#vif_profile_menu>.nav-tabs>li:not(.active):hover:after {
    width: 100%;
}

#vif_profile_menu>.nav-tabs>li .active,
#vif_profile_menu>.nav-tabs>li.active {
    font-weight: bold;
    border: none;
    color: #20446f !important;
    background: transparent !important;
    border-bottom: 2px solid #20446f !important;
    border-radius: 0;
    cursor: default;
}

/*-------------------------------------------------------------
	Switch Theme 
--------------------------------------------------------------*/

.color-tag {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 2px 10px 0 0;
    transition: all 300ms ease;
    -moz-transition: all 0.1s;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    border-radius: 50%;
}

.color-tag.clickable:hover {
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.color-tag.active {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /*box-shadow: 0 0 4px 2px #0066B3;*/
}

#switch_theme_container .form-switch .form-check-input {
    width: 50px;
    height: 25px;
}

/*-------------------------------------------------------------
	Knowledge Base 
--------------------------------------------------------------*/

.help-page-container {
    padding-top: 50px;
}

.help-search-box-container {
    max-width: 600px;
    margin: 30px auto 60px;
    text-align: center;
}

.help-search-box-container h1 {
    font-size: 50px;
    font-weight: 600;
    margin: 10px 0;
}

.help-search-box-container p {
    padding: 0px 20px 0px 20px;
    margin-bottom: 25px;
}

.help-search-box {
    background: url(../images/search.svg) no-repeat 98% 50% #fff;
    padding: 15px 15px 15px 30px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50px;
    box-shadow: none;
    transition: background 0.5s;
}

.help-search-box:focus {
    background-color: #f6f8f9;
    border: solid 2px var(--vifblue);
}

/*-------------------------------------------------------------
	User Profile — Avatar
--------------------------------------------------------------*/

.profile-header-bg {
    background-color: var(--vifblue);
    color: #fff;
}

/* USER PROFILE */
@media (max-width: 991px) {
    .avatar-container {
        padding: 0px;
    }
}

.avatar-border {
    border: 4px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}

.profile-camera-icon {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    left: 0px;
    right: 0px;
    z-index: 1000;
}

.profile-camera-icon span {
    color: #fff;
    opacity: .2;
}

/* USER DATA */
.profile_username_container {
    display: flex;
}

/* VERIFIED USERS */
.profile_username_container .verified_user_check {
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #22B9FF;
    display: flex;
    margin-left: 10px;
}

.profile_username_container .verified_user_check svg {
    margin: auto;
    width: 12px;
    height: 12px;
    stroke-width: 3;
    stroke: #fff;
}

.profile_username,
.profile_company_name {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile_company_name {
    font-size: 18px;
}

.profile_company_name:hover {
    color: #fff;
}

.profile_header_data {
    font-weight: 100;
    margin-bottom: 5px;
}

/* RIGHT BUTTONS */
.msg_bbtn {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

@media screen and (min-width: 991px) {
    .msg_bbtn {
        padding-right: 0px;
    }
}

.msg_bbtn a {
    margin: 0px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .msg_bbtn {
        justify-content: center;
        padding: 0px !important;
        margin: 10px 20px 30px 20px;
    }

    .msg_bbtn a {
        width: 100%;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
        color: var(--vifblue);
    }
}

.badge_job_title {
    background-color: #1D2632;
    border-color: #1D2632;
}

/* VERIFICATION BTN */

.vrfy_usr {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-justify-content: flex-end;
    padding: 20px;
}

.vrfy_usr a {
    margin: 0px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 15px;
}


@media screen and (max-width: 767px) {
    .vrfy_usr {
        justify-content: center;
        padding: 0px !important;
        margin: 20px 30px 20px 30px;
    }

    .vrfy_usr a {
        width: 100%;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
    }
}

/* CONVERT TO CLIENT BTN */

/* RIGHT BUTTONS */
.ctc_bbtn {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

@media screen and (min-width: 991px) {
    .ctc_bbtn {
        padding-right: 0px;
    }
}

.ctc_bbtn a {
    margin: 20px 0 0 0;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .ctc_bbtn {
        justify-content: center;
        padding: 0px !important;
    }

    .ctc_bbtn a {
        width: 100%;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
        color: var(--vifblue);
    }
}

/*-------------------------------------------------------------
	CropBox
--------------------------------------------------------------*/

.crop-box {
    position: relative;
    height: 400px;
    width: 100%;
    background: #fff;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    cursor: move;
}

.crop-box .thumb-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    box-sizing: border-box;
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
    background: none repeat scroll 0% 0% transparent;
    border: 2px solid #fff;
}

.crop-box .spinner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 400px;
    background: rgba(0, 0, 0, 0.7);
}

/*-------------------------------------------------------------
	BCV Widget
--------------------------------------------------------------*/

#bcv_values {
    display: flex;
}

#bcv_values ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0px;
    margin: 0px;
}

@media screen and (max-width: 767px) {
    #bcv_values ul {
        padding: 10px;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: auto;
    }
}

#bcv_values ul li {
    display: flex;
    align-items: center;
    list-style: none;
    font-weight: 500;
    padding: 10px;
}

#bcv_values ul li span {
    font-size: 25px;
    font-weight: bold;
    margin-right: 5px;
}

.bcv_values_data_update {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-justify-content: flex-end;
    margin: 10px 5px 20px 0px;
    font-size: 12px;
}

.bcv_values_data_update span {
    text-transform: lowercase;
}

/*-------------------------------------------------------------
	Welcome New Client
--------------------------------------------------------------*/

#newUser_staticBackdrop .modal-header {
    padding: 15px;
}

#newUser_staticBackdrop .modal-header,
#newUser_staticBackdrop .modal-footer {
    border: none !important;
}

#newUser_staticBackdrop .site-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

#newUser_staticBackdrop h2 {
    font-size: 25px;
    font-weight: bold;
}

#newUser_staticBackdrop h4 {
    font-size: 20px;
    font-weight: 600;
}

#newUser_staticBackdrop p {
    font-weight: 100;
    padding: 0px 20px;
}

@media screen and (max-width: 767px) {
    #newUser_staticBackdrop .modal-body {
        padding: 20px;
    }

    #newUser_staticBackdrop h4 {
        font-size: 18px;
    }

    #newUser_staticBackdrop p {
        padding: 0px;
    }
}

#newUser_staticBackdrop .modal-footer {
    display: flex;
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 65px;
}

#newUser_staticBackdrop .modal-footer .btn {
    font-size: 20px;
    border-radius: 50px;
    padding: 5px 15px;
}

/*-------------------------------------------------------------
	Operations Progress Widget
--------------------------------------------------------------*/

.opwtitle {
    font-size: 14px;
    font-weight: 600;
}

.opwpercent {
    font-weight: 600;
}

/*-------------------------------------------------------------
	Search VIF 
--------------------------------------------------------------*/

#search_vif .widget-container {
    margin-bottom: 20px;
}

#search_vif .search_widget_content {
    padding: 15px;
}

#search_vif .search_icon_box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--vifblue);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
}

#search_vif .search_icon i {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

#search_vif .icon_white {
    stroke: #fff !important;
}

#search_vif .search_widget_content .title {
    font-weight: bold;
    margin-bottom: 5px;
}

#search_vif .search_widget_content .description {
    font-size: 10px;
}

/*-------------------------------------------------------------
	Lead Profile (General info)
--------------------------------------------------------------*/

/* USER DATA */
.cP_Ginfo .cname {
    display: flex;
    margin-bottom: 5px;
}

/* VERIFIED USERS */
.cP_Ginfo .cname .verified_company_check {
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #22B9FF;
    display: flex;
    margin-left: 10px;
}

.cP_Ginfo .cname .verified_company_check svg {
    margin: auto;
    width: 12px;
    height: 12px;
    stroke-width: 3;
    stroke: #fff;
}

.cP_Ginfo .cname h4 {
    font-weight: 500;
    margin: 0px;
}

.cP_Ginfo .crif p {
    font-weight: 500;
}

.cP_Ginfo .subtitle {
    text-transform: uppercase;
    font-weight: 700;
}

.cP_Ginfo p {
    font-weight: 500;
}

.cP_Ginfo a {
    color: inherit !important;
}

/*-------------------------------------------------------------
	Responsive Table Settings
--------------------------------------------------------------*/

tr.child ul.dtr-details>li {
    /* display: table; */
    width: 100%;
}

.dtr-title {
    display: table-cell;
    padding: 0.5em 0;
}

.dtr-data {
    display: table-cell;
    text-align: left;
    padding: 0.5em 0;
}

.note-editor.note-frame, .note-editor.note-airframe {
    border: 2px solid #00000032;
    border-radius: 15px;
}

.note-editor.note-frame .note-statusbar .note-resizebar {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.note-editor.note-frame .note-statusbar, .note-editor.note-airframe .note-statusbar {
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

