/**
 * Place your custom styles here.
 */
@import "dashboard.css";

.form-line{
    border: 1px solid #B29999;
    padding-bottom: 20px;
}

.ap-container .form-group{
    margin-top: 20px;
}
.form-group label, .field-label{
    font-size: 1.3em;
    line-height: 1em;
    font-weight: normal;
}
.form-control{
    font-size: 1.3em;
    color: #080808;
}
textarea.form-control {
    height: 135px;
}

.submit{
    font-size: 1.1em;
    float: right;
    width: 150px;
    background-color: transparent;
    color: #fff;
}
.form-group .tabledrag-toggle-weight, .filter-wrapper, .help-block{
    display: none;
}

.ap-submit{
    padding-top: 20px;
}

.navbar-header{
    float: none;
}

.link-badge{
    padding: 0.4em 0.6em 0.3em 0.6em;
}

.unl-comments .thumbnail {
    padding:0px;
}
.unl-comments .panel {
	position:relative;
    margin-bottom: 15px;
}
.unl-comments .panel>.panel-heading:after,.panel>.panel-heading:before{
	position:absolute;
	top:11px;left:-16px;
	right:100%;
	width:0;
	height:0;
	display:block;
	content:" ";
	border-color:transparent;
	border-style:solid solid outset;
	pointer-events:none;
}
.unl-comments .panel>.panel-heading:after{
	border-width:7px;
	border-right-color:#f7f7f7;
	margin-top:1px;
	margin-left:2px;
}
.unl-comments .panel>.panel-heading:before{
	border-right-color:#ddd;
	border-width:8px;
}
.unl-company-card-actions {
    float: right;
    margin: -5px 15px 0 0;
}

/*Login page*/

/* STRUCTURE */
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    margin-top: 150px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}


/* FORM TYPOGRAPHY*/

#formContent button[type=submit]  {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#formContent button[type=submit]:hover {
    background-color: #39ace7;
}

#formContent button[type=submit]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

#formContent input[type=text], #formContent input[type=password] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

#formContent input[type=text]:focus, #formContent input[type=password]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}

#formContent input[type=text]:placeholder, #formContent input[type=password]:placeholder {
    color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width:60%;
}

/*  Panel-Table */
.panel-table .panel-body{
    padding:0;
}

.panel-table .panel-body .table-bordered{
    border-style: none;
    margin:0;
}

.panel-table .panel-body .table-bordered > thead > tr > th:first-of-type {
    text-align:center;
    width: 100px;
}

.panel-table .panel-body .table-bordered > thead > tr > th:last-of-type,
.panel-table .panel-body .table-bordered > tbody > tr > td:last-of-type {
    border-right: 0px;
}

.panel-table .panel-body .table-bordered > thead > tr > th:first-of-type,
.panel-table .panel-body .table-bordered > tbody > tr > td:first-of-type {
    border-left: 0px;
}

.panel-table .panel-body .table-bordered > tbody > tr:first-of-type > td{
    border-bottom: 0px;
}

.panel-table .panel-body .table-bordered > thead > tr:first-of-type > th{
    border-top: 0px;
}

.panel-table .panel-footer .pagination{
    margin:0;
}

/*
used to vertically center elements, may need modification if you're not using default sizes.
*/
.panel-table .panel-footer .col{
    line-height: 34px;
    height: 34px;
}

.panel-table .panel-heading .col h3{
    line-height: 30px;
    height: 30px;
}

.panel-table .panel-body .table-bordered > tbody > tr > td{
    line-height: 34px;
}





/*              Dragable                 */

[draggable] {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}
.activity {
    padding: 5px;
    display: inline-block;
    margin: 0 5px 10px 0;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 3px #000;
    -ms-box-shadow: inset 0 0 3px #000;
    box-shadow: inset 0 0 3px #000;
    text-align: center;
    cursor: move;
}
.activity-decline {
  color: #d4171a;
  padding: 5px;
  display: inline-block;
  margin: 0 5px 10px 0;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 3px #d4171a;
  -ms-box-shadow: inset 0 0 3px #d4171a;
  box-shadow: inset 0 0 3px #d4171a;
  text-align: center;
  cursor: move;
}
.english-сheck {
    color: #390673;
    padding: 5px;
    display: inline-block;
    margin: 0 5px 10px 0;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 3px #390673;
    -ms-box-shadow: inset 0 0 3px #390673;
    box-shadow: inset 0 0 3px #390673;
    text-align: center;
    cursor: move;
}
.hr-shelf {
  margin: 8px 0;
  padding: 0;
  height: 10px;
  border: none;
  border-top: 1px solid #333;
  box-shadow: 0 10px 10px -10px #8c8b8b inset;
}

#activity-panel.over {
     border: 2px dashed #000;
}

#activity-panel, .notification-panel {
    padding: 10px 25px 25px;
}

li.comment-reply {
    display: none;
}





/** awesomeform */

/* ============ DEFAULTS =========== */

.form-heading {
    padding: 0 15px 15px 15px;
    color: #3C4857;
;
}

form {
    background: #fff;
    padding: 15px;
    position: relative;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
}

.form-control {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 100%;
    height: 40px;
    display: block;
    border: 1px solid #DDD;
    color: #3C4857;
    will-change: background-position;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    background-position: -100%;
    background-size: 100%;
    background-repeat: no-repeat;
    font-size: 14px;
    font-weight: 100;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    outline: 0 none;
}

.img-fluid {
    margin-bottom: 15px;
}


/* ============ MODAL =========== */

.modal-body {
    position: relative;
    max-height: calc(100vh - 210px);
    padding: 0;
    overflow-y: auto;
}

.modal-header {
    padding: 10px;
    border: none;
}

.modal-dialog {
    width: 100%;
    height: 100%;
}

.modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-title.ui-dialog-title .close.ui-dialog-titlebar-close{
  display: none;
}

button.close {
    color: #f55a4e;
    outline: none;
}

.close {
    color: #3C4857;
    opacity: 0.9;
}

/* ============ LABEL =========== */

label {
    color: #3C4857;
    font-weight: 300;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    display: inline-block;
    font-size: 12px;
}

.floating-label {
    -webkit-transform: translateY(-18px);
    transform: translateY(-18px);
    position: absolute
}

.label-required:before {
    content: '*';
    color: #f55a4e;
    position: absolute;
    margin-left: -15px
}

.circle-badge {
  background: #000 none repeat scroll 0 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin-right: 5px;
  width: 10px;
}

.views-field-field-staff-for-sales .circle-badge {
  margin-left: 2%;
}

.circle-badge.blue {
  background: #1979cc none repeat scroll 0 0;
}

/* ============ INPUT =========== */

input[type=email],
input[type=text],
textarea,
input[type=password],
input[type=number] {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    border: 1px solid #DDD;
    border-radius: 4px;
    padding: 8px;
    will-change: background-position;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    background-position: -1920px 0;
    background-size: 100%;
    background-repeat: no-repeat;
    color: #3C4857;
    font-size: 13px;
    font-weight: 100;
}

input[type=email].input-active,
input[type=email]:focus,
input[type=text].input-active,
input[type=text]:focus,
textarea.input-active,
textarea:focus,
input[type=password].input-active,
input[type=password]:focus,
input[type=number].input-active,
input[type=number]:focus {
    background-position: 0 0;
    box-shadow: none;
    outline: 0;
    border: 1px solid #f55a4e;
}

input[type=email].input-active,
input[type=email]:focus:after,
input[type=text].input-active,
input[type=text]:focus:after,
textarea.input-active,
textarea:focus:after,
input[type=password].input-active,
input[type=password]:focus:after,
input[type=number].input-active,
input[type=number]:focus:after {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    border: none;
    padding: 15px 0;
    border-bottom: solid 1px #DDD;
    will-change: background-position;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #DDD 96%);
    background-position: -1920px 0;
    background-size: 100%;
    background-repeat: no-repeat;
    color: #000;
    font-size: 14px;
}

input[type=email]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder {
    transition: all .2s cubic-bezier(.64, .09, .08, 1);
    color: #3C4857;
}

input[type=radio]:after,
input[type=radio]:before {
    content: '';
    position: absolute;
    transition: all .3s cubic-bezier(.64, .09, .08, 1)
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
    top: -2px;
    margin-left: -1px;
    margin: 5px 12px 5px 0px;
}

input[type=checkbox]:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #f55a4e;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    top: -2px;
    margin-left: -1px;
}

input[type=checkbox]:after {
    content: '✓';
    color: #fff;
    background: #f55a4e;
    position: absolute;
    top: -2px;
    margin-left: -1px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #f55a4e;
    border-radius: 3px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s cubic-bezier(.64, .09, .08, 1);
    will-change: opacity
}

input[type=checkbox]:checked:after {
    opacity: 1
}

input[type=radio] {
    position: relative;
    top: 2px;
    left: 2px;
    margin: 0 8px;
    cursor: pointer
}

input[type=radio]:before {
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #f55a4e;
    display: inline-block;
    top: -5px;
    left: -8px;
    background-image: radial-gradient(circle, #f55a4e 60%, #fff 70%);
    background-size: 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    will-change: background-size;
    z-index: 2
}

input[type=radio]:after {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%
}

input[type=radio]:checked:before {
    background-size: 14px 14px
}

textarea.form-control {
    padding: 10px 15px;
    height: auto;
    margin-bottom: 15px;
}

::placeholder {
    color: #3C4857 !important;
}


/* ============ BUTTONS =========== */

.modern-button {
    margin: 15px 0;
    padding: 8px 24px;
    border-radius: 50px;
    color: #fff;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    font-size: 14px;
    font-weight: 100;
    outline: none;
}

.modern-red {
    background: #f55a4e;
    border: 1px solid #f55a4e;
    box-shadow: 0 12px 20px -10px rgba(244, 67, 54, 0.28), 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(244, 67, 54, 0.2);
}

.modern-red:hover {
    border: 1px solid #dc5146;
    background: #dc5146;
}

span.service-provider:before{
    display: inherit;
    margin-left: 10px;
}

.page-header > h3 {
    display: inline-block;
}

.node-badge{
    display:inline-block;
    font-size: 12px;
    background: #f16720;
    color: white;
    text-align:center;
    line-height: 1.5;
    box-shadow: 0 0 1px #333;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 5px;
}

.node-badge:hover {
  background: #d1500d;;
}

.link-company-link {
  color: #343a40;
  font-weight: bold;
}

.provider:before{
    content: "Provider";
}

.heading-btn{
    float: right;
    margin-right: 30px;
}

.view-activity-dashboard fieldset{
    font-size: 12px;
    width:50%;
    float: left;
}
.view-activity-dashboard fieldset label{
    font-size: 12px;
}

.view-activity-dashboard fieldset div.form-type-checkbox{
    width: 300px;
}

.view-activity-dashboard fieldset div.form-type-radio{
    width: 100px;
}
/*   Card for contact person */
.card{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 250px;
    min-height: 170px;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    margin: 0 10px 10px 0;
}

.card-body{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title{
    margin-bottom: .75rem;
}

.is-decision-maker {
    color: black;
    font-weight: 500;
}
.mail-spam {
    color: #fa9a2a;
    font-weight: 500;
}
.mail-contact {
    color: #5bc0de;
    font-weight: 500;
}
.mail-unsubscribe {
    color:#fa9a2a;
    font-weight: 500;
}

.card-text{
    margin-top: 0;
    margin-bottom: 1rem;
}

.card-link{
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

.card-group .view-content{
    display: flex;
    flex-wrap: wrap;
}

body.toolbar-fixed #navbar {
    top: 78px;
}

body.toolbar-fixed #sidebar {
    top: 78px;
}

.view-header .total-group-employee, .view-header .add-contact-lebel {
    width: 40%;
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
}

.panel-profile {
    margin-top: 30px;
}

div.exposed {
    display: inline-block;
}
#tui_chart {
    float: left;
}
.view-filters .form-inline fieldset{
    width: 33%;
    margin-right: 20px;
}

form.views-exposed-form .form-inline fieldset .fieldset-wrapper {
    width: 100%;
    margin: 5px;
}

form.views-exposed-form .form-inline label{
    display: block;
}

form.views-exposed-form .form-inline #edit-actions{
    float: right;
}
.view-sales-company-activity-statistics table{
    margin-bottom:0px;
}

/* Tables */
.table-adaptive {
    overflow-x: auto;
}

.call-wrap-buttons {
    display: flex;
}

.table-adaptive td:not(:nth-child(1)) {
    -ms-word-break: break-all;
    word-break: break-all;
}

.glyphicon,
.fa {
  font-size: 16px;
}

.profile-widget-social a,
.group_main_tabs a,
.sidebar a {
  text-decoration: none;
}

.paragraph--type--applicants-language {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 5px;
}

.field--name-field-par-app-language {
    width: fit-content;
  font-weight: 700;
}

.field--name-field-par-app-language {
  position: relative;
  padding-right: 10px;
}

.field--name-field-par-app-language:after {
   position: absolute;
   top: 0;
   right: 5px;
   content: ':';
   display: block;
 }

.field--name-field-par-app-language,
.field--name-field-par-app-language-level {
  word-break: normal;
}

.field--name-field-par-app-language-comment:before {
  content: 'Comment:';
  font-weight: 700;
}

.field--name-field-par-app-language-comment {
  flex-basis: 100%;
}

.manage-data-list {
  padding-left: 3%;
}

.manage-data-list .manage-data-list__item {
  list-style: decimal;
}

div.view-applicant-search tr.applicant-search-this-staff {
  background-color: rgba(149, 236, 149, 0.7);
}

div.view-applicant-search tr.applicant-search-this-staff:hover {
  background-color: rgba(149, 236, 149, 0.59);
}

div.view-applicant-search tr.applicant-search-staff-fired {
  background-color: rgba(227, 199, 114, 0.46);
}

div.view-applicant-search tr.applicant-search-staff-fired:hover {
  background-color: rgba(227, 199, 114, 0.35);
}

div.field--type-file th.checkbox {
  margin: 0;
  display: table-cell;
}

div.field--type-file td.checkbox {
  display: table-cell;
}

div.field--type-file input.file-display {
  margin: 0;
}

tr.table-row--applicant-status-Declined {
  background-color: #f5c6cb !important;
}

.checkbox-filter {
  transition: all .3s;
}

.filter-hide {
  display: none;
}

.dl-horizontal dd ul li a {
  float: left;
}

.view-id-companies_dashboard .table > tbody > tr > td.views-field-nothing {
  text-align: left;
}

.modal-header-info {
    margin-top: 40px;
    margin-bottom: 20px;
}

.modal-header-info.first {
    margin-top: 0;
}

.modal-header-info label {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.view-staff-storage .table thead th:nth-child(1),
.view-administrative-department-storage .table thead th:nth-child(1) {
  width: 10%;
}

.view-staff-storage .table thead th:nth-child(2),
.view-administrative-department-storage .table thead th:nth-child(2) {
  width: 70%;
}

.view-staff-storage .table thead th:nth-child(3),
.view-administrative-department-storage .table thead th:nth-child(3) {
  width: 20%;
}

.inline {
  display: flex;
}

.payment_details-container .form-item {
  margin: 0px;
}

.company-header__flags button {
  margin-top: 0px;
}

.field--name-field-cp-emails td:nth-child(1) {
  width: 4%;
}
.field--name-field-cp-emails td:nth-child(3) {
    width: 9%;
}

.field--name-field-cpe-email {
    width: 60%;
    float: left;
}

.field--name-field-cp-emails .panel-heading,
.field--name-field-cpe-email .control-label {
  display: none;
}

.field--name-field-cpe-is-contact-email {
    width: 30%;
    float: left;
    margin-left: 10px;
    padding-top: 7px;
}

.field--name-field-cp-emails .panel-body {
    padding: 10px;
}

.edit-company-form .form-group:last-child {
  margin-bottom: 20px;
}
