
/* CORE STYLES*/

	/* noty bar */
	.noty_bar.noty_theme_default {
		background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAoCAYAAAAPOoFWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNq81tsOgjAMANB2ov7/7ypaN7IlIwi9rGuT8QSc9EIDAsAznxvY4pXPKr05RUE5MEVB+TyWfCEl9LZApYopCmo9C4FKSMtYoI8Bwv79aQJU4l6hXXCZrQbokJEksxHo9KMOgc6w1atHXM8K9DVC7FQnJ0i8iK3QooGgbnyKgMDygBWyYFZoqx4qS27KqLZJjA1D0jK6QJcYEQEiWv9PGkTsbqxQ8oT+ZtZB6AkdsJnQDnMoHXHLGKOgDYuCWmYhEERCI5gaamW0bnHdA3k2ltlIN+2qKRyCND0bhqSYCyTB3CAOc4WusBEIpkeBuPgJMAAX8Hs1NfqHRgAAAABJRU5ErkJggg==') repeat-x scroll left top #fff;
	}
	
	/* if you use noty with customContainer you can access noty with this way 
	*	 .noty_custom_container noty will add automaticly this class to your customContainer
	*	 .noty_theme_default 		your theme
	*	 .noty_layout_inline		your layout 
	*/
	
	/* custom container */
	.noty_custom_container.noty_theme_default.noty_layout_inline {
		position: relative;
	}
	
	/* custom growl container */
	.noty_custom_container.noty_theme_default.noty_layout_inline .noty_cont.noty_layout_inline {
		position: static;
	}
		/* custom noty bar */
		.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar {
			border-width: 1px;
			border-style: solid;
			position: static;
			-webkit-border-radius: 4px;
			-moz-border-radius: 4px;
			border-radius: 4px;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
		}
			.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar .noty_message {
				font-size: 13px;
				padding: 4px;
			}
				.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar .noty_message .noty_buttons {
					margin-top: -1px;
				}
	
	/* noty_message */
	.noty_bar.noty_theme_default .noty_message {
		padding: 8px 14px;
		font-size: 16px;
		font-weight: bold;
		width: auto;
	}
	.noty_bar.noty_theme_default.noty_closable .noty_message {
		padding: 8px 34px 8px 14px;
	}
	
	/* noty_buttons */
	.noty_bar.noty_theme_default .noty_message .noty_buttons {
		float: right;
		font-size: 13px;
		margin-top: -4px;
		margin-left: 4px;
	}
	
	/* noty_button */
	.noty_bar.noty_theme_default .noty_message .noty_buttons button {
		margin-left: 5px;
	}
	
	/* noty close button */
	.noty_bar.noty_theme_default .noty_close {
		position: absolute;
		top: 8px !important;
		right: 10px;
		background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAORJREFUeNq0lU0OgjAQhRm5gUl3rLyBB3BDQjwI4TDcgmu4NqwNJGxdueqWA4zzCJoxtvxoeckLzbz2C5ShEDNHDiXis/gkPooPY/0uvomv4ov48bUSQGUSF+Ka51WPc0kzNGwvLnm9ynHtB5B+hGkoaWDB/6t4AZOFe7ZkTxMAc1dqreU0TbnrunetbVvOsmzIPMoBrFwJYGgCY8wAgjFGDZlHFYCNK9EAXPUYmUcNgL0v1dAFMKjfRSsVx/H0hC0eOfhLmWwbfTcYozbXNsEbO/int8nhEPz4CnbAUuhfwFOAAQAA48KKOuexjwAAAABJRU5ErkJggg==');
		width: 20px;
		height: 20px;
	}
	
	/* noty modal */
	.noty_modal.noty_theme_default {
		opacity: 0.7;
	}
	
/* LAYOUTS */

	/* noty_layout_top */
	.noty_bar.noty_theme_default.noty_layout_top {
		border-bottom: 3px solid #eee;
	}

	/* noty_layout_bottom */
	.noty_bar.noty_theme_default.noty_layout_bottom {
		border-top: 3px solid #eee;
	}

	.noty_bar.noty_theme_default.noty_layout_center .noty_close {
		top: 8px;
	}
	
	.noty_bar.noty_theme_default.noty_layout_center .noty_message .noty_buttons {
		margin-top: -2px
	}
	
	/* noty_layout_topLeft & noty_layout_topRight */
	.noty_bar.noty_theme_default.noty_layout_center,
	.noty_bar.noty_theme_default.noty_layout_topLeft,
	.noty_bar.noty_theme_default.noty_layout_topRight,
	.noty_bar.noty_theme_default.noty_layout_bottomLeft,
	.noty_bar.noty_theme_default.noty_layout_bottomRight {
		border: 1px solid #eee;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	}
	.noty_bar.noty_theme_default.noty_layout_center .noty_message,
	.noty_bar.noty_theme_default.noty_layout_topLeft .noty_message,
	.noty_bar.noty_theme_default.noty_layout_topRight .noty_message,
	.noty_bar.noty_theme_default.noty_layout_bottomLeft .noty_message,
	.noty_bar.noty_theme_default.noty_layout_bottomRight .noty_message {
		font-size: 13px;
		font-weight: normal;
	}
	.noty_bar.noty_theme_default.noty_layout_topLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_layout_topRight .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_layout_bottomLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_layout_bottomRight .noty_message .noty_buttons {
		float: none;
		border-top: 1px solid #ccc;
	  margin-left: 0;
	  margin-top: 10px;
	  padding-top: 10px;
	  text-align: right;
	}
	
	/* noty_layout_topCenter */
	.noty_bar.noty_theme_default.noty_layout_topCenter {
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	}
	.noty_bar.noty_theme_default.noty_layout_topCenter .noty_message {
		font-weight: normal;
		font-size: 13px;
	}
	.noty_bar.noty_theme_default.noty_layout_topCenter .noty_close {
		top: 50%;
		margin-top: -10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
	.noty_bar.noty_theme_default.noty_layout_topCenter.noty_success {
		border: 1px solid #3c3a4f;
	}
	.noty_bar.noty_theme_default.noty_layout_topCenter .noty_message .noty_buttons {
		margin-left: 15px;
		margin-top: 0px
	}
	
/* NOTIFICATION TYPES */

	/* noty_notification */
	.noty_bar.noty_theme_default.noty_notification {
		background-color: #fff;
		border-color: #ccc;
    color: #555;
	}
	.noty_bar.noty_theme_default.noty_notification.noty_layout_topLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_notification.noty_layout_topRight .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_notification.noty_layout_bottomLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_notification.noty_layout_bottomRight .noty_message .noty_buttons {
    border-color: #ccc;
  }
  
	/* noty_warning */
	.noty_bar.noty_theme_default.noty_warning {
		background-color: #FFEAA8;
		border-color: #FFC237;
    color: #826200;
	}
	.noty_bar.noty_theme_default.noty_warning.noty_layout_topLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_warning.noty_layout_topRight .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_warning.noty_layout_bottomLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_warning.noty_layout_bottomRight .noty_message .noty_buttons {
    border-color: #FFC237;
  }
  
  /* noty_alert */
	.noty_bar.noty_theme_default.noty_alert {
		background-color: #fff;
		border-color: #ccc;
	}
	.noty_bar.noty_theme_default.noty_alert.noty_layout_topLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_alert.noty_layout_topRight .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_alert.noty_layout_bottomLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_alert.noty_layout_bottomRight .noty_message .noty_buttons {
    border-color: #ccc;
  }
  
	/* noty_error */
	.noty_bar.noty_theme_default.noty_error {
		background-color: red;
		color: #fff;
		border-color: darkred;
	}
	.noty_bar.noty_theme_default.noty_error .noty_message {
		font-weight: bold;
	}
	.noty_bar.noty_theme_default.noty_error.noty_layout_topLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_error.noty_layout_topRight .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_error.noty_layout_bottomLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_error.noty_layout_bottomRight .noty_message .noty_buttons {
    border-color: darkred;
  }
  
	/* noty_success */
	.noty_bar.noty_theme_default.noty_success {

		/*background-color: #3c3a4f;*/	
		background-color: #009900;
		color: #FFF;
		/*border-color: #3c3a4f;*/
		border-color: green;
	}
	.noty_bar.noty_theme_default.noty_success.noty_layout_topLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_success.noty_layout_topRight .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_success.noty_layout_bottomLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_success.noty_layout_bottomRight .noty_message .noty_buttons {
    border-color: #3c3a4f;
  }
  
	/* noty_information */
	.noty_bar.noty_theme_default.noty_information {
		background-color: #57B7E2;
		border-color: #0B90C4;
		color: #fff;
	}
	.noty_bar.noty_theme_default.noty_information.noty_layout_topLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_information.noty_layout_topRight .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_information.noty_layout_bottomLeft .noty_message .noty_buttons,
	.noty_bar.noty_theme_default.noty_information.noty_layout_bottomRight .noty_message .noty_buttons {
    border-color: #0B90C4;
  }
  
/*Ram css 2018-09-5.42.pm*/
@import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,500,600,700');

.header-top-new {
    background-color:  #fff;
    padding: 15px 0px; position: relative; z-index: 10000;
    font-family: 'Poppins', sans-serif;
}

.right-top-after-login>li>a {
    font-size:  15px;
    color: #1c2031; padding: 0 8px; font-weight: 500;
}

.right-top-after-login>li>a i {
    margin-right:  10px;
}

.right-top-after-login {
    margin-top: 15px;
}

img.img-fluid.logo-home {
    max-width: 100px;
}
.Retailer_header_box ul{margin-bottom: 0px;}
.Retailer_header_box ul li{ margin-bottom: 15px; }
.Retailer_header_box ul li a {
    display:  block;
    background-color: rgba(48,54,82, 0.2);
    text-align:  center;
    font-size:  12px;
    line-height:  16px;
    padding: 10px 15px 10px;
    border-radius: 10px;
    color: #fff; position: relative;
}.Retailer_header_box ul li.active a,.Retailer_header_box ul li a:hover {
   
    background-color: rgba(48,54,82, 1);
   
}
.Retailer_header_box ul li.active a:after,.Retailer_header_box ul li a:hover:after {
    content: "";
    border: 15px solid;
    border-color: rgba(48,54,82, 1) transparent transparent transparent;
    position: absolute;
    bottom: -29px;
    text-align: center;
    left: 0px;
    right: 0;
    max-width: 23px;
    margin: 0 auto;
}
.Retailer_header_box {
    padding: 12px 0px; font-family: 'Poppins', sans-serif;
}

.box_rns_images {
    width:  20px;
  margin: 0 auto;    margin-bottom: 5px;  
}
.box_rns_images img {
    min-width: 50px;
    margin-left: -17px;
}
.main-panel.w-100 {
    overflow: auto !important;
    max-width: 1170px;
    margin: 0 auto !important;
    float: none;
    height: auto !important;
    max-height: none !important;
}

.wrapper{
    height: auto !important;
}
.main-panel>.content{
    min-height: auto !important;
    padding: 15px 0px;
    margin-top: 0px;
}
.sidebar {
  
    z-index: 10000;}




.admin_View_plans_box{ font-family: 'Poppins', sans-serif; }

    .admin_View_plans_box  .modal-dialog {
    margin-top: 130px;
    max-width: 1030px;
}

    .admin_View_plans_box .modal-content {
    background-image: url(../../assets/images/login2.png);
    background-color: transparent;
    background-position: center bottom;
    padding: 0px 40px 55px;
    border: none;
    box-shadow: none;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px !important;
}

    .admin_View_plans_box  button.close {
    position: absolute;
    right: 0;
    top: -28px;
    right: 6px;
    z-index: 10000;
    z-index: 1;
    opacity: 1;
}


  .admin_View_plans_box .form-control {
    min-height: 47px;
    border: none;
    -webkit-box-shadow: 0px 11px 21px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 11px 21px -16px rgba(0,0,0,0.75);
    box-shadow: 0px 11px 21px -16px rgba(0,0,0,0.75);
    border-radius: 5px !important;
    border: 1px solid #ecefef;
    /* border-bottom: 0px solid transparent !important; */
    background-image: none !important;
    padding: 5px 15px;
}

.admin_View_plans_box select.form-control {
    background: url(../../assets/images/select-box-bg.png) !important;
    background-repeat: no-repeat;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}
.admin_View_plans_box_header  button.btn.btn-primary {
    padding: 15px 50px;
    margin: 0px;
}

.modal-open .header-top-new {
    z-index: 100;
}


/* Style the tab */
.table-box-tabing .tab {
    float: left;
    border: 1px solid #ccc;
    background-color: transparent;
    width: 30%;

}

/* Style the buttons that are used to open the tab content */
.table-box-tabing  .tab button {
    display: block;
    background-color: inherit;
    color: #585858;
    font-size: 15px;
    padding: 10px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.table-box-tabing  .tab button:hover {
    background-color: #225baa; color: #fff;
}

/* Create an active/current "tab button" class */
.table-box-tabing .tab button.active {
    background-color: #225baa;
    color: #fff;
}

/* Style the tab content */
.table-box-tabing .tabcontent {
   display: none;
}
.table-box-tabing .table-box-tabing_tabcontent{
	 float: left;
    padding:0px;
    border: 1px solid #ccc;
    width: 70%;
    border-left: none;
  
    height: 308px;
    overflow: hidden;
    overflow-y: auto;
}

.table-box-tabing  .table-box-tabing_tabcontent .tabcontent:nth-child(1){ display: block; }


.table-box-tabing_tabcontent>table {
    margin-bottom:  0px;
    border-bottom: 1px solid #dddddd;
    font-size: 15px;
    text-align: left;
}

.table-box-tabing_tabcontent  th {
    padding: 10px 15px !important;
}
.table-box-tabing_tabcontent td {
    padding: 7px 15px !important; font-size: 14px !important;
}
.table-box-tabing  .table-box-tabing_tabcontent .tabcontent table tr th:last-child{ text-align: center; }
.table-box-tabing  .table-box-tabing_tabcontent .tabcontent table tr td:last-child{ text-align: right; }

.Retailer_header_box ul{ margin-bottom: 0px; }
@media(max-width: 767px){
	
	.right-top-after-login>li>a {
    font-size: 14px !important; padding: 0 1px !important}

    .Retailer_header_box ul li {
    width: 32%;
    float: none;
    margin: 0px !important;
    padding: 10px;
    display: inline-block;
}

.Retailer_header_box ul {
    overflow: hidden;
}

.Retailer_header_box {
    background-size: cover !important;
    text-align: center;
    background-repeat: no-repeat;
}
}



@media(max-width: 480px){
	
	.right-top-after-login>li>a {
    font-size: 14px !important; padding: 0 1px !important}

    .Retailer_header_box ul li {
    width: 49%;
    float: none;
    margin: 0px !important;
    padding: 10px;
    display: inline-block;
}

.Retailer_header_box ul {
    overflow: hidden;
}

.Retailer_header_box {
    background-size: cover !important;
    text-align: center;
    background-repeat: no-repeat;
}
}

