/* fonts */
@font-face {
  font-family: century-gothic-regular;
  src: url(../fonts/century-gothic-font/CenturyGothic.ttf)
  
}
@font-face {
    font-family: century-gothic-bold;
    src: url(../fonts/century-gothic-font/GOTHICB0.TTF);
}
.cg {
  font-family: century-gothic-bold;
}
@font-face {
  font-family: 'DidactGothic-Regular';
  src: url('../fonts/century-gothic-font/DidactGothic-Regular.ttf') format('truetype');
}
.df {
  font-family: 'DidactGothic-Regular';
}
select, option {
  font: -moz-century-gothic-regular !important;
}
select {
  padding: 0.7rem .5rem !important;
}
/* fonts */

/* custom checkbox */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
  .container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    z-index: 99;
  }

/* Create a custom checkbox */
.container-checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #d4d4d4;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
    background-color: #666666;
    border: none;
}




.checkmarkdisable {
  background-color: lightgray;
  border: none;
  border: 1px solid #d5d5d5;
  width: 15px;
  height: 15px;
  display: inline-block;
  left: 0;
  position: absolute;
  top: 2px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* end custom checkbox */

/* custom radio button */
/*[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}*/
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666666;
    padding-right: 1em;
    font-family: century-gothic-regular;
    font-weight: 100;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #3871c8;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* end custom radio button */

/* selectbox arrow */

select.form-control {
  background-image: url(../images/dropdown-menu.png) !important;
  background-position: calc(100% - 10px) 14px, calc(100% - 10px) 14px, 100% 0 !important;
  background-repeat: no-repeat !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* end selectbox */

.user-details select.form-control {
  background-image: url(../images/dropdown-menu.png) !important;
  background-position: calc(100% - 10px) 14px, calc(100% - 10px) 14px, 100% 0 !important;
  background-repeat: no-repeat !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}
hr{
    border-top: 1px solid #e5eaf3;
}

label {
  color: #313131;
  font-weight: 100;
  font-size: 13px;
  font-family: century-gothic-regular;
  font-weight: inherit !important;
}

.eye-field-icon{
    float: right;
    margin-left: -25px;
    position: absolute;
    z-index: 3;
    cursor: pointer;
    top: 11px;
}

.btn {
    min-height: 37px;
    border-radius: 50px !important; 
    font-size:13px  !important;
    transition: all 0.5s;
    position: relative;
    font-family: century-gothic-regular;
    min-width: 140px;
}
.btn:focus{
    outline: none;
}
.p0{
    padding: 0px !important;
}
.p5{
    padding: 0 5px;
}

.back-button{
    background-color: #666666;
    color: #fff;
}

.back-button:hover{
    background-color: #525252;
    color: #fff !important;
}

.blue-button{
    /* background-color: #3871c8; */
    background: linear-gradient( 40deg, #1f4f98, #3871c8) !important;
    color: #fff;
}
.blue-button:hover{
    background: linear-gradient( -40deg, #1f4f98, #3871c8) !important;
    /* background-color: #2e63b5; */
    color: #fff !important;
}

.mr10px{
    margin-right: 10px;
}
.mr5px {
  margin-right: 5px;
}
/* BS Overwrite classes */
.input-group-addon {
    background-color: #edf2fa !important;
    border: none !important;
    border-radius: 4px 0px 0px 4px !important;
    padding: 6px 0px 6px 12px !important;
}
.form-control {
  box-shadow: none !important;
  border-color: #ddd !important;
  background: #edf2fa !important;
  border: none !important;
  border-radius: 0px 2px 2px 0px !important;
  min-height: 40px !important;
  font-size: 13px !important;
  transition: all 0.5s !important;
}

.form-control:focus{
    box-shadow: none !important;
}
/* end */

.floatRight{
    float: right;
}

.blue-text{
    color: #3871c8 !important;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: 99;
}

fieldset {
    padding: .35em .625em .75em !important;
    margin: 0 2px !important;
    border: 1px solid #e6e6e6 !important;
}
legend{
    width:inherit !important;
    padding:0 10px !important; 
    border-bottom:none !important;
    font-size: 12px !important;
    margin-bottom: 10px !important;
    font-family: century-gothic-regular;
}

.mb2{
    margin-bottom: 2em;
}

/* user profile upload */

.avatar-upload {
    position: relative;
    max-width: 205px;
  }
  .avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    bottom: 30px;
  }
  .avatar-upload .avatar-edit input {
    display: none;
  }
  .avatar-upload .avatar-edit input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #c83771;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
  }
  .avatar-upload .avatar-edit input + label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
  }
  .avatar-upload .avatar-edit input + label:hover:after{
    color: #757575;
  }
  .avatar-upload .avatar-edit input + label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
  }
  .avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 1px solid #ccc;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%)
  }
/*  .avatar-upload .avatar-preview > div {
    width: 100% !important;
    height: 100% !important;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }*/

  /*  */

  .theme-settings{
      display: none;
  }

  .xn-logo{
      background-color: #fff;
      /*padding: 9px !important;*/
  }

  .change-password{
    position: relative;
    font-family: century-gothic-regular;
    line-height: 20px;
    margin-top: 1.3em;
  }

  .user-details .tab-pane{
    background: #fff;
    padding: 15px;
 }

.panel-body {
  padding: 15px;
  background: #f6f8fb;
}
.user-panel .tab-pane.active {
  padding-top: 35px !important;
  box-shadow: 0px 0px 10px #0000000d !important;
}
.modal-dialog {
    z-index: 99;
}

.date-time{
    color: #666666;
    display: inline-block;
    font-family: 'century-gothic-regular';
    font-size: 13px;
}

.date-time-wrap{
    padding: 16px 10px !important;
    text-align: center;
}

.profile-width{
    width: auto !important;
    padding: 16px 10px !important;
}

.change-org{
    width: 30px;
    height: 30px;
    font-size: 18px;
    color: #DDD;
    border: 2px solid #DDD;
    line-height: 25px;
    padding: 2px 5px;
    border-radius: 5px;
}

.member-profile {
  width: 29px;
  border-radius: 50px;
  display: inline !important;
  border: 1px solid #fff;
  margin-right: -6px;
}

.playbook-count{
    background-color: #3ac9b3;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50px;
}

.Project-edit {
 
  text-decoration: underline;
  cursor: pointer;
 
}


.table-wrapper tbody tr {
  background: #fff;
  box-shadow: 2px 2px 3px #eee;
  margin-bottom: 2px;
  font-size: 13px;
}

  .table-wrapper tbody tr i {
    background-color: #e8eef7;
    display: inline;
    padding: 0px 4px;
    margin: 4px 4px;
    font-size: 16px;
    border-radius: 3px;
    margin-right: 3px;
    cursor: pointer;
  }

.table-wrapper tbody tr .edit{
    color: #c88e37;
}

.table-wrapper tbody tr .delete{
    color: #c84537;
}

.table-wrapper tbody tr .add{
    color: #3ac9b3;
}

.show-data .form-control{
    background-color: #fff !important;
    border-radius: 2px !important;
}

.show-data label{
    margin-top: 1em;
}

.filter{
    margin: 10px;
    color: #666666;
    font-size: 13px;
    cursor: pointer;
}

.filter-box{
    display: none;
}

.filter-box{
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-family: century-gothic-regular;
    margin-bottom: 1em;
}

.filter-box .form-control{
    border-radius: 3px !important;
}

.apply-filter{
    background-color: #c83771;
    color: #fff;
    margin-top: 1.5em;
}

.apply-filter:hover{
    background-color: #b3275f;
    color: #fff !important;
}

.filter-box .reset{
    background-color: #fff;
    color: #000;
    margin-top: 1.5em;
    text-decoration: underline;
    display: inline;
}

.filter-box .reset:hover{
    background-color: #fff;
    color: #000;
    text-decoration: underline;
    font-family: 'century-gothic-bold';
}

.pagination>li>a, .pagination>li>span {
    padding: 4px 8px !important;
}

/* search box */
.search-container {
	position: relative;
    display: inline-block;
    height: 37px;
    width: 47px;
    vertical-align: bottom;
}

.mglass {
	display: inline-block;
	pointer-events: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
    z-index: 99;
}

.searchbutton {
    position: absolute;
    font-size: 22px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    z-index: 0;
    background: #e8eef7 !important;
    text-align: center;
    height: 40px;
    line-height:40px;
    border-radius: 5px;
}

.search:focus + .searchbutton {
	transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	background-color: white;
	color: black;
}

.search {
	position: absolute;
	background-color:#e8eef7;
	outline: none;
	border: none;
	padding: 0;
	width: 0;
	height: 100%;
	z-index: 0;
	transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
    border-radius: 5px;
}

.search:focus {
	width: 300px; /* Bar width+1px */
	padding: 0 16px 0 0;
}

.expandright {
	left: auto;
	right: 0px; /* Button width-1px */
}

.expandright:focus {
	padding: 0 0 0 16px;
}
/* search box */

/* Multi Step Form */
@media screen and (max-width:1000px) {
    .md-stepper-horizontal .md-step .md-step-title {
        margin-top: 16px;
        font-size: 0.7rem;
        font-weight: 600;
    }

    .productandsafety {
        margin-top: 6em;
        margin-bottom: 6em;
    }
}


  .stepDone {
    background-color: #3871c8 !important;
    color: #ffffff !important;
  }

  .doneStepBar {
    border-top: 3px solid #3871c8 !important;
  }


  .md-stepper-horizontal {
    display: table;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
  }

    .md-stepper-horizontal .md-step {
      display: inline-block;
      position: relative;
      padding: 0px 24px 24px;
    }

      .md-stepper-horizontal .md-step:active {
        border-radius: 15% / 75%;
      }

      .md-stepper-horizontal .md-step:first-child:active {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }

      .md-stepper-horizontal .md-step:last-child:active {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }

      .md-stepper-horizontal .md-step:first-child .md-step-bar-left,
      .md-stepper-horizontal .md-step:last-child .md-step-bar-right {
        display: none;
      }

      .md-stepper-horizontal .md-step .md-step-circle {
        width: 30px;
        height: 30px;
        /* margin: 0 auto; */
        background-color: #e8eef7;
        border-radius: 5px;
        text-align: center;
        line-height: 30px;
        font-size: 16px;
        font-weight: 600;
        color: #3871c8;
      }

    .md-stepper-horizontal.green .md-step.active .md-step-circle {
      background-color: #00AE4D;
    }

    .md-stepper-horizontal .md-step.done .md-step-circle *,
    .md-stepper-horizontal .md-step.editable .md-step-circle * {
      display: none;
    }

    .md-stepper-horizontal .md-step.editable .md-step-circle {
      -moz-transform: scaleX(-1);
      -o-transform: scaleX(-1);
      -webkit-transform: scaleX(-1);
      transform: scaleX(-1);
    }

      .md-stepper-horizontal .md-step.editable .md-step-circle:before {
        font-family: 'FontAwesome';
        font-weight: 100;
        content: "\f040";
      }

    .md-stepper-horizontal .md-step .md-step-title {
      margin-top: 16px;
      font-size: 16px;
      font-weight: 600;
    }

    .md-stepper-horizontal .md-step .md-step-title,
    .md-stepper-horizontal .md-step .md-step-optional {
      text-align: center;
      color: rgba(0,0,0,.26);
    }

    .md-stepper-horizontal .md-step.active .md-step-title {
      font-weight: 400;
      color: #666666;
      font-size: 15px;
      font-family: 'century-gothic-regular';
    }

    .md-stepper-horizontal .md-step.active.done .md-step-title,
    .md-stepper-horizontal .md-step.active.editable .md-step-title {
      font-weight: 600;
    }

    .md-stepper-horizontal .md-step .md-step-optional {
      font-size: 12px;
    }

    .md-stepper-horizontal .md-step.active .md-step-optional {
      color: rgba(0,0,0,.54);
    }

    .md-stepper-horizontal .md-step .md-step-bar-left,
    .md-stepper-horizontal .md-step .md-step-bar-right {
      position: absolute;
      top: 15px;
      height: 1px;
      border-top: 2px solid #e8eef7;
    }

    .md-stepper-horizontal .md-step .md-step-bar-right {
      right: 0;
      left: 27%;
      margin-left: 15px;
    }

    .md-stepper-horizontal .md-step .md-step-bar-left {
      /* left: 0;
        right: 50%;
        margin-right: 15px; */
      left: 0;
      right: 75%;
      margin-right: 15px;
      z-index: 0;
    }

  #manageTeam {
    display: none;
  }
  /* Multi Step Form */

  .white-background {
    background-color: #fff;
  }

  .new-project .form-group {
    margin-bottom: 15px !important;
  }

  .resize-none {
    resize: none;
  }

  .assign-member {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    max-height: 140px;
    overflow: auto;
  }

    .assign-member .form-control {
      border-radius: 2px !important;
    }

    .assign-member .border {
      border-bottom: 1px solid #eae8e8;
      margin: 10px;
    }

    .assign-member .container-checkbox img {
      border-radius: 50px;
      width: 30px;
    }

    .assign-member .container-checkbox .checkmark {
      top: 11px;
    }

    .assign-member .container-checkbox {
      padding-top: 6px;
    }

  .invite-member {
    color: #000;
    font-size: 15px;
  }

  .add-member {
    color: #666666;
    font-size: 13px;
    font-family: 'century-gothic-regular';
  }

  .create-project {
    color: #000;
    font-family: 'century-gothic-regular';
    font-size: 1.5em;
    padding: 20px 0 0;
    margin-top: 0;
  }


  /*Manage Column */

  .manage-column {
    font-size: 25px;
    background: #fff;
    border-radius: 4px;
    margin: 0 auto;
    color: #3871c8;
    width: 37px;
    height: 37px;
    line-height: 37px;
    position: relative;
    text-align: center;
    border: 1px solid #bfbfbf;
  }

  .column-wrapper {
    width: 500px;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    padding: 10px;
    height: 250px;
    max-height: fit-content;
    z-index: 9;
    box-shadow: 2px 2px 5px #eee;
    right: 7px;
    display: none;
    border: 1px solid #bfbfbf;
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
    -webkit-appearance: none;
  }

    .column-wrapper .col-md-4 {
      padding-left: 0px !important;
    }

    .column-wrapper hr {
      margin-top: 10px;
      margin-bottom: 10px;
      border: 0;
      border-top: 1px solid #eee;
    }

    .column-wrapper .border {
      margin-top: 10px;
      margin-bottom: 10px;
      border-bottom: 1px solid #eee;
    }

  .column-header span {
    font-family: century-gothic-regular;
    font-size: 13px;
  }

  .disp-inline {
    display: inline;
  }

  .inner-column-wrapper {
    max-height: 140px;
    overflow: auto;
    margin-bottom: 10px;
  }

  .add-fields {
    color: #3871c8;
    cursor: pointer;
    font-family: century-gothic-regular;
  }

    .add-fields span:hover {
      text-decoration: underline;
    }

    .add-fields .cancel {
      margin-left: 50px;
    }

  #header-search input[type=search] {
    background: #ffffff url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 12px center;
    border: 1px solid #bfbfbf;
    padding: 9px 30px 9px 30px;
    width: 55px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 10em;
    border-radius: 4px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    background-size: 15px;
  }

    #header-search input[type=search]:focus {
      width: 200px;
      background-color: #fff;
      border-color: #bfbfbf;
      -webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
      -moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
      box-shadow: 0 0 5px rgba(109,207,246,.5);
    }

  /* Demo 2 */
  #header-search input[type=search] {
    /* width: 15px;
	padding-left: 10px; */
    width: 125px;
    padding-left: 35px;
    color: transparent;
    cursor: pointer;
  }

    #header-search input[type=search]:hover {
      background-color: #fff;
    }

    #header-search input[type=search]:focus {
      width: 200px;
      padding-left: 35px;
      color: #000;
      background-color: #fff;
      cursor: auto;
    }

  .three-dot-dropdown {
    background: none;
    border: none;
    font-size: 5px;
  }

    .three-dot-dropdown span {
      display: block;
      color: #3871c8;
    }

  /* .three-dot-dropdown .dropdown-menu:after, .dropdown-menu:before {
    left: 17% !important;
} */

  /*Manage Column */

  /* Dry Run */

  .dryrun-wrapper {
    padding: 1em;
  }

    .dryrun-wrapper label {
      /*color: #000;*/
      font-family: 'century-gothic-bold';
      font-size: 13px;
      display: block;
    }

    .dryrun-wrapper span.label-value, .dryrun-wrapper p {
      color: #666666;
      font-family: 'century-gothic-regular';
      font-size: 13px;
    }

    .dryrun-wrapper .label-value img {
      border-radius: 25px;
    }

  .pr0 {
    padding-right: 0px !important;
  }

  .mt10px {
    margin-top: 1em;
  }

  .border-wrap {
    border-left: 1px solid #eee;
  }

  .dryrun-wrapper .count {
    color: #fff;
    background-color: #c83771;
    width: 30px;
    height: 30px;
    padding: 5px 10px;
    border-radius: 50px;
  }

  .dryrun-wrapper .partially-completed {
    background-color: #3ac9b3;
    color: #fff;
    font-family: 'century-gothic-regular';
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 5px;
  }

  .dryrun-wrapper .completed-status {
    background-color: #71c837;
    color: #fff;
    font-family: 'century-gothic-regular';
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 5px;
  }

  .dryrun-wrapper label.user-name {
    margin-bottom: 0px;
    line-height: 12px;
  }

  .dryrun-wrapper .comment-box p {
    margin-top: 10px;
  }

  .dryrun-wrapper .comment-box {
    border-bottom: 1px solid #eee;
    position: relative;
  }

    .dryrun-wrapper .comment-box img {
      border-radius: 50px;
    }

    .dryrun-wrapper .comment-box .tag {
      color: #3871c8;
      font-family: 'century-gothic-bold';
    }

    .dryrun-wrapper .comment-box textarea {
      resize: none;
    }

  .dryrun-wrapper .mdi-close-circle, .dryrun-wrapper .mdi-square-edit-outline {
    color: #3871c8;
    font-size: 16px;
    cursor: pointer;
  }

  .mt5 {
    margin-top: 0.5em;
  }

  .subheader-name {
    color: #000;
    font-family: 'century-gothic-regular';
    /* font-size: 17px; */
  }

.uploader {
  position: relative;
  text-align: center;
  display: block;
  clear: both;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}

  .uploader label {
    float: left;
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 6px;
    border: 2px dashed #849ec6;
    transition: all 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #edf2fa;
  }

      .uploader label:hover {
        border-color: #3871c8;
      }

      .uploader label.hover {
        border: 2px solid #3871c8;
        box-shadow: inset 0 0 0 6px #eee;
      }

        .uploader label.hover #start i.fa {
          transform: scale(0.8);
          opacity: 0.3;
        }

  .uploader #start {
    float: left;
    clear: both;
    width: 100%;
    word-wrap: break-word;
  }

      .uploader #start.hidden {
        display: none;
      }

      .uploader #start i.fa {
        font-size: 50px;
        margin-bottom: 1rem;
        transition: all 0.2s ease-in-out;
        color: #666666;
      }

    .uploader #response {
      float: left;
      clear: both;
      width: 100%;
    }

      .uploader #response.hidden {
        display: none;
      }

      .uploader #response #messages {
        margin-bottom: 0.5rem;
      }

    .uploader #file-image {
      display: inline;
      margin: 0 auto 0.5rem auto;
      width: auto;
      height: auto;
      max-width: 180px;
    }

      .uploader #file-image.hidden {
        display: none;
      }

    .uploader #notimage {
      display: block;
      float: left;
      clear: both;
      width: 100%;
    }

      .uploader #notimage.hidden {
        display: none;
      }

    .uploader progress,
    .uploader .progress {
      display: inline;
      clear: both;
      margin: 0 auto;
      width: 100%;
      max-width: 180px;
      height: 8px;
      border: 0;
      border-radius: 4px;
      background-color: #eee;
      overflow: hidden;
    }

      .uploader .progress[value]::-webkit-progress-bar {
        border-radius: 4px;
        background-color: #eee;
      }

      .uploader .progress[value]::-webkit-progress-value {
        background: linear-gradient(to right, #393f90 0%, #454cad 50%);
        border-radius: 4px;
      }

      .uploader .progress[value]::-moz-progress-bar {
        background: linear-gradient(to right, #393f90 0%, #454cad 50%);
        border-radius: 4px;
      }

/*    .uploader input[type=file] {
      display: none;
    }
*/
    .uploader div {
      margin: 0 0 0 0;
      color: #666666;
      font-family: 'century-gothic-regular';
    }
/*.attached-file {
  overflow: auto;
  height: 122px;
}*/
.attached-file p {
  /* width: 200%; */
  /* max-width: max-content; */
  margin-bottom: 10px;
  margin-top: 10px;
  padding-bottom: 0;
  padding: 10px;
  background: #edf2fa;
  /* box-shadow: 0px 0px 10px #00000017; */
  border-radius: 4px;
  margin: 10px 0px 1px;
  color: #666666 !important;
}
  .attached-file::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fff;
  }

  .attached-file::-webkit-scrollbar {
    width: 8px;
    background-color: #fff;
    height: 8px;
  }

  .attached-file::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c1c1c1;
  }
.col-md-6.mt10px.p15.comment-box::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}

.col-md-6.mt10px.p15.comment-box::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
  height:8px;
}

.col-md-6.mt10px.p15.comment-box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #c1c1c1;
}
.p15{
    padding:0px 15px !important;
}
.reply-btn {
  border-bottom: 1px solid #e8ebef;
  padding: 11px 0px;
}
span.tag.pull-right:hover {
  color: #23549f;
}
.uploader .btn {
  display: inline-block;
  margin: 0.8rem 0rem 1rem;
  clear: both;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: initial;
  border: none;
  border-radius: 0.2rem;
  outline: none;
  /* padding: 0 1rem; */
  /* height: 36px; */
  line-height: 36px;
  color: #fff;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  background: linear-gradient( 40deg, #1f4f98, #3871c8) !important;
  cursor: pointer;
  width: 100%;
}


  .description-wrap {
    line-height: 24px;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .dryrun-wrapper .dropdown {
    margin-top: -5px;
  }

    .dryrun-wrapper .dropdown.open .mdi-circle {
      color: #3871c8;
    }

  .dryrun-wrapper .dropdown-menu {
    min-width: auto;
    left: -100%;
  }

  .dryrun-wrapper .three-dot-dropdown .mdi-circle {
    color: #ccc;
  }
  /* Dry Run */
  .indexDiv {
    margin-left: 45%;
    margin-top: 10%;
  }

    .indexDiv img {
      width: 20px;
      height: 20px;
    }

  button.btn.blue-button.pull-right.mobile-width-50 {
    margin-top: 3px;
  }

  .ag-center-cols-viewport, .ag-center-cols-clipper, .ag-body-viewport.ag-layout-normal.ag-row-no-animation {
    overflow: visible !important;
  }

  ul.dropdown-menu::after {
    display: none !important;
  }

.dropdown-menu::before {
  display: none !important;
}


/*  }*/

.modal-dialog.upload-modal{
  width: 1300px !important;
}
/*.upload-profile-section {
  margin: 40px 10px 30px !important;
  padding: 40px 0px;
  border-top: 1px solid #e7e4e4;
  border-bottom: 1px solid #e7e4e4;
}*/
label.user-name {
  margin-bottom: 0;
  font-size: 14px;
  padding-top: 3px;
}
.user-comments {
  font-size: 12px;
  padding: 10px 0px 20px 7px;
  margin-bottom: 20px;
  border-bottom: 1px solid #c1c1c185;
}
.col-md-6.mt10px.p15.comment-box {
  height: 262px;
  overflow:auto;
}
/*textarea#Message {
  height: 212px;
}*/
.define-cmd::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #FFF;
}

.define-cmd::-webkit-scrollbar {
  width: 8px;
  background-color: #FFF;
}

.define-cmd::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5555559c;
}
i.mdi.mdi-close-circle {
  cursor: pointer;
  margin-left: 15px;
}
.define-cmd {
  height: 163px;
  overflow: auto;
}
textarea#Message {
  height: 53px;
}
.view-more-btn {
  /* text-align: right; */
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.modal-table{
    overflow:auto;
}
  .modal-table::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #FFF;
  }

  .modal-table::-webkit-scrollbar {
    width: 8px;
    background-color: #FFF;
    height:8px;
  }

  .modal-table::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #5555559c;
  }
.comment-col {
  padding-left: 1.5%;
  border-left: 1px solid #e8ebef;
}
.playbook-inner-table{
    height:66vh;
}
.comment-col{
  /*  height:400px;*/
}
.comment-col::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #FFF;
}

.comment-col::-webkit-scrollbar {
  width: 8px;
  background-color: #FFF;
  height: 8px;
}

.comment-col::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5555559c;
}
.action-tooltip {
  align-items: center;
  background: rgb(0 0 0 / 76%);
  border-radius: .5em;
  border: 1px solid #eee;
  color: #ffffff;
  /* display: none;*/
  visibility: hidden;
  opacity: 0;
  height: auto;
  font-style: initial;
  font-size: .85em;
  line-height: 1.2em;
  top: -1.5em;
  margin: 0 auto;
  vertical-align: middle;
  padding: 0.5em 1em;
  position: absolute;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /*width: auto;*/
  width: max-content;
  transition: .25s;
  z-index: 3;
  font-family: 'century-gothic-regular';
}
.action-tooltip:after,
.action-tooltip::after {
    content: '';
    position: absolute;
    border-top: 5px solid rgb(0 0 0 / 76%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    bottom: -4px;
    right: 0.4em;
}
.edit:hover .action-tooltip, .delete:hover .action-tooltip, .add:hover .action-tooltip, .view:hover .action-tooltip, .update:hover .action-tooltip, .cancel:hover .action-tooltip, .accept:hover .action-tooltip, .reject:hover .action-tooltip, .active-group:hover .action-tooltip {
  /*display:block;*/
  visibility: visible;
  opacity: 1;
}

table i {
  position: relative;
}

.form-controlmandatory {
  background: #fff !important;
  box-shadow: none !important;
  /*  border-color: #bdb1b1 !important;
  border-radius: 0px 2px 2px 0px !important;*/
  min-height: 40px !important;
  font-size: 13px !important;
  transition: all 0.5s !important;
  color: #22262e;
}

.form-controlnon-mandatory {
  background: #c5d5ee !important;
  box-shadow: none !important;
  /*border-color: #bdb1b1 !important;
  border-radius: 0px 2px 2px 0px !important;*/
  min-height: 40px !important;
  font-size: 13px !important;
  transition: all 0.5s !important;

}

/*input:focus-visible, select:focus-visible {
  outline: #b9ceed auto 1px !important;
}*/
table span {
    position: relative;
}


.action-tooltip-collapse {
  align-items: center;
  background: rgb(0 0 0 / 76%);
  border-radius: .5em;
  border: 1px solid #eee;
  color: #ffffff;
  /* display: none;*/
  visibility: hidden;
  opacity: 0;
  height: auto;
  font-style: initial;
  font-size: .85em;
  line-height: 1.2em;
  margin: 0 auto;
  vertical-align: middle;
  padding: 0.5em 1em;
  position: absolute;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  transition: .25s;
  z-index: 3;
  font-family: 'century-gothic-regular';
}
a.x-navigation-minimize .action-tooltip-collapse {
  left: 6em;
  top: 2em;
}
  .action-tooltip-collapse:after,
  .action-tooltip-collapse::after {
    content: '';
    position: absolute;
    border-top: 5px solid rgb(0 0 0 / 76%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 10px;
    left: -7px;
    transform: rotate( 90deg);
  }

.collapseId:hover .action-tooltip-collapse {
  /*display:block;*/
  visibility: visible;
  opacity: 1;
}


.action-tooltip-Activity {
  white-space: normal;
  align-items: center;
  background: #666;
  border-radius: 0.5em;
  border: 1px solid #eee;
  color: #ffffff;
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  height: auto;
  font-style: initial;
  font-size: .85em;
  line-height: 1.2em;
  margin: 0 auto;
  vertical-align: middle;
  padding: 1em 1em;
  position: absolute;
  margin-left: 5px;
  margin-top: 5PX;
  width: 15em;
  transition: .25s;
  z-index: 1;
  text-align: left;
  font-family: 'century-gothic-regular';
  font-size: 13px;
  line-height: 19px;
  word-break: break-word;
}

.action-tooltip-Activity:after,
.action-tooltip-Activity::after {
  content: '';
  position: absolute;
  border-top: 8px solid #666;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  left: 0;
  top: 0;
  transform: translate(-50%, 0%);
}
#ActivityEdit:hover .action-tooltip-Activity, #isAct:hover .action-tooltip-Activity {
  /*display:block;*/
  visibility: visible;
  opacity: 1;
}
#PlaybookDependentTaskIds:hover .action-tooltip-Activity, #isAct:hover .action-tooltip-Activity {
  /*display:block;*/
  visibility: visible;
  opacity: 1;
}

span span {
  position: relative;
}

.flex-row .active {
    color:grey;
}

.tooltip {
  position: relative !important;
  display: inline-block;
  opacity: 1 !important;
  z-index: 0 !important;
}

  .tooltip .tooltiptext {
    /*visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -5px;
    opacity: 0;
    transition: opacity 0.3s;*/






    
    background: rgb(0 0 0 / 76%);
    border-radius: 0.5em;
    border: 1px solid #eee;
    color: #ffffff;
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    height: auto;
    font-style: initial;
    font-size: .85em;
    line-height: 1.2em;
    margin: 0 auto;
    vertical-align: middle;
    padding: 0.5em 1em;
    position: absolute;
    margin-left: 5px;
    margin-top: 5PX;
    width: auto;
    transition: .25s;
    z-index: 3;
    text-align: justify;
    font-family: 'century-gothic-regular';
  }

    .tooltip .tooltiptext::after {
      content: "";
      position: absolute;
      top: 8%;
      right: 100%;
      margin-top: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent #555 transparent transparent;
    }

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

.inputDragAndDrop {
  position: relative;
}

  .inputDragAndDrop .form-control-file {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 11em;
    outline: none;
    visibility: hidden;
    cursor: pointer;
    background-color: #c61c23;
    box-shadow: 0 0 5px solid currentColor;
    background: #f5f8ff;
  }

    .inputDragAndDrop .form-control-file:before {
      content: attr(data-title);
      position: absolute;
      left: 0;
      width: 100%;
      min-height: 11em;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 1.5em;
      opacity: 1;
      visibility: visible;
      text-align: center;
      border: 0.25em dashed #356cc2;
      transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
      overflow: visible;
      z-index: 1000;
      color: black;
      border-radius: 5px;
    }


.drag-file-icon {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  padding-top: 27px;
}

.drag-file-icon i {
  font-size: 60px;
  color: #666;
}

.Celldisabled {
 /* pointer-events: none;*/
  cursor: not-allowed;
}



.img-text-icon {
  background-color: #3871c8;
  color: #fff;
  cursor: pointer;
  /* padding: 6px 6px; */
  border-radius: 50px;
  width: 28px !important;
  height: 28px;
  text-align: center;
  display: inline-block;
  line-height: 28px;
  margin-top: 4px;
}

.withDependencyColor{
    color:red !important;
}
.table-wrapper tbody tr .add {
  color: #3ac9b3;
}

.table-wrapper tbody tr td .tab-icon span.mdi {
  margin-right: 0px !important;
}

.table-wrapper tbody tr td .tab-icon span.mdi {
  background-color: #e8eef7;
  display: inline;
  padding: 3px 6px;
  font-size: 16px;
  border-radius: 5px;
  margin-right: 3px;
  cursor: pointer;
}
.upload-modal .modal-body::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}

.upload-modal .modal-body::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
  height: 8px;
}

.upload-modal .modal-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #979797;
}
.row.attached-file {
  overflow: auto;
  min-height: auto;
  max-height: 240px;
  height: 100%;
}
.comment-list {
  max-height: calc(100vh - 330px);
  overflow-y: auto;
}
.attached-file label {
  position: sticky;
  top: 0;
  background: #fff;
  width: 100%;
}
.hideElement {
    display: none;
}
.table-position {
  position: relative;
}

.table-position th:last-child {
  position: sticky;
  right: 0;
  top: 0;
}

  .table-position td:last-child {
    position: sticky;
    right: 0;
    top: 0;
    width: 113px;
  }
  .table-position tr:first-child td {
    background: #f9f9f9;
  }

.table.table-position thead {
  position: sticky;
  top: 0px;
  z-index: 1;
}

#action-tooltip-Activity {
  z-index: 1 !important;
}
.cc-icon-pos {
  width: 62px;
  min-width: 62px !important;
  background-repeat: no-repeat !important;
  background-position: left !important;
  background-origin: content-box;
}

.JCB-card {
  background-image: url(../credit-card-icon/jcb.png);
}
.Amex-card {
  background-image: url(../credit-card-icon/American-Express-icon.png);
}
.Diners_club-card {
  background-image: url(../credit-card-icon/Diners-Club-International-icon.png);
}
.visa-card {
  background-image: url(../credit-card-icon/Visa-icon.png);
}
.Mastercard-card {
  background-image: url(../credit-card-icon/Master-Card-Blue-icon.png);
}
.Discover-card {
  background-image: url(../credit-card-icon/Discover-icon.png);
}
.UnionPayCard-card {
  background-image: url(../credit-card-icon/UnionPayCard.png);
}
.Maestro-card {
  background-image: url(../credit-card-icon/Maestro-icon.png);
}
.Credit-Card-card {
  background-image: url(../credit-card-icon/Credit-card.png);
}
.create-taskview {
  position: sticky;
  top: 51px;
  z-index: 5;
}
tr.flex-row.active td:last-child {
  position: sticky;
  right: 0;
}
.insert-coldata-wrapper div.mdi {
  background-color: #e8eef7;
  display: inline;
  padding: 3px 6px;
  font-size: 16px;
  border-radius: 5px;
  margin-right: 3px;
  cursor: pointer;
}
.insert-coldata-wrapper .tooltip-pro:hover .tooltiptext-pro {
  display: block !important;
}

.timezone-dropdown {
  float: inline-end;
  margin-top: -47px;
  margin-right: -8px;
  position: relative;
  display: inline-block;
  z-index: 1000;
}

.drop-down-top {
  top: unset !important;
  bottom: 100% !important;
}

.cloud-link {
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 5px;
}

.has-comments {
  background-color: #1c6257; /* Dark green */
}

.no-comments {
  background-color: #3ac9b3; /* Light teal */
}

.Comment-count {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50px;
  width: 25px;
  text-align: center;
  height: 25px;
}

.form-check-flex{
    display: flex;
    gap: 4px;
}

.shadowComment {
  box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.commnet-section {
  min-height: 20px !important;
  min-width: 100px !important;
  font-size: 13px !important;
}
.commnet-section-align {
text-align:right
}

