



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Ubuntu-Regular;
  src: url('../fonts/ubuntu/Ubuntu-Regular.ttf'); 
}

@font-face {
  font-family: Ubuntu-Bold;
  src: url('../fonts/ubuntu/Ubuntu-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Ubuntu-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Ubuntu-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #0641b7;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #403866;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Ubuntu-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input::-webkit-input-placeholder { color: #8f8fa1;}
input:-moz-placeholder { color: #8f8fa1;}
input::-moz-placeholder { color: #8f8fa1;}
input:-ms-input-placeholder { color: #8f8fa1;}

textarea::-webkit-input-placeholder { color: #8f8fa1;}
textarea:-moz-placeholder { color: #8f8fa1;}
textarea::-moz-placeholder { color: #8f8fa1;}
textarea:-ms-input-placeholder { color: #8f8fa1;}

label {
  display: block;
  margin: 0;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Ubuntu-Regular;
  font-size: 16px;
  color: #827ffe;
  line-height: 1.4;
}
/* height form */
.container-login100.f-height{
    min-height: inherit;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}


.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
.main-login-section {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    padding: 70px 0;
}

/*==================================================================
[ Form ]*/

.login100-form {
  width: 100%;
  z-index: 9;
}

.login100-form-title {
  font-family: Ubuntu-Bold;
  font-size: 30px;
  color: #403866;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;

  width: 100%;
  display: block;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #e6e6e6;
  border: 1px solid transparent;
  border-radius: 3px;
}


/*---------------------------------------------*/
.input100 {
  font-family: Ubuntu-Bold;
  color: #403866;
  line-height: 1.2;
  font-size: 18px;

  display: block;
  width: 100%;
  background: transparent;
  height: 62px;
  padding: 0 20px 0 38px;
}
/*------------------------------------------------------------------
[ Focus Input ]*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #1b86e9;
  border-radius: 3px;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.eff-focus-selection {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Ubuntu-Regular;
  font-size: 16px;
  color: #999999;
  line-height: 1.2;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #fff;
  border: 2px solid #827ffe;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #827ffe;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.login100-form-btn {
  font-family: Ubuntu-Bold;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 62px;
  background-color: #1e85e9;
  border-radius: 3px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background-color: #00ace1;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 3px;
  padding: 4px 25px 5px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Ubuntu-Regular;
  color: #c80000;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

/*Header start*/
/*--------------------------------------*/
.main-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}
header.header.main-header-image {
    /* background-color: transparent; */
    background-image: none;
}
.header
{
  width: 100%;
  height:90px;
 background-image: linear-gradient(to left, #1e85e9, #0090ea, #009ae8, #00a3e5, #00ace1);
  position: fixed;
  z-index: 9;
}
.menu-list {
    float: right;
    padding-top: 25px;
}
.menu-list a:last-child {
    padding-right: 0;
}
.logo {
    float: left;
    padding-top: 25px;
}
.header-detail{
    position: relative;
    float: left;
    width: 100%;
}
.menu-list a {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 20px !important;
    font-family: Ubuntu-Bold;
    color: white;
    display: inline-block;
}

a.user_name {
    font-family: 'Ubuntu-Regular';
    font-size: 17px !important;
}
/*----------------------------------------------------*/
/*------------------ footer ------------------------*/
.footer
{
   width: 100%;
   height:50px;
  background-image: linear-gradient(to left, #1e85e9, #0090ea, #009ae8, #00a3e5, #00ace1);
   position: relative;
   float: left;
}
.footer-content {
    color: white;
    text-align: center;
    padding-top: 12px;
    position: relative;

}

/*-------------------- end ---------------------*/
/* ------------- already have a accoun -----------*/
.account label {
    font-family: Ubuntu-Regular;
    font-size: 16px;
    color: #999999;
    line-height: 2.4;
    display: block;
    position: relative;
    
}

.account a {
    padding-left: 5px;
}

/* -------------- end --------------*/

/* ------------- show hide password -------------- */
.field-icon {
    float: right;
    margin-top: -40px;
    position: relative;
    color: #403866;
    margin-right: 30px;
    font-size:  18px;
    cursor: pointer;
}
/* -----------------end ---------------- */
/* -------------------registration page-------------------------- */


.container-login100.reg:before {
    content: "";
    background: url(../images/reg_right.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background-position:3.5% 67%;
    top: 0;
}
.container-login100.reg:after {
    content: "";
    background: url(../images/reg_left.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background-position: 88% 67%;
    top: 0;
}
.reg-top-padding
{
    padding: 100px 0;
}
.wrap-login100.p-t-50.p-b-90.reg-form
{
    width: 40%;
    position: relative;
    display: inline-block;
    padding: 50px 74px;
    box-shadow: 1px 0 20px rgb(0 0 0 / 8%);
    z-index: 2;
    border-radius: 0;
}


/* --------------dashboard start---------------*/

.sidebar-content {
    background-color: #ffffff;
    width: 15%;
    display: inline-block;
    position: fixed;
    vertical-align: top;
    top: 90px;
    bottom: 0;
    left: 0;
    box-shadow: 1px 0 20px rgb(0 0 0 / 8%);
}
.right-content {
    width: 85%;
    display: inline-block;
    position: relative;
    min-height: calc(100vh - 100px);
    margin-left: 15%;
    margin-top: 50px;
}
.right-content-inner {
    padding-top: 70px;
}
input.input-text {
    height: 62px;
    font-family: Ubuntu-Bold;
    color: #8f8fa1;
    line-height: 1.2;
    /* font-size: 17px; */
    display: block;
    width: 100%;
    background: transparent;
    /* height: 62px; */
    padding: 18px 20px 0 38px;
}

.inner-section-dash {
    position: relative;
    width: 100%;
    float: left;
    display: block;
}
.p-b-51 {
    padding-bottom: 30px !important;
}



/* ---------------- end -----------------------*/
/*--------------------sidebar menu--------------------*/
li.menu-item-list a {
    font-size: 18px;
    text-decoration: none;
    color: #00ace2;
    line-height: 2.1;
}

.side-menu-list {
    padding: 26px;
}
li.menu-item-list i {
    padding-right: 20px;
}
li.menu-item-list a:hover {
    color: #0077e6;

}
.side-menu-list {
    padding: 30px 30px 30px 50px;
}
/*----------toggle button-----------*/
/*.accordion {
  background-color: #827ffe;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  color:white;
  font-family: Ubuntu-Bold;
  margin-bottom: 30px;
}

.active, .accordion:hover {
  background-color: #403866;
}

.accordion:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  
}

.active:after {
  content: "\2212";
  
}
*/
/*.panel {
  padding: 0 18px;
  background-color: white;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}*/
/* login page */

.wrap-login100.p-t-50.p-b-90.login-form {
    box-shadow: 1px 0 20px rgb(0 0 0 / 8%);
    padding: 50px 80px;
    width: 500px;
    border-radius: 0;
}
/* ----------- address ----------------- */

textarea.address {
    width: 100%;
    position: relative;
    background-color: #e6e6e6;
    font-family: Ubuntu-Bold;
    color: #403866;
}

/* --------------- end ---------------- */
/*----------------------------------------------------*/

/* ------------- user-detail column-------------- */

.store-image img {
    border-radius: 50%;
    width: 30%;
}

.user-info {

    padding-top: 17px;
}

button.login100-form-btn1 {
    font-family: Ubuntu-Bold;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    width: 41%;
    height: 41px;
    background-color: #827ffe;
    border-radius: 3px;
    transition: all 0.4s;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top:  30px;
}
button.login100-form-btn1:hover
{
  background-color: #403866;
}
/*--- change password button------------*/
button.login100-form-btn2 {
    font-family: Ubuntu-Bold;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 41px;
    background-color: #827ffe;
    border-radius: 3px;
    transition: all 0.4s;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    padding: 0px 22px;
}
button.login100-form-btn2:hover
{
  background-color: #403866;
}

.user-details {
    text-align: center;
    padding: 15px 0px;
    background-color: #d9d9d9;
}

.user-info label {
    line-height: 2;
}

.user-edit i {
    PADDING-TOP: 15px;
    cursor: pointer;
}
.container-login-dashboard {
    width: 100%;
    
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
span.login100-form-title.p-b-51 {
    text-align: left;
}
/*--------------------------------------*/

/*--------------- store detail grid -----------------*/
.store-info {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 0px 65px 95px 65px;
    grid-gap: 40px;
    position: relative;
}
.store-detail i {
    font-size: 13px;
    color: #0641b7;
    padding-right: 5px;
   
}
.store-detail label {
    line-height: normal;
    padding-bottom: 9px;
}
.store-info div {
    border: 2px solid;
    padding: 50px;
}
.wrap-login100.dashboard.p-t-50 {
    /*padding-top: 20px !important;*/
}
.store-detail a:hover
{
  color: #000000;
}
/*---------store-form------------- */
.wrap-login100.dashboard.p-t-50.p-b-90 {
    width: 50% !important;
    margin: auto;
}

.wrap-login100.dashboard.p-t-50.p-b-90 {
    padding-top: 0px !important;
}
span.login100-form-title.store.p-b-51 {
    text-align: center;
}
/*------------------------ edit store ----------------------*/
img.edit_store_img {
    max-width: 20%;
}

/*------------------ store view with image ---------------------*/
.edit-store-icon i {
    font-size: 13px;
    color: #ffffff;
    /* padding-right: 5px; */
    font-size: 20px;
    /* font-weight: 600; */
    /* background-color: #1c86e9; */
    background-image: radial-gradient(circle, #00abe1, #00a3e5, #009ae8, #0090e9, #1c86e9);
    padding: 10px;
    border-radius: 50%;
}
a.edit-store-icon {
    position: absolute;
    top: 15px;
    right: 15px;
}
.store-detail-main{
    position: relative;
    width: 100%;
    display: inline-block;
}

.inner-store-detail {
    padding: 20px;
    display: grid;
    grid-template-columns: 28% 68%;
    grid-column-gap: 4%;
    box-shadow: 1px 0 20px rgb(0 0 0 / 20%);
}
.store-img img {
    max-width: 100%;
}
section.main-store-info-section {
    padding: 0 50px 50px;
}
.store-infos {
   
    display: grid;
    /*grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 3%;
    padding: 0px 50px;*/

    grid-template-columns: 30.6% 30.6% 30.6%;
    grid-column-gap: 62px;
    grid-row-gap: 62px;
    }
.store-title.p-t {
    padding-left: 50px;
}
label.Address {
    max-width: 90%;
    text-align: justify;
}
label.detail-store {
    padding-left: 25px;
    position: relative;
}
label.detail-store i {
    position: absolute;
    left: 0;
    display: inline-block;
    font-size: 15px;
    top: 3px;

}
/*---------------------------------------*/

/*--------------------view bills-------------------------*/
/*----------------------------Data Table------------------------------*/
/*.card {
    margin-bottom: 60px;

    /* border-radius: 5px; */
  /*  padding: 0;
    border: 0px solid transparent;
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 8%);
    box-shadow: 0 0 20px rgb(0 0 0 / 8%);
}
.col-md-12.datatable-data-inner {
    padding: 0px 50px;
}
table.dataTable.innre-table-data
{
  margin: 18px 0px !important;
  
}
/* search box */
/*div.dataTables_wrapper div.dataTables_filter {
    /* text-align: right; */
    /*float: right;
}

/*input.form-control.form-control-sm:focus {
    border: 1px solid #827ffe !important;
    border-radius: 3px;
}
*/
/*table.dataTable tfoot th, table.dataTable tfoot td {
    padding: 10px 18px 6px 0px !important;
    border-top: 1px solid #111;
}*/
/*------------------ validation -------------------*/
.error
{
    color: red;
    font-size: 20px;
    font-weight: 500;
    margin: -10px 0 10px 0;
}
/*-----------------------------table view page---------------------------------*/
table.dataTable tfoot th, table.dataTable tfoot td {
    padding: 10px 0px 10px 3px !important;
    border-top: 1px solid #111;
}
table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
    background-color: transparent !important;
}
table.dataTable.display tbody tr:hover>.sorting_1, table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
     background-color: transparent !important;
}
table.dataTable.display tbody tr.even>.sorting_1, table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
    background-color: transparent !important;
}
table.filter-date {
    margin: auto;
}

  table.filter-date input {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 3px;
    margin-right: 20px;
    position: relative;
}
table.filter-date input:focus {
    border: 1px solid #aaa !important;
    border-radius: 3px;
}
.dataTables_wrapper .dataTables_filter input:focus{
     border: 1px solid #aaa !important;
    border-radius: 3px;
}
.bils-inner-tabledata {
    padding: 0px 50px;
    margin-bottom: 50px;

}
.main-inner-table-data {
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    padding: 40px 50px;
    border-radius: 5px;
}
.table-border {
    border: 1px solid #dee2e6;

}
div#example_length {
    padding-bottom: 30px;
}
div#example_filter {
    padding-bottom: 30px;
}
.dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: 2.25em !important;
}
table.filter-date tbody {
    display: flex;
}
span.login100-form-title.p-bill-b-51 {
    text-align: left;
    padding-bottom: 30px;
}
table.filter-date input:hover {
    cursor: pointer;
}
table.filter-date td {
   display: inline-block;
   position: relative;
}
table.dataTable thead .sorting_desc {
    background-image: url(../images/sort_desc.png) !important;
}
.from-date i.fa.fa-calendar {
    position: absolute;
    left: 380px;
    top: 214px;
}
.from-date input
{
    position: relative;
}
.to-date input
{
    position: relative;
}
.to-date i.fa.fa-calendar {
    position: absolute;
    left: 686px;
    top: 214px;
}
td.from-date:after {
    content: '\f073';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 28px;
    top: 8px;
}
td.to-date:after {
    content: '\f073';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 28px;
    top: 8px;
}

/*---------------------- home page --------------------------*/

.main-banner-image
{
    position: relative;
    /*padding-top: 90px;*/
}
a.btn {
    background-color: #1e85e9;
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
}
a.btn:hover{background-color: #00ace1; color: #fff;}
.about-info-image img {
    max-width: 20%;
}

.about-info-image img {
    max-width: 100%;
}
.inner-aboutus {
    display: grid;
    grid-template-columns: 70% 30%;
    position: relative;
   width: 100%;
   float: left;
   align-items: center;
}
section.main-aboutus {
    position: relative;
    width: 100%;
    float: left;
}
section.main-banner-image {
    width: 100%;
    float: left;
    position: relative;
}
section.main-logo {
    position: relative;
    width: 100%;
    float: left;
}
.banner-img img {
    width: 100%;
    max-width: 600px;
}
.main-section-title h2 {
    font-family: 'Ubuntu-Bold';
    font-size: 50px;
    padding-bottom: 20px;
}
.about-details p {
    font-size: 18px;h4
}

.logo-title h2
{
    text-align: center;
}
.inner-banner-img img {
    width: 100%;
}
.main-banner-img
{
    float: left;
    position: relative;
    width: 100%;
}
.p-b{
    padding-bottom: 80px;
}
/*----------------- slider ---------------*/
#owl-demo .item{
  margin: 3px;
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}

.main-inner-banner-section{
    position: relative;
    float: left;
    width: 100%;
}
.main-banner-section
{
    position: relative;
    float: left;
    width: 100%;
}
.logo-slider
{
    position: relative;
    float: left;
    width: 100%;
}
.inner-choose {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    text-align: center;
    grid-column-gap: 5%;
    grid-row-gap: 80px;    
}
.main-section-title.logo-title {
    padding-bottom: 30px;
}
.owl-carousel .owl-item img {  
    border: 1px solid #ddd;
}
/*---------------header-slider------------------*/
.banner-img {
    position: relative;
    width: 50%;
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}
.choose-detail {
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    padding: 50px 25px;
}
.choose-detail h4 {
    font-family: 'Ubuntu-Bold';
    padding-bottom: 20px;
    padding-top: 30px;font-size: 22px;
}
.choose-detail p {
    font-size: 18px;
}
.choose-icon-main {
    width: 100px;
    height: 100px;
    /* background-image: linear-gradient(to right top, #0eaaee, #00c5eb, #00dabd, #55e673, #d4e51b); */
    border-radius: 50px;
    background-image: linear-gradient(to top, #0eaaee, #2bbdee, #54cfec, #7bdfea, #a1eeeb);
}
.choose-detail
{
    position: relative;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    padding: 50px 25px;
    display: block;
    background: #fff;
    z-index: 2;
    outline: none;
}

.icon-main-content {
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translate(-50%, 0);
}
.choose-icon-main
{
    position: relative;
}

.choose-img-inner img {
    max-width: 55px;
    position: absolute;
    right: 23px;
    top: 23px;
}


.choose-detail-back::before {
    content: " ";
    width: 95%;
    height: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2px;
    right: 0;
    border-radius: 1px;
   background-image: linear-gradient(to left, #1e85e9, #0090ea, #009ae8, #00a3e5, #00ace1);
    transition: all .5s;
}
.choose-detail-back {
    position: relative;
    width: 100%;
}
.choose-detail-back:hover::before {
    transform: rotate(
2deg
) translateX(-5px) translateY(16px);
}

.main-choose-detail {
    padding-top: 100px;
}

.inner-banner-info {
   /* align-items: center;*/
    display: grid;
    grid-template-columns: 60% 40%;
	padding-bottom: 60px;
    padding-top: 40px;
}

.main-banner-bgcolor {
background-image: url(shape2.png);
background-repeat: no-repeat;
width: 100%;
background-size: cover;
background-position: top left; 
position: relative;
height: 303px;
float: left;
}
.main-banner-bgcolor1 {    
    background: url(../images/shape10.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0 0;
}
section.main-banner-img h2 {
    color: #fff;
}
/*
section.main-banner-img.p-b.main-banner-bgcolor:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}/**/
.inner-point-info {
    display: flex;
    align-items: center;
}
.inner-point-info i {
    padding-right: 10px;
}
.inner-point-info span {
    background-color: #FF7182;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: relative;
}
.inner-point-info span:before {
    content: "\f00c";
    display: inline-block;
    font-family: FontAwesome;
    position: absolute;
    left: 5px;
    top: 0px;
    color: white;
}
.inner-point-info h3 {
    padding-left: 10px;
    font-weight: 600;
    font-size: 18px;
    color:#fff;
}

.banner-main-detail {
    padding-top:35px;
}
.banner-main-detail p {

    font-size: 16px;
    width: 56%;
    text-align: justify;
	color:#fff;
    padding-top: 10px;
}
/*index header*/
header.header.main-header-image {
    background-color: transparent;
}
/*------------------- scroll change event -----------------------*/
header.header.main-header-image.active{
   background-image: linear-gradient(to left, #1e85e9, #0090ea, #009ae8, #00a3e5, #00ace1);
}

/*------------------*/
.logo.logo-header-image {
    display: block;
}

.logo.logo-header-image.active-logo {
    display: none;
}
.inner-page-header .logo-header-image{
    display: none;
}
/*------------------------------------------------*/
.slider-section-inner-content {
    display: table;
    vertical-align: middle;
    height: 100%;
    padding-top: 200px;
}
.slider-section-main-content {
    background-image: url(../images/slider-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 850px;
}
.slider-section-col1{
    width: 50%;
    display: table-cell;
    vertical-align: middle;
}
.slider-section-detail h1 {
    font-size: 60px;
    font-weight: 700;
    padding-bottom: 30px;
}
.slider-section-detail p {
    max-width: 80%;
    text-align: justify;
    font-size: 18px;
}

.slider-section-detail button {
    border: 2px solid #008fee;
    border-radius: 5px;
    padding: 5px 20px;
    font-size: 20px;
    font-weight: 700;
    /* margin-top: 41px; */
}
.slider-section-button {
    padding-top: 30px;
}
.slider-section-detail button:hover {
    background-color: #0ba9e6;
    color: white;
    border-radius: 5px;
    border: none;
}
/*//////////////////////////////////////////////////*/
/*----------------------Dashboard---------------------------*/
.pe-7s-cash:before {
    content: '\f0d6';
    font-family: 'FontAwesome';
    color: #00c29;
    font-size: 50px;
}
.store-inner-detail-image img {
    max-width: 50px;
}
.store-inner-section-info {
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /* border: 1px solid rgba(0,0,0,.125); */
    border-radius: .25rem;
    padding: 20px 20px;
    box-shadow: 1px 0 20px rgb(0 0 0 / 14%);
}/*
.store-inner-body
{
    float: left;
    padding: 1.25em;
    position: relative;
    width: 100%;
}*/
.store-main-section-details {
    display: grid;
    grid-template-columns: 19% 19% 19% 19% 19%;
    grid-column-gap: 19.5px;
}
.stat-widget-five {
    /* display: flex; */
    align-items: center;
    flex-grow: 10% 90%;
    display: grid;
    grid-template-columns: 20% 80%;
}
.stat-content {
    padding-left: 30px;
}
.dash-p-l-r
{
    padding: 0 30px;
}
.stat-text {
    font-size: 25px;
}
.stat-heading {
    color: #828384;
}
.store-info-main-section dash-p-l-r
{
    position: relative;
    width: 100%;
    float: left;
}
/*/////////////////////////////////////////////////////////*/
/*--------------------------contact us-------------------------------------------*/
.main-contact-section {
    padding-top: 90px;
}
.contact-top-marging {
    padding-top: 90px;
}
.contact-main-section{
    float: left;
    width: 100%;
    position: relative;
}
.contact-us-form
{
    float: left;
    width: 100%;
    position: relative;
}
.contact-input-item {
    border: 1px solid #dedede;
    border-radius: 2px;
   
}
textarea{
    resize: none;
}
.contact-cont-c2 {
    float: left;
    padding: 0 10px 20px;
    width: 50%;
}
.contact-top-p {
    padding: 0 10px;
    width: 100%;
    position: relative;
    float: left;
}
.contact-inner-form {
    position: relative;
    max-width: 800px;
    margin: auto;
}
.main-section-title.logo-title p {
    text-align: center;
    font-size: 18px;
    width: 65%;
    margin: auto;
}
.contact-form-main {
    position: relative;
    width: 100%;
    display: inline-block;
}
.contact-form-main {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 50px 0;
}
.contact-top-p.condition {
    padding-top: 10px;
}
.contact-inner-main-form {
    position: relative;
    float: left;
    width: 100%;
    /* border: 1px solid; */
    padding: 50px;
    box-shadow: 1px 0 20px rgb(0 0 0 / 8%);
}
.contact-input-item input, textarea {
    padding: 15px 25px;
    /* padding: 25px; */
    width: 100%;
}
button.login100-form-btn.contact-form-btn {
    width: 30%;
    height: 50px;
    /* text-align: center; */
    margin: auto;
    /* padding-top: 25px; */
}
.container-login100-form-btn.m-t-17.contact-form {
    padding-top: 30px;
}

.main-infobox-section
{
    position: relative;
    float: left;
    width: 100%;
}
.inner-infobox-detail {
    position: relative;
    /* float: left; */
    text-align: center;
    padding: 0 50px  50px;
    display: inline-block;
}
.inner-infobox-detail i {
    font-size: 40px;
    color: #0060c3;
}
label.infobox-title {
    font-weight: 800;
    font-size: 20px;
    padding-top: 10px;
}
label.infobox-detail {
    color: #868686;
}
.main-infobox-contain {
    position: relative;
    width: 100%;
    float: left;
}
.inner-infobox-info {
    position: relative;
    /* float: left; */
    margin: auto;
    width: 100%;
    text-align: center;
}
.breadcrumbs-title {
    text-align: center;
}
.breadcrumbs-banner-section {
    width: 100%;
    float: left;
    position: relative;
    padding-bottom: 100px;
}

.breadcrumbs-main {
    position: relative;
    width: 100%;
    background-image: linear-gradient(to bottom, #33858a, #339399, #33a1a7, #31afb7, #2fbdc6);
    padding: 50px 0;
}
.main-section-title.logo-title.breadcrumbs {
    color: white;
}
span.itemListElement a:after {
    content: '\f101';
    font-family: 'FontAwesome';
    padding: 0 5px;
}
span.itemListElement a { font-size: 17px;
    color: white;
}
span.itemListElement a:hover {
    color: #3b494e;
}

/*--------------------add store-----------------*/

label.custom-file-upload div{
    border: 1px solid #656565;
    display: inline-block;
    padding: 16px 50px;
    cursor: pointer;
    float: right;
    background-color: #656565;
    color: white;
    /* letter-spacing: 1px; */
    border-radius: 0 2px 2px 0;
    font-weight: 600;
    letter-spacing: 1px;
}
input[type="file"]{
    display: none;
}
label.placeholder-file {
    position: absolute;
    top: 15px;
    left: 40px;
    font-family: Ubuntu-Bold;
    color: #8f8fa1;
    font-size: 18px;
    display: block;
    
}

/*////////////////////////////////////////////////////////////////*/
/**************************** responsiver show hide menu *********************************/
 .user-edit a.icon i {
    display: none;
    position: absolute;
    top: 35px;
    right: 15px;
    font-size: 30px;
}
a.show-hide.active {
    display: none;

}
a.show-hide.active:after {
    font-family: 'FontAwesome';
    content: '\f078';
    position: absolute;
    right: 20px;
    top: 5px;
    
}

a.show-hide:after {
    content: '\f077';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 5px;
   
}

a.show-hide {
        font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    padding: 5px 15px;
    background-color: #383838;
    font-weight: 600;
    letter-spacing: 2px;
    width: 100%;
    display: inline-block;
    position: relative;
}
.menu-list a:hover {
    color: black;
}
.topnav-menu a.icon i {
    display: none;
    }
/*////////////////////////////////////////////////////////////////*/

/*------------------------------------- Responsive View ------------------------------------*/
@media screen and (max-width: 600px) {
  /*.topnav a:not(:first-child) {display: none;}*/
  .topnav a {
    float: right;
    display: block;
    color: black;
  }
}

@media screen and (max-width: 600px) {
  .menu-list .responsive {position: relative;}
  .menu-list .responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menu-list .responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/*------------------------------------- Responsive View  start------------------------------------*/

@media screen and (max-width: 1750px)
{
    .side-menu-list {
    padding: 20px 20px 30px 20px;
    }
    li.menu-item-list a {
    font-size: 15px;
    }

    .store-main-section-details {
    grid-template-columns: auto auto auto;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    }

    .store-infos {
    grid-template-columns: auto auto auto;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    }

    .store-detail h3 {
    font-size: 22px;
    }

}
@media screen and (max-width:  1300px)
{

   .right-content {
    width: 78%;
    margin-left: 22%;
    }

    .sidebar-content {
    width: 22%;
    }
    .wrap-login100.dashboard.p-t-50.p-b-90 {
    width: 80% !important;
    margin: auto;
    }

    .store-infos {
    grid-template-columns: auto auto;
    }

    .inner-choose{
        grid-template-columns: auto auto;
        grid-column-gap: 80px;
    }
    .login-left-col img {
    max-width: 85%;
    }
    .wrap-login100.p-t-50.p-b-90.login-form {
    box-shadow: 1px 0 20px rgb(0 0 0 / 8%);
    padding: 50px 46px;
    width: 500px;
    }
    .main-login-section {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    padding: 70px 0;
    }

    /*reg*/
    .wrap-login100.p-t-50.p-b-90.reg-form
    {
        width: 65%;
        padding: 50px 53px;
    }
    .container-login100.reg:after
    {
            background-size: 143px;
            background-position: 97% 67%;
    }
    .container-login100.reg:before{
        background-size: 135px;
    }
    
}
@media screen and (max-width: 1100px)
{
    .store-infos {
    grid-template-columns: auto;
    }
    .container-login100.reg:after {
    background-position: 94.2% 67%;
    }
}
@media screen and (max-width: 1000px)
{
        .store-main-section-details {
    grid-template-columns: auto auto;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    }

    .right-content {
    width: 75%;
    margin-left: 25%;
    }

    .sidebar-content {
    width: 25%;
    }
}

@media screen and (max-width: 767px)
{
    /*reg back img*/
    .container-login100.reg:before
    {
        display: none;
    }
    .container-login100.reg:after
    {
        display: none;
    }
    .wrap-login100.p-t-50.p-b-90.reg-form {
    width: 100%;
    padding: 30px 40px;
    }
    /*-----------------------------*/
    .topnav-menu a.icon i {
    display: block;
    color: white;
    position: absolute;
    right: 15px;
    top: 25px;
    font-size: 25px;
    }

    .menu-list a{
        display: block;
        color: #838383;
        font-weight: normal;
        font-family: 'Ubuntu-Regular';
        border-bottom: 1px solid #949494;
        padding: 10px 0;
    }

    .menu-list{
        display: none;
        padding-top: 0;
    }
    .menu-list.responsive {
    background-color: #FFF;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    }

/*-----------------login---------------------*/
.main-login-section{
    padding: 0;
}
/************** grid *****************/

        .store-main-section-details {
            display: grid;
            grid-template-columns: 100%;
            /* grid-column-gap: 19.5px; */
            padding-bottom: 25px;
            grid-row-gap: 20px;
        }
/* ----------------- sidebar full width  ----------------------  */

    .sidebar-content{
        width: 100%;
        background-color: #ffffff;
    /* width: 15%; */
    /* display: inline-block; */
    position: relative;
    vertical-align: top;
    top: 70px;
    bottom: 0;
    left: 0;
    box-shadow: 1px 0 20px rgb(0 0 0 / 8%);
    }

    .side-menu-list{
        display: none;
    }

    a.show-hide.active {
    display: block;
    }

    .right-content {
    width: 100%;
    min-height: inherit;
    margin-top: 90px;
    margin-left: 0;
    }
    .side-menu-list {
    padding: 15px;
    }

    .header{
        height: 70px;
    }
    .logo img{
        max-width: 70%;
    }
/*----------------------- add-edit store --------------------*/
.respon-p
{
    padding:0 15px;
}
/*----------------------------------- form changes ------------------------------*/
.panel {
    margin-bottom: 20px;
    background-color: inherit; 
    border: inherit;
    border-radius: inherit; 
    -webkit-box-shadow: inherit; 
    box-shadow: inherit; 
}
    /****************************************************************************/
    /*---------------------------------add store ---------------------------------------*/

    .wrap-login100 {
    width: 100%;
    background:inherit;
    border-radius: inherit;
    position: relative;
    display: inline-block;
    }

    .right-content-inner {
    padding-top: 10px;
    }

    .wrap-login100.dashboard.p-t-50.p-b-90 {
    width: 100% !important;
    margin: 0 auto;
    }

    .input100 {
    height: 40px;
    font-size: 15px;
    padding: 0 20px;
    }

    .login100-form-btn{
        height: 45px;
    }

    label.placeholder-file{
        top: 10px;
        left: 20px;
        font-size: 16px;
    }

    textarea.input100.address {
    padding-top: 11px;
     }

     .p-b-90 {
    padding-bottom: 45px;
    }
   
    .field-icon{
        margin-top: -28px;
        font-size: 15px;
    }
    .login100-form {
    width: 100% !important;
    margin: 0 auto;
    }
    .login100-form-title{
        font-size: 20px;
    }
    .store-infos {
    grid-template-columns: auto;
    }
    .inner-store-detail {
    padding: 20px;
    display: inherit;
    box-shadow: 1px 0 20px rgb(0 0 0 / 20%);
    }
    .store-detail {
    padding-top: 15px;
    }
    section.main-store-info-section {
    padding: 0 15px 50px;
    }
    .store-title.p-t {
    padding-left: 15px;
    }
    .store-img img {
    max-width: inherit;
    width: 100%;
    }
    a.edit-store-icon {
    position: absolute;
    top: 27px;
    right: 30px;
    }
    .footer-content {
    padding-top: 15px;
    font-size: 12px;
    }
    span.login100-form-title.store.p-b-51.fwp h2 {
    font-size: 20px;
    }

    .main-login-section
    {
        display: inherit;
    }
    .login-left-col img{
        display: none;
    }
    /***********************************************************/
    /* ----------------------- home page ----------------------------- */
    .inner-choose {
        grid-template-columns: 100%;
    }
    .inner-banner-info{
        grid-template-columns: auto;
    }
    .banner-main-detail p{
        width: 100%;
        font-size: 14px;
        line-height: 1.5;
        padding-top: 4px;
    }
    .banner-main-detail{
        padding-top: 10px;
    }
    .slider-section-col1 {
    width: 100%;
    display: inherit;
    vertical-align: inherit;
    }
    .banner-img {
    width: 100%;
    display: inherit;
    text-align: inherit;
    vertical-align: inherit;
    }
    .slider-section-inner-content{
    padding-top: 100px;
    }
    .slider-section-detail p{
        max-width: 100%;
        color: #444040;
        font-size: 15px;
        line-height: 1.6;
    }
    .slider-section-detail{
        padding: 0;
    }
    .slider-section-detail h1 {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 15px;
    color: white;
    }
    .slider-section-link{
        padding-top: 25px;
    }
    .slider-section-main-content{
        height: 580px;
    }
    .banner-img img 
    {
       display: block;
        max-width: 280px;
        margin: auto;
    }
    .banner-img {
    padding-top: 20px;
    }
    header.header.main-header-image {
    background-color: white;
    }
    .topnav-menu.index-topnav a.icon i{
        color: #0082f5;
    }
    .slider-section-link a {
    /* border: 1px solid #1986e9; */
    padding: 10px 10px;
    font-size: 15px;
    /* font-family: 'Ubuntu-Bold'; */
    letter-spacing: 2px;
    font-weight: 800;
    }
    .main-section-title h2{
        font-size: 24px;
    }
    .about-details p {
    font-size: 14px;
    }
    .main-choose-detail {
    padding-top: 75px;
    }
    .choose-detail p {
    font-size: 15px;
    }
    .inner-point-info h3
    {
        font-size: 16px;

    }
    .inner-point-info span{
        width: 20px;
        height: 20px
    }
    .inner-point-info span:before{
        left: 4px;
        top: 1px;
        font-size: 13px;
    }
    .choose-detail h4
    {
        font-size: 20px;
        padding-top: 15px;
    }
    .choose-img-inner img{
        max-width: 50px;
        top: 18px;
        right: 18px;
    }
    .choose-icon-main {
    width: 85px;
    height: 85px;
    }
    .choose-detail{
        padding: 40px 20px;
    }
    .choose-detail-back::before{
        height: 98%;
        top: 2px;
    }
    header.header.main-header-image.main-header.active .topnav-menu.index-topnav a.icon i {
    color: white;
    }

    /*///////////////////////////////////////////////////*/
    /*------------------contact page----------------------------------*/
    .contact-cont-c2 {
    float: left; 
    padding: 0 10px 20px;
    width: 100%;
    }
    .contact-input-item input, textarea {
    padding: 10px 25px;
    }
    .breadcrumbs-main{
       padding: 15px 0;
    }
    .contact-top-marging {
    padding-top: 70px;
    }
    .breadcrumbs-banner-section{
        padding-bottom: 40px;
    }
    .contact-form-main{
        padding: 35px 0;
    }
    button.login100-form-btn.contact-form-btn {
    width: 35%;
    height: 40px;
    }
    .inner-infobox-detail{
        padding: 0 50px 30px;
    }
    .main-section-title.logo-title p{
        font-size: 15px;
    }
    .wrap-login100.p-t-50.p-b-90.login-form{
        box-shadow: inherit;
    padding: inherit;
    width: inherit;
    }


}
/*/////////////////////////////////////////////////////////////*/

@media screen and (max-width: 400px)
{
    
    .main-section-title.logo-title {
    padding-top: 25px;
    }
    .account label, a {
    font-size: 10px;
    }
    /*reg*/
    span.login100-form-title.logo-title.p-b-51 h2 {
    font-size: 17px;
    }
    .login100-form-btn {
    height: 35px;
    }
    .container-login100{
        padding: 0;
    }
    .wrap-login100.p-t-50.p-b-90.reg-form {
    width: 100%;
    padding: 25px 15px;
    }
}
