/* Minification failed. Returning unminified contents.
(429,1): run-time error CSS1019: Unexpected token, found '@import'
(429,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css?family=Lato:100,300,300i,400')'
 */


* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

/*---------------------------------------------*/


/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
	    /*float: left;*/
    margin-right: 14px;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
    border: 1px solid #cccccc;
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    resize: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {

  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.txt2 {

  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  text-transform: uppercase;
}

.bg1 {background-color: #3b5998}
.bg2 {background-color: #1da1f2}
.bg3 {background-color: #ea4335}



/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wrap-login100 {
  width: 500px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
    width: 75%;
    margin: auto;
}

.login100-form-title {
display: block;

    font-size: 39px;
    color: #3b5998;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    padding: 30px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}

.label-input100 {

  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  padding-left: 7px;
}

.input100 {
    font-size: 16px;
    color: #333333;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 55px;
    background: transparent;
    padding: 0 7px 0 43px;
    margin-top: 10px;
}


/*---------------------------------------------*/
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::after {
  content: attr(data-symbol);

  color: #adadad;
  font-size: 22px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding-left: 13px;
  padding-top: 3px;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7f7f7f;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.input100:focus + .focus-input100::after {
  color: #a64bf4;
}

.has-val.input100 + .focus-input100::after {
  color: #a64bf4;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;

  box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -moz-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -webkit-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -o-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -ms-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: -o-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: -moz-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {

  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Social item ]*/
.login100-social-item {
  font-size: 25px;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px;
}

.login100-social-item:hover {
  color: #fff;
  background-color: #333333;
}

/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }
} 
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,300i,400');

body, html {
    height: 100%;
    font-family: 'Lato', sans-serif;
}


.wrap {
    background: url(../images/login_bg.png) no-repeat;
    background-size: cover;
    min-height: 100%;
}

.wrap1 {
    background: #3b5998;
    margin: auto;
}

    .wrap1 span img {
        display: inline-block !important;
    }

    .wrap1 ul li a {
        color: #fff;
        text-transform: uppercase;
    }

.nav > li > a {
    position: relative;
    display: inline-block !important;
    padding: 10px 15px;
}

.login_bg {
    background: #fafbfcc7;
    width: 80%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 10px;
    box-shadow: 2px 1px 1px 2px #cdd0d2;
    padding-bottom: 10px;
    padding-top: 10px;
}

.log_btn {
    background: #3b5998;
    padding: 10px 15px;
    width: 100%;
    border-radius: 0px;
    font-size: 16px;
    color: #fff !important;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
}

.log_btn:hover {
    background: #273d6d;
}

.log_logo {
    position: relative;
}

.img_log {
    position: absolute;
    top: 260px;
}

.newmenber a {
    color: #929aab;
}

a:hover {
    text-decoration: none;
}

.imguser_icon {
    margin-top: 20px;
}

.lead {
    margin: 15px 0;
    padding: 20px;
    border: 0 solid #e7e7e7;
    border-radius: 5px;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.05);
}

.media h2 {
    color: #555;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 30px;
}

.lead_bottom h3 {
    color: #999;
    font-size: 40px;
}

.lead_bottom p {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.center-block {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.input-group .icon-addon .form-control {
    border-radius: 0;
}

.icon-addon {
    position: relative;
    color: #555;
    display: block;
}

    .icon-addon:after,
    .icon-addon:before {
        display: table;
        content: " ";
    }

    .icon-addon:after {
        clear: both;
    }

    .icon-addon.addon-md .glyphicon,
    .icon-addon .glyphicon,
    .icon-addon.addon-md .fa,
    .icon-addon .fa {
        position: absolute;
        z-index: 2;
        left: 10px;
        font-size: 14px;
        width: 20px;
        margin-left: -2.5px;
        text-align: center;
        padding: 10px 0;
        top: 1px
    }

    .icon-addon.addon-lg .form-control {
        line-height: 1.33;
        height: 46px;
        font-size: 18px;
        padding: 10px 16px 10px 40px;
    }

    .icon-addon.addon-sm .form-control {
        height: 30px;
        padding: 5px 10px 5px 28px;
        font-size: 12px;
        line-height: 1.5;
    }

    .icon-addon.addon-lg .fa,
    .icon-addon.addon-lg .glyphicon {
        font-size: 18px;
        margin-left: 0;
        left: 11px;
        top: 4px;
    }

    .icon-addon.addon-md .form-control,
    .icon-addon .form-control {
        padding-left: 30px;
        float: left;
        font-weight: normal;
        background: #dfe3ee;
        border-radius: 50px;
    }

    .icon-addon.addon-sm .fa,
    .icon-addon.addon-sm .glyphicon {
        margin-left: 0;
        font-size: 12px;
        left: 5px;
        top: -1px
    }

    .icon-addon .form-control:focus + .glyphicon,
    .icon-addon:hover .glyphicon,
    .icon-addon .form-control:focus + .fa,
    .icon-addon:hover .fa {
        color: #2580db;
    }

.addon-md {
    position: relative;
    color: #555;
    left: -134px;
    top: 15px;
    width: 229px;
}

    .addon-md img {
        margin-top: -55px;
        margin-left: 10px;
    }

.mobile_menu {
    display: none;
}

.assigned {
    margin: 15px 0;
    padding: 20px;
    border: 0 solid #e7e7e7;
    border-radius: 5px;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.05);
    background: #fdfdfd;
    min-height: 70px;
}

.navbar-inverse {
    border-radius: 0px;
}

.assign_left {
    float: left;
}

    .assign_left span {
        margin-left: 15px;
    }

.pull-right_a {
    float: right
}

.user_p {
    margin-top: 20px;
}

.pull-right_a p {
    font-size: 16px;
    font-family: Lato;
}

.feature_checkbox label {
    width: 22%;
}


.closeModel {
    background: #dfe3ee;
    padding: 0px 6px;
    color: #000;
    font-size: 20px;
}

.dataTables_filter input[type="search"] {
    border: 1px solid #d2d1d1 !important;
    padding: 4px;
}

.dataTables_length select {
    padding: 3px;
}

.scroll_fix {
    overflow: auto;
    max-height: 165px;
    border: 1px solid #cab3b3;
    padding-top: 5px;
}

.note-editable.panel-body {
    height: 200px !important;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px 18px;
    border-bottom: none !important;
    background: #f0f0f1;
}

table.dataTable.no-footer {
    border-bottom: none !important;
}

.email-subject {
    max-width: 100% !important
}

.align-right {
    text-align: right;
}

.legend-action {
    float: right;
    font-size: 16px;
}

.badge-notify {
    background: #e86228;
    position: relative;
    top: -15px;
    left: -11px;
}

.notification li a {
    color: #000 !important;
    text-transform: capitalize !important;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 25px;
}

.notification {
    background: #e7efff;
    overflow: auto;
    max-height: 315px;
}

    .notification .header {
        background-color: #688a7e;
        color: #fff;
        margin-right: 0px;
        line-height: 30px;
        margin-top: -5px;
        padding-left: 10px;
    }

.emailbody {
    overflow: auto;
    height: 100px;
    border: 1px solid #f1f1f1;
}

.email_border {
    border: 1px solid #f1f1f1;
}

    .email_border p {
        font-family: inherit;
        font-size: 15px;
        color: #666666;
        margin: 0px;
        padding: 9px 0px;
        font-weight: 500;
    }

.attachment_scroll {
    overflow: auto;
    height: 90px;
}

.email_margin0 {
    margin-top: 0px;
}

.bottom {
    position: relative;
    z-index: -1;
    margin-left: -38px;
    opacity: 0;
}

.sidebar-menu li a:focus img.top {
    opacity: 0;
}

.sidebar-menu li a:focus img.bottom {
    opacity: 1;
}

.checklistsCheckbox {
    font-weight: normal;
    padding-left: 10px;
}

.delete-button {
    width: 18px;
    float: right;
}

.modal-dialog {
    right: auto;
    left: 50%;
    width: 70% !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

.modal-dialog100 {
    right: auto;
    left: 50%;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.table-stripedwidth tr th:nth-child(2) {
    width: 75%;
}

.hrwidth {
    border-top: 2px solid #3b5998;
    width: 49%;
}

.model-confirmation {
    width: 50%;
    margin: auto;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    overflow: auto;
    overflow-y: hidden !important;
}

.table-checklist > thead > tr > th, .table-checklist > tbody > tr > th, .table-checklist > tfoot > tr > th, .table-checklist > thead > tr > td, .table-checklist > tbody > tr > td, .table-checklist > tfoot > tr > td {
    border-top: none !important;
}

.table-checklist > thead > tr > th {
    border-bottom: none !important;
}

.table-checklist {
    margin-top: -25px !important;
    margin-bottom: -15px !important;
}

.loader-checklist {
    width: 16px;
    position: absolute;
    margin-left: 300px;
    margin-top: -20px;
    display: none;
}

.model-height {
    max-height: 400px;
    overflow: auto;
}

.customError {
    display: none;
}

.required {
    color: red;
    font-weight: bold !important;
}

.input200 {
    max-width: 200px;
}

.profile-right {
    text-align: right;
    padding-top: 5px;
    float: right;
}
/*media content*/
@media screen and (max-width: 767px) {
    .img_log {
        position: absolute;
        top: 0px;
    }

    .newmenber a {
        color: #929aab;
        font-size: 12px;
    }

    .mobile_menu {
        display: inline-grid;
        padding: 10px 32px;
        line-height: 33px;
    }

    .sidebar-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .addon-md {
        position: relative;
        color: #555;
        left: -50px;
        top: 15px;
        width: 229px;
    }

    .pull-right_a {
        float: left;
    }

    .assign_left p span {
        font-size: 10px;
    }

    .center {
        z-index: 9999;
        padding-top: 40% !important;
    }

    .nav > li {
        position: relative;
        display: contents;
    }

    .modal-dialog {
        right: auto;
        left: 50%;
        width: 70% !important;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .profile-right {
        text-align: left;
        padding-top: 5px
    }
}

.side-active {
    color: #f1f1f1;
    background: #dd4b39
}

.summary-align {
    text-align: center;
    vertical-align: inherit !important;
    font-weight: bold;
}

.treeview.active a > i.fa {
    background-color: #3b5998;
    width: 35px !important;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 35px;
    color: #fff;
}

.treeview a > i.fa {
    background-color: #dfe3ee;
    width: 35px !important;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 35px;
    color: #68696a;
}

.active-menu a > i.fa {
    background-color: #3b5998;
    color: #fff;
}

.sidebar-menu li > a > .pull-right-container > .fa-angle-left {
    display: none;
}

ul.sidebar-menu > li > a {
    padding: 12px 5px 12px 8px;
}

ul.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
    display: none !important;
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right), .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
    background-color: transparent;
}

.btn-reports {
    margin-top: 25px;
}

.table-responsive {
    overflow-x: auto;
}

.checklistSize {
    height: 400px;
    overflow: auto;
}

.selectpickerBtn .btn-default,
.selectpickerBtn .btn-default:hover,
.selectpickerBtn .btn-default:focus {
    background: #fff;
    border: 1px solid #ccc;
}

.datepicker {
    z-index: 10000 !important;
}

.profile {
    float: left;
    padding-top: 5px;
    padding-left: 20px;
}

#tabs.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid #b9b8b8 !important;
    border-radius: 4px 4px 0 0;
}

#deals {
    margin-top: 20px;
    box-shadow: 0px 0px 1px 0px #e2e2e2;
    padding: 19px 12px 0px 12px;
    margin-bottom: 20px;
    background: #fdfdfd;
    border: 1px solid #f7f7f7;
}

.profile-shadow {
    margin-top: 20px;
    box-shadow: 0px 0px 1px 0px #e2e2e2;
    padding: 19px 12px 10px 12px;
    margin-bottom: 20px;
    width: 97%;
    margin: auto;
    background: #fdfdfd;
    border: 1px solid #f7f7f7;
}

.profile-shadowMCA {
    margin-top: 20px;
    box-shadow: 0px 0px 1px 0px #e2e2e2;
    padding: 10px 10px 1px 10px;
    margin-bottom: 30px;
    background: #fdfdfd;
    border: 1px solid #f7f7f7;
}
.profile-shadowMCA table tr td .form-control{
    width: 100% !important;
}
.top_headed nav.navbar{
    margin: 0;
}
/*.profile-right p {
    border: 1px solid #3c8dbc;
    width: 100%;
    text-align: center;
    padding: 2px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
    .profile-right p:hover {
        border: 1px solid #87c8ef;
    }*/
.legend-action a {
    padding: 6px 12px;
    border: 1px solid #46b8da;
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
    border-radius: 4px;
}

    .legend-action a:hover {
        background-color: #31b0d5;
        border-color: #269abc;
        color: #fff;
    }

.textRight {
    text-align: right;
}


.input-group input[type="text"] {
    width: 100% !important;
}
.registerLink{
    text-align: center;
}
.registerLink a {
    color: #3b5998;
    display: block;
    font-weight: bold;
}
.m-0{
    margin: 0;
}

.top_headed .navbar-nav {
    margin: 0;
}
/*.input-group input[type="text"]{
    width: 100% !important;
}*/
.selectpickerBtn{
    width: 100%;
}
