/*Added by Heena*/

.yellow-box{
		border-top: 2px solid #ffb606 !important;
}
.blue-box{
		border-top: 2px solid #3498db  !important;
}
.red-box{
		border-top: 2px solid #f00  !important;
}
.brown-box{
		border-top:2px solid #8a6d3b !important
}
.viewtask{
	    color: #222;
    font-weight: 600;
	font-size:100% !important;
}
.signature_box{
	width: 100%;
    float: left;
    margin-top: 7px;
	padding: 0;
    }
.signature_box li{
  display: inline-block;
    float: left;
    background: #fff;
    border: 1px solid #ddd;
    margin: 5px;	
}
.signature_box li span{
     display: block;
    text-align: center;
    padding: 10px;
    background-color: #eee;
    color: #34495e;
    font-size: 15px;
    font-weight: 600;
}
.viewtask i{
	float:right;
	font-size:18px;
}
.create_user{
	border-top:1px solid #ddd;
	    margin-top: 46px;
}
.padding-10{
	margin-top:10px;
}
.active_div{
	    background: #f7f9fa !important;
}
.profilebox{
	background:#3498db;
	padding:5px;
	margin:5px;
}
.profilebox img{
	    border: 3px solid #fff;
		
}
.username{	
    font-weight: 600;
    color: #FFF;
    font-size: 18px;
}
.profilebox p{
	color:#fff;
	font-size:15px;
}
.note_imp{
	color:#f00;
}
.title_my span{
	border-bottom:2px solid #f73622;
}
.field1{
	    border:1px dotted rgba(236, 228, 228, 0.68) !important;
    padding: 10px 10px 20px 10px;
    margin-bottom: 15px !important;
}
.leg1{
	margin-bottom: 0px;
    width: 10%;
    border-bottom: none;
    margin-left: 37px;
    padding-left: 11px;
}
.fileupload{
    border: 2px dashed #ddd;
    margin: 0 auto;
    text-align: center;
    /* width: 28%; */
    /* width: 100%; */
    padding: 50px 100px 50px 150px;
    /* background: #f5f5f5; */
}
.addtask  div{
	background:#eee;
}
.tasktable{
	margin-bottom:0px;
}
.tasktable > thead > tr > th, .tasktable > tbody > tr > th, .tasktable > tfoot > tr > th, .tasktable > thead > tr > td, .tasktable > tbody > tr > td, .tasktable > tfoot > tr > td{
	border-top:none !important;
	    width: 20%;
}
.taskbtn{
	padding:5px;
	    margin-top: -7px;
}
.tasktitle{
	background:#eee;
}

.checkbtn{
	font-size:20px;
	color:#fff;
}
.subtask_view a li {
	    background: #fff;
    padding: 10px;
    margin: 5px 0;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
 }
 .subtask_view a :hover{
	 background:#eee;
 }
  .subtask_view a:nth-child(1) li{
	    background: rgba(219, 240, 255, 0.4);
    border-top: 1px solid #90c3e8;
	 border-bottom: 1px solid #90c3e8;
  }
 .subtask_view a li i:nth-child(2){
	 float:right;
	 font-size:25px;
	color:#34495e;
 }
 .subtask_view a li i:nth-child(1){

	 font-size:18px;
	color:#34495e;
 }
.subtask_view{
	list-style-type:none;
	padding:0;
}
.addtask{
	border: 1px solid #34495e;
    color: #34495e;
    padding: 6px;
    border-radius: 4px;
    font-weight: 600;
	    background: #fff;
}
.task_title{
	font-size:18px;
}


/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
	  opacity 0.2s ease-in-out,
		visibility 0.2s ease-in-out,
		-webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	-moz-transition:    
		opacity 0.2s ease-in-out,
		visibility 0.2s ease-in-out,
		-moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	transition:         
		opacity 0.2s ease-in-out,
		visibility 0.2s ease-in-out,
		transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px); 
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}


.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}
.iconlist{
	list-style-type:none;
}
.iconlist li{
	    display: inline-block;
    padding: 3px;
}
.editicon{
	       border: 1px solid #999;
    padding: 5px 9px;
    border-radius: 50%;
    color: #999;
}
.dd-handle {
  display: block;
    margin: 10px 0;
    padding: 11px 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #e4e5e7;
  
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: none;
    -webkit-box-shadow: 0 10px 10px -10px #ddd;
    -moz-box-shadow: 0 10px 10px -10px #ddd;
    box-shadow: 0 10px 10px -10px #ddd;
}
.backbtn{
float:right;
}

body.modal-open{
max-width: 100%;
    width: 100%;
}
.dd-handle span {
    font-weight: bold;
    word-wrap: break-word;
	    white-space: nowrap;
}
.maintask_title{
    white-space: nowrap;
    overflow: hidden;
}
.form-horizontal .form-group {
    margin-right: 0px;
    margin-left:0px;
}
.hbreadcrumb {
       padding: 35px 0px 0px 0;
}
.viewdetail_tble tr td:nth-child(1),.viewdetail_tble tr td:nth-child(3){
	background:#f9f9f9;
}
.content {
    padding:20px;
    min-width: 320px;
}

/* Added by gaurav */

input .tooltip.bottom .tooltip-arrow{
	left: 6%;
   	bottom:1px;
}
 .different-tip-color {
    background-color: #CAED9E;
    border-color: #90D93F;
    color: #3F6219;
}
.date-td{
	width:50px !important;
}
#example1{
	font-size:12px;
}
.hpanel .bottom_gap {
	margin-bottom: 40px;
}
.rating_result{
	max-width: 380px;
    margin: 0 auto;
    text-align: center;
    float: inherit;
}

.feedbackOptions{
	width: 575px;
	height:auto;
	margin: 0 auto;
	float: inherit;
	padding: 0;
}

.feedbackOptions li{
	display: inline-block;
	float: left;
	margin: 5px;
	width: 31%;
}

.feedbackComments{
	border-radius: 5px;
	border-width: 2px;
	border-color: #34495e;
	
}

.feedbackemailAddress{
	max-width:330px;
	width: 100%;
	margin: 0 auto;
	border-width:2px;
	border-color: #34495e !important;
}

.w-rating {
	max-width: 400px;
	margin: 0 auto;
	display: inline-block;
}

.rating_result tr th {
    background: #bfbaba;
    color: #333;
}
.cata-sub-nav .nav-prev, .cata-sub-nav .nav-next {
	display:none;
}


@media (max-width: 767px) {
.hpanel .bottom_gap {
	margin-bottom: 10%;
}
.rating_result .col-xs-6 {
    padding: 0;
}
#casinoForm fieldset.scheduler-border {
max-width: 100%;
overflow: scroll;
}
}

@media (max-width: 600px) {
	.w-rating, .feedbackOptions {
		max-width: 100%;
		margin: 0;
	}
	.feedbackOptions li h5 {
		min-height:35px;
	}
	.feedbackOptions li {
		width: 45%;
	}
	.feedbackComments textarea {
		width: 100%;
	}
	.table-responsive {
	overflow-x: scroll !important;
	position: inherit;
}
	.cata-sub-nav {
    
    /* Make this scrollable when needed */
    overflow-x: auto;
    /* We don't want vertical scrolling */
    overflow-y: hidden;
    /* Make an auto-hiding scroller for the 3 people using a IE */
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* For WebKit implementations, provide inertia scrolling */
    -webkit-overflow-scrolling: touch;
    /* We don't want internal inline elements to wrap */
    white-space: nowrap;
    /* Remove the default scrollbar for WebKit implementations */
}
.cata-sub-nav::-webkit-scrollbar {
        display: none;
    }
.cata-sub-nav ul {
    margin: 0;
        display: flex;
          -webkit-padding-start: 0px;
}
.cata-sub-nav li {
    display: inline-table;
    margin: 0 10px;
        font-size: 16px;
} 
.cata-sub-nav .nav-prev {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    margin-top: -25px;
}
.cata-sub-nav .nav-next {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 5px;
    margin-top: -25px;
    display: block;
}
	.custom-table-responsive{
		max-width: calc(100% + 40px);
		margin: 0 -20px 50px;
		width: calc(100% + 40px);
	}
}

@media (max-width: 319px) {
.content {
    padding:20px;
    min-width: calc(100% - 40px);
}
.rating-md {
    font-size: 3em !important;
}
.rating_result {
	padding: 0;
}
.rating_result .col-xs-6 h6 {
    font-size: 10px;
}
}



