@charset "utf-8";
/* CSS Document */


*{
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
	font-weight: 400;
	-webkit-tap-highlight-color:transparent;
    -moz-tap-highlight-color:transparent;
    -o-tap-highlight-color:transparent;
    tap-highlight-color:transparent;
	font-size: 14px;
}
textarea:hover,textarea:active,textarea:focus,button:focus,button:active,button:hover,label:focus,.btn:active,.btn.active{
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}
/*Checkbox Custom Style*/

input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
	line-height: 22px;
	min-height: 20px;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }
input[type="checkbox"] + label:before{
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #ffd152;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .9;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}
input[type="checkbox"] + label:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #ffd152;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
	border-radius: 3px;
}
input[type="checkbox"]:checked + label:before{
	background: #ffd152;
}
input[type="checkbox"]:checked + label:after {
    width: 7px;
    border-radius: 0;
    opacity: 1;
	border-color: #666;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 13px;
    left: 6px;
    top: 2px;
}

/*Radio Btn Custom Style*/

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
	border: 1px solid #E1B801;
    background:#ffd152;
    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);
}
.fullwidth {
    width: 100%;
}
.mgnT20 {
    margin-top: 20px;
}
.mgnT10{
	margin-top: 10px;
}
.mgnB10 {
    margin-bottom: 10px;
}
.mgnB20 {
    margin-bottom: 20px;
}
.bg-lightblue {
    background-color: #00ced1;
}
.text-lightblue{
	color: #00ced1;
}
.bg-orange {
    background-color: #ffa07a;
}
.text-orange {
    color: #ffa07a;
}
.bg-lightgreen {
    background-color: #8fbc8f;
}
.text-lightgreen {
    color: #8fbc8f;
}
.bg-skyblue {
    background-color: #00adef;
}
.text-skyblue {
    color: #00adef;
}
.blue-text{
	color: #03a9f4!important;
}
.badge-success {
    color: #fff;
    background-color: #6fa600;
    font-weight: normal;
}
.badge-warning {
    color: #212529;
    background-color: #ffa004;
    font-weight: normal;
}
.badge-danger {
    color: #fff;
    background-color: #dc4635;
    font-weight: normal;
}
.login-container {
    position: fixed;
    top: 0;
    width: 50%;
	max-width: 500px;
    bottom: 0;
    overflow: auto;
    background: #FFF;
    left: 0;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
}
.login-bg {
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/vendorbg.svg);
	background-repeat: no-repeat;
	
}
.admin-container {
    padding: 15px 20px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.login-container .login-box {
    width: 100%;
	margin-top: 60px;
	margin-bottom: 20px;
}
.login-box .login-header {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    font-size: 23px;
    line-height: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.login_page_logo img {
    height: 50px;
}
.login-box .form_row {
    position: relative;
    padding-bottom: 25px;
}
.login-box .form_row label {
    font-size: 15px;
	font-family: 'Poppins', sans-serif;
    float: left;
    width: 100%;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #666;
}
.login-box input[type="text"],.login-box input[type="password"] {
    width: 100%;
    border: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 2px solid #999;
    line-height: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.form-error {
    bottom: 4px;
    left: 0;
    right: 0;
    font-size: 12px;
    color: red;
    display: none;
}
.error .form-error {
    display: block;
}
.error input[type="text"], .error input[type="password"] {
    border-bottom-color: #FD3C3F;
}
.login-box .form_row.error label {
    color: red;
}
.login-box .form_row .info-p {
    font-size: 13px;
    margin: 0;
    color: #777;
}
.login-btn {
    color: #333;
    font-size: 16px;
    padding: 0px 30px;
    line-height: 45px;
    border-radius: 25px;
    cursor: pointer;
    -webkit-appearance: none;
    font-family: 'Poppins', sans-serif;
    border: none;
    width: 100%;
    background: #ffc107;
}
.forgetpassword {
    font-size: 14px;
    text-decoration: underline;
    color: #03a9f4;
}

.top-header {
    left: 0;
    right: 0;
    padding: 5px 0;
    height: 50px;
	background: #FFF;
	z-index: 1002;
}
.pagelogo img {
    height: 40px;
}
.nav-toggle-btn {
    float: left;
    font-size: 24px;
    color: #333333;
    transform: rotate(-90deg);
    cursor: pointer;
    display: none;
    margin-left: 15px;
	line-height: 38px;
	padding: 0px 0 20px 0 !important;
	margin-top: -10px;
}
.header-right .nav-link {
    color: #666;
    font-size: 14px;
}
.header-right .nav-link:hover{
	color: #ff9504;
}
.navbar-top {
    background: #333;
    left: 0;
    right: 0;
    top: 50px;
	height: 35px;
	z-index: 1001;
}
.navbar-top .nav-link {
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
}
.navbar-top .nav-link {
    font-size: 12px;
    color: #FFF;
}
.navbar-top .nav-link span {
    font-family: 'Poppins', sans-serif;
    padding-left: 5px;
}
.navlink-dropdown {
    width: 200px;
    right: 0;
    background: #FFF;
    border: 1px solid #DDD;
    top: 35px;
	display: none;
}
.navlink-dropdown ul {
    padding: 5px;
}
.navlink-dropdown ul li{
	list-style: none;
}
.navlink-dropdown ul li a {
    padding: 10px;
    display: block;
    font-size: 14px;
    color: #333;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.navlink-dropdown ul li a:hover{
	padding-right: 5px;
	padding-left: 15px;
	text-decoration: none;
	color: #666666;
}
.navbar-bg {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1003;
    display: none;
}
.navbar-left {
    top: 85px;
    width: 240px;
    background: #444;
    left: 0;
    bottom: 0;
    overflow: auto;
    scrollbar-width: thin;
	z-index: 1000;
}
.leftnav-ul {
    padding: 5px 0;
}
.leftnav-ul .leftnav-a {
    padding: 8px 15px;
    font-size: 12px;
    color: #FFF;
    border-bottom: 1px solid rgba(255,255,255,0.05);
	font-family: 'Poppins', sans-serif;
}
.leftnav-ul .leftnav-a:hover{
	text-decoration: none;
	background: #ffd152;
	color: #333;
}
.leftnav-ul .leftnav-a.active{
	text-decoration: none;
	background: #ffd152;
	color: #333;
}
.leftsubnav-ul {
    padding: 0;
    background: rgba(255,255,255,0.05);
	display: none;
}
.leftsubnav-a {
    padding: 8px;
    font-size: 12px;
    color: #FFF;
    padding-left: 35px;
	
}
.leftsubnav-a:hover{
	text-decoration: none;
	color: #DDDDDD;
}
.leftnav-ul .leftnav-a svg {
    float: right;
}
.leftnav-li, .leftsubnav-li {
    list-style: none;
}
.content-wraper {
    padding-left: 255px;
    padding-right: 15px;
    position: relative;
	padding-top: 100px;
}
.header-tabs {
    border-bottom: 1px solid #ddd;
}
.header-tabs .header-tab {
    font-size: 12px;
    padding: 10px;
    float: left;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.header-tabs .header-tab.active {
    color: #666666;
    border-bottom: 2px solid #e7ae00;
	font-weight: 600;
}
.header-tabs .header-tab:hover{
	text-decoration: none;
	color: #ff9504;
}
.page-heading {
    font-weight: 700;
    color: #333;
    font-size: 20px;
	font-family: 'Roboto Slab', serif;
}
.page-description {
    font-size: 14px;
    color: #777;
}
.table-filter label {
    padding-right: 5px;
    line-height: 30px;
    margin: 0;
    font-size: 14px;
    color: #777;
}
.select-outer {
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
}
.select-outer select {
    border: none;
    appearance: none;
    -webkit-appearance: none;
    font-size: 14px;
    padding-right: 20px;
    line-height: 30px;
    background: transparent;
    position: relative;
    z-index: 2;
}
.select-outer::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #666666;
    right: 6px;
    top: 14px;
    z-index: 0;
}
.popup-alert {
    bottom: 10px;
    right: 10px;
    z-index: 10005;
    padding-right: 30px;
    font-size: 14px;
}
.popup-alert a {
    position: absolute;
    right: -30px;
    font-size: 20px;
    top: -15px;
    padding: 10px;
    cursor: pointer;
}
.page-path {
    float: left;
    width: 100%;
    font-size: 12px;
    padding: 5px 0;
}
.path-link {
    color: #333;
    padding-right: 15px;
    position: relative;
}
.path-link:hover{
	color: #666666;
}
.path-link::after {
	content: "/";
	position: absolute;
	right: 3px;
	top: 2px;
}
.path-link:last-child{
	color: #999999;
	padding-right: 0;
}
.path-link:last-child::after{
	content: "";
}
.custom-table-outer {
    border-radius: 5px;
    margin: 10px 0;
}
.custom-table th {
    padding: 0 10px;
    color: #FFFFFF;
    font-size: 14px;
	background: #455a64;
	line-height: 40px;
}
.custom-table th:last-child{
	text-align: right;
	width: 100px;
}
.custom-table tbody td {
    border-bottom: 1px solid #eee;
    padding:  10px;
    line-height: 40px;
    font-size: 14px;
}

.table-action {
    position: relative;
    float: right;
}
.table-action .ta-btn {
    font-size: 20px;
    padding: 2px 10px;
    border-radius: 3px 3px 0 0;
}
.table-action:hover .ta-btn{
	background: #ddd;
}
.ta-dd {
    position: absolute;
    display: none;
    z-index: 1;
    background: #ddd;
    right: 0;
    top: 36px;
    padding: 10px;
	min-width: 120px;
    border-radius: 3px;
	transition: all 0.3s ease;  
	-webkit-transition: all 0.3s ease;
}
.table-action:hover .ta-dd{
	display: block;
}
.ta-dd .ta-subbtn {
    float: left;
    line-height: 30px;
    cursor: pointer;
    width: 100%;
}
.ta-dd .ta-subbtn:hover{
	font-weight: 700;
}
.custom-table{
	border: 1px solid #ddd;
	width: 100%!important;
}
.custom-table-outer .pagination {
    margin: 10px 0;
    font-size: 14px;
    padding-right: 10px;
}
.custom-table .mobilehead {
    display: none;
}
.table-list-image {
    width: 40px;
    height: 40px;
    float: left;
    margin: 3px;
    margin-left: 0;
    background-size: cover;
    border-radius: 5px;
}
.table-tooltip {
    position: relative;
}

.table-tooltip span p {
    margin-bottom: 5px;
    font-weight: bold;
}
.table-tooltip span {
    position: absolute;
    background: #FFF;
    border: 1px solid #ddd;
    bottom: 30px;
    line-height: 20px;
    font-size: 12px;
    padding: 5px;
    border-radius: 3px;
    display: none;
	right: 0;
}
.table-tooltip:hover span{
	display: block;
}
.stock-level-bar {
    height: 5px;
    background: #ddd;
    border-radius: 3px;
    overflow: hidden;
}
.stock-level {
    float: left;
    display: block;
    height: 5px;
    background: green;
}
.manage-box {
    padding: 15px;
    border: 1px solid #ddd;
}
.label-left {
    font-size: 14px;
    color: #666;
    line-height: 28px;
}
.label-right {
    font-size: 14px;
    color: #262626;
    line-height: 28px;
    font-weight: 600;
    word-wrap: break-word;
}
.helpmessage {
    position: relative;
    display: inline-block;
	color: #999999;
}

.help-title {
    display: none;
    position: absolute;
    width: 240px;
    background: rgba(0,0,0,0.8);
    float: left;
    z-index: 1;
    font-size: 12px;
    bottom: 30px;
    padding: 5px;
    border-radius: 3px;
    color: #FFF;
    line-height: 18px;
}
.helpmessage:hover .help-title {
    display: block;
}
.managebox_popup {
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    background: #FFF;
    border: 1px solid #ddd;
    z-index: 10001;
	border-radius: 5px;
	overflow: auto;
	display: none;
}
.managebox-popup-Header {
    background: #333;
    padding-left: 180px;
	padding-right: 15px;
	padding-top: 30px;
	min-height: 180px;
}
.managebox-popup-Header .vendor-image {
    width: 130px;
    height: 130px;
    position: fixed;
    border: 3px solid #FFF;
    border-radius: 50%;
    overflow: hidden;
    left: 20px;
    top: 20px;
}
.vendor-shop-btn {
    position: fixed;
    font-size: 14px;
    background: #ffc107;
    padding: 5px 10px;
    border-radius: 3px;
    right: 15px;
    top: 135px;
	transition: all 0.3s ease;  
	-webkit-transition: all 0.3s ease;
	color: #333333;
}
.vendor-shop-btn:hover{
	text-decoration: none;
	background: rgba(255,255,255,0.8);
}
.managebox-popup-Header .vendor-image img {
    width: 100%;
}
.managebox-popup-Header.header-sm {
    min-height: 40px;
}
.vendor-box {
    font-size: 14px;
    color: #FFF;
    background: rgba(255,255,255,0.1);
    text-align: center;
    padding: 10px;
    margin: 15px 0;
	border-radius: 5px;
	border-bottom: 2px solid #b08400;
}
.vendor-box p {
    font-size: 12px;
}
.vendor-box h5 {
    margin: 0;
    font-weight: bold;
    color: #ffc107;
}
.popup-content-row {
    margin-bottom: 5px;
}
.managebox-popup-content {
    padding: 15px;
}
.popup-content-subheader {
    padding: 15px 0 5px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.close-manage-popup {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 5px;
    color: #FFF !important;
    font-size: 20px;
    line-height: 0;
    cursor: pointer;
}
.dashboard-box {
    border: none;
    background: #FFF;
    margin: 10px 0;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    padding: 10px;
    padding-right: 80px;
}
.dashboard-box .d-count {
    float: left;
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
	padding: 5px;
	width: 100%;
	font-family: 'Roboto Slab', serif;
}
.dashboard-box .dash-icon {
    width: 80px;
    float: right;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.dashboard-box .dashbox-title {
    margin: 0;
    display: block;
    padding: 6px;
    float: left;
}
.dashboard-card {
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    border-radius: 10px;
}
.dashboard-order-row .order-title {
    float: left;
    font-size: 16px;
    color: #666;
	line-height: 28px;
    width: 50%;
}
.dashboard-order-row .order-count{
    float: left;
    font-size: 22px;
    color: #00acff;
    line-height: 28px;
    width: 25%;
    font-weight: bold;
}
.dashboard-order-row .order-view a {
    float: right;
    padding: 7px;
    background: #eee;
    border-radius: 3px;
    font-size: 12px;
	margin-top: -2px;
	margin-bottom: -2px;
	transition: all 0.3s ease;  
	-webkit-transition: all 0.3s ease;
}
.dashboard-order-row .order-view a:hover{
	background: #ddd;
	text-decoration: none;
}
.profile-listing {
    margin-left: -15px;
    margin-right: -15px;
}
.profilelisting-ul {
    height: 285px;
    overflow: auto;
    padding: 0;
}
.profilelisting-li {
    padding: 15px;
    padding-left: 100px;
	list-style: none;
}
.profilelisting-li .pofile-image {
    width: 70px;
    height: 70px;
    left: 20px;
    overflow: hidden;
    border-radius: 8px;
}
.profilelisting-li .pofile-image img {
    width: 100%;
}
.profilelisting-li .profile-name {
    font-size: 18px;
    line-height: 36px;
    margin: 0;
}
.profilelisting-li .profile-dec {
    font-size: 14px;
    color: #777;
}
.custom-table .btn-group {
    line-height: 20px;
}
.btn-block {
    color: #fff;
    background-color: #fd4c5d;
    border-color: #fd4c5d;
}
.btn-block:hover {
    color: #fff;
    background-color: #E43445;
    border-color: #E43445;
}
.btn-active {
    color: #fff;
    background-color: #8fc800;
    border-color: #8fc800;
}

.btn-active:hover {
    color: #fff;
    background-color: #7AAB00;
    border-color: #7AAB00;
}
.commission-div {
    border-bottom: 3px solid;
	background: #eee;
}
.commission-div .cmsn-label {
    line-height: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
	text-align: center;
}
.commission-div .cmsn-txt {
    font-size: 22px;
    line-height: 50px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
	text-align: center;
}
.multi-select {
    width: 100%;
    height: 120px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.multi-select-btn-group {
    padding: 10px 0;
}
.mselect-btn{
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
}
.add-to-mselect.mselect-btn {
    color: #2fa808;
}
.remove-from-mselect.mselect-btn {
	color: #f55;
}
.form-control.colorpicker-element {
    width: 150px;
}
.managebox_popup.popup-size-2 {
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    max-width: 100%;
    bottom: 0;
}
.shipping-info .shipping-info-img {
    width: 30%;
	max-width: 50px;
    border-radius: 5px;
    overflow: hidden;
    float: left;
}
.shipping-info .shipping-info-img img {
    width: 100%;
}
.shipping-info .shipping-info-text {
    float: left;
    padding: 0 10px;
    line-height: 25px;
	 width: 70%;
}
.shipping-info .shipping-info-text label {
    width: 100%;
    float: left;
    margin-bottom: 0;
    font-size: 12px;
}
.custom-table.custom-table-2 {
    border: none;
}
.custom-table-2.custom-table th {
    line-height: 21px;
    background: none;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding: 15px 0 5px;
	color: #333333;
}
.br-md-r{
	border-right: 1px solid #ddd;
}
.mandatory {
    color: red;
}
.message-container {
    width: 100%;
    max-width: 320px;
    margin: 10% auto 0;
}
.message-box {
    text-align: center;
    padding: 15px;
    padding-top: 120px;
    border-bottom: 3px solid;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    position: relative;
    color: #666666;

}
.message-box.error-message {
    border-color: #dc3545;
}
.message-box.success-message {
    border-color: #28a745;
}
.messagebox-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.message-box.error-message .messagebox-icon {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0MjYuNjY3IDQyNi42NjciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQyNi42NjcgNDI2LjY2NzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIHN0eWxlPSJmaWxsOiNGMDUyMjg7IiBkPSJNMjEzLjMzMywwQzk1LjUxNCwwLDAsOTUuNTE0LDAsMjEzLjMzM3M5NS41MTQsMjEzLjMzMywyMTMuMzMzLDIxMy4zMzNzMjEzLjMzMy05NS41MTQsMjEzLjMzMy0yMTMuMzMzUzMzMS4xNTMsMCwyMTMuMzMzLDB6IE0zMzAuOTk1LDI3Ni42ODlsLTU0LjMwMiw1NC4zMDZsLTYzLjM2LTYzLjM1NmwtNjMuMzYsNjMuMzZsLTU0LjMwMi01NC4zMWw2My4zNTYtNjMuMzU2bC02My4zNTYtNjMuMzZsNTQuMzAyLTU0LjMwMmw2My4zNiw2My4zNTZsNjMuMzYtNjMuMzU2bDU0LjMwMiw1NC4zMDJsLTYzLjM1Niw2My4zNkwzMzAuOTk1LDI3Ni42ODl6Ii8+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PC9zdmc+);
}
.message-box.success-message .messagebox-icon {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0MjYuNjY3IDQyNi42NjciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQyNi42NjcgNDI2LjY2NzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIHN0eWxlPSJmaWxsOiM2QUMyNTk7IiBkPSJNMjEzLjMzMywwQzk1LjUxOCwwLDAsOTUuNTE0LDAsMjEzLjMzM3M5NS41MTgsMjEzLjMzMywyMTMuMzMzLDIxMy4zMzNjMTE3LjgyOCwwLDIxMy4zMzMtOTUuNTE0LDIxMy4zMzMtMjEzLjMzM1MzMzEuMTU3LDAsMjEzLjMzMywweiBNMTc0LjE5OSwzMjIuOTE4bC05My45MzUtOTMuOTMxbDMxLjMwOS0zMS4zMDlsNjIuNjI2LDYyLjYyMmwxNDAuODk0LTE0MC44OThsMzEuMzA5LDMxLjMwOUwxNzQuMTk5LDMyMi45MTh6Ii8+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PC9zdmc+);
}
.readmessage-popup {
    position: fixed;
    top: 10%;
    background: #FFF;
    z-index: 10000;
    width: 100%;
    max-width: 640px;
    border-radius: 6px;
    padding: 15px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #ddd;
    display: none;
}
.readmessage-popup-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.readmessage-popup-header .cls-read-btn {
    float: right;
    font-size: 20px;
    line-height: 20px;
    color: #999;
}





.page-subheading {
    font-weight: 600;
    font-size: 16px;
}
.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.info-popup-outer {
    color: #FFFFFF;
}
.image-croper-popup {
    background: #FFF;
    z-index: 10001;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 520px;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
	display: none;
}

.image-croper-popup.active{
	display: block;
}
.custom-input {
    border: 1px solid #fcbf10;
    border-radius: 3px;
    height: 33.5px;
    display: flex;
    max-width: 120px;
}
.custom-input input[type="file"] {
    left: 0;
    height: auto;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}








.custom-input .browse-btn {
    padding: 0px 10px;
    background: #fcbf10;
    line-height: 30px;
    display: block;
    width: 100%;
    text-align: center;
}
.main-bg {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    display: none;
	z-index: 10000;
}
.main-bg.active {
    display: block;
}
.image-croper-box {
    background-color: #666;
	background-image: url(../images/DEFAULT-IMAGE.jpg);
	background-size:cover;
    background-position: center;
}
.custom-fileupload input[type="file"] {
    position: absolute;
    opacity: 0;
    z-index: 2;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
     width: 50%;
}

.custom-fileupload
{
width:50%;
}

.image-croper-box {
    background-color: #666;
	background-image: url(../images/DEFAULT-IMAGE.jpg);
	background-size:cover;
    background-position: center;
}


.manage-box.manage-image {
    padding-left: 280px;
	min-height: 280px;
}
.manage-box.manage-image .image-wraper {
    width: 240px;
    left: 15px;
    top: 15px;
    height: 250px;
}
.emailtemplate textarea {
    width: 100%;
    border: 1px solid #ddd;
}

.edit-form-image {
    position: relative;
    width: 140px;
    height: 90px;
    background: #000;
    border-radius: 7px;
    overflow: hidden;
}
.edit-form-image input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 140px;
	z-index: 100;
	cursor: pointer;
}
.edit-form-image img {
    width: 140px;
    height: 90px;
    opacity: 0.6;
}
.edit-form-image svg {
    position: absolute;
    top: 30px;
    left: 55px;
    font-size: 25px;
	color: #FFFFFF;
}


.coupen-scroll {
    padding: 0 15px;
    max-height: 250px;
    overflow: auto;
}
.noresult-box {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #DDD;
    padding: 20px;
}
.noresult-box .svg-inline--fa {
    font-size: 30px;
    color: #666;
    margin-bottom: 10px;
}



.managebox_row .input-hastext {
    position: relative;
    margin-bottom: 10px;
}
.managebox_row .input-hastext input[type="text"] {
    width: 100%;
    border: 1px solid #bbb;
    border-radius: 3px;
	padding-right: 100px;
}
.managebox_row .input-hastext span {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 15px;
    line-height: 31px;
    bottom: 0;
    color: #666;
    background: #eee;
    border: 1px solid #bbb;
    border-radius: 0 3px 3px 0;
    border-left: 1px solid #ddd;
}



.page-footer {
    background: #DDD;
    margin-top: 10px;
    padding: 10px;
    font-size: 12px;
    padding-left: 250px;
}
.footer-links {
    text-align: right;
}
.footer-links a {
    color: #333;
    font-size: 12px;
    padding: 5px;
    text-decoration: underline;
}
.vndr-fltr{
	display: flex;
}
.ft-txt {
    width: 80%;
}

.reg-container {
    position: fixed;
    top: 0;
    width: 70%;
    bottom: 0;
    overflow: auto;
    background: #FFF;
    left: 0;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
}
.reg_page_logo img {
    height: 50px;
	margin-top: 20px;
}

.reg-bg {
    width: 30%;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
	    float: right;
}
.v-reg-hd{
	font-family: 'Poppins', sans-serif;
color: #333333;
font-size: 23px;
line-height: 20px;
margin-bottom: 30px;
text-align: center;
    padding-top: 20px;
}
.reg-fld-ourt {
    padding: 0px 40px;
}
.v-reg-inpt{
	width: 100%;
border: none;
font-weight: 500;
font-size: 14px;
border-bottom: 2px solid #999;
line-height: 30px;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.reg-lbl{
	font-size: 12px;
font-family: 'Poppins', sans-serif;
float: left;
width: 100%;
margin: 0;
font-weight: 500;
letter-spacing: 0.5px;
color: #666;
    text-align: left;
}
.reg-out{
	padding-bottom: 25px;
}
.gnrt-pswd {
    float: left;
    margin-top: 10px;
}
.v-reg-bt {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 40px;
}
.reg-bg-outr {
    padding: 10%;
    margin-top: 53px;
}
.v-lg-bt {
    color: #212529 !important;
    font-weight: bold;
}
.bk-home {
     position: absolute;
    right: 15px;
    top: 23px;
    background: #FFC107;
    border: none;
    padding: 10px 7px;
    border-radius: 5px;
    cursor: pointer;
    color: #333;
}
.bk-home:hover{
 color: #333;
    text-decoration: none;
}
.success-msg {
    text-align: center;
    max-width: 220px;
    width: 100%;
    padding: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    z-index: 100;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px #00000040;
	display: none;
}
.sces-img {
    width: 35px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.success-p {
    font-size: 14px;
    font-weight: bold;
    color: #3b3b3b;
    letter-spacing: .2px;
}
